From 2d8f1dacdb9d1f53119d7150155947d50e08e651 Mon Sep 17 00:00:00 2001 From: Edward Emelianov Date: Fri, 23 Sep 2022 09:18:38 +0300 Subject: [PATCH] add Canon managing device KiCAD schematic & PCB --- .../Chiller/kicad/Chiller_control.kicad_prl | 75 + .../Chiller/kicad/Chiller_control.kicad_pro | 371 + .../Socket_fans/kicad/stm32.kicad_prl | 75 + .../Socket_fans/kicad/stm32.kicad_pro | 368 + F1:F103/Canon_managing_device/Makefile | 151 + F1:F103/Canon_managing_device/Readme | 24 + F1:F103/Canon_managing_device/canon.c | 215 + F1:F103/Canon_managing_device/canon.h | 58 + F1:F103/Canon_managing_device/canonusb.bin | Bin 0 -> 7944 bytes F1:F103/Canon_managing_device/hardware.c | 39 + F1:F103/Canon_managing_device/hardware.h | 56 + .../kicad/Canon_manage/Canon_manage.csv | 94 + .../kicad/Canon_manage/Canon_manage.kicad_pcb | 19293 ++++ .../kicad/Canon_manage/Canon_manage.kicad_prl | 75 + .../kicad/Canon_manage/Canon_manage.kicad_pro | 445 + .../kicad/Canon_manage/Canon_manage.kicad_sch | 3176 + .../kicad/Canon_manage/fp-info-cache | 85989 ++++++++++++++++ .../gerbers/Canon_manage-B_Cu.gbr | 6829 ++ .../gerbers/Canon_manage-B_Mask.gbr | 239 + .../gerbers/Canon_manage-B_Paste.gbr | 151 + .../gerbers/Canon_manage-B_Silkscreen.gbr | 468 + .../gerbers/Canon_manage-Edge_Cuts.gbr | 542 + .../gerbers/Canon_manage-F_Cu.gbr | 10597 ++ .../gerbers/Canon_manage-F_Mask.gbr | 214 + .../gerbers/Canon_manage-F_Paste.gbr | 124 + .../gerbers/Canon_manage-F_Silkscreen.gbr | 1267 + .../gerbers/Canon_manage-drl_map.gbr | 3906 + .../gerbers/Canon_manage-job.gbrjob | 127 + .../Canon_managing_device/kicad/outliers.dxf | 8994 ++ F1:F103/Canon_managing_device/kicad/silk.dxf | 11294 ++ F1:F103/Canon_managing_device/main.c | 79 + F1:F103/Canon_managing_device/proto.c | 378 + F1:F103/Canon_managing_device/proto.h | 31 + F1:F103/Canon_managing_device/ringbuffer.c | 77 + F1:F103/Canon_managing_device/ringbuffer.h | 33 + F1:F103/Canon_managing_device/spi.c | 80 + F1:F103/Canon_managing_device/spi.h | 39 + F1:F103/Canon_managing_device/usb.c | 116 + F1:F103/Canon_managing_device/usb.h | 34 + F1:F103/Canon_managing_device/usb_lib.c | 387 + F1:F103/Canon_managing_device/usb_lib.h | 186 + F1:F103/Canon_managing_device/usbhw.c | 129 + F1:F103/Canon_managing_device/usbhw.h | 105 + F1:F103/Canon_managing_device/version.inc | 2 + .../F0_F1_F3-LQFP48_testboard/stm32.kicad_prl | 75 + .../F0_F1_F3-LQFP48_testboard/stm32.kicad_pro | 435 + 46 files changed, 157442 insertions(+) create mode 100644 F0:F030,F042,F072/Chiller/kicad/Chiller_control.kicad_prl create mode 100644 F0:F030,F042,F072/Chiller/kicad/Chiller_control.kicad_pro create mode 100644 F0:F030,F042,F072/Socket_fans/kicad/stm32.kicad_prl create mode 100644 F0:F030,F042,F072/Socket_fans/kicad/stm32.kicad_pro create mode 100644 F1:F103/Canon_managing_device/Makefile create mode 100644 F1:F103/Canon_managing_device/Readme create mode 100644 F1:F103/Canon_managing_device/canon.c create mode 100644 F1:F103/Canon_managing_device/canon.h create mode 100755 F1:F103/Canon_managing_device/canonusb.bin create mode 100644 F1:F103/Canon_managing_device/hardware.c create mode 100644 F1:F103/Canon_managing_device/hardware.h create mode 100644 F1:F103/Canon_managing_device/kicad/Canon_manage/Canon_manage.csv create mode 100644 F1:F103/Canon_managing_device/kicad/Canon_manage/Canon_manage.kicad_pcb create mode 100644 F1:F103/Canon_managing_device/kicad/Canon_manage/Canon_manage.kicad_prl create mode 100644 F1:F103/Canon_managing_device/kicad/Canon_manage/Canon_manage.kicad_pro create mode 100644 F1:F103/Canon_managing_device/kicad/Canon_manage/Canon_manage.kicad_sch create mode 100644 F1:F103/Canon_managing_device/kicad/Canon_manage/fp-info-cache create mode 100644 F1:F103/Canon_managing_device/kicad/Canon_manage/gerbers/Canon_manage-B_Cu.gbr create mode 100644 F1:F103/Canon_managing_device/kicad/Canon_manage/gerbers/Canon_manage-B_Mask.gbr create mode 100644 F1:F103/Canon_managing_device/kicad/Canon_manage/gerbers/Canon_manage-B_Paste.gbr create mode 100644 F1:F103/Canon_managing_device/kicad/Canon_manage/gerbers/Canon_manage-B_Silkscreen.gbr create mode 100644 F1:F103/Canon_managing_device/kicad/Canon_manage/gerbers/Canon_manage-Edge_Cuts.gbr create mode 100644 F1:F103/Canon_managing_device/kicad/Canon_manage/gerbers/Canon_manage-F_Cu.gbr create mode 100644 F1:F103/Canon_managing_device/kicad/Canon_manage/gerbers/Canon_manage-F_Mask.gbr create mode 100644 F1:F103/Canon_managing_device/kicad/Canon_manage/gerbers/Canon_manage-F_Paste.gbr create mode 100644 F1:F103/Canon_managing_device/kicad/Canon_manage/gerbers/Canon_manage-F_Silkscreen.gbr create mode 100644 F1:F103/Canon_managing_device/kicad/Canon_manage/gerbers/Canon_manage-drl_map.gbr create mode 100644 F1:F103/Canon_managing_device/kicad/Canon_manage/gerbers/Canon_manage-job.gbrjob create mode 100644 F1:F103/Canon_managing_device/kicad/outliers.dxf create mode 100644 F1:F103/Canon_managing_device/kicad/silk.dxf create mode 100644 F1:F103/Canon_managing_device/main.c create mode 100644 F1:F103/Canon_managing_device/proto.c create mode 100644 F1:F103/Canon_managing_device/proto.h create mode 100644 F1:F103/Canon_managing_device/ringbuffer.c create mode 100644 F1:F103/Canon_managing_device/ringbuffer.h create mode 100644 F1:F103/Canon_managing_device/spi.c create mode 100644 F1:F103/Canon_managing_device/spi.h create mode 100644 F1:F103/Canon_managing_device/usb.c create mode 100644 F1:F103/Canon_managing_device/usb.h create mode 100644 F1:F103/Canon_managing_device/usb_lib.c create mode 100644 F1:F103/Canon_managing_device/usb_lib.h create mode 100644 F1:F103/Canon_managing_device/usbhw.c create mode 100644 F1:F103/Canon_managing_device/usbhw.h create mode 100644 F1:F103/Canon_managing_device/version.inc create mode 100644 testboard/F0_F1_F3-LQFP48_testboard/stm32.kicad_prl create mode 100644 testboard/F0_F1_F3-LQFP48_testboard/stm32.kicad_pro diff --git a/F0:F030,F042,F072/Chiller/kicad/Chiller_control.kicad_prl b/F0:F030,F042,F072/Chiller/kicad/Chiller_control.kicad_prl new file mode 100644 index 0000000..af4749a --- /dev/null +++ b/F0:F030,F042,F072/Chiller/kicad/Chiller_control.kicad_prl @@ -0,0 +1,75 @@ +{ + "board": { + "active_layer": 0, + "active_layer_preset": "", + "auto_track_width": true, + "hidden_nets": [], + "high_contrast_mode": 0, + "net_color_mode": 1, + "opacity": { + "pads": 1.0, + "tracks": 1.0, + "vias": 1.0, + "zones": 0.6 + }, + "ratsnest_display_mode": 0, + "selection_filter": { + "dimensions": true, + "footprints": true, + "graphics": true, + "keepouts": true, + "lockedItems": true, + "otherItems": true, + "pads": true, + "text": true, + "tracks": true, + "vias": true, + "zones": true + }, + "visible_items": [ + 0, + 1, + 2, + 3, + 4, + 5, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 32, + 33, + 34, + 35, + 36 + ], + "visible_layers": "fffffff_ffffffff", + "zone_display_mode": 0 + }, + "meta": { + "filename": "Chiller_control.kicad_prl", + "version": 3 + }, + "project": { + "files": [] + } +} diff --git a/F0:F030,F042,F072/Chiller/kicad/Chiller_control.kicad_pro b/F0:F030,F042,F072/Chiller/kicad/Chiller_control.kicad_pro new file mode 100644 index 0000000..6069ea7 --- /dev/null +++ b/F0:F030,F042,F072/Chiller/kicad/Chiller_control.kicad_pro @@ -0,0 +1,371 @@ +{ + "board": { + "design_settings": { + "defaults": { + "board_outline_line_width": 0.15, + "copper_line_width": 0.2, + "copper_text_italic": false, + "copper_text_size_h": 1.5, + "copper_text_size_v": 1.5, + "copper_text_thickness": 0.3, + "copper_text_upright": true, + "courtyard_line_width": 0.05, + "other_line_width": 0.15, + "other_text_italic": false, + "other_text_size_h": 1.0, + "other_text_size_v": 1.0, + "other_text_thickness": 0.15, + "other_text_upright": true, + "silk_line_width": 0.15, + "silk_text_italic": false, + "silk_text_size_h": 1.0, + "silk_text_size_v": 1.0, + "silk_text_thickness": 0.15, + "silk_text_upright": true + }, + "diff_pair_dimensions": [ + { + "gap": 0.25, + "via_gap": 0.25, + "width": 0.2 + } + ], + "drc_exclusions": [], + "rule_severitieslegacy_courtyards_overlap": true, + "rule_severitieslegacy_no_courtyard_defined": false, + "rules": { + "allow_blind_buried_vias": false, + "allow_microvias": false, + "min_hole_to_hole": 0.25, + "min_microvia_diameter": 0.2, + "min_microvia_drill": 0.09999999999999999, + "min_through_hole_diameter": 0.3, + "min_track_width": 0.2, + "min_via_diameter": 0.4, + "solder_mask_clearance": 0.2, + "solder_mask_min_width": 0.25, + "solder_paste_clearance": 0.0, + "solder_paste_margin_ratio": -0.0 + }, + "track_widths": [ + 0.5, + 0.25, + 0.5, + 1.0, + 2.0 + ], + "via_dimensions": [ + { + "diameter": 1.2, + "drill": 0.6 + }, + { + "diameter": 1.2, + "drill": 0.6 + }, + { + "diameter": 1.5, + "drill": 0.8 + }, + { + "diameter": 2.5, + "drill": 1.0 + } + ] + }, + "layer_presets": [] + }, + "boards": [], + "cvpcb": { + "equivalence_files": [] + }, + "erc": { + "erc_exclusions": [], + "meta": { + "version": 0 + }, + "pin_map": [ + [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 2 + ], + [ + 0, + 2, + 0, + 1, + 0, + 0, + 1, + 0, + 2, + 2, + 2, + 2 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 1, + 0, + 1, + 2 + ], + [ + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 1, + 2, + 1, + 1, + 2 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 2 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 2 + ], + [ + 1, + 1, + 1, + 1, + 1, + 0, + 1, + 1, + 1, + 1, + 1, + 2 + ], + [ + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 2 + ], + [ + 0, + 2, + 1, + 2, + 0, + 0, + 1, + 0, + 2, + 2, + 2, + 2 + ], + [ + 0, + 2, + 0, + 1, + 0, + 0, + 1, + 0, + 2, + 0, + 0, + 2 + ], + [ + 0, + 2, + 1, + 1, + 0, + 0, + 1, + 0, + 2, + 0, + 0, + 2 + ], + [ + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2 + ] + ], + "rule_severities": { + "bus_definition_conflict": "error", + "bus_entry_needed": "error", + "bus_label_syntax": "error", + "bus_to_bus_conflict": "error", + "bus_to_net_conflict": "error", + "different_unit_footprint": "error", + "different_unit_net": "error", + "duplicate_reference": "error", + "duplicate_sheet_names": "error", + "extra_units": "error", + "global_label_dangling": "warning", + "hier_label_mismatch": "error", + "label_dangling": "error", + "lib_symbol_issues": "warning", + "multiple_net_names": "warning", + "net_not_bus_member": "warning", + "no_connect_connected": "warning", + "no_connect_dangling": "warning", + "pin_not_connected": "error", + "pin_not_driven": "error", + "pin_to_pin": "warning", + "power_pin_not_driven": "error", + "similar_labels": "warning", + "unannotated": "error", + "unit_value_mismatch": "error", + "unresolved_variable": "error", + "wire_dangling": "error" + } + }, + "libraries": { + "pinned_footprint_libs": [], + "pinned_symbol_libs": [] + }, + "meta": { + "filename": "Chiller_control.kicad_pro", + "version": 1 + }, + "net_settings": { + "classes": [ + { + "bus_width": 12.0, + "clearance": 0.2, + "diff_pair_gap": 0.25, + "diff_pair_via_gap": 0.25, + "diff_pair_width": 0.2, + "line_style": 0, + "microvia_diameter": 0.3, + "microvia_drill": 0.1, + "name": "Default", + "pcb_color": "rgba(0, 0, 0, 0.000)", + "schematic_color": "rgba(0, 0, 0, 0.000)", + "track_width": 0.25, + "via_diameter": 0.8, + "via_drill": 0.4, + "wire_width": 6.0 + } + ], + "meta": { + "version": 2 + }, + "net_colors": null + }, + "pcbnew": { + "last_paths": { + "gencad": "", + "idf": "", + "netlist": "Chiller_control.net", + "specctra_dsn": "", + "step": "", + "vrml": "" + }, + "page_layout_descr_file": "" + }, + "schematic": { + "annotate_start_num": 0, + "drawing": { + "default_line_thickness": 6.0, + "default_text_size": 60.0, + "field_names": [], + "intersheets_ref_own_page": false, + "intersheets_ref_prefix": "", + "intersheets_ref_short": false, + "intersheets_ref_show": false, + "intersheets_ref_suffix": "", + "junction_size_choice": 3, + "label_size_ratio": 0.25, + "pin_symbol_size": 0.0, + "text_offset_ratio": 0.08 + }, + "legacy_lib_dir": "", + "legacy_lib_list": [], + "meta": { + "version": 1 + }, + "net_format_name": "Pcbnew", + "ngspice": { + "fix_include_paths": true, + "fix_passive_vals": false, + "meta": { + "version": 0 + }, + "model_mode": 0, + "workbook_filename": "" + }, + "page_layout_descr_file": "", + "plot_directory": "", + "spice_adjust_passive_values": false, + "spice_external_command": "spice \"%I\"", + "subpart_first_id": 65, + "subpart_id_separator": 0 + }, + "sheets": [], + "text_variables": {} +} diff --git a/F0:F030,F042,F072/Socket_fans/kicad/stm32.kicad_prl b/F0:F030,F042,F072/Socket_fans/kicad/stm32.kicad_prl new file mode 100644 index 0000000..428056c --- /dev/null +++ b/F0:F030,F042,F072/Socket_fans/kicad/stm32.kicad_prl @@ -0,0 +1,75 @@ +{ + "board": { + "active_layer": 0, + "active_layer_preset": "", + "auto_track_width": true, + "hidden_nets": [], + "high_contrast_mode": 0, + "net_color_mode": 1, + "opacity": { + "pads": 1.0, + "tracks": 1.0, + "vias": 1.0, + "zones": 0.6 + }, + "ratsnest_display_mode": 0, + "selection_filter": { + "dimensions": true, + "footprints": true, + "graphics": true, + "keepouts": true, + "lockedItems": true, + "otherItems": true, + "pads": true, + "text": true, + "tracks": true, + "vias": true, + "zones": true + }, + "visible_items": [ + 0, + 1, + 2, + 3, + 4, + 5, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 32, + 33, + 34, + 35, + 36 + ], + "visible_layers": "fffffff_ffffffff", + "zone_display_mode": 0 + }, + "meta": { + "filename": "stm32.kicad_prl", + "version": 3 + }, + "project": { + "files": [] + } +} diff --git a/F0:F030,F042,F072/Socket_fans/kicad/stm32.kicad_pro b/F0:F030,F042,F072/Socket_fans/kicad/stm32.kicad_pro new file mode 100644 index 0000000..e99d2d5 --- /dev/null +++ b/F0:F030,F042,F072/Socket_fans/kicad/stm32.kicad_pro @@ -0,0 +1,368 @@ +{ + "board": { + "design_settings": { + "defaults": { + "board_outline_line_width": 0.15, + "copper_line_width": 0.2, + "copper_text_italic": false, + "copper_text_size_h": 1.5, + "copper_text_size_v": 1.5, + "copper_text_thickness": 0.3, + "copper_text_upright": true, + "courtyard_line_width": 0.05, + "other_line_width": 0.15, + "other_text_italic": false, + "other_text_size_h": 1.0, + "other_text_size_v": 1.0, + "other_text_thickness": 0.15, + "other_text_upright": true, + "silk_line_width": 0.15, + "silk_text_italic": false, + "silk_text_size_h": 1.0, + "silk_text_size_v": 1.0, + "silk_text_thickness": 0.15, + "silk_text_upright": true + }, + "diff_pair_dimensions": [ + { + "gap": 0.25, + "via_gap": 0.25, + "width": 0.2 + } + ], + "drc_exclusions": [], + "rule_severitieslegacy_courtyards_overlap": true, + "rule_severitieslegacy_no_courtyard_defined": false, + "rules": { + "allow_blind_buried_vias": false, + "allow_microvias": false, + "min_hole_to_hole": 0.25, + "min_microvia_diameter": 0.2, + "min_microvia_drill": 0.09999999999999999, + "min_through_hole_diameter": 0.5, + "min_track_width": 0.2, + "min_via_diameter": 0.7999999999999999, + "solder_mask_clearance": 0.2, + "solder_mask_min_width": 0.0, + "solder_paste_clearance": 0.0, + "solder_paste_margin_ratio": -0.0 + }, + "track_widths": [ + 0.2, + 0.2, + 0.3, + 0.5, + 1.0, + 2.0 + ], + "via_dimensions": [ + { + "diameter": 1.0, + "drill": 0.6 + }, + { + "diameter": 1.0, + "drill": 0.6 + }, + { + "diameter": 1.5, + "drill": 0.8 + } + ] + }, + "layer_presets": [] + }, + "boards": [], + "cvpcb": { + "equivalence_files": [] + }, + "erc": { + "erc_exclusions": [], + "meta": { + "version": 0 + }, + "pin_map": [ + [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 2 + ], + [ + 0, + 2, + 0, + 1, + 0, + 0, + 1, + 0, + 2, + 2, + 2, + 2 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 1, + 0, + 1, + 2 + ], + [ + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 1, + 2, + 1, + 1, + 2 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 2 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 2 + ], + [ + 1, + 1, + 1, + 1, + 1, + 0, + 1, + 1, + 1, + 1, + 1, + 2 + ], + [ + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 2 + ], + [ + 0, + 2, + 1, + 2, + 0, + 0, + 1, + 0, + 2, + 2, + 2, + 2 + ], + [ + 0, + 2, + 0, + 1, + 0, + 0, + 1, + 0, + 2, + 0, + 0, + 2 + ], + [ + 0, + 2, + 1, + 1, + 0, + 0, + 1, + 0, + 2, + 0, + 0, + 2 + ], + [ + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2 + ] + ], + "rule_severities": { + "bus_definition_conflict": "error", + "bus_entry_needed": "error", + "bus_label_syntax": "error", + "bus_to_bus_conflict": "error", + "bus_to_net_conflict": "error", + "different_unit_footprint": "error", + "different_unit_net": "error", + "duplicate_reference": "error", + "duplicate_sheet_names": "error", + "extra_units": "error", + "global_label_dangling": "warning", + "hier_label_mismatch": "error", + "label_dangling": "error", + "lib_symbol_issues": "warning", + "multiple_net_names": "warning", + "net_not_bus_member": "warning", + "no_connect_connected": "warning", + "no_connect_dangling": "warning", + "pin_not_connected": "error", + "pin_not_driven": "error", + "pin_to_pin": "warning", + "power_pin_not_driven": "error", + "similar_labels": "warning", + "unannotated": "error", + "unit_value_mismatch": "error", + "unresolved_variable": "error", + "wire_dangling": "error" + } + }, + "libraries": { + "pinned_footprint_libs": [], + "pinned_symbol_libs": [] + }, + "meta": { + "filename": "stm32.kicad_pro", + "version": 1 + }, + "net_settings": { + "classes": [ + { + "bus_width": 12.0, + "clearance": 0.2, + "diff_pair_gap": 0.25, + "diff_pair_via_gap": 0.25, + "diff_pair_width": 0.2, + "line_style": 0, + "microvia_diameter": 0.3, + "microvia_drill": 0.1, + "name": "Default", + "pcb_color": "rgba(0, 0, 0, 0.000)", + "schematic_color": "rgba(0, 0, 0, 0.000)", + "track_width": 0.25, + "via_diameter": 0.8, + "via_drill": 0.4, + "wire_width": 6.0 + } + ], + "meta": { + "version": 2 + }, + "net_colors": null + }, + "pcbnew": { + "last_paths": { + "gencad": "", + "idf": "", + "netlist": "stm32.net", + "specctra_dsn": "", + "step": "", + "vrml": "" + }, + "page_layout_descr_file": "" + }, + "schematic": { + "annotate_start_num": 0, + "drawing": { + "default_line_thickness": 6.0, + "default_text_size": 50.0, + "field_names": [], + "intersheets_ref_own_page": false, + "intersheets_ref_prefix": "", + "intersheets_ref_short": false, + "intersheets_ref_show": false, + "intersheets_ref_suffix": "", + "junction_size_choice": 3, + "label_size_ratio": 0.25, + "pin_symbol_size": 0.0, + "text_offset_ratio": 0.08 + }, + "legacy_lib_dir": "", + "legacy_lib_list": [], + "meta": { + "version": 1 + }, + "net_format_name": "Pcbnew", + "ngspice": { + "fix_include_paths": true, + "fix_passive_vals": false, + "meta": { + "version": 0 + }, + "model_mode": 0, + "workbook_filename": "" + }, + "page_layout_descr_file": "", + "plot_directory": "", + "spice_adjust_passive_values": false, + "spice_external_command": "spice \"%I\"", + "subpart_first_id": 49, + "subpart_id_separator": 46 + }, + "sheets": [], + "text_variables": {} +} diff --git a/F1:F103/Canon_managing_device/Makefile b/F1:F103/Canon_managing_device/Makefile new file mode 100644 index 0000000..2fe3391 --- /dev/null +++ b/F1:F103/Canon_managing_device/Makefile @@ -0,0 +1,151 @@ +BINARY = canonusb +BOOTPORT ?= /dev/ttyUSB0 +BOOTSPEED ?= 115200 +# MCU FAMILY +FAMILY ?= F1 +# MCU code +MCU ?= F103x8 +# density (stm32f10x.h, lines 70-84) +DENSITY ?= LD +# change this linking script depending on particular MCU model, +LDSCRIPT ?= stm32f103x8.ld +# debug +#DEFS = -DEBUG + +# autoincremental version & build date +VERSION_FILE = version.inc +NEXTVER := $(shell expr $$(awk '/#define BUILD_NUMBER/' $(VERSION_FILE) | tr -cd "[0-9]") + 1) +BUILDDATE := $(shell date +%Y-%m-%d) + +INDEPENDENT_HEADERS= + +FP_FLAGS ?= -msoft-float -mfloat-abi=soft +ASM_FLAGS ?= -mthumb -mcpu=cortex-m3 -mfix-cortex-m3-ldrd +ARCH_FLAGS = $(ASM_FLAGS) $(FP_FLAGS) + +############################################################################### +# Executables +#PREFIX ?= arm-none-eabi +# gcc from arm web site +PREFIX ?= /opt/bin/arm-none-eabi +TOOLCHLIB ?= /opt/arm-none-eabi/lib +RM := rm -f +RMDIR := rmdir +CC := $(PREFIX)-gcc +LD := $(PREFIX)-gcc +AR := $(PREFIX)-ar +AS := $(PREFIX)-as +SIZE := $(PREFIX)-size +OBJCOPY := $(PREFIX)-objcopy +OBJDUMP := $(PREFIX)-objdump +GDB := $(PREFIX)-gdb +STFLASH := $(shell which st-flash) +STBOOT := $(shell which stm32flash) +DFUUTIL := $(shell which dfu-util) + +############################################################################### +# Source files +OBJDIR := mk +SRC := $(wildcard *.c) +OBJS := $(addprefix $(OBJDIR)/, $(SRC:%.c=%.o)) +STARTUP = $(OBJDIR)/startup.o +OBJS += $(STARTUP) +# dependencies: we need them to recompile files if their headers-dependencies changed +DEPS := $(OBJS:.o=.d) + +INC_DIR ?= ../inc + +INCLUDE := -I$(INC_DIR)/Fx -I$(INC_DIR)/cm +LIB_DIR := $(INC_DIR)/ld + +############################################################################### +# C flags +CFLAGS += -O2 -g -D__thumb2__=1 -MD -g -gdwarf-2 +CFLAGS += -Wall -Werror -Wextra -Wshadow +CFLAGS += -fno-common -ffunction-sections -fdata-sections -fno-stack-protector -fshort-enums +CFLAGS += $(ARCH_FLAGS) + +############################################################################### +# Linker flags +LDFLAGS += -nostartfiles -nostdlib --static -Wl,--gc-sections -Wl,--print-memory-usage +LDFLAGS += -Wl,-Map=$(OBJDIR)/$(BINARY).map +#LDFLAGS += --static --gc-sections --print-memory-usage +LDFLAGS += -L$(LIB_DIR) -L$(TOOLCHLIB) +LDFLAGS += -T$(LDSCRIPT) + +############################################################################### +# Used libraries +LDLIBS += -lc -lgcc $(shell $(CC) $(CFLAGS) -print-libgcc-file-name) + +DEFS += -DSTM32$(FAMILY) -DSTM32$(MCU) -DSTM32F10X_$(DENSITY) + +ELF := $(OBJDIR)/$(BINARY).elf +LIST := $(OBJDIR)/$(BINARY).list +BIN := $(BINARY).bin +HEX := $(BINARY).hex + +all: bin list size + +elf: $(ELF) +bin: $(BIN) +hex: $(HEX) +list: $(LIST) + +ifneq ($(MAKECMDGOALS),clean) +-include $(DEPS) +endif + +$(OBJDIR): + mkdir $(OBJDIR) + +$(STARTUP): $(INC_DIR)/startup/vector.c + $(CC) $(CFLAGS) $(DEFS) $(INCLUDE) -o $@ -c $< + +$(VERSION_FILE): *.[ch] + @echo " Generate version: $(NEXTVER) for date $(BUILDDATE)" + @sed -i "s/#define BUILD_NUMBER.*/#define BUILD_NUMBER \"$(NEXTVER)\"/" $(VERSION_FILE) + @sed -i "s/#define BUILD_DATE.*/#define BUILD_DATE \"$(BUILDDATE)\"/" $(VERSION_FILE) + +$(OBJDIR)/proto.o: proto.c $(VERSION_FILE) + +$(OBJDIR)/%.o: %.c + @echo " CC $<" + $(CC) $(CFLAGS) $(DEFS) $(INCLUDE) -o $@ -c $< + +$(BIN): $(ELF) + @echo " OBJCOPY $(BIN)" + $(OBJCOPY) -Obinary $(ELF) $(BIN) + +$(HEX): $(ELF) + @echo " OBJCOPY $(HEX)" + $(OBJCOPY) -Oihex $(ELF) $(HEX) + +$(LIST): $(ELF) + @echo " OBJDUMP $(LIST)" + $(OBJDUMP) -S $(ELF) > $(LIST) + +$(ELF): $(OBJDIR) $(OBJS) + @echo " LD $(ELF)" + $(LD) $(LDFLAGS) $(OBJS) $(LDLIBS) -o $(ELF) + +size: $(ELF) + $(SIZE) $(ELF) + +clean: + @echo " CLEAN" + @rm -rf $(OBJDIR) 2>/dev/null || true + + +flash: $(BIN) + @echo " FLASH $(BIN)" + $(STFLASH) write $(BIN) 0x8000000 + +boot: $(BIN) + @echo " LOAD $(BIN) through bootloader" + $(STBOOT) -b$(BOOTSPEED) $(BOOTPORT) -w $(BIN) + +dfuboot: $(BIN) + @echo " LOAD $(BIN) THROUGH DFU" + $(DFUUTIL) -a0 -D $(BIN) -s 0x08000000 + +.PHONY: clean flash boot diff --git a/F1:F103/Canon_managing_device/Readme b/F1:F103/Canon_managing_device/Readme new file mode 100644 index 0000000..77f80bf --- /dev/null +++ b/F1:F103/Canon_managing_device/Readme @@ -0,0 +1,24 @@ +Canon lens management. + +Protocol have a string form, each string ends with '\n'. You should wait an answer for previous command before sending next, +or have risk to miss all the rest commands in one packet. + +USB commands: + +0 - move to smallest foc value (e.g. 2.5m) +1 - move to largest foc value (e.g. infinity) +d - open/close diaphragm by 1 step (+/-), open/close fully (o/c) (no way to know it current status) +f - get focus state or move it to given relative position +h - turn on hand focus management +i - get lens information +l - get lens model +r - get regulators' state + debugging commands: +F - change SPI flags (F f val), f== l-LSBFIRST, b-BR [18MHz/2^(b+1)], p-CPOL, h-CPHA +G - get SPI status +I - reinit SPI +R - software reset +S - send data over SPI +T - show Tms value + + diff --git a/F1:F103/Canon_managing_device/canon.c b/F1:F103/Canon_managing_device/canon.c new file mode 100644 index 0000000..5a789b7 --- /dev/null +++ b/F1:F103/Canon_managing_device/canon.c @@ -0,0 +1,215 @@ +/* + * This file is part of the canonmanage project. + * Copyright 2022 Edward V. Emelianov . + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +#include "canon.h" +#include "hardware.h" +#include "proto.h" +#include "spi.h" +#include "usb.h" + +#define CU(a) ((const uint8_t*)a) + +#if 0 +typedef struct{ + canon_commands cmd; // command code + int zeros; // amount of zeros after command +} command; + +static command commands[] = { + {CANON_LONGID, 11}, + {CANON_ID, 6}, + {CANON_REPDIA, 1}, + {CANON_FSTOP, 1}, + {CANON_FMIN, 1}, + {CANON_FMAX, 1}, + {CANON_POWERON, 1}, + {CANON_POWEROFF, 1}, + {CANON_POLL, 1}, + {CANON_DIAPHRAGM, 2}, + {CANON_FOCMOVE, 2}, + {CANON_FOCBYHANDS, 1}, + {CANON_GETINFO, 15}, + {CANON_GETREG, 2}, + {CANON_GETFOCLIM, 2}, + {CANON_GETDIAL, 2}, + {CANON_GETFOCM, 4}, +}; +#endif + +// command buffer (buf[0] == last command sent) +static uint8_t buf[SPIBUFSZ] = {0}, ready = 0; + +static void canon_read(uint8_t cmd, uint8_t zeroz){ + if(zeroz > MAXCMDLEN - 1) return; + ++zeroz; + *((uint32_t*)buf) = 0; + buf[0] = cmd; + SPI_transmit(buf, zeroz); +}/* +static void canon_writeu8(uint8_t cmd, uint8_t u){ + *((uint32_t*)buf) = 0; + buf[0] = cmd; buf[1] = u; + SPI_transmit(buf, 2); +}*/ +static void canon_writeu16(uint8_t cmd, uint16_t u){ + *((uint32_t*)buf) = 0; + buf[0] = cmd; buf[1] = u >> 8; buf[2] = u & 0xff; + SPI_transmit(buf, 3); +} + +static void canon_poll(){ + ready = 0; + canon_read(CANON_POLL, 0); +} + +// turn on power and send ack +void canon_init(){ + ready = 0; + canon_read(CANON_ID, 31); +} + +// send over USB 16-bit unsigned +static void printu16(uint8_t *b){ + USB_send(u2str((b[1] << 8) | b[2])); +} + +/** + * @brief canon_proc - check incoming SPI messages + */ +void canon_proc(){ + uint8_t lastcmd = buf[0]; // last command sent + uint32_t uval; + uint8_t x; + uint8_t *rbuf = SPI_receive(&x); + if(!rbuf) return; +#ifdef EBUG + //if(lastcmd != CANON_POLL){ + USB_send("SPI receive: "); + for(uint8_t i = 0; i < x; ++i){ + if(i) USB_send(", "); + USB_send(u2hexstr(rbuf[i])); + } + USB_send("\n"); + //} +#endif + int need2poll = 0; + switch (lastcmd){ + case CANON_LONGID: // something +// need2poll = 0; + break; + case CANON_ID: // got ID -> turn on power + canon_read(CANON_POWERON, 1); + break; + /*case CANON_POWERON: + ; + break;*/ + case CANON_POLL: + if(rbuf[0] == CANON_POLLANS){ + canon_read(CANON_LONGID, 0); + ready = 1; +#ifdef EBUG + USB_send("Ready!\n"); +#endif + }else need2poll = 1; + break; + case CANON_GETINFO: + USB_send("Info="); for(int i = 1; i < 7; ++i){ + USB_send(u2hexstr(rbuf[i])); USB_send(" "); + } + USB_send("\n"); + break; + case CANON_GETREG: + USB_send("Reg="); USB_send(u2hexstr((rbuf[1] << 8) | rbuf[2])); USB_send("\n"); + break; + case CANON_GETMODEL: + USB_send("Lens="); printu16(rbuf); USB_send("\n"); + break; + case CANON_GETDIAL: + USB_send("Fsteps="); printu16(rbuf); USB_send("\n"); + //canon_read(CANON_GETFOCM, 4); + break; + case CANON_GETFOCM: // don't work @EF200 + uval = (rbuf[1] << 24) | (rbuf[2] << 16) | (rbuf[3] << 8) | rbuf[4]; + USB_send("Fval="); USB_send(u2str(uval)); USB_send("\n"); + break; + default: + need2poll = 1; // poll after any other command + break; + } + if(need2poll) canon_poll(); +} + +/** + * @brief canon_diaphragm - run comands + * @param command: open/close diaphragm by 1 step (+/-), open/close fully (o/c) + * @return 0 if success or error code (1 - not ready, 2 - bad command) + */ +int canon_diaphragm(char command){ + if(!ready) return 1; + int16_t val = 0; + switch(command){ + case '+': + val = -1; + break; + case '-': + val = 1; + break; + case 'o': + case 'O': + val = 128; + break; + case 'c': + case 'C': + val = 127; + break; + default: + return 2; // unknown command + } + canon_writeu16(CANON_DIAPHRAGM, (uint16_t)(val << 8)); + return 0; +} + +int canon_focus(int16_t val){ + if(!ready) return 1; + if(val == 0) canon_read(CANON_GETDIAL, 2); + else canon_writeu16(CANON_FOCMOVE, val); + return 0; +} + +int canon_sendcmd(uint8_t cmd){ + if(!ready) return 1; + canon_read(cmd, 0); + return 0; +} + +void canon_setlastcmd(uint8_t x){ + buf[0] = x; +} + +// acquire 16bit value +int canon_asku16(uint8_t cmd){ + if(!ready) return 1; + canon_read(cmd, 2); + return 0; +} + +int canon_getinfo(){ + if(!ready) return 1; + canon_read(CANON_GETINFO, 6); + return 0; +} diff --git a/F1:F103/Canon_managing_device/canon.h b/F1:F103/Canon_managing_device/canon.h new file mode 100644 index 0000000..c889cfd --- /dev/null +++ b/F1:F103/Canon_managing_device/canon.h @@ -0,0 +1,58 @@ +/* + * This file is part of the canonmanage project. + * Copyright 2022 Edward V. Emelianov . + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +#pragma once + +#include + +// all data sent in big-endian format + +// max length of commands +#define MAXCMDLEN (32) + +// answer for cmd "POLL" +#define CANON_POLLANS (0xaa) + +typedef enum{ + CANON_LONGID = 0x00, // long ID ??? + CANON_ID = 0x01, // lens ID and other info ??? + CANON_REPDIA = 0x02, // repeat last diaphragm change + CANON_FSTOP = 0x04, // stop focus changing + CANON_FMAX = 0x05, // set Foc to max + CANON_FMIN = 0x06, // =//= min + CANON_POWERON = 0x07, // turn on motors' power + CANON_POWEROFF = 0x08, // turn off power + CANON_POLL = 0x0a, // bysu poll (ans 0xaa when ready or last command code) + CANON_DIAPHRAGM = 0x13, // open/close diaphragm by given (int8_t) value of steps + CANON_FOCMOVE = 0x44, // move focus dial by given amount of steps (int16) + CANON_FOCBYHANDS= 0x5e, // turn on focus move by hands (to turn off send 4,5 or 6) + CANON_GETINFO = 0x80, // get information + CANON_GETREG = 0x90, // get regulators' state + CANON_GETMODEL = 0xa0, // get lens (e.g. 200 == LX200) + CANON_GETDIAL = 0xc0, // get focus dial position in steps + CANON_GETFOCM = 0xc2, // get focus position in meters (not for all lenses) +} canon_commands; + +void canon_init(); +void canon_proc(); +int canon_diaphragm(char command); +int canon_focus(int16_t val); +int canon_sendcmd(uint8_t cmd); +int canon_asku16(uint8_t cmd); +void canon_setlastcmd(uint8_t x); +int canon_getinfo(); diff --git a/F1:F103/Canon_managing_device/canonusb.bin b/F1:F103/Canon_managing_device/canonusb.bin new file mode 100755 index 0000000000000000000000000000000000000000..3293b8e9b84755a4a13855dc9b959e6b97cdffbf GIT binary patch literal 7944 zcmb_B3shUjmGeGALVPSNwcEIL(rtcge$K{82(->_lWle@*`|d!U9)NI=RlG^Vqt{spuHoo z>n7WCwr3a4WoGW&-`soW&b$F_K}@CwDKY@kz5?hgKbQssM&ovr`Z~{7W&Ew<6U+Yp zW&W);{9ovij^ZdAQB3mh^-}>Pog7BP280;EJ6354MiYq7eg-%j-~z|X9o@ZY({hyC ziKLI?%)ox5jN2C0jVXHw3%owo*N$#tJR1q_Agk*`mV2wr! zVZJ;@_6CNGeT2~%(Q|-0IY`k7uowF60N59gKBG5liS|8B-fKXrQI8- z0J)R%h*1sQ%&Ryq1MZX)1fv*2+W2f*9N}IfhJ+(45ZJU3^pcbe=>#)fwxY^ zREm=^It%MYD$;@wVL>VY)H_Jp)dFEw^LVZXvnqeKwd{C$G;izOXOOC7HfwpZ(7dCQa$eLqK_=atu=ZPTF@Ycf*PK9S_V1@^T5o*UBp516eS!YE{`H@fujy& z>m&+n0v?HkmN;-TEq$s&prlkv!A2uUE7wW+j6++q!u9~q)P!RCEzj~AK0cchU+F}W zCyu07zKqW%&F2fZ3VPxGoPn7uUCF2Og{#5`6*)8+MO!HexzrWqZX`W6AD=CXGkr+v zom0Ty?eltJ!1~AVtwMbEPhVc=o;-a{ydLLx41IJ^KMz zLzE!)PAn%+If0DM$x8auv&Ag7K`~q@5p)i=LPiu~{i*zL7;_^1mfRHnL-AlIS#qfl z+mJCKTXS^UO=phFj4zGdlb0z4oJXf<>R%(&lq?fVL+noyD^4~Zo!*!vj+yd46>ra* z6p%iT!Z;(aU1Q z9cNEat5d?;`&_wW{j{O3ANHAksVyZy_Tqfa;wWheWioBfO=cB=0!}r4j~V4dc9vfd zpJSbqYSriCnBtxr6rYco7AZ!>bck&#K;b7+MO=^asyffbUg>_J_64W1a8Iw9hdi<1 ztjP#J+DCN~PkSKZ%e&DR2SOb5ej9SJ7O5vx#c>>A+BQLU{%qPrSy}YOaOm7cwUkXT z#1Q)5{gxAcp#ACB=pQ48&>LUFeqHA0Kr=(kCbXs8M8A}Px>gzon;z|s8`G@!8Ti@eL$pUi-QA z(&>7jQC)i`hERO=hu5mPoiN^U^@uff_*=Fe&?m1UhUy)#j#%J%F-)lwEhHm1}zzlMZNRDn!TWzngk<)Ps@97^| zk4}*?3fF*Ds9*-7zm8was{>ViN(O1m1!8?&?pi)8a9>~@Uv68_z21=}yeSeU3hx=v zemTq(&W%^*E@)&x<7Z*wkerA27NTMrXw9wdfIiKLY3h7=zs15AD+c41fa0F5PRJU#pgZ_he9` ze+=G}(Ns7C>NKv>a4IW$9gjjzX9??}md0nR<_G&;;q=_bl}QssIn-Q5Dz5F);m`t4 zH1hg1T0)1tTrLNDVFXuDHn2~0X%E|f@|RHpJvXAHea4Xy$mv|i6D*tyQpRo)WPTpP zHS>eeBYhp(1Ga{h3soEA%6DTb#5COwKJZ$QSU!q^Ysq4bR_;rzkANXNcde#3ij zgD1M84#<3O~6}Yr`x5EJO(v5=l|KOSh@!?rIt$M}yYG5IGw1{^rQ-g}5Q%PRRfGZ1b0| z_C3$B5Vu8J6LA~4LB9|+54Yk*)bs(*h2n(H7ZW-|pz|Hkn83V{zz~3WQ#9B}K_``w z*2$AF9uVWR=dSuiWZV!fJ=Ur%xG8Qs6Y<7Tn~CTX6#8TJTHQ?)wKq{L6?36NOwSEp zaz2?;o#Xg7fs9Vnt1EuPW6XSlpE?%QF2BM5cLUe6;&SBD1vn!hzu$rLHw)S@w4YLl z`4rkHKq}-vzVG03qzw9FfcqE#K_B0XXmmyPA&iOqU!BKxygG-N7tiBUUmf`9e62Ri zp8c1ZCfg8w@70BTjz&(Nr>@E_W%b8r#ku%w+tszg+vk7EdC#YTq@Fp3+k2i8^b+=H zj);5Mlgkr59N7#w`zoh&Z-3i+_qH%7Q-)wEsUHq z2zic?85DTk`itQ*ZndDUoahU#%*}%PdCpNQRK`_v5sP7IgcYbtmS+X1o?X;gRyaC? z+StVDUm&Q2U(TSQs`9k>ee2{O%voicoF(RqZUjFsZ`~!!KQ>gV3)XP7r`V~s|KHFR@78PL#`*>a=W%i?#Kvb1=KyNw+{7J zNES*Rf}4hlwBYc>_lT^m(Db{25XsJr1G9)s%oZ8S`jUyHnMrNaz&0ct{EQ(%+Kq2RIui96IVmM;Nd zT`C$e@`N5mB+0JsWcyGbyaVWIn;L&70xwF?V>--};<#VX^uu?NRVP_UwE9rL{H)xr zwrslG^&Q%tVsXJ&oK7-Pd!iQCq5exEdH`9Td@>#<7~AC~ZB#X7R|FzLisdxW<>K|i zJi%BlKe;$}0Ok(DTo&lVb7jYu*x*h!PjjXdX`5NW!ls3x(&O*De5IqiUtUcyE8r{m zAFn1kasf+n1V=GQdhRNwni6wC&N2Y3iy6RQ>nQ^i7dVb%E8|Y}p*-9pO3~^ok<{9x z2`z`K;n;khMpl^;Hh04PK8)Wd7Vz&U@RuTiA?%kevIV)O?%j8C_md_U+jas%pDlxKr{zLigXEv}U`=$`Z$%MQNMIa!-7pRwFi6=Nn+DrHk4Sr>XK z^lpsa|87j7I>wtribKxH$5+1_OFd%arg*r)eIGO^e=AZ9?vshXD1I;SOMu{d4xM|PAo^eKx zd=sQ(0>4FJm(?Uyt37J(X^+dZ+>_5M+yVRzGK~HUzGoGL1?Q&)zGvlz)Ukf>lW9;k zhU*;(->mW3x?zIB-vV@E4@t+%?R$D%zI$cdnKDP6FN3~q^a0=Pn`vnYts}67^weHL zHnp1|XGW~9SYAN!_$lFjU;U+I^g)uM+c~*6i5|^8Q7)@KQ$}w%QwrYNOP?3=`<}kI z1m!iOr+=|YhvmwWM-k(XBDdDA3TS**DV5ZC?(^ip+$lO~)E^Dqt?}s=u~e@#g#DIV zWzmPUFy~P_m(`X9GCf;7>dod*#Iv;85ZLBH2Q(Z3FGSKjGCT))C=I1KRzJ>gY1JCo zd)Zh1S!B4BY9uYYB6s8ldZ7+t-{6?w+`{p}`C4@gQdGj22CxC#;ec#&4#bj1${hQu z48!}lffyb79yd`{JN6dbX$)ce<(IUlW9Z1aSh&|zYqCvLZQ=~WP26z*>s7ym-U%*w znvk`qlwlXAoO)FDPtzn>5+j`zG1~ECI6+>SlGD%k{|55u?aJH}6IH}GWX+Q$!Yar0 z3icG#G85FY5ZNu6$Pyl2b;=2z3ABH1-wOKt=tR}wVWbBsCS?52@blc8;yYmN zJKU-(`y^}bR#lFW90twl)KoWdSBxwI?d%hvJ;`w|&e$jMTCp#%Pml>&HdvP+#3KvN zrR%VN4rW;DEUp!GQ2%US?6p?(boU;#-V(Nb@xA(k)|_yN&4k+bgP7cuZa>(QArPzv zd_d^beM5jt;pM;y@2H!|1kI-+k!UZ9FD2TKMXVFs(P>v5R|{Em=9!$Nl+g!mr+piH zD5;Bj0!|DQ!)5#5;B@r3BIh@SOBBYM*xx0F^LlJ;X(`|tjz9%+x>ez3D^>72$ z!uyuZakwW(kQ)ud^1S-oEh#;#jW4a``&ZaM9bT7v3Ik~NN#5Q&W3oul7JaGQDIq46o+4=eDTeG)Pi}$vY_6am9lGRy@K%Opw`79XR-ErR2bb7EIwGe+q#9=hI?`tvT)`a_ zDs%mpl4Z2nqsr{Y8urrW7;U7@N3B}eS+NMNsMlq{-8`{>(roDtYjb+FHHv~ySgr1) zQ>k{iN2b6%GUZvYE7_s6AGFe^kQOjG2d!5l^Ru(pfE&L{f-mrU`vj~Rx7)xk)vb;G z^)Rv3+k_ib<85uj9j>k28-O17pxcMXjG?}xZ5QJYGOb>(hiPtYZf|z`njdzzH~U)) z5UL6WVeX;kc7bW|d%O&=Ag2Q%*Ouzy!n-QA7K0GzC-ANQb|&a`dv*a0mWpXRTEE@u zf2bAgz@ix-1$uuYCT#PzE77)=gjuK-Yj5pnsrLpE7xcF#k~T_XZh{yWP#y?`rq9VWi93>RHDiWCT#I zS+fQjSdS8M?q;9YqeMb`d!TJyQBf1DxTAhegTJN7>+$UJwiLCsx0p-X+${m0x2>o> z==B!0xWSphBCfcw)$ePrFWT<1?yPXP`dfFlxLe&#-WG3bJ5%4$?DOc?nivaHVk#*q zG~H2HY*Lz-LZ-$4pcmWQ*5dYo%yy>H-@rgvI=qa*yQXOkQ?h1lOM$ZZCQ_d}*z`Y9 zHn%on_wFiCdVty=@U|8;`21~N#?$N$2tjvK3wVGjW^nKs16x#BV7!^CvBT%v#TfiW z4F!y$)z3WS-h~arkz*ie4IRNCUP@cLyS<~WK-ma7n!E{nJK7RhFHWGudVm}_o0=c= zwnB(~kVde`fWHmW%HOIKfU~_L*vj}@8NuD^!Ak}ae|DF$c~Q0x@)feN(I0F{q@vPy z^F#}zqE8uIL@;z?#ly$&8}T)&?271p?{T=iDhHX~DCXx+-(UtG4?_Ha?j4nsX#T<|R;6DX|M z;;b<;0<^Y`%1w(#V2KM3QdR>hcq8AHTVdD+DgTf==v_>E7e+xQE+i-9K@eM{+=kHt zI30GyLM9~gIGMZ+5d=C?k_`U|qT-OTa@lT5i3qujBrSNf2RCRbp(3EM{9O{IM-)LK z7%7t$aCm~IlIap^3ko7X@}Xwb2+)8Sv<-Qo6;Nve??+8&7htPl+38B_uEt*Cubo-Z*+QzoPC?A2YZ. + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +#include "hardware.h" + +static inline void gpio_setup(){ + // Set APB2 clock to 72/4=18MHz + RCC->CFGR = (RCC->CFGR & ~RCC_CFGR_PPRE2) | RCC_CFGR_PPRE2_DIV4; + // Enable clocks to the GPIO subsystems, turn on AFIO clocking to disable SWD/JTAG + RCC->APB2ENR = RCC_APB2ENR_IOPAEN | RCC_APB2ENR_IOPCEN | RCC_APB2ENR_AFIOEN; + AFIO->MAPR = AFIO_MAPR_SWJ_CFG_JTAGDISABLE; // for PA15 - USB pullup + // Set led as opendrain output + GPIOC->CRH = CRH(13, CNF_ODOUTPUT | MODE_SLOW); + // setup SPI GPIO - alternate function PP (PA5 - SCK, PA6 - MISO, PA7 - MOSI) + GPIOA->CRL = CRL(5, CNF_AFPP|MODE_FAST) | CRL(6, CNF_FLINPUT) | CRL(7, CNF_AFPP|MODE_FAST); + // USB pullup (PA15) - pushpull output + USBPU_OFF(); + GPIOA->CRH = CRH(15, CNF_PPOUTPUT | MODE_SLOW); +} + +void hw_setup(){ + gpio_setup(); +} + diff --git a/F1:F103/Canon_managing_device/hardware.h b/F1:F103/Canon_managing_device/hardware.h new file mode 100644 index 0000000..e1dbdaf --- /dev/null +++ b/F1:F103/Canon_managing_device/hardware.h @@ -0,0 +1,56 @@ +/* + * This file is part of the canonmanage project. + * Copyright 2022 Edward V. Emelianov . + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +#pragma once +#ifndef __HARDWARE_H__ +#define __HARDWARE_H__ + +#include + +// LED0 - PC13 (bluepill), blinking each second +#define LED0_port GPIOC +#define LED0_pin (1<<13) + +#define LED_blink(x) pin_toggle(x ## _port, x ## _pin) +#define LED_on(x) pin_clear(x ## _port, x ## _pin) +#define LED_off(x) pin_set(x ## _port, x ## _pin) + +#define USBPU_port GPIOA +#define USBPU_pin (1<<15) +#define USBPU_ON() pin_set(USBPU_port, USBPU_pin) +#define USBPU_OFF() pin_clear(USBPU_port, USBPU_pin) + +extern volatile uint32_t Tms; + +void hw_setup(); + +// SPI RX/TX max len +#define SPIBUFSZ (32) + +#define DMA_SPI_Rx_IRQ DMA1_Channel2_IRQn +#define SPIx SPI1 +#define SPI_APB2 RCC_APB2ENR_SPI1EN +#define DMA_SPI DMA1 +#define DMA_SPI_AHBENR RCC_AHBENR_DMA1EN +#define DMA_SPI_TCIF DMA_ISR_TCIF2 +#define DMA_SPI_CTCIF DMA_IFCR_CTCIF2 +#define DMA_SPI_TxChannel DMA1_Channel3 +#define DMA_SPI_RxChannel DMA1_Channel2 +#define DMA_SPI_Rx_ISR dma1_channel2_isr + +#endif // __HARDWARE_H__ diff --git a/F1:F103/Canon_managing_device/kicad/Canon_manage/Canon_manage.csv b/F1:F103/Canon_managing_device/kicad/Canon_manage/Canon_manage.csv new file mode 100644 index 0000000..a8fed5d --- /dev/null +++ b/F1:F103/Canon_managing_device/kicad/Canon_manage/Canon_manage.csv @@ -0,0 +1,94 @@ +"Source:","/home/eddy/Docs/SAO/ELECTRONICS/STM32/F1-srcs/Canon_managing_device/kicad/Canon_manage/Canon_manage.kicad_sch" +"Date:","Чт 22 сен 2022 14:54:59" +"Tool:","Eeschema 6.0.5" +"Generator:","/usr/local/share/kicad/plugins/bom_csv_grouped_by_value.py" +"Component Count:","60" + +"Individual Components:" + +"Item","Qty","Reference(s)","Value","LibPart","Footprint","Datasheet" +"","","C1","12","Device:C","Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder","~" +"","","C2","12","Device:C","Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder","~" +"","","C3","1u","Device:C","Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder","~" +"","","C4","0.1","Device:C","Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder","~" +"","","C5","0.1","Device:C","Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder","~" +"","","C6","0.1","Device:C","Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder","~" +"","","C7","0.1","Device:C","Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder","~" +"","","C8","0.1","Device:C","Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder","~" +"","","C9","47u","Device:C_Polarized","Capacitor_Tantalum_SMD:CP_EIA-6032-28_Kemet-C_Pad2.25x2.35mm_HandSolder","~" +"","","D1","SP0504BAHT","Power_Protection:SP0504BAHT","Package_TO_SOT_SMD:SOT-23-5","http://www.littelfuse.com/~/media/files/littelfuse/technical%20resources/documents/data%20sheets/sp05xxba.pdf" +"","","J1","SWD","Connector:Conn_01x06_Female","Connector_PinSocket_2.54mm:PinSocket_1x06_P2.54mm_Vertical","~" +"","","J2","Conn_01x01_Male","Connector:Conn_01x01_Male","Connector_PinHeader_1.00mm:PinHeader_1x01_P1.00mm_Vertical","~" +"","","J3","Conn_01x01_Male","Connector:Conn_01x01_Male","Connector_PinHeader_1.00mm:PinHeader_1x01_P1.00mm_Vertical","~" +"","","J4","Conn_01x01_Male","Connector:Conn_01x01_Male","Connector_PinHeader_1.00mm:PinHeader_1x01_P1.00mm_Vertical","~" +"","","J5","Conn_01x01_Male","Connector:Conn_01x01_Male","Connector_PinHeader_1.00mm:PinHeader_1x01_P1.00mm_Vertical","~" +"","","J6","Conn_01x01_Male","Connector:Conn_01x01_Male","Connector_PinHeader_1.00mm:PinHeader_1x01_P1.00mm_Vertical","~" +"","","J7","Conn_01x01_Male","Connector:Conn_01x01_Male","Connector_PinHeader_1.00mm:PinHeader_1x01_P1.00mm_Vertical","~" +"","","J8","Conn_01x01_Male","Connector:Conn_01x01_Male","Connector_PinHeader_1.00mm:PinHeader_1x01_P1.00mm_Vertical","~" +"","","J9","Conn_01x01_Male","Connector:Conn_01x01_Male","Connector_PinHeader_1.00mm:PinHeader_1x01_P1.00mm_Vertical","~" +"","","J10","Conn_01x01_Male","Connector:Conn_01x01_Male","Connector_PinHeader_1.00mm:PinHeader_1x01_P1.00mm_Vertical","~" +"","","J11","Conn_01x01_Male","Connector:Conn_01x01_Male","Connector_PinHeader_1.00mm:PinHeader_1x01_P1.00mm_Vertical","~" +"","","J12","Conn_01x01_Male","Connector:Conn_01x01_Male","Connector_PinHeader_1.00mm:PinHeader_1x01_P1.00mm_Vertical","~" +"","","J13","Conn_01x01_Male","Connector:Conn_01x01_Male","Connector_PinHeader_1.00mm:PinHeader_1x01_P1.00mm_Vertical","~" +"","","J14","Conn_01x01_Male","Connector:Conn_01x01_Male","Connector_PinHeader_1.00mm:PinHeader_1x01_P1.00mm_Vertical","~" +"","","J15","Conn_01x01_Male","Connector:Conn_01x01_Male","Connector_PinHeader_1.00mm:PinHeader_1x01_P1.00mm_Vertical","~" +"","","J16","Conn_01x01_Male","Connector:Conn_01x01_Male","Connector_PinHeader_1.00mm:PinHeader_1x01_P1.00mm_Vertical","~" +"","","J17","Conn_01x01_Male","Connector:Conn_01x01_Male","Connector_PinHeader_1.00mm:PinHeader_1x01_P1.00mm_Vertical","~" +"","","J18","Conn_01x01_Male","Connector:Conn_01x01_Male","Connector_PinHeader_1.00mm:PinHeader_1x01_P1.00mm_Vertical","~" +"","","J19","Conn_01x01_Male","Connector:Conn_01x01_Male","Connector_PinHeader_1.00mm:PinHeader_1x01_P1.00mm_Vertical","~" +"","","J20","Conn_01x01_Male","Connector:Conn_01x01_Male","Connector_PinHeader_1.00mm:PinHeader_1x01_P1.00mm_Vertical","~" +"","","J21","Conn_01x01_Male","Connector:Conn_01x01_Male","Connector_PinHeader_1.00mm:PinHeader_1x01_P1.00mm_Vertical","~" +"","","J22","Conn_01x01_Male","Connector:Conn_01x01_Male","Connector_PinHeader_1.00mm:PinHeader_1x01_P1.00mm_Vertical","~" +"","","J23","Conn_01x01_Male","Connector:Conn_01x01_Male","Connector_PinHeader_1.00mm:PinHeader_1x01_P1.00mm_Vertical","~" +"","","J24","Conn_01x01_Male","Connector:Conn_01x01_Male","Connector_PinHeader_1.00mm:PinHeader_1x01_P1.00mm_Vertical","~" +"","","J25","Conn_01x01_Male","Connector:Conn_01x01_Male","Connector_PinHeader_1.00mm:PinHeader_1x01_P1.00mm_Vertical","~" +"","","J26","5v","Connector_Generic:Conn_01x01","Connector_PinHeader_2.54mm:PinHeader_1x01_P2.54mm_Vertical","~" +"","","J27","Conn_01x01_Male","Connector:Conn_01x01_Male","Connector_PinHeader_1.00mm:PinHeader_1x01_P1.00mm_Vertical","~" +"","","J28","Conn_01x01_Male","Connector:Conn_01x01_Male","Connector_PinHeader_1.00mm:PinHeader_1x01_P1.00mm_Vertical","~" +"","","J29","Conn_01x01_Male","Connector:Conn_01x01_Male","Connector_PinHeader_1.00mm:PinHeader_1x01_P1.00mm_Vertical","~" +"","","J30","Conn_01x01_Male","Connector:Conn_01x01_Male","Connector_PinHeader_1.00mm:PinHeader_1x01_P1.00mm_Vertical","~" +"","","J31","Conn_01x01_Male","Connector:Conn_01x01_Male","Connector_PinHeader_1.00mm:PinHeader_1x01_P1.00mm_Vertical","~" +"","","J32","Conn_01x01_Male","Connector:Conn_01x01_Male","Connector_PinHeader_1.00mm:PinHeader_1x01_P1.00mm_Vertical","~" +"","","J33","Conn_01x01_Male","Connector:Conn_01x01_Male","Connector_PinHeader_1.00mm:PinHeader_1x01_P1.00mm_Vertical","~" +"","","J34","Conn_01x01_Male","Connector:Conn_01x01_Male","Connector_PinHeader_1.00mm:PinHeader_1x01_P1.00mm_Vertical","~" +"","","J35","GND","Connector_Generic:Conn_01x01","Connector_PinHeader_2.54mm:PinHeader_1x01_P2.54mm_Vertical","~" +"","","J36","3v3","Connector_Generic:Conn_01x01","Connector_PinHeader_2.54mm:PinHeader_1x01_P2.54mm_Vertical","~" +"","","J37","USB_C_Receptacle","Connector:USB_C_Receptacle","Connector_USB:USB_C_Receptacle_HRO_TYPE-C-31-M-12","https://www.usb.org/sites/default/files/documents/usb_type-c.zip" +"","","R1","10k","Device:R","Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder","~" +"","","R2","47","Device:R","Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder","~" +"","","R3","47","Device:R","Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder","~" +"","","R4","47","Device:R","Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder","~" +"","","R5","47","Device:R","Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder","~" +"","","R6","510","Device:R","Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder","~" +"","","R7","22","Device:R","Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder","~" +"","","R8","22","Device:R","Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder","~" +"","","R9","510","Device:R","Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder","~" +"","","U1","STM32F103C6Tx","MCU_ST_STM32F1:STM32F103C6Tx","Package_QFP:LQFP-48_7x7mm_P0.5mm","http://www.st.com/st-web-ui/static/active/en/resource/technical/document/datasheet/CD00210843.pdf" +"","","U2","LM1117-3.3","Regulator_Linear:LM1117-3.3","Package_TO_SOT_SMD:SOT-223-3_TabPin2","http://www.ti.com/lit/ds/symlink/lm1117.pdf" +"","","U3","USBLC6-2SC6","Power_Protection:USBLC6-2SC6","Package_TO_SOT_SMD:SOT-23-6_Handsoldering","https://www.st.com/resource/en/datasheet/usblc6-2.pdf" +"","","Y1","8MHz","Device:Crystal","Crystal:Crystal_HC49-U_Vertical","~" + + + +"Collated Components:" + +"Item","Qty","Reference(s)","Value","LibPart","Footprint","Datasheet" +"1","2","C1, C2","12","Device:C","Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder","~" +"2","1","C3","1u","Device:C","Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder","~" +"3","5","C4, C5, C6, C7, C8","0.1","Device:C","Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder","~" +"4","1","C9","47u","Device:C_Polarized","Capacitor_Tantalum_SMD:CP_EIA-6032-28_Kemet-C_Pad2.25x2.35mm_HandSolder","~" +"5","1","D1","SP0504BAHT","Power_Protection:SP0504BAHT","Package_TO_SOT_SMD:SOT-23-5","http://www.littelfuse.com/~/media/files/littelfuse/technical%20resources/documents/data%20sheets/sp05xxba.pdf" +"6","1","J1","SWD","Connector:Conn_01x06_Female","Connector_PinSocket_2.54mm:PinSocket_1x06_P2.54mm_Vertical","~" +"7","32","J2, J3, J4, J5, J6, J7, J8, J9, J10, J11, J12, J13, J14, J15, J16, J17, J18, J19, J20, J21, J22, J23, J24, J25, J27, J28, J29, J30, J31, J32, J33, J34","Conn_01x01_Male","Connector:Conn_01x01_Male","Connector_PinHeader_1.00mm:PinHeader_1x01_P1.00mm_Vertical","~" +"8","1","J26","5v","Connector_Generic:Conn_01x01","Connector_PinHeader_2.54mm:PinHeader_1x01_P2.54mm_Vertical","~" +"9","1","J35","GND","Connector_Generic:Conn_01x01","Connector_PinHeader_2.54mm:PinHeader_1x01_P2.54mm_Vertical","~" +"10","1","J36","3v3","Connector_Generic:Conn_01x01","Connector_PinHeader_2.54mm:PinHeader_1x01_P2.54mm_Vertical","~" +"11","1","J37","USB_C_Receptacle","Connector:USB_C_Receptacle","Connector_USB:USB_C_Receptacle_HRO_TYPE-C-31-M-12","https://www.usb.org/sites/default/files/documents/usb_type-c.zip" +"12","1","R1","10k","Device:R","Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder","~" +"13","4","R2, R3, R4, R5","47","Device:R","Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder","~" +"14","2","R6, R9","510","Device:R","Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder","~" +"15","2","R7, R8","22","Device:R","Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder","~" +"16","1","U1","STM32F103C6Tx","MCU_ST_STM32F1:STM32F103C6Tx","Package_QFP:LQFP-48_7x7mm_P0.5mm","http://www.st.com/st-web-ui/static/active/en/resource/technical/document/datasheet/CD00210843.pdf" +"17","1","U2","LM1117-3.3","Regulator_Linear:LM1117-3.3","Package_TO_SOT_SMD:SOT-223-3_TabPin2","http://www.ti.com/lit/ds/symlink/lm1117.pdf" +"18","1","U3","USBLC6-2SC6","Power_Protection:USBLC6-2SC6","Package_TO_SOT_SMD:SOT-23-6_Handsoldering","https://www.st.com/resource/en/datasheet/usblc6-2.pdf" +"19","1","Y1","8MHz","Device:Crystal","Crystal:Crystal_HC49-U_Vertical","~" diff --git a/F1:F103/Canon_managing_device/kicad/Canon_manage/Canon_manage.kicad_pcb b/F1:F103/Canon_managing_device/kicad/Canon_manage/Canon_manage.kicad_pcb new file mode 100644 index 0000000..1d52a85 --- /dev/null +++ b/F1:F103/Canon_managing_device/kicad/Canon_manage/Canon_manage.kicad_pcb @@ -0,0 +1,19293 @@ +(kicad_pcb (version 20211014) (generator pcbnew) + + (general + (thickness 1.6) + ) + + (paper "A4") + (layers + (0 "F.Cu" signal) + (31 "B.Cu" signal) + (32 "B.Adhes" user "B.Adhesive") + (33 "F.Adhes" user "F.Adhesive") + (34 "B.Paste" user) + (35 "F.Paste" user) + (36 "B.SilkS" user "B.Silkscreen") + (37 "F.SilkS" user "F.Silkscreen") + (38 "B.Mask" user) + (39 "F.Mask" user) + (40 "Dwgs.User" user "User.Drawings") + (41 "Cmts.User" user "User.Comments") + (42 "Eco1.User" user "User.Eco1") + (43 "Eco2.User" user "User.Eco2") + (44 "Edge.Cuts" user) + (45 "Margin" user) + (46 "B.CrtYd" user "B.Courtyard") + (47 "F.CrtYd" user "F.Courtyard") + (48 "B.Fab" user) + (49 "F.Fab" user) + (50 "User.1" user) + (51 "User.2" user) + (52 "User.3" user) + (53 "User.4" user) + (54 "User.5" user) + (55 "User.6" user) + (56 "User.7" user) + (57 "User.8" user) + (58 "User.9" user) + ) + + (setup + (stackup + (layer "F.SilkS" (type "Top Silk Screen")) + (layer "F.Paste" (type "Top Solder Paste")) + (layer "F.Mask" (type "Top Solder Mask") (thickness 0.01)) + (layer "F.Cu" (type "copper") (thickness 0.035)) + (layer "dielectric 1" (type "core") (thickness 1.51) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02)) + (layer "B.Cu" (type "copper") (thickness 0.035)) + (layer "B.Mask" (type "Bottom Solder Mask") (thickness 0.01)) + (layer "B.Paste" (type "Bottom Solder Paste")) + (layer "B.SilkS" (type "Bottom Silk Screen")) + (copper_finish "None") + (dielectric_constraints no) + ) + (pad_to_mask_clearance 0) + (pcbplotparams + (layerselection 0x00010fc_ffffffff) + (disableapertmacros false) + (usegerberextensions false) + (usegerberattributes true) + (usegerberadvancedattributes true) + (creategerberjobfile true) + (svguseinch false) + (svgprecision 6) + (excludeedgelayer true) + (plotframeref false) + (viasonmask false) + (mode 1) + (useauxorigin false) + (hpglpennumber 1) + (hpglpenspeed 20) + (hpglpendiameter 15.000000) + (dxfpolygonmode true) + (dxfimperialunits true) + (dxfusepcbnewfont true) + (psnegative false) + (psa4output false) + (plotreference true) + (plotvalue true) + (plotinvisibletext false) + (sketchpadsonfab false) + (subtractmaskfromsilk false) + (outputformat 1) + (mirror false) + (drillshape 0) + (scaleselection 1) + (outputdirectory "gerbers/") + ) + ) + + (net 0 "") + (net 1 "/OSC_IN") + (net 2 "GND") + (net 3 "/OSC_OUT") + (net 4 "/VBUS") + (net 5 "+3V3") + (net 6 "/L_DETECT") + (net 7 "/SPI_SCK") + (net 8 "/SPI_MISO") + (net 9 "/SPI_MOSI") + (net 10 "/SWCLK") + (net 11 "/SWDIO") + (net 12 "/BOOT0") + (net 13 "/NRST") + (net 14 "unconnected-(U1-Pad46)") + (net 15 "Net-(J37-PadA5)") + (net 16 "/DP") + (net 17 "/DM") + (net 18 "unconnected-(J37-PadA8)") + (net 19 "Net-(J37-PadB5)") + (net 20 "unconnected-(J37-PadB8)") + (net 21 "Net-(R7-Pad2)") + (net 22 "Net-(R8-Pad2)") + (net 23 "unconnected-(U1-Pad2)") + (net 24 "unconnected-(U1-Pad3)") + (net 25 "unconnected-(U1-Pad4)") + (net 26 "/USBDM") + (net 27 "/USBDP") + (net 28 "unconnected-(U1-Pad10)") + (net 29 "unconnected-(U1-Pad11)") + (net 30 "unconnected-(U1-Pad12)") + (net 31 "unconnected-(U1-Pad13)") + (net 32 "unconnected-(U1-Pad18)") + (net 33 "unconnected-(U1-Pad19)") + (net 34 "unconnected-(U1-Pad20)") + (net 35 "unconnected-(U1-Pad21)") + (net 36 "unconnected-(U1-Pad22)") + (net 37 "unconnected-(U1-Pad25)") + (net 38 "unconnected-(U1-Pad26)") + (net 39 "unconnected-(U1-Pad27)") + (net 40 "unconnected-(U1-Pad28)") + (net 41 "unconnected-(U1-Pad29)") + (net 42 "unconnected-(U1-Pad30)") + (net 43 "unconnected-(U1-Pad31)") + (net 44 "unconnected-(U1-Pad38)") + (net 45 "unconnected-(U1-Pad39)") + (net 46 "unconnected-(U1-Pad40)") + (net 47 "unconnected-(U1-Pad41)") + (net 48 "unconnected-(U1-Pad42)") + (net 49 "unconnected-(U1-Pad43)") + (net 50 "unconnected-(U1-Pad45)") + (net 51 "Net-(R2-Pad2)") + (net 52 "Net-(R3-Pad2)") + (net 53 "Net-(R4-Pad2)") + (net 54 "Net-(R5-Pad2)") + + (footprint "Connector_PinHeader_1.00mm:PinHeader_1x01_P1.00mm_Vertical" (layer "F.Cu") + (tedit 59FED738) (tstamp 0ba83bbb-b3f3-405f-93f4-b3730576e3be) + (at 103.98 64.57) + (descr "Through hole straight pin header, 1x01, 1.00mm pitch, single row") + (tags "Through hole pin header THT 1x01 1.00mm single row") + (property "Sheetfile" "Canon_manage.kicad_sch") + (property "Sheetname" "") + (path "/aae008f9-f910-4c20-a329-804cd75c2034") + (attr through_hole) + (fp_text reference "J6" (at 0 -2.4162 90) (layer "F.SilkS") hide + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 9e4b06ff-e141-41da-8fc7-7903fa6d6615) + ) + (fp_text value "MOSI" (at 0.1346 -2.9242 90) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 40491ec7-bcf5-4c0e-8a34-93dfebc9779d) + ) + (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") + (effects (font (size 0.76 0.76) (thickness 0.114))) + (tstamp d2d45945-7452-4145-935b-b98ba2188164) + ) + (fp_line (start -0.695 0.685) (end 0.695 0.685) (layer "F.SilkS") (width 0.12) (tstamp 0503ee8b-98aa-4a2b-85b7-d07ff251f23a)) + (fp_line (start 0.608276 0.685) (end 0.695 0.685) (layer "F.SilkS") (width 0.12) (tstamp 41766ac7-570f-44c3-9ca8-19701706e281)) + (fp_line (start -0.695 0) (end -0.695 -0.685) (layer "F.SilkS") (width 0.12) (tstamp 5150742d-64b3-45e2-8188-ba8e5f46caac)) + (fp_line (start -0.695 -0.685) (end 0 -0.685) (layer "F.SilkS") (width 0.12) (tstamp 6c574616-dd49-4487-a77b-6402d7a0a902)) + (fp_line (start -0.695 0.685) (end -0.695 0.56) (layer "F.SilkS") (width 0.12) (tstamp 7e3941f2-17d2-4caa-adf7-2e772c280952)) + (fp_line (start -0.695 0.685) (end -0.608276 0.685) (layer "F.SilkS") (width 0.12) (tstamp acea54dc-473e-46fd-a34a-2a0556be631f)) + (fp_line (start 0.695 0.685) (end 0.695 0.56) (layer "F.SilkS") (width 0.12) (tstamp b57b2b4c-5cf5-4ff5-9f74-f13671ed14cf)) + (fp_line (start -1.15 -1) (end -1.15 1) (layer "F.CrtYd") (width 0.05) (tstamp 244ba0e9-befa-43f2-bc3e-5eb04d64d712)) + (fp_line (start 1.15 1) (end 1.15 -1) (layer "F.CrtYd") (width 0.05) (tstamp 97e3119f-872a-48ac-b365-d848bcbc8710)) + (fp_line (start -1.15 1) (end 1.15 1) (layer "F.CrtYd") (width 0.05) (tstamp a12ca6a0-7465-40cb-bdfd-c45fcbcb0d75)) + (fp_line (start 1.15 -1) (end -1.15 -1) (layer "F.CrtYd") (width 0.05) (tstamp b427aa43-2c88-4597-93dc-c2043296efa9)) + (fp_line (start -0.635 -0.1825) (end -0.3175 -0.5) (layer "F.Fab") (width 0.1) (tstamp 21789da2-75b8-4e70-9866-04d7e4ed026b)) + (fp_line (start -0.635 0.5) (end -0.635 -0.1825) (layer "F.Fab") (width 0.1) (tstamp 5e45c9cb-7672-4bf1-8176-90bcbc6fcc19)) + (fp_line (start 0.635 0.5) (end -0.635 0.5) (layer "F.Fab") (width 0.1) (tstamp 9430a2b7-0c97-402c-bdb5-adced37c0ad4)) + (fp_line (start 0.635 -0.5) (end 0.635 0.5) (layer "F.Fab") (width 0.1) (tstamp ad14c2e4-05a1-40ca-a035-2275d9c60f59)) + (fp_line (start -0.3175 -0.5) (end 0.635 -0.5) (layer "F.Fab") (width 0.1) (tstamp e6c199ec-a213-4c3f-8607-b51f4641b0e0)) + (pad "1" thru_hole rect (at 0 0) (size 0.85 0.85) (drill 0.5) (layers *.Cu *.Mask) + (net 52 "Net-(R3-Pad2)") (pinfunction "Pin_1") (pintype "passive") (tstamp 93db9728-7413-4873-a1c0-f693dc42b85a)) + (model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_1.00mm.3dshapes/PinHeader_1x01_P1.00mm_Vertical.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "MountingHole:MountingHole_3.2mm_M3" locked (layer "F.Cu") + (tedit 56D1B4CB) (tstamp 16734d16-1a42-4a22-b869-4a9ca8cedfbe) + (at 125.88 63.225) + (descr "Mounting Hole 3.2mm, no annular, M3") + (tags "mounting hole 3.2mm no annular m3") + (attr exclude_from_pos_files exclude_from_bom) + (fp_text reference "REF**1" (at 0 -4.2) (layer "F.SilkS") hide + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 423b774c-dc00-4fee-ae67-3225fd41f07c) + ) + (fp_text value "MountingHole_3.2mm_M3" (at 0 4.2) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp aca4c892-5600-4da2-8297-84fb9632dfb6) + ) + (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp eeabc154-dc58-4096-b340-0aa7fc3f29de) + ) + (fp_circle (center 0 0) (end 3.2 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp 005643d7-0a13-4acb-8109-ee0e20b7b556)) + (fp_circle (center 0 0) (end 3.45 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp c794eb6e-1514-4227-8dea-1d1fd26599e7)) + (pad "" np_thru_hole circle locked (at 0 0) (size 3.2 3.2) (drill 3.2) (layers *.Cu *.Mask) (tstamp 4a0ba1b0-0b27-452d-a7e5-e600d6d34178)) + ) + + (footprint "MountingHole:MountingHole_3.2mm_M3" locked (layer "F.Cu") + (tedit 56D1B4CB) (tstamp 1a961959-902e-4bcd-b673-fc9141544da7) + (at 86.05 110.665) + (descr "Mounting Hole 3.2mm, no annular, M3") + (tags "mounting hole 3.2mm no annular m3") + (attr exclude_from_pos_files exclude_from_bom) + (fp_text reference "REF**2" (at 0 -4.2) (layer "F.SilkS") hide + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 63a9a259-1d1e-4d35-b593-b1e7816f163e) + ) + (fp_text value "MountingHole_3.2mm_M3" (at 0 4.2) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 15f6d9c0-dd63-4cb2-baa9-364e6544f36c) + ) + (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 46cf29e9-7192-4c1f-8e3b-b51358ebff34) + ) + (fp_circle (center 0 0) (end 3.2 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp 09e7f6c0-c44a-48cd-b80c-13c5653126e8)) + (fp_circle (center 0 0) (end 3.45 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 95166638-aa04-4554-a5bf-8dad35c4eb32)) + (pad "" np_thru_hole circle locked (at 0 0) (size 3.2 3.2) (drill 3.2) (layers *.Cu *.Mask) (tstamp cf9209c8-1741-4bf1-b789-b6e2ba0d338c)) + ) + + (footprint "Connector_PinHeader_1.00mm:PinHeader_1x01_P1.00mm_Vertical" (layer "F.Cu") + (tedit 59FED738) (tstamp 20acbc35-3c68-4299-a42e-52ad7d2a9371) + (at 111.93 65.33) + (descr "Through hole straight pin header, 1x01, 1.00mm pitch, single row") + (tags "Through hole pin header THT 1x01 1.00mm single row") + (property "Sheetfile" "Canon_manage.kicad_sch") + (property "Sheetname" "") + (path "/32d7a2d1-54ff-4a48-a3d0-faa0089969ed") + (attr through_hole) + (fp_text reference "J3" (at 0.1602 -2.465 90) (layer "F.SilkS") hide + (effects (font (size 1 1) (thickness 0.15))) + (tstamp c4aa34e4-7bd0-4e4a-aa55-beda429219aa) + ) + (fp_text value "Ldet" (at -0.2716 -2.6682 90) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 140360f8-3a52-48bf-90e0-20060849e137) + ) + (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") + (effects (font (size 0.76 0.76) (thickness 0.114))) + (tstamp af31fad3-24da-46ae-9a77-005f71e70dc1) + ) + (fp_line (start -0.695 -0.685) (end 0 -0.685) (layer "F.SilkS") (width 0.12) (tstamp 1e596e98-d915-48cf-9c00-171d8753e6e9)) + (fp_line (start 0.608276 0.685) (end 0.695 0.685) (layer "F.SilkS") (width 0.12) (tstamp 369e53e1-3912-407b-876c-eaac999e9487)) + (fp_line (start -0.695 0.685) (end 0.695 0.685) (layer "F.SilkS") (width 0.12) (tstamp 3f858125-470c-45d7-a37a-4fb7152bd0f9)) + (fp_line (start -0.695 0.685) (end -0.608276 0.685) (layer "F.SilkS") (width 0.12) (tstamp 67ab0bf5-2cc9-4118-9892-e79290391fb5)) + (fp_line (start -0.695 0) (end -0.695 -0.685) (layer "F.SilkS") (width 0.12) (tstamp 6bad07c2-32a1-4ddb-8ac5-8c27c84df06f)) + (fp_line (start 0.695 0.685) (end 0.695 0.56) (layer "F.SilkS") (width 0.12) (tstamp b3c2fe46-b21e-47fa-b712-653a317d1d1a)) + (fp_line (start -0.695 0.685) (end -0.695 0.56) (layer "F.SilkS") (width 0.12) (tstamp e845d5f9-6e4f-46c3-a7ab-1bc475fafdb6)) + (fp_line (start 1.15 1) (end 1.15 -1) (layer "F.CrtYd") (width 0.05) (tstamp 30ded326-2e0b-4c95-bca9-3c9ed064c032)) + (fp_line (start -1.15 -1) (end -1.15 1) (layer "F.CrtYd") (width 0.05) (tstamp 5528ed60-fc4a-48a3-8941-9ebd0cd4da6b)) + (fp_line (start -1.15 1) (end 1.15 1) (layer "F.CrtYd") (width 0.05) (tstamp 75d20890-4dd6-4a35-bacc-b66699be65a6)) + (fp_line (start 1.15 -1) (end -1.15 -1) (layer "F.CrtYd") (width 0.05) (tstamp ea80b896-8cc8-4370-9794-efca6947671b)) + (fp_line (start 0.635 0.5) (end -0.635 0.5) (layer "F.Fab") (width 0.1) (tstamp 32d0b1e4-cdb5-456f-a000-05e1925fb416)) + (fp_line (start -0.635 0.5) (end -0.635 -0.1825) (layer "F.Fab") (width 0.1) (tstamp 495b255c-215e-4db4-81b9-813e10264c05)) + (fp_line (start -0.635 -0.1825) (end -0.3175 -0.5) (layer "F.Fab") (width 0.1) (tstamp bf1dc560-5d79-44c9-9d1f-e7f0f293bf5f)) + (fp_line (start 0.635 -0.5) (end 0.635 0.5) (layer "F.Fab") (width 0.1) (tstamp ef0f6139-9606-49b3-b205-b8265ecf2fcb)) + (fp_line (start -0.3175 -0.5) (end 0.635 -0.5) (layer "F.Fab") (width 0.1) (tstamp fe82a6b5-1532-450e-bf00-7b30e631d00a)) + (pad "1" thru_hole rect (at 0 0) (size 0.85 0.85) (drill 0.5) (layers *.Cu *.Mask) + (net 51 "Net-(R2-Pad2)") (pinfunction "Pin_1") (pintype "passive") (tstamp 2809ef6f-0527-4a1b-857a-aea34b393ae6)) + (model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_1.00mm.3dshapes/PinHeader_1x01_P1.00mm_Vertical.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Connector_PinHeader_1.00mm:PinHeader_1x01_P1.00mm_Vertical" (layer "F.Cu") + (tedit 59FED738) (tstamp 371e2d2f-11bf-4c8f-b211-db9c061de80d) + (at 109.64 64.82) + (descr "Through hole straight pin header, 1x01, 1.00mm pitch, single row") + (tags "Through hole pin header THT 1x01 1.00mm single row") + (property "Sheetfile" "Canon_manage.kicad_sch") + (property "Sheetname" "") + (path "/4c06ffc7-8a67-444f-9554-d5e5a37b4824") + (attr through_hole) + (fp_text reference "J4" (at -0.0644 -2.3868 90) (layer "F.SilkS") hide + (effects (font (size 1 1) (thickness 0.15))) + (tstamp fb869291-04dd-49a5-9f2d-d2c963100f10) + ) + (fp_text value "PGnd" (at 0.0372 -3.0218 90) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp f8b59391-e609-41fc-8747-2192081dca0d) + ) + (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") + (effects (font (size 0.76 0.76) (thickness 0.114))) + (tstamp d18a25b4-4bc3-4651-bd7e-16278ee16ef9) + ) + (fp_line (start -0.695 -0.685) (end 0 -0.685) (layer "F.SilkS") (width 0.12) (tstamp 04358179-1701-4679-9ce3-eaa091905518)) + (fp_line (start -0.695 0.685) (end 0.695 0.685) (layer "F.SilkS") (width 0.12) (tstamp 37fa52c8-4006-412e-ab47-45576ad96a4e)) + (fp_line (start -0.695 0.685) (end -0.608276 0.685) (layer "F.SilkS") (width 0.12) (tstamp b27d5922-81e6-4d69-92f0-929c49557d63)) + (fp_line (start 0.695 0.685) (end 0.695 0.56) (layer "F.SilkS") (width 0.12) (tstamp b8b580dd-9016-4aba-93d6-6c6a9f2ae677)) + (fp_line (start -0.695 0.685) (end -0.695 0.56) (layer "F.SilkS") (width 0.12) (tstamp be021daa-6e7f-4896-b346-a35cb0503dcb)) + (fp_line (start -0.695 0) (end -0.695 -0.685) (layer "F.SilkS") (width 0.12) (tstamp da922ea4-5346-42f4-bd57-5dc7933bfa3a)) + (fp_line (start 0.608276 0.685) (end 0.695 0.685) (layer "F.SilkS") (width 0.12) (tstamp dcb7778b-be74-4e4b-aead-067b470f2087)) + (fp_line (start -1.15 1) (end 1.15 1) (layer "F.CrtYd") (width 0.05) (tstamp 0f18e857-e3e8-44f8-b4cb-3d89687c0074)) + (fp_line (start -1.15 -1) (end -1.15 1) (layer "F.CrtYd") (width 0.05) (tstamp 2832ae18-e7b0-4b37-8b77-4430d1d5e72a)) + (fp_line (start 1.15 -1) (end -1.15 -1) (layer "F.CrtYd") (width 0.05) (tstamp a5b4f4d9-370f-4ec6-9af0-610a8e0cb851)) + (fp_line (start 1.15 1) (end 1.15 -1) (layer "F.CrtYd") (width 0.05) (tstamp deb4651a-2f9b-48e4-935f-cf7722fedc06)) + (fp_line (start 0.635 0.5) (end -0.635 0.5) (layer "F.Fab") (width 0.1) (tstamp 0ec94b5f-4baf-46c1-b2da-7bceccd70b39)) + (fp_line (start -0.635 -0.1825) (end -0.3175 -0.5) (layer "F.Fab") (width 0.1) (tstamp 371de143-b6bc-4628-a0d7-bd1e40ab1800)) + (fp_line (start 0.635 -0.5) (end 0.635 0.5) (layer "F.Fab") (width 0.1) (tstamp 45d4b1b1-bf3d-48d0-b6f8-43a84665ce60)) + (fp_line (start -0.635 0.5) (end -0.635 -0.1825) (layer "F.Fab") (width 0.1) (tstamp 98f00b9a-384e-48e2-8a1f-b2286e83367e)) + (fp_line (start -0.3175 -0.5) (end 0.635 -0.5) (layer "F.Fab") (width 0.1) (tstamp c929fb55-0b33-4954-bf7c-2040f6c17bb2)) + (pad "1" thru_hole rect (at 0 0) (size 0.85 0.85) (drill 0.5) (layers *.Cu *.Mask) + (net 2 "GND") (pinfunction "Pin_1") (pintype "passive") (tstamp 17a11a3c-46bb-4e34-94a9-1bd4005f1aed)) + (model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_1.00mm.3dshapes/PinHeader_1x01_P1.00mm_Vertical.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Connector_PinHeader_1.00mm:PinHeader_1x01_P1.00mm_Vertical" (layer "F.Cu") + (tedit 59FED738) (tstamp 3d86eae8-4725-4b17-8ece-6d07ec290772) + (at 99.5 65.5) + (descr "Through hole straight pin header, 1x01, 1.00mm pitch, single row") + (tags "Through hole pin header THT 1x01 1.00mm single row") + (property "Sheetfile" "Canon_manage.kicad_sch") + (property "Sheetname" "") + (path "/409c86f7-616a-42f7-8a1a-16e91abd4f8c") + (attr through_hole) + (fp_text reference "J8" (at 0.068 -2.3302 90) (layer "F.SilkS") hide + (effects (font (size 1 1) (thickness 0.15))) + (tstamp d647816e-b7cb-4b63-9768-059bfd8829e2) + ) + (fp_text value "SCK" (at 0.0172 -2.6604 90) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp e4880a26-9fa0-41e3-8924-751e875b050e) + ) + (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") + (effects (font (size 0.76 0.76) (thickness 0.114))) + (tstamp db56c67e-f09c-4dfe-ac1d-4e6d32d70d62) + ) + (fp_line (start -0.695 0.685) (end -0.695 0.56) (layer "F.SilkS") (width 0.12) (tstamp 0ad97a01-f06a-441d-ab63-b02a94088444)) + (fp_line (start 0.608276 0.685) (end 0.695 0.685) (layer "F.SilkS") (width 0.12) (tstamp 110017ab-69c9-42ef-9ebd-6ac6025b141c)) + (fp_line (start 0.695 0.685) (end 0.695 0.56) (layer "F.SilkS") (width 0.12) (tstamp 11b5f77c-6cde-4985-bf3e-bdc2dffbcfef)) + (fp_line (start -0.695 -0.685) (end 0 -0.685) (layer "F.SilkS") (width 0.12) (tstamp 6f74b34c-a4ff-4ece-81a2-ab2fb99abcb9)) + (fp_line (start -0.695 0.685) (end 0.695 0.685) (layer "F.SilkS") (width 0.12) (tstamp 999f24a9-912d-4cf4-aef7-c0acec9076e9)) + (fp_line (start -0.695 0.685) (end -0.608276 0.685) (layer "F.SilkS") (width 0.12) (tstamp aff68fc8-dd6f-4d81-bcf8-6cfd1639ee1c)) + (fp_line (start -0.695 0) (end -0.695 -0.685) (layer "F.SilkS") (width 0.12) (tstamp dbe586ee-c1de-4c2b-a751-eaf263fc84b8)) + (fp_line (start -1.15 1) (end 1.15 1) (layer "F.CrtYd") (width 0.05) (tstamp 071d8165-5976-401a-a780-8b79088dd066)) + (fp_line (start -1.15 -1) (end -1.15 1) (layer "F.CrtYd") (width 0.05) (tstamp a0bcbb31-7c66-4e8c-952f-7104ba9d1aac)) + (fp_line (start 1.15 -1) (end -1.15 -1) (layer "F.CrtYd") (width 0.05) (tstamp cd77d700-7641-41fe-bf62-45d8a5ac6ae0)) + (fp_line (start 1.15 1) (end 1.15 -1) (layer "F.CrtYd") (width 0.05) (tstamp e1001757-5f07-4107-baee-19eb0c48fd7c)) + (fp_line (start -0.635 -0.1825) (end -0.3175 -0.5) (layer "F.Fab") (width 0.1) (tstamp 2f7cf4e1-80a3-4ab4-b4a0-a0639d4ce7b3)) + (fp_line (start 0.635 -0.5) (end 0.635 0.5) (layer "F.Fab") (width 0.1) (tstamp 5afa8fe6-50a6-4ccb-8ce6-66667693fef0)) + (fp_line (start 0.635 0.5) (end -0.635 0.5) (layer "F.Fab") (width 0.1) (tstamp 6754a0f2-d455-4493-a699-d22f3133690d)) + (fp_line (start -0.3175 -0.5) (end 0.635 -0.5) (layer "F.Fab") (width 0.1) (tstamp 83f794e2-98b3-4a23-8187-0843899da974)) + (fp_line (start -0.635 0.5) (end -0.635 -0.1825) (layer "F.Fab") (width 0.1) (tstamp fb969b81-7e1f-4349-bc47-1905d8aaac66)) + (pad "1" thru_hole rect (at 0 0) (size 0.85 0.85) (drill 0.5) (layers *.Cu *.Mask) + (net 54 "Net-(R5-Pad2)") (pinfunction "Pin_1") (pintype "passive") (tstamp 81bf1d9c-b9be-44fc-9cc0-e3c185db1dfc)) + (model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_1.00mm.3dshapes/PinHeader_1x01_P1.00mm_Vertical.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (layer "F.Cu") + (tedit 5F68FEEF) (tstamp 4e1a97bf-21ff-4cbe-add5-934aa57b238b) + (at 81.661 99.3405 -90) + (descr "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") + (tags "capacitor handsolder") + (property "Sheetfile" "Canon_manage.kicad_sch") + (property "Sheetname" "") + (path "/78d9bd94-3b9a-4d2a-9c27-c73709b0381f") + (attr smd) + (fp_text reference "C1" (at -0.1281 1.7018 180) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp fe90711d-a862-49f2-9f6f-f16dbe371c60) + ) + (fp_text value "12" (at 0 1.43 90) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 582904ca-59f7-42e1-8828-2c7b3d1e8456) + ) + (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") + (effects (font (size 0.4 0.4) (thickness 0.06))) + (tstamp de7d4f80-b20e-4cf5-8026-a96f016a90a8) + ) + (fp_line (start -0.146267 -0.51) (end 0.146267 -0.51) (layer "F.SilkS") (width 0.12) (tstamp 4d16496e-4fee-4084-933e-cbf6e45794fd)) + (fp_line (start -0.146267 0.51) (end 0.146267 0.51) (layer "F.SilkS") (width 0.12) (tstamp 76086053-9e5f-4ccb-833d-b4265c7e67fe)) + (fp_line (start -1.65 0.73) (end -1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 12d8d33a-ed3c-41fb-8ff7-735cba1701c6)) + (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 5a893302-bbbd-4f5f-a36a-7a8ad0e1dd2d)) + (fp_line (start 1.65 -0.73) (end 1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp c81f9433-c800-4909-9413-3f3143219552)) + (fp_line (start 1.65 0.73) (end -1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp dd4233ab-a067-4fa2-95a6-7f8254c7e793)) + (fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 09f787ff-e7a1-469a-af4d-0b28ff55f1e9)) + (fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 5e976b3d-c1b3-4bdd-9f4b-a82470cbfa01)) + (fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp a262e2df-b1c8-451d-9407-4547009b4ed9)) + (fp_line (start 0.8 0.4) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp e05ace61-309a-4885-bae8-9a8ec1054eea)) + (pad "1" smd roundrect (at -0.8625 0 270) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 1 "/OSC_IN") (pintype "passive") (tstamp eb7ae1cb-8e21-4ed3-a9d3-1378df798bad)) + (pad "2" smd roundrect (at 0.8625 0 270) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 2 "GND") (pintype "passive") (tstamp 36e57e70-6551-46eb-987b-c2180c15900e)) + (model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") + (tedit 5F68FEEE) (tstamp 5993b816-8554-42b2-94e0-2b4f941d933e) + (at 96.7505 57.15 180) + (descr "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") + (tags "resistor handsolder") + (property "Sheetfile" "Canon_manage.kicad_sch") + (property "Sheetname" "") + (path "/85dfcd72-2976-4d87-9959-5aebbe7e8fe1") + (attr smd) + (fp_text reference "R7" (at 0 -1.43) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 11b3119b-972e-45d6-9c0a-ff0bdd97d1cf) + ) + (fp_text value "22" (at 0 1.43) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 44cbe86b-0592-4439-8a5f-c67c8f436542) + ) + (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") + (effects (font (size 0.4 0.4) (thickness 0.06))) + (tstamp 074fd0c6-5e17-4a0f-bd22-15c542576e9c) + ) + (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp 6d7fbd0b-19be-4771-99ae-77974200b0c9)) + (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (layer "F.SilkS") (width 0.12) (tstamp dd77bd74-bc7b-42ef-8069-b801838e69f6)) + (fp_line (start 1.65 -0.73) (end 1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 65af08b5-8a05-430a-b7f9-b5d2f66a0136)) + (fp_line (start -1.65 0.73) (end -1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 95c36449-e438-4dc3-8659-65555d2ce124)) + (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 9c53cd2c-7645-4bbb-bdfb-21b69c690f49)) + (fp_line (start 1.65 0.73) (end -1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp e98063c2-3216-4b72-b030-1a8a5ad4bf5d)) + (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 38a50490-f618-4466-acf7-f8b425e2adf2)) + (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 6db8396e-ba4a-40e0-bb24-d33aeeae9867)) + (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp aef5ef54-9a22-46d3-ace9-3e0d7a43f03e)) + (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp f70c562b-c105-4a90-8395-5c5c22223aa7)) + (pad "1" smd roundrect (at -0.9125 0 180) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 16 "/DP") (pintype "passive") (tstamp c5ff3708-a54d-42c8-aa58-d318366ac53f)) + (pad "2" smd roundrect (at 0.9125 0 180) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 21 "Net-(R7-Pad2)") (pintype "passive") (tstamp 7eb39c70-c277-4df5-92cd-3a9e7a834062)) + (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Package_TO_SOT_SMD:SOT-23-5" (layer "F.Cu") + (tedit 5F6F9B37) (tstamp 6ab8ca22-d302-44b9-a7f0-03ef473c90fe) + (at 77.597 79.0393 -90) + (descr "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") + (tags "SOT TO_SOT_SMD") + (property "Sheetfile" "Canon_manage.kicad_sch") + (property "Sheetname" "") + (path "/f9bf607f-8273-4efa-a9e3-322680fea5e5") + (attr smd) + (fp_text reference "D1" (at 0.0563 -2.7178 180) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp f1a69747-dcd5-47ec-949c-81109a0852dd) + ) + (fp_text value "SP0504BAHT" (at 0 2.4 90) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp a14b2144-b0cd-4dc9-bb7b-9cf1931324a8) + ) + (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") + (effects (font (size 0.4 0.4) (thickness 0.06))) + (tstamp 1d65dc13-49dc-40f4-a707-af6811078f77) + ) + (fp_line (start 0 -1.56) (end 0.8 -1.56) (layer "F.SilkS") (width 0.12) (tstamp 2f0df3b9-338b-40d9-85ee-f2ce06216b8f)) + (fp_line (start 0 1.56) (end -0.8 1.56) (layer "F.SilkS") (width 0.12) (tstamp 77bc2195-aa09-4c4c-8830-635a73722e18)) + (fp_line (start 0 1.56) (end 0.8 1.56) (layer "F.SilkS") (width 0.12) (tstamp a0678096-e0a2-472f-a6c6-3bdcb16062b2)) + (fp_line (start 0 -1.56) (end -1.8 -1.56) (layer "F.SilkS") (width 0.12) (tstamp fe3e70df-cd58-4bfe-bf35-85ca269da63d)) + (fp_line (start 2.05 1.7) (end 2.05 -1.7) (layer "F.CrtYd") (width 0.05) (tstamp 29fc16ec-26bf-48a8-a1a8-2deab37941b8)) + (fp_line (start -2.05 -1.7) (end -2.05 1.7) (layer "F.CrtYd") (width 0.05) (tstamp dd515898-0472-4331-889c-bf99f07191cc)) + (fp_line (start -2.05 1.7) (end 2.05 1.7) (layer "F.CrtYd") (width 0.05) (tstamp edde96ff-b3f7-4ded-ae7c-99feb64a8efa)) + (fp_line (start 2.05 -1.7) (end -2.05 -1.7) (layer "F.CrtYd") (width 0.05) (tstamp f6728a29-a978-4729-b035-4799bad832c0)) + (fp_line (start 0.8 -1.45) (end 0.8 1.45) (layer "F.Fab") (width 0.1) (tstamp 1cc43747-f403-4339-897f-089e3e456f86)) + (fp_line (start -0.8 1.45) (end -0.8 -1.05) (layer "F.Fab") (width 0.1) (tstamp 3b29db09-e851-4e40-90dc-662c34547355)) + (fp_line (start -0.8 -1.05) (end -0.4 -1.45) (layer "F.Fab") (width 0.1) (tstamp 7c82e72a-6fe6-4b90-93a5-288e9206e2ea)) + (fp_line (start 0.8 1.45) (end -0.8 1.45) (layer "F.Fab") (width 0.1) (tstamp 800b529d-d064-490f-91a5-0b5c98342dc2)) + (fp_line (start -0.4 -1.45) (end 0.8 -1.45) (layer "F.Fab") (width 0.1) (tstamp b5297415-b374-45d1-9a21-828aa38524d7)) + (pad "1" smd roundrect (at -1.1375 -0.95 270) (size 1.325 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 7 "/SPI_SCK") (pinfunction "K") (pintype "passive") (tstamp 67782f89-5817-4a7a-90f8-57e68d350f68)) + (pad "2" smd roundrect (at -1.1375 0 270) (size 1.325 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 2 "GND") (pinfunction "A") (pintype "passive") (tstamp 4ab33f75-59a9-48ca-933b-7a074b5284fb)) + (pad "3" smd roundrect (at -1.1375 0.95 270) (size 1.325 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 6 "/L_DETECT") (pinfunction "K") (pintype "passive") (tstamp 0b7e482c-24ab-4a8f-ac28-19d305680843)) + (pad "4" smd roundrect (at 1.1375 0.95 270) (size 1.325 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 9 "/SPI_MOSI") (pinfunction "K") (pintype "passive") (tstamp efe9b14e-ea96-4feb-b35e-d94b8433c249)) + (pad "5" smd roundrect (at 1.1375 -0.95 270) (size 1.325 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 8 "/SPI_MISO") (pinfunction "K") (pintype "passive") (tstamp 7e6ff090-c9ea-4835-92f2-1114e3e88ba0)) + (model "${KICAD6_3DMODEL_DIR}/Package_TO_SOT_SMD.3dshapes/SOT-23-5.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Connector_PinHeader_1.00mm:PinHeader_1x01_P1.00mm_Vertical" (layer "F.Cu") + (tedit 59FED738) (tstamp 701fc9ba-9201-4ae8-96fe-450e35b3fe13) + (at 97.31 66.26) + (descr "Through hole straight pin header, 1x01, 1.00mm pitch, single row") + (tags "Through hole pin header THT 1x01 1.00mm single row") + (property "Sheetfile" "Canon_manage.kicad_sch") + (property "Sheetname" "") + (path "/140fc51e-23e5-45dc-b9e0-9fa28189ba46") + (attr through_hole) + (fp_text reference "J9" (at -1.8568 -1.363 90) (layer "F.SilkS") hide + (effects (font (size 1 1) (thickness 0.15))) + (tstamp fd3ad844-bec6-47c1-87df-20fa92a34c45) + ) + (fp_text value "LGnd" (at -0.4852 -2.8616 90) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 4e6f37d6-010b-4584-b0da-ca4e4cc83753) + ) + (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") + (effects (font (size 0.76 0.76) (thickness 0.114))) + (tstamp ef017224-d566-4bc4-88c5-da5e55da7fcc) + ) + (fp_line (start -0.695 0) (end -0.695 -0.685) (layer "F.SilkS") (width 0.12) (tstamp 65e672be-ae39-427b-b328-fb59bb870000)) + (fp_line (start -0.695 0.685) (end -0.695 0.56) (layer "F.SilkS") (width 0.12) (tstamp 8581283f-2446-4b14-930a-07524767fe81)) + (fp_line (start -0.695 0.685) (end -0.608276 0.685) (layer "F.SilkS") (width 0.12) (tstamp a23409bd-654f-4d1b-8a5b-40cc256b024c)) + (fp_line (start -0.695 0.685) (end 0.695 0.685) (layer "F.SilkS") (width 0.12) (tstamp aea12f94-0560-46b2-92db-92de6014c64c)) + (fp_line (start 0.695 0.685) (end 0.695 0.56) (layer "F.SilkS") (width 0.12) (tstamp d6832a78-d1bf-42a3-b23a-961dd58e678e)) + (fp_line (start -0.695 -0.685) (end 0 -0.685) (layer "F.SilkS") (width 0.12) (tstamp e5c780f1-a224-49b8-ac6e-b9c7f0248d2d)) + (fp_line (start 0.608276 0.685) (end 0.695 0.685) (layer "F.SilkS") (width 0.12) (tstamp edc3112a-c059-499f-9c88-27c407e4ece0)) + (fp_line (start 1.15 1) (end 1.15 -1) (layer "F.CrtYd") (width 0.05) (tstamp 14ba1993-7006-444a-a440-1e967117a46e)) + (fp_line (start -1.15 1) (end 1.15 1) (layer "F.CrtYd") (width 0.05) (tstamp 4c6225d9-5582-43c9-aa97-bb5e0f7cfe47)) + (fp_line (start 1.15 -1) (end -1.15 -1) (layer "F.CrtYd") (width 0.05) (tstamp 9a6d4e72-4bb9-49f1-9f4a-734a713c99ad)) + (fp_line (start -1.15 -1) (end -1.15 1) (layer "F.CrtYd") (width 0.05) (tstamp c4f1e7de-b7a0-4620-a18f-e4cbd7b72115)) + (fp_line (start -0.3175 -0.5) (end 0.635 -0.5) (layer "F.Fab") (width 0.1) (tstamp 317a31c9-dd9e-45e6-9d7e-45fdba6dff2a)) + (fp_line (start -0.635 0.5) (end -0.635 -0.1825) (layer "F.Fab") (width 0.1) (tstamp 3604c814-05aa-4f23-9d8a-f2b9d4b0e783)) + (fp_line (start 0.635 0.5) (end -0.635 0.5) (layer "F.Fab") (width 0.1) (tstamp 36d98357-1310-4306-8bf8-5eb056201e97)) + (fp_line (start -0.635 -0.1825) (end -0.3175 -0.5) (layer "F.Fab") (width 0.1) (tstamp a472be83-629d-486e-bcfe-1c05aba8c2fb)) + (fp_line (start 0.635 -0.5) (end 0.635 0.5) (layer "F.Fab") (width 0.1) (tstamp aceff085-0acb-4d55-ab90-b904b0a85064)) + (pad "1" thru_hole rect (at 0 0) (size 0.85 0.85) (drill 0.5) (layers *.Cu *.Mask) + (net 2 "GND") (pinfunction "Pin_1") (pintype "passive") (tstamp 69de7e77-17fc-4e4b-a3b9-3025ce653c21)) + (model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_1.00mm.3dshapes/PinHeader_1x01_P1.00mm_Vertical.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") + (tedit 5F68FEEE) (tstamp 74647c3a-34f6-41cd-bf78-cda820badd21) + (at 79.612066 70.1821 90) + (descr "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") + (tags "resistor handsolder") + (property "Sheetfile" "Canon_manage.kicad_sch") + (property "Sheetname" "") + (path "/121a213f-cdfb-4aea-bf52-59d44a0a7800") + (attr smd) + (fp_text reference "R3" (at -2.3857 -0.033866) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp bb274060-9b05-4337-bd54-18eb2c6e0091) + ) + (fp_text value "47" (at 0 1.43 90) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 9c0850f8-2360-4bd4-ba0e-6b8938488064) + ) + (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") + (effects (font (size 0.4 0.4) (thickness 0.06))) + (tstamp 11a91375-dda9-4690-b6e4-a439b86dfbaf) + ) + (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp 49b782bc-a30f-4a90-9c7c-82fd5877d460)) + (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (layer "F.SilkS") (width 0.12) (tstamp 68e19f7e-0b91-45ab-a790-f08b0c2060c8)) + (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 7aabb920-af4c-4600-9af5-4b0a3d5d5244)) + (fp_line (start 1.65 -0.73) (end 1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 820739cd-2294-4aa4-a8a7-059313f0b67c)) + (fp_line (start 1.65 0.73) (end -1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp a593c698-7533-497c-b872-fc251d271702)) + (fp_line (start -1.65 0.73) (end -1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp f455d61c-d512-4152-9d09-00af09ab2871)) + (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 02102a0e-2c0e-4c88-9830-65348b41e64e)) + (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 24f61b0a-053a-455f-8ae2-501b3c8ed1bd)) + (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp a06492d4-88e2-4ff9-9f0e-4263be612004)) + (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp cd6b70be-4d71-4845-a90b-a8726152b6ba)) + (pad "1" smd roundrect (at -0.9125 0 90) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 9 "/SPI_MOSI") (pintype "passive") (tstamp 199c851f-171f-4712-aac7-10ff745c574b)) + (pad "2" smd roundrect (at 0.9125 0 90) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 52 "Net-(R3-Pad2)") (pintype "passive") (tstamp f64ecdf8-6a8e-49ab-9507-bbe690fef0f4)) + (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Connector_USB:USB_C_Receptacle_HRO_TYPE-C-31-M-12" (layer "F.Cu") + (tedit 5D3C0721) (tstamp 7fca703c-72d5-4b2d-9d34-4413c39f4898) + (at 105.61 51.47 180) + (descr "USB Type-C receptacle for USB 2.0 and PD, http://www.krhro.com/uploads/soft/180320/1-1P320120243.pdf") + (tags "usb usb-c 2.0 pd") + (property "Sheetfile" "Canon_manage.kicad_sch") + (property "Sheetname" "") + (path "/21ee908d-fe4a-49dd-81b3-865f8d36c64a") + (attr smd) + (fp_text reference "J37" (at -6.6326 -2.4796) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp a600b259-ae5f-4583-a74c-d4b7776df081) + ) + (fp_text value "USB_C_Receptacle" (at 0 5.1) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp e0a63f01-dfc7-48e3-804f-cb8c310f4138) + ) + (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp fed6f2ab-746c-43fd-b967-b7bbc155d27c) + ) + (fp_line (start 4.7 2) (end 4.7 3.9) (layer "F.SilkS") (width 0.12) (tstamp 1fd90704-f706-41e4-b1bc-29d641fc9e96)) + (fp_line (start -4.7 2) (end -4.7 3.9) (layer "F.SilkS") (width 0.12) (tstamp 4e180548-107f-48bd-bc2c-6147fafab739)) + (fp_line (start 4.7 -1.9) (end 4.7 0.1) (layer "F.SilkS") (width 0.12) (tstamp 7aaa1f37-5199-4b5e-8ed8-5c013b2c1142)) + (fp_line (start -4.7 3.9) (end 4.7 3.9) (layer "F.SilkS") (width 0.12) (tstamp 8e02fd22-56eb-4408-b56e-964261039f96)) + (fp_line (start -4.7 -1.9) (end -4.7 0.1) (layer "F.SilkS") (width 0.12) (tstamp f1a252d7-406a-4795-8f33-6cfaaf55d1c1)) + (fp_line (start 5.32 -5.27) (end 5.32 4.15) (layer "F.CrtYd") (width 0.05) (tstamp 04efdb61-1c98-41d4-a0f4-41ac4d6c2922)) + (fp_line (start -5.32 -5.27) (end 5.32 -5.27) (layer "F.CrtYd") (width 0.05) (tstamp 3041fe45-ab7e-4b20-b099-4b0ffd00e652)) + (fp_line (start -5.32 4.15) (end 5.32 4.15) (layer "F.CrtYd") (width 0.05) (tstamp 431329d4-35e1-4827-acb8-f6a3bb2925b3)) + (fp_line (start -5.32 -5.27) (end -5.32 4.15) (layer "F.CrtYd") (width 0.05) (tstamp b8a36fbf-a819-47cc-9ad2-184b1b0c4e19)) + (fp_line (start 4.47 -3.65) (end 4.47 3.65) (layer "F.Fab") (width 0.1) (tstamp 28663b27-a131-48e2-8443-71db22e9a8dc)) + (fp_line (start -4.47 -3.65) (end 4.47 -3.65) (layer "F.Fab") (width 0.1) (tstamp 32aab70d-c3ef-4952-8e6e-11e01a59e07c)) + (fp_line (start -4.47 -3.65) (end -4.47 3.65) (layer "F.Fab") (width 0.1) (tstamp 95a4e227-b0f0-4e3d-9917-85a4d4ebc99c)) + (fp_line (start -4.47 3.65) (end 4.47 3.65) (layer "F.Fab") (width 0.1) (tstamp bc73a946-8ab5-4981-937a-ddd9a335ef25)) + (pad "" np_thru_hole circle (at 2.89 -2.6 180) (size 0.65 0.65) (drill 0.65) (layers *.Cu *.Mask) (tstamp 090d8eb6-4982-4267-978b-0e58d657d610)) + (pad "" np_thru_hole circle (at -2.89 -2.6 180) (size 0.65 0.65) (drill 0.65) (layers *.Cu *.Mask) (tstamp f0d48f5d-8fb4-4cc1-837a-5129b3b11b47)) + (pad "A1" smd rect (at -3.25 -4.045 180) (size 0.6 1.45) (layers "F.Cu" "F.Paste" "F.Mask") + (net 2 "GND") (pinfunction "GND") (pintype "passive") (tstamp ada63364-fd68-4ee6-8604-5b39dd664eee)) + (pad "A4" smd rect (at -2.45 -4.045 180) (size 0.6 1.45) (layers "F.Cu" "F.Paste" "F.Mask") + (net 4 "/VBUS") (pinfunction "VBUS") (pintype "passive") (tstamp 7fbc7750-7fc5-42d2-b214-58a9198e778f)) + (pad "A5" smd rect (at -1.25 -4.045 180) (size 0.3 1.45) (layers "F.Cu" "F.Paste" "F.Mask") + (net 15 "Net-(J37-PadA5)") (pinfunction "CC1") (pintype "bidirectional") (tstamp e592e057-4e69-43ff-8aef-3ab4d41ebd11)) + (pad "A6" smd rect (at -0.25 -4.045 180) (size 0.3 1.45) (layers "F.Cu" "F.Paste" "F.Mask") + (net 16 "/DP") (pinfunction "D+") (pintype "bidirectional") (tstamp b66dfdf4-d0e4-42bf-9e5d-9e1985a3cd7b)) + (pad "A7" smd rect (at 0.25 -4.045 180) (size 0.3 1.45) (layers "F.Cu" "F.Paste" "F.Mask") + (net 17 "/DM") (pinfunction "D-") (pintype "bidirectional") (tstamp d0bbe9e1-601b-4d09-bf98-92f985b54d3e)) + (pad "A8" smd rect (at 1.25 -4.045 180) (size 0.3 1.45) (layers "F.Cu" "F.Paste" "F.Mask") + (net 18 "unconnected-(J37-PadA8)") (pinfunction "SBU1") (pintype "bidirectional+no_connect") (tstamp f98b249f-eacf-4084-9ffc-49a0f4598a5c)) + (pad "A9" smd rect (at 2.45 -4.045 180) (size 0.6 1.45) (layers "F.Cu" "F.Paste" "F.Mask") + (net 4 "/VBUS") (pinfunction "VBUS") (pintype "passive") (tstamp 3253d0cd-7fb4-4807-b519-b5dd147c5caa)) + (pad "A12" smd rect (at 3.25 -4.045 180) (size 0.6 1.45) (layers "F.Cu" "F.Paste" "F.Mask") + (net 2 "GND") (pinfunction "GND") (pintype "passive") (tstamp 4b5e6a67-c12d-48f1-9bdf-f8fbd8898a5f)) + (pad "B1" smd rect (at 3.25 -4.045 180) (size 0.6 1.45) (layers "F.Cu" "F.Paste" "F.Mask") + (net 2 "GND") (pinfunction "GND") (pintype "passive") (tstamp 3002fd7f-d1bb-4448-b73d-e54993f11f6c)) + (pad "B4" smd rect (at 2.45 -4.045 180) (size 0.6 1.45) (layers "F.Cu" "F.Paste" "F.Mask") + (net 4 "/VBUS") (pinfunction "VBUS") (pintype "passive") (tstamp 8d9fd4d8-5dd9-49fc-a011-9237c5ce121f)) + (pad "B5" smd rect (at 1.75 -4.045 180) (size 0.3 1.45) (layers "F.Cu" "F.Paste" "F.Mask") + (net 19 "Net-(J37-PadB5)") (pinfunction "CC2") (pintype "bidirectional") (tstamp 6caec714-6b91-45fc-a070-253ce9135309)) + (pad "B6" smd rect (at 0.75 -4.045 180) (size 0.3 1.45) (layers "F.Cu" "F.Paste" "F.Mask") + (net 16 "/DP") (pinfunction "D+") (pintype "bidirectional") (tstamp f2a6df28-0abb-4d63-aa43-af208a63c3c0)) + (pad "B7" smd rect (at -0.75 -4.045 180) (size 0.3 1.45) (layers "F.Cu" "F.Paste" "F.Mask") + (net 17 "/DM") (pinfunction "D-") (pintype "bidirectional") (tstamp ed29ab6d-1141-49ad-bb38-c86c97e3623b)) + (pad "B8" smd rect (at -1.75 -4.045 180) (size 0.3 1.45) (layers "F.Cu" "F.Paste" "F.Mask") + (net 20 "unconnected-(J37-PadB8)") (pinfunction "SBU2") (pintype "bidirectional+no_connect") (tstamp e1e30c73-2c00-4212-8b02-c449cc4e78d9)) + (pad "B9" smd rect (at -2.45 -4.045 180) (size 0.6 1.45) (layers "F.Cu" "F.Paste" "F.Mask") + (net 4 "/VBUS") (pinfunction "VBUS") (pintype "passive") (tstamp 1d94a943-6f89-4a75-bdaf-8a043132f6e3)) + (pad "B12" smd rect (at -3.25 -4.045 180) (size 0.6 1.45) (layers "F.Cu" "F.Paste" "F.Mask") + (net 2 "GND") (pinfunction "GND") (pintype "passive") (tstamp 577436d7-738d-4102-9391-efedd07cc17b)) + (pad "S1" thru_hole oval (at 4.32 -3.13 180) (size 1 2.1) (drill oval 0.6 1.7) (layers *.Cu *.Mask) + (net 2 "GND") (pinfunction "SHIELD") (pintype "passive") (tstamp 02f1433b-ddff-426d-9452-10ae10b3f313)) + (pad "S1" thru_hole oval (at -4.32 -3.13 180) (size 1 2.1) (drill oval 0.6 1.7) (layers *.Cu *.Mask) + (net 2 "GND") (pinfunction "SHIELD") (pintype "passive") (tstamp 47424ca0-fe2a-4227-b528-57ef81d03584)) + (pad "S1" thru_hole oval (at -4.32 1.05 180) (size 1 1.6) (drill oval 0.6 1.2) (layers *.Cu *.Mask) + (net 2 "GND") (pinfunction "SHIELD") (pintype "passive") (tstamp 4eee4e60-2c9f-4f23-b203-ad000d0994c0)) + (pad "S1" thru_hole oval (at 4.32 1.05 180) (size 1 1.6) (drill oval 0.6 1.2) (layers *.Cu *.Mask) + (net 2 "GND") (pinfunction "SHIELD") (pintype "passive") (tstamp 52b9f703-6e63-452a-9195-7ab26fbbafb0)) + (model "${KICAD6_3DMODEL_DIR}/Connector_USB.3dshapes/USB_C_Receptacle_HRO_TYPE-C-31-M-12.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (layer "F.Cu") + (tedit 5F68FEEF) (tstamp 805ff9a2-d020-4bb7-aa45-68a587d7845b) + (at 74.0399 96.61 180) + (descr "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") + (tags "capacitor handsolder") + (property "Sheetfile" "Canon_manage.kicad_sch") + (property "Sheetname" "") + (path "/25ca2f10-e30e-4c20-8cbf-700182947489") + (attr smd) + (fp_text reference "C2" (at 0 -1.43) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 37d2fadf-784e-48c2-b66a-b3187aa7b2b7) + ) + (fp_text value "12" (at 0 1.43) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 368f3c9a-d934-4147-b66d-159eeff8ac6e) + ) + (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") + (effects (font (size 0.4 0.4) (thickness 0.06))) + (tstamp fe51fb7a-4bff-4975-b1f8-d4d6599e23cb) + ) + (fp_line (start -0.146267 0.51) (end 0.146267 0.51) (layer "F.SilkS") (width 0.12) (tstamp 828cbc64-2f4b-4682-98f6-224c27d188a3)) + (fp_line (start -0.146267 -0.51) (end 0.146267 -0.51) (layer "F.SilkS") (width 0.12) (tstamp f1ef27a5-fce0-4733-8704-b69de3160311)) + (fp_line (start -1.65 0.73) (end -1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 356b18c7-a89b-4ca2-b434-eb7a7cdc69b9)) + (fp_line (start 1.65 0.73) (end -1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 67cbd40e-11aa-4d66-9eef-4505cfe4312e)) + (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 8f91f0db-d495-4290-bda7-d2baa0a1d0e6)) + (fp_line (start 1.65 -0.73) (end 1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp b94fb607-afb5-4860-bc48-810f1a166187)) + (fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 1cec1a08-9df1-4814-ba9f-e4857b722f4e)) + (fp_line (start 0.8 0.4) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 3925e0fe-c332-4424-8c66-f45a46ef277b)) + (fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 7cab8be4-603d-41f7-8c7d-86a41c2d2fd9)) + (fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp d581b5f2-8925-4e9b-adec-83d5cbb02273)) + (pad "1" smd roundrect (at -0.8625 0 180) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 3 "/OSC_OUT") (pintype "passive") (tstamp c0914277-fa31-4732-8110-f32ebe24a8da)) + (pad "2" smd roundrect (at 0.8625 0 180) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 2 "GND") (pintype "passive") (tstamp 9d3e4128-46ae-48a5-aae5-565334b023ac)) + (model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Package_TO_SOT_SMD:SOT-23-6_Handsoldering" (layer "F.Cu") + (tedit 5A02FF57) (tstamp 8f19d1da-0066-43b9-8408-ad844da28455) + (at 92.1004 58.4924 -90) + (descr "6-pin SOT-23 package, Handsoldering") + (tags "SOT-23-6 Handsoldering") + (property "Sheetfile" "Canon_manage.kicad_sch") + (property "Sheetname" "") + (path "/e1306b3c-a04a-4852-b196-c787de28ca15") + (attr smd) + (fp_text reference "U3" (at 3.2804 -0.5842 180) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp f12a220b-c8cc-4d0e-bb93-aacfe2910c25) + ) + (fp_text value "USBLC6-2SC6" (at 0 2.9 90) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 8008ce6c-0d98-421a-9cc9-697e191131a8) + ) + (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") + (effects (font (size 0.5 0.5) (thickness 0.075))) + (tstamp b9cecdea-99b9-4dff-8644-e92699dd013b) + ) + (fp_line (start -0.9 1.61) (end 0.9 1.61) (layer "F.SilkS") (width 0.12) (tstamp 2e168018-e127-4f9c-a92d-469f929db7b6)) + (fp_line (start 0.9 -1.61) (end -2.05 -1.61) (layer "F.SilkS") (width 0.12) (tstamp 4f1cfff8-77f1-4b77-bcc1-0b17c98ed35f)) + (fp_line (start 2.4 -1.8) (end 2.4 1.8) (layer "F.CrtYd") (width 0.05) (tstamp 2848c2de-5755-4962-8b1a-123bfd76d3e7)) + (fp_line (start -2.4 -1.8) (end 2.4 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp d2ce3256-1aee-48d6-9c22-afb9e833785b)) + (fp_line (start 2.4 1.8) (end -2.4 1.8) (layer "F.CrtYd") (width 0.05) (tstamp db1a5637-5786-4fc9-b24f-b3710539ff72)) + (fp_line (start -2.4 1.8) (end -2.4 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp e77eb620-058b-4352-b2c6-09d43f01a3a3)) + (fp_line (start 0.9 -1.55) (end -0.25 -1.55) (layer "F.Fab") (width 0.1) (tstamp 4571586d-694c-4034-a531-fdebb1a051a1)) + (fp_line (start 0.9 -1.55) (end 0.9 1.55) (layer "F.Fab") (width 0.1) (tstamp 4c9ddc50-bc38-477e-88e9-d98254e1bbac)) + (fp_line (start -0.9 -0.9) (end -0.9 1.55) (layer "F.Fab") (width 0.1) (tstamp 84f6c981-a97d-4061-a4ae-8edc383b2a67)) + (fp_line (start 0.9 1.55) (end -0.9 1.55) (layer "F.Fab") (width 0.1) (tstamp c69b9e39-6400-4241-9db7-dd50b967ad84)) + (fp_line (start -0.9 -0.9) (end -0.25 -1.55) (layer "F.Fab") (width 0.1) (tstamp d1ac719f-25f8-45c1-a809-8823784c4cb3)) + (pad "1" smd rect (at -1.35 -0.95 270) (size 1.56 0.65) (layers "F.Cu" "F.Paste" "F.Mask") + (net 21 "Net-(R7-Pad2)") (pinfunction "I/O1") (pintype "passive") (tstamp 5fa0aad1-dc7f-431d-a7d2-8b79c7e2820a)) + (pad "2" smd rect (at -1.35 0 270) (size 1.56 0.65) (layers "F.Cu" "F.Paste" "F.Mask") + (net 2 "GND") (pinfunction "GND") (pintype "passive") (tstamp c5ab94fc-f06f-4e90-a9e6-a9d9f2a3ec40)) + (pad "3" smd rect (at -1.35 0.95 270) (size 1.56 0.65) (layers "F.Cu" "F.Paste" "F.Mask") + (net 22 "Net-(R8-Pad2)") (pinfunction "I/O2") (pintype "passive") (tstamp 8fea7f9d-cf73-4dc6-8ddf-774d19e9fd4c)) + (pad "4" smd rect (at 1.35 0.95 270) (size 1.56 0.65) (layers "F.Cu" "F.Paste" "F.Mask") + (net 26 "/USBDM") (pinfunction "I/O2") (pintype "passive") (tstamp f44b2ef4-d21b-4b63-85db-3f2d2de8cdc4)) + (pad "5" smd rect (at 1.35 0 270) (size 1.56 0.65) (layers "F.Cu" "F.Paste" "F.Mask") + (net 4 "/VBUS") (pinfunction "VBUS") (pintype "passive") (tstamp 61ee9d1a-283e-4130-8ffc-71496612cbe6)) + (pad "6" smd rect (at 1.35 -0.95 270) (size 1.56 0.65) (layers "F.Cu" "F.Paste" "F.Mask") + (net 27 "/USBDP") (pinfunction "I/O1") (pintype "passive") (tstamp 5768f5ed-9ae6-49e9-b9e9-d81b6de1586e)) + (model "${KICAD6_3DMODEL_DIR}/Package_TO_SOT_SMD.3dshapes/SOT-23-6.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") + (tedit 5F68FEEE) (tstamp 90f56177-6e76-4fc7-a183-4403eca2c051) + (at 96.7486 55.5498 180) + (descr "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") + (tags "resistor handsolder") + (property "Sheetfile" "Canon_manage.kicad_sch") + (property "Sheetname" "") + (path "/f37e605d-c65e-40ed-8644-00a3f2965639") + (attr smd) + (fp_text reference "R8" (at -0.0997 1.3462) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp f7913a63-36ea-4793-ad10-addca214807a) + ) + (fp_text value "22" (at 0 1.43) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 9f5a9204-0027-43dd-8778-4a137e1949ae) + ) + (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") + (effects (font (size 0.4 0.4) (thickness 0.06))) + (tstamp 49412aab-eba5-409c-b6f2-6cde1fb7b6dd) + ) + (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (layer "F.SilkS") (width 0.12) (tstamp 021a34c2-264e-4da2-a35f-5f6284dbe41c)) + (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp 321853b5-3dfc-48da-b250-bd8f5f2f1ff5)) + (fp_line (start -1.65 0.73) (end -1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 744accbc-6772-4313-bd38-c4a19ac4f19b)) + (fp_line (start 1.65 -0.73) (end 1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp e5695805-ce76-4edf-bd3d-3f13d74fcf85)) + (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp e5942fd9-87ff-4e35-b2c1-9f2cd65c97e4)) + (fp_line (start 1.65 0.73) (end -1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp ea9509fb-b4bc-44e2-902b-eabc1307ed1e)) + (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 1b991fe6-7d59-48bd-9f18-ae353e55bdbc)) + (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 2974ced2-f25e-4a26-9dd9-fd13e950c25a)) + (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 5e1fa4af-4df1-4f9a-8e43-31d03b98a383)) + (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp e6db97b0-dd7c-4df5-8d7e-357acf759f86)) + (pad "1" smd roundrect (at -0.9125 0 180) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 17 "/DM") (pintype "passive") (tstamp bb040a59-0a66-4ed2-808d-e5dd74815cf1)) + (pad "2" smd roundrect (at 0.9125 0 180) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 22 "Net-(R8-Pad2)") (pintype "passive") (tstamp 146fd09c-d710-4c59-bf74-62568008d197)) + (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "MountingHole:MountingHole_3.2mm_M3" locked (layer "F.Cu") + (tedit 56D1B4CB) (tstamp a715d835-13de-4a94-9347-ded7789445f9) + (at 86.05 63.225) + (descr "Mounting Hole 3.2mm, no annular, M3") + (tags "mounting hole 3.2mm no annular m3") + (attr exclude_from_pos_files exclude_from_bom) + (fp_text reference "REF**" (at 0 -4.2) (layer "F.SilkS") hide + (effects (font (size 1 1) (thickness 0.15))) + (tstamp fbe06430-6383-4629-b04f-90fe35677ad2) + ) + (fp_text value "MountingHole_3.2mm_M3" (at 0 4.2) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 4e800cc9-d234-4e28-8b27-758aad307521) + ) + (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 974b8d93-8342-4b28-bf97-71adc66708b7) + ) + (fp_circle (center 0 0) (end 3.2 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp 1b073049-b474-4704-a731-8831ffb40981)) + (fp_circle (center 0 0) (end 3.45 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 1c02cde8-d1e8-46c0-8d61-f3c5ae69ddba)) + (pad "" np_thru_hole circle locked (at 0 0) (size 3.2 3.2) (drill 3.2) (layers *.Cu *.Mask) (tstamp ff4556d0-5661-4b9f-b2d2-5f484c47d027)) + ) + + (footprint "Connector_PinHeader_1.00mm:PinHeader_1x01_P1.00mm_Vertical" (layer "F.Cu") + (tedit 59FED738) (tstamp a8759d0d-15da-4c68-92d2-cc2b254005eb) + (at 114.04 66.09) + (descr "Through hole straight pin header, 1x01, 1.00mm pitch, single row") + (tags "Through hole pin header THT 1x01 1.00mm single row") + (property "Sheetfile" "Canon_manage.kicad_sch") + (property "Sheetname" "") + (path "/a5775530-a18e-4f83-8d4f-2a5a128645d7") + (attr through_hole) + (fp_text reference "J2" (at 0 -2.3868 90) (layer "F.SilkS") hide + (effects (font (size 1 1) (thickness 0.15))) + (tstamp e3e3350f-d0be-47a0-89e2-13a8b3e626bb) + ) + (fp_text value "PV" (at 0.1584 -1.955 90) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp f8923182-bc0b-4cd7-9cd6-c9a24c23d467) + ) + (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") + (effects (font (size 0.76 0.76) (thickness 0.114))) + (tstamp ccde9499-e167-48c6-8939-7de7cd8b9622) + ) + (fp_line (start -0.695 0.685) (end -0.608276 0.685) (layer "F.SilkS") (width 0.12) (tstamp 093938cd-eb85-478f-9782-b90b7be91f0b)) + (fp_line (start -0.695 0) (end -0.695 -0.685) (layer "F.SilkS") (width 0.12) (tstamp 32e37ea0-60e0-4ce1-952f-f71450d55c88)) + (fp_line (start -0.695 0.685) (end 0.695 0.685) (layer "F.SilkS") (width 0.12) (tstamp 45857abc-bc22-44a1-9dbb-a7f0d7209615)) + (fp_line (start 0.695 0.685) (end 0.695 0.56) (layer "F.SilkS") (width 0.12) (tstamp 781f1fd0-b1be-4e24-93f5-54a30d88cb31)) + (fp_line (start 0.608276 0.685) (end 0.695 0.685) (layer "F.SilkS") (width 0.12) (tstamp ab4bff7b-aa23-4b6b-b32f-5bc79eddb0ce)) + (fp_line (start -0.695 -0.685) (end 0 -0.685) (layer "F.SilkS") (width 0.12) (tstamp dcfa54c8-337d-473f-9259-1933cc34792b)) + (fp_line (start -0.695 0.685) (end -0.695 0.56) (layer "F.SilkS") (width 0.12) (tstamp e3629365-b71d-472a-9d94-c5e2deb221f7)) + (fp_line (start 1.15 -1) (end -1.15 -1) (layer "F.CrtYd") (width 0.05) (tstamp 27040196-02ab-4f60-8ae2-787a7de577fe)) + (fp_line (start -1.15 1) (end 1.15 1) (layer "F.CrtYd") (width 0.05) (tstamp 31ad94f4-e4f5-4f86-9b7e-d1c451da26af)) + (fp_line (start 1.15 1) (end 1.15 -1) (layer "F.CrtYd") (width 0.05) (tstamp 429c6606-85ec-482b-be01-8c5cff0a3abe)) + (fp_line (start -1.15 -1) (end -1.15 1) (layer "F.CrtYd") (width 0.05) (tstamp a1a37a6b-8c82-4f69-848b-07862411e966)) + (fp_line (start 0.635 -0.5) (end 0.635 0.5) (layer "F.Fab") (width 0.1) (tstamp 0b9d3afb-7284-4e37-91d9-56a116a1fdc9)) + (fp_line (start -0.635 0.5) (end -0.635 -0.1825) (layer "F.Fab") (width 0.1) (tstamp 36f53b19-e5b6-49f6-8c63-72397883b9d3)) + (fp_line (start -0.635 -0.1825) (end -0.3175 -0.5) (layer "F.Fab") (width 0.1) (tstamp a3a3c3ae-f886-4162-99ee-1bbcc4682394)) + (fp_line (start 0.635 0.5) (end -0.635 0.5) (layer "F.Fab") (width 0.1) (tstamp cf6581f0-3c51-4acf-9bc0-c2ae32895680)) + (fp_line (start -0.3175 -0.5) (end 0.635 -0.5) (layer "F.Fab") (width 0.1) (tstamp f2ef9e2d-b224-41db-bd1a-ad9e9ef048d3)) + (pad "1" thru_hole rect (at 0 0) (size 0.85 0.85) (drill 0.5) (layers *.Cu *.Mask) + (net 4 "/VBUS") (pinfunction "Pin_1") (pintype "passive") (tstamp b84c576d-207f-41b9-b2a4-a56119b74e7f)) + (model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_1.00mm.3dshapes/PinHeader_1x01_P1.00mm_Vertical.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "MountingHole:MountingHole_3.2mm_M3" locked (layer "F.Cu") + (tedit 56D1B4CB) (tstamp b1a0ea7c-550a-4e9e-ba53-becec6e7b063) + (at 125.88 110.665) + (descr "Mounting Hole 3.2mm, no annular, M3") + (tags "mounting hole 3.2mm no annular m3") + (attr exclude_from_pos_files exclude_from_bom) + (fp_text reference "REF**3" (at 0 -4.2) (layer "F.SilkS") hide + (effects (font (size 1 1) (thickness 0.15))) + (tstamp d1077c1c-6626-4803-ba6f-e90763c2f29b) + ) + (fp_text value "MountingHole_3.2mm_M3" (at 0 4.2) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 70f9b518-1e74-4881-8506-9a45895e59da) + ) + (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp f12cf1bf-0c1d-4553-97e4-93bbfac252c7) + ) + (fp_circle (center 0 0) (end 3.2 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp d8c4537e-5602-4826-8c4e-551ef9170947)) + (fp_circle (center 0 0) (end 3.45 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp eb80521f-faaf-4d41-9674-6ee59ea1bc5a)) + (pad "" np_thru_hole circle locked (at 0 0) (size 3.2 3.2) (drill 3.2) (layers *.Cu *.Mask) (tstamp b9f916d9-362d-46d1-a8aa-86ad9c1ed087)) + ) + + (footprint "Connector_PinHeader_1.00mm:PinHeader_1x01_P1.00mm_Vertical" (layer "F.Cu") + (tedit 59FED738) (tstamp b72e6226-01d2-4e4c-b5d0-fefc78e0bcd9) + (at 101.7 64.91) + (descr "Through hole straight pin header, 1x01, 1.00mm pitch, single row") + (tags "Through hole pin header THT 1x01 1.00mm single row") + (property "Sheetfile" "Canon_manage.kicad_sch") + (property "Sheetname" "") + (path "/69811119-25b3-423f-abd3-df6254459d41") + (attr through_hole) + (fp_text reference "J7" (at 0.1032 -2.4006 90) (layer "F.SilkS") hide + (effects (font (size 1 1) (thickness 0.15))) + (tstamp ddc930fe-37b7-49be-a782-73a66c587cf9) + ) + (fp_text value "MISO" (at 0.027 -2.8832 90) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp cdfdec2f-3e6f-418f-9f32-bd2e3a5099df) + ) + (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") + (effects (font (size 0.76 0.76) (thickness 0.114))) + (tstamp fab8c344-1f93-41b8-82c4-b3d9497eda2a) + ) + (fp_line (start 0.608276 0.685) (end 0.695 0.685) (layer "F.SilkS") (width 0.12) (tstamp 19eaab2a-e896-48d9-8785-491a7afdbf6c)) + (fp_line (start -0.695 0.685) (end 0.695 0.685) (layer "F.SilkS") (width 0.12) (tstamp 218eae53-d9bd-4330-8cd2-61499c439bdc)) + (fp_line (start 0.695 0.685) (end 0.695 0.56) (layer "F.SilkS") (width 0.12) (tstamp 57c7d5b5-bf6c-47bf-ae66-b79d0cbfca48)) + (fp_line (start -0.695 0) (end -0.695 -0.685) (layer "F.SilkS") (width 0.12) (tstamp 65964cc5-6d41-4db8-91c4-b8da38563c75)) + (fp_line (start -0.695 0.685) (end -0.608276 0.685) (layer "F.SilkS") (width 0.12) (tstamp aa96840e-fe76-45a7-a056-3a9c32d1ab2a)) + (fp_line (start -0.695 -0.685) (end 0 -0.685) (layer "F.SilkS") (width 0.12) (tstamp d1c8a1af-fb33-486d-b7ba-b86b1cc873cf)) + (fp_line (start -0.695 0.685) (end -0.695 0.56) (layer "F.SilkS") (width 0.12) (tstamp f1c0d4e6-f3fe-49d3-b48c-4ea9f1d5a0ec)) + (fp_line (start -1.15 1) (end 1.15 1) (layer "F.CrtYd") (width 0.05) (tstamp 55ac3d89-aac4-4e13-b91e-58bd537cab05)) + (fp_line (start 1.15 -1) (end -1.15 -1) (layer "F.CrtYd") (width 0.05) (tstamp 629588d4-8e18-498d-9ee3-864ae7b4bdfb)) + (fp_line (start 1.15 1) (end 1.15 -1) (layer "F.CrtYd") (width 0.05) (tstamp 6b6b9184-2be9-4862-9c08-e5cb5858fc29)) + (fp_line (start -1.15 -1) (end -1.15 1) (layer "F.CrtYd") (width 0.05) (tstamp 81e0e18b-4a9b-40ed-a471-eadee48f6a0c)) + (fp_line (start -0.635 -0.1825) (end -0.3175 -0.5) (layer "F.Fab") (width 0.1) (tstamp 4d873714-5e1c-4c8b-901f-2981a9eefec2)) + (fp_line (start -0.635 0.5) (end -0.635 -0.1825) (layer "F.Fab") (width 0.1) (tstamp b1fd0c2f-d60f-410d-a238-a7882dc6179a)) + (fp_line (start 0.635 -0.5) (end 0.635 0.5) (layer "F.Fab") (width 0.1) (tstamp d10e44f4-a4db-49aa-bec3-1ed388fe0bfa)) + (fp_line (start -0.3175 -0.5) (end 0.635 -0.5) (layer "F.Fab") (width 0.1) (tstamp d989e912-463a-4066-93fd-70c7156f2324)) + (fp_line (start 0.635 0.5) (end -0.635 0.5) (layer "F.Fab") (width 0.1) (tstamp f41beb57-a4b0-4b3d-b2d5-7ed3a22931db)) + (pad "1" thru_hole rect (at 0 0) (size 0.85 0.85) (drill 0.5) (layers *.Cu *.Mask) + (net 53 "Net-(R4-Pad2)") (pinfunction "Pin_1") (pintype "passive") (tstamp 5478e319-ea5d-493e-b956-498da00441a4)) + (model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_1.00mm.3dshapes/PinHeader_1x01_P1.00mm_Vertical.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") + (tedit 5F68FEEE) (tstamp bd03ca90-5f99-4aac-8bf7-2cad4d41a2c6) + (at 81.169932 70.1821 90) + (descr "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") + (tags "resistor handsolder") + (property "Sheetfile" "Canon_manage.kicad_sch") + (property "Sheetname" "") + (path "/9217dde9-d89c-4615-8229-7f9ead33abfa") + (attr smd) + (fp_text reference "R4" (at 2.3133 0.008468) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 01f69422-9fd1-4561-83da-a680b2537b5d) + ) + (fp_text value "47" (at 0 1.43 90) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 41dc2199-cdbb-4d51-a6f6-5a8be4f6a650) + ) + (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") + (effects (font (size 0.4 0.4) (thickness 0.06))) + (tstamp 9971667a-7966-413d-8b8b-0ef2c7e2dc3f) + ) + (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (layer "F.SilkS") (width 0.12) (tstamp c2fa2d5f-9f89-4b4f-97ab-33f6eaa6387f)) + (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp e4fbf0e5-f8e7-4328-beb3-8220603dc382)) + (fp_line (start 1.65 -0.73) (end 1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 53aed54e-53e4-48df-b1a9-88a9ea0b7851)) + (fp_line (start -1.65 0.73) (end -1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp c327538f-bf88-4926-b11b-5f8fb8b8e8c6)) + (fp_line (start 1.65 0.73) (end -1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp e93d44ce-8750-46a9-a0f9-439141078117)) + (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp ec5d820d-28bf-4991-8ab6-461db5e102cc)) + (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 22dc1295-5e35-42b9-841e-99bcc64b2743)) + (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 27a269c5-8293-44aa-a254-c81e9b75835a)) + (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp dc9ed210-4424-4b46-99af-fd43b95bbc77)) + (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp f6a7628b-ba13-4930-a2c2-97573f077380)) + (pad "1" smd roundrect (at -0.9125 0 90) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 8 "/SPI_MISO") (pintype "passive") (tstamp aab03f2f-a10a-436c-a9cf-0009f1909259)) + (pad "2" smd roundrect (at 0.9125 0 90) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 53 "Net-(R4-Pad2)") (pintype "passive") (tstamp 2fcbe686-19d4-46f2-87a9-d0a051e69879)) + (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Connector_PinHeader_1.00mm:PinHeader_1x01_P1.00mm_Vertical" (layer "F.Cu") + (tedit 59FED738) (tstamp ccbefbd2-71d6-4dc7-9a51-06952b253b7c) + (at 106.27 64.49) + (descr "Through hole straight pin header, 1x01, 1.00mm pitch, single row") + (tags "Through hole pin header THT 1x01 1.00mm single row") + (property "Sheetfile" "Canon_manage.kicad_sch") + (property "Sheetname" "") + (path "/b4f88c82-2497-4a01-ba33-1e43542836b5") + (attr through_hole) + (fp_text reference "J5" (at 0.029 -2.4124 90) (layer "F.SilkS") hide + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 0f2487f2-e740-4804-a232-d5726381747a) + ) + (fp_text value "LV" (at 0.1306 -1.9044 90) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 44fe8809-2d8d-4b7f-bc82-5f6597c50dd4) + ) + (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") + (effects (font (size 0.76 0.76) (thickness 0.114))) + (tstamp 5c871ac9-9465-4ee2-964d-266d558460c1) + ) + (fp_line (start -0.695 0) (end -0.695 -0.685) (layer "F.SilkS") (width 0.12) (tstamp 31aba1d6-168c-4245-907f-2b1cc83c0c38)) + (fp_line (start -0.695 0.685) (end -0.695 0.56) (layer "F.SilkS") (width 0.12) (tstamp 37028e37-11dd-44e0-9e62-d7f04b0501a1)) + (fp_line (start 0.695 0.685) (end 0.695 0.56) (layer "F.SilkS") (width 0.12) (tstamp 450c0f03-4d09-404c-b18e-1c1df4881b5a)) + (fp_line (start -0.695 -0.685) (end 0 -0.685) (layer "F.SilkS") (width 0.12) (tstamp 50fbbd52-075d-4438-a727-42ea83def9db)) + (fp_line (start -0.695 0.685) (end -0.608276 0.685) (layer "F.SilkS") (width 0.12) (tstamp 983fe3ec-df01-422e-ada9-8c63e7323954)) + (fp_line (start 0.608276 0.685) (end 0.695 0.685) (layer "F.SilkS") (width 0.12) (tstamp c4447b73-a430-450b-8733-f24ca0e4b7eb)) + (fp_line (start -0.695 0.685) (end 0.695 0.685) (layer "F.SilkS") (width 0.12) (tstamp fe046d8a-4ff2-4eb9-a806-187e64dcf672)) + (fp_line (start -1.15 -1) (end -1.15 1) (layer "F.CrtYd") (width 0.05) (tstamp 2c0227c0-f533-4a71-beb0-175181382646)) + (fp_line (start 1.15 -1) (end -1.15 -1) (layer "F.CrtYd") (width 0.05) (tstamp 539f57d1-20d6-47ec-a366-54dda193567d)) + (fp_line (start -1.15 1) (end 1.15 1) (layer "F.CrtYd") (width 0.05) (tstamp 896f745d-9225-42da-ab70-a191a43aa5a5)) + (fp_line (start 1.15 1) (end 1.15 -1) (layer "F.CrtYd") (width 0.05) (tstamp be919273-46b7-4af1-a6cd-0a05f204379d)) + (fp_line (start 0.635 -0.5) (end 0.635 0.5) (layer "F.Fab") (width 0.1) (tstamp 1effe790-a61d-482f-907f-5a670b03866a)) + (fp_line (start -0.635 0.5) (end -0.635 -0.1825) (layer "F.Fab") (width 0.1) (tstamp 686fe66e-a45b-49f5-9714-9817cf3372d9)) + (fp_line (start -0.635 -0.1825) (end -0.3175 -0.5) (layer "F.Fab") (width 0.1) (tstamp 7c96443f-cdfa-4fc1-b964-aa11b3f6a842)) + (fp_line (start 0.635 0.5) (end -0.635 0.5) (layer "F.Fab") (width 0.1) (tstamp daa0c8ea-1586-42b8-9b8e-868f3bb8c04a)) + (fp_line (start -0.3175 -0.5) (end 0.635 -0.5) (layer "F.Fab") (width 0.1) (tstamp fbd9948d-e069-4c7f-ad4c-6db65288e948)) + (pad "1" thru_hole rect (at 0 0) (size 0.85 0.85) (drill 0.5) (layers *.Cu *.Mask) + (net 4 "/VBUS") (pinfunction "Pin_1") (pintype "passive") (tstamp 9efa7a77-cf40-4b74-b1e7-e13250c096f2)) + (model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_1.00mm.3dshapes/PinHeader_1x01_P1.00mm_Vertical.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Connector_PinHeader_2.54mm:PinHeader_1x01_P2.54mm_Vertical" (layer "F.Cu") + (tedit 59FED5CC) (tstamp d18ad1d0-939c-4a95-850e-71f5403cc9b6) + (at 138.6332 89.5604) + (descr "Through hole straight pin header, 1x01, 2.54mm pitch, single row") + (tags "Through hole pin header THT 1x01 2.54mm single row") + (property "Sheetfile" "Canon_manage.kicad_sch") + (property "Sheetname" "") + (path "/1b977903-0277-42f4-831b-439cc8c4b4b8") + (attr through_hole) + (fp_text reference "J35" (at 0 -2.33) (layer "F.SilkS") hide + (effects (font (size 1 1) (thickness 0.15))) + (tstamp ab089a36-0943-4b30-bd3b-db1968c324ef) + ) + (fp_text value "GND" (at 0 2.33) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp fcee32b1-f15a-4e06-b0e4-c283a91cd504) + ) + (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 95372cec-f24b-4764-bb64-59ba65afa437) + ) + (fp_line (start -1.33 1.27) (end 1.33 1.27) (layer "F.SilkS") (width 0.12) (tstamp 2e8795bf-dde8-4f58-bfeb-26e31fc072b8)) + (fp_line (start -1.33 0) (end -1.33 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 36be9237-acbd-4be3-836b-9b35ae4bb14c)) + (fp_line (start -1.33 1.33) (end 1.33 1.33) (layer "F.SilkS") (width 0.12) (tstamp 3e38e6b2-935f-4f8b-880a-e3088c1bf73b)) + (fp_line (start -1.33 1.27) (end -1.33 1.33) (layer "F.SilkS") (width 0.12) (tstamp 499e0d71-de37-435d-93b2-cd15ac6caa1c)) + (fp_line (start 1.33 1.27) (end 1.33 1.33) (layer "F.SilkS") (width 0.12) (tstamp 942ad00b-7dde-4f7d-8057-6c0a768c76bf)) + (fp_line (start -1.33 -1.33) (end 0 -1.33) (layer "F.SilkS") (width 0.12) (tstamp ff306803-bedf-4cf9-b64d-ab8f092396ba)) + (fp_line (start 1.8 1.8) (end 1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 37988fc2-5551-4c6f-89d4-18328bf02ede)) + (fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 62324c09-651e-4daf-bca2-6c6cff77f2de)) + (fp_line (start -1.8 1.8) (end 1.8 1.8) (layer "F.CrtYd") (width 0.05) (tstamp 766541f7-8cc0-4411-affa-e7059f9df0e0)) + (fp_line (start -1.8 -1.8) (end -1.8 1.8) (layer "F.CrtYd") (width 0.05) (tstamp c218cd2b-9bda-4f79-8854-c9bb3b1b73ee)) + (fp_line (start -1.27 1.27) (end -1.27 -0.635) (layer "F.Fab") (width 0.1) (tstamp 46c7c1ab-062b-4de1-809b-8bd197528f5d)) + (fp_line (start 1.27 1.27) (end -1.27 1.27) (layer "F.Fab") (width 0.1) (tstamp 5d17925e-27e3-4d23-a050-34da6c1d6722)) + (fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer "F.Fab") (width 0.1) (tstamp d1ed84f9-3684-435f-a013-d8a4107686b9)) + (fp_line (start 1.27 -1.27) (end 1.27 1.27) (layer "F.Fab") (width 0.1) (tstamp f5dfde7a-d625-4ccd-b26e-1d10a9674bfc)) + (fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp fb9ab690-3428-47ed-bb9e-4fe3acbec152)) + (pad "1" thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) + (net 2 "GND") (pinfunction "Pin_1") (pintype "passive") (tstamp edc1a08d-7af9-4831-8396-7358630a0937)) + (model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x01_P2.54mm_Vertical.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") + (tedit 5F68FEEE) (tstamp d4a86d8e-f032-413a-8b8c-f7c816d5e182) + (at 78.0542 70.1821 90) + (descr "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") + (tags "resistor handsolder") + (property "Sheetfile" "Canon_manage.kicad_sch") + (property "Sheetname" "") + (path "/b81e87a6-cb9e-44dc-8481-c7c1fb38aaff") + (attr smd) + (fp_text reference "R2" (at 2.3895 -0.0508) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 56dec9b8-fdb5-4091-b834-17ccb5976c6f) + ) + (fp_text value "47" (at 0 1.43 90) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 5d85fc09-0b9a-44f9-a6ed-8ea3bd46d274) + ) + (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") + (effects (font (size 0.4 0.4) (thickness 0.06))) + (tstamp d38e471b-d7c7-4264-bd96-968cbead55ea) + ) + (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp a17bbeaf-4413-4bce-88e8-53f270c41d0c)) + (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (layer "F.SilkS") (width 0.12) (tstamp d65466ae-8bcc-49aa-a5e9-e0447911401e)) + (fp_line (start 1.65 0.73) (end -1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 4b660649-0be7-401f-99af-027f6bd31438)) + (fp_line (start -1.65 0.73) (end -1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 84162287-d0e5-4c0d-9e12-804eb912d8bf)) + (fp_line (start 1.65 -0.73) (end 1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp ab5cc551-ca8d-44c0-9a68-6b991072e383)) + (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp f1977ddc-6501-4ded-814d-4fcd83d74e96)) + (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 1a0e67b3-42a6-4c41-b9bd-0fafd7f7b822)) + (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 1f72a317-1dd4-4d1c-9a82-cb9c77112ccc)) + (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp db11f210-09aa-4c0b-9227-3d3c0d562d51)) + (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp f685a9d6-c440-4ee1-8de2-71714a9e4ffe)) + (pad "1" smd roundrect (at -0.9125 0 90) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 6 "/L_DETECT") (pintype "passive") (tstamp 9a2a75ab-aa61-4b52-bdf1-30c1caa1a610)) + (pad "2" smd roundrect (at 0.9125 0 90) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 51 "Net-(R2-Pad2)") (pintype "passive") (tstamp b59b01de-a371-43b0-827d-295f228118cb)) + (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") + (tedit 5F68FEEE) (tstamp d5f2eca2-e375-4d27-8a0b-0af418c53247) + (at 82.7278 70.1821 90) + (descr "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") + (tags "resistor handsolder") + (property "Sheetfile" "Canon_manage.kicad_sch") + (property "Sheetname" "") + (path "/a00fd4d5-29d5-49d2-891f-56b660f25b55") + (attr smd) + (fp_text reference "R5" (at -2.3857 -0.0254) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 935dc65c-0f78-4924-a45a-ea59f33b15d6) + ) + (fp_text value "47" (at 0 1.43 90) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp c4a5a461-abc5-4a86-bb93-b3f926f5220c) + ) + (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") + (effects (font (size 0.4 0.4) (thickness 0.06))) + (tstamp 18e2ab8c-246b-44ad-a6fd-be16df2b4bf4) + ) + (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (layer "F.SilkS") (width 0.12) (tstamp ceef3077-76ba-4166-82ac-51c1c8d6d818)) + (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp e80beffd-f0d5-4631-ab74-e7ccc40f0912)) + (fp_line (start 1.65 -0.73) (end 1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 37aec13f-3212-418f-b6e0-43f4c8c773a7)) + (fp_line (start 1.65 0.73) (end -1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 4aee3e65-da3e-4235-a797-5701ddf0b2bf)) + (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 965d8ce6-a3a4-41ef-9dfc-950c2f8c8956)) + (fp_line (start -1.65 0.73) (end -1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 9e804a7f-a942-477f-b72c-086fc61a5a51)) + (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 288d7497-ccfa-4c6c-95ce-9cbb4afa1824)) + (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 398cb9b3-40c7-4beb-9b59-c9d4ae620417)) + (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 4f99c15e-9053-4fc2-88f0-7bf003fa9e1f)) + (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp d37ef8a0-8817-4b42-81c0-9bfb2d68e9b8)) + (pad "1" smd roundrect (at -0.9125 0 90) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 7 "/SPI_SCK") (pintype "passive") (tstamp 34679250-903c-404c-8a15-c60687ba4f2a)) + (pad "2" smd roundrect (at 0.9125 0 90) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 54 "Net-(R5-Pad2)") (pintype "passive") (tstamp 72a5a3bc-f525-4aa1-afef-9c1792b0617c)) + (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Connector_PinHeader_2.54mm:PinHeader_1x01_P2.54mm_Vertical" (layer "F.Cu") + (tedit 59FED5CC) (tstamp e180f173-2048-4203-b0c3-85e7c1d9374d) + (at 127.6096 72.2376) + (descr "Through hole straight pin header, 1x01, 2.54mm pitch, single row") + (tags "Through hole pin header THT 1x01 2.54mm single row") + (property "Sheetfile" "Canon_manage.kicad_sch") + (property "Sheetname" "") + (path "/6349f82f-82b6-43d6-944a-a7afada78839") + (attr through_hole) + (fp_text reference "J26" (at 0 -2.33) (layer "F.SilkS") hide + (effects (font (size 1 1) (thickness 0.15))) + (tstamp e7855e7e-bdba-443a-926c-1a65c8639c46) + ) + (fp_text value "5v" (at 0 2.33) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 46983333-69d5-43ba-b7d9-d12c27497741) + ) + (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp d65ee3b8-e949-4a11-8ffa-0ccfa59158c5) + ) + (fp_line (start -1.33 -1.33) (end 0 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 140021f5-33cb-49c7-9beb-60e94dd9dcd0)) + (fp_line (start -1.33 0) (end -1.33 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 52c504ff-89be-442a-aa5c-5317a8e04ed7)) + (fp_line (start -1.33 1.27) (end -1.33 1.33) (layer "F.SilkS") (width 0.12) (tstamp 5c2f0414-d887-4b61-b195-b36107c7aac9)) + (fp_line (start 1.33 1.27) (end 1.33 1.33) (layer "F.SilkS") (width 0.12) (tstamp 6f8fe4cf-fbee-4113-8c32-78f04d2e5d7c)) + (fp_line (start -1.33 1.33) (end 1.33 1.33) (layer "F.SilkS") (width 0.12) (tstamp ac73d129-596e-4dcc-92f7-3f0c7ffa6776)) + (fp_line (start -1.33 1.27) (end 1.33 1.27) (layer "F.SilkS") (width 0.12) (tstamp bf1982b6-cc9e-4b80-9c67-c18669c7c47c)) + (fp_line (start -1.8 1.8) (end 1.8 1.8) (layer "F.CrtYd") (width 0.05) (tstamp 3e191af4-c8aa-4c77-99d8-8d93598fd993)) + (fp_line (start 1.8 1.8) (end 1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 425c40a4-af75-4b7b-b55e-02cbd1515c15)) + (fp_line (start -1.8 -1.8) (end -1.8 1.8) (layer "F.CrtYd") (width 0.05) (tstamp 6491f919-2189-45ea-ac63-3c752b1b872f)) + (fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp a538c356-9ef3-4c51-bd89-5c5a1352ad34)) + (fp_line (start -1.27 1.27) (end -1.27 -0.635) (layer "F.Fab") (width 0.1) (tstamp 2ccffe2e-ca00-48cc-9be3-41d1cf32ea54)) + (fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer "F.Fab") (width 0.1) (tstamp 8621be27-6ee1-40b0-b043-618237d091eb)) + (fp_line (start 1.27 1.27) (end -1.27 1.27) (layer "F.Fab") (width 0.1) (tstamp 8a8cc163-9276-4280-875b-f5afe99f5268)) + (fp_line (start 1.27 -1.27) (end 1.27 1.27) (layer "F.Fab") (width 0.1) (tstamp c508df2a-d2d3-4b70-9055-f129c933b94d)) + (fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp ebd646f4-6200-4829-baca-de62cc61acec)) + (pad "1" thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) + (net 4 "/VBUS") (pinfunction "Pin_1") (pintype "passive") (tstamp 3fa7da02-dbe7-426a-b976-48840a43c74b)) + (model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x01_P2.54mm_Vertical.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Connector_PinHeader_1.00mm:PinHeader_1x06_P1.00mm_Vertical" (layer "F.Cu") + (tedit 59FED738) (tstamp e6819a0f-6b6c-400a-8346-cf22df6e6e34) + (at 70.5866 85.1888) + (descr "Through hole straight pin header, 1x06, 1.00mm pitch, single row") + (tags "Through hole pin header THT 1x06 1.00mm single row") + (property "Sheetfile" "Canon_manage.kicad_sch") + (property "Sheetname" "") + (path "/16579291-b073-4d59-83c6-28649a884cc2") + (attr through_hole) + (fp_text reference "J1" (at 0 -1.56) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 6fa568e4-6f84-4d9f-83e5-b839b4293b0f) + ) + (fp_text value "SWD" (at 0 6.56) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 8185fc63-6526-4244-84f7-94e251ec084f) + ) + (fp_text user "${REFERENCE}" (at 0 2.5 90) (layer "F.Fab") + (effects (font (size 0.76 0.76) (thickness 0.114))) + (tstamp 7e6c90a1-4593-4d47-8d78-c0733a23d6a0) + ) + (fp_line (start -0.695 -0.685) (end 0 -0.685) (layer "F.SilkS") (width 0.12) (tstamp 0d89ddb0-a15a-4ca1-afac-4f21c0e364a8)) + (fp_line (start 0.695 0.685) (end 0.695 5.56) (layer "F.SilkS") (width 0.12) (tstamp 426bf3a1-b074-47f3-8779-8f4089044d42)) + (fp_line (start -0.695 0) (end -0.695 -0.685) (layer "F.SilkS") (width 0.12) (tstamp 5f94d4db-b48b-4cd4-b601-36e804d9cc88)) + (fp_line (start -0.695 5.56) (end -0.394493 5.56) (layer "F.SilkS") (width 0.12) (tstamp 6675d11e-6a15-41c6-bba5-e15ea8cfe926)) + (fp_line (start -0.695 0.685) (end -0.695 5.56) (layer "F.SilkS") (width 0.12) (tstamp 854afaab-7150-4cf5-8d00-7830b1521172)) + (fp_line (start -0.695 0.685) (end -0.608276 0.685) (layer "F.SilkS") (width 0.12) (tstamp 8e85a08a-bcab-4d2f-aab4-a838d648b910)) + (fp_line (start 0.394493 5.56) (end 0.695 5.56) (layer "F.SilkS") (width 0.12) (tstamp 9ab1c77a-7dc6-4f73-995c-18273d5b917c)) + (fp_line (start 0.608276 0.685) (end 0.695 0.685) (layer "F.SilkS") (width 0.12) (tstamp 9fb5fe3e-6889-4d71-9692-877d7e915416)) + (fp_line (start -1.15 -1) (end -1.15 6) (layer "F.CrtYd") (width 0.05) (tstamp 158c743f-130f-4a3b-afdf-f4902da3884f)) + (fp_line (start -1.15 6) (end 1.15 6) (layer "F.CrtYd") (width 0.05) (tstamp 7f6985b2-f480-43c2-8be0-41ca18064c66)) + (fp_line (start 1.15 -1) (end -1.15 -1) (layer "F.CrtYd") (width 0.05) (tstamp a732c695-eb7b-4b1a-b8c0-e074bf392d4e)) + (fp_line (start 1.15 6) (end 1.15 -1) (layer "F.CrtYd") (width 0.05) (tstamp f8d35e79-8fe3-49aa-a8f4-3ed0f7a25e5f)) + (fp_line (start 0.635 5.5) (end -0.635 5.5) (layer "F.Fab") (width 0.1) (tstamp 22f34ea1-1d6e-4fb7-8c22-1be537512530)) + (fp_line (start -0.3175 -0.5) (end 0.635 -0.5) (layer "F.Fab") (width 0.1) (tstamp 63d9ecfc-09d7-40a9-af8c-6ce15f9f2b7a)) + (fp_line (start -0.635 5.5) (end -0.635 -0.1825) (layer "F.Fab") (width 0.1) (tstamp 6844f82b-5e88-43ae-a339-5abd983f2859)) + (fp_line (start -0.635 -0.1825) (end -0.3175 -0.5) (layer "F.Fab") (width 0.1) (tstamp 7ea5b803-1102-435d-9a57-e4aaf59c9c20)) + (fp_line (start 0.635 -0.5) (end 0.635 5.5) (layer "F.Fab") (width 0.1) (tstamp ed84e652-8a58-4248-b49b-a1a50e59b681)) + (pad "1" thru_hole rect (at 0 0) (size 0.85 0.85) (drill 0.5) (layers *.Cu *.Mask) + (net 10 "/SWCLK") (pinfunction "Pin_1") (pintype "passive") (tstamp b9a8cda1-0532-411c-b899-d29ea4e02e8b)) + (pad "2" thru_hole oval (at 0 1) (size 0.85 0.85) (drill 0.5) (layers *.Cu *.Mask) + (net 11 "/SWDIO") (pinfunction "Pin_2") (pintype "passive") (tstamp eb7f2cbc-41bd-41da-895b-52e721f2582c)) + (pad "3" thru_hole oval (at 0 2) (size 0.85 0.85) (drill 0.5) (layers *.Cu *.Mask) + (net 2 "GND") (pinfunction "Pin_3") (pintype "passive") (tstamp 1c9a2e26-fbcc-4592-a26b-d5b22458deab)) + (pad "4" thru_hole oval (at 0 3) (size 0.85 0.85) (drill 0.5) (layers *.Cu *.Mask) + (net 5 "+3V3") (pinfunction "Pin_4") (pintype "passive") (tstamp 5ad09c51-e11c-40c6-b1f7-c5ea40bd362d)) + (pad "5" thru_hole oval (at 0 4) (size 0.85 0.85) (drill 0.5) (layers *.Cu *.Mask) + (net 12 "/BOOT0") (pinfunction "Pin_5") (pintype "passive") (tstamp c374c441-f794-4569-9b4b-0d2624539d74)) + (pad "6" thru_hole oval (at 0 5) (size 0.85 0.85) (drill 0.5) (layers *.Cu *.Mask) + (net 13 "/NRST") (pinfunction "Pin_6") (pintype "passive") (tstamp 650b6d0e-0d98-4c56-9bea-575b571d1dc5)) + (model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_1.00mm.3dshapes/PinHeader_1x06_P1.00mm_Vertical.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu") + (tedit 5F68FEEE) (tstamp eb37fc29-fbec-40da-abfc-1a13c7e3d1d6) + (at 79.4747 90.9066 180) + (descr "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") + (tags "resistor handsolder") + (property "Sheetfile" "Canon_manage.kicad_sch") + (property "Sheetname" "") + (path "/71029f1b-9e82-43c9-b0c4-8af7065673fe") + (attr smd) + (fp_text reference "R1" (at 0 -1.43) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp a43050df-0c97-47e3-98bb-5904e40e7de2) + ) + (fp_text value "10k" (at 0 1.43) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 4e81bc0b-2e31-4434-88a1-33b0189c051a) + ) + (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") + (effects (font (size 0.4 0.4) (thickness 0.06))) + (tstamp d6e6750b-253b-4122-a764-62deb8b90f32) + ) + (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (layer "F.SilkS") (width 0.12) (tstamp d3bd49e0-8ca4-49f6-8723-cd7820a3f12f)) + (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp d8749fbd-3fcd-4c66-9c22-b404a2129521)) + (fp_line (start 1.65 0.73) (end -1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 9c230aa4-6548-40e7-9736-4a7c2e0e432a)) + (fp_line (start -1.65 0.73) (end -1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp cc3f2099-17b2-4d33-b105-a1df3011bf4e)) + (fp_line (start 1.65 -0.73) (end 1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp d2585d14-baab-4723-8c0f-2f93c3b655af)) + (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp f572ad94-ca3f-461d-bee6-08ab12d7f0e4)) + (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 9ff45268-5942-47da-8674-caa7e64254d4)) + (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp b2e811d2-767f-45f5-af88-84a55c37be5c)) + (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp d61361a2-9e1b-4e08-b5c4-ee639c539d5d)) + (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp e4b7f3ef-5619-4f20-8bb4-5284a3453fcf)) + (pad "1" smd roundrect (at -0.9125 0 180) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 12 "/BOOT0") (pintype "passive") (tstamp 870d265e-d672-4ce1-9acc-9cd9b4134f3a)) + (pad "2" smd roundrect (at 0.9125 0 180) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 2 "GND") (pintype "passive") (tstamp 3469c3fc-c05b-4604-9afe-b53b2e899562)) + (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Connector_PinHeader_2.54mm:PinHeader_1x01_P2.54mm_Vertical" (layer "F.Cu") + (tedit 59FED5CC) (tstamp eea792c2-d20e-43c1-af47-76c902f98b5d) + (at 133.35 89.5604) + (descr "Through hole straight pin header, 1x01, 2.54mm pitch, single row") + (tags "Through hole pin header THT 1x01 2.54mm single row") + (property "Sheetfile" "Canon_manage.kicad_sch") + (property "Sheetname" "") + (path "/bcf13481-a81d-4e80-9be1-276c076c9541") + (attr through_hole) + (fp_text reference "J36" (at 0 -2.33) (layer "F.SilkS") hide + (effects (font (size 1 1) (thickness 0.15))) + (tstamp f0d7f93f-45d5-4602-a113-7fbef1616d3d) + ) + (fp_text value "3v3" (at 0 2.33) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 22472a35-f18f-4e7c-aae4-98face07eea4) + ) + (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 251e816e-c870-4011-99e8-1ad2a1062765) + ) + (fp_line (start -1.33 1.27) (end 1.33 1.27) (layer "F.SilkS") (width 0.12) (tstamp 2d17e025-e216-4761-9f89-d8cdb7468b7e)) + (fp_line (start -1.33 0) (end -1.33 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 37cddf2f-efdd-421d-919d-f553e6587d4c)) + (fp_line (start -1.33 -1.33) (end 0 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 60d5ec10-37e9-4ff2-ad36-f7faf009d7b8)) + (fp_line (start 1.33 1.27) (end 1.33 1.33) (layer "F.SilkS") (width 0.12) (tstamp 627974e8-7977-4af0-b80b-8f3ebe92736a)) + (fp_line (start -1.33 1.27) (end -1.33 1.33) (layer "F.SilkS") (width 0.12) (tstamp 8f575740-5eab-4dd7-9315-5ecca56c91eb)) + (fp_line (start -1.33 1.33) (end 1.33 1.33) (layer "F.SilkS") (width 0.12) (tstamp cc4e9695-4cfd-4ade-9c33-6ddeb0384e94)) + (fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 0ec2ee6c-4374-41ac-a430-79541e86bdf4)) + (fp_line (start 1.8 1.8) (end 1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 249c77a7-7bba-413b-b728-d8c9765c8f36)) + (fp_line (start -1.8 -1.8) (end -1.8 1.8) (layer "F.CrtYd") (width 0.05) (tstamp b6707212-d4c1-411f-aa01-d0153c4ec5ad)) + (fp_line (start -1.8 1.8) (end 1.8 1.8) (layer "F.CrtYd") (width 0.05) (tstamp da533fe4-b9f1-47a3-bfb7-d812c45a3d21)) + (fp_line (start 1.27 1.27) (end -1.27 1.27) (layer "F.Fab") (width 0.1) (tstamp 2adf2abc-d22d-44c8-91a3-c6e8508c4970)) + (fp_line (start -1.27 1.27) (end -1.27 -0.635) (layer "F.Fab") (width 0.1) (tstamp a78c93a2-6c6f-4ae6-b1df-a6582c1aa09f)) + (fp_line (start 1.27 -1.27) (end 1.27 1.27) (layer "F.Fab") (width 0.1) (tstamp d4bf589a-3e8d-4ea3-b971-173f89b8448b)) + (fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer "F.Fab") (width 0.1) (tstamp e009812d-38bb-4860-94d2-8c79ea291a92)) + (fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp e6e1cb31-51bc-4738-9611-320cbdf092cb)) + (pad "1" thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) + (net 5 "+3V3") (pinfunction "Pin_1") (pintype "passive") (tstamp 5a8d1a11-f117-4ccf-9f00-46623a3089bc)) + (model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x01_P2.54mm_Vertical.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "B.Cu") + (tedit 5F68FEEE) (tstamp 08277ef9-ed68-48ba-abd1-6d50ee92ba56) + (at 99.5191 59.1058 180) + (descr "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") + (tags "resistor handsolder") + (property "Sheetfile" "Canon_manage.kicad_sch") + (property "Sheetname" "") + (path "/2b839956-a8c9-479f-9818-2877dd954a12") + (attr smd) + (fp_text reference "R6" (at -0.0489 -1.4478) (layer "B.SilkS") + (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + (tstamp 31ea3fca-d149-4031-97d8-0cda519e4337) + ) + (fp_text value "510" (at 0 -1.43) (layer "B.Fab") + (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + (tstamp 631ca0f8-0868-49f3-a067-2f3b17bf178c) + ) + (fp_text user "${REFERENCE}" (at 0 0) (layer "B.Fab") + (effects (font (size 0.4 0.4) (thickness 0.06)) (justify mirror)) + (tstamp 6795a872-66c7-4c07-ad3c-4f8f65d66b30) + ) + (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (layer "B.SilkS") (width 0.12) (tstamp 2fd7b71c-ccb3-437a-8fe4-f6dbb2daa5fe)) + (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (layer "B.SilkS") (width 0.12) (tstamp 35f3f8a9-ddb4-454e-9da4-a629e620102b)) + (fp_line (start -1.65 -0.73) (end -1.65 0.73) (layer "B.CrtYd") (width 0.05) (tstamp 0aad0c5a-ba96-4238-8df3-cdd113d81878)) + (fp_line (start 1.65 0.73) (end 1.65 -0.73) (layer "B.CrtYd") (width 0.05) (tstamp 55d0707e-f708-4772-a4bf-6788d14de999)) + (fp_line (start -1.65 0.73) (end 1.65 0.73) (layer "B.CrtYd") (width 0.05) (tstamp 6d893ab5-0422-47e8-8de1-589ba84332da)) + (fp_line (start 1.65 -0.73) (end -1.65 -0.73) (layer "B.CrtYd") (width 0.05) (tstamp 88070212-b93b-4189-8db6-ad0be152b70f)) + (fp_line (start 0.8 0.4125) (end 0.8 -0.4125) (layer "B.Fab") (width 0.1) (tstamp 323c549f-dedb-43a4-9117-f986f30dcc19)) + (fp_line (start 0.8 -0.4125) (end -0.8 -0.4125) (layer "B.Fab") (width 0.1) (tstamp ecc395b8-bce3-4f55-a425-c1c5e7714aaf)) + (fp_line (start -0.8 -0.4125) (end -0.8 0.4125) (layer "B.Fab") (width 0.1) (tstamp ee010014-3cd2-4d39-8067-54b1c543c220)) + (fp_line (start -0.8 0.4125) (end 0.8 0.4125) (layer "B.Fab") (width 0.1) (tstamp f0fb4b45-ff37-4960-9e63-022f6fe560dd)) + (pad "1" smd roundrect (at -0.9125 0 180) (size 0.975 0.95) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25) + (net 19 "Net-(J37-PadB5)") (pintype "passive") (tstamp e8417111-3db1-43d6-a74e-030260e0d83f)) + (pad "2" smd roundrect (at 0.9125 0 180) (size 0.975 0.95) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25) + (net 2 "GND") (pintype "passive") (tstamp ddc7a261-6bea-4877-a64f-f24eaf382222)) + (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (layer "B.Cu") + (tedit 5F68FEEF) (tstamp 13024839-a77e-42fd-a8de-628088395615) + (at 72.9223 81.9658 180) + (descr "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") + (tags "capacitor handsolder") + (property "Sheetfile" "Canon_manage.kicad_sch") + (property "Sheetname" "") + (path "/466efb6f-3511-4886-aa6b-8ff075074793") + (attr smd) + (fp_text reference "C5" (at 0 1.43) (layer "B.SilkS") + (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + (tstamp 0393c59e-185a-40d1-b65c-3eedd90436c9) + ) + (fp_text value "0.1" (at 0 -1.43) (layer "B.Fab") + (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + (tstamp 4cfaae74-9eea-4fe5-84f3-1ea850950d30) + ) + (fp_text user "${REFERENCE}" (at 0 0) (layer "B.Fab") + (effects (font (size 0.4 0.4) (thickness 0.06)) (justify mirror)) + (tstamp c5985304-6f67-41d0-b7d4-c2a248947f3c) + ) + (fp_line (start -0.146267 0.51) (end 0.146267 0.51) (layer "B.SilkS") (width 0.12) (tstamp bc2e7ffc-8941-4fe1-ab60-51e65c7bf55e)) + (fp_line (start -0.146267 -0.51) (end 0.146267 -0.51) (layer "B.SilkS") (width 0.12) (tstamp e1f8ab24-7f02-4a16-b736-15e518725c55)) + (fp_line (start -1.65 0.73) (end 1.65 0.73) (layer "B.CrtYd") (width 0.05) (tstamp 1a3d1a7a-7d0e-4f4c-b07e-67aa38b1b079)) + (fp_line (start 1.65 -0.73) (end -1.65 -0.73) (layer "B.CrtYd") (width 0.05) (tstamp 3908bb2b-ab4b-4395-8187-644a42a175e7)) + (fp_line (start 1.65 0.73) (end 1.65 -0.73) (layer "B.CrtYd") (width 0.05) (tstamp 6f88b614-4c27-44d0-8177-66e7c3238b9d)) + (fp_line (start -1.65 -0.73) (end -1.65 0.73) (layer "B.CrtYd") (width 0.05) (tstamp 9db43c7a-3ba6-4600-8d1f-fb10455e52b7)) + (fp_line (start 0.8 -0.4) (end -0.8 -0.4) (layer "B.Fab") (width 0.1) (tstamp 29492176-2d54-48da-a125-9c02aac7f9b2)) + (fp_line (start -0.8 -0.4) (end -0.8 0.4) (layer "B.Fab") (width 0.1) (tstamp 2e85871d-e8b0-4dbd-953c-cb00b4beb664)) + (fp_line (start -0.8 0.4) (end 0.8 0.4) (layer "B.Fab") (width 0.1) (tstamp 354fdd33-1af8-4242-b605-c132e5038a92)) + (fp_line (start 0.8 0.4) (end 0.8 -0.4) (layer "B.Fab") (width 0.1) (tstamp b6523fea-d672-4b8f-a9d2-6ef30bc94301)) + (pad "1" smd roundrect (at -0.8625 0 180) (size 1.075 0.95) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25) + (net 5 "+3V3") (pintype "passive") (tstamp 9c68f147-334c-440b-ac94-89c2c184d7e1)) + (pad "2" smd roundrect (at 0.8625 0 180) (size 1.075 0.95) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25) + (net 2 "GND") (pintype "passive") (tstamp be7988ac-7f10-4c3d-9a2f-0bb7372b5649)) + (model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (layer "B.Cu") + (tedit 5F68FEEF) (tstamp 640a1cad-2882-4261-a7a9-fd90accb2af9) + (at 76.4805 92.9386) + (descr "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") + (tags "capacitor handsolder") + (property "Sheetfile" "Canon_manage.kicad_sch") + (property "Sheetname" "") + (path "/180fb451-ff0f-490a-83e3-00f571e06bfc") + (attr smd) + (fp_text reference "C8" (at 2.6659 0) (layer "B.SilkS") + (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + (tstamp efcb6c97-37f7-4661-a46c-7d20bb6e3b21) + ) + (fp_text value "0.1" (at 0 -1.43) (layer "B.Fab") + (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + (tstamp 9d626418-73ef-48aa-9b3f-e264c54cef6d) + ) + (fp_text user "${REFERENCE}" (at 0 0) (layer "B.Fab") + (effects (font (size 0.4 0.4) (thickness 0.06)) (justify mirror)) + (tstamp a8c9a130-4f18-48b2-9d11-c941e0b843dc) + ) + (fp_line (start -0.146267 -0.51) (end 0.146267 -0.51) (layer "B.SilkS") (width 0.12) (tstamp 38b594e7-13f4-4930-b373-c35dee81b7a6)) + (fp_line (start -0.146267 0.51) (end 0.146267 0.51) (layer "B.SilkS") (width 0.12) (tstamp 8b88e9eb-a77d-4d4e-a120-76331abc4ab2)) + (fp_line (start 1.65 0.73) (end 1.65 -0.73) (layer "B.CrtYd") (width 0.05) (tstamp 0937e012-7c61-40f5-87b0-a5dca286bc52)) + (fp_line (start -1.65 0.73) (end 1.65 0.73) (layer "B.CrtYd") (width 0.05) (tstamp 12fa227b-ca83-4dad-be48-97ea9056f39e)) + (fp_line (start 1.65 -0.73) (end -1.65 -0.73) (layer "B.CrtYd") (width 0.05) (tstamp 51c73ebb-7cfd-4966-bbcb-a8fc8bd45fbd)) + (fp_line (start -1.65 -0.73) (end -1.65 0.73) (layer "B.CrtYd") (width 0.05) (tstamp c08a26a1-17ab-41cd-909a-fa51dd584754)) + (fp_line (start -0.8 -0.4) (end -0.8 0.4) (layer "B.Fab") (width 0.1) (tstamp 1de64edc-a534-47c2-9491-c07a842b4465)) + (fp_line (start 0.8 0.4) (end 0.8 -0.4) (layer "B.Fab") (width 0.1) (tstamp 9b122f74-4fc8-4568-a167-0456568083b3)) + (fp_line (start 0.8 -0.4) (end -0.8 -0.4) (layer "B.Fab") (width 0.1) (tstamp a76b0945-aeb6-46bb-88f4-3710e0d8e34f)) + (fp_line (start -0.8 0.4) (end 0.8 0.4) (layer "B.Fab") (width 0.1) (tstamp f3b5fbf5-4bda-4b6f-9146-a693517716a8)) + (pad "1" smd roundrect (at -0.8625 0) (size 1.075 0.95) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25) + (net 5 "+3V3") (pintype "passive") (tstamp 71c94cdd-2831-4f97-87ec-2d1889e64c15)) + (pad "2" smd roundrect (at 0.8625 0) (size 1.075 0.95) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25) + (net 2 "GND") (pintype "passive") (tstamp 618c5031-fd7c-4ea0-b777-efe80f06100d)) + (model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Package_TO_SOT_SMD:SOT-223-3_TabPin2" (layer "B.Cu") + (tedit 5A02FF57) (tstamp 7fd7635e-fbc5-4983-8208-06e00751b62a) + (at 133.5278 75.2856 -90) + (descr "module CMS SOT223 4 pins") + (tags "CMS SOT") + (property "Sheetfile" "Canon_manage.kicad_sch") + (property "Sheetname" "") + (path "/9e5de5a9-9057-4f24-8b18-5f41b1ffd187") + (attr smd) + (fp_text reference "U2" (at 0.787 4.6622) (layer "B.SilkS") + (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + (tstamp 56f10faa-ab6d-4166-b71c-a76dea377b44) + ) + (fp_text value "LM1117-3.3" (at 0 -4.5 90) (layer "B.Fab") + (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + (tstamp d0ba4488-34bb-4286-861f-2e55aeba01b8) + ) + (fp_text user "${REFERENCE}" (at 0 0) (layer "B.Fab") + (effects (font (size 0.8 0.8) (thickness 0.12)) (justify mirror)) + (tstamp 472eb50d-d4cf-40aa-bbbd-cf83b7f8c075) + ) + (fp_line (start 1.91 3.41) (end 1.91 2.15) (layer "B.SilkS") (width 0.12) (tstamp 78712515-8af2-4630-8afe-4f29b6ed23c8)) + (fp_line (start -4.1 3.41) (end 1.91 3.41) (layer "B.SilkS") (width 0.12) (tstamp a0982584-3f5f-496c-a265-52d2651baac5)) + (fp_line (start 1.91 -3.41) (end 1.91 -2.15) (layer "B.SilkS") (width 0.12) (tstamp a2da9211-6b44-4a1b-9151-daf17a8ab68e)) + (fp_line (start -1.85 -3.41) (end 1.91 -3.41) (layer "B.SilkS") (width 0.12) (tstamp add4d552-436b-4840-bff3-bd308f25da43)) + (fp_line (start 4.4 3.6) (end -4.4 3.6) (layer "B.CrtYd") (width 0.05) (tstamp 2facf9a6-5e53-4fe3-b7ec-1a3f97bdfe02)) + (fp_line (start 4.4 -3.6) (end 4.4 3.6) (layer "B.CrtYd") (width 0.05) (tstamp 794f438a-53d2-47b6-911e-48ca64ca7db4)) + (fp_line (start -4.4 -3.6) (end 4.4 -3.6) (layer "B.CrtYd") (width 0.05) (tstamp b1196537-dea0-4ce3-a16d-0d58371ff6de)) + (fp_line (start -4.4 3.6) (end -4.4 -3.6) (layer "B.CrtYd") (width 0.05) (tstamp b2fa9a2a-8a2b-4ee5-a1ad-4e212bf90d06)) + (fp_line (start -1.85 -3.35) (end 1.85 -3.35) (layer "B.Fab") (width 0.1) (tstamp 11544442-716a-4455-8a78-2480a551e3f1)) + (fp_line (start -1.85 2.35) (end -0.85 3.35) (layer "B.Fab") (width 0.1) (tstamp 3fe46c8c-333e-4abe-9b8e-888536ec8c5e)) + (fp_line (start -1.85 2.35) (end -1.85 -3.35) (layer "B.Fab") (width 0.1) (tstamp 63e674cb-89a8-4d72-8712-e4241eed0104)) + (fp_line (start 1.85 3.35) (end 1.85 -3.35) (layer "B.Fab") (width 0.1) (tstamp 84ac9a45-1251-4377-aee2-a51a57ef3251)) + (fp_line (start -0.85 3.35) (end 1.85 3.35) (layer "B.Fab") (width 0.1) (tstamp e4d547fa-53ec-4694-a55e-828b5e3484b6)) + (pad "1" smd rect (at -3.15 2.3 270) (size 2 1.5) (layers "B.Cu" "B.Paste" "B.Mask") + (net 2 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 74a84ca9-53b0-473e-95a8-b518f67e767e)) + (pad "2" smd rect (at -3.15 0 270) (size 2 1.5) (layers "B.Cu" "B.Paste" "B.Mask") + (net 5 "+3V3") (pinfunction "VO") (pintype "power_out") (tstamp 7bde6a19-9a3f-4eb7-b230-ec60734b6789)) + (pad "2" smd rect (at 3.15 0 270) (size 2 3.8) (layers "B.Cu" "B.Paste" "B.Mask") + (net 5 "+3V3") (pinfunction "VO") (pintype "power_out") (tstamp d8b75159-fb87-496b-aebc-35719f12316d)) + (pad "3" smd rect (at -3.15 -2.3 270) (size 2 1.5) (layers "B.Cu" "B.Paste" "B.Mask") + (net 4 "/VBUS") (pinfunction "VI") (pintype "power_in") (tstamp ae28d576-61cd-46fa-950b-ba88a4221f0d)) + (model "${KICAD6_3DMODEL_DIR}/Package_TO_SOT_SMD.3dshapes/SOT-223.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Crystal:Crystal_HC49-U_Vertical" (layer "B.Cu") + (tedit 5A1AD3B8) (tstamp 8259c4e2-7198-4a00-9aaf-67a0746854bb) + (at 81.6472 96.6 180) + (descr "Crystal THT HC-49/U http://5hertz.com/pdfs/04404_D.pdf") + (tags "THT crystalHC-49/U") + (property "Sheetfile" "Canon_manage.kicad_sch") + (property "Sheetname" "") + (path "/afdd32fa-80f9-46b7-be8f-c9e80564697b") + (attr through_hole) + (fp_text reference "Y1" (at 2.3738 -3.6538) (layer "B.SilkS") + (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + (tstamp b22d5951-0f5c-4a01-9047-9e033352d1ac) + ) + (fp_text value "8MHz" (at 2.44 -3.525) (layer "B.Fab") + (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + (tstamp 5edc6e6d-9d41-4c47-b707-909121cb8eb4) + ) + (fp_text user "${REFERENCE}" (at 2.44 0) (layer "B.Fab") + (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + (tstamp 13200b5b-d8c7-4c0e-b9c3-a9afa6761a58) + ) + (fp_line (start -0.685 -2.525) (end 5.565 -2.525) (layer "B.SilkS") (width 0.12) (tstamp 644192bd-317a-49e6-91c0-9560e1dc29f9)) + (fp_line (start -0.685 2.525) (end 5.565 2.525) (layer "B.SilkS") (width 0.12) (tstamp 714d6feb-d42b-41cc-9d61-695c013b5237)) + (fp_arc (start -0.685 2.525) (mid -3.21 0) (end -0.685 -2.525) (layer "B.SilkS") (width 0.12) (tstamp 753ad890-945d-4331-a53f-04fd5bc0947c)) + (fp_arc (start 5.565 -2.525) (mid 8.09 0) (end 5.565 2.525) (layer "B.SilkS") (width 0.12) (tstamp c017d81f-b9e0-4599-bca3-d00455304716)) + (fp_line (start 8.4 -2.8) (end 8.4 2.8) (layer "B.CrtYd") (width 0.05) (tstamp 3824e73e-0089-4b4d-bfe2-a3f28a67b05e)) + (fp_line (start -3.5 2.8) (end -3.5 -2.8) (layer "B.CrtYd") (width 0.05) (tstamp 85a0681f-972c-4a0b-bf0d-a84dd39c5941)) + (fp_line (start 8.4 2.8) (end -3.5 2.8) (layer "B.CrtYd") (width 0.05) (tstamp 97010d13-b449-4fa7-a950-9ae01932b6cc)) + (fp_line (start -3.5 -2.8) (end 8.4 -2.8) (layer "B.CrtYd") (width 0.05) (tstamp c49c56fd-676f-42f9-9377-825888ee0df6)) + (fp_line (start -0.685 2.325) (end 5.565 2.325) (layer "B.Fab") (width 0.1) (tstamp 9becb18d-43e6-43ac-9161-ae8993e3910a)) + (fp_line (start -0.56 2) (end 5.44 2) (layer "B.Fab") (width 0.1) (tstamp c1f121cc-7fca-4c4e-a389-8010c895e73f)) + (fp_line (start -0.56 -2) (end 5.44 -2) (layer "B.Fab") (width 0.1) (tstamp ccddaff4-e06b-40bb-99ac-f6ee2abcc541)) + (fp_line (start -0.685 -2.325) (end 5.565 -2.325) (layer "B.Fab") (width 0.1) (tstamp d45c8ca5-74b3-4ee8-bd9e-ae35435cab2e)) + (fp_arc (start -0.685 2.325) (mid -3.01 0) (end -0.685 -2.325) (layer "B.Fab") (width 0.1) (tstamp 3c2b1e83-2ff7-4b96-9065-6cbbcd9e0242)) + (fp_arc (start 5.44 -2) (mid 7.44 0) (end 5.44 2) (layer "B.Fab") (width 0.1) (tstamp 6d3299e3-7c1b-4237-affb-68e60a8ea322)) + (fp_arc (start -0.56 2) (mid -2.56 0) (end -0.56 -2) (layer "B.Fab") (width 0.1) (tstamp 8d26aa72-1fab-4bff-9200-5a56d75741a7)) + (fp_arc (start 5.565 -2.325) (mid 7.89 0) (end 5.565 2.325) (layer "B.Fab") (width 0.1) (tstamp a7cb5e44-e3db-4ad7-abba-6c9e12d7ae97)) + (pad "1" thru_hole circle (at 0 0 180) (size 1.5 1.5) (drill 0.8) (layers *.Cu *.Mask) + (net 1 "/OSC_IN") (pinfunction "1") (pintype "passive") (tstamp 14589d25-6204-4d08-918e-6e9717f0d361)) + (pad "2" thru_hole circle (at 4.88 0 180) (size 1.5 1.5) (drill 0.8) (layers *.Cu *.Mask) + (net 3 "/OSC_OUT") (pinfunction "2") (pintype "passive") (tstamp 54530fcc-96c2-407d-925b-9db815556c58)) + (model "${KICAD6_3DMODEL_DIR}/Crystal.3dshapes/Crystal_HC49-U_Vertical.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" (layer "B.Cu") + (tedit 5F68FEEF) (tstamp 99f19f4a-c9e5-46de-9bbc-3eb58aeea04d) + (at 133.4809 69.3928 180) + (descr "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") + (tags "capacitor handsolder") + (property "Sheetfile" "Canon_manage.kicad_sch") + (property "Sheetname" "") + (path "/2bd94fbe-2228-493f-9a98-9dda0f090f37") + (attr smd) + (fp_text reference "C3" (at 0 1.68) (layer "B.SilkS") + (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + (tstamp 029fceec-fc89-4d68-aa2f-e5b5a5cd8003) + ) + (fp_text value "1u" (at 0 -1.68) (layer "B.Fab") + (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + (tstamp 064ddf98-37d0-49a2-9c26-6146840c3b64) + ) + (fp_text user "${REFERENCE}" (at 0 0) (layer "B.Fab") + (effects (font (size 0.5 0.5) (thickness 0.08)) (justify mirror)) + (tstamp e9d82c4e-6f95-4243-90f5-2977d9df7f23) + ) + (fp_line (start -0.261252 -0.735) (end 0.261252 -0.735) (layer "B.SilkS") (width 0.12) (tstamp 45ddeefa-db0e-464b-ac7f-7774168dd5de)) + (fp_line (start -0.261252 0.735) (end 0.261252 0.735) (layer "B.SilkS") (width 0.12) (tstamp ef9d621e-6f47-4b49-aa4f-5099123789f2)) + (fp_line (start 1.88 0.98) (end 1.88 -0.98) (layer "B.CrtYd") (width 0.05) (tstamp 3149ff5c-de18-4ea8-aefc-85130ad321cf)) + (fp_line (start -1.88 0.98) (end 1.88 0.98) (layer "B.CrtYd") (width 0.05) (tstamp 44d14e79-673f-4bfb-91c8-b5266f1854b9)) + (fp_line (start 1.88 -0.98) (end -1.88 -0.98) (layer "B.CrtYd") (width 0.05) (tstamp 7cdf2067-feac-4d50-81c9-16303edf3a75)) + (fp_line (start -1.88 -0.98) (end -1.88 0.98) (layer "B.CrtYd") (width 0.05) (tstamp f86b59d1-28db-45c3-975b-830d76481bb1)) + (fp_line (start -1 0.625) (end 1 0.625) (layer "B.Fab") (width 0.1) (tstamp 71a214c7-3cff-478a-a233-8f29f81b3a0d)) + (fp_line (start 1 -0.625) (end -1 -0.625) (layer "B.Fab") (width 0.1) (tstamp 795ac8ba-e785-4c91-9e69-21f620d6e361)) + (fp_line (start 1 0.625) (end 1 -0.625) (layer "B.Fab") (width 0.1) (tstamp c5cde55f-6654-4b7b-b1ea-1a1ce7e5f43b)) + (fp_line (start -1 -0.625) (end -1 0.625) (layer "B.Fab") (width 0.1) (tstamp f557bc9f-632b-4f85-9cca-e2fc472f4898)) + (pad "1" smd roundrect (at -1.0375 0 180) (size 1.175 1.45) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.2127659574) + (net 4 "/VBUS") (pintype "passive") (tstamp b644c799-16c2-4fa1-98da-a39631c791f7)) + (pad "2" smd roundrect (at 1.0375 0 180) (size 1.175 1.45) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.2127659574) + (net 2 "GND") (pintype "passive") (tstamp ee3fafc6-da1d-452e-8f45-3132ed3fe03d)) + (model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (layer "B.Cu") + (tedit 5F68FEEF) (tstamp 9ac51a00-6a30-43c3-9ddb-4b525f7ed2da) + (at 82.677 81.6599 90) + (descr "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") + (tags "capacitor handsolder") + (property "Sheetfile" "Canon_manage.kicad_sch") + (property "Sheetname" "") + (path "/67eae42b-90fb-4b31-b425-042b6627da6e") + (attr smd) + (fp_text reference "C4" (at -0.0011 1.7272 180) (layer "B.SilkS") + (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + (tstamp 0e048608-9e0f-48b3-ab82-0496176384a8) + ) + (fp_text value "0.1" (at 0 -1.43 90) (layer "B.Fab") + (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + (tstamp 4c76d1a6-ae9c-403d-80c0-0e66958b0511) + ) + (fp_text user "${REFERENCE}" (at 0 0 90) (layer "B.Fab") + (effects (font (size 0.4 0.4) (thickness 0.06)) (justify mirror)) + (tstamp b09e6459-e45d-4d6d-95bb-7317f1aa5451) + ) + (fp_line (start -0.146267 0.51) (end 0.146267 0.51) (layer "B.SilkS") (width 0.12) (tstamp 662818d2-2f25-4882-9fe8-6beeb79972c9)) + (fp_line (start -0.146267 -0.51) (end 0.146267 -0.51) (layer "B.SilkS") (width 0.12) (tstamp 97655215-548c-4242-b2ed-3ac74acb75f2)) + (fp_line (start 1.65 0.73) (end 1.65 -0.73) (layer "B.CrtYd") (width 0.05) (tstamp 28ff3a24-e1f4-4017-abd5-a64d1c336355)) + (fp_line (start -1.65 0.73) (end 1.65 0.73) (layer "B.CrtYd") (width 0.05) (tstamp 4a4fa3d9-63b9-465b-8b75-1829b3de5fde)) + (fp_line (start 1.65 -0.73) (end -1.65 -0.73) (layer "B.CrtYd") (width 0.05) (tstamp 746fe9c4-0ac8-4499-8ec7-4f13257ae20f)) + (fp_line (start -1.65 -0.73) (end -1.65 0.73) (layer "B.CrtYd") (width 0.05) (tstamp ff37a52e-3daa-4409-a379-198b2e0b239d)) + (fp_line (start 0.8 -0.4) (end -0.8 -0.4) (layer "B.Fab") (width 0.1) (tstamp 14fc05a0-4e2e-4fe1-9f51-e7cc6a67ac19)) + (fp_line (start -0.8 -0.4) (end -0.8 0.4) (layer "B.Fab") (width 0.1) (tstamp 1998e576-5880-44fc-b3e3-2efcd102d7a9)) + (fp_line (start -0.8 0.4) (end 0.8 0.4) (layer "B.Fab") (width 0.1) (tstamp 90c6dd4f-caeb-4bb4-baad-82e8d526fb90)) + (fp_line (start 0.8 0.4) (end 0.8 -0.4) (layer "B.Fab") (width 0.1) (tstamp bafe587f-2d95-4f00-af5a-cbceee0d68ea)) + (pad "1" smd roundrect (at -0.8625 0 90) (size 1.075 0.95) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25) + (net 5 "+3V3") (pintype "passive") (tstamp 6dd23c5f-6fa4-4fc5-b02f-6e8eca880094)) + (pad "2" smd roundrect (at 0.8625 0 90) (size 1.075 0.95) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25) + (net 2 "GND") (pintype "passive") (tstamp 1e6e345d-96c0-4f84-a8de-a00e7b6c758d)) + (model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "B.Cu") + (tedit 5F68FEEE) (tstamp 9e296954-49ab-425a-bfdf-8400b6d72da8) + (at 110.0093 58.4708) + (descr "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") + (tags "resistor handsolder") + (property "Sheetfile" "Canon_manage.kicad_sch") + (property "Sheetname" "") + (path "/0dfec3b5-9ee1-43b4-8ea0-660a4b8bc85e") + (attr smd) + (fp_text reference "R9" (at -0.0019 1.4732) (layer "B.SilkS") + (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + (tstamp 1f7e3c4f-0d18-42b1-91ab-4633064b8e98) + ) + (fp_text value "510" (at 0 -1.43) (layer "B.Fab") + (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + (tstamp 72f4cb7d-c3b2-4ced-9d2d-d4e382f4de88) + ) + (fp_text user "${REFERENCE}" (at 0 0) (layer "B.Fab") + (effects (font (size 0.4 0.4) (thickness 0.06)) (justify mirror)) + (tstamp 0664dcf4-eb55-48c8-b2cc-ce6fbfe65df7) + ) + (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (layer "B.SilkS") (width 0.12) (tstamp 0e1b630c-6dc1-41c7-ae33-db0437b9a3df)) + (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (layer "B.SilkS") (width 0.12) (tstamp 66cf19dc-15cf-4023-afeb-38593bd7d81b)) + (fp_line (start 1.65 -0.73) (end -1.65 -0.73) (layer "B.CrtYd") (width 0.05) (tstamp 28bb6dbd-e47c-4ec8-a852-913661fe3962)) + (fp_line (start -1.65 0.73) (end 1.65 0.73) (layer "B.CrtYd") (width 0.05) (tstamp 483e6ff7-2ab2-43e2-b48d-2e08909ec35a)) + (fp_line (start 1.65 0.73) (end 1.65 -0.73) (layer "B.CrtYd") (width 0.05) (tstamp 8d467152-3256-4fd7-9bb7-104dc453a3eb)) + (fp_line (start -1.65 -0.73) (end -1.65 0.73) (layer "B.CrtYd") (width 0.05) (tstamp cf30813f-3859-4a5a-b010-49d3430daed9)) + (fp_line (start -0.8 0.4125) (end 0.8 0.4125) (layer "B.Fab") (width 0.1) (tstamp 00ef5fb8-6614-4b4b-8628-a528fde4fb0b)) + (fp_line (start -0.8 -0.4125) (end -0.8 0.4125) (layer "B.Fab") (width 0.1) (tstamp 1704d060-1ae5-4728-a462-572098d9d3df)) + (fp_line (start 0.8 0.4125) (end 0.8 -0.4125) (layer "B.Fab") (width 0.1) (tstamp 316d31eb-4eaf-4ecc-9757-ad3adbdddfce)) + (fp_line (start 0.8 -0.4125) (end -0.8 -0.4125) (layer "B.Fab") (width 0.1) (tstamp f03bcd33-710a-47e5-a4fa-78d7d5185637)) + (pad "1" smd roundrect (at -0.9125 0) (size 0.975 0.95) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25) + (net 15 "Net-(J37-PadA5)") (pintype "passive") (tstamp de5ec7bf-1421-4367-9112-ff83a36dae69)) + (pad "2" smd roundrect (at 0.9125 0) (size 0.975 0.95) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25) + (net 2 "GND") (pintype "passive") (tstamp d4232010-80d5-48ba-9cfe-1c0e700af00e)) + (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (layer "B.Cu") + (tedit 5F68FEEF) (tstamp a456d919-dd27-46f5-bf0b-49fe5e47642d) + (at 83.6179 91.1606) + (descr "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") + (tags "capacitor handsolder") + (property "Sheetfile" "Canon_manage.kicad_sch") + (property "Sheetname" "") + (path "/3515863a-5d5e-40b7-88e1-292875733a09") + (attr smd) + (fp_text reference "C6" (at 0 1.43) (layer "B.SilkS") + (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + (tstamp 8bc98a3c-7eb2-4856-a477-f420e7c7719b) + ) + (fp_text value "0.1" (at 0 -1.43) (layer "B.Fab") + (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + (tstamp 6102884c-97a8-4a2f-ad74-8ae355901c7a) + ) + (fp_text user "${REFERENCE}" (at 0 0) (layer "B.Fab") + (effects (font (size 0.4 0.4) (thickness 0.06)) (justify mirror)) + (tstamp 7e7c5732-4c83-4bf8-a964-812488f4832e) + ) + (fp_line (start -0.146267 0.51) (end 0.146267 0.51) (layer "B.SilkS") (width 0.12) (tstamp 4aca91b7-1739-4fc6-89b4-ebceaad58dd8)) + (fp_line (start -0.146267 -0.51) (end 0.146267 -0.51) (layer "B.SilkS") (width 0.12) (tstamp 6cf3afe5-6283-486e-a090-284487d192d3)) + (fp_line (start 1.65 0.73) (end 1.65 -0.73) (layer "B.CrtYd") (width 0.05) (tstamp 0e9794ed-3e6b-4870-b975-74947671b709)) + (fp_line (start 1.65 -0.73) (end -1.65 -0.73) (layer "B.CrtYd") (width 0.05) (tstamp 19d02915-1c65-4a81-a035-7c907d457533)) + (fp_line (start -1.65 -0.73) (end -1.65 0.73) (layer "B.CrtYd") (width 0.05) (tstamp a3e9f8a1-a446-49db-bb65-184c20167cbf)) + (fp_line (start -1.65 0.73) (end 1.65 0.73) (layer "B.CrtYd") (width 0.05) (tstamp f791a4a3-daa6-4a2a-a56a-ed2db4d85bd1)) + (fp_line (start 0.8 -0.4) (end -0.8 -0.4) (layer "B.Fab") (width 0.1) (tstamp 0b8b3ab2-4781-493a-9e49-3d32f2550c3b)) + (fp_line (start -0.8 0.4) (end 0.8 0.4) (layer "B.Fab") (width 0.1) (tstamp 10365fe9-54a4-4c73-ae86-ae2d70d28f89)) + (fp_line (start -0.8 -0.4) (end -0.8 0.4) (layer "B.Fab") (width 0.1) (tstamp 5768670f-340f-4170-bdd5-67b2a168c359)) + (fp_line (start 0.8 0.4) (end 0.8 -0.4) (layer "B.Fab") (width 0.1) (tstamp aa583eb3-938e-4824-be53-7100d22e6293)) + (pad "1" smd roundrect (at -0.8625 0) (size 1.075 0.95) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25) + (net 5 "+3V3") (pintype "passive") (tstamp 3b10486a-51fc-4b2b-8b7c-13cb43b40d63)) + (pad "2" smd roundrect (at 0.8625 0) (size 1.075 0.95) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25) + (net 2 "GND") (pintype "passive") (tstamp a7aa9375-da93-49f4-aaa5-7f60db517d9e)) + (model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (layer "B.Cu") + (tedit 5F68FEEF) (tstamp c303bc3d-3202-4729-8a1d-a571ed0d45b8) + (at 134.4433 81.2038) + (descr "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") + (tags "capacitor handsolder") + (property "Sheetfile" "Canon_manage.kicad_sch") + (property "Sheetname" "") + (path "/fa43fae7-8849-4384-9c67-967abf4b3ed9") + (attr smd) + (fp_text reference "C7" (at 2.6913 -0.0762) (layer "B.SilkS") + (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + (tstamp ebe2459d-f49f-46f7-8d12-b2c99ca5913a) + ) + (fp_text value "0.1" (at 0 -1.43) (layer "B.Fab") + (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + (tstamp 55cf91e9-075c-4373-82ec-6fcb6c853d50) + ) + (fp_text user "${REFERENCE}" (at 0 0) (layer "B.Fab") + (effects (font (size 0.4 0.4) (thickness 0.06)) (justify mirror)) + (tstamp 9e96e133-ed13-404c-8aa6-1ba956436bfb) + ) + (fp_line (start -0.146267 -0.51) (end 0.146267 -0.51) (layer "B.SilkS") (width 0.12) (tstamp 25c63ac1-1089-4dcf-a261-2711ee466233)) + (fp_line (start -0.146267 0.51) (end 0.146267 0.51) (layer "B.SilkS") (width 0.12) (tstamp acec5c8c-dce7-4fca-94bc-85d4ee0482ad)) + (fp_line (start 1.65 0.73) (end 1.65 -0.73) (layer "B.CrtYd") (width 0.05) (tstamp 950c8b31-c689-4718-a5b3-2bb34a7a3525)) + (fp_line (start -1.65 0.73) (end 1.65 0.73) (layer "B.CrtYd") (width 0.05) (tstamp c43fc7fe-65fd-4c89-9935-af6a29231f68)) + (fp_line (start -1.65 -0.73) (end -1.65 0.73) (layer "B.CrtYd") (width 0.05) (tstamp de8c5f1c-9f4a-4ab4-93ae-fa0cbfdbd1b2)) + (fp_line (start 1.65 -0.73) (end -1.65 -0.73) (layer "B.CrtYd") (width 0.05) (tstamp ec996d17-4925-41c8-802a-89483d718b63)) + (fp_line (start -0.8 -0.4) (end -0.8 0.4) (layer "B.Fab") (width 0.1) (tstamp 262b23dd-20ef-48aa-a3ca-02221effe76a)) + (fp_line (start 0.8 -0.4) (end -0.8 -0.4) (layer "B.Fab") (width 0.1) (tstamp 4c99eb95-2ccb-4096-a5aa-b36a301747a0)) + (fp_line (start -0.8 0.4) (end 0.8 0.4) (layer "B.Fab") (width 0.1) (tstamp 67507ca4-c17a-417e-8864-fd5c6ab9cf1d)) + (fp_line (start 0.8 0.4) (end 0.8 -0.4) (layer "B.Fab") (width 0.1) (tstamp c8bf716e-8f2a-4c23-b2c7-becc2f6c6372)) + (pad "1" smd roundrect (at -0.8625 0) (size 1.075 0.95) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25) + (net 5 "+3V3") (pintype "passive") (tstamp 03c6fa14-3375-4c04-aa4b-744b9ac37443)) + (pad "2" smd roundrect (at 0.8625 0) (size 1.075 0.95) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25) + (net 2 "GND") (pintype "passive") (tstamp bc8aafc0-5885-4e76-97d4-11487671c061)) + (model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Capacitor_Tantalum_SMD:CP_EIA-6032-28_Kemet-C_Pad2.25x2.35mm_HandSolder" (layer "B.Cu") + (tedit 5EBA9318) (tstamp d2871ecb-03a6-4374-9ee6-1c3ae4ca4207) + (at 136.1086 84.6582) + (descr "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") + (tags "capacitor tantalum") + (property "Sheetfile" "Canon_manage.kicad_sch") + (property "Sheetname" "") + (path "/6bdc4a6d-32b7-493b-a89e-1ce991d959b7") + (attr smd) + (fp_text reference "C9" (at -0.1678 2.54) (layer "B.SilkS") + (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + (tstamp 2d6b0b51-2661-4961-8527-68c82b57e19a) + ) + (fp_text value "47u" (at 0 -2.55) (layer "B.Fab") + (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + (tstamp 57132181-06d5-4c95-8bb1-15e81de9c2ab) + ) + (fp_text user "${REFERENCE}" (at 0 0) (layer "B.Fab") + (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + (tstamp 1c79e32d-669d-4c27-9827-e4e6012cc5e4) + ) + (fp_line (start 3 1.71) (end -3.935 1.71) (layer "B.SilkS") (width 0.12) (tstamp 21224baa-fa9f-4456-a7e6-fff3b7473ca4)) + (fp_line (start -3.935 1.71) (end -3.935 -1.71) (layer "B.SilkS") (width 0.12) (tstamp 369dac38-b84f-47bb-86ee-90a4b67d691b)) + (fp_line (start -3.935 -1.71) (end 3 -1.71) (layer "B.SilkS") (width 0.12) (tstamp 3aa28eba-5e40-4d35-bb0e-2f5db915e064)) + (fp_line (start -3.92 -1.85) (end -3.92 1.85) (layer "B.CrtYd") (width 0.05) (tstamp 08144d05-1019-4516-83e0-a475769fe310)) + (fp_line (start 3.92 1.85) (end 3.92 -1.85) (layer "B.CrtYd") (width 0.05) (tstamp 29538fd5-c56a-4069-8079-81b6de0e3f5a)) + (fp_line (start 3.92 -1.85) (end -3.92 -1.85) (layer "B.CrtYd") (width 0.05) (tstamp 4fdcd51c-e747-4eda-baf4-f3636c7be7ab)) + (fp_line (start -3.92 1.85) (end 3.92 1.85) (layer "B.CrtYd") (width 0.05) (tstamp a3727d94-803f-4548-b969-7b11e0ec84cf)) + (fp_line (start 3 1.6) (end -2.2 1.6) (layer "B.Fab") (width 0.1) (tstamp 04418bee-1c06-49f9-9cd8-a69a167016e0)) + (fp_line (start -3 0.8) (end -3 -1.6) (layer "B.Fab") (width 0.1) (tstamp 0ebaaa9b-6752-4661-9391-8ef6f9aebf07)) + (fp_line (start -3 -1.6) (end 3 -1.6) (layer "B.Fab") (width 0.1) (tstamp 55010e49-91e7-4175-8a41-30fcc04c311a)) + (fp_line (start 3 -1.6) (end 3 1.6) (layer "B.Fab") (width 0.1) (tstamp b998ced6-58a8-45a6-b4a1-048380e19f19)) + (fp_line (start -2.2 1.6) (end -3 0.8) (layer "B.Fab") (width 0.1) (tstamp f61e2f03-43ed-4551-b003-22da6d5a7386)) + (pad "1" smd roundrect (at -2.55 0) (size 2.25 2.35) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.1111111111) + (net 5 "+3V3") (pintype "passive") (tstamp c99f83f6-2112-48ab-a569-e2cf667a0fc8)) + (pad "2" smd roundrect (at 2.55 0) (size 2.25 2.35) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.1111111111) + (net 2 "GND") (pintype "passive") (tstamp c8f45a7a-549d-46cf-b792-a3e2819814ed)) + (model "${KICAD6_3DMODEL_DIR}/Capacitor_Tantalum_SMD.3dshapes/CP_EIA-6032-28_Kemet-C.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Package_QFP:LQFP-48_7x7mm_P0.5mm" (layer "B.Cu") + (tedit 5D9F72AF) (tstamp d8367bc4-2add-4183-bc61-3af938535568) + (at 78.0875 86.69 90) + (descr "LQFP, 48 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/ltc2358-16.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py") + (tags "LQFP QFP") + (property "Sheetfile" "Canon_manage.kicad_sch") + (property "Sheetname" "") + (path "/a7aad451-d177-4036-941b-7ff8e9fd7d3a") + (attr smd) + (fp_text reference "U1" (at -0.0002 6.1389 180) (layer "B.SilkS") + (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + (tstamp ac0dc865-decf-47b8-a19e-34065f2704b5) + ) + (fp_text value "STM32F103C6Tx" (at 0 -5.85 90) (layer "B.Fab") + (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + (tstamp e4d7869e-de61-40f1-9125-f5a2888280a6) + ) + (fp_text user "${REFERENCE}" (at 0 0 90) (layer "B.Fab") + (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + (tstamp 626997e4-2857-426c-bdf6-d497aacd3fbd) + ) + (fp_line (start 3.16 3.61) (end 3.61 3.61) (layer "B.SilkS") (width 0.12) (tstamp 103cfdf8-aa0f-47c9-8604-d4e4d33de685)) + (fp_line (start 3.61 -3.61) (end 3.61 -3.16) (layer "B.SilkS") (width 0.12) (tstamp 42f39772-e686-4248-b94c-281a19d9d138)) + (fp_line (start -3.16 3.61) (end -3.61 3.61) (layer "B.SilkS") (width 0.12) (tstamp 549e2df2-e70f-43b3-b213-48043128045d)) + (fp_line (start -3.61 3.61) (end -3.61 3.16) (layer "B.SilkS") (width 0.12) (tstamp 5c5819a9-8407-47c1-8560-36afc8afcc4a)) + (fp_line (start -3.61 -3.61) (end -3.61 -3.16) (layer "B.SilkS") (width 0.12) (tstamp 9658f9fc-2f44-4fd7-966f-355c133bd86a)) + (fp_line (start 3.16 -3.61) (end 3.61 -3.61) (layer "B.SilkS") (width 0.12) (tstamp 9d815a77-02cd-4935-a3b0-27fee1c67231)) + (fp_line (start -3.16 -3.61) (end -3.61 -3.61) (layer "B.SilkS") (width 0.12) (tstamp ab74b7d2-c8af-49c6-9d93-e37f08b26641)) + (fp_line (start -3.61 3.16) (end -4.9 3.16) (layer "B.SilkS") (width 0.12) (tstamp f810daf3-a57d-4086-a741-b2d592b782f3)) + (fp_line (start 3.61 3.61) (end 3.61 3.16) (layer "B.SilkS") (width 0.12) (tstamp ff650e28-67da-43bb-8ee8-54856aa4a099)) + (fp_line (start -3.75 3.15) (end -5.15 3.15) (layer "B.CrtYd") (width 0.05) (tstamp 04986bd2-1941-40b2-a398-0ba195d095be)) + (fp_line (start -5.15 -3.15) (end -5.15 0) (layer "B.CrtYd") (width 0.05) (tstamp 073f1c0d-9f1a-45e5-8acc-e9cdd1151acf)) + (fp_line (start 3.75 3.15) (end 5.15 3.15) (layer "B.CrtYd") (width 0.05) (tstamp 08217ecc-ad48-4a7c-8ae2-feb20fef17c8)) + (fp_line (start -5.15 3.15) (end -5.15 0) (layer "B.CrtYd") (width 0.05) (tstamp 0b300de8-4947-45e0-8487-7eda9b849c1b)) + (fp_line (start 3.15 3.75) (end 3.75 3.75) (layer "B.CrtYd") (width 0.05) (tstamp 10b09174-7a5d-46f8-87c4-91df6dfd1bb4)) + (fp_line (start 3.75 -3.75) (end 3.75 -3.15) (layer "B.CrtYd") (width 0.05) (tstamp 1b1d3502-9d19-4028-a63b-3e7868dff383)) + (fp_line (start 3.15 -5.15) (end 3.15 -3.75) (layer "B.CrtYd") (width 0.05) (tstamp 20460c7d-1aaf-43e5-9f95-657a66275648)) + (fp_line (start 3.15 5.15) (end 3.15 3.75) (layer "B.CrtYd") (width 0.05) (tstamp 25292d90-2797-47f6-9932-941cd56c2768)) + (fp_line (start -3.75 -3.75) (end -3.75 -3.15) (layer "B.CrtYd") (width 0.05) (tstamp 2c10b508-8eb5-4881-b868-ca3c88d7b812)) + (fp_line (start 0 -5.15) (end 3.15 -5.15) (layer "B.CrtYd") (width 0.05) (tstamp 2d3ddfc4-4a3b-4805-8e38-c2e20cd23cfd)) + (fp_line (start -3.15 -3.75) (end -3.75 -3.75) (layer "B.CrtYd") (width 0.05) (tstamp 47e27940-d5fe-4942-b4eb-747ac62f5c11)) + (fp_line (start 3.75 -3.15) (end 5.15 -3.15) (layer "B.CrtYd") (width 0.05) (tstamp 5e3e76c1-016d-4da0-91dd-d15503d5ec5e)) + (fp_line (start 5.15 -3.15) (end 5.15 0) (layer "B.CrtYd") (width 0.05) (tstamp 628640db-1940-4b50-a309-e9060c0e4db2)) + (fp_line (start 0 -5.15) (end -3.15 -5.15) (layer "B.CrtYd") (width 0.05) (tstamp 65a206c9-1120-4991-ab92-39495ea6ec51)) + (fp_line (start 3.75 3.75) (end 3.75 3.15) (layer "B.CrtYd") (width 0.05) (tstamp 6947f186-dbf9-40b6-98b4-016d1b5b1287)) + (fp_line (start -3.15 5.15) (end -3.15 3.75) (layer "B.CrtYd") (width 0.05) (tstamp 6d7757b0-fa8e-4575-9135-c253c9cef459)) + (fp_line (start -3.75 3.75) (end -3.75 3.15) (layer "B.CrtYd") (width 0.05) (tstamp 9da8e771-ba08-4ce7-b574-6dddf5022242)) + (fp_line (start 0 5.15) (end 3.15 5.15) (layer "B.CrtYd") (width 0.05) (tstamp afc287c3-7f68-4220-ae96-53954d4a3fa4)) + (fp_line (start -3.15 3.75) (end -3.75 3.75) (layer "B.CrtYd") (width 0.05) (tstamp b53edd70-9d98-4095-95a1-5a5bdceffe0b)) + (fp_line (start 5.15 3.15) (end 5.15 0) (layer "B.CrtYd") (width 0.05) (tstamp c66856de-45d6-4f37-942c-4a033bcd1be3)) + (fp_line (start 3.15 -3.75) (end 3.75 -3.75) (layer "B.CrtYd") (width 0.05) (tstamp e31dd91d-fa12-46e0-9b09-289405f49285)) + (fp_line (start -3.15 -5.15) (end -3.15 -3.75) (layer "B.CrtYd") (width 0.05) (tstamp eccab478-aef2-497f-8d2f-a30765f0346b)) + (fp_line (start -3.75 -3.15) (end -5.15 -3.15) (layer "B.CrtYd") (width 0.05) (tstamp f621946e-4ae1-4bda-bbd4-e0fa78f7d7df)) + (fp_line (start 0 5.15) (end -3.15 5.15) (layer "B.CrtYd") (width 0.05) (tstamp fe5146f1-b827-4eb7-850f-0ff5e2b30265)) + (fp_line (start -2.5 3.5) (end 3.5 3.5) (layer "B.Fab") (width 0.1) (tstamp 327c5a83-c9c4-4560-970d-31cd3b38a91d)) + (fp_line (start -3.5 2.5) (end -2.5 3.5) (layer "B.Fab") (width 0.1) (tstamp 5f6ef638-7604-4253-8469-2e61d7c820fc)) + (fp_line (start -3.5 -3.5) (end -3.5 2.5) (layer "B.Fab") (width 0.1) (tstamp 72628551-28bb-4126-985c-aa00e54b2960)) + (fp_line (start 3.5 -3.5) (end -3.5 -3.5) (layer "B.Fab") (width 0.1) (tstamp d8015f4a-c3dd-4f25-8a84-4260607a046f)) + (fp_line (start 3.5 3.5) (end 3.5 -3.5) (layer "B.Fab") (width 0.1) (tstamp f986a5bd-f302-46a3-a5a2-2be8c26f95b3)) + (pad "1" smd roundrect (at -4.1625 2.75 90) (size 1.475 0.3) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25) + (net 5 "+3V3") (pinfunction "VBAT") (pintype "power_in") (tstamp 095e0fc4-640d-4f6e-aeec-4b326499b126)) + (pad "2" smd roundrect (at -4.1625 2.25 90) (size 1.475 0.3) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25) + (net 23 "unconnected-(U1-Pad2)") (pinfunction "PC13") (pintype "bidirectional+no_connect") (tstamp 228b1b43-ee95-4ba8-9128-40e760019f92)) + (pad "3" smd roundrect (at -4.1625 1.75 90) (size 1.475 0.3) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25) + (net 24 "unconnected-(U1-Pad3)") (pinfunction "PC14") (pintype "bidirectional+no_connect") (tstamp 8d4a75a8-9e59-4d56-8f46-c37d7af81fe8)) + (pad "4" smd roundrect (at -4.1625 1.25 90) (size 1.475 0.3) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25) + (net 25 "unconnected-(U1-Pad4)") (pinfunction "PC15") (pintype "bidirectional+no_connect") (tstamp 27de662e-23db-456c-b32c-3ae51c6dd663)) + (pad "5" smd roundrect (at -4.1625 0.75 90) (size 1.475 0.3) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25) + (net 1 "/OSC_IN") (pinfunction "PD0") (pintype "input") (tstamp 3b3e0237-bc85-4a7f-afd7-e1e5bbd15871)) + (pad "6" smd roundrect (at -4.1625 0.25 90) (size 1.475 0.3) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25) + (net 3 "/OSC_OUT") (pinfunction "PD1") (pintype "input") (tstamp 7d2cc09c-07c4-4402-8d54-0d3e732526f8)) + (pad "7" smd roundrect (at -4.1625 -0.25 90) (size 1.475 0.3) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25) + (net 13 "/NRST") (pinfunction "NRST") (pintype "input") (tstamp 331e952b-4f2c-4f31-930d-865e9d657082)) + (pad "8" smd roundrect (at -4.1625 -0.75 90) (size 1.475 0.3) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25) + (net 2 "GND") (pinfunction "VSSA") (pintype "power_in") (tstamp af85dbbd-f081-48e4-8f11-7a55836cdb99)) + (pad "9" smd roundrect (at -4.1625 -1.25 90) (size 1.475 0.3) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25) + (net 5 "+3V3") (pinfunction "VDDA") (pintype "power_in") (tstamp e4c42cfa-656a-4189-ba87-2f7bc66e3ac2)) + (pad "10" smd roundrect (at -4.1625 -1.75 90) (size 1.475 0.3) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25) + (net 28 "unconnected-(U1-Pad10)") (pinfunction "PA0") (pintype "bidirectional+no_connect") (tstamp 132a7f08-cb53-4a9f-9486-d4f9726b530f)) + (pad "11" smd roundrect (at -4.1625 -2.25 90) (size 1.475 0.3) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25) + (net 29 "unconnected-(U1-Pad11)") (pinfunction "PA1") (pintype "bidirectional+no_connect") (tstamp d964b8da-479e-4c40-8738-39c972cfe9b0)) + (pad "12" smd roundrect (at -4.1625 -2.75 90) (size 1.475 0.3) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25) + (net 30 "unconnected-(U1-Pad12)") (pinfunction "PA2") (pintype "bidirectional+no_connect") (tstamp 377d7ca1-d7a2-4a46-ac73-032017487063)) + (pad "13" smd roundrect (at -2.75 -4.1625 90) (size 0.3 1.475) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25) + (net 31 "unconnected-(U1-Pad13)") (pinfunction "PA3") (pintype "bidirectional+no_connect") (tstamp 1333b4d6-deb8-4c4a-876b-d5e972d4d368)) + (pad "14" smd roundrect (at -2.25 -4.1625 90) (size 0.3 1.475) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25) + (net 6 "/L_DETECT") (pinfunction "PA4") (pintype "bidirectional") (tstamp 33d8a8b9-e488-455c-8d94-effef4b364fa)) + (pad "15" smd roundrect (at -1.75 -4.1625 90) (size 0.3 1.475) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25) + (net 7 "/SPI_SCK") (pinfunction "PA5") (pintype "bidirectional") (tstamp 19d43a45-30d1-4168-893a-d7b3f329a382)) + (pad "16" smd roundrect (at -1.25 -4.1625 90) (size 0.3 1.475) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25) + (net 8 "/SPI_MISO") (pinfunction "PA6") (pintype "bidirectional") (tstamp 34d8a5d2-22f2-4fac-9894-71cf771f9384)) + (pad "17" smd roundrect (at -0.75 -4.1625 90) (size 0.3 1.475) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25) + (net 9 "/SPI_MOSI") (pinfunction "PA7") (pintype "bidirectional") (tstamp b0bfa4d1-3e49-4514-8e30-b7a3524e09df)) + (pad "18" smd roundrect (at -0.25 -4.1625 90) (size 0.3 1.475) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25) + (net 32 "unconnected-(U1-Pad18)") (pinfunction "PB0") (pintype "bidirectional+no_connect") (tstamp 2fdd04d3-5445-41bf-b746-a96b9f7edaed)) + (pad "19" smd roundrect (at 0.25 -4.1625 90) (size 0.3 1.475) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25) + (net 33 "unconnected-(U1-Pad19)") (pinfunction "PB1") (pintype "bidirectional+no_connect") (tstamp 74350ad8-157f-4861-9d59-d5f4dc56f901)) + (pad "20" smd roundrect (at 0.75 -4.1625 90) (size 0.3 1.475) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25) + (net 34 "unconnected-(U1-Pad20)") (pinfunction "PB2") (pintype "bidirectional+no_connect") (tstamp ff73f6a2-035a-4313-8ac3-5ea60df397c7)) + (pad "21" smd roundrect (at 1.25 -4.1625 90) (size 0.3 1.475) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25) + (net 35 "unconnected-(U1-Pad21)") (pinfunction "PB10") (pintype "bidirectional+no_connect") (tstamp 14a6a3ee-78a8-465b-b801-93ce4ab4edc8)) + (pad "22" smd roundrect (at 1.75 -4.1625 90) (size 0.3 1.475) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25) + (net 36 "unconnected-(U1-Pad22)") (pinfunction "PB11") (pintype "bidirectional+no_connect") (tstamp 4fad1312-a0f5-4675-aa90-6eeb2e35d4a6)) + (pad "23" smd roundrect (at 2.25 -4.1625 90) (size 0.3 1.475) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25) + (net 2 "GND") (pinfunction "VSS") (pintype "power_in") (tstamp 24e12604-2d30-4b4c-b8db-de2937e6d209)) + (pad "24" smd roundrect (at 2.75 -4.1625 90) (size 0.3 1.475) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25) + (net 5 "+3V3") (pinfunction "VDD") (pintype "power_in") (tstamp b65191be-5c5d-4403-8fc4-360bfba8b633)) + (pad "25" smd roundrect (at 4.1625 -2.75 90) (size 1.475 0.3) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25) + (net 37 "unconnected-(U1-Pad25)") (pinfunction "PB12") (pintype "bidirectional+no_connect") (tstamp 88ffacdf-bbb6-457c-b9cb-d9fc209c369b)) + (pad "26" smd roundrect (at 4.1625 -2.25 90) (size 1.475 0.3) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25) + (net 38 "unconnected-(U1-Pad26)") (pinfunction "PB13") (pintype "bidirectional+no_connect") (tstamp 483a40e3-7371-4b2f-ba6d-e8e898f17e65)) + (pad "27" smd roundrect (at 4.1625 -1.75 90) (size 1.475 0.3) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25) + (net 39 "unconnected-(U1-Pad27)") (pinfunction "PB14") (pintype "bidirectional+no_connect") (tstamp 63ed9f34-41df-45e3-a0cc-ce752585ab02)) + (pad "28" smd roundrect (at 4.1625 -1.25 90) (size 1.475 0.3) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25) + (net 40 "unconnected-(U1-Pad28)") (pinfunction "PB15") (pintype "bidirectional+no_connect") (tstamp d442bea4-b254-48ba-8fca-858778ccac8b)) + (pad "29" smd roundrect (at 4.1625 -0.75 90) (size 1.475 0.3) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25) + (net 41 "unconnected-(U1-Pad29)") (pinfunction "PA8") (pintype "bidirectional+no_connect") (tstamp e78b8903-d0ea-4537-8486-cb7cebf9bf14)) + (pad "30" smd roundrect (at 4.1625 -0.25 90) (size 1.475 0.3) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25) + (net 42 "unconnected-(U1-Pad30)") (pinfunction "PA9") (pintype "bidirectional+no_connect") (tstamp 9f4e7766-7510-4a1e-a4d1-ad3e2c900256)) + (pad "31" smd roundrect (at 4.1625 0.25 90) (size 1.475 0.3) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25) + (net 43 "unconnected-(U1-Pad31)") (pinfunction "PA10") (pintype "bidirectional+no_connect") (tstamp fdcb7598-7a1a-4110-a81f-16b44e6c0191)) + (pad "32" smd roundrect (at 4.1625 0.75 90) (size 1.475 0.3) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25) + (net 26 "/USBDM") (pinfunction "PA11") (pintype "bidirectional") (tstamp 8988e169-841e-4067-a4b6-7a8436e3d118)) + (pad "33" smd roundrect (at 4.1625 1.25 90) (size 1.475 0.3) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25) + (net 27 "/USBDP") (pinfunction "PA12") (pintype "bidirectional") (tstamp 872a1969-48f8-4bfa-94b3-c889314a0c94)) + (pad "34" smd roundrect (at 4.1625 1.75 90) (size 1.475 0.3) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25) + (net 11 "/SWDIO") (pinfunction "PA13") (pintype "bidirectional") (tstamp eff458cc-ea2f-45d0-a353-d3be113fbbff)) + (pad "35" smd roundrect (at 4.1625 2.25 90) (size 1.475 0.3) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25) + (net 2 "GND") (pinfunction "VSS") (pintype "power_in") (tstamp 85d8bce5-f712-439f-85ea-bfc3cdf71cec)) + (pad "36" smd roundrect (at 4.1625 2.75 90) (size 1.475 0.3) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25) + (net 5 "+3V3") (pinfunction "VDD") (pintype "power_in") (tstamp 33037291-1822-4099-9780-9a589d1031ab)) + (pad "37" smd roundrect (at 2.75 4.1625 90) (size 0.3 1.475) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25) + (net 10 "/SWCLK") (pinfunction "PA14") (pintype "bidirectional") (tstamp fcd897bd-2754-4cab-bdac-800e87f42d73)) + (pad "38" smd roundrect (at 2.25 4.1625 90) (size 0.3 1.475) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25) + (net 44 "unconnected-(U1-Pad38)") (pinfunction "PA15") (pintype "bidirectional+no_connect") (tstamp 593e0f12-1abc-4b7b-ae15-b0661643d39d)) + (pad "39" smd roundrect (at 1.75 4.1625 90) (size 0.3 1.475) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25) + (net 45 "unconnected-(U1-Pad39)") (pinfunction "PB3") (pintype "bidirectional+no_connect") (tstamp 89a60cbc-9a5f-4237-88f9-912ef5caa482)) + (pad "40" smd roundrect (at 1.25 4.1625 90) (size 0.3 1.475) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25) + (net 46 "unconnected-(U1-Pad40)") (pinfunction "PB4") (pintype "bidirectional+no_connect") (tstamp 60111673-2cc4-4854-9673-9bf9069dd27d)) + (pad "41" smd roundrect (at 0.75 4.1625 90) (size 0.3 1.475) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25) + (net 47 "unconnected-(U1-Pad41)") (pinfunction "PB5") (pintype "bidirectional+no_connect") (tstamp 0cde4911-d7d2-4d84-8ffd-168a648c18f2)) + (pad "42" smd roundrect (at 0.25 4.1625 90) (size 0.3 1.475) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25) + (net 48 "unconnected-(U1-Pad42)") (pinfunction "PB6") (pintype "bidirectional+no_connect") (tstamp e4e25370-3c34-4ef3-8545-dd7a3b7fb728)) + (pad "43" smd roundrect (at -0.25 4.1625 90) (size 0.3 1.475) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25) + (net 49 "unconnected-(U1-Pad43)") (pinfunction "PB7") (pintype "bidirectional+no_connect") (tstamp e66417a4-e4e2-427f-8541-eb58282cd3d1)) + (pad "44" smd roundrect (at -0.75 4.1625 90) (size 0.3 1.475) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25) + (net 12 "/BOOT0") (pinfunction "BOOT0") (pintype "input") (tstamp 69a2080a-af5a-4334-9c9a-dd7b7133010a)) + (pad "45" smd roundrect (at -1.25 4.1625 90) (size 0.3 1.475) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25) + (net 50 "unconnected-(U1-Pad45)") (pinfunction "PB8") (pintype "bidirectional+no_connect") (tstamp e1bfd3a0-3e19-465a-9b87-17b92f4be917)) + (pad "46" smd roundrect (at -1.75 4.1625 90) (size 0.3 1.475) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25) + (net 14 "unconnected-(U1-Pad46)") (pinfunction "PB9") (pintype "bidirectional+no_connect") (tstamp eee69472-0f5e-4f75-876b-1cd592d5b64d)) + (pad "47" smd roundrect (at -2.25 4.1625 90) (size 0.3 1.475) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25) + (net 2 "GND") (pinfunction "VSS") (pintype "power_in") (tstamp 4ad1adf4-1f75-4efc-b877-1d70d3faa703)) + (pad "48" smd roundrect (at -2.75 4.1625 90) (size 0.3 1.475) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25) + (net 5 "+3V3") (pinfunction "VDD") (pintype "power_in") (tstamp a260a70e-c9d1-422b-98d1-131e5ade0373)) + (model "${KICAD6_3DMODEL_DIR}/Package_QFP.3dshapes/LQFP-48_7x7mm_P0.5mm.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (gr_line (start 117.9354 52.0531) (end 115.39843 51.291047) (layer "Dwgs.User") (width 0.2) (tstamp 00350e51-3a6b-40f2-a874-fd1085eac871)) + (gr_line (start 89.5202 63.2166) (end 86.0531 63.2166) (layer "Dwgs.User") (width 0.2) (tstamp 00581d2a-a383-4987-b8f1-0f80e4a5cf9a)) + (gr_line (start 78.77975 109.899163) (end 77.68007 109.6456) (layer "Dwgs.User") (width 0.2) (tstamp 005a3cd0-f932-4103-a178-80f97766d6eb)) + (gr_line (start 121.5721 120.38603) (end 124.70163 118.69517) (layer "Dwgs.User") (width 0.2) (tstamp 01819c35-fe7d-43bc-ad9a-095439bd277b)) + (gr_line (start 106.2648 61.7779) (end 106.2648 64.4844) (layer "Dwgs.User") (width 0.2) (tstamp 0193a258-fa00-46fa-ad10-c810afb71c79)) + (gr_line (start 86.0531 110.6598) (end 86.0531 107.1927) (layer "Dwgs.User") (width 0.2) (tstamp 020ec526-9a76-4cb1-b7e1-f4530d1a4821)) + (gr_line (start 115.3985 51.291) (end 114.891382 50.360816) (layer "Dwgs.User") (width 0.2) (tstamp 035fe88a-393a-442e-a398-6ef3f0338242)) + (gr_line (start 125.040584 68.205102) (end 125.2087 68.7136) (layer "Dwgs.User") (width 0.2) (tstamp 036e2ba7-827c-4435-89e4-503b05163f68)) + (gr_line (start 83.0076 59.8335) (end 83.0076 60.5942) (layer "Dwgs.User") (width 0.2) (tstamp 043f3938-be03-47ab-8270-a318964e655d)) + (gr_line (start 125.8853 114.12834) (end 125.8853 110.6598) (layer "Dwgs.User") (width 0.2) (tstamp 04bffedb-c8d1-46b1-b2af-393ccaf585f4)) + (gr_line (start 101.78345 48.669959) (end 105.4201 48.4164) (layer "Dwgs.User") (width 0.2) (tstamp 0594a352-ae5a-4c59-be2e-d1f41238c1f7)) + (gr_line (start 75.90378 108.29231) (end 74.21292 105.6699) (layer "Dwgs.User") (width 0.2) (tstamp 05c4e507-fe7c-4c1d-a500-c152443ac00b)) + (gr_line (start 114.0452 49.6002) (end 113.03096 49.093078) (layer "Dwgs.User") (width 0.2) (tstamp 07e89718-bd5c-42c1-a5d8-b78efacc65ff)) + (gr_line (start 125.1247 105.5859) (end 125.208764 105.162845) (layer "Dwgs.User") (width 0.2) (tstamp 0808ff0e-7524-44a1-ad3e-cce3dc35481d)) + (gr_line (start 104.40441 123.769126) (end 100.8532 123.430124) (layer "Dwgs.User") (width 0.2) (tstamp 08262b62-0246-4c73-8345-3a8afe5166c4)) + (gr_line (start 128.507742 58.31072) (end 128.9308 59.4104) (layer "Dwgs.User") (width 0.2) (tstamp 094d9772-3595-4321-adf0-ff714e9efca9)) + (gr_line (start 114.891382 50.360816) (end 115.3985 51.291) (layer "Dwgs.User") (width 0.2) (tstamp 099917ca-091a-4e29-a216-d5f794e499b3)) + (gr_line (start 142.7994 88.5023) (end 142.7994 85.0351) (layer "Dwgs.User") (width 0.2) (tstamp 0a83f709-ef66-47d4-a3fa-9de701b28e53)) + (gr_line (start 133.0746 63.9773) (end 132.3125 63.9773) (layer "Dwgs.User") (width 0.2) (tstamp 0a84b9fa-f2f2-4267-8e4f-9ade834a503a)) + (gr_line (start 77.34245 64.4003) (end 76.412273 64.991482) (layer "Dwgs.User") (width 0.2) (tstamp 0aa6c714-a212-4782-a2a6-48c7bb090ecc)) + (gr_line (start 80.133 64.0613) (end 79.625882 63.977237) (layer "Dwgs.User") (width 0.2) (tstamp 0aa9a8c3-8a04-4d97-855a-3576ab0922c7)) + (gr_line (start 78.44075 63.9773) (end 79.6259 63.9773) (layer "Dwgs.User") (width 0.2) (tstamp 0b4171de-de41-4c18-90df-e3bfa739b5c5)) + (gr_line (start 97.38468 50.023218) (end 98.2308 49.3466) (layer "Dwgs.User") (width 0.2) (tstamp 0bf62142-6c65-4f2a-b8d2-17d9ebc47778)) + (gr_line (start 131.2983 63.9773) (end 130.368116 63.638298) (layer "Dwgs.User") (width 0.2) (tstamp 0c4d64cc-27a4-4ad6-b637-d5c4c94151e6)) + (gr_line (start 84.615758 117.002938) (end 84.0232 116.49582) (layer "Dwgs.User") (width 0.2) (tstamp 0cb71717-a43d-4854-b375-9e93610ba8db)) + (gr_line (start 104.4899 64.9075) (end 101.698 64.9075) (layer "Dwgs.User") (width 0.2) (tstamp 0d2e8ce3-6c1c-4ede-bfe7-0be205b0da41)) + (gr_line (start 87.7439 67.698) (end 87.152722 67.867506) (layer "Dwgs.User") (width 0.2) (tstamp 0fee5d6f-d21b-4c58-98a7-306397dd0507)) + (gr_line (start 90.7039 120.55553) (end 94.00293 121.82333) (layer "Dwgs.User") (width 0.2) (tstamp 128d3ac3-5756-4afc-85fc-00261b29b7ed)) + (gr_line (start 128.930832 60.594182) (end 128.8454 61.1013) (layer "Dwgs.User") (width 0.2) (tstamp 13028842-5a21-474a-9741-ba2dec3f6069)) + (gr_line (start 121.149 53.4063) (end 117.9354 52.05306) (layer "Dwgs.User") (width 0.2) (tstamp 13ad36ed-63d6-4c25-a743-6062b6834518)) + (gr_line (start 99.5 65.5) (end 96.7081 65.5) (layer "Dwgs.User") (width 0.2) (tstamp 14f387ec-dbe9-408a-bcdc-724552cf35c2)) + (gr_line (start 81.06312 63.807822) (end 81.9933 63.3007) (layer "Dwgs.User") (width 0.2) (tstamp 154b151f-92fb-4f44-bb51-2e48b4fd6eeb)) + (gr_line (start 107.957 123.769126) (end 111.42416 123.430123) (layer "Dwgs.User") (width 0.2) (tstamp 15d7deb9-3dea-42d8-9e29-99b6c9ec08c1)) + (gr_line (start 71.08338 74.97129) (end 72.43662 71.7577) (layer "Dwgs.User") (width 0.2) (tstamp 1627ffb5-7a71-409a-925b-571cfe8c8138)) + (gr_line (start 129.098982 62.031444) (end 129.6061 62.963) (layer "Dwgs.User") (width 0.2) (tstamp 16e79516-8b34-42f3-a9eb-f450b9047c14)) + (gr_line (start 69.476592 81.82156) (end 70.06915 78.3544) (layer "Dwgs.User") (width 0.2) (tstamp 17688423-9a2d-4744-81cf-576548b850d7)) + (gr_line (start 129.6061 62.963) (end 129.098982 62.031444) (layer "Dwgs.User") (width 0.2) (tstamp 17743675-ad1c-4a55-b609-0947d103b09c)) + (gr_line (start 125.8853 110.6598) (end 122.3341 110.6598) (layer "Dwgs.User") (width 0.2) (tstamp 17e9e03d-bc1f-4b54-9583-97fd40cf95e5)) + (gr_line (start 75.90378 108.2923) (end 76.665837 109.138413) (layer "Dwgs.User") (width 0.2) (tstamp 1815d3af-80fb-4e97-8dd8-0e704d2e3700)) + (gr_line (start 111.9313 68.121) (end 111.9313 65.3305) (layer "Dwgs.User") (width 0.2) (tstamp 18d4b973-7732-4878-b7bd-4f47f5923dab)) + (gr_line (start 114.8913 122.66944) (end 118.27439 121.65382) (layer "Dwgs.User") (width 0.2) (tstamp 18e6ca85-1136-4115-b635-79f074332a90)) + (gr_line (start 72.52207 102.54174) (end 71.25289 99.2427) (layer "Dwgs.User") (width 0.2) (tstamp 1a1348b6-e1b9-463c-b164-56bd3726bff3)) + (gr_line (start 97.3006 66.2607) (end 94.5942 66.2607) (layer "Dwgs.User") (width 0.2) (tstamp 1a2879a1-11b4-4934-9614-68fd99acddc8)) + (gr_line (start 75.90378 65.5841) (end 74.04342 68.54414) (layer "Dwgs.User") (width 0.2) (tstamp 1a50e7d4-ab9b-483b-9477-f4732fbab697)) + (gr_line (start 74.04342 68.5441) (end 72.43662 71.7577) (layer "Dwgs.User") (width 0.2) (tstamp 1ba1406c-868e-4fc9-92f2-ba566beefdca)) + (gr_line (start 107.957 123.769126) (end 104.4044 123.769126) (layer "Dwgs.User") (width 0.2) (tstamp 1baac583-3bc9-4de7-b09e-2bd2e3f3ac75)) + (gr_line (start 132.3125 63.9773) (end 133.0746 63.9773) (layer "Dwgs.User") (width 0.2) (tstamp 1d5de781-3cb3-40d0-adfd-a017f5b51a48)) + (gr_line (start 86.8137 55.4362) (end 84.61572 56.8735) (layer "Dwgs.User") (width 0.2) (tstamp 1e47333b-a6fc-4c73-be94-730dfad9f128)) + (gr_line (start 86.0531 63.2166) (end 89.5202 63.2166) (layer "Dwgs.User") (width 0.2) (tstamp 1f4f2031-9557-4d85-b345-085ffae11404)) + (gr_line (start 83.0076 60.5942) (end 83.0076 61.6098) (layer "Dwgs.User") (width 0.2) (tstamp 1f5b4918-3d71-444f-9969-94846053eca9)) + (gr_line (start 82.5859 110.6598) (end 86.0531 110.6598) (layer "Dwgs.User") (width 0.2) (tstamp 200b031b-5ce4-455b-b4ef-21a4b240d5b2)) + (gr_line (start 79.625882 63.977237) (end 80.133 64.0613) (layer "Dwgs.User") (width 0.2) (tstamp 228d7b6a-af97-49e8-9e72-7c97161b6e35)) + (gr_line (start 137.89495 105.33226) (end 136.0346 108.2923) (layer "Dwgs.User") (width 0.2) (tstamp 2307e2d3-1a4a-4183-acc1-acd716af5c9b)) + (gr_line (start 142.7994 85.0351) (end 142.376342 81.48389) (layer "Dwgs.User") (width 0.2) (tstamp 231cda34-f547-438c-b6e9-2e210a36ac64)) + (gr_line (start 129.9451 110.5757) (end 130.875277 110.068582) (layer "Dwgs.User") (width 0.2) (tstamp 23ce28a5-5e6a-481e-9e18-1d5fc2d2bb19)) + (gr_line (start 128.9308 112.2666) (end 128.9308 113.2822) (layer "Dwgs.User") (width 0.2) (tstamp 2458848b-6ff4-4b57-abf5-de63890851b3)) + (gr_line (start 86.7297 68.7136) (end 86.7297 105.1628) (layer "Dwgs.User") (width 0.2) (tstamp 248adc1a-5f70-4898-a4be-d710d5b56d10)) + (gr_line (start 124.1945 67.698) (end 87.7439 67.698) (layer "Dwgs.User") (width 0.2) (tstamp 251ad82c-57f3-4355-ba14-ae803aaa20ee)) + (gr_line (start 83.00762 112.85914) (end 82.8395 111.8449) (layer "Dwgs.User") (width 0.2) (tstamp 253e85de-3160-4fe3-bfbc-48e940caaf94)) + (gr_line (start 71.25289 99.2427) (end 72.52207 102.54174) (layer "Dwgs.User") (width 0.2) (tstamp 2767bf74-8f31-438e-86df-df46c654515c)) + (gr_line (start 132.3125 109.8991) (end 131.8054 109.8991) (layer "Dwgs.User") (width 0.2) (tstamp 27bc53d9-0b0d-4bce-ae24-505f55d4dd9e)) + (gr_line (start 103.9814 61.8634) (end 103.9814 64.5698) (layer "Dwgs.User") (width 0.2) (tstamp 27dcedf6-49a0-497c-b172-81af502eb562)) + (gr_line (start 82.5859 62.54) (end 81.993342 63.300678) (layer "Dwgs.User") (width 0.2) (tstamp 27f2a0e7-f798-43c3-a83a-4e39fcb265af)) + (gr_line (start 109.6479 62.1169) (end 109.6479 64.8234) (layer "Dwgs.User") (width 0.2) (tstamp 280309e2-9b26-4600-adf7-43af4d832582)) + (gr_line (start 90.70393 120.55553) (end 87.5744 118.86329) (layer "Dwgs.User") (width 0.2) (tstamp 29317cea-04d5-40f9-b570-d6271c7cd109)) + (gr_line (start 74.21292 105.6699) (end 75.90378 108.29231) (layer "Dwgs.User") (width 0.2) (tstamp 2978da01-42d1-446b-add3-9469bb80504c)) + (gr_line (start 114.045176 49.600129) (end 114.8913 50.3608) (layer "Dwgs.User") (width 0.2) (tstamp 29dd8402-257b-4f13-a333-fc4969fcdeab)) + (gr_line (start 83.007561 59.83354) (end 83.2625 58.6498) (layer "Dwgs.User") (width 0.2) (tstamp 2a4119bb-e511-4c9b-8560-36d263ecb8e4)) + (gr_line (start 71.08339 74.9713) (end 70.06915 78.35439) (layer "Dwgs.User") (width 0.2) (tstamp 2afad281-5293-4663-88c2-9df2bf9e1e75)) + (gr_line (start 142.376342 81.48389) (end 142.7994 85.0351) (layer "Dwgs.User") (width 0.2) (tstamp 2b38115f-85b0-4f17-8f27-e0a14a8bbac9)) + (gr_line (start 83.76968 57.719624) (end 84.6158 56.8735) (layer "Dwgs.User") (width 0.2) (tstamp 2c39f554-7824-4901-ba62-625ab37c3b57)) + (gr_line (start 128.5078 58.3108) (end 127.915249 57.380623) (layer "Dwgs.User") (width 0.2) (tstamp 2caf5da4-8268-4bf6-8018-4d79e2cfd946)) + (gr_line (start 128.9308 59.4104) (end 128.9308 60.5942) (layer "Dwgs.User") (width 0.2) (tstamp 2ce34a61-12e3-4fbc-9bbe-5e2ee6c6a499)) + (gr_line (start 87.3209 106.093) (end 87.743958 106.178439) (layer "Dwgs.User") (width 0.2) (tstamp 2cfe1f9a-8657-44cd-8870-bcd5ad21fd2c)) + (gr_line (start 75.903782 65.584054) (end 76.41228 64.9915) (layer "Dwgs.User") (width 0.2) (tstamp 2ded0913-ec92-4484-b028-e1a1e8550594)) + (gr_line (start 83.0076 60.5942) (end 83.0076 59.8335) (layer "Dwgs.User") (width 0.2) (tstamp 2fca1878-ed3b-4181-96b4-e762c2d1910f)) + (gr_line (start 124.701622 106.008897) (end 124.1945 106.1784) (layer "Dwgs.User") (width 0.2) (tstamp 3079f7ad-ff66-4fe5-99ff-b0c77f2c65a9)) + (gr_line (start 111.9313 62.624) (end 111.9313 65.3305) (layer "Dwgs.User") (width 0.2) (tstamp 30ed7790-92ec-49e6-92f8-095f6570183c)) + (gr_line (start 100.85323 123.430122) (end 97.3847 122.83894) (layer "Dwgs.User") (width 0.2) (tstamp 3369746e-c4b6-433d-8157-2691657e7a53)) + (gr_line (start 142.7994 85.0351) (end 142.7994 88.5023) (layer "Dwgs.User") (width 0.2) (tstamp 33f80464-2810-42a2-b528-bbb3b4df3048)) + (gr_line (start 97.3006 66.2607) (end 97.3006 69.0512) (layer "Dwgs.User") (width 0.2) (tstamp 346b3bd8-5a6d-4a48-87d6-e36f3e917ff6)) + (gr_line (start 84.0232 116.49582) (end 84.615758 117.002938) (layer "Dwgs.User") (width 0.2) (tstamp 34b05237-de27-4513-84da-aa67c72b33d9)) + (gr_line (start 99.33048 49.007623) (end 101.7834 48.67) (layer "Dwgs.User") (width 0.2) (tstamp 34ddbecc-aec5-4fe4-9581-4a448c366a89)) + (gr_line (start 125.8853 66.6838) (end 125.8853 63.2166) (layer "Dwgs.User") (width 0.2) (tstamp 3698335c-d063-4496-b005-489f575e202e)) + (gr_line (start 111.9313 65.3305) (end 111.9313 68.121) (layer "Dwgs.User") (width 0.2) (tstamp 370cb4b4-6fb8-4abe-9648-30d6d1a1fffc)) + (gr_line (start 83.0076 61.6098) (end 83.0076 60.5942) (layer "Dwgs.User") (width 0.2) (tstamp 381be438-1eea-4774-85a8-19e769df3b2d)) + (gr_line (start 94.00293 121.82333) (end 90.7039 120.55553) (layer "Dwgs.User") (width 0.2) (tstamp 38d5c3bc-229a-48e9-9b9b-12b25b3672af)) + (gr_line (start 105.42005 48.416394) (end 109.0567 48.5859) (layer "Dwgs.User") (width 0.2) (tstamp 390d5c4a-f39f-4a03-9ba9-60f123a37920)) + (gr_line (start 106.2648 64.4844) (end 103.4743 64.4844) (layer "Dwgs.User") (width 0.2) (tstamp 394ae02d-89fc-4952-90b4-afad0492a751)) + (gr_line (start 83.0076 114.46596) (end 83.346598 115.56564) (layer "Dwgs.User") (width 0.2) (tstamp 39b70c0c-b077-468e-8c62-32562e9870be)) + (gr_line (start 129.3525 63.2166) (end 125.8853 63.2166) (layer "Dwgs.User") (width 0.2) (tstamp 3a5a69f0-8cec-4169-b984-d2a353fd9040)) + (gr_line (start 81.57028 110.322155) (end 80.6401 109.8991) (layer "Dwgs.User") (width 0.2) (tstamp 3a87d48c-789b-46b0-91f5-f27090a2a417)) + (gr_line (start 129.3525 111.3364) (end 129.945054 110.575719) (layer "Dwgs.User") (width 0.2) (tstamp 3b61165d-aacb-4ccf-9aa0-29ebe9d283e4)) + (gr_line (start 130.368116 63.638298) (end 131.2983 63.9773) (layer "Dwgs.User") (width 0.2) (tstamp 3c3f9db3-6e45-4d0f-88cc-5630db630b1d)) + (gr_line (start 128.930839 114.12834) (end 128.6759 115.22664) (layer "Dwgs.User") (width 0.2) (tstamp 3c6c5560-b238-4432-9448-61f0b853760b)) + (gr_line (start 69.138971 85.37409) (end 69.47659 81.8215) (layer "Dwgs.User") (width 0.2) (tstamp 3cf79594-43bb-42f8-a5b9-7403ac90b309)) + (gr_line (start 125.8853 110.6598) (end 125.8853 107.1927) (layer "Dwgs.User") (width 0.2) (tstamp 3de7b307-1505-4d2d-a3d6-f3a11b6bed4e)) + (gr_line (start 99.5 68.2905) (end 99.5 65.5) (layer "Dwgs.User") (width 0.2) (tstamp 3e0d7481-f4f9-439d-a3f7-fb9dc4d85370)) + (gr_line (start 96.7081 50.9534) (end 96.53998 51.291023) (layer "Dwgs.User") (width 0.2) (tstamp 3eccd0e8-9f72-4297-851c-fa3ff485e595)) + (gr_line (start 81.993342 63.300678) (end 82.5859 62.54) (layer "Dwgs.User") (width 0.2) (tstamp 3efc8677-5d36-41af-acc0-4229b28ffcbf)) + (gr_line (start 97.38472 122.83894) (end 94.003 121.82333) (layer "Dwgs.User") (width 0.2) (tstamp 3efdfc91-9b66-4b7d-a644-10d375fe4c12)) + (gr_line (start 70.06915 78.35439) (end 71.08339 74.9713) (layer "Dwgs.User") (width 0.2) (tstamp 3f357c21-5dd5-42bb-8a1c-d0332377e8f6)) + (gr_line (start 137.7255 68.2051) (end 136.03464 65.58407) (layer "Dwgs.User") (width 0.2) (tstamp 4188dad4-c1e5-4d59-849f-9188f713b274)) + (gr_line (start 117.9354 52.05306) (end 121.149 53.4063) (layer "Dwgs.User") (width 0.2) (tstamp 41dd4341-7f66-4ac0-a5da-f5beac40f053)) + (gr_line (start 83.0076 112.8592) (end 83.0076 113.2822) (layer "Dwgs.User") (width 0.2) (tstamp 430d8710-e940-46d5-9ffd-1f6051519e70)) + (gr_line (start 115.39843 51.291047) (end 117.9354 52.0531) (layer "Dwgs.User") (width 0.2) (tstamp 43457f48-daa6-4278-87c8-a8883b8f3822)) + (gr_line (start 80.133023 64.061359) (end 81.0632 63.8078) (layer "Dwgs.User") (width 0.2) (tstamp 436e0b52-f4b2-4c11-be03-3adfe1473057)) + (gr_line (start 128.9308 113.2822) (end 128.9308 112.2666) (layer "Dwgs.User") (width 0.2) (tstamp 437d652f-3e62-4997-99da-62dc77800091)) + (gr_line (start 129.3525 110.6598) (end 125.8853 110.6598) (layer "Dwgs.User") (width 0.2) (tstamp 43f6827c-e468-471d-a82e-bd4abdf454f4)) + (gr_line (start 109.6479 67.6139) (end 109.6479 64.8234) (layer "Dwgs.User") (width 0.2) (tstamp 4479ddb8-8a35-43e0-85b4-f4f69f0b266d)) + (gr_line (start 131.2983 63.9773) (end 132.3125 63.9773) (layer "Dwgs.User") (width 0.2) (tstamp 44a2df93-aca7-4517-904f-75ed71d6e5e1)) + (gr_line (start 125.0406 68.2051) (end 124.617535 67.783421) (layer "Dwgs.User") (width 0.2) (tstamp 44fef1f5-c1e6-4e28-a05d-7e7ba40a3133)) + (gr_line (start 103.4743 64.4844) (end 106.2648 64.4844) (layer "Dwgs.User") (width 0.2) (tstamp 4697a77f-86df-411c-a337-1cb7c6065990)) + (gr_line (start 116.8371 66.0912) (end 114.0452 66.0912) (layer "Dwgs.User") (width 0.2) (tstamp 46e8e956-b68c-4216-9594-79a4281542f5)) + (gr_line (start 101.698 64.9075) (end 104.4899 64.9075) (layer "Dwgs.User") (width 0.2) (tstamp 46e97ce7-bdb0-4ee1-8521-90bea3d4f82a)) + (gr_line (start 109.6479 64.8234) (end 112.4384 64.8234) (layer "Dwgs.User") (width 0.2) (tstamp 487137ae-1b20-43f4-b696-ff527aa12d19)) + (gr_line (start 132.3125 109.8991) (end 133.4976 109.8991) (layer "Dwgs.User") (width 0.2) (tstamp 48da4907-ceff-45d8-ac77-356634a7cd9c)) + (gr_line (start 89.85787 53.74393) (end 93.1569 52.3907) (layer "Dwgs.User") (width 0.2) (tstamp 492c0ca1-4e13-41d3-8bb2-11ea7f9b12b5)) + (gr_line (start 140.85504 98.90515) (end 139.5018 102.2028) (layer "Dwgs.User") (width 0.2) (tstamp 4a2bbd25-bad8-4deb-99a2-79a50685b6de)) + (gr_line (start 129.606047 62.963062) (end 130.3681 63.6383) (layer "Dwgs.User") (width 0.2) (tstamp 4a5a26fc-4b4b-4bdb-86b2-298c2420113e)) + (gr_line (start 106.9414 64.8234) (end 109.6479 64.8234) (layer "Dwgs.User") (width 0.2) (tstamp 4b217f00-c25f-42a0-b30b-c4e1678823c7)) + (gr_line (start 87.7439 67.698) (end 124.1945 67.698) (layer "Dwgs.User") (width 0.2) (tstamp 4b244eb5-fd11-4c58-9ec1-c3923f662f42)) + (gr_line (start 135.526177 108.884875) (end 134.596 109.5615) (layer "Dwgs.User") (width 0.2) (tstamp 4b57bd2a-5fc9-4ec8-bf89-caf7f8c9c575)) + (gr_line (start 109.6479 64.8234) (end 109.6479 67.6139) (layer "Dwgs.User") (width 0.2) (tstamp 4b7f0470-d0f4-4d89-a89e-ee6b0162e73c)) + (gr_line (start 83.0076 61.6098) (end 82.585921 62.539977) (layer "Dwgs.User") (width 0.2) (tstamp 4cec9263-ea2e-44d0-a394-b8606d64a0dc)) + (gr_line (start 118.27439 121.65382) (end 114.8913 122.66944) (layer "Dwgs.User") (width 0.2) (tstamp 4cfc6b4a-6ac5-4c55-8db3-4aa7e03fa021)) + (gr_line (start 101.698 62.201) (end 101.698 64.9075) (layer "Dwgs.User") (width 0.2) (tstamp 4e5aef81-c095-42fa-aa11-5a0d0b370a0a)) + (gr_line (start 89.8578 53.7439) (end 86.81371 55.43614) (layer "Dwgs.User") (width 0.2) (tstamp 4e750acd-dade-4b21-b793-34d3c2fbcf23)) + (gr_line (start 103.9814 67.3604) (end 103.9814 64.5698) (layer "Dwgs.User") (width 0.2) (tstamp 4f0b3b09-2331-4834-8f28-468aee4c21b6)) + (gr_line (start 83.7696 57.7196) (end 83.262482 58.649777) (layer "Dwgs.User") (width 0.2) (tstamp 4f2372e8-f764-4def-9123-cee65ae6cf07)) + (gr_line (start 74.04342 68.54414) (end 75.90378 65.5841) (layer "Dwgs.User") (width 0.2) (tstamp 4f792c4a-5aaf-47d0-8c82-5ee0e09181a2)) + (gr_line (start 130.3681 63.6383) (end 129.606047 62.963062) (layer "Dwgs.User") (width 0.2) (tstamp 4f9b60c1-8c75-4dee-8afe-907cb153bdf6)) + (gr_line (start 86.0531 110.6598) (end 82.5859 110.6598) (layer "Dwgs.User") (width 0.2) (tstamp 50b70f5f-cf22-4fd1-b6b3-3a1eae065144)) + (gr_line (start 133.07456 63.977237) (end 134.2583 64.2308) (layer "Dwgs.User") (width 0.2) (tstamp 515c7085-7288-49a6-99f5-7895fedd7319)) + (gr_line (start 111.9313 65.3305) (end 109.1408 65.3305) (layer "Dwgs.User") (width 0.2) (tstamp 5258c75d-22de-4d30-a0a0-a048d610ffef)) + (gr_line (start 111.42416 123.430123) (end 107.957 123.769126) (layer "Dwgs.User") (width 0.2) (tstamp 52d118f2-8946-4fb7-86f9-34c2090f0441)) + (gr_line (start 103.9814 64.5698) (end 106.6879 64.5698) (layer "Dwgs.User") (width 0.2) (tstamp 532905b0-8bc3-4c7b-9466-e0f50f1d3ee7)) + (gr_line (start 100.8532 123.430124) (end 104.40441 123.769126) (layer "Dwgs.User") (width 0.2) (tstamp 53b68f3a-2ff7-45f1-9b52-22448ab9ea88)) + (gr_line (start 77.68008 109.645618) (end 76.66584 109.1385) (layer "Dwgs.User") (width 0.2) (tstamp 551b4df8-d907-49a3-97c5-38ea76c8094c)) + (gr_line (start 139.3323 71.3346) (end 137.72551 68.20507) (layer "Dwgs.User") (width 0.2) (tstamp 55e7c5c1-844d-48be-af47-29a0901d0b47)) + (gr_line (start 86.0531 107.1927) (end 86.0531 110.6598) (layer "Dwgs.User") (width 0.2) (tstamp 56a4a2e2-9fa1-442e-9212-f1c56393c648)) + (gr_line (start 72.43662 71.7577) (end 74.04342 68.5441) (layer "Dwgs.User") (width 0.2) (tstamp 58195a60-87b5-4ae6-9f11-bbddec884f96)) + (gr_line (start 69.138971 85.3741) (end 69.138971 88.9253) (layer "Dwgs.User") (width 0.2) (tstamp 5900df5c-ee14-4caf-886d-04c720f397ee)) + (gr_line (start 139.50179 102.20277) (end 137.895 105.3323) (layer "Dwgs.User") (width 0.2) (tstamp 5a1d65a1-5d41-47f5-8429-803774c70ac5)) + (gr_line (start 83.0076 113.2822) (end 83.0076 112.8592) (layer "Dwgs.User") (width 0.2) (tstamp 5a7c4c31-c3be-4fb3-a168-2451af9dae56)) + (gr_line (start 100.0912 66.2607) (end 97.3006 66.2607) (layer "Dwgs.User") (width 0.2) (tstamp 5b3df742-5e0b-4574-9e82-4a1f12a1f6c5)) + (gr_line (start 82.8395 111.8449) (end 83.00762 112.85914) (layer "Dwgs.User") (width 0.2) (tstamp 5b493c52-928f-492a-a7e7-ff5b6a1f58aa)) + (gr_line (start 84.6158 117.00294) (end 87.57445 118.86329) (layer "Dwgs.User") (width 0.2) (tstamp 5d660b56-fcb0-4305-826f-95a9ffa69004)) + (gr_line (start 134.596 109.5615) (end 135.526177 108.884875) (layer "Dwgs.User") (width 0.2) (tstamp 5de5fb1e-1b49-4f5b-8b47-a1380e627207)) + (gr_line (start 125.8853 110.6598) (end 129.3525 110.6598) (layer "Dwgs.User") (width 0.2) (tstamp 5f75cb1b-df34-476a-8b3d-62aa8fda2c6f)) + (gr_line (start 142.461818 92.05484) (end 141.7852 95.522) (layer "Dwgs.User") (width 0.2) (tstamp 604da423-980c-4652-abb3-49bbbb6b67f0)) + (gr_line (start 83.346598 115.56564) (end 83.0076 114.46596) (layer "Dwgs.User") (width 0.2) (tstamp 60ce5f28-fa2b-4de6-b6b4-1a557d4f236d)) + (gr_line (start 97.3847 122.83894) (end 100.85323 123.430122) (layer "Dwgs.User") (width 0.2) (tstamp 60de63d0-5a75-4c4c-86dc-715377a16987)) + (gr_line (start 87.5744 118.86329) (end 90.70393 120.55553) (layer "Dwgs.User") (width 0.2) (tstamp 61316a7b-1500-440b-a9c2-561d335eac96)) + (gr_line (start 128.1688 116.24226) (end 128.675911 115.22664) (layer "Dwgs.User") (width 0.2) (tstamp 62b21dc5-f030-4e08-9499-1575bb3848ff)) + (gr_line (start 102.2065 65.5) (end 99.5 65.5) (layer "Dwgs.User") (width 0.2) (tstamp 62b56e06-3466-42d9-86a8-3a5c0739af5b)) + (gr_line (start 127.324 56.8735) (end 124.36396 55.01315) (layer "Dwgs.User") (width 0.2) (tstamp 6499fddb-8606-4b5e-90f3-a67fc86f70fc)) + (gr_line (start 69.47659 92.39246) (end 69.138971 88.9253) (layer "Dwgs.User") (width 0.2) (tstamp 66ff695b-4d10-4caa-b31e-f81e4dac4265)) + (gr_line (start 128.845341 61.101323) (end 129.0989 62.0315) (layer "Dwgs.User") (width 0.2) (tstamp 675addbe-0a30-4eb9-9ace-718bcd036efa)) + (gr_line (start 86.8992 105.7554) (end 87.320883 106.093026) (layer "Dwgs.User") (width 0.2) (tstamp 67af9549-02ce-4e6c-8498-8666bb88c5c6)) + (gr_line (start 109.6479 64.8234) (end 106.9414 64.8234) (layer "Dwgs.User") (width 0.2) (tstamp 6878827b-9a4a-4640-9497-b23c8ba37010)) + (gr_line (start 128.8454 61.1013) (end 128.930832 60.594182) (layer "Dwgs.User") (width 0.2) (tstamp 699f2dda-7723-4968-812b-2d2b04097594)) + (gr_line (start 125.208764 105.162845) (end 125.1247 105.5859) (layer "Dwgs.User") (width 0.2) (tstamp 69ac8780-59c3-4a05-a127-1bc571fda25b)) + (gr_line (start 129.0989 62.0315) (end 128.845341 61.101323) (layer "Dwgs.User") (width 0.2) (tstamp 6a30ac09-a434-46e9-92aa-a446d6d55c96)) + (gr_line (start 131.8054 109.8991) (end 132.3125 109.8991) (layer "Dwgs.User") (width 0.2) (tstamp 6ab2f042-44be-43d5-b9f2-dce3471bf48f)) + (gr_line (start 140.855 98.9051) (end 141.785177 95.52201) (layer "Dwgs.User") (width 0.2) (tstamp 6ab7bcdd-8f0b-4070-b194-552089e1486b)) + (gr_line (start 111.3401 66.0912) (end 114.0452 66.0912) (layer "Dwgs.User") (width 0.2) (tstamp 6c2fbfc3-527c-4014-a155-552168ee90d9)) + (gr_line (start 83.3466 115.56564) (end 84.023221 116.495817) (layer "Dwgs.User") (width 0.2) (tstamp 6d4a004b-0843-4cd9-8009-d49163e3f99c)) + (gr_line (start 86.0531 110.6598) (end 89.5202 110.6598) (layer "Dwgs.User") (width 0.2) (tstamp 70831a40-7cb4-4aa1-94fc-f3dcbd32bd21)) + (gr_line (start 82.839418 111.844953) (end 82.3323 110.9134) (layer "Dwgs.User") (width 0.2) (tstamp 708e4b3e-58b8-4ec4-9d27-353373e3f8b4)) + (gr_line (start 74.21292 105.66995) (end 72.52206 102.5418) (layer "Dwgs.User") (width 0.2) (tstamp 70f1ebec-a765-4d59-9454-6c183dd495fa)) + (gr_line (start 114.0452 63.3007) (end 114.0452 66.0912) (layer "Dwgs.User") (width 0.2) (tstamp 70f98389-e46f-4920-bcf0-23452a6f5818)) + (gr_line (start 127.9152 57.3806) (end 127.324015 56.873478) (layer "Dwgs.User") (width 0.2) (tstamp 710bc189-a8c2-41fb-8893-56db95281e96)) + (gr_line (start 83.0076 114.46596) (end 83.0076 113.2822) (layer "Dwgs.User") (width 0.2) (tstamp 73c7b8d8-8dbe-4c73-9641-be07a7416893)) + (gr_line (start 130.8752 110.0686) (end 131.805377 109.899104) (layer "Dwgs.User") (width 0.2) (tstamp 7496cb73-7cc6-4714-bd2d-58ed5d9851f6)) + (gr_line (start 97.3006 66.2607) (end 100.0912 66.2607) (layer "Dwgs.User") (width 0.2) (tstamp 750a8abf-294a-4732-b729-64c38f8fb2fc)) + (gr_line (start 139.5018 102.2028) (end 140.85504 98.90515) (layer "Dwgs.User") (width 0.2) (tstamp 766a27ab-a388-4e9a-8bd9-7562c0bf8640)) + (gr_line (start 106.6879 64.5698) (end 103.9814 64.5698) (layer "Dwgs.User") (width 0.2) (tstamp 77105f2a-6870-4bdc-8cff-1a82f623ad82)) + (gr_line (start 86.0531 63.2166) (end 86.0531 66.6838) (layer "Dwgs.User") (width 0.2) (tstamp 77786d2a-137e-4aae-b831-78351075eefe)) + (gr_line (start 103.9814 64.5698) (end 103.9814 67.3604) (layer "Dwgs.User") (width 0.2) (tstamp 78430504-367d-4613-aece-ea63de15e328)) + (gr_line (start 106.2648 64.4844) (end 106.2648 67.2749) (layer "Dwgs.User") (width 0.2) (tstamp 79245bf2-c7b4-4272-b325-144fe45d0a33)) + (gr_line (start 134.258323 64.230882) (end 135.1885 64.738) (layer "Dwgs.User") (width 0.2) (tstamp 79ff7933-9fc9-47dc-b5db-5607466f58e6)) + (gr_line (start 86.0531 63.2166) (end 86.0531 59.7481) (layer "Dwgs.User") (width 0.2) (tstamp 7b229d98-6a99-4a53-b2f0-7a9ed62955ed)) + (gr_line (start 86.813702 68.290558) (end 87.1527 67.8675) (layer "Dwgs.User") (width 0.2) (tstamp 7b4f3f56-41a7-4131-a044-a2869ae32c35)) + (gr_line (start 81.0632 63.8078) (end 80.133023 64.061359) (layer "Dwgs.User") (width 0.2) (tstamp 7bf1ad88-8cff-457e-ac75-2a5036b97b24)) + (gr_line (start 128.168745 116.242262) (end 127.324 117.00294) (layer "Dwgs.User") (width 0.2) (tstamp 7ca240a6-77b6-45db-909c-3be52e15a41f)) + (gr_line (start 128.9308 112.2666) (end 129.352486 111.336423) (layer "Dwgs.User") (width 0.2) (tstamp 7ce15709-1e8e-49aa-a0a4-521d929df166)) + (gr_line (start 72.52206 102.5418) (end 74.21292 105.66995) (layer "Dwgs.User") (width 0.2) (tstamp 7d94d28c-f0ae-4bd6-a348-a11b4b5294bd)) + (gr_line (start 93.1569 52.3907) (end 89.85787 53.74393) (layer "Dwgs.User") (width 0.2) (tstamp 7dc70690-9fc7-4742-be4a-52b611cabc89)) + (gr_line (start 125.8853 63.2166) (end 125.8853 66.6838) (layer "Dwgs.User") (width 0.2) (tstamp 7f937508-60d1-4ede-952e-0de56f8c39f9)) + (gr_line (start 94.003 121.82333) (end 97.38472 122.83894) (layer "Dwgs.User") (width 0.2) (tstamp 7ff213be-297b-47dd-a8a8-8d98383e3a96)) + (gr_line (start 69.138971 88.9253) (end 69.138971 85.3741) (layer "Dwgs.User") (width 0.2) (tstamp 80680fa4-e2ac-4441-9d31-f05e2c7f9241)) + (gr_line (start 101.698 64.9075) (end 101.698 62.201) (layer "Dwgs.User") (width 0.2) (tstamp 82b87ab9-40fb-4109-8531-5f660cfc8d44)) + (gr_line (start 86.0531 114.12834) (end 86.0531 110.6598) (layer "Dwgs.User") (width 0.2) (tstamp 8331e068-3f3b-4a50-aec3-c4ecd2eb0000)) + (gr_line (start 125.124655 105.585842) (end 124.7016 106.0089) (layer "Dwgs.User") (width 0.2) (tstamp 841bf6c7-a643-48ff-8bdc-1431bfe8fba6)) + (gr_line (start 109.1408 65.3305) (end 111.9313 65.3305) (layer "Dwgs.User") (width 0.2) (tstamp 8561eb28-bff3-4f22-a13c-1fc1e092daa9)) + (gr_line (start 97.3847 50.0232) (end 96.708082 50.953377) (layer "Dwgs.User") (width 0.2) (tstamp 859184db-fd6c-4ce7-ad6e-7c569223715f)) + (gr_line (start 101.7834 48.67) (end 99.33048 49.007623) (layer "Dwgs.User") (width 0.2) (tstamp 86942b97-c018-4c16-8487-f64cfe286c69)) + (gr_line (start 114.0452 66.0912) (end 114.0452 63.3007) (layer "Dwgs.User") (width 0.2) (tstamp 87d7912a-5f1b-4fbc-8cc4-c4c47b98f5b1)) + (gr_line (start 86.7297 105.1628) (end 86.899199 105.755351) (layer "Dwgs.User") (width 0.2) (tstamp 89450b17-f100-48be-b96b-91dd5f18686c)) + (gr_line (start 142.3764 81.4839) (end 141.699775 78.01537) (layer "Dwgs.User") (width 0.2) (tstamp 8ac2b81e-09ac-4e61-9b3a-841cf10c1453)) + (gr_line (start 109.6479 64.8234) (end 109.6479 62.1169) (layer "Dwgs.User") (width 0.2) (tstamp 8b153f00-006d-4eaf-ab4c-28202da63d1c)) + (gr_line (start 133.4976 109.8991) (end 134.5959 109.561484) (layer "Dwgs.User") (width 0.2) (tstamp 8b1cb30c-7740-4623-8c3a-d0f601ad77da)) + (gr_line (start 121.14904 53.40631) (end 124.364 55.0131) (layer "Dwgs.User") (width 0.2) (tstamp 8ca2001f-3db8-46b5-ad1d-cad1fc661c3a)) + (gr_line (start 114.6378 65.3305) (end 111.9313 65.3305) (layer "Dwgs.User") (width 0.2) (tstamp 8ccc4b93-3b63-4a1d-bc33-fccd8892363d)) + (gr_line (start 84.023221 116.495817) (end 83.3466 115.56564) (layer "Dwgs.User") (width 0.2) (tstamp 8e7e382e-bd02-46a5-89f9-ddfe95f5a73d)) + (gr_line (start 103.9814 64.5698) (end 101.1908 64.5698) (layer "Dwgs.User") (width 0.2) (tstamp 8fa4714f-68bf-4806-85d3-6ebbeb4828aa)) + (gr_line (start 114.89136 122.669443) (end 111.4242 123.430124) (layer "Dwgs.User") (width 0.2) (tstamp 8fc48e00-5810-4116-8c8b-1864fd4572f5)) + (gr_line (start 128.9308 114.12834) (end 128.9308 113.2822) (layer "Dwgs.User") (width 0.2) (tstamp 91283009-2a2f-4e96-8243-789bacaaca21)) + (gr_line (start 106.2648 67.2749) (end 106.2648 64.4844) (layer "Dwgs.User") (width 0.2) (tstamp 9246cb5a-3e29-4f4f-83f0-868663834601)) + (gr_line (start 136.034598 108.292346) (end 135.5261 108.8849) (layer "Dwgs.User") (width 0.2) (tstamp 926b4c66-9d58-4d21-94f2-1c9cf7be9912)) + (gr_line (start 103.9814 64.5698) (end 103.9814 61.8634) (layer "Dwgs.User") (width 0.2) (tstamp 933a5510-5d99-422f-b172-bf410aefa77a)) + (gr_line (start 113.031 49.093) (end 112.607945 49.007557) (layer "Dwgs.User") (width 0.2) (tstamp 9432658b-3730-44b1-817d-f0be12035b77)) + (gr_line (start 128.675911 115.22664) (end 128.1688 116.24226) (layer "Dwgs.User") (width 0.2) (tstamp 94cdde64-9b1e-488b-91ff-bf5e536e4e20)) + (gr_line (start 82.3323 110.9134) (end 82.839418 111.844953) (layer "Dwgs.User") (width 0.2) (tstamp 94ec811b-45a8-41fc-9559-6493e4a7fc1c)) + (gr_line (start 112.4384 64.8234) (end 109.6479 64.8234) (layer "Dwgs.User") (width 0.2) (tstamp 95959d95-625f-484d-8113-1c5ab05bc790)) + (gr_line (start 93.15691 52.39068) (end 96.54 51.291) (layer "Dwgs.User") (width 0.2) (tstamp 95989172-3da0-4ebb-88b9-4f410b75d22f)) + (gr_line (start 76.412273 64.991482) (end 77.34245 64.4003) (layer "Dwgs.User") (width 0.2) (tstamp 967d318d-3635-4e31-be05-91cde25449c7)) + (gr_line (start 134.5959 109.561484) (end 133.4976 109.8991) (layer "Dwgs.User") (width 0.2) (tstamp 9873baa2-638e-4ece-862d-e8d1fad60365)) + (gr_line (start 86.81371 55.43614) (end 89.8578 53.7439) (layer "Dwgs.User") (width 0.2) (tstamp 9905d9ab-3c4e-4efc-aec2-ea141c443374)) + (gr_line (start 124.7016 118.69518) (end 127.32401 117.00294) (layer "Dwgs.User") (width 0.2) (tstamp 9aa47d7f-f942-4f44-8a34-0e266541589d)) + (gr_line (start 124.617535 67.783421) (end 125.0406 68.2051) (layer "Dwgs.User") (width 0.2) (tstamp 9b6dc699-aac7-40d1-ad16-2b55cdfe575a)) + (gr_line (start 140.6855 74.6337) (end 139.33226 71.33466) (layer "Dwgs.User") (width 0.2) (tstamp 9cb69109-e4f9-441a-b72c-69160b739f36)) + (gr_line (start 86.729637 68.713555) (end 86.8137 68.2905) (layer "Dwgs.User") (width 0.2) (tstamp 9cb7c448-f88d-4695-9303-e63e7b44437d)) + (gr_line (start 111.9313 65.3305) (end 114.6378 65.3305) (layer "Dwgs.User") (width 0.2) (tstamp 9e1ebe2b-84c1-4eb8-9ec7-b7640c850451)) + (gr_line (start 98.9915 64.9075) (end 101.698 64.9075) (layer "Dwgs.User") (width 0.2) (tstamp 9eae0f24-9654-4a7f-8f12-92670b1f5b88)) + (gr_line (start 137.895 105.3323) (end 139.50179 102.20277) (layer "Dwgs.User") (width 0.2) (tstamp 9eb1ad54-d8cf-4e25-b33b-a2b72a4bb605)) + (gr_line (start 140.68557 74.63369) (end 141.6998 78.0154) (layer "Dwgs.User") (width 0.2) (tstamp 9f9165c4-b121-476b-9dc6-7c267209737f)) + (gr_line (start 69.47659 92.3925) (end 70.238647 95.86103) (layer "Dwgs.User") (width 0.2) (tstamp a0137c99-a64b-487b-860e-370f8fd86983)) + (gr_line (start 114.0452 66.0912) (end 114.0452 68.7977) (layer "Dwgs.User") (width 0.2) (tstamp a0391bc5-ba41-477e-ac73-d17527a61eee)) + (gr_line (start 142.799423 88.50231) (end 142.4618 92.0549) (layer "Dwgs.User") (width 0.2) (tstamp a164c273-df30-4baf-a82f-e0c34bc0511c)) + (gr_line (start 113.03096 49.093078) (end 114.0452 49.6002) (layer "Dwgs.User") (width 0.2) (tstamp a1d35e64-fd0e-4957-9609-eeca9cf52aa0)) + (gr_line (start 78.77975 109.8991) (end 79.6259 109.8991) (layer "Dwgs.User") (width 0.2) (tstamp a2bdd1bb-5c20-440d-b640-b7f93e904418)) + (gr_line (start 87.7439 106.1784) (end 124.1945 106.1784) (layer "Dwgs.User") (width 0.2) (tstamp a3b5681c-58ae-4bcd-b6cd-754b64cda449)) + (gr_line (start 124.36396 55.01315) (end 127.324 56.8735) (layer "Dwgs.User") (width 0.2) (tstamp a4144224-8a5f-445d-998e-cb539006ed11)) + (gr_line (start 139.33226 71.33466) (end 140.6855 74.6337) (layer "Dwgs.User") (width 0.2) (tstamp a5279668-1067-4bd3-a930-5d6ba232c19b)) + (gr_line (start 70.23865 95.861) (end 71.25289 99.24271) (layer "Dwgs.User") (width 0.2) (tstamp a5419f37-0b22-46e4-91f8-4ff3977f5f9c)) + (gr_line (start 132.3125 63.9773) (end 131.2983 63.9773) (layer "Dwgs.User") (width 0.2) (tstamp a66219ed-5912-4563-8f85-28720761340e)) + (gr_line (start 83.2625 58.6498) (end 83.007561 59.83354) (layer "Dwgs.User") (width 0.2) (tstamp a68b98ca-ebb9-492a-ab2b-849a242f73c3)) + (gr_line (start 87.320883 106.093026) (end 86.8992 105.7554) (layer "Dwgs.User") (width 0.2) (tstamp a6ba480f-9f6a-458c-971b-144053fecd77)) + (gr_line (start 101.698 64.9075) (end 101.698 67.698) (layer "Dwgs.User") (width 0.2) (tstamp a6f467ac-df49-456f-8ff0-0406fd13bec8)) + (gr_line (start 82.5859 63.2166) (end 86.0531 63.2166) (layer "Dwgs.User") (width 0.2) (tstamp a770f27e-3fc6-434c-87d3-44a7588a132c)) + (gr_line (start 127.915249 57.380623) (end 128.5078 58.3108) (layer "Dwgs.User") (width 0.2) (tstamp a7a7824e-ec6a-49cc-8184-0477b938bca9)) + (gr_line (start 82.332357 110.913385) (end 81.5703 110.3222) (layer "Dwgs.User") (width 0.2) (tstamp a97d9426-3ab3-43fb-8721-90a0d4ab8253)) + (gr_line (start 125.8853 63.2166) (end 122.3341 63.2166) (layer "Dwgs.User") (width 0.2) (tstamp a9d548a6-184c-46fc-971b-bae9b79e94a5)) + (gr_line (start 135.1885 64.738) (end 134.258323 64.230882) (layer "Dwgs.User") (width 0.2) (tstamp ab9274cd-9ac3-4fa7-a45b-9be61c88a70b)) + (gr_line (start 89.5202 110.6598) (end 86.0531 110.6598) (layer "Dwgs.User") (width 0.2) (tstamp acaa33f0-f82f-436d-b791-0cb1849dc43e)) + (gr_line (start 79.6259 109.8991) (end 78.77975 109.8991) (layer "Dwgs.User") (width 0.2) (tstamp acef3205-866f-4efd-9a61-9e77df8a3e92)) + (gr_line (start 101.698 64.9075) (end 98.9915 64.9075) (layer "Dwgs.User") (width 0.2) (tstamp af5ca916-302d-4555-b2c1-8545808b6743)) + (gr_line (start 124.194442 67.697957) (end 124.6175 67.7834) (layer "Dwgs.User") (width 0.2) (tstamp af740f74-8e15-4aa2-8dad-9c88c220f649)) + (gr_line (start 72.43662 71.7577) (end 71.08338 74.97129) (layer "Dwgs.User") (width 0.2) (tstamp afebfa0d-b16e-4075-be20-e9b5ff1a79aa)) + (gr_line (start 106.2648 64.4844) (end 108.9713 64.4844) (layer "Dwgs.User") (width 0.2) (tstamp afee75ae-5b07-4e67-bb49-b6018ddb1585)) + (gr_line (start 86.8137 68.2905) (end 86.729637 68.713555) (layer "Dwgs.User") (width 0.2) (tstamp b087c02e-79be-4075-ade7-1f24c9b72346)) + (gr_line (start 109.0567 48.5859) (end 105.42005 48.416394) (layer "Dwgs.User") (width 0.2) (tstamp b0a9e96b-5076-4a32-b77f-28633637f082)) + (gr_line (start 106.2648 64.4844) (end 106.2648 61.7779) (layer "Dwgs.User") (width 0.2) (tstamp b170721a-1f5d-4d48-9d3d-affb60bc3533)) + (gr_line (start 76.41228 64.9915) (end 75.903782 65.584054) (layer "Dwgs.User") (width 0.2) (tstamp b1aa74c7-a9c3-46ee-a3d6-f4922bcc346f)) + (gr_line (start 125.8853 63.2166) (end 125.8853 59.7481) (layer "Dwgs.User") (width 0.2) (tstamp b3efa544-23ec-4c8a-9bfe-c979d13fc0da)) + (gr_line (start 94.5942 66.2607) (end 97.3006 66.2607) (layer "Dwgs.User") (width 0.2) (tstamp b40b32ee-6617-4aff-a769-471d43bbb5e2)) + (gr_line (start 97.3006 66.2607) (end 97.3006 63.5542) (layer "Dwgs.User") (width 0.2) (tstamp b40b63db-4103-4470-9473-e93546057749)) + (gr_line (start 141.699775 78.01537) (end 142.3764 81.4839) (layer "Dwgs.User") (width 0.2) (tstamp b45d6d88-6ee5-4de2-acf3-a13f80ef3f21)) + (gr_line (start 128.6759 115.22664) (end 128.930839 114.12834) (layer "Dwgs.User") (width 0.2) (tstamp b473c9e4-00c7-4e68-9294-613d2d9a4c54)) + (gr_line (start 124.6175 67.7834) (end 124.194442 67.697957) (layer "Dwgs.User") (width 0.2) (tstamp b4eba88e-62a1-40cd-87d5-406e01a61adf)) + (gr_line (start 76.66584 109.1385) (end 77.68008 109.645618) (layer "Dwgs.User") (width 0.2) (tstamp b7d69e46-557b-4df7-9914-627429a303f4)) + (gr_line (start 87.1527 67.8675) (end 86.813702 68.290558) (layer "Dwgs.User") (width 0.2) (tstamp b848992a-26d0-41b1-bedb-193fbdeee574)) + (gr_line (start 128.9308 113.2822) (end 128.9308 114.12834) (layer "Dwgs.User") (width 0.2) (tstamp b8cc3872-d5b3-4b03-a3ae-f9a507e3d936)) + (gr_line (start 87.743958 106.178439) (end 87.3209 106.093) (layer "Dwgs.User") (width 0.2) (tstamp b9002b09-af74-49ee-a804-7a5c3ab6bdc3)) + (gr_line (start 129.945054 110.575719) (end 129.3525 111.3364) (layer "Dwgs.User") (width 0.2) (tstamp b9e247e3-e940-4906-9e28-81ab30176268)) + (gr_line (start 96.53998 51.291023) (end 96.7081 50.9534) (layer "Dwgs.User") (width 0.2) (tstamp bb51c3a7-17a6-4887-8847-49e00f0ea7d8)) + (gr_line (start 104.4044 123.769126) (end 107.957 123.769126) (layer "Dwgs.User") (width 0.2) (tstamp bc46b0e2-ccb5-4eac-9d3e-4fd1ee5199ca)) + (gr_line (start 133.4976 109.8991) (end 132.3125 109.8991) (layer "Dwgs.User") (width 0.2) (tstamp bd33714d-6823-4de9-b92b-523f1caa8415)) + (gr_line (start 80.6401 109.8991) (end 81.57028 110.322155) (layer "Dwgs.User") (width 0.2) (tstamp bd6b87c7-7a67-4468-af5b-eb44968f76a0)) + (gr_line (start 135.188476 64.737987) (end 136.0346 65.5841) (layer "Dwgs.User") (width 0.2) (tstamp bd76ab9d-0bdb-4305-a28b-c9f726e23984)) + (gr_line (start 83.262482 58.649777) (end 83.7696 57.7196) (layer "Dwgs.User") (width 0.2) (tstamp bead9ddb-f428-4174-b804-b959a8334d68)) + (gr_line (start 121.57205 120.38604) (end 118.2744 121.65383) (layer "Dwgs.User") (width 0.2) (tstamp bed6ae75-6f54-4cd2-9aef-ada7d2fda956)) + (gr_line (start 109.0567 48.5859) (end 112.6079 49.0076) (layer "Dwgs.User") (width 0.2) (tstamp bf8720f0-eb54-4691-8529-34352f60f485)) + (gr_line (start 141.785177 95.52201) (end 140.855 98.9051) (layer "Dwgs.User") (width 0.2) (tstamp bfc97239-225a-40e9-84a5-8ea86cd65f4a)) + (gr_line (start 141.7852 95.522) (end 142.461818 92.05484) (layer "Dwgs.User") (width 0.2) (tstamp bfd22a91-d6c5-420e-881a-65520d04c13f)) + (gr_line (start 69.138971 88.9253) (end 69.47659 92.39246) (layer "Dwgs.User") (width 0.2) (tstamp c255354c-1c05-40c0-814d-cb3de775edbc)) + (gr_line (start 97.3006 63.5542) (end 97.3006 66.2607) (layer "Dwgs.User") (width 0.2) (tstamp c315d4ba-258c-4b2f-bb84-462293d4a47b)) + (gr_line (start 79.6259 109.8991) (end 80.6401 109.8991) (layer "Dwgs.User") (width 0.2) (tstamp c32fe5e8-bf07-44cc-994a-c21aff787b7b)) + (gr_line (start 129.352486 111.336423) (end 128.9308 112.2666) (layer "Dwgs.User") (width 0.2) (tstamp c3bded8d-79cd-44c6-80e2-67e695921ebf)) + (gr_line (start 87.152722 67.867506) (end 87.7439 67.698) (layer "Dwgs.User") (width 0.2) (tstamp c5a1f016-2f79-4131-9885-b2a3f7551511)) + (gr_line (start 76.665837 109.138413) (end 75.90378 108.2923) (layer "Dwgs.User") (width 0.2) (tstamp c6156d49-1975-450a-8869-01221f20b50a)) + (gr_line (start 99.5 62.7935) (end 99.5 65.5) (layer "Dwgs.User") (width 0.2) (tstamp c63fcd45-5488-4a9f-9c86-cdcbe34fd72f)) + (gr_line (start 87.57445 118.86329) (end 84.6158 117.00294) (layer "Dwgs.User") (width 0.2) (tstamp c651da79-f512-4a68-9ac8-a2a8caa9d594)) + (gr_line (start 81.5703 110.3222) (end 82.332357 110.913385) (layer "Dwgs.User") (width 0.2) (tstamp c68ac41a-1dcf-4887-8d43-31d52c1ffcd5)) + (gr_line (start 98.2308 49.3466) (end 97.38468 50.023218) (layer "Dwgs.User") (width 0.2) (tstamp c8258747-5ebe-43da-80c4-5506b31eb823)) + (gr_line (start 141.6998 78.0154) (end 140.68557 74.63369) (layer "Dwgs.User") (width 0.2) (tstamp c832e850-2fde-4598-9411-eeb55df05fef)) + (gr_line (start 122.3341 110.6598) (end 125.8853 110.6598) (layer "Dwgs.User") (width 0.2) (tstamp c839d354-29c6-4e4b-a9e6-de5df5c70950)) + (gr_line (start 114.0452 66.0912) (end 116.8371 66.0912) (layer "Dwgs.User") (width 0.2) (tstamp c93f63dc-cda1-42a2-ab9c-f4fb37b53f27)) + (gr_line (start 69.47659 81.8215) (end 69.138971 85.37409) (layer "Dwgs.User") (width 0.2) (tstamp c99ae6be-e5e8-4a15-b711-53356239262c)) + (gr_line (start 81.9933 63.3007) (end 81.06312 63.807822) (layer "Dwgs.User") (width 0.2) (tstamp ca862932-e081-41a1-8e81-89df980cdb8a)) + (gr_line (start 125.8853 59.7481) (end 125.8853 63.2166) (layer "Dwgs.User") (width 0.2) (tstamp cab9aed7-2186-4b48-ac21-ee0d724f31cd)) + (gr_line (start 118.2744 121.65383) (end 121.57205 120.38604) (layer "Dwgs.User") (width 0.2) (tstamp cc56dd60-0d54-4d60-8b46-c935746761e0)) + (gr_line (start 134.2583 64.2308) (end 133.07456 63.977237) (layer "Dwgs.User") (width 0.2) (tstamp cd209700-ba8b-4fe0-bde4-d3c8ed0b6006)) + (gr_line (start 142.4618 92.0549) (end 142.799423 88.50231) (layer "Dwgs.User") (width 0.2) (tstamp d10b41c2-cfb9-45c8-814b-c5d1ec9161d0)) + (gr_line (start 127.324015 56.873478) (end 127.9152 57.3806) (layer "Dwgs.User") (width 0.2) (tstamp d2aa7cc1-dd51-492e-bd65-50eb7d8bd03c)) + (gr_line (start 70.238647 95.86103) (end 69.47659 92.3925) (layer "Dwgs.User") (width 0.2) (tstamp d36a40f2-776d-473d-baed-d03c270b7735)) + (gr_line (start 82.585921 62.539977) (end 83.0076 61.6098) (layer "Dwgs.User") (width 0.2) (tstamp d3f3f9fb-a665-4caf-9884-fbee1b7a9b51)) + (gr_line (start 77.68007 109.6456) (end 78.77975 109.899163) (layer "Dwgs.User") (width 0.2) (tstamp d44842e3-6e66-4987-a69a-f2ba204e7501)) + (gr_line (start 124.1945 106.1784) (end 87.7439 106.1784) (layer "Dwgs.User") (width 0.2) (tstamp d606c631-9343-45f9-8ed6-7fdfb812fb4e)) + (gr_line (start 99.5 65.5) (end 99.5 62.7935) (layer "Dwgs.User") (width 0.2) (tstamp d699dd2f-26e6-4ca3-af50-a9217d5d24ca)) + (gr_line (start 114.8913 50.3608) (end 114.045176 49.600129) (layer "Dwgs.User") (width 0.2) (tstamp d784056d-851f-47c1-abc5-31809ffdbee0)) + (gr_line (start 99.3305 49.0076) (end 98.23083 49.346602) (layer "Dwgs.User") (width 0.2) (tstamp d7ecf3e9-b066-468e-98da-cf6535276d8f)) + (gr_line (start 96.54 51.291) (end 93.15691 52.39068) (layer "Dwgs.User") (width 0.2) (tstamp d82b2933-a521-47ea-99e1-3487a24d9fad)) + (gr_line (start 99.5 65.5) (end 102.2065 65.5) (layer "Dwgs.User") (width 0.2) (tstamp d88ebbe2-68f4-4b09-89f5-82e8a1ab1eb5)) + (gr_line (start 125.2087 105.1628) (end 125.2087 68.7136) (layer "Dwgs.User") (width 0.2) (tstamp d89f4564-f95e-47f2-b9ff-f7313620f01d)) + (gr_line (start 130.875277 110.068582) (end 129.9451 110.5757) (layer "Dwgs.User") (width 0.2) (tstamp d97541fc-bcb8-4829-9475-2f975e8bbcc6)) + (gr_line (start 122.3341 63.2166) (end 125.8853 63.2166) (layer "Dwgs.User") (width 0.2) (tstamp d97ed3db-8630-4afe-818f-bb102fc4dc4f)) + (gr_line (start 96.7081 65.5) (end 99.5 65.5) (layer "Dwgs.User") (width 0.2) (tstamp d9dbed01-936d-4ffc-a2f0-5769af6ce2de)) + (gr_line (start 98.23083 49.346602) (end 99.3305 49.0076) (layer "Dwgs.User") (width 0.2) (tstamp d9f9855d-2be2-402a-b647-8599d37fb93d)) + (gr_line (start 101.1908 64.5698) (end 103.9814 64.5698) (layer "Dwgs.User") (width 0.2) (tstamp da4a954b-1fba-47eb-90eb-8d07beda15f1)) + (gr_line (start 99.5 65.5) (end 99.5 68.2905) (layer "Dwgs.User") (width 0.2) (tstamp dbc0611b-5404-438a-9ada-2b04c978f1eb)) + (gr_line (start 86.899199 105.755351) (end 86.7297 105.1628) (layer "Dwgs.User") (width 0.2) (tstamp de3d77d1-c5fc-4c52-8a6b-bbaffda52f20)) + (gr_line (start 127.324 117.00294) (end 128.168745 116.242262) (layer "Dwgs.User") (width 0.2) (tstamp de744ed8-79cd-408e-8d37-41955c5a461c)) + (gr_line (start 125.2087 68.7136) (end 125.2087 105.1628) (layer "Dwgs.User") (width 0.2) (tstamp de9c09b0-7e8b-4fc2-a7f7-72f5208c0fa2)) + (gr_line (start 77.34245 64.400358) (end 78.44075 63.9773) (layer "Dwgs.User") (width 0.2) (tstamp debf4ca9-41fa-4513-95b0-b86f6586f718)) + (gr_line (start 128.9308 60.5942) (end 128.9308 59.4104) (layer "Dwgs.User") (width 0.2) (tstamp dfc1140e-cb72-43c2-b9ec-e64491d79c45)) + (gr_line (start 71.25289 99.24271) (end 70.23865 95.861) (layer "Dwgs.User") (width 0.2) (tstamp e1003ff4-0aac-4edb-9fd6-637025fcf504)) + (gr_line (start 135.5261 108.8849) (end 136.034598 108.292346) (layer "Dwgs.User") (width 0.2) (tstamp e27d8db7-fefc-4edc-9aa0-458d13d1b438)) + (gr_line (start 108.9713 64.4844) (end 106.2648 64.4844) (layer "Dwgs.User") (width 0.2) (tstamp e2b9f968-ffa8-4fd4-80d3-98019ae2e770)) + (gr_line (start 70.06915 78.3544) (end 69.476592 81.82156) (layer "Dwgs.User") (width 0.2) (tstamp e36a86c2-3568-414d-ac39-f72cd88be503)) + (gr_line (start 112.6079 49.0076) (end 109.0567 48.5859) (layer "Dwgs.User") (width 0.2) (tstamp e3b0c24e-84c8-4bf3-9052-0d381fdc07ec)) + (gr_line (start 84.6158 56.8735) (end 83.76968 57.719624) (layer "Dwgs.User") (width 0.2) (tstamp e6106d1b-178b-4792-9fbe-37facf92c026)) + (gr_line (start 125.8853 107.1927) (end 125.8853 110.6598) (layer "Dwgs.User") (width 0.2) (tstamp e650bb85-ecf4-40a1-a44a-20914eb42bc4)) + (gr_line (start 79.6259 63.9773) (end 78.44075 63.9773) (layer "Dwgs.User") (width 0.2) (tstamp e6a49913-bf0e-4aed-bc8a-fd17ec73ff32)) + (gr_line (start 86.0531 110.6598) (end 86.0531 114.12834) (layer "Dwgs.User") (width 0.2) (tstamp e7a996c4-410d-4248-9b14-dbfa3330f76e)) + (gr_line (start 84.61572 56.8735) (end 86.8137 55.4362) (layer "Dwgs.User") (width 0.2) (tstamp e7caf6df-aa99-4ba5-a5ae-ecad68494edd)) + (gr_line (start 101.698 67.698) (end 101.698 64.9075) (layer "Dwgs.User") (width 0.2) (tstamp e8c5fb32-5b1e-4291-941f-76ae0955534a)) + (gr_line (start 105.4201 48.4164) (end 101.78345 48.669959) (layer "Dwgs.User") (width 0.2) (tstamp e9438bce-ad15-4f25-8979-010ab93b7e3f)) + (gr_line (start 112.607945 49.007557) (end 113.031 49.093) (layer "Dwgs.User") (width 0.2) (tstamp eb45edf4-3c0a-45ba-8eeb-037713e1a26a)) + (gr_line (start 86.0531 63.2166) (end 82.5859 63.2166) (layer "Dwgs.User") (width 0.2) (tstamp eb5b9ff9-72cc-4451-85d5-07384f673651)) + (gr_line (start 111.9313 65.3305) (end 111.9313 62.624) (layer "Dwgs.User") (width 0.2) (tstamp ec555b2d-f990-454d-82df-2d84fd620ea1)) + (gr_line (start 125.8853 63.2166) (end 129.3525 63.2166) (layer "Dwgs.User") (width 0.2) (tstamp ecc75e30-aa94-4c3c-ba38-b9d07f8cd176)) + (gr_line (start 137.72551 68.20507) (end 139.3323 71.3346) (layer "Dwgs.User") (width 0.2) (tstamp ed837a3d-7d5d-4f53-a0ca-85b3972d5318)) + (gr_line (start 136.0346 65.5841) (end 135.188476 64.737987) (layer "Dwgs.User") (width 0.2) (tstamp ef651f3a-e0f5-4d72-9add-cf9c93674bf9)) + (gr_line (start 97.3006 69.0512) (end 97.3006 66.2607) (layer "Dwgs.User") (width 0.2) (tstamp f0d946ab-a6b1-45e9-a980-74112c97b61e)) + (gr_line (start 128.9308 59.4104) (end 128.507742 58.31072) (layer "Dwgs.User") (width 0.2) (tstamp f16e0d52-a7f8-45ba-ba07-4f3baa3d8f04)) + (gr_line (start 125.8853 110.6598) (end 125.8853 114.12834) (layer "Dwgs.User") (width 0.2) (tstamp f1f99b09-671d-4dc9-a638-51df54bda8bd)) + (gr_line (start 86.7297 105.1628) (end 86.7297 68.7136) (layer "Dwgs.User") (width 0.2) (tstamp f23d317b-3721-405f-8dd1-859362888511)) + (gr_line (start 111.4242 123.430124) (end 114.89136 122.669443) (layer "Dwgs.User") (width 0.2) (tstamp f2942380-3192-4b46-bfbb-973c6a84ea8b)) + (gr_line (start 114.0452 68.7977) (end 114.0452 66.0912) (layer "Dwgs.User") (width 0.2) (tstamp f300e36c-219c-4941-9b65-eeb48415bd9a)) + (gr_line (start 124.364 55.0131) (end 121.14904 53.40631) (layer "Dwgs.User") (width 0.2) (tstamp f330deb9-4ab1-430b-b588-e0301ffe0bcd)) + (gr_line (start 78.44075 63.9773) (end 77.34245 64.400358) (layer "Dwgs.User") (width 0.2) (tstamp f399d9c5-40da-4c14-9eea-7fa36ed1e531)) + (gr_line (start 83.0076 113.2822) (end 83.0076 114.46596) (layer "Dwgs.User") (width 0.2) (tstamp f4399b3c-7bc8-418d-ab6e-661274d8c2a0)) + (gr_line (start 124.7016 106.0089) (end 125.124655 105.585842) (layer "Dwgs.User") (width 0.2) (tstamp f456de70-c98d-4f0c-b34d-618aab76b0be)) + (gr_line (start 131.805377 109.899104) (end 130.8752 110.0686) (layer "Dwgs.User") (width 0.2) (tstamp f4deb5d3-b0b0-402d-bc9e-a9b6db2ec402)) + (gr_line (start 136.03464 65.58407) (end 137.7255 68.2051) (layer "Dwgs.User") (width 0.2) (tstamp f6a15dd4-49fa-437a-ad96-6080ed3f7fa6)) + (gr_line (start 136.0346 108.2923) (end 137.89495 105.33226) (layer "Dwgs.User") (width 0.2) (tstamp f75713df-6a5e-424a-b009-40c7bb9cbc85)) + (gr_line (start 125.2087 68.7136) (end 125.040584 68.205102) (layer "Dwgs.User") (width 0.2) (tstamp f8b36f68-17e8-43c6-9d03-b00e3e1b8b6b)) + (gr_line (start 80.6401 109.8991) (end 79.6259 109.8991) (layer "Dwgs.User") (width 0.2) (tstamp f9037ef4-e9af-44eb-a156-d21e27780453)) + (gr_line (start 86.0531 66.6838) (end 86.0531 63.2166) (layer "Dwgs.User") (width 0.2) (tstamp f9e7802e-fbfd-4ce2-bf3a-574da6c1ace6)) + (gr_line (start 127.32401 117.00294) (end 124.7016 118.69518) (layer "Dwgs.User") (width 0.2) (tstamp fa2783e8-1ca7-42ec-a5aa-4ca398601eec)) + (gr_line (start 96.708082 50.953377) (end 97.3847 50.0232) (layer "Dwgs.User") (width 0.2) (tstamp fb103594-8b81-4d4a-a039-b6fbf1dfe55d)) + (gr_line (start 124.1945 106.1784) (end 124.701622 106.008897) (layer "Dwgs.User") (width 0.2) (tstamp fd9419a1-13ba-4bca-a875-e4d6b89da97c)) + (gr_line (start 114.0452 66.0912) (end 111.3401 66.0912) (layer "Dwgs.User") (width 0.2) (tstamp fdda17b2-bac1-4c13-b710-5662c7486785)) + (gr_line (start 86.0531 59.7481) (end 86.0531 63.2166) (layer "Dwgs.User") (width 0.2) (tstamp ff101555-4d92-4e5b-ba07-bfed2c5b0fdc)) + (gr_line (start 124.70163 118.69517) (end 121.5721 120.38603) (layer "Dwgs.User") (width 0.2) (tstamp fface806-e302-4d2e-89ad-911bb97f7a38)) + (gr_line (start 142.52105 92.0776) (end 142.858673 88.52501) (layer "Edge.Cuts") (width 0.2) (tstamp 001c6b0f-53f5-4ad5-97e3-69c73d6d01b3)) + (gr_line (start 97.44393 50.045918) (end 98.29005 49.3693) (layer "Edge.Cuts") (width 0.2) (tstamp 02b02f9a-1a18-4a11-b870-d151f6c83a56)) + (gr_line (start 137.78476 68.22777) (end 139.39155 71.3573) (layer "Edge.Cuts") (width 0.2) (tstamp 02b376ed-b790-4e87-9718-87424f941658)) + (gr_line (start 83.82885 57.7423) (end 83.321732 58.672477) (layer "Edge.Cuts") (width 0.2) (tstamp 04430531-e9dc-4257-92d9-8cbf866092ec)) + (gr_line (start 83.40585 115.58834) (end 84.082471 116.518517) (layer "Edge.Cuts") (width 0.2) (tstamp 0665d402-98b1-4f1d-ac7a-5165903c6b0b)) + (gr_line (start 83.405848 115.58834) (end 83.06685 114.48866) (layer "Edge.Cuts") (width 0.2) (tstamp 06678714-bfd8-45d7-8198-07db4eea0047)) + (gr_line (start 127.38325 56.8962) (end 124.42321 55.03585) (layer "Edge.Cuts") (width 0.2) (tstamp 06a7317c-f0fd-4e27-87a0-df3d62f15446)) + (gr_line (start 117.99465 52.07576) (end 121.20825 53.429) (layer "Edge.Cuts") (width 0.2) (tstamp 0734199d-e3b2-4060-ad12-3fbbe52c3bda)) + (gr_line (start 135.585427 108.907575) (end 134.65525 109.5842) (layer "Edge.Cuts") (width 0.2) (tstamp 0813bd9a-f13b-4b62-bf8b-862f707fdf5d)) + (gr_line (start 131.35755 64) (end 130.427366 63.660998) (layer "Edge.Cuts") (width 0.2) (tstamp 086b8e0b-93c9-4d36-a408-e9fcc6736c66)) + (gr_line (start 127.38325 117.02564) (end 128.227995 116.264962) (layer "Edge.Cuts") (width 0.2) (tstamp 092a9cfc-87be-4ffe-8615-eece9ff092b2)) + (gr_line (start 71.14263 74.99399) (end 72.49587 71.7804) (layer "Edge.Cuts") (width 0.2) (tstamp 0b08d0d5-d77e-4b90-9a2f-0fcbdce7b90e)) + (gr_line (start 124.76088 118.71787) (end 121.63135 120.40873) (layer "Edge.Cuts") (width 0.2) (tstamp 0b0def94-93a7-47c5-a72e-d80fbdb93511)) + (gr_line (start 84.675008 117.025638) (end 84.08245 116.51852) (layer "Edge.Cuts") (width 0.2) (tstamp 0baf2f32-8f55-4f9e-bc8d-07a3bd68b4e9)) + (gr_line (start 127.38326 117.02564) (end 124.76085 118.71788) (layer "Edge.Cuts") (width 0.2) (tstamp 0c16f1ce-120b-4f90-8afa-12d7f334a021)) + (gr_line (start 81.62955 110.3449) (end 82.391607 110.936085) (layer "Edge.Cuts") (width 0.2) (tstamp 0c355fdb-3f51-4389-9479-5cb222414897)) + (gr_line (start 69.53584 92.41516) (end 69.198221 88.948) (layer "Edge.Cuts") (width 0.2) (tstamp 10c75e50-44f8-45aa-9b77-f4219b2db6a1)) + (gr_line (start 87.21195 67.8902) (end 86.872952 68.313258) (layer "Edge.Cuts") (width 0.2) (tstamp 10ef8b07-9603-410a-ad1b-0300ca896a30)) + (gr_line (start 140.74475 74.6564) (end 139.39151 71.35736) (layer "Edge.Cuts") (width 0.2) (tstamp 116342fc-b8d7-4ae7-8e50-66e2369b3ff5)) + (gr_line (start 136.093848 108.315046) (end 135.58535 108.9076) (layer "Edge.Cuts") (width 0.2) (tstamp 11ba4840-6334-4662-84dd-9d560b8f162b)) + (gr_line (start 134.31755 64.2535) (end 133.13381 63.999937) (layer "Edge.Cuts") (width 0.2) (tstamp 13241b48-abef-49ac-bdc3-9f95e5504d70)) + (gr_line (start 139.39155 71.3573) (end 137.78476 68.22777) (layer "Edge.Cuts") (width 0.2) (tstamp 15d225cf-2e13-4877-814b-9b8fa1f9556a)) + (gr_line (start 96.76735 50.9761) (end 96.59923 51.313723) (layer "Edge.Cuts") (width 0.2) (tstamp 164d2966-dad2-42eb-853a-7c237522e2f0)) + (gr_line (start 128.99005 114.15104) (end 128.99005 113.3049) (layer "Edge.Cuts") (width 0.2) (tstamp 1687de9b-4e38-4524-9d8c-c7c4e1e70c51)) + (gr_line (start 81.62953 110.344855) (end 80.69935 109.9218) (layer "Edge.Cuts") (width 0.2) (tstamp 17a6b25c-af03-4b95-97cd-b4360e0c913a)) + (gr_line (start 69.198221 85.39679) (end 69.53584 81.8442) (layer "Edge.Cuts") (width 0.2) (tstamp 183a8063-27d4-4e14-8c69-acf7b1a5c9f3)) + (gr_line (start 130.004304 110.598419) (end 129.41175 111.3591) (layer "Edge.Cuts") (width 0.2) (tstamp 1848209f-23fc-48bb-8c4e-5f371e55be5a)) + (gr_line (start 77.73933 109.668318) (end 76.72509 109.1612) (layer "Edge.Cuts") (width 0.2) (tstamp 1856f1e6-10e5-43fe-aa88-f99a7ad7c50c)) + (gr_line (start 70.2979 95.8837) (end 71.31214 99.26541) (layer "Edge.Cuts") (width 0.2) (tstamp 187c996a-66d0-49dd-be92-d8ead112ab4d)) + (gr_line (start 77.73932 109.6683) (end 78.839 109.921863) (layer "Edge.Cuts") (width 0.2) (tstamp 1898834e-ed48-4d31-90c5-68229160872a)) + (gr_line (start 100.91245 123.452824) (end 104.46366 123.791826) (layer "Edge.Cuts") (width 0.2) (tstamp 18d29037-c195-4e3e-9922-f2d88683aed8)) + (gr_line (start 78.5 64) (end 79.68515 64) (layer "Edge.Cuts") (width 0.2) (tstamp 18f2f675-dae6-4a54-80e7-9bb01c5c9623)) + (gr_line (start 124.42325 55.0358) (end 121.20829 53.42901) (layer "Edge.Cuts") (width 0.2) (tstamp 190f7000-7fd3-430d-b6a6-074e9894efd0)) + (gr_line (start 139.56105 102.2255) (end 140.91429 98.92785) (layer "Edge.Cuts") (width 0.2) (tstamp 190f8e91-fa75-4af3-b3f3-05e70eec4f0b)) + (gr_line (start 87.80315 67.7207) (end 87.211972 67.890206) (layer "Edge.Cuts") (width 0.2) (tstamp 1a14da45-47d9-4565-ac9e-79eb86b312b5)) + (gr_line (start 87.38015 106.1157) (end 87.803208 106.201139) (layer "Edge.Cuts") (width 0.2) (tstamp 1a165e2d-efa7-48e7-a921-9844150596c7)) + (gr_line (start 124.25375 106.2011) (end 87.80315 106.2011) (layer "Edge.Cuts") (width 0.2) (tstamp 1c78ed0a-69c4-4616-8f3d-c2eddae96ceb)) + (gr_line (start 130.00435 110.5984) (end 130.934527 110.091282) (layer "Edge.Cuts") (width 0.2) (tstamp 1e7e4a34-cb48-4904-a902-78a5b190ef4f)) + (gr_line (start 105.47935 48.4391) (end 101.8427 48.692659) (layer "Edge.Cuts") (width 0.2) (tstamp 1e89c9bc-b0cd-4bfe-8eb0-349f839a3273)) + (gr_line (start 133.13385 64) (end 132.37175 64) (layer "Edge.Cuts") (width 0.2) (tstamp 1effda4f-3f62-482c-8b8a-72684d99280c)) + (gr_line (start 81.12237 63.830522) (end 82.05255 63.3234) (layer "Edge.Cuts") (width 0.2) (tstamp 20a38718-3107-45c5-ae31-5d1f0bd606f0)) + (gr_line (start 128.735161 115.24934) (end 128.22805 116.26496) (layer "Edge.Cuts") (width 0.2) (tstamp 20cccfdd-ff7f-4849-8d2c-a1e0cd906fd9)) + (gr_line (start 114.104426 49.622829) (end 114.95055 50.3835) (layer "Edge.Cuts") (width 0.2) (tstamp 22e45947-4ace-4130-b1c5-72cdf313a15d)) + (gr_line (start 75.963032 65.606754) (end 76.47153 65.0142) (layer "Edge.Cuts") (width 0.2) (tstamp 248d2a37-5038-4ef9-adaa-f09cc990c5d8)) + (gr_line (start 83.321732 58.672477) (end 83.82885 57.7423) (layer "Edge.Cuts") (width 0.2) (tstamp 24e1ff2e-1a64-4d34-8701-320497f3f9fe)) + (gr_line (start 111.48341 123.452823) (end 108.01625 123.791826) (layer "Edge.Cuts") (width 0.2) (tstamp 24f3b884-a0aa-4551-ad3c-324a38082f5b)) + (gr_line (start 125.26795 68.7363) (end 125.26795 105.1855) (layer "Edge.Cuts") (width 0.2) (tstamp 260bb4ec-f8e3-48db-8982-43e43aca064d)) + (gr_line (start 135.247726 64.760687) (end 136.09385 65.6068) (layer "Edge.Cuts") (width 0.2) (tstamp 26b53974-e418-44e8-9278-f5e4d78c0f9f)) + (gr_line (start 83.06685 61.6325) (end 83.06685 60.6169) (layer "Edge.Cuts") (width 0.2) (tstamp 29184fc3-390f-408c-9bcc-5ea33860d8e1)) + (gr_line (start 101.8427 48.692659) (end 105.47935 48.4391) (layer "Edge.Cuts") (width 0.2) (tstamp 295563f3-87e4-4c3e-9d62-7dc4c6f724cc)) + (gr_line (start 142.521068 92.07754) (end 141.84445 95.5447) (layer "Edge.Cuts") (width 0.2) (tstamp 2c7d5b18-0dc5-42aa-b79d-ba7b97d66166)) + (gr_line (start 69.53584 81.8442) (end 69.198221 85.39679) (layer "Edge.Cuts") (width 0.2) (tstamp 2d5ee7cb-06e6-4c64-bdec-72497e5131d3)) + (gr_line (start 83.06685 114.48866) (end 83.06685 113.3049) (layer "Edge.Cuts") (width 0.2) (tstamp 2ecb3eac-8f88-4b6c-8e6f-00bc13a9323e)) + (gr_line (start 86.87295 68.3132) (end 86.788887 68.736255) (layer "Edge.Cuts") (width 0.2) (tstamp 2f0b278c-3168-4078-8760-74f5a5c22184)) + (gr_line (start 135.58535 108.9076) (end 136.093848 108.315046) (layer "Edge.Cuts") (width 0.2) (tstamp 30196c2d-5ed7-4fad-80ba-7bad28d67d21)) + (gr_line (start 121.63135 120.40873) (end 124.76088 118.71787) (layer "Edge.Cuts") (width 0.2) (tstamp 3131e849-f156-406e-966e-a7f6a7b5cfe7)) + (gr_line (start 89.91712 53.76663) (end 93.21615 52.4134) (layer "Edge.Cuts") (width 0.2) (tstamp 320d4542-5ee6-41a1-ac86-a5bfa6a0bf24)) + (gr_line (start 71.31214 99.2654) (end 72.58132 102.56444) (layer "Edge.Cuts") (width 0.2) (tstamp 32533704-a4c1-4c4c-8b14-de4c6f400840)) + (gr_line (start 69.535842 81.84426) (end 70.1284 78.3771) (layer "Edge.Cuts") (width 0.2) (tstamp 32fb4046-f002-46a3-8c6b-6cf232f22c7e)) + (gr_line (start 108.01625 123.791826) (end 111.48341 123.452823) (layer "Edge.Cuts") (width 0.2) (tstamp 335971ba-d411-4597-8157-5836b1234c5b)) + (gr_line (start 134.317573 64.253582) (end 135.24775 64.7607) (layer "Edge.Cuts") (width 0.2) (tstamp 34139d56-8bc8-49f5-a75a-cf33d740acdf)) + (gr_line (start 114.950632 50.383516) (end 115.45775 51.3137) (layer "Edge.Cuts") (width 0.2) (tstamp 34bb80a0-cfa5-483b-929f-1bf6e3a18ac3)) + (gr_line (start 83.06685 112.8819) (end 83.06685 113.3049) (layer "Edge.Cuts") (width 0.2) (tstamp 37fdf936-edec-4006-b46c-8d7b64687bc1)) + (gr_line (start 109.11595 48.6086) (end 112.66715 49.0303) (layer "Edge.Cuts") (width 0.2) (tstamp 38687490-e796-405b-a787-3ab6787ecbba)) + (gr_line (start 84.67497 56.8962) (end 86.87295 55.4589) (layer "Edge.Cuts") (width 0.2) (tstamp 39318eda-4ff9-47e1-bb2c-c8d6d793c6d9)) + (gr_line (start 82.645171 62.562677) (end 83.06685 61.6325) (layer "Edge.Cuts") (width 0.2) (tstamp 39ac13a5-3e19-4994-a8e0-f4d4c76ddff1)) + (gr_line (start 125.268014 105.185545) (end 125.18395 105.6086) (layer "Edge.Cuts") (width 0.2) (tstamp 3b3019d8-cd5c-4826-a212-12e78504bfa6)) + (gr_line (start 87.80315 67.7207) (end 124.25375 67.7207) (layer "Edge.Cuts") (width 0.2) (tstamp 3c4785fb-7f15-4c75-98d9-eeb6f8b99ee1)) + (gr_line (start 128.56705 58.3335) (end 127.974499 57.403323) (layer "Edge.Cuts") (width 0.2) (tstamp 3de6b605-6aa9-4c08-8ae5-5c22741b706c)) + (gr_line (start 74.10267 68.5668) (end 72.49587 71.7804) (layer "Edge.Cuts") (width 0.2) (tstamp 3e465bfc-957c-439c-aff8-670e550a2a9c)) + (gr_line (start 124.676785 67.806121) (end 125.09985 68.2278) (layer "Edge.Cuts") (width 0.2) (tstamp 3f972c7e-671a-4a34-896e-126ba7940488)) + (gr_line (start 105.4793 48.439094) (end 109.11595 48.6086) (layer "Edge.Cuts") (width 0.2) (tstamp 4121f974-d415-431f-80a5-af4bd8dc8747)) + (gr_line (start 139.39151 71.35736) (end 140.74475 74.6564) (layer "Edge.Cuts") (width 0.2) (tstamp 422b3187-503b-43df-bcdd-0d9d960ddd90)) + (gr_line (start 84.67505 117.02564) (end 87.6337 118.88599) (layer "Edge.Cuts") (width 0.2) (tstamp 42ae7def-e917-45a8-9f73-4850c35901e2)) + (gr_line (start 78.839 109.9218) (end 79.68515 109.9218) (layer "Edge.Cuts") (width 0.2) (tstamp 42fcdc6d-97d0-4e40-a3e5-09c8f5919c6d)) + (gr_line (start 83.06685 113.3049) (end 83.06685 114.48866) (layer "Edge.Cuts") (width 0.2) (tstamp 43adfbd2-9821-431d-8078-24e80952f6c3)) + (gr_line (start 115.45775 51.3137) (end 114.950632 50.383516) (layer "Edge.Cuts") (width 0.2) (tstamp 4566ca32-297e-4792-869c-c5ca1aa83b6d)) + (gr_line (start 128.99005 113.3049) (end 128.99005 112.2893) (layer "Edge.Cuts") (width 0.2) (tstamp 45a4bf9c-601a-460e-9483-0d0a5f939954)) + (gr_line (start 99.38975 49.0303) (end 98.29008 49.369302) (layer "Edge.Cuts") (width 0.2) (tstamp 46adc898-ee36-4bb5-b338-193f80070f74)) + (gr_line (start 83.32175 58.6725) (end 83.066811 59.85624) (layer "Edge.Cuts") (width 0.2) (tstamp 4b582cf5-c717-44ba-be38-a427d4ab24ce)) + (gr_line (start 72.49587 71.7804) (end 71.14263 74.99399) (layer "Edge.Cuts") (width 0.2) (tstamp 4e175fde-2799-43ee-84cb-78adc994479c)) + (gr_line (start 142.85865 85.0578) (end 142.435592 81.50659) (layer "Edge.Cuts") (width 0.2) (tstamp 4e2f4f11-dee9-413b-902c-a713768b0a6f)) + (gr_line (start 124.42321 55.03585) (end 127.38325 56.8962) (layer "Edge.Cuts") (width 0.2) (tstamp 4e6b9159-c1cb-4aa9-b802-be6476f48c08)) + (gr_line (start 127.97445 57.4033) (end 127.383265 56.896178) (layer "Edge.Cuts") (width 0.2) (tstamp 4eb0cad1-16bc-4ace-9497-f9ce35bc9509)) + (gr_line (start 142.85865 85.0578) (end 142.85865 88.525) (layer "Edge.Cuts") (width 0.2) (tstamp 4f84d26a-03da-49ec-8070-eb200923f8e0)) + (gr_line (start 82.898668 111.867653) (end 82.39155 110.9361) (layer "Edge.Cuts") (width 0.2) (tstamp 50016dfa-6a0f-4f35-8c5f-125f2030cb5e)) + (gr_line (start 140.74482 74.65639) (end 141.75905 78.0381) (layer "Edge.Cuts") (width 0.2) (tstamp 500ce510-f3e1-4076-94fb-9ee174ef714d)) + (gr_line (start 94.06225 121.84603) (end 97.44397 122.86164) (layer "Edge.Cuts") (width 0.2) (tstamp 50859e4d-7842-4a1e-94f2-cbfc4eba8a7a)) + (gr_line (start 132.37175 64) (end 133.13385 64) (layer "Edge.Cuts") (width 0.2) (tstamp 51862f7c-7aad-4c57-bcc8-d067d038dc0b)) + (gr_line (start 90.76318 120.57823) (end 87.63365 118.88599) (layer "Edge.Cuts") (width 0.2) (tstamp 53f1f829-2868-479a-8712-0042e759d579)) + (gr_line (start 128.99005 59.4331) (end 128.566992 58.33342) (layer "Edge.Cuts") (width 0.2) (tstamp 54a72326-7907-41c0-907a-bebfa6cbc8d9)) + (gr_line (start 134.65515 109.584184) (end 133.55685 109.9218) (layer "Edge.Cuts") (width 0.2) (tstamp 54ba8681-a570-48f3-99e1-c9a8282ac55b)) + (gr_line (start 128.990089 114.15104) (end 128.73515 115.24934) (layer "Edge.Cuts") (width 0.2) (tstamp 55220ddb-12d4-4ea2-b992-ffbdb71f4eba)) + (gr_line (start 129.665297 62.985762) (end 130.42735 63.661) (layer "Edge.Cuts") (width 0.2) (tstamp 58c5ee7e-2d63-47f1-877a-8f97fb2c96c3)) + (gr_line (start 128.99005 59.4331) (end 128.99005 60.6169) (layer "Edge.Cuts") (width 0.2) (tstamp 5a7d974c-fe68-43de-93a1-fed39c8c357b)) + (gr_line (start 84.67505 56.8962) (end 83.82893 57.742324) (layer "Edge.Cuts") (width 0.2) (tstamp 5b6a7c35-73bf-42a8-8f60-fddfa6326ff7)) + (gr_line (start 83.06685 59.8562) (end 83.06685 60.6169) (layer "Edge.Cuts") (width 0.2) (tstamp 5bb4f739-1e08-4132-94fe-41384dfcdb95)) + (gr_line (start 125.26795 105.1855) (end 125.26795 68.7363) (layer "Edge.Cuts") (width 0.2) (tstamp 5bc9b9f4-f882-47a7-a851-c80560ffebf4)) + (gr_line (start 130.93445 110.0913) (end 131.864627 109.921804) (layer "Edge.Cuts") (width 0.2) (tstamp 5c1b03d5-849c-4d6c-943e-2c072f9aec55)) + (gr_line (start 86.78895 105.1855) (end 86.78895 68.7363) (layer "Edge.Cuts") (width 0.2) (tstamp 5d3ab7b5-4964-466f-9b0f-36e5820c46b5)) + (gr_line (start 87.6337 118.88599) (end 84.67505 117.02564) (layer "Edge.Cuts") (width 0.2) (tstamp 5f1e684b-1fa6-4cec-91cc-1c94061e125f)) + (gr_line (start 124.760872 106.031597) (end 124.25375 106.2011) (layer "Edge.Cuts") (width 0.2) (tstamp 5f278345-16eb-4d6a-aeb4-ab9f01783446)) + (gr_line (start 74.27217 105.69265) (end 72.58131 102.5645) (layer "Edge.Cuts") (width 0.2) (tstamp 5f39ef62-f68d-4fdb-9d99-9ac04c8f3d9a)) + (gr_line (start 76.72509 109.1612) (end 77.73933 109.668318) (layer "Edge.Cuts") (width 0.2) (tstamp 5f3ea096-c88f-4905-afd4-dff8e788b35b)) + (gr_line (start 130.427366 63.660998) (end 131.35755 64) (layer "Edge.Cuts") (width 0.2) (tstamp 607b871a-dabd-4220-bfcc-8ca377b4ca62)) + (gr_line (start 87.803208 106.201139) (end 87.38015 106.1157) (layer "Edge.Cuts") (width 0.2) (tstamp 611c2a56-1ee7-41f6-8154-e32a8e444c89)) + (gr_line (start 136.09389 65.60677) (end 137.78475 68.2278) (layer "Edge.Cuts") (width 0.2) (tstamp 6236c3d1-dec9-411b-b450-85b172507fbf)) + (gr_line (start 72.58132 102.56444) (end 71.31214 99.2654) (layer "Edge.Cuts") (width 0.2) (tstamp 62e650a5-3c60-40cd-92f7-4d4b40ed2fc8)) + (gr_line (start 132.37175 64) (end 131.35755 64) (layer "Edge.Cuts") (width 0.2) (tstamp 6547b40e-1c53-4999-bdad-69aab68a51e5)) + (gr_line (start 135.24775 64.7607) (end 134.317573 64.253582) (layer "Edge.Cuts") (width 0.2) (tstamp 6576cf50-a216-4078-a873-585686473b2d)) + (gr_line (start 83.06685 114.48866) (end 83.405848 115.58834) (layer "Edge.Cuts") (width 0.2) (tstamp 65cace9e-0109-4981-8c4f-5d709dca00cd)) + (gr_line (start 141.844427 95.54471) (end 140.91425 98.9278) (layer "Edge.Cuts") (width 0.2) (tstamp 65db100d-2336-45ee-a64d-7c259a4263c7)) + (gr_line (start 128.227995 116.264962) (end 127.38325 117.02564) (layer "Edge.Cuts") (width 0.2) (tstamp 6694956f-9cd7-47b3-a288-5edfca1be1ef)) + (gr_line (start 124.67675 67.8061) (end 124.253692 67.720657) (layer "Edge.Cuts") (width 0.2) (tstamp 66bcc2c9-a0cd-41d7-9494-79335a942200)) + (gr_line (start 129.158232 62.054144) (end 129.66535 62.9857) (layer "Edge.Cuts") (width 0.2) (tstamp 67222d42-1c52-4ffe-85a1-74ded0c6e6fd)) + (gr_line (start 98.29008 49.369302) (end 99.38975 49.0303) (layer "Edge.Cuts") (width 0.2) (tstamp 67cb47a2-3772-4a0f-b132-db2b53f7cce6)) + (gr_line (start 108.01625 123.791826) (end 104.46365 123.791826) (layer "Edge.Cuts") (width 0.2) (tstamp 69ff5428-d3e6-4ab7-b282-c5d351049f0e)) + (gr_line (start 93.21616 52.41338) (end 96.59925 51.3137) (layer "Edge.Cuts") (width 0.2) (tstamp 6af56369-f3bf-4cab-b64e-74f4d73465cc)) + (gr_line (start 121.20825 53.429) (end 117.99465 52.07576) (layer "Edge.Cuts") (width 0.2) (tstamp 6b600344-1367-450f-a71b-b49cb71efadf)) + (gr_line (start 86.788887 68.736255) (end 86.87295 68.3132) (layer "Edge.Cuts") (width 0.2) (tstamp 6b9dccfe-39c4-4589-b9f8-1e1a40eda6e8)) + (gr_line (start 89.91705 53.7666) (end 86.87296 55.45884) (layer "Edge.Cuts") (width 0.2) (tstamp 6bc64b5f-2812-4863-9de6-9e3d27d123d9)) + (gr_line (start 109.11595 48.6086) (end 105.4793 48.439094) (layer "Edge.Cuts") (width 0.2) (tstamp 6be6eec4-e15c-450d-b68f-46999a6ad308)) + (gr_line (start 86.78895 105.1855) (end 86.958449 105.778051) (layer "Edge.Cuts") (width 0.2) (tstamp 6c9aa5eb-bce2-49a8-9c75-6862c2f4fe94)) + (gr_line (start 137.95425 105.355) (end 139.56104 102.22547) (layer "Edge.Cuts") (width 0.2) (tstamp 6cd03fc4-f02e-4d13-be87-e5d79f087381)) + (gr_line (start 137.9542 105.35496) (end 136.09385 108.315) (layer "Edge.Cuts") (width 0.2) (tstamp 6d7c2364-a20d-4da1-88cc-4d625f70d843)) + (gr_line (start 81.12245 63.8305) (end 80.192273 64.084059) (layer "Edge.Cuts") (width 0.2) (tstamp 6e03f50e-e5ca-4a90-abca-b7c7d8431c42)) + (gr_line (start 114.95055 122.69214) (end 118.33364 121.67652) (layer "Edge.Cuts") (width 0.2) (tstamp 6e36e9d2-08f8-41e7-baf3-498878facd08)) + (gr_line (start 75.96303 65.6068) (end 74.10267 68.56684) (layer "Edge.Cuts") (width 0.2) (tstamp 6f0af786-84e6-4013-817e-51c42b0cfe32)) + (gr_line (start 83.82893 57.742324) (end 84.67505 56.8962) (layer "Edge.Cuts") (width 0.2) (tstamp 729a3213-f1bd-409b-be00-96ce6156ed00)) + (gr_line (start 131.864627 109.921804) (end 130.93445 110.0913) (layer "Edge.Cuts") (width 0.2) (tstamp 731e0c6b-a571-4196-95c6-44eb3331079d)) + (gr_line (start 128.566992 58.33342) (end 128.99005 59.4331) (layer "Edge.Cuts") (width 0.2) (tstamp 77bf33eb-e095-45d6-95bb-547a4cbfe26c)) + (gr_line (start 113.09021 49.115778) (end 114.10445 49.6229) (layer "Edge.Cuts") (width 0.2) (tstamp 78474661-0b5b-4436-ae26-0abf9a4a58fd)) + (gr_line (start 79.685132 63.999937) (end 80.19225 64.084) (layer "Edge.Cuts") (width 0.2) (tstamp 7cc7e69e-fa05-4f5c-9374-0a41f38b55e7)) + (gr_line (start 142.85865 88.525) (end 142.85865 85.0578) (layer "Edge.Cuts") (width 0.2) (tstamp 7e638106-55a9-464d-af58-5bc1a4865651)) + (gr_line (start 90.76315 120.57823) (end 94.06218 121.84603) (layer "Edge.Cuts") (width 0.2) (tstamp 7f4713cd-1651-49d2-bc7c-7bc965e2f23e)) + (gr_line (start 94.06218 121.84603) (end 90.76315 120.57823) (layer "Edge.Cuts") (width 0.2) (tstamp 8185ecb9-c2b6-4d25-b694-8eb692d3cbf9)) + (gr_line (start 132.37175 109.9218) (end 131.86465 109.9218) (layer "Edge.Cuts") (width 0.2) (tstamp 82577c42-7052-44ea-b718-9074f0639a99)) + (gr_line (start 125.18395 105.6086) (end 125.268014 105.185545) (layer "Edge.Cuts") (width 0.2) (tstamp 826861bc-c682-4dff-8749-80ec3fcb3f50)) + (gr_line (start 78.5 64) (end 77.4017 64.423058) (layer "Edge.Cuts") (width 0.2) (tstamp 8985d12e-d8c0-4f23-a154-5bfcf0228cce)) + (gr_line (start 83.06685 113.3049) (end 83.06685 112.8819) (layer "Edge.Cuts") (width 0.2) (tstamp 89c2c6ac-d6c0-40ab-a009-60b332e98ded)) + (gr_line (start 83.06685 60.6169) (end 83.06685 61.6325) (layer "Edge.Cuts") (width 0.2) (tstamp 89dca5fe-7fcf-4d89-b504-0f7bcc892fdd)) + (gr_line (start 139.56104 102.22547) (end 137.95425 105.355) (layer "Edge.Cuts") (width 0.2) (tstamp 89dea559-3022-417a-bbde-cdf2955ae0ae)) + (gr_line (start 80.19225 64.084) (end 79.685132 63.999937) (layer "Edge.Cuts") (width 0.2) (tstamp 8a89ef6d-5cc0-4811-a3d0-f95f52a42e5f)) + (gr_line (start 87.211972 67.890206) (end 87.80315 67.7207) (layer "Edge.Cuts") (width 0.2) (tstamp 8adacadb-554e-4706-aa08-a039d202a4d1)) + (gr_line (start 80.192273 64.084059) (end 81.12245 63.8305) (layer "Edge.Cuts") (width 0.2) (tstamp 8b348e99-71dd-47fd-826d-c1c1cfc15993)) + (gr_line (start 83.06685 60.6169) (end 83.06685 59.8562) (layer "Edge.Cuts") (width 0.2) (tstamp 8b580a3b-73f7-479b-b483-3d901661110b)) + (gr_line (start 74.10267 68.56684) (end 75.96303 65.6068) (layer "Edge.Cuts") (width 0.2) (tstamp 8c0270bf-a1d9-40e4-985d-e0767f4b21ae)) + (gr_line (start 113.09025 49.1157) (end 112.667195 49.030257) (layer "Edge.Cuts") (width 0.2) (tstamp 8da3afb4-2a22-4bee-901f-bdbd94bcf99b)) + (gr_line (start 70.1284 78.3771) (end 69.535842 81.84426) (layer "Edge.Cuts") (width 0.2) (tstamp 921eb92b-2de9-4c4a-b80c-652dddd97d13)) + (gr_line (start 142.435592 81.50659) (end 142.85865 85.0578) (layer "Edge.Cuts") (width 0.2) (tstamp 9236700b-22e4-43ed-b814-8d31c532e9c0)) + (gr_line (start 124.25375 106.2011) (end 124.760872 106.031597) (layer "Edge.Cuts") (width 0.2) (tstamp 9254b227-a5c6-425c-bc81-9ba838eecc40)) + (gr_line (start 118.33365 121.67653) (end 121.6313 120.40874) (layer "Edge.Cuts") (width 0.2) (tstamp 929638a6-7d97-4161-bacf-34d61ef5e472)) + (gr_line (start 83.06687 112.88184) (end 82.89875 111.8676) (layer "Edge.Cuts") (width 0.2) (tstamp 9354c134-b452-4482-92ce-a1eaf7b7021e)) + (gr_line (start 96.59925 51.3137) (end 93.21616 52.41338) (layer "Edge.Cuts") (width 0.2) (tstamp 9457374a-c585-439f-a6bf-71c4c324e72d)) + (gr_line (start 128.99005 113.3049) (end 128.99005 114.15104) (layer "Edge.Cuts") (width 0.2) (tstamp 9617d537-9b19-48de-9086-95bc708dd683)) + (gr_line (start 86.87295 55.4589) (end 84.67497 56.8962) (layer "Edge.Cuts") (width 0.2) (tstamp 975fc736-b4ad-487c-b0f2-85af03051583)) + (gr_line (start 82.39155 110.9361) (end 82.898668 111.867653) (layer "Edge.Cuts") (width 0.2) (tstamp 97ea2bf5-b8cc-4ddb-b2ff-d1f829777275)) + (gr_line (start 83.06685 61.6325) (end 82.645171 62.562677) (layer "Edge.Cuts") (width 0.2) (tstamp 99887e80-5ce0-4314-b521-9d624e802d2a)) + (gr_line (start 82.052592 63.323378) (end 82.64515 62.5627) (layer "Edge.Cuts") (width 0.2) (tstamp 99ba401d-df63-4828-8e4c-f4964fe3b941)) + (gr_line (start 79.68515 109.9218) (end 78.839 109.9218) (layer "Edge.Cuts") (width 0.2) (tstamp 9b9678a9-4da4-4ec7-b546-afe74f2aa1cc)) + (gr_line (start 86.78895 68.7363) (end 86.78895 105.1855) (layer "Edge.Cuts") (width 0.2) (tstamp 9e3bb7fc-567c-4961-92af-bfba0fdb52f0)) + (gr_line (start 97.44397 122.86164) (end 94.06225 121.84603) (layer "Edge.Cuts") (width 0.2) (tstamp a06b645c-eac6-4ab3-b8f1-ef9de2fcd3c9)) + (gr_line (start 124.76085 106.0316) (end 125.183905 105.608542) (layer "Edge.Cuts") (width 0.2) (tstamp a06bfa2f-2c00-41f8-a7d7-66a8f7e5d156)) + (gr_line (start 128.73515 115.24934) (end 128.990089 114.15104) (layer "Edge.Cuts") (width 0.2) (tstamp a346232c-2fcb-4bf8-9e6b-dbe328d75b4f)) + (gr_line (start 99.38973 49.030323) (end 101.84265 48.6927) (layer "Edge.Cuts") (width 0.2) (tstamp a4045263-2740-402e-aa0e-b0ed3900ccd0)) + (gr_line (start 86.95845 105.7781) (end 87.380133 106.115726) (layer "Edge.Cuts") (width 0.2) (tstamp a5f5ae7a-46d9-4de8-8e8b-8c7edc191aea)) + (gr_line (start 129.411736 111.359123) (end 128.99005 112.2893) (layer "Edge.Cuts") (width 0.2) (tstamp a6ccf0df-faed-45f8-9373-33766311b406)) + (gr_line (start 77.4017 64.423058) (end 78.5 64) (layer "Edge.Cuts") (width 0.2) (tstamp a854175e-e624-4f8c-8381-a32df49f8940)) + (gr_line (start 82.89875 111.8676) (end 83.06687 112.88184) (layer "Edge.Cuts") (width 0.2) (tstamp a985aac4-fb27-4666-951d-cb47fc2831cf)) + (gr_line (start 69.198221 88.948) (end 69.198221 85.3968) (layer "Edge.Cuts") (width 0.2) (tstamp ae161f70-df68-4bed-aa7a-cd71e4c5b987)) + (gr_line (start 77.4017 64.423) (end 76.471523 65.014182) (layer "Edge.Cuts") (width 0.2) (tstamp ae3c642e-b73d-42db-b177-a938dc4afb65)) + (gr_line (start 133.55685 109.9218) (end 134.65515 109.584184) (layer "Edge.Cuts") (width 0.2) (tstamp ae6179a0-46b8-41f5-bfbf-a01ef52064d0)) + (gr_line (start 87.380133 106.115726) (end 86.95845 105.7781) (layer "Edge.Cuts") (width 0.2) (tstamp b0a54267-45e8-41b1-99bd-4715cecba55a)) + (gr_line (start 76.725087 109.161113) (end 75.96303 108.315) (layer "Edge.Cuts") (width 0.2) (tstamp b44072a0-168e-4475-9a0a-e808587482d5)) + (gr_line (start 96.59923 51.313723) (end 96.76735 50.9761) (layer "Edge.Cuts") (width 0.2) (tstamp b4457e89-7996-48cc-9120-8e939b8659fe)) + (gr_line (start 83.066811 59.85624) (end 83.32175 58.6725) (layer "Edge.Cuts") (width 0.2) (tstamp b47165bf-b2cc-451b-a228-39a50cbed299)) + (gr_line (start 71.31214 99.26541) (end 70.2979 95.8837) (layer "Edge.Cuts") (width 0.2) (tstamp b4fbaaac-b4a1-498d-af04-e6af9132f1f4)) + (gr_line (start 125.26795 68.7363) (end 125.099834 68.227802) (layer "Edge.Cuts") (width 0.2) (tstamp b6f531a0-1953-42f6-b883-f1ee042721c6)) + (gr_line (start 127.383265 56.896178) (end 127.97445 57.4033) (layer "Edge.Cuts") (width 0.2) (tstamp b74d62c3-c3c3-42ad-8d56-880243a3559b)) + (gr_line (start 79.68515 64) (end 78.5 64) (layer "Edge.Cuts") (width 0.2) (tstamp b77cdfb4-195a-434f-b178-ca43d424b7d9)) + (gr_line (start 72.58131 102.5645) (end 74.27217 105.69265) (layer "Edge.Cuts") (width 0.2) (tstamp b9f1837d-2bdc-451f-b22a-03208c3c4591)) + (gr_line (start 133.55685 109.9218) (end 132.37175 109.9218) (layer "Edge.Cuts") (width 0.2) (tstamp ba122c9a-1e73-4000-a734-60c577efa095)) + (gr_line (start 82.391607 110.936085) (end 81.62955 110.3449) (layer "Edge.Cuts") (width 0.2) (tstamp ba12b83f-827f-463e-9aca-f5fdd8e8950a)) + (gr_line (start 84.082471 116.518517) (end 83.40585 115.58834) (layer "Edge.Cuts") (width 0.2) (tstamp bb6b009a-717c-445f-b9f1-c3ad4ae97338)) + (gr_line (start 71.14264 74.994) (end 70.1284 78.37709) (layer "Edge.Cuts") (width 0.2) (tstamp be04d6a4-782c-43f9-9fd0-1b64c0e0fb6d)) + (gr_line (start 114.95055 50.3835) (end 114.104426 49.622829) (layer "Edge.Cuts") (width 0.2) (tstamp bf339eab-0aa6-4b64-9260-d7ec9394adfa)) + (gr_line (start 70.297897 95.88373) (end 69.53584 92.4152) (layer "Edge.Cuts") (width 0.2) (tstamp bfbebe34-0b11-440c-9581-e570a686944c)) + (gr_line (start 75.96303 108.315) (end 76.725087 109.161113) (layer "Edge.Cuts") (width 0.2) (tstamp c09dc9e5-edcb-42ca-a628-29d309d8e9be)) + (gr_line (start 130.42735 63.661) (end 129.665297 62.985762) (layer "Edge.Cuts") (width 0.2) (tstamp c1550a93-da04-49e0-8bea-0405cb584ade)) + (gr_line (start 76.471523 65.014182) (end 77.4017 64.423) (layer "Edge.Cuts") (width 0.2) (tstamp c206cd1e-8d3e-4333-b65d-529e753199e7)) + (gr_line (start 101.84265 48.6927) (end 99.38973 49.030323) (layer "Edge.Cuts") (width 0.2) (tstamp c21d0b10-1ca3-4e41-a873-86f38a3ad9cc)) + (gr_line (start 87.63365 118.88599) (end 90.76318 120.57823) (layer "Edge.Cuts") (width 0.2) (tstamp c3699c9a-bd8e-48c2-aa19-4927739af56b)) + (gr_line (start 142.858673 88.52501) (end 142.52105 92.0776) (layer "Edge.Cuts") (width 0.2) (tstamp c384b6f8-0a25-44e7-bff0-c7ff1ce0164b)) + (gr_line (start 141.75905 78.0381) (end 140.74482 74.65639) (layer "Edge.Cuts") (width 0.2) (tstamp c45dabef-ee54-4b8d-98fe-bb7c994323dc)) + (gr_line (start 141.84445 95.5447) (end 142.521068 92.07754) (layer "Edge.Cuts") (width 0.2) (tstamp c56f74d6-b588-4b50-b5e4-e8968f69105a)) + (gr_line (start 104.46366 123.791826) (end 100.91245 123.452824) (layer "Edge.Cuts") (width 0.2) (tstamp c5db9733-18f0-4e37-b565-109378c84ca4)) + (gr_line (start 76.47153 65.0142) (end 75.963032 65.606754) (layer "Edge.Cuts") (width 0.2) (tstamp c6c80ebc-1b5f-4657-8847-b631e5a0b5da)) + (gr_line (start 140.91429 98.92785) (end 139.56105 102.2255) (layer "Edge.Cuts") (width 0.2) (tstamp c85c9ec2-e17c-4fbd-b261-805632489822)) + (gr_line (start 128.99005 112.2893) (end 129.411736 111.359123) (layer "Edge.Cuts") (width 0.2) (tstamp c94119e7-e076-4a40-ad23-91b14c7b1fb3)) + (gr_line (start 130.934527 110.091282) (end 130.00435 110.5984) (layer "Edge.Cuts") (width 0.2) (tstamp c9804a71-4db7-4b67-a8e9-bfdf9c39b6e1)) + (gr_line (start 79.68515 109.9218) (end 80.69935 109.9218) (layer "Edge.Cuts") (width 0.2) (tstamp cb15c7e1-f869-4ebe-9708-aca8348e0d8e)) + (gr_line (start 134.65525 109.5842) (end 135.585427 108.907575) (layer "Edge.Cuts") (width 0.2) (tstamp cb2bfa8e-616e-433c-afc8-4cf505936847)) + (gr_line (start 111.48345 123.452824) (end 114.95061 122.692143) (layer "Edge.Cuts") (width 0.2) (tstamp cc8ebcb5-7070-4085-8d2a-b8a8b63c2325)) + (gr_line (start 133.13381 63.999937) (end 134.31755 64.2535) (layer "Edge.Cuts") (width 0.2) (tstamp cccb7461-4053-441d-bd75-70d0cc382378)) + (gr_line (start 128.99005 60.6169) (end 128.99005 59.4331) (layer "Edge.Cuts") (width 0.2) (tstamp cccbe4ed-56b5-4b93-bdf5-280fe60ee941)) + (gr_line (start 82.05255 63.3234) (end 81.12237 63.830522) (layer "Edge.Cuts") (width 0.2) (tstamp cd113228-94ff-48bd-bdb7-cb08ef396f96)) + (gr_line (start 115.45768 51.313747) (end 117.99465 52.0758) (layer "Edge.Cuts") (width 0.2) (tstamp ce30f749-4ea4-4772-9623-13d3e1d3a5ee)) + (gr_line (start 129.15815 62.0542) (end 128.904591 61.124023) (layer "Edge.Cuts") (width 0.2) (tstamp cee17292-4f37-4030-b8b2-256058d86f8b)) + (gr_line (start 112.667195 49.030257) (end 113.09025 49.1157) (layer "Edge.Cuts") (width 0.2) (tstamp cf3b546c-f18f-438d-bdb3-f7096f65aa04)) + (gr_line (start 86.872952 68.313258) (end 87.21195 67.8902) (layer "Edge.Cuts") (width 0.2) (tstamp cf6a1453-4bb3-4a26-817b-6c94c74663b7)) + (gr_line (start 96.767332 50.976077) (end 97.44395 50.0459) (layer "Edge.Cuts") (width 0.2) (tstamp d0f980aa-1825-438f-8848-47e9cfb9cc2c)) + (gr_line (start 100.91248 123.452822) (end 97.44395 122.86164) (layer "Edge.Cuts") (width 0.2) (tstamp d5ddf5c9-6f8c-4e30-806e-ba42114acb56)) + (gr_line (start 69.53584 92.4152) (end 70.297897 95.88373) (layer "Edge.Cuts") (width 0.2) (tstamp d68d643c-15db-43a9-95f6-27ba9dee7e6a)) + (gr_line (start 137.78475 68.2278) (end 136.09389 65.60677) (layer "Edge.Cuts") (width 0.2) (tstamp d8e311c5-5205-4591-b42b-b05eed48551e)) + (gr_line (start 124.25375 67.7207) (end 87.80315 67.7207) (layer "Edge.Cuts") (width 0.2) (tstamp d9519058-d0d0-4490-af2c-05a59ca2b765)) + (gr_line (start 78.839 109.921863) (end 77.73932 109.6683) (layer "Edge.Cuts") (width 0.2) (tstamp d9944e1c-ae3a-4316-9532-3626013f7e34)) + (gr_line (start 129.41175 111.3591) (end 130.004304 110.598419) (layer "Edge.Cuts") (width 0.2) (tstamp d9b3fa42-3789-4ded-8515-e2a1ecdb23ff)) + (gr_line (start 118.33364 121.67652) (end 114.95055 122.69214) (layer "Edge.Cuts") (width 0.2) (tstamp da114603-9f44-4b16-8099-6fac9a26214c)) + (gr_line (start 93.21615 52.4134) (end 89.91712 53.76663) (layer "Edge.Cuts") (width 0.2) (tstamp daa1a545-5be8-4854-870f-17fbea2bd20f)) + (gr_line (start 128.22805 116.26496) (end 128.735161 115.24934) (layer "Edge.Cuts") (width 0.2) (tstamp db06e9e9-1b26-4172-837a-614a1c59a9ff)) + (gr_line (start 80.69935 109.9218) (end 79.68515 109.9218) (layer "Edge.Cuts") (width 0.2) (tstamp db321d02-9246-4f0f-a472-38bb00f8b4e0)) + (gr_line (start 131.86465 109.9218) (end 132.37175 109.9218) (layer "Edge.Cuts") (width 0.2) (tstamp de78fb7e-d07e-4987-8fd6-a43ee20d8ee5)) + (gr_line (start 70.1284 78.37709) (end 71.14264 74.994) (layer "Edge.Cuts") (width 0.2) (tstamp dec37474-4aa7-499c-aec0-4ab21b969b38)) + (gr_line (start 114.95061 122.692143) (end 111.48345 123.452824) (layer "Edge.Cuts") (width 0.2) (tstamp df6968c0-8cc4-48e5-a942-4db5b47819e7)) + (gr_line (start 128.90465 61.124) (end 128.990082 60.616882) (layer "Edge.Cuts") (width 0.2) (tstamp dfc5671a-9bce-417c-a5e5-a33f2a46a127)) + (gr_line (start 127.974499 57.403323) (end 128.56705 58.3335) (layer "Edge.Cuts") (width 0.2) (tstamp e077aaab-e2f3-4daa-aced-5b7d9bc76b27)) + (gr_line (start 69.198221 85.3968) (end 69.198221 88.948) (layer "Edge.Cuts") (width 0.2) (tstamp e25470ba-ce2c-42ab-bfa2-b862a4d86375)) + (gr_line (start 97.44395 50.0459) (end 96.767332 50.976077) (layer "Edge.Cuts") (width 0.2) (tstamp e289eb87-89bc-4aec-bd15-d09963a342cd)) + (gr_line (start 131.35755 64) (end 132.37175 64) (layer "Edge.Cuts") (width 0.2) (tstamp e2a629eb-c1b0-46c9-9810-3409f0f8310f)) + (gr_line (start 129.66535 62.9857) (end 129.158232 62.054144) (layer "Edge.Cuts") (width 0.2) (tstamp e2d753fd-9c25-4751-8839-63ca6a9e64cc)) + (gr_line (start 124.253692 67.720657) (end 124.67675 67.8061) (layer "Edge.Cuts") (width 0.2) (tstamp e600a537-345e-4492-80ce-ea4c67a3fb1a)) + (gr_line (start 128.904591 61.124023) (end 129.15815 62.0542) (layer "Edge.Cuts") (width 0.2) (tstamp e6994f6f-844c-4b1d-9b05-6039b0d52123)) + (gr_line (start 80.69935 109.9218) (end 81.62953 110.344855) (layer "Edge.Cuts") (width 0.2) (tstamp e868ef30-eb4b-43bb-87b7-667f181cf4f2)) + (gr_line (start 112.66715 49.0303) (end 109.11595 48.6086) (layer "Edge.Cuts") (width 0.2) (tstamp e872d8b3-5b7f-4b91-9386-697df44e34b0)) + (gr_line (start 128.99005 112.2893) (end 128.99005 113.3049) (layer "Edge.Cuts") (width 0.2) (tstamp e993b859-e4c6-494a-a71d-6729e3fc4970)) + (gr_line (start 136.09385 108.315) (end 137.9542 105.35496) (layer "Edge.Cuts") (width 0.2) (tstamp e999f539-dcef-4ec2-947e-f705ddd7dc7e)) + (gr_line (start 141.759025 78.03807) (end 142.43565 81.5066) (layer "Edge.Cuts") (width 0.2) (tstamp eaef1efe-07b7-4c84-9fd2-7e8e2a10a5ca)) + (gr_line (start 142.43565 81.5066) (end 141.759025 78.03807) (layer "Edge.Cuts") (width 0.2) (tstamp ebcba516-d64f-41b4-8b77-7a4cb3dc5e8c)) + (gr_line (start 74.27217 105.6926) (end 75.96303 108.31501) (layer "Edge.Cuts") (width 0.2) (tstamp ec393646-6b6f-45d5-b3c2-549fc4e756e8)) + (gr_line (start 125.099834 68.227802) (end 125.26795 68.7363) (layer "Edge.Cuts") (width 0.2) (tstamp ef1ab898-6082-42d1-93e5-487ca17aa0dd)) + (gr_line (start 125.09985 68.2278) (end 124.676785 67.806121) (layer "Edge.Cuts") (width 0.2) (tstamp ef6abef0-c350-4bd7-880b-0cc20d0e0053)) + (gr_line (start 125.183905 105.608542) (end 124.76085 106.0316) (layer "Edge.Cuts") (width 0.2) (tstamp f02e05df-63fd-43c6-9439-f3093a210970)) + (gr_line (start 121.20829 53.42901) (end 124.42325 55.0358) (layer "Edge.Cuts") (width 0.2) (tstamp f03a4891-26d5-428d-8cd8-d18eb6c42283)) + (gr_line (start 104.46365 123.791826) (end 108.01625 123.791826) (layer "Edge.Cuts") (width 0.2) (tstamp f06808c1-d8a7-46d6-b20c-b712cac3f6c5)) + (gr_line (start 87.80315 106.2011) (end 124.25375 106.2011) (layer "Edge.Cuts") (width 0.2) (tstamp f287baa5-1d01-4e32-a778-e6b3e7760beb)) + (gr_line (start 136.09385 65.6068) (end 135.247726 64.760687) (layer "Edge.Cuts") (width 0.2) (tstamp f324a404-ccbf-4f5b-ac00-539888e5140d)) + (gr_line (start 121.6313 120.40874) (end 118.33365 121.67653) (layer "Edge.Cuts") (width 0.2) (tstamp f476de9d-715a-48cf-a0e1-9985899a162c)) + (gr_line (start 114.10445 49.6229) (end 113.09021 49.115778) (layer "Edge.Cuts") (width 0.2) (tstamp f6204fe9-9328-4ad2-8012-599bf3392954)) + (gr_line (start 75.96303 108.31501) (end 74.27217 105.6926) (layer "Edge.Cuts") (width 0.2) (tstamp f6357e0b-6da5-453e-a12a-d38d2e125c08)) + (gr_line (start 72.49587 71.7804) (end 74.10267 68.5668) (layer "Edge.Cuts") (width 0.2) (tstamp f6be6180-ef79-408d-9413-509959fb658b)) + (gr_line (start 98.29005 49.3693) (end 97.44393 50.045918) (layer "Edge.Cuts") (width 0.2) (tstamp f7834d1f-5fe9-4073-a9b9-80742e5f7005)) + (gr_line (start 86.958449 105.778051) (end 86.78895 105.1855) (layer "Edge.Cuts") (width 0.2) (tstamp f804872d-f56c-49ec-8089-76018849b2ec)) + (gr_line (start 140.91425 98.9278) (end 141.844427 95.54471) (layer "Edge.Cuts") (width 0.2) (tstamp f907e459-a529-4505-8d62-1c03b3cb2d9d)) + (gr_line (start 82.64515 62.5627) (end 82.052592 63.323378) (layer "Edge.Cuts") (width 0.2) (tstamp f99b649a-19bc-466e-83dd-37a92e2209d4)) + (gr_line (start 84.08245 116.51852) (end 84.675008 117.025638) (layer "Edge.Cuts") (width 0.2) (tstamp f9fd033d-9be7-484a-b7c2-489254184de3)) + (gr_line (start 69.198221 88.948) (end 69.53584 92.41516) (layer "Edge.Cuts") (width 0.2) (tstamp fa671f80-b808-4024-8c60-a80218865041)) + (gr_line (start 132.37175 109.9218) (end 133.55685 109.9218) (layer "Edge.Cuts") (width 0.2) (tstamp fc53f6dd-2173-4a24-b709-2b79d59c7f10)) + (gr_line (start 86.87296 55.45884) (end 89.91705 53.7666) (layer "Edge.Cuts") (width 0.2) (tstamp fcd72624-b1fd-4c2d-b008-ea6ff8f29a2b)) + (gr_line (start 117.99465 52.0758) (end 115.45768 51.313747) (layer "Edge.Cuts") (width 0.2) (tstamp fd389323-e802-487d-b6a7-e6ab027011e6)) + (gr_line (start 97.44395 122.86164) (end 100.91248 123.452822) (layer "Edge.Cuts") (width 0.2) (tstamp fd4d2574-1b1f-4b67-af06-bdc113ed183e)) + (gr_line (start 124.76085 118.71788) (end 127.38326 117.02564) (layer "Edge.Cuts") (width 0.2) (tstamp feaf7761-47d3-4430-b6e9-e3fc7570cfac)) + (gr_line (start 128.990082 60.616882) (end 128.90465 61.124) (layer "Edge.Cuts") (width 0.2) (tstamp ff0ac318-3df1-4ee5-9229-65a3f0d4c59c)) + (gr_text "SWCLK\nSWDIO\nGND\n3V3\nBOOT0\nNRST" (at 71.8566 87.757) (layer "F.SilkS") (tstamp 113f8ed4-1eee-4dde-8e0d-f3effbc1663f) + (effects (font (size 0.7 1) (thickness 0.15)) (justify left)) + ) + (gr_text "3.3V" (at 130.9116 93.3196) (layer "F.SilkS") (tstamp 39e69d4f-9d8c-4033-8f9e-7493f627bd4b) + (effects (font (size 2.5 2.5) (thickness 0.4))) + ) + (gr_text "5V" (at 128.5494 75.946) (layer "F.SilkS") (tstamp 70eef9e7-96e9-435b-848c-91e04270d5d1) + (effects (font (size 2.5 2.5) (thickness 0.4))) + ) + (gr_text "Gnd" (at 138.6332 93.1164) (layer "F.SilkS") (tstamp 7d8f0153-a392-416b-8b37-2c61645482c5) + (effects (font (size 2.5 2.5) (thickness 0.4))) + ) + + (segment (start 81.6472 96.6) (end 81.6472 98.4642) (width 0.25) (layer "F.Cu") (net 1) (tstamp 7801d610-5d42-4c6e-b5df-c1db753fcc7e)) + (segment (start 81.6472 98.4642) (end 81.661 98.478) (width 0.25) (layer "F.Cu") (net 1) (tstamp 8dcfdbaf-6b25-4b44-9482-691826554628)) + (segment (start 78.8375 93.7903) (end 81.6472 96.6) (width 0.25) (layer "B.Cu") (net 1) (tstamp 251bbcce-6a3c-4cd9-aef1-968022faafbf)) + (segment (start 78.8375 90.8525) (end 78.8375 93.7903) (width 0.25) (layer "B.Cu") (net 1) (tstamp ed68fff9-6e38-4359-942b-3a2906444b1a)) + (segment (start 91.8464 58.5216) (end 89.5096 58.5216) (width 0.2) (layer "F.Cu") (net 2) (tstamp 126a909f-5f1c-4a87-91b2-95c2aa5b7658)) + (segment (start 84.582 80.7466) (end 84.582 77.0636) (width 0.2) (layer "F.Cu") (net 2) (tstamp 13d01c33-544a-4b57-88c7-c4a9b06a2e82)) + (segment (start 80.6196 75.4888) (end 77.6732 75.4888) (width 0.2) (layer "F.Cu") (net 2) (tstamp 2443511e-50b4-4e98-a014-3942b729eb45)) + (segment (start 112.4712 62.0268) (end 115.8748 62.0268) (width 1) (layer "F.Cu") (net 2) (tstamp 45c94551-cf57-4c6f-9916-408fbf54217a)) + (segment (start 92.1004 58.2676) (end 91.8718 58.4962) (width 0.2) (layer "F.Cu") (net 2) (tstamp 4c7f9ebe-7f0b-4bd3-a194-f1b39fb636f3)) + (segment (start 77.597 78.8162) (end 77.3176 79.0956) (width 0.25) (layer "F.Cu") (net 2) (tstamp 4ed85778-ba28-4095-a07d-c93b5f2ee9a1)) + (segment (start 84.074 113.3348) (end 85.5472 114.808) (width 0.2) (layer "F.Cu") (net 2) (tstamp 55f53071-c42e-47f4-a068-cd27276b6e97)) + (segment (start 77.597 77.9018) (end 77.597 78.8162) (width 0.25) (layer "F.Cu") (net 2) (tstamp 579cebf5-e687-4b27-9291-39f79de07dc8)) + (segment (start 81.661 108.7628) (end 81.661 109.4486) (width 0.2) (layer "F.Cu") (net 2) (tstamp 5e5fb896-8746-42b0-bf2d-b8d5ddb4295c)) + (segment (start 77.597 75.565) (end 77.597 77.9018) (width 0.2) (layer "F.Cu") (net 2) (tstamp 69cc5df0-16ab-45f8-bcb2-fb7be45c47fc)) + (segment (start 86.0298 115.2906) (end 109.4232 115.2906) (width 0.2) (layer "F.Cu") (net 2) (tstamp 6e366d0b-b68b-4397-ab6e-d85793955d09)) + (segment (start 85.5472 114.808) (end 86.0298 115.2906) (width 0.2) (layer "F.Cu") (net 2) (tstamp 70acd569-de25-4038-adbb-3d1d38226a8b)) + (segment (start 77.3176 79.0956) (end 73.8886 79.0956) (width 0.25) (layer "F.Cu") (net 2) (tstamp 816ab553-9187-46d8-81e6-07fb85ac2dbc)) + (segment (start 115.4684 58.5216) (end 114.3 58.5216) (width 1) (layer "F.Cu") (net 2) (tstamp 83034574-41f2-4e45-99cc-a5d3ff59e780)) + (segment (start 115.8748 62.0268) (end 115.8748 58.928) (width 1) (layer "F.Cu") (net 2) (tstamp 884af2f0-4a48-4dce-9e25-f95cd7ccb415)) + (segment (start 91.8718 58.4962) (end 91.8464 58.5216) (width 0.2) (layer "F.Cu") (net 2) (tstamp 9e5a2f8d-5fcd-4c53-bb34-6e05cd9a84d8)) + (segment (start 115.8748 58.928) (end 115.4684 58.5216) (width 1) (layer "F.Cu") (net 2) (tstamp a3592784-fa94-43d9-9bf9-d6d2b3cbd5a5)) + (segment (start 84.074 111.8616) (end 84.074 113.3348) (width 0.2) (layer "F.Cu") (net 2) (tstamp a5e223db-64c9-4e43-b0da-8bf003e6427b)) + (segment (start 81.661 109.4486) (end 84.074 111.8616) (width 0.2) (layer "F.Cu") (net 2) (tstamp a96661a1-611c-4167-8873-9e9cc37414a1)) + (segment (start 81.661 107.9246) (end 81.661 108.7628) (width 0.2) (layer "F.Cu") (net 2) (tstamp af2b4f3e-d2d2-4e67-95bf-35c46d18f5a0)) + (segment (start 92.1004 57.1424) (end 92.1004 58.2676) (width 0.2) (layer "F.Cu") (net 2) (tstamp c7306ed7-1707-40c9-a38d-52b6b16252a6)) + (segment (start 77.6732 75.4888) (end 77.597 75.565) (width 0.2) (layer "F.Cu") (net 2) (tstamp cbf5403e-b4e1-4df9-89fa-e08d772fa001)) + (segment (start 81.661 100.203) (end 81.661 107.9246) (width 0.2) (layer "F.Cu") (net 2) (tstamp dbb713c8-e05b-42ee-bdb5-38023a1bca63)) + (segment (start 80.8482 75.2602) (end 80.6196 75.4888) (width 0.2) (layer "F.Cu") (net 2) (tstamp edfedc46-352d-4452-9559-161a888de18f)) + (via (at 109.4232 115.2906) (size 1.2) (drill 0.8) (layers "F.Cu" "B.Cu") (net 2) (tstamp 0678a324-6d14-4739-9084-02f2f101bc66)) + (via (at 89.5096 58.5216) (size 0.8) (drill 0.5) (layers "F.Cu" "B.Cu") (net 2) (tstamp 1857c688-969a-4626-9c18-2aa8ca564cc6)) + (via (at 77.6732 75.4888) (size 1.2) (drill 0.8) (layers "F.Cu" "B.Cu") (net 2) (tstamp 2d0f2dbc-d3c6-48c5-8ec4-d1bbabb23c31)) + (via (at 112.4712 62.0268) (size 1.2) (drill 0.8) (layers "F.Cu" "B.Cu") (net 2) (tstamp 35e8c7c4-702c-444f-b87e-585e49aa1f5d)) + (via (at 84.582 80.7466) (size 0.8) (drill 0.5) (layers "F.Cu" "B.Cu") (net 2) (tstamp 45238b4f-4a15-486d-9515-2c93827cd38f)) + (via (at 73.8886 79.0956) (size 0.8) (drill 0.5) (layers "F.Cu" "B.Cu") (net 2) (tstamp 4ea19285-a005-4bd8-beb3-da44c8c6aaf8)) + (via (at 114.3 58.5216) (size 1.2) (drill 0.8) (layers "F.Cu" "B.Cu") (net 2) (tstamp 53d2fbde-c8fb-41bd-bac4-832afc517840)) + (via (at 84.582 77.0636) (size 0.8) (drill 0.5) (layers "F.Cu" "B.Cu") (net 2) (tstamp 5539f576-dbcd-480a-988a-cfb432a11c6d)) + (via (at 80.8482 75.2602) (size 1.2) (drill 0.8) (layers "F.Cu" "B.Cu") (net 2) (tstamp 703e0043-9b56-45ba-9a3c-696483d201b5)) + (via (at 71.8312 87.4268) (size 0.8) (drill 0.5) (layers "F.Cu" "B.Cu") (net 2) (tstamp e70b487d-2c84-42ff-85f8-2001c9e1059e)) + (segment (start 108.4326 66.802) (end 109.64 65.5946) (width 1) (layer "B.Cu") (net 2) (tstamp 05bb3666-c242-4a56-b8da-211bbf7f4e2a)) + (segment (start 109.64 64.1722) (end 111.7854 62.0268) (width 1) (layer "B.Cu") (net 2) (tstamp 0684751d-50d6-4261-8b51-f51605eeaa72)) + (segment (start 109.4232 115.2906) (end 116.7892 115.2906) (width 0.2) (layer "B.Cu") (net 2) (tstamp 06928589-1e61-4aa9-ace5-9d57acccf844)) + (segment (start 91.0336 60.0456) (end 91.6686 60.0456) (width 0.25) (layer "B.Cu") (net 2) (tstamp 0808b3c7-1a5a-4bbc-ae6b-fd1ecc5a458d)) + (segment (start 82.25 88.94) (end 84.0124 88.94) (width 0.2) (layer "B.Cu") (net 2) (tstamp 0db8795f-0bd7-4a06-ab23-a172567c12ae)) + (segment (start 98.0186 66.802) (end 108.4326 66.802) (width 1) (layer "B.Cu") (net 2) (tstamp 1c890f57-7db2-475e-958b-56a3fd52fbc0)) + (segment (start 82.6516 77.0636) (end 80.8482 75.2602) (width 0.2) (layer "B.Cu") (net 2) (tstamp 1db91bbd-2600-42e6-9374-51ab8c39f6f2)) + (segment (start 92.6084 59.1058) (end 91.6686 60.0456) (width 0.25) (layer "B.Cu") (net 2) (tstamp 24d40067-e446-4495-8f67-16f0e384aaf4)) + (segment (start 71.5932 87.1888) (end 71.8312 87.4268) (width 0.25) (layer "B.Cu") (net 2) (tstamp 2b26126b-2e64-4e4f-be97-47867823d6cc)) + (segment (start 77.3375 90.8525) (end 77.3375 92.9331) (width 0.2) (layer "B.Cu") (net 2) (tstamp 2eb2e673-d75e-4e5e-bae5-ed2538f53fba)) + (segment (start 80.3375 81.1557) (end 80.3375 82.5275) (width 0.2) (layer "B.Cu") (net 2) (tstamp 34b03e72-dc87-4c5f-9d8b-a370dbe58936)) + (segment (start 138.6586 84.6582) (end 138.6586 89.535) (width 0.5) (layer "B.Cu") (net 2) (tstamp 37202788-4240-4f41-b0d0-8f3ca309caf5)) + (segment (start 84.582 80.7974) (end 84.582 80.7466) (width 0.2) (layer "B.Cu") (net 2) (tstamp 3af37731-2277-47c9-9b60-c559bbd1fe51)) + (segment (start 84.0124 88.94) (end 84.4804 89.408) (width 0.2) (layer "B.Cu") (net 2) (tstamp 5a95824e-6f31-4304-bcfb-815da4064af7)) + (segment (start 138.6332 93.4466) (end 138.6332 89.5604) (width 0.2) (layer "B.Cu") (net 2) (tstamp 6042e4b7-6b31-41d0-96f6-96212e54bc37)) + (segment (start 82.677 80.7974) (end 84.582 80.7974) (width 0.2) (layer "B.Cu") (net 2) (tstamp 62aa6f2e-072e-4b28-bc6d-7500327b3cab)) + (segment (start 97.31 66.26) (end 97.4766 66.26) (width 1) (layer "B.Cu") (net 2) (tstamp 66c3b28a-e771-4965-80f0-55d63c61845f)) + (segment (start 80.6958 80.7974) (end 80.3375 81.1557) (width 0.2) (layer "B.Cu") (net 2) (tstamp 6d85c7eb-8126-4dec-882f-ac4d86fec3e6)) + (segment (start 72.0598 83.6168) (end 72.883 84.44) (width 0.25) (layer "B.Cu") (net 2) (tstamp 72b3c9e5-d7eb-4edd-95db-8364a59d1399)) + (segment (start 98.6066 59.1058) (end 92.6084 59.1058) (width 0.25) (layer "B.Cu") (net 2) (tstamp 78df777f-da4c-49f5-968f-d179efcdd05a)) + (segment (start 84.582 77.0636) (end 82.6516 77.0636) (width 0.2) (layer "B.Cu") (net 2) (tstamp 7accfef3-3c5d-43f6-aa03-5c1e19ae175b)) + (segment (start 110.9218 58.4708) (end 114.2492 58.4708) (width 0.25) (layer "B.Cu") (net 2) (tstamp 7ea0dd75-4638-4776-bd3f-41725b4d22a8)) + (segment (start 116.7892 115.2906) (end 138.6332 93.4466) (width 0.2) (layer "B.Cu") (net 2) (tstamp 8a4b3078-9aa8-48f6-a54a-54e31bbee89e)) + (segment (start 70.5866 87.1888) (end 71.5932 87.1888) (width 0.25) (layer "B.Cu") (net 2) (tstamp 8f601e45-b7d5-4aa2-b0a1-4a9e00a8faff)) + (segment (start 138.6586 89.535) (end 138.6332 89.5604) (width 0.5) (layer "B.Cu") (net 2) (tstamp 9b2f6054-d11b-48ed-9feb-92bf446da640)) + (segment (start 72.0598 80.9244) (end 72.0598 81.9658) (width 0.25) (layer "B.Cu") (net 2) (tstamp a2b84d1c-a9b4-484a-a117-eb7eeacae1de)) + (segment (start 114.2492 58.4708) (end 114.3 58.5216) (width 0.25) (layer "B.Cu") (net 2) (tstamp ae2822c9-5ef5-44b0-b43f-62d58de41589)) + (segment (start 109.64 65.5946) (end 109.64 64.82) (width 1) (layer "B.Cu") (net 2) (tstamp b07ffa92-02d9-484b-8fa4-e8ed2e737322)) + (segment (start 77.3375 92.9331) (end 77.343 92.9386) (width 0.2) (layer "B.Cu") (net 2) (tstamp b41868e2-1875-450b-847a-5b6bb0bbfe8e)) + (segment (start 109.64 64.82) (end 109.64 64.1722) (width 1) (layer "B.Cu") (net 2) (tstamp b84680a7-5246-4c1a-b9f9-1df963723ddd)) + (segment (start 97.4766 66.26) (end 98.0186 66.802) (width 1) (layer "B.Cu") (net 2) (tstamp c5a5c56b-8cd4-4d09-9c7e-a8ebeab72952)) + (segment (start 89.5096 58.5216) (end 91.0336 60.0456) (width 0.25) (layer "B.Cu") (net 2) (tstamp c85e8d0f-c176-49d0-a223-ce2b1987891f)) + (segment (start 73.8886 79.0956) (end 72.0598 80.9244) (width 0.25) (layer "B.Cu") (net 2) (tstamp c969f382-0f8f-417b-a4a9-b0a1082aadb5)) + (segment (start 82.677 80.7974) (end 80.6958 80.7974) (width 0.2) (layer "B.Cu") (net 2) (tstamp d69680da-a79b-43e7-89a6-431d50c1f517)) + (segment (start 111.7854 62.0268) (end 112.4712 62.0268) (width 1) (layer "B.Cu") (net 2) (tstamp d8b42677-172a-438e-9b20-44e3ef482c01)) + (segment (start 84.4804 89.408) (end 84.4804 91.1606) (width 0.2) (layer "B.Cu") (net 2) (tstamp def9a5e8-8e7b-4beb-90e4-a9b54a798167)) + (segment (start 72.0598 81.9658) (end 72.0598 83.6168) (width 0.25) (layer "B.Cu") (net 2) (tstamp e2855a82-6946-4d51-8931-d3788b8c8c0e)) + (segment (start 72.883 84.44) (end 73.925 84.44) (width 0.25) (layer "B.Cu") (net 2) (tstamp fa42ecdd-81d0-4851-b5ef-332971a76dcb)) + (segment (start 76.7672 96.6) (end 74.9124 96.6) (width 0.25) (layer "F.Cu") (net 3) (tstamp 568056ae-18bc-447e-8226-be2b05306080)) + (segment (start 74.9124 96.6) (end 74.9024 96.61) (width 0.25) (layer "F.Cu") (net 3) (tstamp 65ab1e80-8709-4a6d-a185-6c00528d0e10)) + (segment (start 78.3375 95.0297) (end 76.7672 96.6) (width 0.25) (layer "B.Cu") (net 3) (tstamp 925e614f-5b3a-480d-a807-fc361e2b626f)) + (segment (start 78.3375 90.8525) (end 78.3375 95.0297) (width 0.25) (layer "B.Cu") (net 3) (tstamp c6ebb2f8-9b8b-4632-a852-8a91066d580a)) + (segment (start 108.06 55.515) (end 108.06 60.342) (width 0.5) (layer "F.Cu") (net 4) (tstamp 24b2127a-d1ad-488a-b0f9-a11dd334d2cb)) + (segment (start 102.5144 57.3532) (end 101.8032 57.3532) (width 0.25) (layer "F.Cu") (net 4) (tstamp 328d5ee6-7f1f-49a2-9e11-87489be2ac3e)) + (segment (start 103.16 56.7076) (end 102.5144 57.3532) (width 0.25) (layer "F.Cu") (net 4) (tstamp 3af6f20a-a31c-4c5f-b592-6e9bc70d39cd)) + (segment (start 108.0516 60.3504) (end 95.7834 60.3504) (width 0.25) (layer "F.Cu") (net 4) (tstamp 49da025b-2f05-4dc5-98e2-35859da96756)) + (segment (start 95.7834 60.3504) (end 94.2086 61.9252) (width 0.25) (layer "F.Cu") (net 4) (tstamp 5c647b79-a4e2-45a9-917c-55189c3bc434)) + (segment (start 92.5576 61.9252) (end 92.1004 61.468) (width 0.25) (layer "F.Cu") (net 4) (tstamp 8ddf5bee-e484-42fd-a448-0d86185e9013)) + (segment (start 103.16 55.515) (end 103.16 56.7076) (width 0.25) (layer "F.Cu") (net 4) (tstamp a1487a37-a7e5-473a-9dd8-5a6dc82e9549)) + (segment (start 92.1004 61.468) (end 92.1004 59.8424) (width 0.25) (layer "F.Cu") (net 4) (tstamp ab93d433-99e0-4b7e-9e52-756c7028053c)) + (segment (start 108.0516 60.3504) (end 108.06 60.342) (width 0.5) (layer "F.Cu") (net 4) (tstamp d36183c3-ee5c-4c00-87d7-314db6163b04)) + (segment (start 94.2086 61.9252) (end 92.5576 61.9252) (width 0.25) (layer "F.Cu") (net 4) (tstamp fe78f997-183b-484f-9aa4-2dde5c81bb20)) + (via (at 108.0516 60.3504) (size 1.2) (drill 0.8) (layers "F.Cu" "B.Cu") (net 4) (tstamp b010d056-5716-4906-8de0-f2d05d64923d)) + (via (at 101.8032 57.3532) (size 1.2) (drill 0.8) (layers "F.Cu" "B.Cu") (net 4) (tstamp e4f80584-1ee4-462a-a709-4a12c74a542c)) + (segment (start 113.5126 60.3504) (end 108.0516 60.3504) (width 1) (layer "B.Cu") (net 4) (tstamp 219ab5e3-add3-4095-bf35-5001a0e034f3)) + (segment (start 108.0516 63.1698) (end 108.0516 60.3504) (width 1) (layer "B.Cu") (net 4) (tstamp 21c706b2-b084-41b8-b5bb-16aed72b70ad)) + (segment (start 101.8032 59.7408) (end 102.4128 60.3504) (width 0.5) (layer "B.Cu") (net 4) (tstamp 2dbd52fa-a4c6-4b1a-bec3-f5d5eb761911)) + (segment (start 114.04 66.09) (end 114.04 60.8778) (width 1) (layer "B.Cu") (net 4) (tstamp 3113bb62-8b48-4e89-a4a5-652012a67180)) + (segment (start 134.5184 67.7926) (end 134.2898 67.564) (width 1) (layer "B.Cu") (net 4) (tstamp 32640d72-ab5c-4931-85fc-766e1ebae8da)) + (segment (start 101.8032 57.3532) (end 101.8032 59.7408) (width 0.5) (layer "B.Cu") (net 4) (tstamp 45eb497e-abe7-4b34-9927-7be4270e80c7)) + (segment (start 127.6096 68.961) (end 125.222 66.5734) (width 1) (layer "B.Cu") (net 4) (tstamp 61c43410-3d56-4872-889a-5fd23ec2c334)) + (segment (start 127.6096 68.961) (end 127.6096 72.2376) (width 1) (layer "B.Cu") (net 4) (tstamp 792d66c7-5513-424a-85eb-acd7893de064)) + (segment (start 102.4128 60.3504) (end 108.0516 60.3504) (width 0.5) (layer "B.Cu") (net 4) (tstamp 7b54e36b-8135-4aaf-9ce6-c47f92336224)) + (segment (start 106.7314 64.49) (end 108.0516 63.1698) (width 1) (layer "B.Cu") (net 4) (tstamp a6fe0f92-6dda-47ca-901f-ad03c0b9af2c)) + (segment (start 114.04 60.8778) (end 113.5126 60.3504) (width 1) (layer "B.Cu") (net 4) (tstamp ab922640-cd2a-48b4-9062-f54c199e903b)) + (segment (start 135.8278 72.1356) (end 135.8278 70.7022) (width 1) (layer "B.Cu") (net 4) (tstamp ad49ee03-e325-4e7f-ab63-0dcd77ac9950)) + (segment (start 123.4186 66.5734) (end 122.9352 66.09) (width 1) (layer "B.Cu") (net 4) (tstamp addd4987-3094-4a0a-9e91-e9104f299138)) + (segment (start 106.27 64.49) (end 106.7314 64.49) (width 1) (layer "B.Cu") (net 4) (tstamp aeaf190b-bbb6-4ac5-8e5b-811ac6d0da6f)) + (segment (start 135.8278 70.7022) (end 134.5184 69.3928) (width 1) (layer "B.Cu") (net 4) (tstamp b3a0ab96-aea6-49be-88c6-3c5fe3c7a43a)) + (segment (start 122.9352 66.09) (end 114.04 66.09) (width 1) (layer "B.Cu") (net 4) (tstamp c0b34701-03dc-4b12-9256-1065186881c0)) + (segment (start 134.2898 67.564) (end 129.0066 67.564) (width 1) (layer "B.Cu") (net 4) (tstamp dd7a0412-3116-47ec-bfb4-19a37f8f80d4)) + (segment (start 129.0066 67.564) (end 127.6096 68.961) (width 1) (layer "B.Cu") (net 4) (tstamp eaf59650-390e-4216-b256-245cba57ab9c)) + (segment (start 125.222 66.5734) (end 123.4186 66.5734) (width 1) (layer "B.Cu") (net 4) (tstamp f56359bc-24bf-42ce-bc48-8a7f58231fd0)) + (segment (start 134.5184 69.3928) (end 134.5184 67.7926) (width 1) (layer "B.Cu") (net 4) (tstamp fe777a80-10da-4339-85f5-0969440c7d11)) + (segment (start 85.4964 88.3158) (end 85.4964 106.2736) (width 1) (layer "F.Cu") (net 5) (tstamp 02c26926-64b7-4153-bb77-d3eb24304ed4)) + (segment (start 78.4352 84.1502) (end 81.5086 84.1502) (width 0.25) (layer "F.Cu") (net 5) (tstamp 06a26c2c-273b-4a0b-9b20-9c03a841453a)) + (segment (start 124.968 107.6706) (end 128.6764 103.9622) (width 1) (layer "F.Cu") (net 5) (tstamp 0c818709-95bf-43cf-8223-6541351d79de)) + (segment (start 80.1624 86.8426) (end 81.6356 86.8426) (width 1) (layer "F.Cu") (net 5) (tstamp 1270c98a-9e39-4858-afc7-d1b1fa2f29f6)) + (segment (start 81.6356 84.2772) (end 81.6356 86.8426) (width 0.25) (layer "F.Cu") (net 5) (tstamp 18608a3a-6d9b-4ffa-b47a-01f48a91c82d)) + (segment (start 81.6356 86.8426) (end 84.0232 86.8426) (width 1) (layer "F.Cu") (net 5) (tstamp 21c3ea8d-3412-4eec-952e-6da453afb01b)) + (segment (start 81.5086 84.1502) (end 81.6356 84.2772) (width 0.25) (layer "F.Cu") (net 5) (tstamp 31e18fb3-cf78-43e4-afd9-3dd9e51bad52)) + (segment (start 128.6764 88.1888) (end 128.6764 87.2744) (width 1) (layer "F.Cu") (net 5) (tstamp 3b8b6a86-6a6f-4ee9-8710-2dbf89d582a8)) + (segment (start 80.1624 86.8426) (end 80.1624 87.2744) (width 0.25) (layer "F.Cu") (net 5) (tstamp 509e9479-233b-46f5-acbc-9c92341f5087)) + (segment (start 85.4964 106.2736) (end 86.8934 107.6706) (width 1) (layer "F.Cu") (net 5) (tstamp 57708815-1125-4538-ba5b-f1a318a5f02e)) + (segment (start 79.5274 87.9094) (end 72.9742 87.9094) (width 0.25) (layer "F.Cu") (net 5) (tstamp 5d75bc7d-8066-4bb4-a773-9cc721128593)) + (segment (start 71.8312 88.5952) (end 71.4248 88.1888) (width 0.25) (layer "F.Cu") (net 5) (tstamp 61bf3d7d-2367-4320-8082-942f6e0597db)) + (segment (start 86.8934 107.6706) (end 124.968 107.6706) (width 1) (layer "F.Cu") (net 5) (tstamp 635d91c9-f0be-4369-ac71-9b9bfb0ddbba)) + (segment (start 72.2884 88.5952) (end 71.8312 88.5952) (width 0.25) (layer "F.Cu") (net 5) (tstamp 69bd4634-c1ad-4d78-b60d-1881f08b2b89)) + (segment (start 128.6764 87.2744) (end 131.064 84.8868) (width 1) (layer "F.Cu") (net 5) (tstamp 96bf0200-53d0-476a-89ae-4bcadd00c24e)) + (segment (start 84.0232 86.8426) (end 85.4964 88.3158) (width 1) (layer "F.Cu") (net 5) (tstamp 9b3fb267-7483-4778-b325-aea60700d0b8)) + (segment (start 128.6764 103.9622) (end 128.6764 88.1888) (width 1) (layer "F.Cu") (net 5) (tstamp afbaddb6-96a3-4788-9371-f8c3bd7fcd93)) + (segment (start 80.1624 87.2744) (end 79.5274 87.9094) (width 0.25) (layer "F.Cu") (net 5) (tstamp eb50341b-7486-44c4-b259-244991737589)) + (segment (start 72.9742 87.9094) (end 72.2884 88.5952) (width 0.25) (layer "F.Cu") (net 5) (tstamp f360850e-d796-4eb7-871a-a0ff19e75d82)) + (segment (start 71.4248 88.1888) (end 70.5866 88.1888) (width 0.25) (layer "F.Cu") (net 5) (tstamp f5e3f981-c8b8-41f5-8b81-e74e98a2c73a)) + (via (at 131.064 84.8868) (size 1.2) (drill 0.8) (layers "F.Cu" "B.Cu") (net 5) (tstamp 75bb5eb5-c4cc-484a-8dfb-8ce18be0c387)) + (via (at 80.1624 86.8426) (size 1.2) (drill 0.8) (layers "F.Cu" "B.Cu") (net 5) (tstamp 772b1ef5-a0ce-43ee-aff6-35989eb4b4b1)) + (via (at 78.4352 84.1502) (size 0.8) (drill 0.5) (layers "F.Cu" "B.Cu") (net 5) (tstamp bf72d71d-a11a-4e72-9523-f93a0e5e36eb)) + (segment (start 80.1624 86.8426) (end 79.5782 87.4268) (width 0.5) (layer "B.Cu") (net 5) (tstamp 03c4e3b7-6cf2-4d93-8ee0-abda46331604)) + (segment (start 133.5586 84.6582) (end 133.5586 81.226) (width 1) (layer "B.Cu") (net 5) (tstamp 06457e6f-2b01-40cc-ae2c-dcdd2589abc3)) + (segment (start 133.33 84.8868) (end 133.5586 84.6582) (width 1) (layer "B.Cu") (net 5) (tstamp 06e732fb-f88c-4158-9be7-94949144e041)) + (segment (start 133.5278 81.1508) (end 133.5808 81.2038) (width 0.5) (layer "B.Cu") (net 5) (tstamp 163f262a-7158-400d-a0d1-d0db4ff59715)) + (segment (start 80.8375 83.6529) (end 79.756 84.7344) (width 0.2) (layer "B.Cu") (net 5) (tstamp 2777b15e-5ef9-4035-99e6-2854da39913c)) + (segment (start 79.5782 89.1794) (end 79.8388 89.44) (width 0.25) (layer "B.Cu") (net 5) (tstamp 2a5cb4c1-a361-407b-b796-d033d8f44534)) + (segment (start 82.6719 82.5275) (end 82.677 82.5224) (width 0.2) (layer "B.Cu") (net 5) (tstamp 393939d1-18cf-4205-be06-5b2c91a21c1d)) + (segment (start 131.064 84.8868) (end 133.33 84.8868) (width 1) (layer "B.Cu") (net 5) (tstamp 44fc2ea3-a3c4-4c19-ab53-eeb1a1c6a4ed)) + (segment (start 76.8375 91.7677) (end 76.8375 90.8525) (width 0.2) (layer "B.Cu") (net 5) (tstamp 46ea96a5-f36f-43ac-b8a6-433727258872)) + (segment (start 133.5808 78.4886) (end 133.5278 78.4356) (width 1) (layer "B.Cu") (net 5) (tstamp 4e18c1be-0161-4adb-9737-5929c88e24fb)) + (segment (start 75.6666 92.9386) (end 76.8375 91.7677) (width 0.2) (layer "B.Cu") (net 5) (tstamp 50e2845d-47cc-42de-bf19-013fab82f8ee)) + (segment (start 82.25 89.44) (end 81.0448 89.44) (width 0.2) (layer "B.Cu") (net 5) (tstamp 57994323-6c2d-4624-ba8c-ddfc5df5f968)) + (segment (start 76.8375 88.7959) (end 76.8375 90.8525) (width 0.2) (layer "B.Cu") (net 5) (tstamp 5bb79d31-08e2-4ff0-9e3d-a4d998a1d327)) + (segment (start 133.5586 81.226) (end 133.5808 81.2038) (width 1) (layer "B.Cu") (net 5) (tstamp 6a917175-34e1-4187-8db2-b61ce8740074)) + (segment (start 80.8375 82.5275) (end 82.6719 82.5275) (width 0.2) (layer "B.Cu") (net 5) (tstamp 6dd15a47-6838-498d-b295-2f0ab75f8ce3)) + (segment (start 79.5782 87.4268) (end 79.5782 88.5444) (width 0.5) (layer "B.Cu") (net 5) (tstamp 7894c35b-b8fc-4cc6-ad07-54bc5a476ea5)) + (segment (start 78.225 83.94) (end 78.4352 84.1502) (width 0.2) (layer "B.Cu") (net 5) (tstamp 7b1d8108-2e47-4b2c-9efd-5aa7beedd11d)) + (segment (start 133.5586 84.6582) (end 133.5586 89.3518) (width 0.5) (layer "B.Cu") (net 5) (tstamp 88d4f024-8ae5-4775-ad45-c3faac2c5292)) + (segment (start 133.5586 89.3518) (end 133.35 89.5604) (width 0.5) (layer "B.Cu") (net 5) (tstamp 892c2ab2-f5c7-4fc0-b0cb-162da41f4881)) + (segment (start 77.8072 83.94) (end 78.225 83.94) (width 0.25) (layer "B.Cu") (net 5) (tstamp 8caae348-b3bc-4fb7-9ef3-5eb2b568592d)) + (segment (start 73.7848 83.7998) (end 73.925 83.94) (width 0.2) (layer "B.Cu") (net 5) (tstamp 9a2a0841-c743-4b6d-ba2c-50fa7a331df7)) + (segment (start 79.756 86.4362) (end 79.756 84.7344) (width 0.5) (layer "B.Cu") (net 5) (tstamp 9b3c5e84-7ba8-4f48-a9c6-5f55cab29dae)) + (segment (start 73.925 83.94) (end 77.8072 83.94) (width 0.25) (layer "B.Cu") (net 5) (tstamp 9e163c20-1a08-466c-85c5-5b536ff51d5e)) + (segment (start 133.5278 72.1356) (end 133.5278 78.4356) (width 0.5) (layer "B.Cu") (net 5) (tstamp a274dcc0-dc9f-4454-8d4f-59b4b1e6933f)) + (segment (start 80.8375 82.5275) (end 80.8375 83.6529) (width 0.2) (layer "B.Cu") (net 5) (tstamp a94d3cc0-b0c0-4c23-982c-f2b87b05bfa6)) + (segment (start 81.0448 89.44) (end 80.8375 89.6473) (width 0.2) (layer "B.Cu") (net 5) (tstamp aa1d60d1-2111-42d1-bcbc-7f364bb7f8e6)) + (segment (start 79.8388 89.44) (end 81.0448 89.44) (width 0.25) (layer "B.Cu") (net 5) (tstamp ae233552-c29b-4eb4-980b-583fe4e899cb)) + (segment (start 80.8375 89.6473) (end 80.8375 90.8525) (width 0.2) (layer "B.Cu") (net 5) (tstamp b0c51d6d-1113-4b04-8aec-2e9f87f61859)) + (segment (start 75.618 92.9386) (end 75.6666 92.9386) (width 0.2) (layer "B.Cu") (net 5) (tstamp b481a843-fc24-448f-96c3-97fa0f1ef249)) + (segment (start 82.25 90.6552) (end 82.7554 91.1606) (width 0.2) (layer "B.Cu") (net 5) (tstamp c095ed8a-40c9-4f94-b0a9-943c70a52518)) + (segment (start 79.5782 88.5444) (end 79.5782 89.1794) (width 0.5) (layer "B.Cu") (net 5) (tstamp c431e5b2-b7b1-4bdf-87b3-e6d35dac4921)) + (segment (start 77.089 88.5444) (end 76.8375 88.7959) (width 0.25) (layer "B.Cu") (net 5) (tstamp c82a6d12-977d-42d3-b101-2fe15f6819bb)) + (segment (start 133.5808 84.636) (end 133.5586 84.6582) (width 0.5) (layer "B.Cu") (net 5) (tstamp d7931ee4-5b33-40c2-9e93-84360c8c2cad)) + (segment (start 133.5808 81.2038) (end 133.5808 78.4886) (width 1) (layer "B.Cu") (net 5) (tstamp d9448e8d-4913-418b-8211-dd404d93a894)) + (segment (start 80.1624 86.8426) (end 79.756 86.4362) (width 0.5) (layer "B.Cu") (net 5) (tstamp d9df8d6c-63fc-484e-9c36-4930a0abf6a6)) + (segment (start 82.25 89.44) (end 82.25 90.6552) (width 0.2) (layer "B.Cu") (net 5) (tstamp e2c15ede-14d8-4768-9721-09b78c9f2a5c)) + (segment (start 73.7848 81.9658) (end 73.7848 83.7998) (width 0.2) (layer "B.Cu") (net 5) (tstamp e3f162fe-20c3-46f7-a56b-b84aa703ed90)) + (segment (start 79.5782 88.5444) (end 77.089 88.5444) (width 0.25) (layer "B.Cu") (net 5) (tstamp f9b42771-fc96-4b36-9108-e57c58f7b900)) + (segment (start 78.0542 71.0946) (end 75.184 73.9648) (width 0.25) (layer "F.Cu") (net 6) (tstamp 2e901388-e122-4a3d-a62a-868182e3f79f)) + (segment (start 75.184 73.9648) (end 75.184 77.9272) (width 0.25) (layer "F.Cu") (net 6) (tstamp 47171ac3-2447-48d0-8b0a-b60d19c0dc25)) + (segment (start 76.647 77.9018) (end 76.647 77.9374) (width 0.25) (layer "F.Cu") (net 6) (tstamp 546acb65-6f1a-4067-9679-ea2d883d2ee3)) + (segment (start 75.184 77.9272) (end 76.6216 77.9272) (width 0.25) (layer "F.Cu") (net 6) (tstamp b6c330d7-4999-4bcc-9946-378843fdeb26)) + (segment (start 76.6216 77.9272) (end 76.647 77.9018) (width 0.25) (layer "F.Cu") (net 6) (tstamp f0d30d95-69ba-42a0-90ee-90fb3bb53471)) + (via (at 75.184 77.9272) (size 0.8) (drill 0.5) (layers "F.Cu" "B.Cu") (net 6) (tstamp cc234993-ecbb-42bc-b134-1d336875ae02)) + (segment (start 70.5358 81.2038) (end 73.8124 77.9272) (width 0.25) (layer "B.Cu") (net 6) (tstamp 3a5be129-64bf-458f-9d8b-97bc5c4daf7c)) + (segment (start 73.8124 77.9272) (end 75.184 77.9272) (width 0.25) (layer "B.Cu") (net 6) (tstamp 49a730f1-33a6-4f5a-a682-d49c3b9f3fa9)) + (segment (start 73.122494 88.94) (end 72.5678 88.385306) (width 0.25) (layer "B.Cu") (net 6) (tstamp 4dde7001-aaef-4202-a8b6-c668c2f5cae5)) + (segment (start 70.5358 82.8802) (end 72.5678 84.9122) (width 0.25) (layer "B.Cu") (net 6) (tstamp a62935c6-9a03-473c-9728-ef4bf7013604)) + (segment (start 73.925 88.94) (end 73.122494 88.94) (width 0.25) (layer "B.Cu") (net 6) (tstamp abedaa78-303c-4a73-9f4a-97c0a33e3f8e)) + (segment (start 72.5678 88.385306) (end 72.5678 84.9122) (width 0.25) (layer "B.Cu") (net 6) (tstamp c5424beb-7286-4804-9d09-e604c0cc1182)) + (segment (start 70.5358 81.2038) (end 70.5358 82.8802) (width 0.25) (layer "B.Cu") (net 6) (tstamp d52fe1b7-2ca1-411c-82ce-f0d383548d35)) + (segment (start 82.7278 75.3872) (end 81.3308 76.7842) (width 0.25) (layer "F.Cu") (net 7) (tstamp 3ff1cb73-a398-437f-bf4b-9529cef54f1a)) + (segment (start 78.547 77.9018) (end 80.2132 77.9018) (width 0.25) (layer "F.Cu") (net 7) (tstamp 404d3aa1-8c9a-48f4-8907-6ead804187f2)) + (segment (start 82.7278 71.0946) (end 82.7278 75.3872) (width 0.25) (layer "F.Cu") (net 7) (tstamp 488426b5-f2f2-4ccb-9daa-7bfbd7708f53)) + (segment (start 81.3308 76.7842) (end 80.772 77.343) (width 0.25) (layer "F.Cu") (net 7) (tstamp 48a73750-2aac-4f77-97e6-af86a8792501)) + (segment (start 77.639876 83.624724) (end 77.639876 84.810577) (width 0.25) (layer "F.Cu") (net 7) (tstamp 4a5ea381-094a-4c77-9b40-e971b0ee3f4b)) + (segment (start 80.772 77.343) (end 80.772 81.5848) (width 0.25) (layer "F.Cu") (net 7) (tstamp 683988cc-1154-4ea7-a543-f14793d284fa)) + (segment (start 80.2132 77.9018) (end 81.3308 76.7842) (width 0.25) (layer "F.Cu") (net 7) (tstamp 80386cac-5313-43db-82c1-46e1727eff20)) + (segment (start 80.772 81.5848) (end 79.2226 83.1342) (width 0.25) (layer "F.Cu") (net 7) (tstamp 83bea4bb-40c7-44d4-99f0-f7c83c5c81f0)) + (segment (start 79.2226 83.1342) (end 78.1304 83.1342) (width 0.25) (layer "F.Cu") (net 7) (tstamp cb3a1e78-ac27-46b3-8088-97776de9e263)) + (segment (start 78.1304 83.1342) (end 77.639876 83.624724) (width 0.25) (layer "F.Cu") (net 7) (tstamp fd214d40-2028-4093-b64d-8c819d32bf4a)) + (via (at 77.639876 84.810577) (size 0.8) (drill 0.5) (layers "F.Cu" "B.Cu") (net 7) (tstamp 1b461bcf-eddd-4ae2-8f34-2e7031e66f09)) + (segment (start 73.925 88.44) (end 75.7964 88.44) (width 0.25) (layer "B.Cu") (net 7) (tstamp 87f26c1c-23ca-466a-b14c-fd194a8a84fc)) + (segment (start 77.639876 86.596524) (end 77.639876 84.810577) (width 0.25) (layer "B.Cu") (net 7) (tstamp bcb937df-78f2-4d6c-81fe-02314f4706a3)) + (segment (start 75.7964 88.44) (end 77.639876 86.596524) (width 0.25) (layer "B.Cu") (net 7) (tstamp cf7ef392-6e31-4bba-848d-27f72ca26fdf)) + (segment (start 78.547 80.1014) (end 79.9084 78.74) (width 0.25) (layer "F.Cu") (net 8) (tstamp 171fe6f9-3e3b-4933-81b7-cf03f8f8eb1c)) + (segment (start 78.547 81.7778) (end 78.547 80.1768) (width 0.25) (layer "F.Cu") (net 8) (tstamp 2f4cb88d-14e7-4890-b269-8ee05ab6a03b)) + (segment (start 76.640374 83.684426) (end 78.547 81.7778) (width 0.25) (layer "F.Cu") (net 8) (tstamp 34b83e37-e6d2-4209-a2cc-91d7c3f7a5c1)) + (segment (start 78.547 80.1768) (end 78.547 80.1014) (width 0.25) (layer "F.Cu") (net 8) (tstamp 4a057e1e-3cdf-48ee-bfc1-234eecc93b44)) + (segment (start 81.0768 72.7202) (end 81.0768 71.187732) (width 0.25) (layer "F.Cu") (net 8) (tstamp 9c6b35db-5653-42a0-9129-60da9a29e094)) + (segment (start 81.0768 71.187732) (end 81.169932 71.0946) (width 0.25) (layer "F.Cu") (net 8) (tstamp c8180a8a-0eac-446b-8dec-25558666329a)) + (segment (start 76.640374 84.81082) (end 76.640374 83.684426) (width 0.25) (layer "F.Cu") (net 8) (tstamp e69b0ffb-2521-4dec-ad35-d60d5f946262)) + (via (at 79.9084 78.74) (size 0.8) (drill 0.5) (layers "F.Cu" "B.Cu") (net 8) (tstamp 2cbe3c13-6358-4a3f-9589-2893ca840abb)) + (via (at 81.0768 72.7202) (size 0.8) (drill 0.5) (layers "F.Cu" "B.Cu") (net 8) (tstamp 4879f3f8-ae52-428b-ac8d-c54793ca16e6)) + (via (at 76.640374 84.81082) (size 0.8) (drill 0.5) (layers "F.Cu" "B.Cu") (net 8) (tstamp dbd03b6f-1428-4c4c-a75a-2345c89aad65)) + (segment (start 75.2042 87.94) (end 76.640374 86.503826) (width 0.25) (layer "B.Cu") (net 8) (tstamp 2f306e14-06fc-4c48-885c-30aab7440140)) + (segment (start 79.9084 78.74) (end 79.9084 73.8886) (width 0.25) (layer "B.Cu") (net 8) (tstamp 3e05f51b-477a-4b0a-abd8-6a113689b7e4)) + (segment (start 79.9084 73.8886) (end 81.0768 72.7202) (width 0.25) (layer "B.Cu") (net 8) (tstamp 46fa7cbb-b37e-43f4-b6e9-7c3ff7649254)) + (segment (start 73.925 87.94) (end 75.2042 87.94) (width 0.25) (layer "B.Cu") (net 8) (tstamp ea4f9b5a-9bc4-4ead-b4e2-bf8884000a0c)) + (segment (start 76.640374 86.503826) (end 76.640374 84.81082) (width 0.25) (layer "B.Cu") (net 8) (tstamp facada70-c99a-426c-aeb8-6908f00ffcb3)) + (segment (start 75.1984 80.1768) (end 75.184 80.1624) (width 0.25) (layer "F.Cu") (net 9) (tstamp 033515ad-e13f-445a-864f-c0b795aed3ee)) + (segment (start 79.6036 72.5424) (end 79.6036 71.103066) (width 0.25) (layer "F.Cu") (net 9) (tstamp 4f4fdddb-2166-4cd6-866c-d76517b6beb2)) + (segment (start 76.647 80.1768) (end 75.1984 80.1768) (width 0.25) (layer "F.Cu") (net 9) (tstamp 87ef82e8-faa2-45f9-9701-23a92e080c28)) + (segment (start 75.6412 81.1826) (end 76.647 80.1768) (width 0.25) (layer "F.Cu") (net 9) (tstamp 9f3fa83b-9830-4600-9f8e-05eedb43537c)) + (segment (start 75.6412 84.7852) (end 75.6412 81.1826) (width 0.25) (layer "F.Cu") (net 9) (tstamp d102b62c-b7d7-4891-afdd-67222d5bc363)) + (segment (start 79.6036 71.103066) (end 79.612066 71.0946) (width 0.25) (layer "F.Cu") (net 9) (tstamp ebc29e6b-9af5-4578-bb2f-f9f6dc9c31ab)) + (via (at 75.184 80.1624) (size 0.8) (drill 0.5) (layers "F.Cu" "B.Cu") (net 9) (tstamp 4c9109c9-45da-4e2b-bd72-2db8b31a82da)) + (via (at 79.6036 72.5424) (size 0.8) (drill 0.5) (layers "F.Cu" "B.Cu") (net 9) (tstamp 5c8c9491-e7b1-4c6e-a580-1fae49020336)) + (via (at 75.6412 84.7852) (size 0.8) (drill 0.5) (layers "F.Cu" "B.Cu") (net 9) (tstamp ed558fe4-80ff-497d-8183-be85c9a55fcc)) + (segment (start 79.6036 73.3298) (end 79.6036 72.5424) (width 0.25) (layer "B.Cu") (net 9) (tstamp 1647d5c9-c0ce-48cb-9653-1d7bfeba788b)) + (segment (start 77.851 80.1624) (end 78.8924 79.121) (width 0.25) (layer "B.Cu") (net 9) (tstamp 6cf685af-6c03-42f8-9423-5fd23ce44f98)) + (segment (start 79.3496 78.0796) (end 79.3496 73.5838) (width 0.25) (layer "B.Cu") (net 9) (tstamp 77922b2d-f4bf-49a4-a18d-8c7bc6f1d163)) + (segment (start 73.925 87.44) (end 74.9168 87.44) (width 0.25) (layer "B.Cu") (net 9) (tstamp 7ff6bb93-5fa5-4183-ac23-ace1f6f22f39)) + (segment (start 78.8924 79.121) (end 78.8924 78.5368) (width 0.25) (layer "B.Cu") (net 9) (tstamp 81132c25-5b5e-417f-9323-e598874007d9)) + (segment (start 79.3496 73.5838) (end 79.6036 73.3298) (width 0.25) (layer "B.Cu") (net 9) (tstamp 9508753a-a885-4b24-8b37-13da67759488)) + (segment (start 74.9168 87.44) (end 75.6412 86.7156) (width 0.25) (layer "B.Cu") (net 9) (tstamp c1dc5f13-cc28-498c-87ca-114829ebf85c)) + (segment (start 75.184 80.1624) (end 77.851 80.1624) (width 0.25) (layer "B.Cu") (net 9) (tstamp cd21407a-8cfb-43be-a0a5-f20ce1a39bd0)) + (segment (start 75.6412 86.7156) (end 75.6412 84.7852) (width 0.25) (layer "B.Cu") (net 9) (tstamp dcdebe68-f0aa-43b8-96ff-cc9063250f4e)) + (segment (start 78.8924 78.5368) (end 79.3496 78.0796) (width 0.25) (layer "B.Cu") (net 9) (tstamp fd061a87-769b-43be-8f4d-5b1625638e36)) + (segment (start 80.7692 85.1888) (end 78.6158 85.1888) (width 0.25) (layer "F.Cu") (net 10) (tstamp 1e0558c4-bf50-4242-8211-f5ef4f352f34)) + (segment (start 73.1266 86.6902) (end 71.6252 85.1888) (width 0.25) (layer "F.Cu") (net 10) (tstamp 4d443145-31b3-4767-8d25-ffa86cce12ea)) + (segment (start 77.1144 86.6902) (end 73.1266 86.6902) (width 0.25) (layer "F.Cu") (net 10) (tstamp 5299fb9e-187d-4a70-85f9-50c033579eb3)) + (segment (start 71.6252 85.1888) (end 70.5866 85.1888) (width 0.25) (layer "F.Cu") (net 10) (tstamp 5acad369-df5b-4ef7-9c1f-a3750522a74f)) + (segment (start 79.804 85.1888) (end 78.6158 85.1888) (width 0.25) (layer "F.Cu") (net 10) (tstamp 5eceb216-32c5-49f1-a265-cd7d596ddea6)) + (segment (start 80.7692 85.1888) (end 80.772 85.1916) (width 0.2) (layer "F.Cu") (net 10) (tstamp 9475c387-bf2b-49a7-9988-a90ab4ae6d89)) + (segment (start 79.804 85.1888) (end 80.7692 85.1888) (width 0.25) (layer "F.Cu") (net 10) (tstamp aa3bb743-fec0-4711-ac38-44dd4ee27afb)) + (segment (start 78.6158 85.1888) (end 77.1144 86.6902) (width 0.25) (layer "F.Cu") (net 10) (tstamp ad9ddb04-1074-4d8f-a26d-5cc5d6b08423)) + (segment (start 79.8068 85.1916) (end 79.804 85.1888) (width 0.2) (layer "F.Cu") (net 10) (tstamp bc057d17-06b3-4eab-81d7-59bdd0961eab)) + (via (at 80.772 85.1916) (size 0.8) (drill 0.5) (layers "F.Cu" "B.Cu") (net 10) (tstamp 5dea2a87-e530-4558-b7c5-1f2d68660cab)) + (segment (start 82.25 83.94) (end 81.1854 83.94) (width 0.2) (layer "B.Cu") (net 10) (tstamp 5af45852-e4d5-4101-938c-2e2db003e48c)) + (segment (start 80.772 84.3534) (end 80.772 85.1916) (width 0.2) (layer "B.Cu") (net 10) (tstamp a28c648c-9fba-4bb9-9f24-e1206694b8a0)) + (segment (start 81.1854 83.94) (end 80.772 84.3534) (width 0.2) (layer "B.Cu") (net 10) (tstamp f538397d-269c-44ee-9be7-e88a21d37c9e)) + (segment (start 71.7362 86.1888) (end 70.5866 86.1888) (width 0.25) (layer "F.Cu") (net 11) (tstamp 01c0704a-8fa2-4515-9981-535413c17a8c)) + (segment (start 78.7908 86.1888) (end 78.7908 86.4108) (width 0.25) (layer "F.Cu") (net 11) (tstamp 4d2e9c81-4aa4-4be9-95bf-8998155660de)) + (segment (start 72.8218 87.2744) (end 71.7362 86.1888) (width 0.25) (layer "F.Cu") (net 11) (tstamp 774da913-58c2-4d51-bae5-1fe8409086d9)) + (segment (start 77.9272 87.2744) (end 72.8218 87.2744) (width 0.25) (layer "F.Cu") (net 11) (tstamp 82a3faba-1451-40db-8f2a-a133eea93bb3)) + (segment (start 78.7908 86.4108) (end 77.9272 87.2744) (width 0.25) (layer "F.Cu") (net 11) (tstamp b617ccc4-b902-4e32-af64-6147c912c5df)) + (via (at 78.7908 86.1888) (size 0.8) (drill 0.5) (layers "F.Cu" "B.Cu") (net 11) (tstamp c4d90c00-4a93-4544-9efa-7d81d5c30d44)) + (segment (start 78.7908 86.1888) (end 78.7908 85.9028) (width 0.2) (layer "B.Cu") (net 11) (tstamp 042ff53d-2ca0-4d21-875e-94c43b312491)) + (segment (start 79.8375 82.5275) (end 79.8375 83.5353) (width 0.2) (layer "B.Cu") (net 11) (tstamp 0cdb357f-57ec-4faa-acd5-2a7f3fdd00bd)) + (segment (start 79.8375 83.5353) (end 79.1845 84.1883) (width 0.2) (layer "B.Cu") (net 11) (tstamp 3c3fb4b6-a068-4370-9b8f-00a3baf0a08a)) + (segment (start 78.7908 85.9028) (end 79.20648 85.48712) (width 0.2) (layer "B.Cu") (net 11) (tstamp 466851a1-a5d2-40cb-85b0-5ab1b5a11bd3)) + (segment (start 79.20648 85.48712) (end 79.20648 84.21028) (width 0.2) (layer "B.Cu") (net 11) (tstamp 55d80394-dfc3-4572-b2e3-5f96217b4e49)) + (segment (start 79.20648 84.21028) (end 79.1845 84.1883) (width 0.2) (layer "B.Cu") (net 11) (tstamp 8a621295-9320-4d84-9e1b-248affb63867)) + (segment (start 73.606388 88.464412) (end 72.882 89.1888) (width 0.25) (layer "F.Cu") (net 12) (tstamp 08a3c5ab-bf8f-4b85-bbe3-bd9929e7c69c)) + (segment (start 80.445588 88.464412) (end 80.445588 90.848212) (width 0.25) (layer "F.Cu") (net 12) (tstamp 780d06f8-7ca9-4f04-bcdc-4e53131dae93)) + (segment (start 80.445588 88.464412) (end 73.606388 88.464412) (width 0.25) (layer "F.Cu") (net 12) (tstamp cae9816d-108a-4002-bf23-16b53972374b)) + (segment (start 80.445588 90.848212) (end 80.3872 90.9066) (width 0.25) (layer "F.Cu") (net 12) (tstamp f6b285f2-4d43-40f7-9bf0-188ca28141e5)) + (segment (start 72.882 89.1888) (end 70.5866 89.1888) (width 0.25) (layer "F.Cu") (net 12) (tstamp fc725c0e-b2a2-4d8f-b60b-683f1678364b)) + (via (at 80.445588 88.464412) (size 0.8) (drill 0.5) (layers "F.Cu" "B.Cu") (net 12) (tstamp bc2b9ad2-e813-4fcf-8d8a-3220c51f9f82)) + (segment (start 81.47 87.44) (end 80.445588 88.464412) (width 0.2) (layer "B.Cu") (net 12) (tstamp 0c3481c6-5bdf-45b0-a3a7-132ff6d1c6a6)) + (segment (start 82.25 87.44) (end 81.47 87.44) (width 0.2) (layer "B.Cu") (net 12) (tstamp 21b0c137-1408-4f30-81ea-7957e06b4d72)) + (segment (start 77.8256 89.408) (end 77.0448 90.1888) (width 0.25) (layer "F.Cu") (net 13) (tstamp 1d7b75d4-75f3-4a85-ae50-40343ae36a2e)) + (segment (start 77.0448 90.1888) (end 70.5866 90.1888) (width 0.25) (layer "F.Cu") (net 13) (tstamp e4f0efc4-2fe2-42c4-8552-df27080b08ac)) + (via (at 77.8256 89.408) (size 0.8) (drill 0.5) (layers "F.Cu" "B.Cu") (net 13) (tstamp e7eeaf71-3af7-48bd-a66a-8e9179090cc4)) + (segment (start 77.8375 90.8525) (end 77.8375 89.4199) (width 0.2) (layer "B.Cu") (net 13) (tstamp 8d035b1d-2cd9-4d69-ade1-4463eae4bef0)) + (segment (start 77.8375 89.4199) (end 77.8256 89.408) (width 0.2) (layer "B.Cu") (net 13) (tstamp 8ec27f68-f9e5-4360-9a4e-4f239c3e4fd3)) + (segment (start 106.86 58.1936) (end 107.1372 58.4708) (width 0.25) (layer "F.Cu") (net 15) (tstamp 2788d31f-f939-48b8-b2a0-1c64277e7aa3)) + (segment (start 106.86 55.515) (end 106.86 58.1936) (width 0.25) (layer "F.Cu") (net 15) (tstamp d63188d5-4f9f-4458-818c-3ef851dc358f)) + (via (at 107.1372 58.4708) (size 0.8) (drill 0.5) (layers "F.Cu" "B.Cu") (net 15) (tstamp 4cc6e767-5891-4dc5-8bbb-03eb53c06afc)) + (segment (start 109.0968 58.4708) (end 107.1372 58.4708) (width 0.25) (layer "B.Cu") (net 15) (tstamp 57ed5e12-db85-44c8-bf1d-384cf5e7a359)) + (segment (start 104.1908 57.649635) (end 104.1908 58.166) (width 0.2) (layer "F.Cu") (net 16) (tstamp 27e10a14-dbf1-4bae-8f53-935bb07094f4)) + (segment (start 105.5116 59.309) (end 101.7778 59.309) (width 0.2) (layer "F.Cu") (net 16) (tstamp 40652faa-7e68-4073-baa9-ad7a8e9fafc6)) + (segment (start 104.1908 58.166) (end 104.2162 57.624235) (width 0.2) (layer "F.Cu") (net 16) (tstamp 45712eaa-1e92-4a1c-a192-324ee75a6223)) + (segment (start 104.86 56.980435) (end 104.1908 57.649635) (width 0.2) (layer "F.Cu") (net 16) (tstamp 52d1f4e4-7d31-4a22-b6e3-220841733eed)) + (segment (start 105.86 57.5601) (end 105.6605 57.7596) (width 0.2) (layer "F.Cu") (net 16) (tstamp 582370d2-cd35-4757-a402-9ad6ae193abd)) + (segment (start 104.86 56.980435) (end 104.86 55.515) (width 0.2) (layer "F.Cu") (net 16) (tstamp 5a1dc167-1d12-4ed5-a73d-26c74dcc1da8)) + (segment (start 104.2162 57.624235) (end 104.86 56.980435) (width 0.2) (layer "F.Cu") (net 16) (tstamp 63379e29-5477-4d83-bce8-f9387f23b83a)) + (segment (start 101.7778 59.309) (end 99.6188 57.15) (width 0.2) (layer "F.Cu") (net 16) (tstamp c4ade4e0-3f1c-42d2-855a-1106e008bab7)) + (segment (start 105.86 55.515) (end 105.86 57.5601) (width 0.2) (layer "F.Cu") (net 16) (tstamp d1bb7069-85a4-49b0-bfd6-2fd08e975cb2)) + (segment (start 99.6188 57.15) (end 97.663 57.15) (width 0.2) (layer "F.Cu") (net 16) (tstamp f16c2638-f7e7-4d2d-a9b8-ec95924bfaa5)) + (via (at 104.1908 58.166) (size 0.8) (drill 0.5) (layers "F.Cu" "B.Cu") (net 16) (tstamp aa59b3f4-f41b-430b-8834-482280527aed)) + (via (at 105.5116 59.309) (size 0.8) (drill 0.5) (layers "F.Cu" "B.Cu") (net 16) (tstamp b4c2db5c-d14a-4ee7-aeba-72d6fc981053)) + (via (at 105.6605 57.7596) (size 0.8) (drill 0.5) (layers "F.Cu" "B.Cu") (net 16) (tstamp b9510f54-1a45-408e-a9e4-1eb3c6ce8a7f)) + (segment (start 105.6605 57.7596) (end 105.6605 59.1601) (width 0.2) (layer "B.Cu") (net 16) (tstamp 2b979815-009d-4880-ae63-a5ff53ef2a30)) + (segment (start 104.1908 58.166) (end 105.2541 58.166) (width 0.2) (layer "B.Cu") (net 16) (tstamp 5b666b89-4858-4ee8-82f0-b632b7935fd2)) + (segment (start 105.6605 59.1601) (end 105.5116 59.309) (width 0.2) (layer "B.Cu") (net 16) (tstamp 7f77031d-2d08-49eb-9ce4-59eef65e42fd)) + (segment (start 105.2541 58.166) (end 105.6605 57.7596) (width 0.2) (layer "B.Cu") (net 16) (tstamp d16a393d-9168-4e7d-894b-ed69de61e41f)) + (segment (start 97.6592 55.5498) (end 98.6536 55.5498) (width 0.2) (layer "F.Cu") (net 17) (tstamp 20d91b04-5885-4a45-98d5-aab45639a034)) + (segment (start 98.6536 55.5498) (end 101.981 58.8772) (width 0.2) (layer "F.Cu") (net 17) (tstamp 3ebec062-206b-4e24-8b8b-8aec691fa67c)) + (segment (start 105.36 55.515) (end 105.36 57.045441) (width 0.2) (layer "F.Cu") (net 17) (tstamp 68f12d31-03fe-4cd6-a1c0-f69597c64f82)) + (segment (start 105.36 57.070841) (end 104.9274 57.503441) (width 0.2) (layer "F.Cu") (net 17) (tstamp 7e233b62-08f0-4dce-9cba-d105da6d6237)) + (segment (start 106.2178 58.4708) (end 104.9274 58.4708) (width 0.2) (layer "F.Cu") (net 17) (tstamp 86d95799-819a-415c-ad53-3aebc146d5fb)) + (segment (start 105.36 57.045441) (end 104.9274 57.478041) (width 0.2) (layer "F.Cu") (net 17) (tstamp a1726c25-cda0-42d3-8a7e-45bb18b6c05a)) + (segment (start 104.9274 57.503441) (end 104.9274 58.4708) (width 0.2) (layer "F.Cu") (net 17) (tstamp ac094109-d807-4e31-8d43-13a7c04b2585)) + (segment (start 106.36 58.3286) (end 106.2178 58.4708) (width 0.2) (layer "F.Cu") (net 17) (tstamp b00f42b9-fd14-4155-92b8-25530db63277)) + (segment (start 105.36 55.515) (end 105.36 57.070841) (width 0.2) (layer "F.Cu") (net 17) (tstamp b168b96f-2f9a-4a63-8e92-9c4a0225741e)) + (segment (start 104.9274 57.478041) (end 104.9274 58.4708) (width 0.2) (layer "F.Cu") (net 17) (tstamp b30bb17f-91d0-4e4f-a603-5237e903343d)) + (segment (start 101.981 58.8772) (end 104.521 58.8772) (width 0.2) (layer "F.Cu") (net 17) (tstamp c31c0626-6e54-4387-94b8-b074bf774006)) + (segment (start 106.36 55.515) (end 106.36 58.3286) (width 0.2) (layer "F.Cu") (net 17) (tstamp e512e096-23e3-444c-a574-354cfc5ec686)) + (segment (start 104.521 58.8772) (end 104.9274 58.4708) (width 0.2) (layer "F.Cu") (net 17) (tstamp fefe1f7e-4959-434a-881f-1d33950b63ae)) + (segment (start 103.86 55.515) (end 103.86 57.0236) (width 0.2) (layer "F.Cu") (net 19) (tstamp 14261665-d011-4752-a2cd-abde80246b24)) + (segment (start 103.86 57.2268) (end 103.0478 58.039) (width 0.2) (layer "F.Cu") (net 19) (tstamp c024760a-6bb3-4ddd-a3d1-b8ec88b435ee)) + (segment (start 103.86 57.0236) (end 103.86 57.2268) (width 0.2) (layer "F.Cu") (net 19) (tstamp fce35760-92f4-4ed3-a1e3-b32dadb69f0d)) + (via (at 103.0478 58.039) (size 0.8) (drill 0.5) (layers "F.Cu" "B.Cu") (net 19) (tstamp 29f72c54-1b4c-4d56-ac29-987e36182274)) + (segment (start 103.0478 58.039) (end 103.0478 56.2864) (width 0.25) (layer "B.Cu") (net 19) (tstamp 0467b94c-b904-4f25-b3f4-3fc3813a9814)) + (segment (start 101.092 56.2864) (end 100.4316 56.9468) (width 0.25) (layer "B.Cu") (net 19) (tstamp 1828c0f3-e440-4c26-bec9-cd0afb56b82b)) + (segment (start 103.0478 56.2864) (end 101.092 56.2864) (width 0.25) (layer "B.Cu") (net 19) (tstamp 5590ca25-937c-48fd-a9af-254db90d298d)) + (segment (start 100.4316 56.9468) (end 100.4316 59.1058) (width 0.25) (layer "B.Cu") (net 19) (tstamp b381fb5d-b7f5-4167-84fd-9badf63afa47)) + (segment (start 95.838 57.15) (end 95.8304 57.1424) (width 0.25) (layer "F.Cu") (net 21) (tstamp 6ff4ff1f-28be-433a-ab36-fc793aebae6f)) + (segment (start 95.8304 57.1424) (end 93.0504 57.1424) (width 0.25) (layer "F.Cu") (net 21) (tstamp a2a2d261-5afa-481a-a9d9-edda17b37ad6)) + (segment (start 91.1504 55.8394) (end 91.1504 57.1424) (width 0.25) (layer "F.Cu") (net 22) (tstamp 6a405263-1426-4823-99c9-f72ab99da639)) + (segment (start 95.8342 55.5498) (end 91.44 55.5498) (width 0.25) (layer "F.Cu") (net 22) (tstamp 9e5d48d4-816d-4f65-a292-ce365702b3fa)) + (segment (start 91.44 55.5498) (end 91.1504 55.8394) (width 0.25) (layer "F.Cu") (net 22) (tstamp be82be28-bc69-474b-a756-f709676e5828)) + (segment (start 84.074 72.2884) (end 83.2866 73.0758) (width 0.2) (layer "F.Cu") (net 26) (tstamp 1021eaf1-17fb-41ff-a710-882ec20127a0)) + (segment (start 91.1504 59.8424) (end 91.1504 61.7626) (width 0.25) (layer "F.Cu") (net 26) (tstamp 11057b2d-a36e-405f-8c65-127154062796)) + (segment (start 83.2866 73.0758) (end 83.2866 75.8444) (width 0.2) (layer "F.Cu") (net 26) (tstamp 3223b624-61d6-491f-8174-a3b7e451739a)) + (segment (start 91.1504 61.7626) (end 91.1606 61.7728) (width 0.25) (layer "F.Cu") (net 26) (tstamp 37524612-639b-444f-950a-f0cc4d799730)) + (segment (start 81.6356 77.4954) (end 81.6356 78.2828) (width 0.2) (layer "F.Cu") (net 26) (tstamp 6049d1d5-d40e-4d12-989f-0b0a8836198c)) + (segment (start 84.074 69.088) (end 84.074 72.2884) (width 0.2) (layer "F.Cu") (net 26) (tstamp 77f82fd4-f9b6-4dd0-b6f9-a77ac4dc5b0d)) + (segment (start 83.2866 75.8444) (end 81.6356 77.4954) (width 0.2) (layer "F.Cu") (net 26) (tstamp c4f294a3-6e03-4386-bcc1-ff784e538adf)) + (via (at 81.6356 78.2828) (size 0.8) (drill 0.5) (layers "F.Cu" "B.Cu") (net 26) (tstamp 2414e2e6-f7b3-434a-9da4-20a80180838a)) + (via (at 84.074 69.088) (size 0.8) (drill 0.5) (layers "F.Cu" "B.Cu") (net 26) (tstamp cc84a11c-3a7d-4a95-9763-ff6d3cf8e4ca)) + (via (at 91.1606 61.7728) (size 0.8) (drill 0.5) (layers "F.Cu" "B.Cu") (net 26) (tstamp de338e13-9d6c-4b63-b480-50f531d5f77b)) + (segment (start 93.8022 61.8236) (end 93.8022 63.373) (width 0.25) (layer "B.Cu") (net 26) (tstamp 0254b1c7-680a-42b5-a602-02efae0f8951)) + (segment (start 89.021262 65.5828) (end 88.376431 66.227631) (width 0.25) (layer "B.Cu") (net 26) (tstamp 0add27a2-66f0-4b38-afcf-975594bdcf4a)) + (segment (start 78.8375 80.9031) (end 81.4578 78.2828) (width 0.2) (layer "B.Cu") (net 26) (tstamp 3c795dac-d0cf-458a-a58c-546ffb1c2ecf)) + (segment (start 93.7514 61.7728) (end 93.8022 61.8236) (width 0.25) (layer "B.Cu") (net 26) (tstamp 49f2c303-95e9-4dda-9678-89d616aa6f6e)) + (segment (start 81.4578 78.2828) (end 81.6356 78.2828) (width 0.2) (layer "B.Cu") (net 26) (tstamp 4f4dbac6-70b4-4ed1-bffd-6de4c976f9bd)) + (segment (start 91.5924 65.5828) (end 89.021262 65.5828) (width 0.25) (layer "B.Cu") (net 26) (tstamp 6d815e57-5b2c-4c56-a04d-d69edefdfcd5)) + (segment (start 93.8022 63.373) (end 91.5924 65.5828) (width 0.25) (layer "B.Cu") (net 26) (tstamp 9f2e211d-1db6-42ae-9f8d-5c99e9e9b70e)) + (segment (start 84.074 68.7832) (end 84.074 69.088) (width 0.25) (layer "B.Cu") (net 26) (tstamp b63895a7-37bd-43d6-bdb8-ad866a889e52)) + (segment (start 91.1606 61.7728) (end 93.7514 61.7728) (width 0.25) (layer "B.Cu") (net 26) (tstamp bc8a5b81-f66a-4709-add8-6bc3f32326c7)) + (segment (start 86.629569 66.227631) (end 84.074 68.7832) (width 0.25) (layer "B.Cu") (net 26) (tstamp c20cf2da-554b-4cbc-941d-8e197a7b98ea)) + (segment (start 88.376431 66.227631) (end 86.629569 66.227631) (width 0.25) (layer "B.Cu") (net 26) (tstamp f4a62567-0dac-44db-a0f1-81f5efcb9fc1)) + (segment (start 78.8375 82.5275) (end 78.8375 80.9031) (width 0.2) (layer "B.Cu") (net 26) (tstamp f7e84c0e-76a6-4f6f-86cc-912ceab79448)) + (segment (start 85.217 69.088) (end 85.217 71.7296) (width 0.2) (layer "F.Cu") (net 27) (tstamp 07684d48-0c65-472b-882f-bf85847081b7)) + (segment (start 82.7786 77.0382) (end 82.7786 78.2828) (width 0.2) (layer "F.Cu") (net 27) (tstamp 120a7000-42ef-4974-95ae-6f761add8fd6)) + (segment (start 83.8454 73.1012) (end 83.8454 75.9714) (width 0.2) (layer "F.Cu") (net 27) (tstamp 45580ec1-9b15-449f-b620-7f2b22e5a2bb)) + (segment (start 93.0504 59.8424) (end 94.4626 59.8424) (width 0.25) (layer "F.Cu") (net 27) (tstamp a217c56f-b0e1-4656-b47f-0c9b21014ce9)) + (segment (start 83.8454 75.9714) (end 82.7786 77.0382) (width 0.2) (layer "F.Cu") (net 27) (tstamp b7f30988-49f5-48ce-be3e-103b67da704d)) + (segment (start 85.217 71.7296) (end 83.8454 73.1012) (width 0.2) (layer "F.Cu") (net 27) (tstamp dcdc1715-4e95-4dda-97fb-39b1e204e3c8)) + (via (at 94.4626 59.8424) (size 0.8) (drill 0.5) (layers "F.Cu" "B.Cu") (net 27) (tstamp 25ca7532-9509-4b5b-9ce5-010fa6ec625d)) + (via (at 82.7786 78.2828) (size 0.8) (drill 0.5) (layers "F.Cu" "B.Cu") (net 27) (tstamp 6282cdf8-f8bc-408d-8cf4-3b9c0b789673)) + (via (at 85.217 69.088) (size 0.8) (drill 0.5) (layers "F.Cu" "B.Cu") (net 27) (tstamp d9b32f16-6227-44dc-aaaf-0a693dc2a0c4)) + (segment (start 81.7118 79.3496) (end 82.7786 78.2828) (width 0.2) (layer "B.Cu") (net 27) (tstamp 20bb0e53-d222-4f84-bcb8-bdf73e8c6485)) + (segment (start 85.217 68.3514) (end 85.217 69.088) (width 0.25) (layer "B.Cu") (net 27) (tstamp 24765b18-fd75-4d2b-b8e7-5d9c6888ddc6)) + (segment (start 91.948 66.0654) (end 89.17438 66.0654) (width 0.25) (layer "B.Cu") (net 27) (tstamp 438649b8-fdee-44e1-b40f-edf18908e06b)) + (segment (start 89.17438 66.0654) (end 88.5444 66.69538) (width 0.25) (layer "B.Cu") (net 27) (tstamp 658d5429-26ec-4125-9577-0fa07f5805e6)) + (segment (start 79.3375 81.0889) (end 81.0768 79.3496) (width 0.2) (layer "B.Cu") (net 27) (tstamp 75d913c9-e9a1-45da-9417-4ee7eb757f77)) + (segment (start 87.0077 66.69538) (end 86.87302 66.69538) (width 0.25) (layer "B.Cu") (net 27) (tstamp 7da1a4eb-0209-44d4-a310-94fdfcf7420d)) + (segment (start 79.3375 82.5275) (end 79.3375 81.0889) (width 0.2) (layer "B.Cu") (net 27) (tstamp 8029e41c-bd47-484b-b9ed-62084e320924)) + (segment (start 81.6356 79.3496) (end 81.7118 79.3496) (width 0.2) (layer "B.Cu") (net 27) (tstamp 85bd6bcf-820b-4910-98e3-2092adc27cd4)) + (segment (start 81.0768 79.3496) (end 81.6356 79.3496) (width 0.2) (layer "B.Cu") (net 27) (tstamp 8c33843e-ec9c-48e9-989a-9fda23af18da)) + (segment (start 88.5444 66.69538) (end 87.0077 66.69538) (width 0.25) (layer "B.Cu") (net 27) (tstamp b14c49ce-6b9b-4c94-a4f8-64249e58c167)) + (segment (start 86.87302 66.69538) (end 85.217 68.3514) (width 0.25) (layer "B.Cu") (net 27) (tstamp b9b13389-26d4-4e77-bce1-2bcfeb562f9f)) + (segment (start 92.075 65.9384) (end 91.948 66.0654) (width 0.25) (layer "B.Cu") (net 27) (tstamp bb9f5b97-b8f7-43d1-8a07-b056959d05b7)) + (segment (start 94.4626 63.5508) (end 92.075 65.9384) (width 0.25) (layer "B.Cu") (net 27) (tstamp cdaa7974-c43e-469c-849f-ed42ba815885)) + (segment (start 94.4626 59.8424) (end 94.4626 63.5508) (width 0.25) (layer "B.Cu") (net 27) (tstamp d8d9803e-1f14-4a62-b23e-d9ecde3eb958)) + (segment (start 97.9678 62.1538) (end 97.9932 62.1284) (width 0.25) (layer "F.Cu") (net 51) (tstamp 0525bd18-44c9-4671-a1e7-7cb1d91b289b)) + (segment (start 97.9678 62.1691) (end 97.9678 62.1538) (width 0.25) (layer "F.Cu") (net 51) (tstamp 1a61c483-1571-44dc-92cd-c4f7c4f4b508)) + (segment (start 111.9378 63.5762) (end 110.5307 62.1691) (width 0.25) (layer "F.Cu") (net 51) (tstamp 20732593-86cc-43e9-a056-f9f93dba14d1)) + (segment (start 76.6318 69.2658) (end 78.0504 69.2658) (width 0.25) (layer "F.Cu") (net 51) (tstamp 33c9f6e2-b060-4734-ac5d-0c784c16265b)) + (segment (start 111.93 65.33) (end 111.93 63.838) (width 0.25) (layer "F.Cu") (net 51) (tstamp 52c6674d-d5f8-42a9-8ca7-812b341bfaae)) + (segment (start 111.93 63.838) (end 111.9378 63.8302) (width 0.25) (layer "F.Cu") (net 51) (tstamp 553fd43a-d7dd-47c0-ae44-f71107d99d76)) + (segment (start 78.0504 69.2658) (end 78.0542 69.2696) (width 0.25) (layer "F.Cu") (net 51) (tstamp 767e35b8-3a19-446b-9ecc-435ec41c334b)) + (segment (start 110.5307 62.1691) (end 97.9678 62.1691) (width 0.25) (layer "F.Cu") (net 51) (tstamp 8ef7f2c8-0c99-4a56-9a1d-a3f78304850f)) + (segment (start 111.9378 63.8302) (end 111.9378 63.5762) (width 0.25) (layer "F.Cu") (net 51) (tstamp ecc4fce2-6ce4-4f23-bfa6-8bf481032a7f)) + (via (at 76.6318 69.2658) (size 0.8) (drill 0.5) (layers "F.Cu" "B.Cu") (net 51) (tstamp 4d7b8f65-db41-4739-b816-aeb63d3c33c8)) + (via (at 97.9932 62.1284) (size 0.8) (drill 0.5) (layers "F.Cu" "B.Cu") (net 51) (tstamp 59793efd-1a6d-485e-b835-fb823ef47048)) + (segment (start 76.6318 70.0024) (end 78.232 71.6026) (width 0.25) (layer "B.Cu") (net 51) (tstamp 18ae17de-c829-4961-8b03-ac2b08da98c0)) + (segment (start 97.3836 62.1284) (end 97.9932 62.1284) (width 0.25) (layer "B.Cu") (net 51) (tstamp 18ec48c5-4b84-45d6-b2bf-92d2c0931c6e)) + (segment (start 87.2363 67.1449) (end 88.8111 67.1449) (width 0.25) (layer "B.Cu") (net 51) (tstamp 4006b12a-ec7b-44a2-abb0-8f9d19c9bfee)) + (segment (start 92.9386 66.5734) (end 97.3836 62.1284) (width 0.25) (layer "B.Cu") (net 51) (tstamp 44a5fd0b-b6af-4d8e-bab1-920511b2402d)) + (segment (start 78.232 71.6026) (end 84.8106 71.6026) (width 0.25) (layer "B.Cu") (net 51) (tstamp 7a5d4ab1-d576-414e-9778-e54018588a39)) + (segment (start 89.3826 66.5734) (end 92.9386 66.5734) (width 0.25) (layer "B.Cu") (net 51) (tstamp 91e09515-a7bc-479c-95f7-cf36dcc15714)) + (segment (start 88.8111 67.1449) (end 89.3826 66.5734) (width 0.25) (layer "B.Cu") (net 51) (tstamp 96d53376-7309-496a-bb9e-d37d6fb6e58b)) + (segment (start 86.0679 68.3133) (end 87.2363 67.1449) (width 0.25) (layer "B.Cu") (net 51) (tstamp b10bf558-71b9-4815-93a1-27dfa03299d6)) + (segment (start 86.0679 70.3453) (end 86.0679 68.3133) (width 0.25) (layer "B.Cu") (net 51) (tstamp cb339e11-28fb-4e78-98f4-febb795f2145)) + (segment (start 76.6318 69.2658) (end 76.6318 70.0024) (width 0.25) (layer "B.Cu") (net 51) (tstamp f1457b23-64ae-44e7-b8bd-ec6f42a50e8d)) + (segment (start 84.8106 71.6026) (end 86.0679 70.3453) (width 0.25) (layer "B.Cu") (net 51) (tstamp fa4270e4-4fc4-44a4-840e-2eb4898882b4)) + (segment (start 102.743 63.0936) (end 95.5802 63.0936) (width 0.25) (layer "F.Cu") (net 52) (tstamp 1e64fe5f-8347-448d-84c8-3ac3dde2342a)) + (segment (start 79.612066 69.2696) (end 79.612066 67.987334) (width 0.25) (layer "F.Cu") (net 52) (tstamp 226af767-7a93-4400-9ec2-26bbcc215ef3)) + (segment (start 79.612066 67.987334) (end 80.6196 66.9798) (width 0.25) (layer "F.Cu") (net 52) (tstamp 291b46dd-0e3c-4692-b721-9f5556270a7c)) + (segment (start 95.5802 63.0936) (end 92.9894 65.6844) (width 0.25) (layer "F.Cu") (net 52) (tstamp 35da86e7-5b89-41b1-b042-6e4901bde8bb)) + (segment (start 103.98 64.3306) (end 102.743 63.0936) (width 0.25) (layer "F.Cu") (net 52) (tstamp 36e40a39-70bf-4e9e-9cdc-1b623ca95f24)) + (segment (start 92.9894 65.6844) (end 88.265 65.6844) (width 0.25) (layer "F.Cu") (net 52) (tstamp 54853fde-ed6d-4aa4-b29c-b6fe8b6429c4)) + (segment (start 87.323766 65.6844) (end 88.265 65.6844) (width 0.25) (layer "F.Cu") (net 52) (tstamp be61cfa9-4139-4c81-8f9a-bb5f0b76ecce)) + (segment (start 86.028364 66.9798) (end 87.323766 65.6844) (width 0.25) (layer "F.Cu") (net 52) (tstamp c481c397-90cf-4207-9d7c-a4eaebe69c35)) + (segment (start 80.6196 66.9798) (end 86.028364 66.9798) (width 0.25) (layer "F.Cu") (net 52) (tstamp defecfb2-9612-4a4d-a704-5e94e29a38ea)) + (segment (start 103.98 64.57) (end 103.98 64.3306) (width 0.25) (layer "F.Cu") (net 52) (tstamp e2b5528b-aae5-4431-b06d-5ec13b129502)) + (segment (start 96.0628 63.6524) (end 93.3958 66.3194) (width 0.25) (layer "F.Cu") (net 53) (tstamp 0957cafe-ffa3-4bf8-812c-693bffcb8c56)) + (segment (start 100.9396 63.6524) (end 96.0628 63.6524) (width 0.25) (layer "F.Cu") (net 53) (tstamp 1fea9384-dd29-4201-ba0b-7565c62a85c4)) + (segment (start 81.169932 68.512268) (end 82.1182 67.564) (width 0.25) (layer "F.Cu") (net 53) (tstamp 237ef6ae-c919-47a6-8e48-4f3fb80edeca)) + (segment (start 87.324483 66.3194) (end 88.0618 66.3194) (width 0.25) (layer "F.Cu") (net 53) (tstamp 251f4610-399a-4a11-95a1-73bb4bcfebfe)) + (segment (start 101.7 64.4128) (end 100.9396 63.6524) (width 0.25) (layer "F.Cu") (net 53) (tstamp 3bf68798-0cd5-41ec-bae7-4f04b6925f05)) + (segment (start 86.079882 67.564) (end 87.324483 66.3194) (width 0.25) (layer "F.Cu") (net 53) (tstamp 51dcfad5-60cd-428e-8a59-b8dc26df216a)) + (segment (start 81.169932 69.2696) (end 81.169932 68.512268) (width 0.25) (layer "F.Cu") (net 53) (tstamp 716557a3-0bbc-49ba-9c92-bb92cdaf7294)) + (segment (start 101.7 64.91) (end 101.7 64.4128) (width 0.25) (layer "F.Cu") (net 53) (tstamp 97751c3b-8ed8-45c5-86ad-e1de9835dcb7)) + (segment (start 93.3958 66.3194) (end 88.0618 66.3194) (width 0.25) (layer "F.Cu") (net 53) (tstamp b8db055d-7646-447f-91d4-4dac758afa1f)) + (segment (start 82.1182 67.564) (end 86.079882 67.564) (width 0.25) (layer "F.Cu") (net 53) (tstamp f1447fd0-20de-4fc6-9a69-3a6fdf3fc86d)) + (segment (start 99.5 64.4734) (end 99.5 65.5) (width 0.25) (layer "F.Cu") (net 54) (tstamp 0ff10464-ea97-46ff-8d13-251864851257)) + (segment (start 96.393 64.2112) (end 99.2378 64.2112) (width 0.25) (layer "F.Cu") (net 54) (tstamp 153bed6a-91e0-4ac7-b29a-9b4f17458650)) + (segment (start 93.6752 66.929) (end 96.393 64.2112) (width 0.25) (layer "F.Cu") (net 54) (tstamp 230e4698-7f2c-4cd9-8556-1cd521a6011d)) + (segment (start 86.1314 68.1482) (end 87.3506 66.929) (width 0.25) (layer "F.Cu") (net 54) (tstamp 465519fd-ab70-449a-bf8e-3d5be4fc7442)) + (segment (start 83.8492 68.1482) (end 86.1314 68.1482) (width 0.25) (layer "F.Cu") (net 54) (tstamp 65d3ce97-9b54-4977-bd8d-5233da2c7da1)) + (segment (start 99.2378 64.2112) (end 99.5 64.4734) (width 0.25) (layer "F.Cu") (net 54) (tstamp 7a5ccf5a-de2e-44aa-ba91-d7729f797224)) + (segment (start 82.7278 69.2696) (end 83.8492 68.1482) (width 0.25) (layer "F.Cu") (net 54) (tstamp 886f3e0f-4181-4ee5-9aaa-8abcae7d72af)) + (segment (start 87.3506 66.929) (end 93.6752 66.929) (width 0.25) (layer "F.Cu") (net 54) (tstamp ee03e8e5-219a-4c2d-a147-c798a52aa2fe)) + + (zone (net 2) (net_name "GND") (layer "F.Cu") (tstamp b3ce059c-7254-484f-ba73-e700622a3987) (hatch edge 0.508) + (connect_pads (clearance 0.508)) + (min_thickness 0.254) (filled_areas_thickness no) + (fill yes (thermal_gap 0.508) (thermal_bridge_width 0.508)) + (polygon + (pts + (xy 159.5882 130.0734) + (xy 62.738 127.1778) + (xy 62.9158 43.561) + (xy 155.2194 40.6654) + ) + ) + (filled_polygon + (layer "F.Cu") + (pts + (xy 107.231877 49.029835) + (xy 109.069568 49.115491) + (xy 109.078558 49.116233) + (xy 109.208636 49.131679) + (xy 109.273923 49.159574) + (xy 109.313765 49.218338) + (xy 109.315512 49.289313) + (xy 109.27861 49.349965) + (xy 109.272731 49.354996) + (xy 109.226133 49.392462) + (xy 109.217368 49.401046) + (xy 109.098222 49.543039) + (xy 109.091292 49.553159) + (xy 109.001998 49.715585) + (xy 108.997166 49.726858) + (xy 108.94112 49.903538) + (xy 108.93857 49.915532) + (xy 108.922393 50.059761) + (xy 108.922 50.066785) + (xy 108.922 50.147885) + (xy 108.926475 50.163124) + (xy 108.927865 50.164329) + (xy 108.935548 50.166) + (xy 110.919885 50.166) + (xy 110.935124 50.161525) + (xy 110.936329 50.160135) + (xy 110.938 50.152452) + (xy 110.938 50.073343) + (xy 110.937699 50.067195) + (xy 110.924188 49.929397) + (xy 110.921805 49.917362) + (xy 110.868233 49.739924) + (xy 110.863559 49.728584) + (xy 110.77654 49.564923) + (xy 110.769748 49.5547) + (xy 110.752115 49.53308) + (xy 110.724561 49.467649) + (xy 110.736757 49.397707) + (xy 110.784829 49.345462) + (xy 110.853516 49.327501) + (xy 110.864609 49.328323) + (xy 111.982887 49.461118) + (xy 112.582257 49.532292) + (xy 112.592343 49.533907) + (xy 112.906559 49.597368) + (xy 112.937964 49.608176) + (xy 113.800483 50.039436) + (xy 113.828371 50.058433) + (xy 113.946164 50.164329) + (xy 114.529882 50.689097) + (xy 114.556272 50.722486) + (xy 114.976249 51.49283) + (xy 114.98057 51.503488) + (xy 114.9812 51.503212) + (xy 114.984806 51.511433) + (xy 114.987209 51.520082) + (xy 114.991943 51.527709) + (xy 114.991944 51.52771) + (xy 115.01734 51.56862) + (xy 115.020908 51.574746) + (xy 115.028766 51.58916) + (xy 115.033391 51.595354) + (xy 115.039474 51.604276) + (xy 115.059293 51.636204) + (xy 115.059297 51.636209) + (xy 115.06403 51.643833) + (xy 115.071487 51.650516) + (xy 115.088355 51.668965) + (xy 115.088472 51.669121) + (xy 115.093845 51.676317) + (xy 115.129516 51.70315) + (xy 115.137867 51.710012) + (xy 115.172497 51.74105) + (xy 115.180594 51.744924) + (xy 115.181519 51.745367) + (xy 115.202875 51.758333) + (xy 115.210246 51.763877) + (xy 115.218642 51.767042) + (xy 115.218645 51.767043) + (xy 115.252106 51.779654) + (xy 115.262044 51.783895) + (xy 115.273455 51.789355) + (xy 115.290947 51.794609) + (xy 115.299121 51.797374) + (xy 115.346544 51.815248) + (xy 115.355499 51.815929) + (xy 115.364261 51.817872) + (xy 115.36421 51.8181) + (xy 115.377179 51.820512) + (xy 117.816233 52.553154) + (xy 117.828885 52.557703) + (xy 120.992061 53.88971) + (xy 120.999491 53.893127) + (xy 124.167617 55.476511) + (xy 124.178334 55.482538) + (xy 127.073014 57.30181) + (xy 127.088003 57.312855) + (xy 127.169066 57.382391) + (xy 127.572001 57.728031) + (xy 127.59623 57.755965) + (xy 128.088647 58.528952) + (xy 128.103913 58.552916) + (xy 128.115241 58.575369) + (xy 128.452858 59.452958) + (xy 128.473148 59.505699) + (xy 128.48155 59.55094) + (xy 128.48155 60.564003) + (xy 128.479799 60.584935) + (xy 128.408293 61.009392) + (xy 128.406166 61.022017) + (xy 128.406069 61.022585) + (xy 128.391103 61.108316) + (xy 128.392103 61.117235) + (xy 128.392103 61.117237) + (xy 128.394438 61.13806) + (xy 128.395185 61.155207) + (xy 128.394468 61.184271) + (xy 128.396775 61.192948) + (xy 128.396775 61.19295) + (xy 128.403093 61.216714) + (xy 128.403415 61.218123) + (xy 128.403573 61.219537) + (xy 128.404583 61.223241) + (xy 128.404585 61.223251) + (xy 128.414411 61.259297) + (xy 128.414617 61.260062) + (xy 128.420577 61.282479) + (xy 128.431891 61.325039) + (xy 128.432558 61.326141) + (xy 128.432905 61.32714) + (xy 128.553099 61.768068) + (xy 128.650311 62.124688) + (xy 128.653239 62.142508) + (xy 128.654395 62.148158) + (xy 128.654929 62.157117) + (xy 128.657956 62.165566) + (xy 128.657957 62.165569) + (xy 128.670921 62.201749) + (xy 128.673871 62.211118) + (xy 128.677154 62.223161) + (xy 128.678935 62.227277) + (xy 128.68391 62.238776) + (xy 128.686885 62.246305) + (xy 128.69268 62.262477) + (xy 128.695003 62.266745) + (xy 128.695006 62.266751) + (xy 128.697203 62.270786) + (xy 128.702176 62.280989) + (xy 128.720349 62.322989) + (xy 128.726083 62.329896) + (xy 128.727819 62.331987) + (xy 128.741538 62.352227) + (xy 128.873515 62.594664) + (xy 129.204221 63.202159) + (xy 129.209274 63.212549) + (xy 129.227068 63.253852) + (xy 129.232789 63.260766) + (xy 129.232791 63.260769) + (xy 129.26428 63.298823) + (xy 129.268199 63.303811) + (xy 129.30122 63.348091) + (xy 129.308392 63.353493) + (xy 129.308393 63.353494) + (xy 129.338817 63.376409) + (xy 129.346573 63.382749) + (xy 129.488739 63.508719) + (xy 130.054897 64.010378) + (xy 130.074747 64.027967) + (xy 130.080548 64.033445) + (xy 130.118024 64.07115) + (xy 130.157593 64.092971) + (xy 130.159752 64.094161) + (xy 130.168253 64.099296) + (xy 130.186279 64.111178) + (xy 130.208262 64.12567) + (xy 130.263264 64.142584) + (xy 130.26936 64.144631) + (xy 130.78831 64.33376) + (xy 131.156323 64.467881) + (xy 131.166727 64.472209) + (xy 131.199222 64.487465) + (xy 131.20735 64.491281) + (xy 131.237886 64.496036) + (xy 131.262758 64.499909) + (xy 131.269296 64.501105) + (xy 131.315397 64.510798) + (xy 131.315399 64.510798) + (xy 131.324183 64.512645) + (xy 131.372875 64.508876) + (xy 131.382598 64.5085) + (xy 133.066913 64.5085) + (xy 133.093304 64.511295) + (xy 134.120832 64.731398) + (xy 134.154753 64.743976) + (xy 134.72291 65.053726) + (xy 134.909978 65.155712) + (xy 134.924037 65.163377) + (xy 134.95282 65.184908) + (xy 135.213232 65.445316) + (xy 135.653188 65.885266) + (xy 135.68661 65.918688) + (xy 135.703395 65.93948) + (xy 137.318363 68.442868) + (xy 137.340606 68.477348) + (xy 137.346813 68.488099) + (xy 138.917108 71.546546) + (xy 138.926529 71.564895) + (xy 138.931013 71.574625) + (xy 140.247906 74.785054) + (xy 140.262768 74.821287) + (xy 140.266882 74.832904) + (xy 141.262925 78.153976) + (xy 141.265905 78.166046) + (xy 141.394785 78.826716) + (xy 141.931909 81.580131) + (xy 141.933355 81.589351) + (xy 142.349265 85.08055) + (xy 142.35015 85.095455) + (xy 142.35015 88.49517) + (xy 142.349585 88.507091) + (xy 142.017767 91.99859) + (xy 142.015999 92.010803) + (xy 141.799914 93.118077) + (xy 141.351629 95.415205) + (xy 141.350009 95.423506) + (xy 141.347836 95.432764) + (xy 140.952706 96.869865) + (xy 140.434019 98.756349) + (xy 140.429095 98.77078) + (xy 139.100953 102.00727) + (xy 139.096475 102.016985) + (xy 138.304043 103.560397) + (xy 137.803795 104.534726) + (xy 137.514804 105.09759) + (xy 137.509396 105.107084) + (xy 136.718117 106.366106) + (xy 135.688267 108.004722) + (xy 135.677206 108.01973) + (xy 135.254164 108.512702) + (xy 135.247683 108.520254) + (xy 135.226184 108.540092) + (xy 134.441848 109.11063) + (xy 134.404752 109.129173) + (xy 133.498552 109.407738) + (xy 133.46153 109.4133) + (xy 131.935625 109.4133) + (xy 131.929582 109.412948) + (xy 131.924324 109.411556) + (xy 131.915355 109.411787) + (xy 131.915353 109.411787) + (xy 131.858296 109.413258) + (xy 131.855049 109.4133) + (xy 131.828137 109.4133) + (xy 131.823703 109.413935) + (xy 131.821837 109.414068) + (xy 131.817796 109.414264) + (xy 131.817305 109.414315) + (xy 131.812442 109.41444) + (xy 131.807658 109.415312) + (xy 131.807655 109.415312) + (xy 131.786395 109.419186) + (xy 131.781672 109.419954) + (xy 131.729349 109.427447) + (xy 131.729346 109.427448) + (xy 131.720463 109.42872) + (xy 131.713318 109.431969) + (xy 131.703526 109.434286) + (xy 131.218647 109.522641) + (xy 130.881242 109.584123) + (xy 130.866242 109.585934) + (xy 130.850922 109.586857) + (xy 130.8402 109.587503) + (xy 130.840198 109.587503) + (xy 130.831241 109.588043) + (xy 130.769587 109.610178) + (xy 130.76699 109.611077) + (xy 130.735226 109.621691) + (xy 130.704206 109.632056) + (xy 130.696833 109.637176) + (xy 130.672044 109.65439) + (xy 130.660494 109.66152) + (xy 129.891902 110.080544) + (xy 129.770376 110.146798) + (xy 129.767134 110.148505) + (xy 129.709038 110.17802) + (xy 129.702497 110.184169) + (xy 129.702496 110.18417) + (xy 129.682085 110.203359) + (xy 129.671167 110.212517) + (xy 129.641732 110.234496) + (xy 129.636337 110.241668) + (xy 129.636335 110.24167) + (xy 129.600569 110.289218) + (xy 129.599276 110.290906) + (xy 129.48762 110.434242) + (xy 129.207831 110.793417) + (xy 129.050367 110.995558) + (xy 129.033973 111.012697) + (xy 129.033128 111.013656) + (xy 129.026303 111.019478) + (xy 129.000351 111.059083) + (xy 128.994364 111.067452) + (xy 128.98816 111.075416) + (xy 128.981606 111.086876) + (xy 128.979848 111.089949) + (xy 128.975866 111.096447) + (xy 128.964961 111.113088) + (xy 128.962954 111.117515) + (xy 128.96109 111.121626) + (xy 128.955706 111.132156) + (xy 128.934155 111.169835) + (xy 128.931269 111.181884) + (xy 128.923496 111.204554) + (xy 128.614745 111.885614) + (xy 128.529932 112.072698) + (xy 128.529229 112.074221) + (xy 128.502583 112.130974) + (xy 128.502581 112.130981) + (xy 128.498769 112.1391) + (xy 128.497389 112.147964) + (xy 128.497388 112.147967) + (xy 128.493866 112.170589) + (xy 128.49034 112.186435) + (xy 128.483939 112.208413) + (xy 128.483938 112.208418) + (xy 128.481429 112.217034) + (xy 128.481439 112.22601) + (xy 128.48155 112.325687) + (xy 128.48155 114.078531) + (xy 128.478287 114.107021) + (xy 128.256745 115.061443) + (xy 128.246737 115.08924) + (xy 128.087863 115.407426) + (xy 127.838046 115.90775) + (xy 127.826873 115.930126) + (xy 127.798462 115.967469) + (xy 127.08075 116.613755) + (xy 127.064772 116.625979) + (xy 124.505799 118.277283) + (xy 124.497398 118.282253) + (xy 121.956632 119.655009) + (xy 121.425557 119.941944) + (xy 121.410878 119.948697) + (xy 118.173652 121.193256) + (xy 118.164666 121.196327) + (xy 116.521278 121.68968) + (xy 114.91813 122.170953) + (xy 114.827152 122.198265) + (xy 114.817929 122.200658) + (xy 111.411279 122.948063) + (xy 111.39655 122.95039) + (xy 108.0452 123.27807) + (xy 107.99756 123.282728) + (xy 107.985299 123.283326) + (xy 104.493876 123.283326) + (xy 104.481902 123.282756) + (xy 100.984128 122.948854) + (xy 100.974932 122.947633) + (xy 97.567924 122.366937) + (xy 97.552852 122.363403) + (xy 94.231032 121.365782) + (xy 94.222075 121.362721) + (xy 90.983858 120.118291) + (xy 90.969125 120.111511) + (xy 90.655538 119.941944) + (xy 87.894182 118.448788) + (xy 87.88706 118.44463) + (xy 86.278531 117.433213) + (xy 84.985005 116.619865) + (xy 84.970153 116.608932) + (xy 84.469807 116.180731) + (xy 84.449851 116.159133) + (xy 83.932445 115.447834) + (xy 83.879186 115.374616) + (xy 83.860671 115.337615) + (xy 83.770477 115.045035) + (xy 83.580941 114.430197) + (xy 83.57535 114.39308) + (xy 83.57535 112.954028) + (xy 83.575497 112.95182) + (xy 83.5761 112.949679) + (xy 83.575356 112.873778) + (xy 83.57535 112.872543) + (xy 83.57535 112.845387) + (xy 83.575103 112.843658) + (xy 83.57507 112.842853) + (xy 83.575051 112.842635) + (xy 83.575003 112.837766) + (xy 83.569754 112.806099) + (xy 83.569331 112.803357) + (xy 83.561203 112.7466) + (xy 83.561202 112.746598) + (xy 83.55993 112.737713) + (xy 83.558016 112.733504) + (xy 83.556936 112.728772) + (xy 83.551409 112.695425) + (xy 83.405771 111.816818) + (xy 83.404298 111.803716) + (xy 83.402504 111.773639) + (xy 83.40197 111.764679) + (xy 83.382264 111.70968) + (xy 83.380766 111.705238) + (xy 83.364322 111.653277) + (xy 83.364321 111.653276) + (xy 83.361614 111.644721) + (xy 83.356615 111.637271) + (xy 83.356612 111.637265) + (xy 83.336564 111.607388) + (xy 83.330527 111.597426) + (xy 82.843938 110.703585) + (xy 82.842382 110.700634) + (xy 82.815496 110.647972) + (xy 82.815495 110.647971) + (xy 82.811416 110.639981) + (xy 82.80526 110.633459) + (xy 82.805258 110.633456) + (xy 82.786342 110.613416) + (xy 82.776966 110.602253) + (xy 82.761048 110.580908) + (xy 82.755679 110.573708) + (xy 82.72006 110.54688) + (xy 82.701419 110.532839) + (xy 82.699993 110.531749) + (xy 81.993268 109.983488) + (xy 81.978261 109.969145) + (xy 81.97546 109.96667) + (xy 81.969645 109.959837) + (xy 81.962144 109.954909) + (xy 81.96214 109.954905) + (xy 81.928925 109.933081) + (xy 81.920883 109.927334) + (xy 81.918069 109.925151) + (xy 81.912388 109.920744) + (xy 81.908498 109.918529) + (xy 81.908493 109.918526) + (xy 81.903044 109.915424) + (xy 81.89909 109.913173) + (xy 81.892256 109.908989) + (xy 81.87611 109.89838) + (xy 81.871679 109.896365) + (xy 81.871674 109.896362) + (xy 81.866373 109.893951) + (xy 81.856202 109.888756) + (xy 81.825662 109.871369) + (xy 81.82566 109.871368) + (xy 81.817861 109.866928) + (xy 81.806967 109.864342) + (xy 81.783905 109.856445) + (xy 80.916332 109.461863) + (xy 80.914961 109.461229) + (xy 80.909871 109.458839) + (xy 80.84955 109.430519) + (xy 80.818448 109.425676) + (xy 80.802458 109.422108) + (xy 80.780851 109.415787) + (xy 80.78085 109.415787) + (xy 80.772236 109.413267) + (xy 80.763259 109.413266) + (xy 80.763258 109.413266) + (xy 80.62693 109.413252) + (xy 80.626579 109.413252) + (xy 80.626466 109.413285) + (xy 80.626257 109.4133) + (xy 78.910929 109.4133) + (xy 78.882619 109.410078) + (xy 78.872471 109.407738) + (xy 77.927143 109.189766) + (xy 77.899111 109.179688) + (xy 77.060006 108.760137) + (xy 77.022731 108.731763) + (xy 76.374995 108.012581) + (xy 76.362723 107.996536) + (xy 74.712638 105.437363) + (xy 74.707691 105.428998) + (xy 73.048141 102.358775) + (xy 73.041386 102.344102) + (xy 72.394656 100.663028) + (xy 72.35089 100.549266) + (xy 80.678 100.549266) + (xy 80.678337 100.555782) + (xy 80.688075 100.649632) + (xy 80.690968 100.663028) + (xy 80.741488 100.814453) + (xy 80.747653 100.827615) + (xy 80.831426 100.962992) + (xy 80.84046 100.97439) + (xy 80.953129 101.086863) + (xy 80.96454 101.095875) + (xy 81.100063 101.179412) + (xy 81.113241 101.185556) + (xy 81.264766 101.235815) + (xy 81.278132 101.238681) + (xy 81.37077 101.248172) + (xy 81.377185 101.2485) + (xy 81.388885 101.2485) + (xy 81.404124 101.244025) + (xy 81.405329 101.242635) + (xy 81.407 101.234952) + (xy 81.407 101.230385) + (xy 81.915 101.230385) + (xy 81.919475 101.245624) + (xy 81.920865 101.246829) + (xy 81.928548 101.2485) + (xy 81.944766 101.2485) + (xy 81.951282 101.248163) + (xy 82.045132 101.238425) + (xy 82.058528 101.235532) + (xy 82.209953 101.185012) + (xy 82.223115 101.178847) + (xy 82.358492 101.095074) + (xy 82.36989 101.08604) + (xy 82.482363 100.973371) + (xy 82.491375 100.96196) + (xy 82.574912 100.826437) + (xy 82.581056 100.813259) + (xy 82.631315 100.661734) + (xy 82.634181 100.648368) + (xy 82.643672 100.55573) + (xy 82.644 100.549315) + (xy 82.644 100.475115) + (xy 82.639525 100.459876) + (xy 82.638135 100.458671) + (xy 82.630452 100.457) + (xy 81.933115 100.457) + (xy 81.917876 100.461475) + (xy 81.916671 100.462865) + (xy 81.915 100.470548) + (xy 81.915 101.230385) + (xy 81.407 101.230385) + (xy 81.407 100.475115) + (xy 81.402525 100.459876) + (xy 81.401135 100.458671) + (xy 81.393452 100.457) + (xy 80.696115 100.457) + (xy 80.680876 100.461475) + (xy 80.679671 100.462865) + (xy 80.678 100.470548) + (xy 80.678 100.549266) + (xy 72.35089 100.549266) + (xy 71.795362 99.105255) + (xy 71.792274 99.096219) + (xy 71.792035 99.09542) + (xy 71.131716 96.893766) + (xy 72.1319 96.893766) + (xy 72.132237 96.900282) + (xy 72.141975 96.994132) + (xy 72.144868 97.007528) + (xy 72.195388 97.158953) + (xy 72.201553 97.172115) + (xy 72.285326 97.307492) + (xy 72.29436 97.31889) + (xy 72.407029 97.431363) + (xy 72.41844 97.440375) + (xy 72.553963 97.523912) + (xy 72.567141 97.530056) + (xy 72.718666 97.580315) + (xy 72.732032 97.583181) + (xy 72.82467 97.592672) + (xy 72.831085 97.593) + (xy 72.905285 97.593) + (xy 72.920524 97.588525) + (xy 72.921729 97.587135) + (xy 72.9234 97.579452) + (xy 72.9234 97.574885) + (xy 73.4314 97.574885) + (xy 73.435875 97.590124) + (xy 73.437265 97.591329) + (xy 73.444948 97.593) + (xy 73.523666 97.593) + (xy 73.530182 97.592663) + (xy 73.624032 97.582925) + (xy 73.637428 97.580032) + (xy 73.788853 97.529512) + (xy 73.802015 97.523347) + (xy 73.937392 97.439574) + (xy 73.948794 97.430536) + (xy 73.950467 97.428861) + (xy 73.951893 97.428081) + (xy 73.954527 97.425993) + (xy 73.954884 97.426444) + (xy 74.012749 97.394781) + (xy 74.083569 97.399784) + (xy 74.128654 97.428701) + (xy 74.130493 97.430536) + (xy 74.136897 97.436929) + (xy 74.28498 97.528209) + (xy 74.450091 97.582974) + (xy 74.456927 97.583674) + (xy 74.45693 97.583675) + (xy 74.50427 97.588525) + (xy 74.552828 97.5935) + (xy 75.251972 97.5935) + (xy 75.255218 97.593163) + (xy 75.255222 97.593163) + (xy 75.349135 97.583419) + (xy 75.349139 97.583418) + (xy 75.355993 97.582707) + (xy 75.362529 97.580526) + (xy 75.362531 97.580526) + (xy 75.495295 97.536232) + (xy 75.521007 97.527654) + (xy 75.668931 97.436116) + (xy 75.669227 97.435819) + (xy 75.732411 97.41025) + (xy 75.802175 97.423426) + (xy 75.833952 97.446539) + (xy 75.955162 97.567749) + (xy 75.959671 97.570906) + (xy 75.959673 97.570908) + (xy 75.991938 97.5935) + (xy 76.135546 97.694056) + (xy 76.335124 97.78712) + (xy 76.547829 97.844115) + (xy 76.7672 97.863307) + (xy 76.986571 97.844115) + (xy 77.199276 97.78712) + (xy 77.398854 97.694056) + (xy 77.542462 97.5935) + (xy 77.574727 97.570908) + (xy 77.574729 97.570906) + (xy 77.579238 97.567749) + (xy 77.734949 97.412038) + (xy 77.74353 97.399784) + (xy 77.858099 97.236162) + (xy 77.8581 97.23616) + (xy 77.861256 97.231653) + (xy 77.863579 97.226671) + (xy 77.863582 97.226666) + (xy 77.951995 97.037061) + (xy 77.95432 97.032076) + (xy 78.011315 96.819371) + (xy 78.030507 96.6) + (xy 80.383893 96.6) + (xy 80.403085 96.819371) + (xy 80.46008 97.032076) + (xy 80.462405 97.037061) + (xy 80.550818 97.226666) + (xy 80.550821 97.226671) + (xy 80.553144 97.231653) + (xy 80.5563 97.23616) + (xy 80.556301 97.236162) + (xy 80.670871 97.399784) + (xy 80.679451 97.412038) + (xy 80.819786 97.552373) + (xy 80.853812 97.614685) + (xy 80.848747 97.6855) + (xy 80.833683 97.712258) + (xy 80.834071 97.712497) + (xy 80.747364 97.853162) + (xy 80.742791 97.86058) + (xy 80.688026 98.025691) + (xy 80.6775 98.128428) + (xy 80.6775 98.827572) + (xy 80.688293 98.931593) + (xy 80.743346 99.096607) + (xy 80.834884 99.244531) + (xy 80.840065 99.249703) + (xy 80.842139 99.251773) + (xy 80.843105 99.253538) + (xy 80.844613 99.255441) + (xy 80.844287 99.255699) + (xy 80.876219 99.314054) + (xy 80.871218 99.384875) + (xy 80.842292 99.42997) + (xy 80.839636 99.432631) + (xy 80.830625 99.44404) + (xy 80.747088 99.579563) + (xy 80.740944 99.592741) + (xy 80.690685 99.744266) + (xy 80.687819 99.757632) + (xy 80.678328 99.85027) + (xy 80.678 99.856685) + (xy 80.678 99.930885) + (xy 80.682475 99.946124) + (xy 80.683865 99.947329) + (xy 80.691548 99.949) + (xy 82.625885 99.949) + (xy 82.641124 99.944525) + (xy 82.642329 99.943135) + (xy 82.644 99.935452) + (xy 82.644 99.856734) + (xy 82.643663 99.850218) + (xy 82.633925 99.756368) + (xy 82.631032 99.742972) + (xy 82.580512 99.591547) + (xy 82.574347 99.578385) + (xy 82.490574 99.443008) + (xy 82.481536 99.431606) + (xy 82.479861 99.429933) + (xy 82.479081 99.428507) + (xy 82.476993 99.425873) + (xy 82.477444 99.425516) + (xy 82.445781 99.367651) + (xy 82.450784 99.296831) + (xy 82.479701 99.251746) + (xy 82.482756 99.248685) + (xy 82.487929 99.243503) + (xy 82.558948 99.12829) + (xy 82.575369 99.10165) + (xy 82.57537 99.101648) + (xy 82.579209 99.09542) + (xy 82.633974 98.930309) + (xy 82.6445 98.827572) + (xy 82.6445 98.128428) + (xy 82.633707 98.024407) + (xy 82.578654 97.859393) + (xy 82.487116 97.711469) + (xy 82.481934 97.706296) + (xy 82.480371 97.704324) + (xy 82.453734 97.638514) + (xy 82.466905 97.56875) + (xy 82.490022 97.536965) + (xy 82.614949 97.412038) + (xy 82.62353 97.399784) + (xy 82.738099 97.236162) + (xy 82.7381 97.23616) + (xy 82.741256 97.231653) + (xy 82.743579 97.226671) + (xy 82.743582 97.226666) + (xy 82.831995 97.037061) + (xy 82.83432 97.032076) + (xy 82.891315 96.819371) + (xy 82.910507 96.6) + (xy 82.891315 96.380629) + (xy 82.83432 96.167924) + (xy 82.779776 96.050954) + (xy 82.743582 95.973334) + (xy 82.743579 95.973329) + (xy 82.741256 95.968347) + (xy 82.70288 95.91354) + (xy 82.618108 95.792473) + (xy 82.618106 95.79247) + (xy 82.614949 95.787962) + (xy 82.459238 95.632251) + (xy 82.454126 95.628671) + (xy 82.379959 95.576739) + (xy 82.278854 95.505944) + (xy 82.079276 95.41288) + (xy 81.866571 95.355885) + (xy 81.6472 95.336693) + (xy 81.427829 95.355885) + (xy 81.215124 95.41288) + (xy 81.172457 95.432776) + (xy 81.020534 95.503618) + (xy 81.020529 95.503621) + (xy 81.015547 95.505944) + (xy 81.01104 95.5091) + (xy 81.011038 95.509101) + (xy 80.839673 95.629092) + (xy 80.83967 95.629094) + (xy 80.835162 95.632251) + (xy 80.679451 95.787962) + (xy 80.676294 95.79247) + (xy 80.676292 95.792473) + (xy 80.59152 95.91354) + (xy 80.553144 95.968347) + (xy 80.550821 95.973329) + (xy 80.550818 95.973334) + (xy 80.514624 96.050954) + (xy 80.46008 96.167924) + (xy 80.403085 96.380629) + (xy 80.383893 96.6) + (xy 78.030507 96.6) + (xy 78.011315 96.380629) + (xy 77.95432 96.167924) + (xy 77.899776 96.050954) + (xy 77.863582 95.973334) + (xy 77.863579 95.973329) + (xy 77.861256 95.968347) + (xy 77.82288 95.91354) + (xy 77.738108 95.792473) + (xy 77.738106 95.79247) + (xy 77.734949 95.787962) + (xy 77.579238 95.632251) + (xy 77.574126 95.628671) + (xy 77.499959 95.576739) + (xy 77.398854 95.505944) + (xy 77.199276 95.41288) + (xy 76.986571 95.355885) + (xy 76.7672 95.336693) + (xy 76.547829 95.355885) + (xy 76.335124 95.41288) + (xy 76.292457 95.432776) + (xy 76.140534 95.503618) + (xy 76.140529 95.503621) + (xy 76.135547 95.505944) + (xy 76.13104 95.5091) + (xy 76.131038 95.509101) + (xy 75.959673 95.629092) + (xy 75.95967 95.629094) + (xy 75.955162 95.632251) + (xy 75.822738 95.764675) + (xy 75.760426 95.798701) + (xy 75.689611 95.793636) + (xy 75.667537 95.782845) + (xy 75.51982 95.691791) + (xy 75.354709 95.637026) + (xy 75.347873 95.636326) + (xy 75.34787 95.636325) + (xy 75.296374 95.631049) + (xy 75.251972 95.6265) + (xy 74.552828 95.6265) + (xy 74.549582 95.626837) + (xy 74.549578 95.626837) + (xy 74.455665 95.636581) + (xy 74.455661 95.636582) + (xy 74.448807 95.637293) + (xy 74.442271 95.639474) + (xy 74.442269 95.639474) + (xy 74.364617 95.665381) + (xy 74.283793 95.692346) + (xy 74.135869 95.783884) + (xy 74.130697 95.789065) + (xy 74.128627 95.791139) + (xy 74.126862 95.792105) + (xy 74.124959 95.793613) + (xy 74.124701 95.793287) + (xy 74.066346 95.825219) + (xy 73.995525 95.820218) + (xy 73.95043 95.791292) + (xy 73.947769 95.788636) + (xy 73.93636 95.779625) + (xy 73.800837 95.696088) + (xy 73.787659 95.689944) + (xy 73.636134 95.639685) + (xy 73.622768 95.636819) + (xy 73.53013 95.627328) + (xy 73.523715 95.627) + (xy 73.449515 95.627) + (xy 73.434276 95.631475) + (xy 73.433071 95.632865) + (xy 73.4314 95.640548) + (xy 73.4314 97.574885) + (xy 72.9234 97.574885) + (xy 72.9234 96.882115) + (xy 72.918925 96.866876) + (xy 72.917535 96.865671) + (xy 72.909852 96.864) + (xy 72.150015 96.864) + (xy 72.134776 96.868475) + (xy 72.133571 96.869865) + (xy 72.1319 96.877548) + (xy 72.1319 96.893766) + (xy 71.131716 96.893766) + (xy 70.964996 96.337885) + (xy 72.1319 96.337885) + (xy 72.136375 96.353124) + (xy 72.137765 96.354329) + (xy 72.145448 96.356) + (xy 72.905285 96.356) + (xy 72.920524 96.351525) + (xy 72.921729 96.350135) + (xy 72.9234 96.342452) + (xy 72.9234 95.645115) + (xy 72.918925 95.629876) + (xy 72.917535 95.628671) + (xy 72.909852 95.627) + (xy 72.831134 95.627) + (xy 72.824618 95.627337) + (xy 72.730768 95.637075) + (xy 72.717372 95.639968) + (xy 72.565947 95.690488) + (xy 72.552785 95.696653) + (xy 72.417408 95.780426) + (xy 72.40601 95.78946) + (xy 72.293537 95.902129) + (xy 72.284525 95.91354) + (xy 72.200988 96.049063) + (xy 72.194844 96.062241) + (xy 72.144585 96.213766) + (xy 72.141719 96.227132) + (xy 72.132228 96.31977) + (xy 72.1319 96.326185) + (xy 72.1319 96.337885) + (xy 70.964996 96.337885) + (xy 70.878373 96.049063) + (xy 70.791778 95.760335) + (xy 70.789402 95.751176) + (xy 70.076229 92.505142) + (xy 70.040624 92.343085) + (xy 70.038283 92.328264) + (xy 70.024453 92.186231) + (xy 69.927479 91.190366) + (xy 77.5667 91.190366) + (xy 77.567037 91.196882) + (xy 77.576775 91.290732) + (xy 77.579668 91.304128) + (xy 77.630188 91.455553) + (xy 77.636353 91.468715) + (xy 77.720126 91.604092) + (xy 77.72916 91.61549) + (xy 77.841829 91.727963) + (xy 77.85324 91.736975) + (xy 77.988763 91.820512) + (xy 78.001941 91.826656) + (xy 78.153466 91.876915) + (xy 78.166832 91.879781) + (xy 78.25947 91.889272) + (xy 78.265885 91.8896) + (xy 78.290085 91.8896) + (xy 78.305324 91.885125) + (xy 78.306529 91.883735) + (xy 78.3082 91.876052) + (xy 78.3082 91.178715) + (xy 78.303725 91.163476) + (xy 78.302335 91.162271) + (xy 78.294652 91.1606) + (xy 77.584815 91.1606) + (xy 77.569576 91.165075) + (xy 77.568371 91.166465) + (xy 77.5667 91.174148) + (xy 77.5667 91.190366) + (xy 69.927479 91.190366) + (xy 69.920365 91.11731) + (xy 69.933671 91.047572) + (xy 69.982568 90.996098) + (xy 70.051532 90.979231) + (xy 70.108772 90.99598) + (xy 70.111941 90.99781) + (xy 70.117279 91.001688) + (xy 70.123306 91.004371) + (xy 70.123307 91.004372) + (xy 70.12331 91.004373) + (xy 70.296544 91.081502) + (xy 70.392515 91.101901) + (xy 70.482028 91.120928) + (xy 70.482032 91.120928) + (xy 70.488485 91.1223) + (xy 70.684715 91.1223) + (xy 70.691168 91.120928) + (xy 70.691172 91.120928) + (xy 70.780685 91.101901) + (xy 70.876656 91.081502) + (xy 70.952864 91.047572) + (xy 71.049891 91.004373) + (xy 71.049893 91.004372) + (xy 71.055921 91.001688) + (xy 71.063615 90.996098) + (xy 71.20933 90.89023) + (xy 71.209332 90.890228) + (xy 71.214674 90.886347) + (xy 71.234806 90.863988) + (xy 71.295249 90.82675) + (xy 71.32844 90.8223) + (xy 76.966033 90.8223) + (xy 76.977216 90.822827) + (xy 76.984709 90.824502) + (xy 76.992635 90.824253) + (xy 76.992636 90.824253) + (xy 77.052786 90.822362) + (xy 77.056745 90.8223) + (xy 77.084656 90.8223) + (xy 77.088591 90.821803) + (xy 77.088656 90.821795) + (xy 77.100493 90.820862) + (xy 77.132751 90.819848) + (xy 77.13677 90.819722) + (xy 77.144689 90.819473) + (xy 77.164143 90.813821) + (xy 77.1835 90.809813) + (xy 77.19573 90.808268) + (xy 77.195731 90.808268) + (xy 77.203597 90.807274) + (xy 77.210968 90.804355) + (xy 77.21097 90.804355) + (xy 77.244712 90.790996) + (xy 77.255942 90.787151) + (xy 77.290783 90.777029) + (xy 77.290784 90.777029) + (xy 77.298393 90.774818) + (xy 77.305212 90.770785) + (xy 77.305217 90.770783) + (xy 77.315828 90.764507) + (xy 77.333576 90.755812) + (xy 77.352417 90.748352) + (xy 77.388187 90.722364) + (xy 77.398107 90.715848) + (xy 77.429335 90.69738) + (xy 77.429338 90.697378) + (xy 77.436162 90.693342) + (xy 77.446718 90.682786) + (xy 77.50903 90.64876) + (xy 77.562596 90.64876) + (xy 77.580248 90.6526) + (xy 78.6902 90.6526) + (xy 78.758321 90.672602) + (xy 78.804814 90.726258) + (xy 78.8162 90.7786) + (xy 78.8162 91.871485) + (xy 78.820675 91.886724) + (xy 78.822065 91.887929) + (xy 78.829748 91.8896) + (xy 78.858466 91.8896) + (xy 78.864982 91.889263) + (xy 78.958832 91.879525) + (xy 78.972228 91.876632) + (xy 79.123653 91.826112) + (xy 79.136815 91.819947) + (xy 79.272192 91.736174) + (xy 79.28359 91.72714) + (xy 79.385093 91.62546) + (xy 79.447376 91.591381) + (xy 79.518196 91.596384) + (xy 79.563283 91.625304) + (xy 79.671697 91.733529) + (xy 79.81978 91.824809) + (xy 79.984891 91.879574) + (xy 79.991727 91.880274) + (xy 79.99173 91.880275) + (xy 80.03907 91.885125) + (xy 80.087628 91.8901) + (xy 80.686772 91.8901) + (xy 80.690018 91.889763) + (xy 80.690022 91.889763) + (xy 80.783935 91.880019) + (xy 80.783939 91.880018) + (xy 80.790793 91.879307) + (xy 80.797329 91.877126) + (xy 80.797331 91.877126) + (xy 80.930095 91.832832) + (xy 80.955807 91.824254) + (xy 81.103731 91.732716) + (xy 81.109297 91.72714) + (xy 81.221458 91.614784) + (xy 81.221462 91.614779) + (xy 81.226629 91.609603) + (xy 81.317909 91.46152) + (xy 81.372674 91.296409) + (xy 81.3832 91.193672) + (xy 81.3832 90.619528) + (xy 81.382863 90.616278) + (xy 81.373119 90.522365) + (xy 81.373118 90.522361) + (xy 81.372407 90.515507) + (xy 81.317354 90.350493) + (xy 81.225816 90.202569) + (xy 81.220634 90.197396) + (xy 81.22063 90.197391) + (xy 81.116071 90.093015) + (xy 81.081991 90.030733) + (xy 81.079088 90.003842) + (xy 81.079088 89.166936) + (xy 81.09909 89.098815) + (xy 81.111446 89.082633) + (xy 81.184628 89.001356) + (xy 81.280115 88.835968) + (xy 81.33913 88.65434) + (xy 81.343996 88.608048) + (xy 81.358402 88.470977) + (xy 81.359092 88.464412) + (xy 81.358261 88.456509) + (xy 81.33982 88.281047) + (xy 81.33982 88.281045) + (xy 81.33913 88.274484) + (xy 81.280115 88.092856) + (xy 81.249656 88.040099) + (xy 81.232918 87.971105) + (xy 81.256138 87.904013) + (xy 81.311945 87.860126) + (xy 81.358775 87.8511) + (xy 83.553274 87.8511) + (xy 83.621395 87.871102) + (xy 83.642369 87.888004) + (xy 84.450995 88.696629) + (xy 84.48502 88.758942) + (xy 84.4879 88.785725) + (xy 84.4879 106.211757) + (xy 84.487163 106.225364) + (xy 84.483076 106.262988) + (xy 84.483613 106.269123) + (xy 84.48745 106.312988) + (xy 84.487779 106.317814) + (xy 84.4879 106.320286) + (xy 84.4879 106.323369) + (xy 84.488201 106.326437) + (xy 84.49209 106.366106) + (xy 84.492212 106.367419) + (xy 84.500313 106.460013) + (xy 84.5018 106.465132) + (xy 84.50232 106.470433) + (xy 84.529191 106.559434) + (xy 84.529526 106.560567) + (xy 84.548571 106.626117) + (xy 84.555491 106.649936) + (xy 84.557944 106.654668) + (xy 84.559484 106.659769) + (xy 84.562378 106.665212) + (xy 84.603131 106.74186) + (xy 84.603743 106.743026) + (xy 84.646508 106.825526) + (xy 84.649831 106.829689) + (xy 84.652334 106.834396) + (xy 84.711155 106.906518) + (xy 84.711846 106.907374) + (xy 84.743138 106.946573) + (xy 84.745642 106.949077) + (xy 84.746284 106.949795) + (xy 84.749985 106.954128) + (xy 84.777335 106.987662) + (xy 84.782082 106.991589) + (xy 84.782084 106.991591) + (xy 84.812662 107.016887) + (xy 84.821442 107.024877) + (xy 86.136545 108.339979) + (xy 86.145665 108.350144) + (xy 86.146811 108.35157) + (xy 86.173892 108.417199) + (xy 86.161193 108.48705) + (xy 86.112745 108.538948) + (xy 86.048596 108.5565) + (xy 85.977729 108.5565) + (xy 85.975593 108.556646) + (xy 85.975582 108.556646) + (xy 85.767452 108.570835) + (xy 85.767446 108.570836) + (xy 85.763175 108.571127) + (xy 85.75898 108.571996) + (xy 85.758978 108.571996) + (xy 85.622417 108.600276) + (xy 85.481658 108.629426) + (xy 85.210657 108.725393) + (xy 84.955188 108.85725) + (xy 84.951687 108.859711) + (xy 84.951683 108.859713) + (xy 84.941594 108.866804) + (xy 84.719977 109.022559) + (xy 84.70758 109.034079) + (xy 84.514295 109.213691) + (xy 84.509378 109.21826) + (xy 84.327287 109.440732) + (xy 84.177073 109.685858) + (xy 84.175347 109.689791) + (xy 84.175346 109.689792) + (xy 84.074939 109.918526) + (xy 84.061517 109.949102) + (xy 84.060342 109.953229) + (xy 84.060341 109.95323) + (xy 84.042187 110.01696) + (xy 83.982756 110.225594) + (xy 83.942249 110.510216) + (xy 83.942227 110.514505) + (xy 83.942226 110.514512) + (xy 83.940772 110.792094) + (xy 83.940743 110.797703) + (xy 83.978268 111.082734) + (xy 84.054129 111.360036) + (xy 84.055813 111.363984) + (xy 84.161696 111.612221) + (xy 84.166923 111.624476) + (xy 84.180882 111.647799) + (xy 84.282039 111.81682) + (xy 84.314561 111.871161) + (xy 84.494313 112.095528) + (xy 84.702851 112.293423) + (xy 84.936317 112.461186) + (xy 84.940112 112.463195) + (xy 84.940113 112.463196) + (xy 84.961869 112.474715) + (xy 85.190392 112.595712) + (xy 85.460373 112.694511) + (xy 85.741264 112.755755) + (xy 85.769841 112.758004) + (xy 85.964282 112.773307) + (xy 85.964291 112.773307) + (xy 85.966739 112.7735) + (xy 86.122271 112.7735) + (xy 86.124407 112.773354) + (xy 86.124418 112.773354) + (xy 86.332548 112.759165) + (xy 86.332554 112.759164) + (xy 86.336825 112.758873) + (xy 86.34102 112.758004) + (xy 86.341022 112.758004) + (xy 86.482178 112.728772) + (xy 86.618342 112.700574) + (xy 86.889343 112.604607) + (xy 87.144812 112.47275) + (xy 87.148313 112.470289) + (xy 87.148317 112.470287) + (xy 87.353862 112.325827) + (xy 87.380023 112.307441) + (xy 87.590622 112.11174) + (xy 87.772713 111.889268) + (xy 87.922927 111.644142) + (xy 87.925787 111.637628) + (xy 88.036757 111.38483) + (xy 88.038483 111.380898) + (xy 88.117244 111.104406) + (xy 88.157751 110.819784) + (xy 88.157845 110.801951) + (xy 88.159235 110.536583) + (xy 88.159235 110.536576) + (xy 88.159257 110.532297) + (xy 88.146178 110.432948) + (xy 88.122292 110.251522) + (xy 88.121732 110.247266) + (xy 88.109721 110.203359) + (xy 88.085989 110.116611) + (xy 88.045871 109.969964) + (xy 88.030139 109.933081) + (xy 87.934763 109.709476) + (xy 87.934761 109.709472) + (xy 87.933077 109.705524) + (xy 87.850691 109.567867) + (xy 87.787643 109.462521) + (xy 87.78764 109.462517) + (xy 87.785439 109.458839) + (xy 87.605687 109.234472) + (xy 87.397149 109.036577) + (xy 87.21741 108.907421) + (xy 87.173764 108.851428) + (xy 87.167318 108.780724) + (xy 87.200121 108.71776) + (xy 87.261758 108.682526) + (xy 87.290938 108.6791) + (xy 124.640261 108.6791) + (xy 124.708382 108.699102) + (xy 124.754875 108.752758) + (xy 124.764979 108.823032) + (xy 124.735485 108.887612) + (xy 124.712712 108.908187) + (xy 124.549977 109.022559) + (xy 124.53758 109.034079) + (xy 124.344295 109.213691) + (xy 124.339378 109.21826) + (xy 124.157287 109.440732) + (xy 124.007073 109.685858) + (xy 124.005347 109.689791) + (xy 124.005346 109.689792) + (xy 123.904939 109.918526) + (xy 123.891517 109.949102) + (xy 123.890342 109.953229) + (xy 123.890341 109.95323) + (xy 123.872187 110.01696) + (xy 123.812756 110.225594) + (xy 123.772249 110.510216) + (xy 123.772227 110.514505) + (xy 123.772226 110.514512) + (xy 123.770772 110.792094) + (xy 123.770743 110.797703) + (xy 123.808268 111.082734) + (xy 123.884129 111.360036) + (xy 123.885813 111.363984) + (xy 123.991696 111.612221) + (xy 123.996923 111.624476) + (xy 124.010882 111.647799) + (xy 124.112039 111.81682) + (xy 124.144561 111.871161) + (xy 124.324313 112.095528) + (xy 124.532851 112.293423) + (xy 124.766317 112.461186) + (xy 124.770112 112.463195) + (xy 124.770113 112.463196) + (xy 124.791869 112.474715) + (xy 125.020392 112.595712) + (xy 125.290373 112.694511) + (xy 125.571264 112.755755) + (xy 125.599841 112.758004) + (xy 125.794282 112.773307) + (xy 125.794291 112.773307) + (xy 125.796739 112.7735) + (xy 125.952271 112.7735) + (xy 125.954407 112.773354) + (xy 125.954418 112.773354) + (xy 126.162548 112.759165) + (xy 126.162554 112.759164) + (xy 126.166825 112.758873) + (xy 126.17102 112.758004) + (xy 126.171022 112.758004) + (xy 126.312178 112.728772) + (xy 126.448342 112.700574) + (xy 126.719343 112.604607) + (xy 126.974812 112.47275) + (xy 126.978313 112.470289) + (xy 126.978317 112.470287) + (xy 127.183862 112.325827) + (xy 127.210023 112.307441) + (xy 127.420622 112.11174) + (xy 127.602713 111.889268) + (xy 127.752927 111.644142) + (xy 127.755787 111.637628) + (xy 127.866757 111.38483) + (xy 127.868483 111.380898) + (xy 127.947244 111.104406) + (xy 127.987751 110.819784) + (xy 127.987845 110.801951) + (xy 127.989235 110.536583) + (xy 127.989235 110.536576) + (xy 127.989257 110.532297) + (xy 127.976178 110.432948) + (xy 127.952292 110.251522) + (xy 127.951732 110.247266) + (xy 127.939721 110.203359) + (xy 127.915989 110.116611) + (xy 127.875871 109.969964) + (xy 127.860139 109.933081) + (xy 127.764763 109.709476) + (xy 127.764761 109.709472) + (xy 127.763077 109.705524) + (xy 127.680691 109.567867) + (xy 127.617643 109.462521) + (xy 127.61764 109.462517) + (xy 127.615439 109.458839) + (xy 127.435687 109.234472) + (xy 127.227149 109.036577) + (xy 126.993683 108.868814) + (xy 126.971843 108.85725) + (xy 126.82731 108.780724) + (xy 126.739608 108.734288) + (xy 126.505239 108.648521) + (xy 126.473658 108.636964) + (xy 126.473656 108.636963) + (xy 126.469627 108.635489) + (xy 126.188736 108.574245) + (xy 126.157685 108.571801) + (xy 125.965718 108.556693) + (xy 125.965709 108.556693) + (xy 125.963261 108.5565) + (xy 125.812525 108.5565) + (xy 125.744404 108.536498) + (xy 125.697911 108.482842) + (xy 125.687807 108.412568) + (xy 125.717301 108.347988) + (xy 125.72343 108.341405) + (xy 129.345779 104.719055) + (xy 129.355922 104.709953) + (xy 129.380618 104.690097) + (xy 129.385425 104.686232) + (xy 129.417692 104.647778) + (xy 129.420873 104.64413) + (xy 129.422517 104.642317) + (xy 129.424709 104.640125) + (xy 129.45198 104.606924) + (xy 129.452762 104.605982) + (xy 129.508593 104.539447) + (xy 129.508595 104.539444) + (xy 129.512554 104.534726) + (xy 129.515123 104.530053) + (xy 129.518503 104.525938) + (xy 129.562428 104.44402) + (xy 129.563057 104.442862) + (xy 129.604865 104.366812) + (xy 129.604865 104.366811) + (xy 129.607833 104.361413) + (xy 129.609444 104.356335) + (xy 129.611963 104.351637) + (xy 129.639153 104.262702) + (xy 129.639536 104.261472) + (xy 129.665771 104.17877) + (xy 129.667635 104.172894) + (xy 129.668228 104.167603) + (xy 129.669788 104.162502) + (xy 129.679195 104.069889) + (xy 129.679315 104.068769) + (xy 129.6849 104.018973) + (xy 129.6849 104.015444) + (xy 129.684955 104.014461) + (xy 129.685404 104.008756) + (xy 129.689152 103.971864) + (xy 129.689152 103.971861) + (xy 129.689774 103.965737) + (xy 129.685459 103.920088) + (xy 129.6849 103.908231) + (xy 129.6849 90.458534) + (xy 131.9915 90.458534) + (xy 131.998255 90.520716) + (xy 132.049385 90.657105) + (xy 132.136739 90.773661) + (xy 132.253295 90.861015) + (xy 132.389684 90.912145) + (xy 132.451866 90.9189) + (xy 134.248134 90.9189) + (xy 134.310316 90.912145) + (xy 134.446705 90.861015) + (xy 134.563261 90.773661) + (xy 134.650615 90.657105) + (xy 134.701745 90.520716) + (xy 134.7085 90.458534) + (xy 134.7085 90.455069) + (xy 137.275201 90.455069) + (xy 137.275571 90.46189) + (xy 137.281095 90.512752) + (xy 137.284721 90.528004) + (xy 137.329876 90.648454) + (xy 137.338414 90.664049) + (xy 137.414915 90.766124) + (xy 137.427476 90.778685) + (xy 137.529551 90.855186) + (xy 137.545146 90.863724) + (xy 137.665594 90.908878) + (xy 137.680849 90.912505) + (xy 137.731714 90.918031) + (xy 137.738528 90.9184) + (xy 138.361085 90.9184) + (xy 138.376324 90.913925) + (xy 138.377529 90.912535) + (xy 138.3792 90.904852) + (xy 138.3792 90.900284) + (xy 138.8872 90.900284) + (xy 138.891675 90.915523) + (xy 138.893065 90.916728) + (xy 138.900748 90.918399) + (xy 139.527869 90.918399) + (xy 139.53469 90.918029) + (xy 139.585552 90.912505) + (xy 139.600804 90.908879) + (xy 139.721254 90.863724) + (xy 139.736849 90.855186) + (xy 139.838924 90.778685) + (xy 139.851485 90.766124) + (xy 139.927986 90.664049) + (xy 139.936524 90.648454) + (xy 139.981678 90.528006) + (xy 139.985305 90.512751) + (xy 139.990831 90.461886) + (xy 139.9912 90.455072) + (xy 139.9912 89.832515) + (xy 139.986725 89.817276) + (xy 139.985335 89.816071) + (xy 139.977652 89.8144) + (xy 138.905315 89.8144) + (xy 138.890076 89.818875) + (xy 138.888871 89.820265) + (xy 138.8872 89.827948) + (xy 138.8872 90.900284) + (xy 138.3792 90.900284) + (xy 138.3792 89.832515) + (xy 138.374725 89.817276) + (xy 138.373335 89.816071) + (xy 138.365652 89.8144) + (xy 137.293316 89.8144) + (xy 137.278077 89.818875) + (xy 137.276872 89.820265) + (xy 137.275201 89.827948) + (xy 137.275201 90.455069) + (xy 134.7085 90.455069) + (xy 134.7085 89.288285) + (xy 137.2752 89.288285) + (xy 137.279675 89.303524) + (xy 137.281065 89.304729) + (xy 137.288748 89.3064) + (xy 138.361085 89.3064) + (xy 138.376324 89.301925) + (xy 138.377529 89.300535) + (xy 138.3792 89.292852) + (xy 138.3792 89.288285) + (xy 138.8872 89.288285) + (xy 138.891675 89.303524) + (xy 138.893065 89.304729) + (xy 138.900748 89.3064) + (xy 139.973084 89.3064) + (xy 139.988323 89.301925) + (xy 139.989528 89.300535) + (xy 139.991199 89.292852) + (xy 139.991199 88.665731) + (xy 139.990829 88.65891) + (xy 139.985305 88.608048) + (xy 139.981679 88.592796) + (xy 139.936524 88.472346) + (xy 139.927986 88.456751) + (xy 139.851485 88.354676) + (xy 139.838924 88.342115) + (xy 139.736849 88.265614) + (xy 139.721254 88.257076) + (xy 139.600806 88.211922) + (xy 139.585551 88.208295) + (xy 139.534686 88.202769) + (xy 139.527872 88.2024) + (xy 138.905315 88.2024) + (xy 138.890076 88.206875) + (xy 138.888871 88.208265) + (xy 138.8872 88.215948) + (xy 138.8872 89.288285) + (xy 138.3792 89.288285) + (xy 138.3792 88.220516) + (xy 138.374725 88.205277) + (xy 138.373335 88.204072) + (xy 138.365652 88.202401) + (xy 137.738531 88.202401) + (xy 137.73171 88.202771) + (xy 137.680848 88.208295) + (xy 137.665596 88.211921) + (xy 137.545146 88.257076) + (xy 137.529551 88.265614) + (xy 137.427476 88.342115) + (xy 137.414915 88.354676) + (xy 137.338414 88.456751) + (xy 137.329876 88.472346) + (xy 137.284722 88.592794) + (xy 137.281095 88.608049) + (xy 137.275569 88.658914) + (xy 137.2752 88.665728) + (xy 137.2752 89.288285) + (xy 134.7085 89.288285) + (xy 134.7085 88.662266) + (xy 134.701745 88.600084) + (xy 134.650615 88.463695) + (xy 134.563261 88.347139) + (xy 134.446705 88.259785) + (xy 134.310316 88.208655) + (xy 134.248134 88.2019) + (xy 132.451866 88.2019) + (xy 132.389684 88.208655) + (xy 132.253295 88.259785) + (xy 132.136739 88.347139) + (xy 132.049385 88.463695) + (xy 131.998255 88.600084) + (xy 131.9915 88.662266) + (xy 131.9915 90.458534) + (xy 129.6849 90.458534) + (xy 129.6849 87.744325) + (xy 129.704902 87.676204) + (xy 129.721805 87.65523) + (xy 131.430065 85.946969) + (xy 131.478658 85.916751) + (xy 131.516799 85.903804) + (xy 131.55951 85.879885) + (xy 131.594115 85.860505) + (xy 131.694551 85.804258) + (xy 131.851186 85.673986) + (xy 131.981458 85.517351) + (xy 132.05806 85.380569) + (xy 132.07818 85.344642) + (xy 132.078181 85.34464) + (xy 132.081004 85.339599) + (xy 132.08286 85.334132) + (xy 132.082862 85.334127) + (xy 132.144634 85.152152) + (xy 132.144635 85.152147) + (xy 132.14649 85.146683) + (xy 132.175723 84.945063) + (xy 132.177249 84.8868) + (xy 132.163062 84.732402) + (xy 132.159137 84.68968) + (xy 132.159136 84.689677) + (xy 132.158608 84.683926) + (xy 132.15704 84.678366) + (xy 132.104875 84.493406) + (xy 132.104874 84.493404) + (xy 132.103307 84.487847) + (xy 132.089959 84.460778) + (xy 132.015756 84.31031) + (xy 132.013201 84.305129) + (xy 132.000124 84.287616) + (xy 131.894758 84.146515) + (xy 131.894758 84.146514) + (xy 131.891305 84.141891) + (xy 131.771578 84.031216) + (xy 131.745943 84.007519) + (xy 131.74594 84.007517) + (xy 131.741703 84.0036) + (xy 131.631097 83.933813) + (xy 131.574288 83.897969) + (xy 131.574283 83.897967) + (xy 131.569404 83.894888) + (xy 131.38018 83.819395) + (xy 131.180366 83.779649) + (xy 131.174592 83.779573) + (xy 131.174588 83.779573) + (xy 131.071452 83.778224) + (xy 130.976655 83.776983) + (xy 130.970958 83.777962) + (xy 130.970957 83.777962) + (xy 130.795418 83.808125) + (xy 130.77587 83.811484) + (xy 130.584734 83.881998) + (xy 130.579773 83.88495) + (xy 130.579772 83.88495) + (xy 130.505718 83.929008) + (xy 130.409649 83.986163) + (xy 130.256478 84.12049) + (xy 130.252911 84.125015) + (xy 130.252906 84.12502) + (xy 130.200546 84.191439) + (xy 130.130351 84.280481) + (xy 130.127662 84.285592) + (xy 130.12766 84.285595) + (xy 130.095279 84.347142) + (xy 130.035492 84.460778) + (xy 130.031978 84.472096) + (xy 130.000741 84.523824) + (xy 128.007021 86.517545) + (xy 127.996878 86.526647) + (xy 127.967375 86.550368) + (xy 127.963408 86.555096) + (xy 127.935109 86.588821) + (xy 127.931928 86.592469) + (xy 127.930285 86.594281) + (xy 127.928091 86.596475) + (xy 127.900758 86.629749) + (xy 127.900096 86.630547) + (xy 127.840246 86.701874) + (xy 127.837678 86.706544) + (xy 127.834297 86.710661) + (xy 127.818287 86.74052) + (xy 127.790423 86.792486) + (xy 127.789794 86.793645) + (xy 127.747938 86.869781) + (xy 127.747935 86.869789) + (xy 127.744967 86.875187) + (xy 127.743355 86.880269) + (xy 127.740838 86.884963) + (xy 127.713638 86.973931) + (xy 127.713318 86.974959) + (xy 127.685165 87.063706) + (xy 127.684571 87.069002) + (xy 127.683013 87.074098) + (xy 127.678117 87.1223) + (xy 127.673618 87.166587) + (xy 127.673489 87.167793) + (xy 127.6679 87.217627) + (xy 127.6679 87.221154) + (xy 127.667845 87.222139) + (xy 127.667398 87.227819) + (xy 127.663026 87.270862) + (xy 127.663606 87.276993) + (xy 127.667341 87.316509) + (xy 127.6679 87.328367) + (xy 127.6679 103.492276) + (xy 127.647898 103.560397) + (xy 127.630995 103.581371) + (xy 125.993155 105.219211) + (xy 125.930843 105.253237) + (xy 125.860028 105.248172) + (xy 125.803192 105.205625) + (xy 125.779545 105.143829) + (xy 125.77974 105.140223) + (xy 125.777688 105.131481) + (xy 125.776941 105.123048) + (xy 125.77645 105.111934) + (xy 125.77645 73.135734) + (xy 126.2511 73.135734) + (xy 126.257855 73.197916) + (xy 126.308985 73.334305) + (xy 126.396339 73.450861) + (xy 126.512895 73.538215) + (xy 126.649284 73.589345) + (xy 126.711466 73.5961) + (xy 128.507734 73.5961) + (xy 128.569916 73.589345) + (xy 128.706305 73.538215) + (xy 128.822861 73.450861) + (xy 128.910215 73.334305) + (xy 128.961345 73.197916) + (xy 128.9681 73.135734) + (xy 128.9681 71.339466) + (xy 128.961345 71.277284) + (xy 128.910215 71.140895) + (xy 128.822861 71.024339) + (xy 128.706305 70.936985) + (xy 128.569916 70.885855) + (xy 128.507734 70.8791) + (xy 126.711466 70.8791) + (xy 126.649284 70.885855) + (xy 126.512895 70.936985) + (xy 126.396339 71.024339) + (xy 126.308985 71.140895) + (xy 126.257855 71.277284) + (xy 126.2511 71.339466) + (xy 126.2511 73.135734) + (xy 125.77645 73.135734) + (xy 125.77645 68.774636) + (xy 125.777351 68.759596) + (xy 125.780475 68.733608) + (xy 125.781547 68.724694) + (xy 125.770772 68.659917) + (xy 125.770343 68.657149) + (xy 125.762303 68.601) + (xy 125.762302 68.600998) + (xy 125.76103 68.592113) + (xy 125.744849 68.556525) + (xy 125.73992 68.543928) + (xy 125.717027 68.474682) + (xy 125.604957 68.135706) + (xy 125.60312 68.128874) + (xy 125.602733 68.122797) + (xy 125.599672 68.11436) + (xy 125.599671 68.114357) + (xy 125.580352 68.061116) + (xy 125.579164 68.057689) + (xy 125.57258 68.037773) + (xy 125.572574 68.037758) + (xy 125.571171 68.033515) + (xy 125.569177 68.029505) + (xy 125.567696 68.025908) + (xy 125.56577 68.020932) + (xy 125.556109 67.994309) + (xy 125.553049 67.985875) + (xy 125.542098 67.970936) + (xy 125.530904 67.952557) + (xy 125.526728 67.944161) + (xy 125.522731 67.936124) + (xy 125.497849 67.909202) + (xy 125.49282 67.903101) + (xy 125.48976 67.899539) + (xy 125.486881 67.895612) + (xy 125.468499 67.87729) + (xy 125.464917 67.87357) + (xy 125.429962 67.835749) + (xy 125.42996 67.835747) + (xy 125.423868 67.829156) + (xy 125.416672 67.82484) + (xy 125.408421 67.81741) + (xy 125.392875 67.801914) + (xy 125.246514 67.656033) + (xy 125.067162 67.477269) + (xy 125.055658 67.464088) + (xy 125.055498 67.463877) + (xy 125.03822 67.441057) + (xy 125.031012 67.43571) + (xy 125.03101 67.435708) + (xy 124.981473 67.398962) + (xy 124.981141 67.398714) + (xy 124.92978 67.360352) + (xy 124.92275 67.355101) + (xy 124.921937 67.354798) + (xy 124.921235 67.354277) + (xy 124.851796 67.328634) + (xy 124.851411 67.328491) + (xy 124.794686 67.307332) + (xy 124.794682 67.307331) + (xy 124.786277 67.304196) + (xy 124.760309 67.302309) + (xy 124.75359 67.301821) + (xy 124.737777 67.299658) + (xy 124.424308 67.236348) + (xy 124.412415 67.233337) + (xy 124.412072 67.233232) + (xy 124.40395 67.229419) + (xy 124.395085 67.228039) + (xy 124.395083 67.228038) + (xy 124.368344 67.223875) + (xy 124.345794 67.220364) + (xy 124.340283 67.219379) + (xy 124.318568 67.214993) + (xy 124.314092 67.214738) + (xy 124.314088 67.214737) + (xy 124.313478 67.214702) + (xy 124.313219 67.214688) + (xy 124.301026 67.213393) + (xy 124.298177 67.212949) + (xy 124.29817 67.212948) + (xy 124.293364 67.2122) + (xy 124.273258 67.2122) + (xy 124.266074 67.211995) + (xy 124.261134 67.211713) + (xy 124.209973 67.208791) + (xy 124.201229 67.210815) + (xy 124.192281 67.211579) + (xy 124.192223 67.210902) + (xy 124.180851 67.2122) + (xy 114.748992 67.2122) + (xy 114.680871 67.192198) + (xy 114.634378 67.138542) + (xy 114.624274 67.068268) + (xy 114.653768 67.003688) + (xy 114.696073 66.974261) + (xy 114.695425 66.973077) + (xy 114.703297 66.968767) + (xy 114.711705 66.965615) + (xy 114.828261 66.878261) + (xy 114.915615 66.761705) + (xy 114.966745 66.625316) + (xy 114.9735 66.563134) + (xy 114.9735 65.616866) + (xy 114.966745 65.554684) + (xy 114.915615 65.418295) + (xy 114.828261 65.301739) + (xy 114.711705 65.214385) + (xy 114.575316 65.163255) + (xy 114.513134 65.1565) + (xy 113.566866 65.1565) + (xy 113.504684 65.163255) + (xy 113.368295 65.214385) + (xy 113.251739 65.301739) + (xy 113.164385 65.418295) + (xy 113.113255 65.554684) + (xy 113.112402 65.56254) + (xy 113.112083 65.56388) + (xy 113.076865 65.625527) + (xy 113.01391 65.658347) + (xy 112.943205 65.651921) + (xy 112.887198 65.608289) + (xy 112.8635 65.534734) + (xy 112.8635 64.856866) + (xy 112.856745 64.794684) + (xy 112.805615 64.658295) + (xy 112.718261 64.541739) + (xy 112.613935 64.463551) + (xy 112.57142 64.406692) + (xy 112.5635 64.362725) + (xy 112.5635 63.956525) + (xy 112.567457 63.925196) + (xy 112.5713 63.91023) + (xy 112.5713 63.889976) + (xy 112.572851 63.870265) + (xy 112.57478 63.858086) + (xy 112.57602 63.850257) + (xy 112.571859 63.806238) + (xy 112.5713 63.794381) + (xy 112.5713 63.654967) + (xy 112.571827 63.643784) + (xy 112.573502 63.636291) + (xy 112.572715 63.611233) + (xy 112.571362 63.568201) + (xy 112.5713 63.564243) + (xy 112.5713 63.536344) + (xy 112.570796 63.532353) + (xy 112.569863 63.520511) + (xy 112.569533 63.509994) + (xy 112.568474 63.476311) + (xy 112.566262 63.468697) + (xy 112.566261 63.468692) + (xy 112.562823 63.456859) + (xy 112.558812 63.437495) + (xy 112.557267 63.425264) + (xy 112.556274 63.417403) + (xy 112.553357 63.410036) + (xy 112.553356 63.410031) + (xy 112.539998 63.376292) + (xy 112.536154 63.365065) + (xy 112.534015 63.357703) + (xy 123.770743 63.357703) + (xy 123.771302 63.361947) + (xy 123.771302 63.361951) + (xy 123.781248 63.437495) + (xy 123.808268 63.642734) + (xy 123.809401 63.646874) + (xy 123.809401 63.646876) + (xy 123.82441 63.701739) + (xy 123.884129 63.920036) + (xy 123.885813 63.923984) + (xy 123.978529 64.141351) + (xy 123.996923 64.184476) + (xy 124.029133 64.238295) + (xy 124.138534 64.42109) + (xy 124.144561 64.431161) + (xy 124.324313 64.655528) + (xy 124.408297 64.735226) + (xy 124.526693 64.847579) + (xy 124.532851 64.853423) + (xy 124.766317 65.021186) + (xy 124.770112 65.023195) + (xy 124.770113 65.023196) + (xy 124.791869 65.034715) + (xy 125.020392 65.155712) + (xy 125.086374 65.179858) + (xy 125.275016 65.248891) + (xy 125.290373 65.254511) + (xy 125.571264 65.315755) + (xy 125.599841 65.318004) + (xy 125.794282 65.333307) + (xy 125.794291 65.333307) + (xy 125.796739 65.3335) + (xy 125.952271 65.3335) + (xy 125.954407 65.333354) + (xy 125.954418 65.333354) + (xy 126.162548 65.319165) + (xy 126.162554 65.319164) + (xy 126.166825 65.318873) + (xy 126.17102 65.318004) + (xy 126.171022 65.318004) + (xy 126.33695 65.283642) + (xy 126.448342 65.260574) + (xy 126.719343 65.164607) + (xy 126.894891 65.074) + (xy 126.971005 65.034715) + (xy 126.971006 65.034715) + (xy 126.974812 65.03275) + (xy 126.978313 65.030289) + (xy 126.978317 65.030287) + (xy 127.137575 64.918358) + (xy 127.210023 64.867441) + (xy 127.352303 64.735226) + (xy 127.417479 64.674661) + (xy 127.417481 64.674658) + (xy 127.420622 64.67174) + (xy 127.602713 64.449268) + (xy 127.752927 64.204142) + (xy 127.789542 64.120731) + (xy 127.866758 63.944828) + (xy 127.866759 63.944826) + (xy 127.868483 63.940898) + (xy 127.892607 63.856212) + (xy 127.946068 63.668534) + (xy 127.947244 63.664406) + (xy 127.987751 63.379784) + (xy 127.987799 63.370772) + (xy 127.989235 63.096583) + (xy 127.989235 63.096576) + (xy 127.989257 63.092297) + (xy 127.979436 63.017695) + (xy 127.955976 62.839505) + (xy 127.951732 62.807266) + (xy 127.949776 62.800114) + (xy 127.916674 62.679115) + (xy 127.875871 62.529964) + (xy 127.852347 62.474813) + (xy 127.764763 62.269476) + (xy 127.764761 62.269472) + (xy 127.763077 62.265524) + (xy 127.615439 62.018839) + (xy 127.435687 61.794472) + (xy 127.227149 61.596577) + (xy 126.993683 61.428814) + (xy 126.971843 61.41725) + (xy 126.941612 61.401244) + (xy 126.739608 61.294288) + (xy 126.527627 61.216714) + (xy 126.473658 61.196964) + (xy 126.473656 61.196963) + (xy 126.469627 61.195489) + (xy 126.188736 61.134245) + (xy 126.157685 61.131801) + (xy 125.965718 61.116693) + (xy 125.965709 61.116693) + (xy 125.963261 61.1165) + (xy 125.807729 61.1165) + (xy 125.805593 61.116646) + (xy 125.805582 61.116646) + (xy 125.597452 61.130835) + (xy 125.597446 61.130836) + (xy 125.593175 61.131127) + (xy 125.58898 61.131996) + (xy 125.588978 61.131996) + (xy 125.544162 61.141277) + (xy 125.311658 61.189426) + (xy 125.040657 61.285393) + (xy 124.785188 61.41725) + (xy 124.781687 61.419711) + (xy 124.781683 61.419713) + (xy 124.72134 61.462123) + (xy 124.549977 61.582559) + (xy 124.531717 61.599527) + (xy 124.34414 61.773835) + (xy 124.339378 61.77826) + (xy 124.157287 62.000732) + (xy 124.007073 62.245858) + (xy 124.005347 62.249791) + (xy 124.005346 62.249792) + (xy 123.904252 62.48009) + (xy 123.891517 62.509102) + (xy 123.890342 62.513229) + (xy 123.890341 62.51323) + (xy 123.880521 62.547704) + (xy 123.812756 62.785594) + (xy 123.772249 63.070216) + (xy 123.772227 63.074505) + (xy 123.772226 63.074512) + (xy 123.770887 63.330222) + (xy 123.770743 63.357703) + (xy 112.534015 63.357703) + (xy 112.52603 63.330222) + (xy 112.523818 63.322607) + (xy 112.513507 63.305172) + (xy 112.504812 63.287424) + (xy 112.497352 63.268583) + (xy 112.48665 63.253852) + (xy 112.471364 63.232813) + (xy 112.464848 63.222893) + (xy 112.44638 63.191665) + (xy 112.446378 63.191662) + (xy 112.442342 63.184838) + (xy 112.428021 63.170517) + (xy 112.41518 63.155483) + (xy 112.407931 63.145506) + (xy 112.403272 63.139093) + (xy 112.369195 63.110902) + (xy 112.360416 63.102912) + (xy 111.034352 61.776847) + (xy 111.026812 61.768561) + (xy 111.0227 61.762082) + (xy 110.973048 61.715456) + (xy 110.970207 61.712702) + (xy 110.95047 61.692965) + (xy 110.947273 61.690485) + (xy 110.938251 61.68278) + (xy 110.9118 61.657941) + (xy 110.906021 61.652514) + (xy 110.899075 61.648695) + (xy 110.899072 61.648693) + (xy 110.888266 61.642752) + (xy 110.871747 61.631901) + (xy 110.871283 61.631541) + (xy 110.855741 61.619486) + (xy 110.848472 61.616341) + (xy 110.848468 61.616338) + (xy 110.815163 61.601926) + (xy 110.804513 61.596709) + (xy 110.76576 61.575405) + (xy 110.746137 61.570367) + (xy 110.727434 61.563963) + (xy 110.71612 61.559067) + (xy 110.716119 61.559067) + (xy 110.708845 61.555919) + (xy 110.701022 61.55468) + (xy 110.701012 61.554677) + (xy 110.665176 61.549001) + (xy 110.653556 61.546595) + (xy 110.618411 61.537572) + (xy 110.61841 61.537572) + (xy 110.61073 61.5356) + (xy 110.590476 61.5356) + (xy 110.570765 61.534049) + (xy 110.558586 61.53212) + (xy 110.550757 61.53088) + (xy 110.542865 61.531626) + (xy 110.506739 61.535041) + (xy 110.494881 61.5356) + (xy 108.68692 61.5356) + (xy 108.618799 61.515598) + (xy 108.572306 61.461942) + (xy 108.562202 61.391668) + (xy 108.591696 61.327088) + (xy 108.625354 61.299666) + (xy 108.677104 61.270685) + (xy 108.677108 61.270682) + (xy 108.682151 61.267858) + (xy 108.838786 61.137586) + (xy 108.969058 60.980951) + (xy 109.036404 60.860697) + (xy 109.06578 60.808242) + (xy 109.065781 60.80824) + (xy 109.068604 60.803199) + (xy 109.07046 60.797732) + (xy 109.070462 60.797727) + (xy 109.132234 60.615752) + (xy 109.132235 60.615747) + (xy 109.13409 60.610283) + (xy 109.163323 60.408663) + (xy 109.164849 60.3504) + (xy 109.146208 60.147526) + (xy 109.090907 59.951447) + (xy 109.071015 59.911108) + (xy 109.003356 59.77391) + (xy 109.000801 59.768729) + (xy 108.995903 59.762169) + (xy 108.934959 59.680556) + (xy 108.878905 59.605491) + (xy 108.858971 59.587064) + (xy 108.822526 59.526136) + (xy 108.8185 59.49454) + (xy 108.8185 56.488513) + (xy 108.826518 56.444284) + (xy 108.858973 56.357711) + (xy 108.858973 56.357709) + (xy 108.861745 56.350316) + (xy 108.862737 56.341185) + (xy 108.863123 56.340255) + (xy 108.864426 56.334777) + (xy 108.865312 56.334988) + (xy 108.889979 56.275623) + (xy 108.948341 56.235196) + (xy 109.019296 56.23274) + (xy 109.080314 56.269035) + (xy 109.112023 56.332557) + (xy 109.114 56.354792) + (xy 109.114 56.729884) + (xy 109.118475 56.745123) + (xy 109.119865 56.746328) + (xy 109.127548 56.747999) + (xy 109.204669 56.747999) + (xy 109.21149 56.747629) + (xy 109.262352 56.742105) + (xy 109.277604 56.738479) + (xy 109.398054 56.693324) + (xy 109.413649 56.684786) + (xy 109.515724 56.608285) + (xy 109.528285 56.595724) + (xy 109.604786 56.493649) + (xy 109.613324 56.478054) + (xy 109.658478 56.357606) + (xy 109.662105 56.342351) + (xy 109.667631 56.291486) + (xy 109.668 56.284672) + (xy 109.668 56.159934) + (xy 109.675665 56.125892) + (xy 109.676 56.121648) + (xy 109.676 56.107924) + (xy 110.184 56.107924) + (xy 110.187973 56.121455) + (xy 110.195768 56.122575) + (xy 110.303521 56.090862) + (xy 110.314889 56.086269) + (xy 110.479154 56.000393) + (xy 110.489415 55.993679) + (xy 110.633873 55.877532) + (xy 110.642632 55.868954) + (xy 110.761778 55.726961) + (xy 110.768708 55.716841) + (xy 110.858002 55.554415) + (xy 110.862834 55.543142) + (xy 110.91888 55.366462) + (xy 110.92143 55.354468) + (xy 110.937607 55.210239) + (xy 110.938 55.203215) + (xy 110.938 54.872115) + (xy 110.933525 54.856876) + (xy 110.932135 54.855671) + (xy 110.924452 54.854) + (xy 110.202115 54.854) + (xy 110.186876 54.858475) + (xy 110.185671 54.859865) + (xy 110.184 54.867548) + (xy 110.184 56.107924) + (xy 109.676 56.107924) + (xy 109.676 55.787115) + (xy 109.671525 55.771876) + (xy 109.670135 55.770671) + (xy 109.662452 55.769) + (xy 109.132115 55.769) + (xy 109.116876 55.773475) + (xy 109.10771 55.784053) + (xy 109.083596 55.828214) + (xy 109.021284 55.862239) + (xy 108.950468 55.857175) + (xy 108.893632 55.814628) + (xy 108.868821 55.748108) + (xy 108.8685 55.739119) + (xy 108.8685 55.283137) + (xy 108.888502 55.215016) + (xy 108.942158 55.168523) + (xy 109.012432 55.158419) + (xy 109.077012 55.187913) + (xy 109.115396 55.247639) + (xy 109.118475 55.258124) + (xy 109.119865 55.259329) + (xy 109.127548 55.261) + (xy 109.657885 55.261) + (xy 109.673124 55.256525) + (xy 109.674329 55.255135) + (xy 109.676 55.247452) + (xy 109.676 54.872115) + (xy 109.671525 54.856876) + (xy 109.670135 54.855671) + (xy 109.662452 54.854) + (xy 109.200674 54.854) + (xy 109.132553 54.833998) + (xy 109.08606 54.780342) + (xy 109.075956 54.710068) + (xy 109.10545 54.645488) + (xy 109.114101 54.636452) + (xy 109.133527 54.618082) + (xy 109.133529 54.61808) + (xy 109.138485 54.613393) + (xy 109.142317 54.607755) + (xy 109.14232 54.607751) + (xy 109.236442 54.469255) + (xy 109.240277 54.463612) + (xy 109.255638 54.425206) + (xy 109.299505 54.369387) + (xy 109.372626 54.346) + (xy 109.657885 54.346) + (xy 109.673124 54.341525) + (xy 109.674329 54.340135) + (xy 109.676 54.332452) + (xy 109.676 54.327885) + (xy 110.184 54.327885) + (xy 110.188475 54.343124) + (xy 110.189865 54.344329) + (xy 110.197548 54.346) + (xy 110.919885 54.346) + (xy 110.935124 54.341525) + (xy 110.936329 54.340135) + (xy 110.938 54.332452) + (xy 110.938 54.003343) + (xy 110.937699 53.997195) + (xy 110.924188 53.859397) + (xy 110.921805 53.847362) + (xy 110.868233 53.669924) + (xy 110.863559 53.658584) + (xy 110.77654 53.494923) + (xy 110.769751 53.484706) + (xy 110.652603 53.341067) + (xy 110.643959 53.332363) + (xy 110.501144 53.214216) + (xy 110.490973 53.207356) + (xy 110.327924 53.119196) + (xy 110.316619 53.114444) + (xy 110.201308 53.07875) + (xy 110.187205 53.078544) + (xy 110.184 53.085299) + (xy 110.184 54.327885) + (xy 109.676 54.327885) + (xy 109.676 53.092076) + (xy 109.672027 53.078545) + (xy 109.664232 53.077425) + (xy 109.556479 53.109138) + (xy 109.545111 53.113731) + (xy 109.380846 53.199607) + (xy 109.370585 53.206321) + (xy 109.226127 53.322468) + (xy 109.217368 53.331046) + (xy 109.173 53.383921) + (xy 109.11389 53.423248) + (xy 109.042902 53.424374) + (xy 108.999952 53.403028) + (xy 108.934322 53.35285) + (xy 108.803162 53.291689) + (xy 108.776369 53.279195) + (xy 108.776366 53.279194) + (xy 108.770192 53.276315) + (xy 108.763544 53.274829) + (xy 108.763541 53.274828) + (xy 108.598494 53.237936) + (xy 108.598495 53.237936) + (xy 108.593457 53.23681) + (xy 108.587912 53.2365) + (xy 108.454756 53.2365) + (xy 108.319963 53.251143) + (xy 108.236609 53.279195) + (xy 108.154796 53.306728) + (xy 108.154794 53.306729) + (xy 108.148325 53.308906) + (xy 107.993095 53.402177) + (xy 107.988138 53.406865) + (xy 107.988135 53.406867) + (xy 107.866473 53.521918) + (xy 107.861515 53.526607) + (xy 107.857683 53.532245) + (xy 107.85768 53.532249) + (xy 107.80674 53.607205) + (xy 107.759723 53.676388) + (xy 107.69247 53.844534) + (xy 107.691356 53.851262) + (xy 107.691355 53.851266) + (xy 107.666179 54.003343) + (xy 107.662892 54.023198) + (xy 107.663249 54.030015) + (xy 107.663249 54.030019) + (xy 107.66948 54.148906) + (xy 107.653071 54.21798) + (xy 107.601922 54.267217) + (xy 107.543653 54.2815) + (xy 107.161866 54.2815) + (xy 107.158471 54.281869) + (xy 107.158467 54.281869) + (xy 107.132469 54.284693) + (xy 107.123606 54.285656) + (xy 107.096394 54.285656) + (xy 107.087531 54.284693) + (xy 107.061533 54.281869) + (xy 107.061529 54.281869) + (xy 107.058134 54.2815) + (xy 106.661866 54.2815) + (xy 106.658471 54.281869) + (xy 106.658467 54.281869) + (xy 106.632469 54.284693) + (xy 106.623606 54.285656) + (xy 106.596394 54.285656) + (xy 106.587531 54.284693) + (xy 106.561533 54.281869) + (xy 106.561529 54.281869) + (xy 106.558134 54.2815) + (xy 106.161866 54.2815) + (xy 106.158471 54.281869) + (xy 106.158467 54.281869) + (xy 106.132469 54.284693) + (xy 106.123606 54.285656) + (xy 106.096394 54.285656) + (xy 106.087531 54.284693) + (xy 106.061533 54.281869) + (xy 106.061529 54.281869) + (xy 106.058134 54.2815) + (xy 105.661866 54.2815) + (xy 105.658471 54.281869) + (xy 105.658467 54.281869) + (xy 105.632469 54.284693) + (xy 105.623606 54.285656) + (xy 105.596394 54.285656) + (xy 105.587531 54.284693) + (xy 105.561533 54.281869) + (xy 105.561529 54.281869) + (xy 105.558134 54.2815) + (xy 105.161866 54.2815) + (xy 105.158471 54.281869) + (xy 105.158467 54.281869) + (xy 105.132469 54.284693) + (xy 105.123606 54.285656) + (xy 105.096394 54.285656) + (xy 105.087531 54.284693) + (xy 105.061533 54.281869) + (xy 105.061529 54.281869) + (xy 105.058134 54.2815) + (xy 104.661866 54.2815) + (xy 104.658471 54.281869) + (xy 104.658467 54.281869) + (xy 104.632469 54.284693) + (xy 104.623606 54.285656) + (xy 104.596394 54.285656) + (xy 104.587531 54.284693) + (xy 104.561533 54.281869) + (xy 104.561529 54.281869) + (xy 104.558134 54.2815) + (xy 104.161866 54.2815) + (xy 104.158471 54.281869) + (xy 104.158467 54.281869) + (xy 104.132469 54.284693) + (xy 104.123606 54.285656) + (xy 104.096394 54.285656) + (xy 104.087531 54.284693) + (xy 104.061533 54.281869) + (xy 104.061529 54.281869) + (xy 104.058134 54.2815) + (xy 103.678416 54.2815) + (xy 103.610295 54.261498) + (xy 103.563802 54.207842) + (xy 103.554108 54.134921) + (xy 103.557108 54.116802) + (xy 103.552203 54.023198) + (xy 103.547987 53.942766) + (xy 103.54763 53.935953) + (xy 103.53533 53.891296) + (xy 103.501352 53.767941) + (xy 103.499539 53.761359) + (xy 103.415078 53.601164) + (xy 103.410673 53.595951) + (xy 103.41067 53.595947) + (xy 103.302594 53.468057) + (xy 103.30259 53.468053) + (xy 103.298187 53.462843) + (xy 103.292762 53.458695) + (xy 103.159743 53.356994) + (xy 103.159739 53.356991) + (xy 103.154322 53.35285) + (xy 103.023162 53.291689) + (xy 102.996369 53.279195) + (xy 102.996366 53.279194) + (xy 102.990192 53.276315) + (xy 102.983544 53.274829) + (xy 102.983541 53.274828) + (xy 102.818494 53.237936) + (xy 102.818495 53.237936) + (xy 102.813457 53.23681) + (xy 102.807912 53.2365) + (xy 102.674756 53.2365) + (xy 102.539963 53.251143) + (xy 102.456609 53.279195) + (xy 102.374796 53.306728) + (xy 102.374794 53.306729) + (xy 102.368325 53.308906) + (xy 102.216349 53.400222) + (xy 102.216346 53.400223) + (xy 102.213095 53.402177) + (xy 102.212745 53.401594) + (xy 102.151083 53.425065) + (xy 102.081609 53.410439) + (xy 102.043609 53.379085) + (xy 102.012603 53.341067) + (xy 102.003959 53.332363) + (xy 101.861144 53.214216) + (xy 101.850973 53.207356) + (xy 101.687924 53.119196) + (xy 101.676619 53.114444) + (xy 101.561308 53.07875) + (xy 101.547205 53.078544) + (xy 101.544 53.085299) + (xy 101.544 54.327885) + (xy 101.548475 54.343124) + (xy 101.549865 54.344329) + (xy 101.557548 54.346) + (xy 101.847243 54.346) + (xy 101.915364 54.366002) + (xy 101.9587 54.413235) + (xy 102.024922 54.538836) + (xy 102.029327 54.544049) + (xy 102.02933 54.544053) + (xy 102.116051 54.646672) + (xy 102.144743 54.711613) + (xy 102.13377 54.781756) + (xy 102.086617 54.834833) + (xy 102.019813 54.854) + (xy 101.562115 54.854) + (xy 101.546876 54.858475) + (xy 101.545671 54.859865) + (xy 101.544 54.867548) + (xy 101.544 55.242885) + (xy 101.548475 55.258124) + (xy 101.549865 55.259329) + (xy 101.557548 55.261) + (xy 102.087885 55.261) + (xy 102.103124 55.256525) + (xy 102.11229 55.245947) + (xy 102.136404 55.201786) + (xy 102.198716 55.167761) + (xy 102.269532 55.172825) + (xy 102.326368 55.215372) + (xy 102.351179 55.281892) + (xy 102.3515 55.290881) + (xy 102.3515 55.643) + (xy 102.331498 55.711121) + (xy 102.277842 55.757614) + (xy 102.2255 55.769) + (xy 101.562115 55.769) + (xy 101.546876 55.773475) + (xy 101.545671 55.774865) + (xy 101.544 55.782548) + (xy 101.544 56.107924) + (xy 101.546897 56.11779) + (xy 101.552001 56.153288) + (xy 101.552001 56.176442) + (xy 101.531999 56.244563) + (xy 101.478343 56.291056) + (xy 101.469612 56.294654) + (xy 101.366873 56.332557) + (xy 101.323934 56.348398) + (xy 101.318973 56.35135) + (xy 101.318972 56.35135) + (xy 101.158205 56.446997) + (xy 101.148849 56.452563) + (xy 100.995678 56.58689) + (xy 100.992106 56.591421) + (xy 100.887542 56.724059) + (xy 100.82966 56.765172) + (xy 100.75874 56.768466) + (xy 100.699497 56.735148) + (xy 99.161006 55.196657) + (xy 100.282 55.196657) + (xy 100.282301 55.202805) + (xy 100.295812 55.340603) + (xy 100.298195 55.352638) + (xy 100.351767 55.530076) + (xy 100.356441 55.541416) + (xy 100.44346 55.705077) + (xy 100.450249 55.715294) + (xy 100.567397 55.858933) + (xy 100.576041 55.867637) + (xy 100.718856 55.985784) + (xy 100.729027 55.992644) + (xy 100.892076 56.080804) + (xy 100.903381 56.085556) + (xy 101.018692 56.12125) + (xy 101.032795 56.121456) + (xy 101.036 56.114701) + (xy 101.036 54.872115) + (xy 101.031525 54.856876) + (xy 101.030135 54.855671) + (xy 101.022452 54.854) + (xy 100.300115 54.854) + (xy 100.284876 54.858475) + (xy 100.283671 54.859865) + (xy 100.282 54.867548) + (xy 100.282 55.196657) + (xy 99.161006 55.196657) + (xy 99.117915 55.153566) + (xy 99.107048 55.141175) + (xy 99.092613 55.122363) + (xy 99.087587 55.115813) + (xy 99.055675 55.091326) + (xy 99.055672 55.091323) + (xy 99.031043 55.072424) + (xy 98.967029 55.023304) + (xy 98.967027 55.023303) + (xy 98.960476 55.018276) + (xy 98.812451 54.956962) + (xy 98.804264 54.955884) + (xy 98.804263 54.955884) + (xy 98.793058 54.954409) + (xy 98.757965 54.949789) + (xy 98.693485 54.9413) + (xy 98.693482 54.9413) + (xy 98.693474 54.941299) + (xy 98.661789 54.937128) + (xy 98.6536 54.93605) + (xy 98.643706 54.937352) + (xy 98.642267 54.937128) + (xy 98.637155 54.937128) + (xy 98.637155 54.936331) + (xy 98.573561 54.926415) + (xy 98.520115 54.878733) + (xy 98.503568 54.851992) + (xy 98.503563 54.851986) + (xy 98.499716 54.845769) + (xy 98.488761 54.834833) + (xy 98.381784 54.728042) + (xy 98.381779 54.728038) + (xy 98.376603 54.722871) + (xy 98.355833 54.710068) + (xy 98.23475 54.635431) + (xy 98.234748 54.63543) + (xy 98.22852 54.631591) + (xy 98.063409 54.576826) + (xy 98.056573 54.576126) + (xy 98.05657 54.576125) + (xy 98.005074 54.570849) + (xy 97.960672 54.5663) + (xy 97.361528 54.5663) + (xy 97.358282 54.566637) + (xy 97.358278 54.566637) + (xy 97.264365 54.576381) + (xy 97.264361 54.576382) + (xy 97.257507 54.577093) + (xy 97.250971 54.579274) + (xy 97.250969 54.579274) + (xy 97.146919 54.613988) + (xy 97.092493 54.632146) + (xy 96.944569 54.723684) + (xy 96.939396 54.728866) + (xy 96.837853 54.830586) + (xy 96.77557 54.864665) + (xy 96.70475 54.859662) + (xy 96.659663 54.830741) + (xy 96.556788 54.728046) + (xy 96.556783 54.728042) + (xy 96.551603 54.722871) + (xy 96.530833 54.710068) + (xy 96.40975 54.635431) + (xy 96.409748 54.63543) + (xy 96.40352 54.631591) + (xy 96.238409 54.576826) + (xy 96.231573 54.576126) + (xy 96.23157 54.576125) + (xy 96.180074 54.570849) + (xy 96.135672 54.5663) + (xy 95.536528 54.5663) + (xy 95.533282 54.566637) + (xy 95.533278 54.566637) + (xy 95.439365 54.576381) + (xy 95.439361 54.576382) + (xy 95.432507 54.577093) + (xy 95.425971 54.579274) + (xy 95.425969 54.579274) + (xy 95.321919 54.613988) + (xy 95.267493 54.632146) + (xy 95.119569 54.723684) + (xy 95.114396 54.728866) + (xy 95.001842 54.841616) + (xy 95.001838 54.841621) + (xy 94.996671 54.846797) + (xy 94.992831 54.853027) + (xy 94.99283 54.853028) + (xy 94.990743 54.856414) + (xy 94.988714 54.858241) + (xy 94.988293 54.858773) + (xy 94.988202 54.858701) + (xy 94.937972 54.903908) + (xy 94.883482 54.9163) + (xy 91.518767 54.9163) + (xy 91.507584 54.915773) + (xy 91.500091 54.914098) + (xy 91.492165 54.914347) + (xy 91.492164 54.914347) + (xy 91.432014 54.916238) + (xy 91.428055 54.9163) + (xy 91.400144 54.9163) + (xy 91.39621 54.916797) + (xy 91.396209 54.916797) + (xy 91.396144 54.916805) + (xy 91.384307 54.917738) + (xy 91.35249 54.918738) + (xy 91.348029 54.918878) + (xy 91.34011 54.919127) + (xy 91.322454 54.924256) + (xy 91.320658 54.924778) + (xy 91.301306 54.928786) + (xy 91.294235 54.92968) + (xy 91.281203 54.931326) + (xy 91.273834 54.934243) + (xy 91.273832 54.934244) + (xy 91.240097 54.9476) + (xy 91.228869 54.951445) + (xy 91.186407 54.963782) + (xy 91.179585 54.967816) + (xy 91.179579 54.967819) + (xy 91.168968 54.974094) + (xy 91.151218 54.98279) + (xy 91.139756 54.987328) + (xy 91.139751 54.987331) + (xy 91.132383 54.990248) + (xy 91.125968 54.994909) + (xy 91.096625 55.016227) + (xy 91.086707 55.022743) + (xy 91.074499 55.029963) + (xy 91.048637 55.045258) + (xy 91.034313 55.059582) + (xy 91.019281 55.072421) + (xy 91.002893 55.084328) + (xy 90.981004 55.110787) + (xy 90.974712 55.118393) + (xy 90.966722 55.127173) + (xy 90.758147 55.335748) + (xy 90.749861 55.343288) + (xy 90.743382 55.3474) + (xy 90.737957 55.353177) + (xy 90.696757 55.397051) + (xy 90.694002 55.399893) + (xy 90.674265 55.41963) + (xy 90.671785 55.422827) + (xy 90.664082 55.431847) + (xy 90.633814 55.464079) + (xy 90.629995 55.471025) + (xy 90.629993 55.471028) + (xy 90.624052 55.481834) + (xy 90.613201 55.498353) + (xy 90.600786 55.514359) + (xy 90.597641 55.521628) + (xy 90.597638 55.521632) + (xy 90.583226 55.554937) + (xy 90.578009 55.565587) + (xy 90.556705 55.60434) + (xy 90.554734 55.612015) + (xy 90.554734 55.612016) + (xy 90.551667 55.623962) + (xy 90.545263 55.642666) + (xy 90.545119 55.643) + (xy 90.537219 55.661255) + (xy 90.53598 55.669078) + (xy 90.535977 55.669088) + (xy 90.530301 55.704924) + (xy 90.527895 55.716544) + (xy 90.5169 55.75937) + (xy 90.5169 55.779624) + (xy 90.515349 55.799334) + (xy 90.51218 55.819343) + (xy 90.512926 55.827235) + (xy 90.516341 55.863361) + (xy 90.5169 55.875219) + (xy 90.5169 55.895071) + (xy 90.496898 55.963192) + (xy 90.474993 55.986732) + (xy 90.475669 55.987408) + (xy 90.469319 55.993758) + (xy 90.462139 55.999139) + (xy 90.374785 56.115695) + (xy 90.323655 56.252084) + (xy 90.3169 56.314266) + (xy 90.3169 57.970534) + (xy 90.323655 58.032716) + (xy 90.374785 58.169105) + (xy 90.462139 58.285661) + (xy 90.578695 58.373015) + (xy 90.587103 58.376167) + (xy 90.594975 58.380477) + (xy 90.593672 58.382857) + (xy 90.639204 58.417064) + (xy 90.663901 58.483627) + (xy 90.648691 58.552975) + (xy 90.598403 58.603091) + (xy 90.591303 58.606333) + (xy 90.587101 58.608634) + (xy 90.578695 58.611785) + (xy 90.462139 58.699139) + (xy 90.374785 58.815695) + (xy 90.323655 58.952084) + (xy 90.3169 59.014266) + (xy 90.3169 60.670534) + (xy 90.323655 60.732716) + (xy 90.374785 60.869105) + (xy 90.462139 60.985661) + (xy 90.469319 60.991042) + (xy 90.475632 60.997355) + (xy 90.509658 61.059667) + (xy 90.504593 61.130482) + (xy 90.480176 61.170757) + (xy 90.42156 61.235856) + (xy 90.368887 61.327088) + (xy 90.345611 61.367404) + (xy 90.326073 61.401244) + (xy 90.267058 61.582872) + (xy 90.266368 61.589433) + (xy 90.266368 61.589435) + (xy 90.253264 61.714116) + (xy 90.247096 61.7728) + (xy 90.247786 61.779365) + (xy 90.264509 61.938472) + (xy 90.267058 61.962728) + (xy 90.326073 62.144356) + (xy 90.329376 62.150078) + (xy 90.329377 62.150079) + (xy 90.33832 62.165569) + (xy 90.42156 62.309744) + (xy 90.425978 62.314651) + (xy 90.425979 62.314652) + (xy 90.544925 62.446755) + (xy 90.549347 62.451666) + (xy 90.628401 62.509102) + (xy 90.675985 62.543674) + (xy 90.703848 62.563918) + (xy 90.709876 62.566602) + (xy 90.709878 62.566603) + (xy 90.872281 62.638909) + (xy 90.878312 62.641594) + (xy 90.971712 62.661447) + (xy 91.058656 62.679928) + (xy 91.058661 62.679928) + (xy 91.065113 62.6813) + (xy 91.256087 62.6813) + (xy 91.262539 62.679928) + (xy 91.262544 62.679928) + (xy 91.349488 62.661447) + (xy 91.442888 62.641594) + (xy 91.448919 62.638909) + (xy 91.611322 62.566603) + (xy 91.611324 62.566602) + (xy 91.617352 62.563918) + (xy 91.645216 62.543674) + (xy 91.692799 62.509102) + (xy 91.771853 62.451666) + (xy 91.77731 62.445606) + (xy 91.808002 62.411518) + (xy 91.879441 62.332178) + (xy 91.939886 62.294938) + (xy 92.010869 62.29629) + (xy 92.06509 62.332761) + (xy 92.0656 62.332218) + (xy 92.071378 62.337644) + (xy 92.071379 62.337645) + (xy 92.115267 62.378858) + (xy 92.118109 62.381613) + (xy 92.13783 62.401334) + (xy 92.141025 62.403812) + (xy 92.150047 62.411518) + (xy 92.182279 62.441786) + (xy 92.189228 62.445606) + (xy 92.200032 62.451546) + (xy 92.216556 62.462399) + (xy 92.232559 62.474813) + (xy 92.273143 62.492376) + (xy 92.283773 62.497583) + (xy 92.32254 62.518895) + (xy 92.330217 62.520866) + (xy 92.330222 62.520868) + (xy 92.342158 62.523932) + (xy 92.360866 62.530337) + (xy 92.379455 62.538381) + (xy 92.38728 62.53962) + (xy 92.387282 62.539621) + (xy 92.423119 62.545297) + (xy 92.43474 62.547704) + (xy 92.466559 62.555873) + (xy 92.47757 62.5587) + (xy 92.497831 62.5587) + (xy 92.51754 62.560251) + (xy 92.537543 62.563419) + (xy 92.545435 62.562673) + (xy 92.550662 62.562179) + (xy 92.581554 62.559259) + (xy 92.593411 62.5587) + (xy 94.129833 62.5587) + (xy 94.141016 62.559227) + (xy 94.148509 62.560902) + (xy 94.156435 62.560653) + (xy 94.156436 62.560653) + (xy 94.216586 62.558762) + (xy 94.220545 62.5587) + (xy 94.248456 62.5587) + (xy 94.252391 62.558203) + (xy 94.252456 62.558195) + (xy 94.264293 62.557262) + (xy 94.296551 62.556248) + (xy 94.30057 62.556122) + (xy 94.308489 62.555873) + (xy 94.327943 62.550221) + (xy 94.3473 62.546213) + (xy 94.35953 62.544668) + (xy 94.359531 62.544668) + (xy 94.367397 62.543674) + (xy 94.374768 62.540755) + (xy 94.37477 62.540755) + (xy 94.408512 62.527396) + (xy 94.419742 62.523551) + (xy 94.454583 62.513429) + (xy 94.454584 62.513429) + (xy 94.462193 62.511218) + (xy 94.469012 62.507185) + (xy 94.469017 62.507183) + (xy 94.479628 62.500907) + (xy 94.497376 62.492212) + (xy 94.516217 62.484752) + (xy 94.530835 62.474132) + (xy 94.551987 62.458764) + (xy 94.561907 62.452248) + (xy 94.593135 62.43378) + (xy 94.593138 62.433778) + (xy 94.599962 62.429742) + (xy 94.614283 62.415421) + (xy 94.629317 62.40258) + (xy 94.631032 62.401334) + (xy 94.645707 62.390672) + (xy 94.673898 62.356595) + (xy 94.681888 62.347816) + (xy 96.008899 61.020805) + (xy 96.071211 60.986779) + (xy 96.097994 60.9839) + (xy 97.809194 60.9839) + (xy 97.877315 61.003902) + (xy 97.923808 61.057558) + (xy 97.933912 61.127832) + (xy 97.904418 61.192412) + (xy 97.844692 61.230796) + (xy 97.83539 61.233147) + (xy 97.710912 61.259606) + (xy 97.704882 61.262291) + (xy 97.704881 61.262291) + (xy 97.542478 61.334597) + (xy 97.542476 61.334598) + (xy 97.536448 61.337282) + (xy 97.381947 61.449534) + (xy 97.377526 61.454444) + (xy 97.377525 61.454445) + (xy 97.259543 61.585478) + (xy 97.25416 61.591456) + (xy 97.158673 61.756844) + (xy 97.099658 61.938472) + (xy 97.098968 61.945033) + (xy 97.098968 61.945035) + (xy 97.096449 61.969006) + (xy 97.079696 62.1284) + (xy 97.080386 62.134965) + (xy 97.099658 62.318328) + (xy 97.097334 62.318572) + (xy 97.092745 62.378697) + (xy 97.049926 62.435328) + (xy 96.983288 62.459821) + (xy 96.974901 62.4601) + (xy 95.658963 62.4601) + (xy 95.647779 62.459573) + (xy 95.640291 62.457899) + (xy 95.632368 62.458148) + (xy 95.572233 62.460038) + (xy 95.568275 62.4601) + (xy 95.540344 62.4601) + (xy 95.536429 62.460595) + (xy 95.536425 62.460595) + (xy 95.536367 62.460603) + (xy 95.536338 62.460606) + (xy 95.524496 62.461539) + (xy 95.48031 62.462927) + (xy 95.462944 62.467972) + (xy 95.460858 62.468578) + (xy 95.441506 62.472586) + (xy 95.429268 62.474132) + (xy 95.429266 62.474133) + (xy 95.421403 62.475126) + (xy 95.380286 62.491406) + (xy 95.369085 62.495241) + (xy 95.326606 62.507582) + (xy 95.319787 62.511615) + (xy 95.319782 62.511617) + (xy 95.309171 62.517893) + (xy 95.291421 62.52659) + (xy 95.272583 62.534048) + (xy 95.266167 62.538709) + (xy 95.266166 62.53871) + (xy 95.247484 62.552284) + (xy 95.240375 62.557449) + (xy 95.236825 62.560028) + (xy 95.226901 62.566547) + (xy 95.19566 62.585022) + (xy 95.195655 62.585026) + (xy 95.188837 62.589058) + (xy 95.174513 62.603382) + (xy 95.159481 62.616221) + (xy 95.143093 62.628128) + (xy 95.114912 62.662193) + (xy 95.106922 62.670973) + (xy 92.7639 65.013995) + (xy 92.701588 65.048021) + (xy 92.674805 65.0509) + (xy 87.503287 65.0509) + (xy 87.435166 65.030898) + (xy 87.388673 64.977242) + (xy 87.378569 64.906968) + (xy 87.408063 64.842388) + (xy 87.417516 64.8326) + (xy 87.449865 64.80254) + (xy 87.522303 64.735226) + (xy 87.587479 64.674661) + (xy 87.587481 64.674658) + (xy 87.590622 64.67174) + (xy 87.772713 64.449268) + (xy 87.922927 64.204142) + (xy 87.959542 64.120731) + (xy 88.036758 63.944828) + (xy 88.036759 63.944826) + (xy 88.038483 63.940898) + (xy 88.062607 63.856212) + (xy 88.116068 63.668534) + (xy 88.117244 63.664406) + (xy 88.157751 63.379784) + (xy 88.157799 63.370772) + (xy 88.159235 63.096583) + (xy 88.159235 63.096576) + (xy 88.159257 63.092297) + (xy 88.149436 63.017695) + (xy 88.125976 62.839505) + (xy 88.121732 62.807266) + (xy 88.119776 62.800114) + (xy 88.086674 62.679115) + (xy 88.045871 62.529964) + (xy 88.022347 62.474813) + (xy 87.934763 62.269476) + (xy 87.934761 62.269472) + (xy 87.933077 62.265524) + (xy 87.785439 62.018839) + (xy 87.605687 61.794472) + (xy 87.397149 61.596577) + (xy 87.163683 61.428814) + (xy 87.141843 61.41725) + (xy 87.111612 61.401244) + (xy 86.909608 61.294288) + (xy 86.697627 61.216714) + (xy 86.643658 61.196964) + (xy 86.643656 61.196963) + (xy 86.639627 61.195489) + (xy 86.358736 61.134245) + (xy 86.327685 61.131801) + (xy 86.135718 61.116693) + (xy 86.135709 61.116693) + (xy 86.133261 61.1165) + (xy 85.977729 61.1165) + (xy 85.975593 61.116646) + (xy 85.975582 61.116646) + (xy 85.767452 61.130835) + (xy 85.767446 61.130836) + (xy 85.763175 61.131127) + (xy 85.75898 61.131996) + (xy 85.758978 61.131996) + (xy 85.714162 61.141277) + (xy 85.481658 61.189426) + (xy 85.210657 61.285393) + (xy 84.955188 61.41725) + (xy 84.951687 61.419711) + (xy 84.951683 61.419713) + (xy 84.89134 61.462123) + (xy 84.719977 61.582559) + (xy 84.701717 61.599527) + (xy 84.51414 61.773835) + (xy 84.509378 61.77826) + (xy 84.327287 62.000732) + (xy 84.177073 62.245858) + (xy 84.175347 62.249791) + (xy 84.175346 62.249792) + (xy 84.074252 62.48009) + (xy 84.061517 62.509102) + (xy 84.060342 62.513229) + (xy 84.060341 62.51323) + (xy 84.050521 62.547704) + (xy 83.982756 62.785594) + (xy 83.942249 63.070216) + (xy 83.942227 63.074505) + (xy 83.942226 63.074512) + (xy 83.940887 63.330222) + (xy 83.940743 63.357703) + (xy 83.941302 63.361947) + (xy 83.941302 63.361951) + (xy 83.951248 63.437495) + (xy 83.978268 63.642734) + (xy 83.979401 63.646874) + (xy 83.979401 63.646876) + (xy 83.99441 63.701739) + (xy 84.054129 63.920036) + (xy 84.055813 63.923984) + (xy 84.148529 64.141351) + (xy 84.166923 64.184476) + (xy 84.199133 64.238295) + (xy 84.308534 64.42109) + (xy 84.314561 64.431161) + (xy 84.494313 64.655528) + (xy 84.578297 64.735226) + (xy 84.696693 64.847579) + (xy 84.702851 64.853423) + (xy 84.936317 65.021186) + (xy 84.940112 65.023195) + (xy 84.940113 65.023196) + (xy 84.961869 65.034715) + (xy 85.190392 65.155712) + (xy 85.256374 65.179858) + (xy 85.445016 65.248891) + (xy 85.460373 65.254511) + (xy 85.741264 65.315755) + (xy 85.769841 65.318004) + (xy 85.964282 65.333307) + (xy 85.964291 65.333307) + (xy 85.966739 65.3335) + (xy 86.122271 65.3335) + (xy 86.124407 65.333354) + (xy 86.124418 65.333354) + (xy 86.332548 65.319165) + (xy 86.332554 65.319164) + (xy 86.336825 65.318873) + (xy 86.34102 65.318004) + (xy 86.341022 65.318004) + (xy 86.500071 65.285067) + (xy 86.570833 65.29084) + (xy 86.62724 65.333952) + (xy 86.651385 65.400717) + (xy 86.6356 65.469937) + (xy 86.614718 65.497543) + (xy 86.408619 65.703642) + (xy 85.802864 66.309396) + (xy 85.740552 66.343421) + (xy 85.713769 66.3463) + (xy 80.698367 66.3463) + (xy 80.687184 66.345773) + (xy 80.679691 66.344098) + (xy 80.671765 66.344347) + (xy 80.671764 66.344347) + (xy 80.611614 66.346238) + (xy 80.607655 66.3463) + (xy 80.579744 66.3463) + (xy 80.57581 66.346797) + (xy 80.575809 66.346797) + (xy 80.575744 66.346805) + (xy 80.563907 66.347738) + (xy 80.53209 66.348738) + (xy 80.527629 66.348878) + (xy 80.51971 66.349127) + (xy 80.502054 66.354256) + (xy 80.500258 66.354778) + (xy 80.480906 66.358786) + (xy 80.473835 66.35968) + (xy 80.460803 66.361326) + (xy 80.453434 66.364243) + (xy 80.453432 66.364244) + (xy 80.419697 66.3776) + (xy 80.408469 66.381445) + (xy 80.366007 66.393782) + (xy 80.359185 66.397816) + (xy 80.359179 66.397819) + (xy 80.348568 66.404094) + (xy 80.330818 66.41279) + (xy 80.319356 66.417328) + (xy 80.319351 66.417331) + (xy 80.311983 66.420248) + (xy 80.29457 66.432899) + (xy 80.276225 66.446227) + (xy 80.266307 66.452743) + (xy 80.247619 66.463795) + (xy 80.228237 66.475258) + (xy 80.213913 66.489582) + (xy 80.198881 66.502421) + (xy 80.182493 66.514328) + (xy 80.154312 66.548393) + (xy 80.146322 66.557173) + (xy 79.219813 67.483682) + (xy 79.211527 67.491222) + (xy 79.205048 67.495334) + (xy 79.199623 67.501111) + (xy 79.158423 67.544985) + (xy 79.155668 67.547827) + (xy 79.135931 67.567564) + (xy 79.133451 67.570761) + (xy 79.125748 67.579781) + (xy 79.09548 67.612013) + (xy 79.091661 67.618959) + (xy 79.091659 67.618962) + (xy 79.085718 67.629768) + (xy 79.074867 67.646287) + (xy 79.062452 67.662293) + (xy 79.059307 67.669562) + (xy 79.059304 67.669566) + (xy 79.044892 67.702871) + (xy 79.039675 67.713521) + (xy 79.018371 67.752274) + (xy 79.0164 67.759949) + (xy 79.0164 67.75995) + (xy 79.013333 67.771896) + (xy 79.006929 67.7906) + (xy 78.998885 67.809189) + (xy 78.997646 67.817012) + (xy 78.997643 67.817022) + (xy 78.991967 67.852858) + (xy 78.989561 67.864478) + (xy 78.981568 67.895612) + (xy 78.978566 67.907304) + (xy 78.978566 67.927558) + (xy 78.977015 67.947268) + (xy 78.973846 67.967277) + (xy 78.974592 67.975169) + (xy 78.978007 68.011295) + (xy 78.978566 68.023153) + (xy 78.978566 68.317136) + (xy 78.958564 68.385257) + (xy 78.91887 68.424279) + (xy 78.908035 68.430984) + (xy 78.908033 68.430986) + (xy 78.907924 68.430809) + (xy 78.845578 68.456042) + (xy 78.775814 68.442868) + (xy 78.759329 68.432293) + (xy 78.757203 68.430171) + (xy 78.75098 68.426335) + (xy 78.750976 68.426332) + (xy 78.61535 68.342731) + (xy 78.615348 68.34273) + (xy 78.60912 68.338891) + (xy 78.444009 68.284126) + (xy 78.437173 68.283426) + (xy 78.43717 68.283425) + (xy 78.376487 68.277208) + (xy 78.341272 68.2736) + (xy 77.767128 68.2736) + (xy 77.763882 68.273937) + (xy 77.763878 68.273937) + (xy 77.669965 68.283681) + (xy 77.669961 68.283682) + (xy 77.663107 68.284393) + (xy 77.656571 68.286574) + (xy 77.656569 68.286574) + (xy 77.597042 68.306434) + (xy 77.498093 68.339446) + (xy 77.350169 68.430984) + (xy 77.344996 68.436166) + (xy 77.291001 68.490255) + (xy 77.228718 68.524334) + (xy 77.157898 68.519331) + (xy 77.127768 68.503174) + (xy 77.107023 68.488102) + (xy 77.088552 68.474682) + (xy 77.082524 68.471998) + (xy 77.082522 68.471997) + (xy 76.920119 68.399691) + (xy 76.920118 68.399691) + (xy 76.914088 68.397006) + (xy 76.793961 68.371472) + (xy 76.733744 68.358672) + (xy 76.733739 68.358672) + (xy 76.727287 68.3573) + (xy 76.536313 68.3573) + (xy 76.529861 68.358672) + (xy 76.529856 68.358672) + (xy 76.469639 68.371472) + (xy 76.349512 68.397006) + (xy 76.343482 68.399691) + (xy 76.343481 68.399691) + (xy 76.181078 68.471997) + (xy 76.181076 68.471998) + (xy 76.175048 68.474682) + (xy 76.169707 68.478562) + (xy 76.169706 68.478563) + (xy 76.136885 68.502409) + (xy 76.020547 68.586934) + (xy 76.016126 68.591844) + (xy 76.016125 68.591845) + (xy 75.904481 68.715839) + (xy 75.89276 68.728856) + (xy 75.797273 68.894244) + (xy 75.738258 69.075872) + (xy 75.718296 69.2658) + (xy 75.738258 69.455728) + (xy 75.797273 69.637356) + (xy 75.89276 69.802744) + (xy 75.897178 69.807651) + (xy 75.897179 69.807652) + (xy 76.016125 69.939755) + (xy 76.020547 69.944666) + (xy 76.175048 70.056918) + (xy 76.181076 70.059602) + (xy 76.181078 70.059603) + (xy 76.343481 70.131909) + (xy 76.349512 70.134594) + (xy 76.442913 70.154447) + (xy 76.529856 70.172928) + (xy 76.529861 70.172928) + (xy 76.536313 70.1743) + (xy 76.727287 70.1743) + (xy 76.733739 70.172928) + (xy 76.733744 70.172928) + (xy 76.820687 70.154447) + (xy 76.914088 70.134594) + (xy 76.920119 70.131909) + (xy 77.082522 70.059603) + (xy 77.082524 70.059602) + (xy 77.088552 70.056918) + (xy 77.123364 70.031626) + (xy 77.19023 70.007767) + (xy 77.259382 70.023846) + (xy 77.286443 70.044388) + (xy 77.334986 70.092847) + (xy 77.369065 70.15513) + (xy 77.364062 70.22595) + (xy 77.335141 70.271037) + (xy 77.232446 70.373912) + (xy 77.232442 70.373917) + (xy 77.227271 70.379097) + (xy 77.135991 70.52718) + (xy 77.081226 70.692291) + (xy 77.0707 70.795028) + (xy 77.0707 71.130006) + (xy 77.050698 71.198127) + (xy 77.033795 71.219101) + (xy 74.791747 73.461148) + (xy 74.783461 73.468688) + (xy 74.776982 73.4728) + (xy 74.771557 73.478577) + (xy 74.730357 73.522451) + (xy 74.727602 73.525293) + (xy 74.707865 73.54503) + (xy 74.705385 73.548227) + (xy 74.697682 73.557247) + (xy 74.667414 73.589479) + (xy 74.663595 73.596425) + (xy 74.663593 73.596428) + (xy 74.657652 73.607234) + (xy 74.646801 73.623753) + (xy 74.634386 73.639759) + (xy 74.631241 73.647028) + (xy 74.631238 73.647032) + (xy 74.616826 73.680337) + (xy 74.611609 73.690987) + (xy 74.590305 73.72974) + (xy 74.588334 73.737415) + (xy 74.588334 73.737416) + (xy 74.585267 73.749362) + (xy 74.578863 73.768066) + (xy 74.570819 73.786655) + (xy 74.56958 73.794478) + (xy 74.569577 73.794488) + (xy 74.563901 73.830324) + (xy 74.561495 73.841944) + (xy 74.5505 73.88477) + (xy 74.5505 73.905024) + (xy 74.548949 73.924734) + (xy 74.54578 73.944743) + (xy 74.546526 73.952635) + (xy 74.549941 73.988761) + (xy 74.5505 74.000619) + (xy 74.5505 77.224676) + (xy 74.530498 77.292797) + (xy 74.518142 77.308979) + (xy 74.44496 77.390256) + (xy 74.349473 77.555644) + (xy 74.290458 77.737272) + (xy 74.270496 77.9272) + (xy 74.271186 77.933765) + (xy 74.287909 78.092872) + (xy 74.290458 78.117128) + (xy 74.349473 78.298756) + (xy 74.44496 78.464144) + (xy 74.572747 78.606066) + (xy 74.616879 78.63813) + (xy 74.70174 78.699785) + (xy 74.727248 78.718318) + (xy 74.733276 78.721002) + (xy 74.733278 78.721003) + (xy 74.809644 78.755003) + (xy 74.901712 78.795994) + (xy 74.995112 78.815847) + (xy 75.082056 78.834328) + (xy 75.082061 78.834328) + (xy 75.088513 78.8357) + (xy 75.279487 78.8357) + (xy 75.285939 78.834328) + (xy 75.285944 78.834328) + (xy 75.372888 78.815847) + (xy 75.466288 78.795994) + (xy 75.558356 78.755003) + (xy 75.634722 78.721003) + (xy 75.634724 78.721002) + (xy 75.640752 78.718318) + (xy 75.666261 78.699785) + (xy 75.718283 78.661988) + (xy 75.78515 78.63813) + (xy 75.854302 78.65421) + (xy 75.900797 78.699785) + (xy 75.968509 78.81428) + (xy 75.968511 78.814283) + (xy 75.972547 78.821107) + (xy 76.090193 78.938753) + (xy 76.094002 78.941006) + (xy 76.134655 78.997296) + (xy 76.138506 79.068188) + (xy 76.103418 79.129909) + (xy 76.095724 79.136576) + (xy 76.090193 79.139847) + (xy 75.972547 79.257493) + (xy 75.968511 79.264317) + (xy 75.968509 79.26432) + (xy 75.896247 79.386509) + (xy 75.844355 79.434962) + (xy 75.774504 79.447667) + (xy 75.713733 79.424306) + (xy 75.646094 79.375163) + (xy 75.646093 79.375162) + (xy 75.640752 79.371282) + (xy 75.634724 79.368598) + (xy 75.634722 79.368597) + (xy 75.472319 79.296291) + (xy 75.472318 79.296291) + (xy 75.466288 79.293606) + (xy 75.372888 79.273753) + (xy 75.285944 79.255272) + (xy 75.285939 79.255272) + (xy 75.279487 79.2539) + (xy 75.088513 79.2539) + (xy 75.082061 79.255272) + (xy 75.082056 79.255272) + (xy 74.995112 79.273753) + (xy 74.901712 79.293606) + (xy 74.895682 79.296291) + (xy 74.895681 79.296291) + (xy 74.733278 79.368597) + (xy 74.733276 79.368598) + (xy 74.727248 79.371282) + (xy 74.572747 79.483534) + (xy 74.44496 79.625456) + (xy 74.349473 79.790844) + (xy 74.290458 79.972472) + (xy 74.270496 80.1624) + (xy 74.290458 80.352328) + (xy 74.349473 80.533956) + (xy 74.44496 80.699344) + (xy 74.449378 80.704251) + (xy 74.449379 80.704252) + (xy 74.529406 80.793131) + (xy 74.572747 80.841266) + (xy 74.727248 80.953518) + (xy 74.733276 80.956202) + (xy 74.733278 80.956203) + (xy 74.865453 81.015051) + (xy 74.901712 81.031194) + (xy 74.908165 81.032566) + (xy 74.914451 81.034608) + (xy 74.913733 81.036819) + (xy 74.96683 81.065493) + (xy 75.001144 81.127647) + (xy 75.003886 81.156823) + (xy 75.00298 81.162543) + (xy 75.003726 81.170435) + (xy 75.003726 81.170437) + (xy 75.007141 81.206561) + (xy 75.0077 81.218419) + (xy 75.0077 84.082676) + (xy 74.987698 84.150797) + (xy 74.975342 84.166979) + (xy 74.90216 84.248256) + (xy 74.806673 84.413644) + (xy 74.747658 84.595272) + (xy 74.746968 84.601833) + (xy 74.746968 84.601835) + (xy 74.735574 84.710241) + (xy 74.727696 84.7852) + (xy 74.747658 84.975128) + (xy 74.806673 85.156756) + (xy 74.90216 85.322144) + (xy 74.906578 85.327051) + (xy 74.906579 85.327052) + (xy 74.98372 85.412726) + (xy 75.029947 85.464066) + (xy 75.184448 85.576318) + (xy 75.190476 85.579002) + (xy 75.190478 85.579003) + (xy 75.352879 85.651308) + (xy 75.358912 85.653994) + (xy 75.452312 85.673847) + (xy 75.539256 85.692328) + (xy 75.539261 85.692328) + (xy 75.545713 85.6937) + (xy 75.736687 85.6937) + (xy 75.743139 85.692328) + (xy 75.743144 85.692328) + (xy 75.830088 85.673847) + (xy 75.923488 85.653994) + (xy 75.929515 85.651311) + (xy 75.929523 85.651308) + (xy 76.063398 85.591703) + (xy 76.133765 85.582269) + (xy 76.177647 85.597692) + (xy 76.178285 85.59806) + (xy 76.183622 85.601938) + (xy 76.189648 85.604621) + (xy 76.294512 85.651309) + (xy 76.358086 85.679614) + (xy 76.451486 85.699467) + (xy 76.53843 85.717948) + (xy 76.538435 85.717948) + (xy 76.544887 85.71932) + (xy 76.735861 85.71932) + (xy 76.742313 85.717948) + (xy 76.742318 85.717948) + (xy 76.89572 85.685341) + (xy 76.966511 85.690743) + (xy 77.023144 85.73356) + (xy 77.047637 85.800198) + (xy 77.032216 85.869499) + (xy 77.011012 85.897683) + (xy 76.8889 86.019795) + (xy 76.826588 86.053821) + (xy 76.799805 86.0567) + (xy 73.441195 86.0567) + (xy 73.373074 86.036698) + (xy 73.3521 86.019795) + (xy 72.128852 84.796547) + (xy 72.121312 84.788261) + (xy 72.1172 84.781782) + (xy 72.067548 84.735156) + (xy 72.064707 84.732402) + (xy 72.04497 84.712665) + (xy 72.041773 84.710185) + (xy 72.032751 84.70248) + (xy 72.000521 84.672214) + (xy 71.993575 84.668395) + (xy 71.993572 84.668393) + (xy 71.982766 84.662452) + (xy 71.966247 84.651601) + (xy 71.965783 84.651241) + (xy 71.950241 84.639186) + (xy 71.942972 84.636041) + (xy 71.942968 84.636038) + (xy 71.909663 84.621626) + (xy 71.899013 84.616409) + (xy 71.86026 84.595105) + (xy 71.840637 84.590067) + (xy 71.821934 84.583663) + (xy 71.81062 84.578767) + (xy 71.810619 84.578767) + (xy 71.803345 84.575619) + (xy 71.795522 84.57438) + (xy 71.795512 84.574377) + (xy 71.759676 84.568701) + (xy 71.748056 84.566295) + (xy 71.712911 84.557272) + (xy 71.71291 84.557272) + (xy 71.70523 84.5553) + (xy 71.684976 84.5553) + (xy 71.665265 84.553749) + (xy 71.653086 84.55182) + (xy 71.645257 84.55058) + (xy 71.637365 84.551326) + (xy 71.601239 84.554741) + (xy 71.589381 84.5553) + (xy 71.553875 84.5553) + (xy 71.485754 84.535298) + (xy 71.453049 84.504865) + (xy 71.440295 84.487847) + (xy 71.374861 84.400539) + (xy 71.258305 84.313185) + (xy 71.121916 84.262055) + (xy 71.059734 84.2553) + (xy 70.113466 84.2553) + (xy 70.051284 84.262055) + (xy 70.043888 84.264827) + (xy 70.043882 84.264829) + (xy 69.996924 84.282433) + (xy 69.926117 84.287616) + (xy 69.863748 84.253695) + (xy 69.829619 84.191439) + (xy 69.82726 84.15253) + (xy 69.827425 84.150797) + (xy 70.039808 81.915996) + (xy 70.041043 81.906699) + (xy 70.04744 81.869273) + (xy 70.62311 78.500935) + (xy 70.626615 78.485981) + (xy 70.627432 78.483258) + (xy 71.619971 75.172549) + (xy 71.62454 75.159832) + (xy 72.956498 71.996781) + (xy 72.959924 71.989332) + (xy 74.543551 68.822078) + (xy 74.549559 68.811397) + (xy 76.368618 65.91707) + (xy 76.379676 65.902068) + (xy 76.512657 65.747105) + (xy 76.795979 65.416949) + (xy 76.824012 65.392665) + (xy 76.825479 65.391733) + (xy 77.620907 64.886191) + (xy 77.643202 64.874952) + (xy 78.367384 64.596003) + (xy 78.572689 64.516921) + (xy 78.617979 64.5085) + (xy 79.633279 64.5085) + (xy 79.653884 64.510196) + (xy 80.09555 64.583409) + (xy 80.096613 64.58359) + (xy 80.176566 64.597547) + (xy 80.207172 64.594116) + (xy 80.223974 64.593363) + (xy 80.235783 64.593623) + (xy 80.25386 64.594021) + (xy 80.262531 64.591691) + (xy 80.262534 64.591691) + (xy 80.286035 64.585377) + (xy 80.28692 64.585174) + (xy 80.287787 64.585077) + (xy 80.290146 64.584434) + (xy 80.290159 64.584431) + (xy 80.331089 64.573274) + (xy 80.331532 64.573154) + (xy 80.346797 64.569053) + (xy 80.394529 64.556229) + (xy 80.395152 64.55585) + (xy 80.395672 64.555668) + (xy 81.035536 64.381246) + (xy 81.192653 64.338417) + (xy 81.212808 64.335098) + (xy 81.216694 64.3343) + (xy 81.225657 64.33376) + (xy 81.258633 64.321921) + (xy 81.271222 64.317402) + (xy 81.280654 64.314429) + (xy 81.287083 64.312676) + (xy 81.287087 64.312675) + (xy 81.291411 64.311496) + (xy 81.305952 64.305205) + (xy 81.313388 64.302265) + (xy 81.330993 64.295944) + (xy 81.339972 64.291048) + (xy 81.350247 64.286038) + (xy 81.383 64.271866) + (xy 81.383001 64.271866) + (xy 81.391239 64.268301) + (xy 81.400081 64.260961) + (xy 81.420242 64.247287) + (xy 82.286675 63.774919) + (xy 82.289919 63.773211) + (xy 82.306914 63.764577) + (xy 82.347855 63.743778) + (xy 82.374779 63.718467) + (xy 82.385695 63.709311) + (xy 82.403041 63.696358) + (xy 82.415168 63.687303) + (xy 82.420563 63.680131) + (xy 82.420565 63.680129) + (xy 82.456501 63.632355) + (xy 82.457794 63.630667) + (xy 83.006518 62.92626) + (xy 83.022982 62.909047) + (xy 83.02378 62.908141) + (xy 83.030605 62.90232) + (xy 83.03552 62.89482) + (xy 83.035525 62.894814) + (xy 83.056592 62.862664) + (xy 83.062582 62.85429) + (xy 83.065982 62.849925) + (xy 83.068739 62.846386) + (xy 83.077008 62.831929) + (xy 83.080992 62.825429) + (xy 83.089277 62.812787) + (xy 83.08928 62.812781) + (xy 83.091948 62.80871) + (xy 83.095845 62.800114) + (xy 83.10123 62.789581) + (xy 83.118286 62.759762) + (xy 83.118287 62.759759) + (xy 83.122744 62.751967) + (xy 83.124835 62.743236) + (xy 83.124837 62.743231) + (xy 83.125621 62.739957) + (xy 83.133396 62.717281) + (xy 83.40333 62.121835) + (xy 83.527021 61.848987) + (xy 83.527713 61.847489) + (xy 83.552604 61.794472) + (xy 83.558131 61.7827) + (xy 83.563035 61.751204) + (xy 83.566558 61.735371) + (xy 83.575471 61.704764) + (xy 83.57535 61.59597) + (xy 83.57535 59.923613) + (xy 83.578174 59.897085) + (xy 83.647978 59.572968) + (xy 83.799571 58.869091) + (xy 83.812119 58.835309) + (xy 83.818229 58.824103) + (xy 84.231415 58.066217) + (xy 84.252946 58.037434) + (xy 84.988326 57.302051) + (xy 85.008463 57.285691) + (xy 85.187149 57.168845) + (xy 87.132752 55.89658) + (xy 87.140487 55.89191) + (xy 87.181204 55.869275) + (xy 89.953936 54.327885) + (xy 100.282 54.327885) + (xy 100.286475 54.343124) + (xy 100.287865 54.344329) + (xy 100.295548 54.346) + (xy 101.017885 54.346) + (xy 101.033124 54.341525) + (xy 101.034329 54.340135) + (xy 101.036 54.332452) + (xy 101.036 53.092076) + (xy 101.032027 53.078545) + (xy 101.024232 53.077425) + (xy 100.916479 53.109138) + (xy 100.905111 53.113731) + (xy 100.740846 53.199607) + (xy 100.730585 53.206321) + (xy 100.586127 53.322468) + (xy 100.577368 53.331046) + (xy 100.458222 53.473039) + (xy 100.451292 53.483159) + (xy 100.361998 53.645585) + (xy 100.357166 53.656858) + (xy 100.30112 53.833538) + (xy 100.29857 53.845532) + (xy 100.282393 53.989761) + (xy 100.282 53.996785) + (xy 100.282 54.327885) + (xy 89.953936 54.327885) + (xy 90.130927 54.229494) + (xy 90.144328 54.223048) + (xy 93.387316 52.892806) + (xy 93.396183 52.889552) + (xy 96.282522 51.951342) + (xy 96.69153 51.818393) + (xy 96.705272 51.815499) + (xy 96.70525 51.815411) + (xy 96.713966 51.81325) + (xy 96.722894 51.812346) + (xy 96.731208 51.808973) + (xy 96.731214 51.808972) + (xy 96.770212 51.793153) + (xy 96.778618 51.790086) + (xy 96.786897 51.787395) + (xy 96.786905 51.787392) + (xy 96.791168 51.786006) + (xy 96.795195 51.784028) + (xy 96.795198 51.784027) + (xy 96.799367 51.781979) + (xy 96.802984 51.780203) + (xy 96.811165 51.77654) + (xy 96.849548 51.760971) + (xy 96.849552 51.760969) + (xy 96.857869 51.757595) + (xy 96.864908 51.752021) + (xy 96.87266 51.747503) + (xy 96.872716 51.747599) + (xy 96.873394 51.747171) + (xy 96.873327 51.747073) + (xy 96.880741 51.742014) + (xy 96.888801 51.738056) + (xy 96.895425 51.731996) + (xy 96.895427 51.731994) + (xy 96.92581 51.704194) + (xy 96.932617 51.698396) + (xy 96.972054 51.667163) + (xy 96.977246 51.659836) + (xy 96.983421 51.653322) + (xy 96.983504 51.653401) + (xy 96.984032 51.652804) + (xy 96.983943 51.652731) + (xy 96.989641 51.645792) + (xy 96.996265 51.639732) + (xy 97.022342 51.596746) + (xy 97.027263 51.58925) + (xy 97.033943 51.579823) + (xy 97.033944 51.579822) + (xy 97.036761 51.575846) + (xy 97.038936 51.571479) + (xy 97.04239 51.564543) + (xy 97.047452 51.555356) + (xy 97.067156 51.522876) + (xy 97.067156 51.522875) + (xy 97.071813 51.515199) + (xy 97.074138 51.506489) + (xy 97.083085 51.482817) + (xy 97.198962 51.25011) + (xy 97.209856 51.232158) + (xy 97.305934 51.100076) + (xy 97.365845 51.017713) + (xy 97.548465 50.766657) + (xy 100.282 50.766657) + (xy 100.282301 50.772805) + (xy 100.295812 50.910603) + (xy 100.298195 50.922638) + (xy 100.351767 51.100076) + (xy 100.356441 51.111416) + (xy 100.44346 51.275077) + (xy 100.450249 51.285294) + (xy 100.567397 51.428933) + (xy 100.576041 51.437637) + (xy 100.718856 51.555784) + (xy 100.729027 51.562644) + (xy 100.892076 51.650804) + (xy 100.903381 51.655556) + (xy 101.018692 51.69125) + (xy 101.032795 51.691456) + (xy 101.036 51.684701) + (xy 101.036 51.677924) + (xy 101.544 51.677924) + (xy 101.547973 51.691455) + (xy 101.555768 51.692575) + (xy 101.663521 51.660862) + (xy 101.674889 51.656269) + (xy 101.839154 51.570393) + (xy 101.849415 51.563679) + (xy 101.993873 51.447532) + (xy 102.002632 51.438954) + (xy 102.121778 51.296961) + (xy 102.128708 51.286841) + (xy 102.218002 51.124415) + (xy 102.222834 51.113142) + (xy 102.27888 50.936462) + (xy 102.28143 50.924468) + (xy 102.297607 50.780239) + (xy 102.298 50.773215) + (xy 102.298 50.766657) + (xy 108.922 50.766657) + (xy 108.922301 50.772805) + (xy 108.935812 50.910603) + (xy 108.938195 50.922638) + (xy 108.991767 51.100076) + (xy 108.996441 51.111416) + (xy 109.08346 51.275077) + (xy 109.090249 51.285294) + (xy 109.207397 51.428933) + (xy 109.216041 51.437637) + (xy 109.358856 51.555784) + (xy 109.369027 51.562644) + (xy 109.532076 51.650804) + (xy 109.543381 51.655556) + (xy 109.658692 51.69125) + (xy 109.672795 51.691456) + (xy 109.676 51.684701) + (xy 109.676 51.677924) + (xy 110.184 51.677924) + (xy 110.187973 51.691455) + (xy 110.195768 51.692575) + (xy 110.303521 51.660862) + (xy 110.314889 51.656269) + (xy 110.479154 51.570393) + (xy 110.489415 51.563679) + (xy 110.633873 51.447532) + (xy 110.642632 51.438954) + (xy 110.761778 51.296961) + (xy 110.768708 51.286841) + (xy 110.858002 51.124415) + (xy 110.862834 51.113142) + (xy 110.91888 50.936462) + (xy 110.92143 50.924468) + (xy 110.937607 50.780239) + (xy 110.938 50.773215) + (xy 110.938 50.692115) + (xy 110.933525 50.676876) + (xy 110.932135 50.675671) + (xy 110.924452 50.674) + (xy 110.202115 50.674) + (xy 110.186876 50.678475) + (xy 110.185671 50.679865) + (xy 110.184 50.687548) + (xy 110.184 51.677924) + (xy 109.676 51.677924) + (xy 109.676 50.692115) + (xy 109.671525 50.676876) + (xy 109.670135 50.675671) + (xy 109.662452 50.674) + (xy 108.940115 50.674) + (xy 108.924876 50.678475) + (xy 108.923671 50.679865) + (xy 108.922 50.687548) + (xy 108.922 50.766657) + (xy 102.298 50.766657) + (xy 102.298 50.692115) + (xy 102.293525 50.676876) + (xy 102.292135 50.675671) + (xy 102.284452 50.674) + (xy 101.562115 50.674) + (xy 101.546876 50.678475) + (xy 101.545671 50.679865) + (xy 101.544 50.687548) + (xy 101.544 51.677924) + (xy 101.036 51.677924) + (xy 101.036 50.692115) + (xy 101.031525 50.676876) + (xy 101.030135 50.675671) + (xy 101.022452 50.674) + (xy 100.300115 50.674) + (xy 100.284876 50.678475) + (xy 100.283671 50.679865) + (xy 100.282 50.687548) + (xy 100.282 50.766657) + (xy 97.548465 50.766657) + (xy 97.804965 50.414035) + (xy 97.828167 50.389749) + (xy 98.231524 50.067195) + (xy 98.513458 49.84174) + (xy 98.555026 49.819739) + (xy 99.490137 49.531467) + (xy 99.510067 49.527054) + (xy 100.29549 49.418947) + (xy 100.3657 49.429473) + (xy 100.419075 49.476288) + (xy 100.438667 49.544528) + (xy 100.423084 49.604471) + (xy 100.361994 49.715593) + (xy 100.357166 49.726858) + (xy 100.30112 49.903538) + (xy 100.29857 49.915532) + (xy 100.282393 50.059761) + (xy 100.282 50.066785) + (xy 100.282 50.147885) + (xy 100.286475 50.163124) + (xy 100.287865 50.164329) + (xy 100.295548 50.166) + (xy 102.279885 50.166) + (xy 102.295124 50.161525) + (xy 102.296329 50.160135) + (xy 102.298 50.152452) + (xy 102.298 50.073343) + (xy 102.297699 50.067195) + (xy 102.284188 49.929397) + (xy 102.281805 49.917362) + (xy 102.228233 49.739924) + (xy 102.223559 49.728584) + (xy 102.13654 49.564923) + (xy 102.129751 49.554706) + (xy 102.012603 49.411067) + (xy 102.001771 49.40016) + (xy 101.967963 49.33773) + (xy 101.973274 49.266932) + (xy 102.016019 49.210245) + (xy 102.082412 49.18568) + (xy 103.30978 49.100104) + (xy 105.477951 48.948932) + (xy 105.492568 48.948764) + ) + ) + (filled_polygon + (layer "F.Cu") + (pts + (xy 71.612074 86.960578) + (xy 72.2305 87.579004) + (xy 72.264526 87.641316) + (xy 72.259461 87.712131) + (xy 72.230501 87.757194) + (xy 72.189698 87.797997) + (xy 72.148895 87.838801) + (xy 72.086584 87.872825) + (xy 72.015768 87.867761) + (xy 71.970705 87.8388) + (xy 71.928452 87.796547) + (xy 71.920912 87.788261) + (xy 71.9168 87.781782) + (xy 71.867148 87.735156) + (xy 71.864307 87.732402) + (xy 71.84457 87.712665) + (xy 71.841373 87.710185) + (xy 71.832351 87.70248) + (xy 71.8059 87.677641) + (xy 71.800121 87.672214) + (xy 71.793175 87.668395) + (xy 71.793172 87.668393) + (xy 71.782366 87.662452) + (xy 71.765847 87.651601) + (xy 71.765383 87.651241) + (xy 71.749841 87.639186) + (xy 71.742572 87.636041) + (xy 71.742568 87.636038) + (xy 71.709263 87.621626) + (xy 71.698613 87.616409) + (xy 71.65986 87.595105) + (xy 71.640237 87.590067) + (xy 71.621534 87.583663) + (xy 71.61022 87.578767) + (xy 71.610219 87.578767) + (xy 71.602945 87.575619) + (xy 71.595116 87.574379) + (xy 71.595113 87.574378) + (xy 71.586151 87.572958) + (xy 71.521999 87.542544) + (xy 71.484474 87.482274) + (xy 71.480051 87.446013) + (xy 71.473516 87.4428) + (xy 71.188924 87.4428) + (xy 71.120803 87.422798) + (xy 71.114863 87.418736) + (xy 71.061263 87.379793) + (xy 71.061262 87.379792) + (xy 71.055921 87.375912) + (xy 71.049893 87.373228) + (xy 71.049891 87.373227) + (xy 70.894195 87.303907) + (xy 70.840099 87.257927) + (xy 70.81945 87.19) + (xy 70.838802 87.121691) + (xy 70.894195 87.073693) + (xy 70.903319 87.069631) + (xy 70.94402 87.05151) + (xy 71.049891 87.004373) + (xy 71.049893 87.004372) + (xy 71.055921 87.001688) + (xy 71.09341 86.974451) + (xy 71.114863 86.958864) + (xy 71.181731 86.935006) + (xy 71.188924 86.9348) + (xy 71.466969 86.9348) + (xy 71.487481 86.928777) + (xy 71.558477 86.928777) + ) + ) + (filled_polygon + (layer "F.Cu") + (pts + (xy 86.232338 69.434245) + (xy 86.27352 69.492078) + (xy 86.28045 69.533288) + (xy 86.28045 87.369426) + (xy 86.260448 87.437547) + (xy 86.206792 87.48404) + (xy 86.136518 87.494144) + (xy 86.071938 87.46465) + (xy 86.065355 87.458521) + (xy 84.780055 86.173221) + (xy 84.770953 86.163078) + (xy 84.751097 86.138382) + (xy 84.747232 86.133575) + (xy 84.708778 86.101308) + (xy 84.705131 86.098128) + (xy 84.703319 86.096485) + (xy 84.701125 86.094291) + (xy 84.667851 86.066958) + (xy 84.667053 86.066296) + (xy 84.595726 86.006446) + (xy 84.591056 86.003878) + (xy 84.586939 86.000497) + (xy 84.505114 85.956623) + (xy 84.503955 85.955994) + (xy 84.427819 85.914138) + (xy 84.427811 85.914135) + (xy 84.422413 85.911167) + (xy 84.417331 85.909555) + (xy 84.412637 85.907038) + (xy 84.323669 85.879838) + (xy 84.322641 85.879518) + (xy 84.233894 85.851365) + (xy 84.228598 85.850771) + (xy 84.223502 85.849213) + (xy 84.130943 85.83981) + (xy 84.129807 85.839689) + (xy 84.096192 85.835919) + (xy 84.08347 85.834492) + (xy 84.083466 85.834492) + (xy 84.079973 85.8341) + (xy 84.076446 85.8341) + (xy 84.075461 85.834045) + (xy 84.069781 85.833598) + (xy 84.040375 85.830611) + (xy 84.032863 85.829848) + (xy 84.032861 85.829848) + (xy 84.026738 85.829226) + (xy 83.984459 85.833223) + (xy 83.981091 85.833541) + (xy 83.969233 85.8341) + (xy 82.3951 85.8341) + (xy 82.326979 85.814098) + (xy 82.280486 85.760442) + (xy 82.2691 85.7081) + (xy 82.2691 84.355967) + (xy 82.269627 84.344784) + (xy 82.271302 84.337291) + (xy 82.269741 84.287616) + (xy 82.269162 84.269214) + (xy 82.2691 84.265255) + (xy 82.2691 84.237344) + (xy 82.268595 84.233344) + (xy 82.267662 84.221501) + (xy 82.266522 84.185229) + (xy 82.266273 84.17731) + (xy 82.260622 84.157858) + (xy 82.256614 84.138506) + (xy 82.255067 84.126263) + (xy 82.254074 84.118403) + (xy 82.251156 84.111032) + (xy 82.2378 84.077297) + (xy 82.233955 84.06607) + (xy 82.233321 84.063887) + (xy 82.221618 84.023607) + (xy 82.212104 84.007519) + (xy 82.211307 84.006172) + (xy 82.202612 83.988424) + (xy 82.195152 83.969583) + (xy 82.169164 83.933813) + (xy 82.162648 83.923893) + (xy 82.14418 83.892665) + (xy 82.144178 83.892662) + (xy 82.140142 83.885838) + (xy 82.125818 83.871514) + (xy 82.112983 83.856487) + (xy 82.101072 83.840093) + (xy 82.078642 83.821537) + (xy 82.067002 83.811908) + (xy 82.058222 83.803918) + (xy 82.012253 83.757949) + (xy 82.004713 83.749663) + (xy 82.0006 83.743182) + (xy 81.950947 83.696555) + (xy 81.948106 83.693801) + (xy 81.92837 83.674065) + (xy 81.925173 83.671585) + (xy 81.916151 83.66388) + (xy 81.8897 83.639041) + (xy 81.883921 83.633614) + (xy 81.876975 83.629795) + (xy 81.876972 83.629793) + (xy 81.866166 83.623852) + (xy 81.849647 83.613001) + (xy 81.849183 83.612641) + (xy 81.833641 83.600586) + (xy 81.826372 83.597441) + (xy 81.826368 83.597438) + (xy 81.793063 83.583026) + (xy 81.782413 83.577809) + (xy 81.74366 83.556505) + (xy 81.724037 83.551467) + (xy 81.705334 83.545063) + (xy 81.69402 83.540167) + (xy 81.694019 83.540167) + (xy 81.686745 83.537019) + (xy 81.678922 83.53578) + (xy 81.678912 83.535777) + (xy 81.643076 83.530101) + (xy 81.631456 83.527695) + (xy 81.596311 83.518672) + (xy 81.59631 83.518672) + (xy 81.58863 83.5167) + (xy 81.568376 83.5167) + (xy 81.548665 83.515149) + (xy 81.536486 83.51322) + (xy 81.528657 83.51198) + (xy 81.520765 83.512726) + (xy 81.484639 83.516141) + (xy 81.472781 83.5167) + (xy 80.040194 83.5167) + (xy 79.972073 83.496698) + (xy 79.92558 83.443042) + (xy 79.915476 83.372768) + (xy 79.94497 83.308188) + (xy 79.951099 83.301605) + (xy 81.164247 82.088457) + (xy 81.172537 82.080913) + (xy 81.179018 82.0768) + (xy 81.225659 82.027132) + (xy 81.228413 82.024291) + (xy 81.248134 82.00457) + (xy 81.250612 82.001375) + (xy 81.258318 81.992353) + (xy 81.283158 81.965901) + (xy 81.288586 81.960121) + (xy 81.298346 81.942368) + (xy 81.309199 81.925845) + (xy 81.316753 81.916106) + (xy 81.321613 81.909841) + (xy 81.339176 81.869257) + (xy 81.344383 81.858627) + (xy 81.365695 81.81986) + (xy 81.367666 81.812183) + (xy 81.367668 81.812178) + (xy 81.370732 81.800242) + (xy 81.377138 81.78153) + (xy 81.382034 81.770217) + (xy 81.385181 81.762945) + (xy 81.388383 81.742732) + (xy 81.392097 81.719281) + (xy 81.394504 81.70766) + (xy 81.403528 81.672511) + (xy 81.403528 81.67251) + (xy 81.4055 81.66483) + (xy 81.4055 81.644569) + (xy 81.407051 81.624858) + (xy 81.408979 81.612685) + (xy 81.410219 81.604857) + (xy 81.406059 81.560846) + (xy 81.4055 81.548989) + (xy 81.4055 79.316395) + (xy 81.425502 79.248274) + (xy 81.479158 79.201781) + (xy 81.540113 79.191829) + (xy 81.540113 79.1913) + (xy 81.731087 79.1913) + (xy 81.737539 79.189928) + (xy 81.737544 79.189928) + (xy 81.824487 79.171447) + (xy 81.917888 79.151594) + (xy 81.931672 79.145457) + (xy 82.086322 79.076603) + (xy 82.086324 79.076602) + (xy 82.092352 79.073918) + (xy 82.133039 79.044357) + (xy 82.199906 79.020499) + (xy 82.269058 79.036579) + (xy 82.281161 79.044357) + (xy 82.321848 79.073918) + (xy 82.327876 79.076602) + (xy 82.327878 79.076603) + (xy 82.482528 79.145457) + (xy 82.496312 79.151594) + (xy 82.589713 79.171447) + (xy 82.676656 79.189928) + (xy 82.676661 79.189928) + (xy 82.683113 79.1913) + (xy 82.874087 79.1913) + (xy 82.880539 79.189928) + (xy 82.880544 79.189928) + (xy 82.967487 79.171447) + (xy 83.060888 79.151594) + (xy 83.074672 79.145457) + (xy 83.229322 79.076603) + (xy 83.229324 79.076602) + (xy 83.235352 79.073918) + (xy 83.389853 78.961666) + (xy 83.504509 78.834328) + (xy 83.513221 78.824652) + (xy 83.513222 78.824651) + (xy 83.51764 78.819744) + (xy 83.613127 78.654356) + (xy 83.672142 78.472728) + (xy 83.692104 78.2828) + (xy 83.675351 78.123406) + (xy 83.672832 78.099435) + (xy 83.672832 78.099433) + (xy 83.672142 78.092872) + (xy 83.613127 77.911244) + (xy 83.51764 77.745856) + (xy 83.419464 77.63682) + (xy 83.388746 77.572813) + (xy 83.3871 77.55251) + (xy 83.3871 77.342439) + (xy 83.407102 77.274318) + (xy 83.424005 77.253344) + (xy 84.241634 76.435715) + (xy 84.254025 76.424848) + (xy 84.272837 76.410413) + (xy 84.279387 76.405387) + (xy 84.303874 76.373475) + (xy 84.30388 76.373469) + (xy 84.371896 76.284829) + (xy 84.371897 76.284827) + (xy 84.376924 76.278276) + (xy 84.438238 76.130251) + (xy 84.440791 76.110857) + (xy 84.4539 76.011285) + (xy 84.4539 76.01128) + (xy 84.45915 75.9714) + (xy 84.454978 75.939707) + (xy 84.4539 75.923264) + (xy 84.4539 73.405439) + (xy 84.473902 73.337318) + (xy 84.490805 73.316344) + (xy 85.613234 72.193915) + (xy 85.625625 72.183048) + (xy 85.644437 72.168613) + (xy 85.650987 72.163587) + (xy 85.675474 72.131675) + (xy 85.675477 72.131672) + (xy 85.743333 72.04324) + (xy 85.748524 72.036475) + (xy 85.809838 71.88845) + (xy 85.8255 71.769485) + (xy 85.8255 71.769478) + (xy 85.83075 71.7296) + (xy 85.826578 71.697907) + (xy 85.8255 71.681464) + (xy 85.8255 69.81829) + (xy 85.845502 69.750169) + (xy 85.857864 69.73398) + (xy 85.951621 69.629852) + (xy 85.951622 69.629851) + (xy 85.95604 69.624944) + (xy 86.045331 69.470288) + (xy 86.096714 69.421295) + (xy 86.166427 69.407859) + ) + ) + (filled_polygon + (layer "F.Cu") + (pts + (xy 78.736774 72.06021) + (xy 78.768599 72.123675) + (xy 78.76445 72.185071) + (xy 78.730178 72.290549) + (xy 78.710058 72.352472) + (xy 78.690096 72.5424) + (xy 78.710058 72.732328) + (xy 78.769073 72.913956) + (xy 78.86456 73.079344) + (xy 78.868978 73.084251) + (xy 78.868979 73.084252) + (xy 78.976678 73.203864) + (xy 78.992347 73.221266) + (xy 79.029359 73.248157) + (xy 79.136359 73.325897) + (xy 79.146848 73.333518) + (xy 79.152876 73.336202) + (xy 79.152878 73.336203) + (xy 79.294072 73.399066) + (xy 79.321312 73.411194) + (xy 79.414712 73.431047) + (xy 79.501656 73.449528) + (xy 79.501661 73.449528) + (xy 79.508113 73.4509) + (xy 79.699087 73.4509) + (xy 79.705539 73.449528) + (xy 79.705544 73.449528) + (xy 79.792488 73.431047) + (xy 79.885888 73.411194) + (xy 79.913128 73.399066) + (xy 80.054322 73.336203) + (xy 80.054324 73.336202) + (xy 80.060352 73.333518) + (xy 80.070842 73.325897) + (xy 80.177841 73.248157) + (xy 80.244709 73.224299) + (xy 80.31386 73.240379) + (xy 80.345537 73.265781) + (xy 80.465547 73.399066) + (xy 80.620048 73.511318) + (xy 80.626076 73.514002) + (xy 80.626078 73.514003) + (xy 80.702929 73.548219) + (xy 80.794512 73.588994) + (xy 80.880324 73.607234) + (xy 80.974856 73.627328) + (xy 80.974861 73.627328) + (xy 80.981313 73.6287) + (xy 81.172287 73.6287) + (xy 81.178739 73.627328) + (xy 81.178744 73.627328) + (xy 81.273276 73.607234) + (xy 81.359088 73.588994) + (xy 81.450671 73.548219) + (xy 81.527522 73.514003) + (xy 81.527524 73.514002) + (xy 81.533552 73.511318) + (xy 81.688053 73.399066) + (xy 81.81584 73.257144) + (xy 81.859181 73.182075) + (xy 81.910563 73.133082) + (xy 81.980277 73.119646) + (xy 82.046188 73.146032) + (xy 82.08737 73.203864) + (xy 82.0943 73.245075) + (xy 82.0943 75.072605) + (xy 82.074298 75.140726) + (xy 82.057395 75.1617) + (xy 80.379741 76.839354) + (xy 80.371463 76.846887) + (xy 80.364982 76.851) + (xy 80.359555 76.85678) + (xy 80.359553 76.856781) + (xy 80.318365 76.900643) + (xy 80.315609 76.903487) + (xy 79.987699 77.231396) + (xy 79.925387 77.265421) + (xy 79.898604 77.2683) + (xy 79.442178 77.2683) + (xy 79.374057 77.248298) + (xy 79.327564 77.194642) + (xy 79.321181 77.177453) + (xy 79.308357 77.133312) + (xy 79.308356 77.13331) + (xy 79.306145 77.125699) + (xy 79.260547 77.048597) + (xy 79.225491 76.98932) + (xy 79.225489 76.989317) + (xy 79.221453 76.982493) + (xy 79.103807 76.864847) + (xy 79.096983 76.860811) + (xy 79.09698 76.860809) + (xy 78.967427 76.784192) + (xy 78.967428 76.784192) + (xy 78.960601 76.780155) + (xy 78.95299 76.777944) + (xy 78.952988 76.777943) + (xy 78.865142 76.752422) + (xy 78.800831 76.733738) + (xy 78.794426 76.733234) + (xy 78.794421 76.733233) + (xy 78.765958 76.730993) + (xy 78.76595 76.730993) + (xy 78.763502 76.7308) + (xy 78.330498 76.7308) + (xy 78.32805 76.730993) + (xy 78.328042 76.730993) + (xy 78.299579 76.733233) + (xy 78.299574 76.733234) + (xy 78.293169 76.733738) + (xy 78.228858 76.752422) + (xy 78.141012 76.777943) + (xy 78.14101 76.777944) + (xy 78.133399 76.780155) + (xy 78.126577 76.784189) + (xy 78.121404 76.786428) + (xy 78.050942 76.795124) + (xy 78.021326 76.786428) + (xy 78.00279 76.778407) + (xy 77.868395 76.739361) + (xy 77.854294 76.739401) + (xy 77.851 76.74667) + (xy 77.851 76.984458) + (xy 77.833453 77.048597) + (xy 77.787855 77.125699) + (xy 77.741438 77.285469) + (xy 77.7385 77.322798) + (xy 77.7385 78.480802) + (xy 77.738693 78.48325) + (xy 77.738693 78.483258) + (xy 77.740085 78.500938) + (xy 77.741438 78.518131) + (xy 77.766985 78.606066) + (xy 77.781015 78.654356) + (xy 77.787855 78.677901) + (xy 77.791892 78.684727) + (xy 77.833453 78.755003) + (xy 77.851 78.819142) + (xy 77.851 79.051178) + (xy 77.855474 79.066416) + (xy 77.864882 79.074568) + (xy 77.903266 79.134294) + (xy 77.903266 79.20529) + (xy 77.881929 79.24702) + (xy 77.878156 79.251884) + (xy 77.872547 79.257493) + (xy 77.868511 79.264317) + (xy 77.868509 79.26432) + (xy 77.849602 79.296291) + (xy 77.787855 79.400699) + (xy 77.785644 79.40831) + (xy 77.785643 79.408312) + (xy 77.777901 79.434962) + (xy 77.741438 79.560469) + (xy 77.7385 79.597798) + (xy 77.7385 80.755802) + (xy 77.741438 80.793131) + (xy 77.787855 80.952901) + (xy 77.791892 80.959727) + (xy 77.868509 81.08928) + (xy 77.868511 81.089283) + (xy 77.872547 81.096107) + (xy 77.878155 81.101715) + (xy 77.883011 81.107975) + (xy 77.881504 81.109144) + (xy 77.910621 81.162467) + (xy 77.9135 81.18925) + (xy 77.9135 81.463205) + (xy 77.893498 81.531326) + (xy 77.876595 81.5523) + (xy 76.489795 82.9391) + (xy 76.427483 82.973126) + (xy 76.356668 82.968061) + (xy 76.299832 82.925514) + (xy 76.275021 82.858994) + (xy 76.2747 82.850005) + (xy 76.2747 81.497194) + (xy 76.294702 81.429073) + (xy 76.311605 81.408099) + (xy 76.335241 81.384463) + (xy 76.397553 81.350437) + (xy 76.428985 81.347681) + (xy 76.430498 81.3478) + (xy 76.863502 81.3478) + (xy 76.86595 81.347607) + (xy 76.865958 81.347607) + (xy 76.894421 81.345367) + (xy 76.894426 81.345366) + (xy 76.900831 81.344862) + (xy 77.000769 81.315828) + (xy 77.052988 81.300657) + (xy 77.05299 81.300656) + (xy 77.060601 81.298445) + (xy 77.108352 81.270205) + (xy 77.19698 81.217791) + (xy 77.196983 81.217789) + (xy 77.203807 81.213753) + (xy 77.321453 81.096107) + (xy 77.325489 81.089283) + (xy 77.325491 81.08928) + (xy 77.402108 80.959727) + (xy 77.406145 80.952901) + (xy 77.452562 80.793131) + (xy 77.4555 80.755802) + (xy 77.4555 79.597798) + (xy 77.452562 79.560469) + (xy 77.416099 79.434962) + (xy 77.408357 79.408312) + (xy 77.408356 79.40831) + (xy 77.406145 79.400699) + (xy 77.321453 79.257493) + (xy 77.315844 79.251884) + (xy 77.311601 79.246414) + (xy 77.285654 79.180329) + (xy 77.299555 79.110706) + (xy 77.337446 79.069184) + (xy 77.343 79.05693) + (xy 77.343 78.819142) + (xy 77.360547 78.755003) + (xy 77.402108 78.684727) + (xy 77.406145 78.677901) + (xy 77.412986 78.654356) + (xy 77.427015 78.606066) + (xy 77.452562 78.518131) + (xy 77.453916 78.500938) + (xy 77.455307 78.483258) + (xy 77.455307 78.48325) + (xy 77.4555 78.480802) + (xy 77.4555 77.322798) + (xy 77.452562 77.285469) + (xy 77.406145 77.125699) + (xy 77.360547 77.048597) + (xy 77.343 76.984458) + (xy 77.343 76.752422) + (xy 77.339027 76.738891) + (xy 77.331129 76.737756) + (xy 77.19121 76.778407) + (xy 77.172674 76.786428) + (xy 77.102212 76.795124) + (xy 77.072596 76.786428) + (xy 77.067423 76.784189) + (xy 77.060601 76.780155) + (xy 77.05299 76.777944) + (xy 77.052988 76.777943) + (xy 76.965142 76.752422) + (xy 76.900831 76.733738) + (xy 76.894426 76.733234) + (xy 76.894421 76.733233) + (xy 76.865958 76.730993) + (xy 76.86595 76.730993) + (xy 76.863502 76.7308) + (xy 76.430498 76.7308) + (xy 76.42805 76.730993) + (xy 76.428042 76.730993) + (xy 76.399579 76.733233) + (xy 76.399574 76.733234) + (xy 76.393169 76.733738) + (xy 76.328858 76.752422) + (xy 76.241012 76.777943) + (xy 76.24101 76.777944) + (xy 76.233399 76.780155) + (xy 76.226572 76.784192) + (xy 76.226573 76.784192) + (xy 76.09702 76.860809) + (xy 76.097017 76.860811) + (xy 76.090193 76.864847) + (xy 76.032595 76.922445) + (xy 75.970283 76.956471) + (xy 75.899468 76.951406) + (xy 75.842632 76.908859) + (xy 75.817821 76.842339) + (xy 75.8175 76.83335) + (xy 75.8175 74.279394) + (xy 75.837502 74.211273) + (xy 75.854405 74.190299) + (xy 77.9172 72.127505) + (xy 77.979512 72.093479) + (xy 78.006295 72.0906) + (xy 78.341272 72.0906) + (xy 78.344518 72.090263) + (xy 78.344522 72.090263) + (xy 78.438435 72.080519) + (xy 78.438439 72.080518) + (xy 78.445293 72.079807) + (xy 78.451829 72.077626) + (xy 78.451831 72.077626) + (xy 78.604741 72.026611) + (xy 78.67569 72.024027) + ) + ) + (filled_polygon + (layer "F.Cu") + (pts + (xy 110.284227 62.822602) + (xy 110.305197 62.839501) + (xy 111.259597 63.793902) + (xy 111.293621 63.856212) + (xy 111.2965 63.882995) + (xy 111.2965 64.362725) + (xy 111.276498 64.430846) + (xy 111.246065 64.463551) + (xy 111.141739 64.541739) + (xy 111.054385 64.658295) + (xy 111.003255 64.794684) + (xy 110.9965 64.856866) + (xy 110.9965 65.803134) + (xy 111.003255 65.865316) + (xy 111.054385 66.001705) + (xy 111.141739 66.118261) + (xy 111.258295 66.205615) + (xy 111.394684 66.256745) + (xy 111.456866 66.2635) + (xy 112.403134 66.2635) + (xy 112.465316 66.256745) + (xy 112.601705 66.205615) + (xy 112.718261 66.118261) + (xy 112.805615 66.001705) + (xy 112.856745 65.865316) + (xy 112.857598 65.85746) + (xy 112.857917 65.85612) + (xy 112.893135 65.794473) + (xy 112.95609 65.761653) + (xy 113.026795 65.768079) + (xy 113.082802 65.811711) + (xy 113.1065 65.885266) + (xy 113.1065 66.563134) + (xy 113.113255 66.625316) + (xy 113.164385 66.761705) + (xy 113.251739 66.878261) + (xy 113.368295 66.965615) + (xy 113.376703 66.968767) + (xy 113.384575 66.973077) + (xy 113.383739 66.974604) + (xy 113.432004 67.010862) + (xy 113.456702 67.077424) + (xy 113.441493 67.146772) + (xy 113.391206 67.19689) + (xy 113.331008 67.2122) + (xy 98.226661 67.2122) + (xy 98.15854 67.192198) + (xy 98.112047 67.138542) + (xy 98.101943 67.068268) + (xy 98.125835 67.010635) + (xy 98.179786 66.938648) + (xy 98.188324 66.923054) + (xy 98.233478 66.802606) + (xy 98.237105 66.787351) + (xy 98.242631 66.736486) + (xy 98.243 66.729672) + (xy 98.243 66.532115) + (xy 98.238525 66.516876) + (xy 98.237135 66.515671) + (xy 98.229452 66.514) + (xy 96.395116 66.514) + (xy 96.379877 66.518475) + (xy 96.378672 66.519865) + (xy 96.377001 66.527548) + (xy 96.377001 66.729669) + (xy 96.377371 66.73649) + (xy 96.382895 66.787352) + (xy 96.386521 66.802604) + (xy 96.431676 66.923054) + (xy 96.440214 66.938648) + (xy 96.494165 67.010635) + (xy 96.519013 67.077141) + (xy 96.50396 67.146524) + (xy 96.453786 67.196754) + (xy 96.393339 67.2122) + (xy 94.592094 67.2122) + (xy 94.523973 67.192198) + (xy 94.47748 67.138542) + (xy 94.467376 67.068268) + (xy 94.49687 67.003688) + (xy 94.502999 66.997105) + (xy 95.512219 65.987885) + (xy 96.377 65.987885) + (xy 96.381475 66.003124) + (xy 96.382865 66.004329) + (xy 96.390548 66.006) + (xy 97.037885 66.006) + (xy 97.053124 66.001525) + (xy 97.054329 66.000135) + (xy 97.056 65.992452) + (xy 97.056 65.987885) + (xy 97.564 65.987885) + (xy 97.568475 66.003124) + (xy 97.569865 66.004329) + (xy 97.577548 66.006) + (xy 98.224884 66.006) + (xy 98.240123 66.001525) + (xy 98.241328 66.000135) + (xy 98.242999 65.992452) + (xy 98.242999 65.790331) + (xy 98.242629 65.78351) + (xy 98.237105 65.732648) + (xy 98.233479 65.717396) + (xy 98.188324 65.596946) + (xy 98.179786 65.581351) + (xy 98.103285 65.479276) + (xy 98.090724 65.466715) + (xy 97.988649 65.390214) + (xy 97.973054 65.381676) + (xy 97.852606 65.336522) + (xy 97.837351 65.332895) + (xy 97.786486 65.327369) + (xy 97.779672 65.327) + (xy 97.582115 65.327) + (xy 97.566876 65.331475) + (xy 97.565671 65.332865) + (xy 97.564 65.340548) + (xy 97.564 65.987885) + (xy 97.056 65.987885) + (xy 97.056 65.345116) + (xy 97.051525 65.329877) + (xy 97.050135 65.328672) + (xy 97.042452 65.327001) + (xy 96.840331 65.327001) + (xy 96.83351 65.327371) + (xy 96.782648 65.332895) + (xy 96.767396 65.336521) + (xy 96.646946 65.381676) + (xy 96.631351 65.390214) + (xy 96.529276 65.466715) + (xy 96.516715 65.479276) + (xy 96.440214 65.581351) + (xy 96.431676 65.596946) + (xy 96.386522 65.717394) + (xy 96.382895 65.732649) + (xy 96.377369 65.783514) + (xy 96.377 65.790328) + (xy 96.377 65.987885) + (xy 95.512219 65.987885) + (xy 96.618499 64.881605) + (xy 96.680811 64.847579) + (xy 96.707594 64.8447) + (xy 98.44586 64.8447) + (xy 98.513981 64.864702) + (xy 98.560474 64.918358) + (xy 98.571123 64.984307) + (xy 98.566869 65.023467) + (xy 98.5665 65.026866) + (xy 98.5665 65.973134) + (xy 98.573255 66.035316) + (xy 98.624385 66.171705) + (xy 98.711739 66.288261) + (xy 98.828295 66.375615) + (xy 98.964684 66.426745) + (xy 99.026866 66.4335) + (xy 99.973134 66.4335) + (xy 100.035316 66.426745) + (xy 100.171705 66.375615) + (xy 100.288261 66.288261) + (xy 100.375615 66.171705) + (xy 100.426745 66.035316) + (xy 100.4335 65.973134) + (xy 100.4335 65.026866) + (xy 100.426745 64.964684) + (xy 100.375615 64.828295) + (xy 100.288261 64.711739) + (xy 100.185651 64.634837) + (xy 100.143137 64.577977) + (xy 100.137263 64.533442) + (xy 100.135702 64.533491) + (xy 100.133562 64.465401) + (xy 100.1335 64.461443) + (xy 100.1335 64.433544) + (xy 100.132996 64.429553) + (xy 100.132063 64.417695) + (xy 100.132005 64.415842) + (xy 100.149866 64.347129) + (xy 100.202041 64.29898) + (xy 100.257943 64.2859) + (xy 100.625006 64.2859) + (xy 100.693127 64.305902) + (xy 100.714101 64.322805) + (xy 100.730082 64.338786) + (xy 100.764108 64.401098) + (xy 100.766774 64.434347) + (xy 100.7665 64.436866) + (xy 100.7665 65.383134) + (xy 100.773255 65.445316) + (xy 100.824385 65.581705) + (xy 100.911739 65.698261) + (xy 101.028295 65.785615) + (xy 101.164684 65.836745) + (xy 101.226866 65.8435) + (xy 102.173134 65.8435) + (xy 102.235316 65.836745) + (xy 102.371705 65.785615) + (xy 102.488261 65.698261) + (xy 102.575615 65.581705) + (xy 102.626745 65.445316) + (xy 102.6335 65.383134) + (xy 102.6335 64.436866) + (xy 102.626745 64.374684) + (xy 102.575615 64.238295) + (xy 102.488261 64.121739) + (xy 102.371705 64.034385) + (xy 102.235316 63.983255) + (xy 102.21144 63.980661) + (xy 102.203016 63.979746) + (xy 102.136316 63.951573) + (xy 102.134644 63.95019) + (xy 102.094902 63.891359) + (xy 102.093275 63.820382) + (xy 102.13028 63.759791) + (xy 102.194168 63.728826) + (xy 102.214953 63.7271) + (xy 102.428406 63.7271) + (xy 102.496527 63.747102) + (xy 102.517501 63.764005) + (xy 103.009595 64.256099) + (xy 103.043621 64.318411) + (xy 103.0465 64.345194) + (xy 103.0465 65.043134) + (xy 103.053255 65.105316) + (xy 103.104385 65.241705) + (xy 103.191739 65.358261) + (xy 103.308295 65.445615) + (xy 103.444684 65.496745) + (xy 103.506866 65.5035) + (xy 104.453134 65.5035) + (xy 104.515316 65.496745) + (xy 104.651705 65.445615) + (xy 104.768261 65.358261) + (xy 104.855615 65.241705) + (xy 104.906745 65.105316) + (xy 104.9135 65.043134) + (xy 104.9135 64.963134) + (xy 105.3365 64.963134) + (xy 105.343255 65.025316) + (xy 105.394385 65.161705) + (xy 105.481739 65.278261) + (xy 105.598295 65.365615) + (xy 105.734684 65.416745) + (xy 105.796866 65.4235) + (xy 106.743134 65.4235) + (xy 106.805316 65.416745) + (xy 106.941705 65.365615) + (xy 107.043039 65.289669) + (xy 108.707001 65.289669) + (xy 108.707371 65.29649) + (xy 108.712895 65.347352) + (xy 108.716521 65.362604) + (xy 108.761676 65.483054) + (xy 108.770214 65.498649) + (xy 108.846715 65.600724) + (xy 108.859276 65.613285) + (xy 108.961351 65.689786) + (xy 108.976946 65.698324) + (xy 109.097394 65.743478) + (xy 109.112649 65.747105) + (xy 109.163514 65.752631) + (xy 109.170328 65.753) + (xy 109.367885 65.753) + (xy 109.383124 65.748525) + (xy 109.384329 65.747135) + (xy 109.386 65.739452) + (xy 109.386 65.734884) + (xy 109.894 65.734884) + (xy 109.898475 65.750123) + (xy 109.899865 65.751328) + (xy 109.907548 65.752999) + (xy 110.109669 65.752999) + (xy 110.11649 65.752629) + (xy 110.167352 65.747105) + (xy 110.182604 65.743479) + (xy 110.303054 65.698324) + (xy 110.318649 65.689786) + (xy 110.420724 65.613285) + (xy 110.433285 65.600724) + (xy 110.509786 65.498649) + (xy 110.518324 65.483054) + (xy 110.563478 65.362606) + (xy 110.567105 65.347351) + (xy 110.572631 65.296486) + (xy 110.573 65.289672) + (xy 110.573 65.092115) + (xy 110.568525 65.076876) + (xy 110.567135 65.075671) + (xy 110.559452 65.074) + (xy 109.912115 65.074) + (xy 109.896876 65.078475) + (xy 109.895671 65.079865) + (xy 109.894 65.087548) + (xy 109.894 65.734884) + (xy 109.386 65.734884) + (xy 109.386 65.092115) + (xy 109.381525 65.076876) + (xy 109.380135 65.075671) + (xy 109.372452 65.074) + (xy 108.725116 65.074) + (xy 108.709877 65.078475) + (xy 108.708672 65.079865) + (xy 108.707001 65.087548) + (xy 108.707001 65.289669) + (xy 107.043039 65.289669) + (xy 107.058261 65.278261) + (xy 107.145615 65.161705) + (xy 107.196745 65.025316) + (xy 107.2035 64.963134) + (xy 107.2035 64.547885) + (xy 108.707 64.547885) + (xy 108.711475 64.563124) + (xy 108.712865 64.564329) + (xy 108.720548 64.566) + (xy 109.367885 64.566) + (xy 109.383124 64.561525) + (xy 109.384329 64.560135) + (xy 109.386 64.552452) + (xy 109.386 64.547885) + (xy 109.894 64.547885) + (xy 109.898475 64.563124) + (xy 109.899865 64.564329) + (xy 109.907548 64.566) + (xy 110.554884 64.566) + (xy 110.570123 64.561525) + (xy 110.571328 64.560135) + (xy 110.572999 64.552452) + (xy 110.572999 64.350331) + (xy 110.572629 64.34351) + (xy 110.567105 64.292648) + (xy 110.563479 64.277396) + (xy 110.518324 64.156946) + (xy 110.509786 64.141351) + (xy 110.433285 64.039276) + (xy 110.420724 64.026715) + (xy 110.318649 63.950214) + (xy 110.303054 63.941676) + (xy 110.182606 63.896522) + (xy 110.167351 63.892895) + (xy 110.116486 63.887369) + (xy 110.109672 63.887) + (xy 109.912115 63.887) + (xy 109.896876 63.891475) + (xy 109.895671 63.892865) + (xy 109.894 63.900548) + (xy 109.894 64.547885) + (xy 109.386 64.547885) + (xy 109.386 63.905116) + (xy 109.381525 63.889877) + (xy 109.380135 63.888672) + (xy 109.372452 63.887001) + (xy 109.170331 63.887001) + (xy 109.16351 63.887371) + (xy 109.112648 63.892895) + (xy 109.097396 63.896521) + (xy 108.976946 63.941676) + (xy 108.961351 63.950214) + (xy 108.859276 64.026715) + (xy 108.846715 64.039276) + (xy 108.770214 64.141351) + (xy 108.761676 64.156946) + (xy 108.716522 64.277394) + (xy 108.712895 64.292649) + (xy 108.707369 64.343514) + (xy 108.707 64.350328) + (xy 108.707 64.547885) + (xy 107.2035 64.547885) + (xy 107.2035 64.016866) + (xy 107.196745 63.954684) + (xy 107.145615 63.818295) + (xy 107.058261 63.701739) + (xy 106.941705 63.614385) + (xy 106.805316 63.563255) + (xy 106.74944 63.557185) + (xy 106.746531 63.556869) + (xy 106.743134 63.5565) + (xy 105.796866 63.5565) + (xy 105.793469 63.556869) + (xy 105.79056 63.557185) + (xy 105.734684 63.563255) + (xy 105.598295 63.614385) + (xy 105.481739 63.701739) + (xy 105.394385 63.818295) + (xy 105.343255 63.954684) + (xy 105.3365 64.016866) + (xy 105.3365 64.963134) + (xy 104.9135 64.963134) + (xy 104.9135 64.096866) + (xy 104.906745 64.034684) + (xy 104.855615 63.898295) + (xy 104.768261 63.781739) + (xy 104.651705 63.694385) + (xy 104.515316 63.643255) + (xy 104.453134 63.6365) + (xy 104.233995 63.6365) + (xy 104.165874 63.616498) + (xy 104.1449 63.599595) + (xy 103.563 63.017695) + (xy 103.528974 62.955383) + (xy 103.534039 62.884568) + (xy 103.576586 62.827732) + (xy 103.643106 62.802921) + (xy 103.652095 62.8026) + (xy 110.216106 62.8026) + ) + ) + ) + (zone (net 2) (net_name "GND") (layers F&B.Cu) (tstamp d9833725-c7a7-4817-b1ff-0fa3f4a9e17e) (hatch edge 0.508) + (connect_pads (clearance 0.508)) + (min_thickness 0.254) (filled_areas_thickness no) + (fill yes (thermal_gap 0.508) (thermal_bridge_width 0.508)) + (polygon + (pts + (xy 160.5882 131.0734) + (xy 63.738 128.1778) + (xy 63.9158 44.561) + (xy 156.2194 41.6654) + ) + ) + (filled_polygon + (layer "F.Cu") + (pts + (xy 107.231877 49.029835) + (xy 109.069568 49.115491) + (xy 109.078558 49.116233) + (xy 109.208636 49.131679) + (xy 109.273923 49.159574) + (xy 109.313765 49.218338) + (xy 109.315512 49.289313) + (xy 109.27861 49.349965) + (xy 109.272731 49.354996) + (xy 109.226133 49.392462) + (xy 109.217368 49.401046) + (xy 109.098222 49.543039) + (xy 109.091292 49.553159) + (xy 109.001998 49.715585) + (xy 108.997166 49.726858) + (xy 108.94112 49.903538) + (xy 108.93857 49.915532) + (xy 108.922393 50.059761) + (xy 108.922 50.066785) + (xy 108.922 50.147885) + (xy 108.926475 50.163124) + (xy 108.927865 50.164329) + (xy 108.935548 50.166) + (xy 110.919885 50.166) + (xy 110.935124 50.161525) + (xy 110.936329 50.160135) + (xy 110.938 50.152452) + (xy 110.938 50.073343) + (xy 110.937699 50.067195) + (xy 110.924188 49.929397) + (xy 110.921805 49.917362) + (xy 110.868233 49.739924) + (xy 110.863559 49.728584) + (xy 110.77654 49.564923) + (xy 110.769748 49.5547) + (xy 110.752115 49.53308) + (xy 110.724561 49.467649) + (xy 110.736757 49.397707) + (xy 110.784829 49.345462) + (xy 110.853516 49.327501) + (xy 110.864609 49.328323) + (xy 111.982887 49.461118) + (xy 112.582257 49.532292) + (xy 112.592343 49.533907) + (xy 112.906559 49.597368) + (xy 112.937964 49.608176) + (xy 113.800483 50.039436) + (xy 113.828371 50.058433) + (xy 113.946164 50.164329) + (xy 114.529882 50.689097) + (xy 114.556272 50.722486) + (xy 114.976249 51.49283) + (xy 114.98057 51.503488) + (xy 114.9812 51.503212) + (xy 114.984806 51.511433) + (xy 114.987209 51.520082) + (xy 114.991943 51.527709) + (xy 114.991944 51.52771) + (xy 115.01734 51.56862) + (xy 115.020908 51.574746) + (xy 115.028766 51.58916) + (xy 115.033391 51.595354) + (xy 115.039474 51.604276) + (xy 115.059293 51.636204) + (xy 115.059297 51.636209) + (xy 115.06403 51.643833) + (xy 115.071487 51.650516) + (xy 115.088355 51.668965) + (xy 115.088472 51.669121) + (xy 115.093845 51.676317) + (xy 115.129516 51.70315) + (xy 115.137867 51.710012) + (xy 115.172497 51.74105) + (xy 115.180594 51.744924) + (xy 115.181519 51.745367) + (xy 115.202875 51.758333) + (xy 115.210246 51.763877) + (xy 115.218642 51.767042) + (xy 115.218645 51.767043) + (xy 115.252106 51.779654) + (xy 115.262044 51.783895) + (xy 115.273455 51.789355) + (xy 115.290947 51.794609) + (xy 115.299121 51.797374) + (xy 115.346544 51.815248) + (xy 115.355499 51.815929) + (xy 115.364261 51.817872) + (xy 115.36421 51.8181) + (xy 115.377179 51.820512) + (xy 117.816233 52.553154) + (xy 117.828885 52.557703) + (xy 120.992061 53.88971) + (xy 120.999491 53.893127) + (xy 124.167617 55.476511) + (xy 124.178334 55.482538) + (xy 127.073014 57.30181) + (xy 127.088003 57.312855) + (xy 127.169066 57.382391) + (xy 127.572001 57.728031) + (xy 127.59623 57.755965) + (xy 128.088647 58.528952) + (xy 128.103913 58.552916) + (xy 128.115241 58.575369) + (xy 128.452858 59.452958) + (xy 128.473148 59.505699) + (xy 128.48155 59.55094) + (xy 128.48155 60.564003) + (xy 128.479799 60.584935) + (xy 128.408293 61.009392) + (xy 128.406166 61.022017) + (xy 128.406069 61.022585) + (xy 128.391103 61.108316) + (xy 128.392103 61.117235) + (xy 128.392103 61.117237) + (xy 128.394438 61.13806) + (xy 128.395185 61.155207) + (xy 128.394468 61.184271) + (xy 128.396775 61.192948) + (xy 128.396775 61.19295) + (xy 128.403093 61.216714) + (xy 128.403415 61.218123) + (xy 128.403573 61.219537) + (xy 128.404583 61.223241) + (xy 128.404585 61.223251) + (xy 128.414411 61.259297) + (xy 128.414617 61.260062) + (xy 128.420577 61.282479) + (xy 128.431891 61.325039) + (xy 128.432558 61.326141) + (xy 128.432905 61.32714) + (xy 128.553099 61.768068) + (xy 128.650311 62.124688) + (xy 128.653239 62.142508) + (xy 128.654395 62.148158) + (xy 128.654929 62.157117) + (xy 128.657956 62.165566) + (xy 128.657957 62.165569) + (xy 128.670921 62.201749) + (xy 128.673871 62.211118) + (xy 128.677154 62.223161) + (xy 128.678935 62.227277) + (xy 128.68391 62.238776) + (xy 128.686885 62.246305) + (xy 128.69268 62.262477) + (xy 128.695003 62.266745) + (xy 128.695006 62.266751) + (xy 128.697203 62.270786) + (xy 128.702176 62.280989) + (xy 128.720349 62.322989) + (xy 128.726083 62.329896) + (xy 128.727819 62.331987) + (xy 128.741538 62.352227) + (xy 128.873515 62.594664) + (xy 129.204221 63.202159) + (xy 129.209274 63.212549) + (xy 129.227068 63.253852) + (xy 129.232789 63.260766) + (xy 129.232791 63.260769) + (xy 129.26428 63.298823) + (xy 129.268199 63.303811) + (xy 129.30122 63.348091) + (xy 129.308392 63.353493) + (xy 129.308393 63.353494) + (xy 129.338817 63.376409) + (xy 129.346573 63.382749) + (xy 129.488739 63.508719) + (xy 130.054897 64.010378) + (xy 130.074747 64.027967) + (xy 130.080548 64.033445) + (xy 130.118024 64.07115) + (xy 130.157593 64.092971) + (xy 130.159752 64.094161) + (xy 130.168253 64.099296) + (xy 130.186279 64.111178) + (xy 130.208262 64.12567) + (xy 130.263264 64.142584) + (xy 130.26936 64.144631) + (xy 130.78831 64.33376) + (xy 131.156323 64.467881) + (xy 131.166727 64.472209) + (xy 131.199222 64.487465) + (xy 131.20735 64.491281) + (xy 131.237886 64.496036) + (xy 131.262758 64.499909) + (xy 131.269296 64.501105) + (xy 131.315397 64.510798) + (xy 131.315399 64.510798) + (xy 131.324183 64.512645) + (xy 131.372875 64.508876) + (xy 131.382598 64.5085) + (xy 133.066913 64.5085) + (xy 133.093304 64.511295) + (xy 134.120832 64.731398) + (xy 134.154753 64.743976) + (xy 134.72291 65.053726) + (xy 134.909978 65.155712) + (xy 134.924037 65.163377) + (xy 134.95282 65.184908) + (xy 135.213232 65.445316) + (xy 135.653188 65.885266) + (xy 135.68661 65.918688) + (xy 135.703395 65.93948) + (xy 137.318363 68.442868) + (xy 137.340606 68.477348) + (xy 137.346813 68.488099) + (xy 138.917108 71.546546) + (xy 138.926529 71.564895) + (xy 138.931013 71.574625) + (xy 140.247906 74.785054) + (xy 140.262768 74.821287) + (xy 140.266882 74.832904) + (xy 141.262925 78.153976) + (xy 141.265905 78.166046) + (xy 141.394785 78.826716) + (xy 141.931909 81.580131) + (xy 141.933355 81.589351) + (xy 142.349265 85.08055) + (xy 142.35015 85.095455) + (xy 142.35015 88.49517) + (xy 142.349585 88.507091) + (xy 142.017767 91.99859) + (xy 142.015999 92.010803) + (xy 141.799914 93.118077) + (xy 141.351629 95.415205) + (xy 141.350009 95.423506) + (xy 141.347836 95.432764) + (xy 140.952706 96.869865) + (xy 140.434019 98.756349) + (xy 140.429095 98.77078) + (xy 139.100953 102.00727) + (xy 139.096475 102.016985) + (xy 138.304043 103.560397) + (xy 137.803795 104.534726) + (xy 137.514804 105.09759) + (xy 137.509396 105.107084) + (xy 136.718117 106.366106) + (xy 135.688267 108.004722) + (xy 135.677206 108.01973) + (xy 135.254164 108.512702) + (xy 135.247683 108.520254) + (xy 135.226184 108.540092) + (xy 134.441848 109.11063) + (xy 134.404752 109.129173) + (xy 133.498552 109.407738) + (xy 133.46153 109.4133) + (xy 131.935625 109.4133) + (xy 131.929582 109.412948) + (xy 131.924324 109.411556) + (xy 131.915355 109.411787) + (xy 131.915353 109.411787) + (xy 131.858296 109.413258) + (xy 131.855049 109.4133) + (xy 131.828137 109.4133) + (xy 131.823703 109.413935) + (xy 131.821837 109.414068) + (xy 131.817796 109.414264) + (xy 131.817305 109.414315) + (xy 131.812442 109.41444) + (xy 131.807658 109.415312) + (xy 131.807655 109.415312) + (xy 131.786395 109.419186) + (xy 131.781672 109.419954) + (xy 131.729349 109.427447) + (xy 131.729346 109.427448) + (xy 131.720463 109.42872) + (xy 131.713318 109.431969) + (xy 131.703526 109.434286) + (xy 131.218647 109.522641) + (xy 130.881242 109.584123) + (xy 130.866242 109.585934) + (xy 130.850922 109.586857) + (xy 130.8402 109.587503) + (xy 130.840198 109.587503) + (xy 130.831241 109.588043) + (xy 130.769587 109.610178) + (xy 130.76699 109.611077) + (xy 130.735226 109.621691) + (xy 130.704206 109.632056) + (xy 130.696833 109.637176) + (xy 130.672044 109.65439) + (xy 130.660494 109.66152) + (xy 129.891902 110.080544) + (xy 129.770376 110.146798) + (xy 129.767134 110.148505) + (xy 129.709038 110.17802) + (xy 129.702497 110.184169) + (xy 129.702496 110.18417) + (xy 129.682085 110.203359) + (xy 129.671167 110.212517) + (xy 129.641732 110.234496) + (xy 129.636337 110.241668) + (xy 129.636335 110.24167) + (xy 129.600569 110.289218) + (xy 129.599276 110.290906) + (xy 129.48762 110.434242) + (xy 129.207831 110.793417) + (xy 129.050367 110.995558) + (xy 129.033973 111.012697) + (xy 129.033128 111.013656) + (xy 129.026303 111.019478) + (xy 129.000351 111.059083) + (xy 128.994364 111.067452) + (xy 128.98816 111.075416) + (xy 128.981606 111.086876) + (xy 128.979848 111.089949) + (xy 128.975866 111.096447) + (xy 128.964961 111.113088) + (xy 128.962954 111.117515) + (xy 128.96109 111.121626) + (xy 128.955706 111.132156) + (xy 128.934155 111.169835) + (xy 128.931269 111.181884) + (xy 128.923496 111.204554) + (xy 128.614745 111.885614) + (xy 128.529932 112.072698) + (xy 128.529229 112.074221) + (xy 128.502583 112.130974) + (xy 128.502581 112.130981) + (xy 128.498769 112.1391) + (xy 128.497389 112.147964) + (xy 128.497388 112.147967) + (xy 128.493866 112.170589) + (xy 128.49034 112.186435) + (xy 128.483939 112.208413) + (xy 128.483938 112.208418) + (xy 128.481429 112.217034) + (xy 128.481439 112.22601) + (xy 128.48155 112.325687) + (xy 128.48155 114.078531) + (xy 128.478287 114.107021) + (xy 128.256745 115.061443) + (xy 128.246737 115.08924) + (xy 128.087863 115.407426) + (xy 127.838046 115.90775) + (xy 127.826873 115.930126) + (xy 127.798462 115.967469) + (xy 127.08075 116.613755) + (xy 127.064772 116.625979) + (xy 124.505799 118.277283) + (xy 124.497398 118.282253) + (xy 121.956632 119.655009) + (xy 121.425557 119.941944) + (xy 121.410878 119.948697) + (xy 118.173652 121.193256) + (xy 118.164666 121.196327) + (xy 116.521278 121.68968) + (xy 114.91813 122.170953) + (xy 114.827152 122.198265) + (xy 114.817929 122.200658) + (xy 111.411279 122.948063) + (xy 111.39655 122.95039) + (xy 108.0452 123.27807) + (xy 107.99756 123.282728) + (xy 107.985299 123.283326) + (xy 104.493876 123.283326) + (xy 104.481902 123.282756) + (xy 100.984128 122.948854) + (xy 100.974932 122.947633) + (xy 97.567924 122.366937) + (xy 97.552852 122.363403) + (xy 94.231032 121.365782) + (xy 94.222075 121.362721) + (xy 90.983858 120.118291) + (xy 90.969125 120.111511) + (xy 90.655538 119.941944) + (xy 87.894182 118.448788) + (xy 87.88706 118.44463) + (xy 86.278531 117.433213) + (xy 84.985005 116.619865) + (xy 84.970153 116.608932) + (xy 84.469807 116.180731) + (xy 84.449851 116.159133) + (xy 83.932445 115.447834) + (xy 83.879186 115.374616) + (xy 83.860671 115.337615) + (xy 83.770477 115.045035) + (xy 83.580941 114.430197) + (xy 83.57535 114.39308) + (xy 83.57535 112.954028) + (xy 83.575497 112.95182) + (xy 83.5761 112.949679) + (xy 83.575356 112.873778) + (xy 83.57535 112.872543) + (xy 83.57535 112.845387) + (xy 83.575103 112.843658) + (xy 83.57507 112.842853) + (xy 83.575051 112.842635) + (xy 83.575003 112.837766) + (xy 83.569754 112.806099) + (xy 83.569331 112.803357) + (xy 83.561203 112.7466) + (xy 83.561202 112.746598) + (xy 83.55993 112.737713) + (xy 83.558016 112.733504) + (xy 83.556936 112.728772) + (xy 83.551409 112.695425) + (xy 83.405771 111.816818) + (xy 83.404298 111.803716) + (xy 83.402504 111.773639) + (xy 83.40197 111.764679) + (xy 83.382264 111.70968) + (xy 83.380766 111.705238) + (xy 83.364322 111.653277) + (xy 83.364321 111.653276) + (xy 83.361614 111.644721) + (xy 83.356615 111.637271) + (xy 83.356612 111.637265) + (xy 83.336564 111.607388) + (xy 83.330527 111.597426) + (xy 82.843938 110.703585) + (xy 82.842382 110.700634) + (xy 82.815496 110.647972) + (xy 82.815495 110.647971) + (xy 82.811416 110.639981) + (xy 82.80526 110.633459) + (xy 82.805258 110.633456) + (xy 82.786342 110.613416) + (xy 82.776966 110.602253) + (xy 82.761048 110.580908) + (xy 82.755679 110.573708) + (xy 82.72006 110.54688) + (xy 82.701419 110.532839) + (xy 82.699993 110.531749) + (xy 81.993268 109.983488) + (xy 81.978261 109.969145) + (xy 81.97546 109.96667) + (xy 81.969645 109.959837) + (xy 81.962144 109.954909) + (xy 81.96214 109.954905) + (xy 81.928925 109.933081) + (xy 81.920883 109.927334) + (xy 81.918069 109.925151) + (xy 81.912388 109.920744) + (xy 81.908498 109.918529) + (xy 81.908493 109.918526) + (xy 81.903044 109.915424) + (xy 81.89909 109.913173) + (xy 81.892256 109.908989) + (xy 81.87611 109.89838) + (xy 81.871679 109.896365) + (xy 81.871674 109.896362) + (xy 81.866373 109.893951) + (xy 81.856202 109.888756) + (xy 81.825662 109.871369) + (xy 81.82566 109.871368) + (xy 81.817861 109.866928) + (xy 81.806967 109.864342) + (xy 81.783905 109.856445) + (xy 80.916332 109.461863) + (xy 80.914961 109.461229) + (xy 80.909871 109.458839) + (xy 80.84955 109.430519) + (xy 80.818448 109.425676) + (xy 80.802458 109.422108) + (xy 80.780851 109.415787) + (xy 80.78085 109.415787) + (xy 80.772236 109.413267) + (xy 80.763259 109.413266) + (xy 80.763258 109.413266) + (xy 80.62693 109.413252) + (xy 80.626579 109.413252) + (xy 80.626466 109.413285) + (xy 80.626257 109.4133) + (xy 78.910929 109.4133) + (xy 78.882619 109.410078) + (xy 78.872471 109.407738) + (xy 77.927143 109.189766) + (xy 77.899111 109.179688) + (xy 77.060006 108.760137) + (xy 77.022731 108.731763) + (xy 76.374995 108.012581) + (xy 76.362723 107.996536) + (xy 74.712638 105.437363) + (xy 74.707691 105.428998) + (xy 73.048141 102.358775) + (xy 73.041386 102.344102) + (xy 72.394656 100.663028) + (xy 72.35089 100.549266) + (xy 80.678 100.549266) + (xy 80.678337 100.555782) + (xy 80.688075 100.649632) + (xy 80.690968 100.663028) + (xy 80.741488 100.814453) + (xy 80.747653 100.827615) + (xy 80.831426 100.962992) + (xy 80.84046 100.97439) + (xy 80.953129 101.086863) + (xy 80.96454 101.095875) + (xy 81.100063 101.179412) + (xy 81.113241 101.185556) + (xy 81.264766 101.235815) + (xy 81.278132 101.238681) + (xy 81.37077 101.248172) + (xy 81.377185 101.2485) + (xy 81.388885 101.2485) + (xy 81.404124 101.244025) + (xy 81.405329 101.242635) + (xy 81.407 101.234952) + (xy 81.407 101.230385) + (xy 81.915 101.230385) + (xy 81.919475 101.245624) + (xy 81.920865 101.246829) + (xy 81.928548 101.2485) + (xy 81.944766 101.2485) + (xy 81.951282 101.248163) + (xy 82.045132 101.238425) + (xy 82.058528 101.235532) + (xy 82.209953 101.185012) + (xy 82.223115 101.178847) + (xy 82.358492 101.095074) + (xy 82.36989 101.08604) + (xy 82.482363 100.973371) + (xy 82.491375 100.96196) + (xy 82.574912 100.826437) + (xy 82.581056 100.813259) + (xy 82.631315 100.661734) + (xy 82.634181 100.648368) + (xy 82.643672 100.55573) + (xy 82.644 100.549315) + (xy 82.644 100.475115) + (xy 82.639525 100.459876) + (xy 82.638135 100.458671) + (xy 82.630452 100.457) + (xy 81.933115 100.457) + (xy 81.917876 100.461475) + (xy 81.916671 100.462865) + (xy 81.915 100.470548) + (xy 81.915 101.230385) + (xy 81.407 101.230385) + (xy 81.407 100.475115) + (xy 81.402525 100.459876) + (xy 81.401135 100.458671) + (xy 81.393452 100.457) + (xy 80.696115 100.457) + (xy 80.680876 100.461475) + (xy 80.679671 100.462865) + (xy 80.678 100.470548) + (xy 80.678 100.549266) + (xy 72.35089 100.549266) + (xy 71.795362 99.105255) + (xy 71.792274 99.096219) + (xy 71.792035 99.09542) + (xy 71.131716 96.893766) + (xy 72.1319 96.893766) + (xy 72.132237 96.900282) + (xy 72.141975 96.994132) + (xy 72.144868 97.007528) + (xy 72.195388 97.158953) + (xy 72.201553 97.172115) + (xy 72.285326 97.307492) + (xy 72.29436 97.31889) + (xy 72.407029 97.431363) + (xy 72.41844 97.440375) + (xy 72.553963 97.523912) + (xy 72.567141 97.530056) + (xy 72.718666 97.580315) + (xy 72.732032 97.583181) + (xy 72.82467 97.592672) + (xy 72.831085 97.593) + (xy 72.905285 97.593) + (xy 72.920524 97.588525) + (xy 72.921729 97.587135) + (xy 72.9234 97.579452) + (xy 72.9234 97.574885) + (xy 73.4314 97.574885) + (xy 73.435875 97.590124) + (xy 73.437265 97.591329) + (xy 73.444948 97.593) + (xy 73.523666 97.593) + (xy 73.530182 97.592663) + (xy 73.624032 97.582925) + (xy 73.637428 97.580032) + (xy 73.788853 97.529512) + (xy 73.802015 97.523347) + (xy 73.937392 97.439574) + (xy 73.948794 97.430536) + (xy 73.950467 97.428861) + (xy 73.951893 97.428081) + (xy 73.954527 97.425993) + (xy 73.954884 97.426444) + (xy 74.012749 97.394781) + (xy 74.083569 97.399784) + (xy 74.128654 97.428701) + (xy 74.130493 97.430536) + (xy 74.136897 97.436929) + (xy 74.28498 97.528209) + (xy 74.450091 97.582974) + (xy 74.456927 97.583674) + (xy 74.45693 97.583675) + (xy 74.50427 97.588525) + (xy 74.552828 97.5935) + (xy 75.251972 97.5935) + (xy 75.255218 97.593163) + (xy 75.255222 97.593163) + (xy 75.349135 97.583419) + (xy 75.349139 97.583418) + (xy 75.355993 97.582707) + (xy 75.362529 97.580526) + (xy 75.362531 97.580526) + (xy 75.495295 97.536232) + (xy 75.521007 97.527654) + (xy 75.668931 97.436116) + (xy 75.669227 97.435819) + (xy 75.732411 97.41025) + (xy 75.802175 97.423426) + (xy 75.833952 97.446539) + (xy 75.955162 97.567749) + (xy 75.959671 97.570906) + (xy 75.959673 97.570908) + (xy 75.991938 97.5935) + (xy 76.135546 97.694056) + (xy 76.335124 97.78712) + (xy 76.547829 97.844115) + (xy 76.7672 97.863307) + (xy 76.986571 97.844115) + (xy 77.199276 97.78712) + (xy 77.398854 97.694056) + (xy 77.542462 97.5935) + (xy 77.574727 97.570908) + (xy 77.574729 97.570906) + (xy 77.579238 97.567749) + (xy 77.734949 97.412038) + (xy 77.74353 97.399784) + (xy 77.858099 97.236162) + (xy 77.8581 97.23616) + (xy 77.861256 97.231653) + (xy 77.863579 97.226671) + (xy 77.863582 97.226666) + (xy 77.951995 97.037061) + (xy 77.95432 97.032076) + (xy 78.011315 96.819371) + (xy 78.030507 96.6) + (xy 80.383893 96.6) + (xy 80.403085 96.819371) + (xy 80.46008 97.032076) + (xy 80.462405 97.037061) + (xy 80.550818 97.226666) + (xy 80.550821 97.226671) + (xy 80.553144 97.231653) + (xy 80.5563 97.23616) + (xy 80.556301 97.236162) + (xy 80.670871 97.399784) + (xy 80.679451 97.412038) + (xy 80.819786 97.552373) + (xy 80.853812 97.614685) + (xy 80.848747 97.6855) + (xy 80.833683 97.712258) + (xy 80.834071 97.712497) + (xy 80.747364 97.853162) + (xy 80.742791 97.86058) + (xy 80.688026 98.025691) + (xy 80.6775 98.128428) + (xy 80.6775 98.827572) + (xy 80.688293 98.931593) + (xy 80.743346 99.096607) + (xy 80.834884 99.244531) + (xy 80.840065 99.249703) + (xy 80.842139 99.251773) + (xy 80.843105 99.253538) + (xy 80.844613 99.255441) + (xy 80.844287 99.255699) + (xy 80.876219 99.314054) + (xy 80.871218 99.384875) + (xy 80.842292 99.42997) + (xy 80.839636 99.432631) + (xy 80.830625 99.44404) + (xy 80.747088 99.579563) + (xy 80.740944 99.592741) + (xy 80.690685 99.744266) + (xy 80.687819 99.757632) + (xy 80.678328 99.85027) + (xy 80.678 99.856685) + (xy 80.678 99.930885) + (xy 80.682475 99.946124) + (xy 80.683865 99.947329) + (xy 80.691548 99.949) + (xy 82.625885 99.949) + (xy 82.641124 99.944525) + (xy 82.642329 99.943135) + (xy 82.644 99.935452) + (xy 82.644 99.856734) + (xy 82.643663 99.850218) + (xy 82.633925 99.756368) + (xy 82.631032 99.742972) + (xy 82.580512 99.591547) + (xy 82.574347 99.578385) + (xy 82.490574 99.443008) + (xy 82.481536 99.431606) + (xy 82.479861 99.429933) + (xy 82.479081 99.428507) + (xy 82.476993 99.425873) + (xy 82.477444 99.425516) + (xy 82.445781 99.367651) + (xy 82.450784 99.296831) + (xy 82.479701 99.251746) + (xy 82.482756 99.248685) + (xy 82.487929 99.243503) + (xy 82.558948 99.12829) + (xy 82.575369 99.10165) + (xy 82.57537 99.101648) + (xy 82.579209 99.09542) + (xy 82.633974 98.930309) + (xy 82.6445 98.827572) + (xy 82.6445 98.128428) + (xy 82.633707 98.024407) + (xy 82.578654 97.859393) + (xy 82.487116 97.711469) + (xy 82.481934 97.706296) + (xy 82.480371 97.704324) + (xy 82.453734 97.638514) + (xy 82.466905 97.56875) + (xy 82.490022 97.536965) + (xy 82.614949 97.412038) + (xy 82.62353 97.399784) + (xy 82.738099 97.236162) + (xy 82.7381 97.23616) + (xy 82.741256 97.231653) + (xy 82.743579 97.226671) + (xy 82.743582 97.226666) + (xy 82.831995 97.037061) + (xy 82.83432 97.032076) + (xy 82.891315 96.819371) + (xy 82.910507 96.6) + (xy 82.891315 96.380629) + (xy 82.83432 96.167924) + (xy 82.779776 96.050954) + (xy 82.743582 95.973334) + (xy 82.743579 95.973329) + (xy 82.741256 95.968347) + (xy 82.70288 95.91354) + (xy 82.618108 95.792473) + (xy 82.618106 95.79247) + (xy 82.614949 95.787962) + (xy 82.459238 95.632251) + (xy 82.454126 95.628671) + (xy 82.379959 95.576739) + (xy 82.278854 95.505944) + (xy 82.079276 95.41288) + (xy 81.866571 95.355885) + (xy 81.6472 95.336693) + (xy 81.427829 95.355885) + (xy 81.215124 95.41288) + (xy 81.172457 95.432776) + (xy 81.020534 95.503618) + (xy 81.020529 95.503621) + (xy 81.015547 95.505944) + (xy 81.01104 95.5091) + (xy 81.011038 95.509101) + (xy 80.839673 95.629092) + (xy 80.83967 95.629094) + (xy 80.835162 95.632251) + (xy 80.679451 95.787962) + (xy 80.676294 95.79247) + (xy 80.676292 95.792473) + (xy 80.59152 95.91354) + (xy 80.553144 95.968347) + (xy 80.550821 95.973329) + (xy 80.550818 95.973334) + (xy 80.514624 96.050954) + (xy 80.46008 96.167924) + (xy 80.403085 96.380629) + (xy 80.383893 96.6) + (xy 78.030507 96.6) + (xy 78.011315 96.380629) + (xy 77.95432 96.167924) + (xy 77.899776 96.050954) + (xy 77.863582 95.973334) + (xy 77.863579 95.973329) + (xy 77.861256 95.968347) + (xy 77.82288 95.91354) + (xy 77.738108 95.792473) + (xy 77.738106 95.79247) + (xy 77.734949 95.787962) + (xy 77.579238 95.632251) + (xy 77.574126 95.628671) + (xy 77.499959 95.576739) + (xy 77.398854 95.505944) + (xy 77.199276 95.41288) + (xy 76.986571 95.355885) + (xy 76.7672 95.336693) + (xy 76.547829 95.355885) + (xy 76.335124 95.41288) + (xy 76.292457 95.432776) + (xy 76.140534 95.503618) + (xy 76.140529 95.503621) + (xy 76.135547 95.505944) + (xy 76.13104 95.5091) + (xy 76.131038 95.509101) + (xy 75.959673 95.629092) + (xy 75.95967 95.629094) + (xy 75.955162 95.632251) + (xy 75.822738 95.764675) + (xy 75.760426 95.798701) + (xy 75.689611 95.793636) + (xy 75.667537 95.782845) + (xy 75.51982 95.691791) + (xy 75.354709 95.637026) + (xy 75.347873 95.636326) + (xy 75.34787 95.636325) + (xy 75.296374 95.631049) + (xy 75.251972 95.6265) + (xy 74.552828 95.6265) + (xy 74.549582 95.626837) + (xy 74.549578 95.626837) + (xy 74.455665 95.636581) + (xy 74.455661 95.636582) + (xy 74.448807 95.637293) + (xy 74.442271 95.639474) + (xy 74.442269 95.639474) + (xy 74.364617 95.665381) + (xy 74.283793 95.692346) + (xy 74.135869 95.783884) + (xy 74.130697 95.789065) + (xy 74.128627 95.791139) + (xy 74.126862 95.792105) + (xy 74.124959 95.793613) + (xy 74.124701 95.793287) + (xy 74.066346 95.825219) + (xy 73.995525 95.820218) + (xy 73.95043 95.791292) + (xy 73.947769 95.788636) + (xy 73.93636 95.779625) + (xy 73.800837 95.696088) + (xy 73.787659 95.689944) + (xy 73.636134 95.639685) + (xy 73.622768 95.636819) + (xy 73.53013 95.627328) + (xy 73.523715 95.627) + (xy 73.449515 95.627) + (xy 73.434276 95.631475) + (xy 73.433071 95.632865) + (xy 73.4314 95.640548) + (xy 73.4314 97.574885) + (xy 72.9234 97.574885) + (xy 72.9234 96.882115) + (xy 72.918925 96.866876) + (xy 72.917535 96.865671) + (xy 72.909852 96.864) + (xy 72.150015 96.864) + (xy 72.134776 96.868475) + (xy 72.133571 96.869865) + (xy 72.1319 96.877548) + (xy 72.1319 96.893766) + (xy 71.131716 96.893766) + (xy 70.964996 96.337885) + (xy 72.1319 96.337885) + (xy 72.136375 96.353124) + (xy 72.137765 96.354329) + (xy 72.145448 96.356) + (xy 72.905285 96.356) + (xy 72.920524 96.351525) + (xy 72.921729 96.350135) + (xy 72.9234 96.342452) + (xy 72.9234 95.645115) + (xy 72.918925 95.629876) + (xy 72.917535 95.628671) + (xy 72.909852 95.627) + (xy 72.831134 95.627) + (xy 72.824618 95.627337) + (xy 72.730768 95.637075) + (xy 72.717372 95.639968) + (xy 72.565947 95.690488) + (xy 72.552785 95.696653) + (xy 72.417408 95.780426) + (xy 72.40601 95.78946) + (xy 72.293537 95.902129) + (xy 72.284525 95.91354) + (xy 72.200988 96.049063) + (xy 72.194844 96.062241) + (xy 72.144585 96.213766) + (xy 72.141719 96.227132) + (xy 72.132228 96.31977) + (xy 72.1319 96.326185) + (xy 72.1319 96.337885) + (xy 70.964996 96.337885) + (xy 70.878373 96.049063) + (xy 70.791778 95.760335) + (xy 70.789402 95.751176) + (xy 70.076229 92.505142) + (xy 70.040624 92.343085) + (xy 70.038283 92.328264) + (xy 70.024453 92.186231) + (xy 69.927479 91.190366) + (xy 77.5667 91.190366) + (xy 77.567037 91.196882) + (xy 77.576775 91.290732) + (xy 77.579668 91.304128) + (xy 77.630188 91.455553) + (xy 77.636353 91.468715) + (xy 77.720126 91.604092) + (xy 77.72916 91.61549) + (xy 77.841829 91.727963) + (xy 77.85324 91.736975) + (xy 77.988763 91.820512) + (xy 78.001941 91.826656) + (xy 78.153466 91.876915) + (xy 78.166832 91.879781) + (xy 78.25947 91.889272) + (xy 78.265885 91.8896) + (xy 78.290085 91.8896) + (xy 78.305324 91.885125) + (xy 78.306529 91.883735) + (xy 78.3082 91.876052) + (xy 78.3082 91.178715) + (xy 78.303725 91.163476) + (xy 78.302335 91.162271) + (xy 78.294652 91.1606) + (xy 77.584815 91.1606) + (xy 77.569576 91.165075) + (xy 77.568371 91.166465) + (xy 77.5667 91.174148) + (xy 77.5667 91.190366) + (xy 69.927479 91.190366) + (xy 69.920365 91.11731) + (xy 69.933671 91.047572) + (xy 69.982568 90.996098) + (xy 70.051532 90.979231) + (xy 70.108772 90.99598) + (xy 70.111941 90.99781) + (xy 70.117279 91.001688) + (xy 70.123306 91.004371) + (xy 70.123307 91.004372) + (xy 70.12331 91.004373) + (xy 70.296544 91.081502) + (xy 70.392515 91.101901) + (xy 70.482028 91.120928) + (xy 70.482032 91.120928) + (xy 70.488485 91.1223) + (xy 70.684715 91.1223) + (xy 70.691168 91.120928) + (xy 70.691172 91.120928) + (xy 70.780685 91.101901) + (xy 70.876656 91.081502) + (xy 70.952864 91.047572) + (xy 71.049891 91.004373) + (xy 71.049893 91.004372) + (xy 71.055921 91.001688) + (xy 71.063615 90.996098) + (xy 71.20933 90.89023) + (xy 71.209332 90.890228) + (xy 71.214674 90.886347) + (xy 71.234806 90.863988) + (xy 71.295249 90.82675) + (xy 71.32844 90.8223) + (xy 76.966033 90.8223) + (xy 76.977216 90.822827) + (xy 76.984709 90.824502) + (xy 76.992635 90.824253) + (xy 76.992636 90.824253) + (xy 77.052786 90.822362) + (xy 77.056745 90.8223) + (xy 77.084656 90.8223) + (xy 77.088591 90.821803) + (xy 77.088656 90.821795) + (xy 77.100493 90.820862) + (xy 77.132751 90.819848) + (xy 77.13677 90.819722) + (xy 77.144689 90.819473) + (xy 77.164143 90.813821) + (xy 77.1835 90.809813) + (xy 77.19573 90.808268) + (xy 77.195731 90.808268) + (xy 77.203597 90.807274) + (xy 77.210968 90.804355) + (xy 77.21097 90.804355) + (xy 77.244712 90.790996) + (xy 77.255942 90.787151) + (xy 77.290783 90.777029) + (xy 77.290784 90.777029) + (xy 77.298393 90.774818) + (xy 77.305212 90.770785) + (xy 77.305217 90.770783) + (xy 77.315828 90.764507) + (xy 77.333576 90.755812) + (xy 77.352417 90.748352) + (xy 77.388187 90.722364) + (xy 77.398107 90.715848) + (xy 77.429335 90.69738) + (xy 77.429338 90.697378) + (xy 77.436162 90.693342) + (xy 77.446718 90.682786) + (xy 77.50903 90.64876) + (xy 77.562596 90.64876) + (xy 77.580248 90.6526) + (xy 78.6902 90.6526) + (xy 78.758321 90.672602) + (xy 78.804814 90.726258) + (xy 78.8162 90.7786) + (xy 78.8162 91.871485) + (xy 78.820675 91.886724) + (xy 78.822065 91.887929) + (xy 78.829748 91.8896) + (xy 78.858466 91.8896) + (xy 78.864982 91.889263) + (xy 78.958832 91.879525) + (xy 78.972228 91.876632) + (xy 79.123653 91.826112) + (xy 79.136815 91.819947) + (xy 79.272192 91.736174) + (xy 79.28359 91.72714) + (xy 79.385093 91.62546) + (xy 79.447376 91.591381) + (xy 79.518196 91.596384) + (xy 79.563283 91.625304) + (xy 79.671697 91.733529) + (xy 79.81978 91.824809) + (xy 79.984891 91.879574) + (xy 79.991727 91.880274) + (xy 79.99173 91.880275) + (xy 80.03907 91.885125) + (xy 80.087628 91.8901) + (xy 80.686772 91.8901) + (xy 80.690018 91.889763) + (xy 80.690022 91.889763) + (xy 80.783935 91.880019) + (xy 80.783939 91.880018) + (xy 80.790793 91.879307) + (xy 80.797329 91.877126) + (xy 80.797331 91.877126) + (xy 80.930095 91.832832) + (xy 80.955807 91.824254) + (xy 81.103731 91.732716) + (xy 81.109297 91.72714) + (xy 81.221458 91.614784) + (xy 81.221462 91.614779) + (xy 81.226629 91.609603) + (xy 81.317909 91.46152) + (xy 81.372674 91.296409) + (xy 81.3832 91.193672) + (xy 81.3832 90.619528) + (xy 81.382863 90.616278) + (xy 81.373119 90.522365) + (xy 81.373118 90.522361) + (xy 81.372407 90.515507) + (xy 81.317354 90.350493) + (xy 81.225816 90.202569) + (xy 81.220634 90.197396) + (xy 81.22063 90.197391) + (xy 81.116071 90.093015) + (xy 81.081991 90.030733) + (xy 81.079088 90.003842) + (xy 81.079088 89.166936) + (xy 81.09909 89.098815) + (xy 81.111446 89.082633) + (xy 81.184628 89.001356) + (xy 81.280115 88.835968) + (xy 81.33913 88.65434) + (xy 81.343996 88.608048) + (xy 81.358402 88.470977) + (xy 81.359092 88.464412) + (xy 81.358261 88.456509) + (xy 81.33982 88.281047) + (xy 81.33982 88.281045) + (xy 81.33913 88.274484) + (xy 81.280115 88.092856) + (xy 81.249656 88.040099) + (xy 81.232918 87.971105) + (xy 81.256138 87.904013) + (xy 81.311945 87.860126) + (xy 81.358775 87.8511) + (xy 83.553274 87.8511) + (xy 83.621395 87.871102) + (xy 83.642369 87.888004) + (xy 84.450995 88.696629) + (xy 84.48502 88.758942) + (xy 84.4879 88.785725) + (xy 84.4879 106.211757) + (xy 84.487163 106.225364) + (xy 84.483076 106.262988) + (xy 84.483613 106.269123) + (xy 84.48745 106.312988) + (xy 84.487779 106.317814) + (xy 84.4879 106.320286) + (xy 84.4879 106.323369) + (xy 84.488201 106.326437) + (xy 84.49209 106.366106) + (xy 84.492212 106.367419) + (xy 84.500313 106.460013) + (xy 84.5018 106.465132) + (xy 84.50232 106.470433) + (xy 84.529191 106.559434) + (xy 84.529526 106.560567) + (xy 84.548571 106.626117) + (xy 84.555491 106.649936) + (xy 84.557944 106.654668) + (xy 84.559484 106.659769) + (xy 84.562378 106.665212) + (xy 84.603131 106.74186) + (xy 84.603743 106.743026) + (xy 84.646508 106.825526) + (xy 84.649831 106.829689) + (xy 84.652334 106.834396) + (xy 84.711155 106.906518) + (xy 84.711846 106.907374) + (xy 84.743138 106.946573) + (xy 84.745642 106.949077) + (xy 84.746284 106.949795) + (xy 84.749985 106.954128) + (xy 84.777335 106.987662) + (xy 84.782082 106.991589) + (xy 84.782084 106.991591) + (xy 84.812662 107.016887) + (xy 84.821442 107.024877) + (xy 86.136545 108.339979) + (xy 86.145665 108.350144) + (xy 86.146811 108.35157) + (xy 86.173892 108.417199) + (xy 86.161193 108.48705) + (xy 86.112745 108.538948) + (xy 86.048596 108.5565) + (xy 85.977729 108.5565) + (xy 85.975593 108.556646) + (xy 85.975582 108.556646) + (xy 85.767452 108.570835) + (xy 85.767446 108.570836) + (xy 85.763175 108.571127) + (xy 85.75898 108.571996) + (xy 85.758978 108.571996) + (xy 85.622417 108.600276) + (xy 85.481658 108.629426) + (xy 85.210657 108.725393) + (xy 84.955188 108.85725) + (xy 84.951687 108.859711) + (xy 84.951683 108.859713) + (xy 84.941594 108.866804) + (xy 84.719977 109.022559) + (xy 84.70758 109.034079) + (xy 84.514295 109.213691) + (xy 84.509378 109.21826) + (xy 84.327287 109.440732) + (xy 84.177073 109.685858) + (xy 84.175347 109.689791) + (xy 84.175346 109.689792) + (xy 84.074939 109.918526) + (xy 84.061517 109.949102) + (xy 84.060342 109.953229) + (xy 84.060341 109.95323) + (xy 84.042187 110.01696) + (xy 83.982756 110.225594) + (xy 83.942249 110.510216) + (xy 83.942227 110.514505) + (xy 83.942226 110.514512) + (xy 83.940772 110.792094) + (xy 83.940743 110.797703) + (xy 83.978268 111.082734) + (xy 84.054129 111.360036) + (xy 84.055813 111.363984) + (xy 84.161696 111.612221) + (xy 84.166923 111.624476) + (xy 84.180882 111.647799) + (xy 84.282039 111.81682) + (xy 84.314561 111.871161) + (xy 84.494313 112.095528) + (xy 84.702851 112.293423) + (xy 84.936317 112.461186) + (xy 84.940112 112.463195) + (xy 84.940113 112.463196) + (xy 84.961869 112.474715) + (xy 85.190392 112.595712) + (xy 85.460373 112.694511) + (xy 85.741264 112.755755) + (xy 85.769841 112.758004) + (xy 85.964282 112.773307) + (xy 85.964291 112.773307) + (xy 85.966739 112.7735) + (xy 86.122271 112.7735) + (xy 86.124407 112.773354) + (xy 86.124418 112.773354) + (xy 86.332548 112.759165) + (xy 86.332554 112.759164) + (xy 86.336825 112.758873) + (xy 86.34102 112.758004) + (xy 86.341022 112.758004) + (xy 86.482178 112.728772) + (xy 86.618342 112.700574) + (xy 86.889343 112.604607) + (xy 87.144812 112.47275) + (xy 87.148313 112.470289) + (xy 87.148317 112.470287) + (xy 87.353862 112.325827) + (xy 87.380023 112.307441) + (xy 87.590622 112.11174) + (xy 87.772713 111.889268) + (xy 87.922927 111.644142) + (xy 87.925787 111.637628) + (xy 88.036757 111.38483) + (xy 88.038483 111.380898) + (xy 88.117244 111.104406) + (xy 88.157751 110.819784) + (xy 88.157845 110.801951) + (xy 88.159235 110.536583) + (xy 88.159235 110.536576) + (xy 88.159257 110.532297) + (xy 88.146178 110.432948) + (xy 88.122292 110.251522) + (xy 88.121732 110.247266) + (xy 88.109721 110.203359) + (xy 88.085989 110.116611) + (xy 88.045871 109.969964) + (xy 88.030139 109.933081) + (xy 87.934763 109.709476) + (xy 87.934761 109.709472) + (xy 87.933077 109.705524) + (xy 87.850691 109.567867) + (xy 87.787643 109.462521) + (xy 87.78764 109.462517) + (xy 87.785439 109.458839) + (xy 87.605687 109.234472) + (xy 87.397149 109.036577) + (xy 87.21741 108.907421) + (xy 87.173764 108.851428) + (xy 87.167318 108.780724) + (xy 87.200121 108.71776) + (xy 87.261758 108.682526) + (xy 87.290938 108.6791) + (xy 124.640261 108.6791) + (xy 124.708382 108.699102) + (xy 124.754875 108.752758) + (xy 124.764979 108.823032) + (xy 124.735485 108.887612) + (xy 124.712712 108.908187) + (xy 124.549977 109.022559) + (xy 124.53758 109.034079) + (xy 124.344295 109.213691) + (xy 124.339378 109.21826) + (xy 124.157287 109.440732) + (xy 124.007073 109.685858) + (xy 124.005347 109.689791) + (xy 124.005346 109.689792) + (xy 123.904939 109.918526) + (xy 123.891517 109.949102) + (xy 123.890342 109.953229) + (xy 123.890341 109.95323) + (xy 123.872187 110.01696) + (xy 123.812756 110.225594) + (xy 123.772249 110.510216) + (xy 123.772227 110.514505) + (xy 123.772226 110.514512) + (xy 123.770772 110.792094) + (xy 123.770743 110.797703) + (xy 123.808268 111.082734) + (xy 123.884129 111.360036) + (xy 123.885813 111.363984) + (xy 123.991696 111.612221) + (xy 123.996923 111.624476) + (xy 124.010882 111.647799) + (xy 124.112039 111.81682) + (xy 124.144561 111.871161) + (xy 124.324313 112.095528) + (xy 124.532851 112.293423) + (xy 124.766317 112.461186) + (xy 124.770112 112.463195) + (xy 124.770113 112.463196) + (xy 124.791869 112.474715) + (xy 125.020392 112.595712) + (xy 125.290373 112.694511) + (xy 125.571264 112.755755) + (xy 125.599841 112.758004) + (xy 125.794282 112.773307) + (xy 125.794291 112.773307) + (xy 125.796739 112.7735) + (xy 125.952271 112.7735) + (xy 125.954407 112.773354) + (xy 125.954418 112.773354) + (xy 126.162548 112.759165) + (xy 126.162554 112.759164) + (xy 126.166825 112.758873) + (xy 126.17102 112.758004) + (xy 126.171022 112.758004) + (xy 126.312178 112.728772) + (xy 126.448342 112.700574) + (xy 126.719343 112.604607) + (xy 126.974812 112.47275) + (xy 126.978313 112.470289) + (xy 126.978317 112.470287) + (xy 127.183862 112.325827) + (xy 127.210023 112.307441) + (xy 127.420622 112.11174) + (xy 127.602713 111.889268) + (xy 127.752927 111.644142) + (xy 127.755787 111.637628) + (xy 127.866757 111.38483) + (xy 127.868483 111.380898) + (xy 127.947244 111.104406) + (xy 127.987751 110.819784) + (xy 127.987845 110.801951) + (xy 127.989235 110.536583) + (xy 127.989235 110.536576) + (xy 127.989257 110.532297) + (xy 127.976178 110.432948) + (xy 127.952292 110.251522) + (xy 127.951732 110.247266) + (xy 127.939721 110.203359) + (xy 127.915989 110.116611) + (xy 127.875871 109.969964) + (xy 127.860139 109.933081) + (xy 127.764763 109.709476) + (xy 127.764761 109.709472) + (xy 127.763077 109.705524) + (xy 127.680691 109.567867) + (xy 127.617643 109.462521) + (xy 127.61764 109.462517) + (xy 127.615439 109.458839) + (xy 127.435687 109.234472) + (xy 127.227149 109.036577) + (xy 126.993683 108.868814) + (xy 126.971843 108.85725) + (xy 126.82731 108.780724) + (xy 126.739608 108.734288) + (xy 126.505239 108.648521) + (xy 126.473658 108.636964) + (xy 126.473656 108.636963) + (xy 126.469627 108.635489) + (xy 126.188736 108.574245) + (xy 126.157685 108.571801) + (xy 125.965718 108.556693) + (xy 125.965709 108.556693) + (xy 125.963261 108.5565) + (xy 125.812525 108.5565) + (xy 125.744404 108.536498) + (xy 125.697911 108.482842) + (xy 125.687807 108.412568) + (xy 125.717301 108.347988) + (xy 125.72343 108.341405) + (xy 129.345779 104.719055) + (xy 129.355922 104.709953) + (xy 129.380618 104.690097) + (xy 129.385425 104.686232) + (xy 129.417692 104.647778) + (xy 129.420873 104.64413) + (xy 129.422517 104.642317) + (xy 129.424709 104.640125) + (xy 129.45198 104.606924) + (xy 129.452762 104.605982) + (xy 129.508593 104.539447) + (xy 129.508595 104.539444) + (xy 129.512554 104.534726) + (xy 129.515123 104.530053) + (xy 129.518503 104.525938) + (xy 129.562428 104.44402) + (xy 129.563057 104.442862) + (xy 129.604865 104.366812) + (xy 129.604865 104.366811) + (xy 129.607833 104.361413) + (xy 129.609444 104.356335) + (xy 129.611963 104.351637) + (xy 129.639153 104.262702) + (xy 129.639536 104.261472) + (xy 129.665771 104.17877) + (xy 129.667635 104.172894) + (xy 129.668228 104.167603) + (xy 129.669788 104.162502) + (xy 129.679195 104.069889) + (xy 129.679315 104.068769) + (xy 129.6849 104.018973) + (xy 129.6849 104.015444) + (xy 129.684955 104.014461) + (xy 129.685404 104.008756) + (xy 129.689152 103.971864) + (xy 129.689152 103.971861) + (xy 129.689774 103.965737) + (xy 129.685459 103.920088) + (xy 129.6849 103.908231) + (xy 129.6849 90.458534) + (xy 131.9915 90.458534) + (xy 131.998255 90.520716) + (xy 132.049385 90.657105) + (xy 132.136739 90.773661) + (xy 132.253295 90.861015) + (xy 132.389684 90.912145) + (xy 132.451866 90.9189) + (xy 134.248134 90.9189) + (xy 134.310316 90.912145) + (xy 134.446705 90.861015) + (xy 134.563261 90.773661) + (xy 134.650615 90.657105) + (xy 134.701745 90.520716) + (xy 134.7085 90.458534) + (xy 134.7085 90.455069) + (xy 137.275201 90.455069) + (xy 137.275571 90.46189) + (xy 137.281095 90.512752) + (xy 137.284721 90.528004) + (xy 137.329876 90.648454) + (xy 137.338414 90.664049) + (xy 137.414915 90.766124) + (xy 137.427476 90.778685) + (xy 137.529551 90.855186) + (xy 137.545146 90.863724) + (xy 137.665594 90.908878) + (xy 137.680849 90.912505) + (xy 137.731714 90.918031) + (xy 137.738528 90.9184) + (xy 138.361085 90.9184) + (xy 138.376324 90.913925) + (xy 138.377529 90.912535) + (xy 138.3792 90.904852) + (xy 138.3792 90.900284) + (xy 138.8872 90.900284) + (xy 138.891675 90.915523) + (xy 138.893065 90.916728) + (xy 138.900748 90.918399) + (xy 139.527869 90.918399) + (xy 139.53469 90.918029) + (xy 139.585552 90.912505) + (xy 139.600804 90.908879) + (xy 139.721254 90.863724) + (xy 139.736849 90.855186) + (xy 139.838924 90.778685) + (xy 139.851485 90.766124) + (xy 139.927986 90.664049) + (xy 139.936524 90.648454) + (xy 139.981678 90.528006) + (xy 139.985305 90.512751) + (xy 139.990831 90.461886) + (xy 139.9912 90.455072) + (xy 139.9912 89.832515) + (xy 139.986725 89.817276) + (xy 139.985335 89.816071) + (xy 139.977652 89.8144) + (xy 138.905315 89.8144) + (xy 138.890076 89.818875) + (xy 138.888871 89.820265) + (xy 138.8872 89.827948) + (xy 138.8872 90.900284) + (xy 138.3792 90.900284) + (xy 138.3792 89.832515) + (xy 138.374725 89.817276) + (xy 138.373335 89.816071) + (xy 138.365652 89.8144) + (xy 137.293316 89.8144) + (xy 137.278077 89.818875) + (xy 137.276872 89.820265) + (xy 137.275201 89.827948) + (xy 137.275201 90.455069) + (xy 134.7085 90.455069) + (xy 134.7085 89.288285) + (xy 137.2752 89.288285) + (xy 137.279675 89.303524) + (xy 137.281065 89.304729) + (xy 137.288748 89.3064) + (xy 138.361085 89.3064) + (xy 138.376324 89.301925) + (xy 138.377529 89.300535) + (xy 138.3792 89.292852) + (xy 138.3792 89.288285) + (xy 138.8872 89.288285) + (xy 138.891675 89.303524) + (xy 138.893065 89.304729) + (xy 138.900748 89.3064) + (xy 139.973084 89.3064) + (xy 139.988323 89.301925) + (xy 139.989528 89.300535) + (xy 139.991199 89.292852) + (xy 139.991199 88.665731) + (xy 139.990829 88.65891) + (xy 139.985305 88.608048) + (xy 139.981679 88.592796) + (xy 139.936524 88.472346) + (xy 139.927986 88.456751) + (xy 139.851485 88.354676) + (xy 139.838924 88.342115) + (xy 139.736849 88.265614) + (xy 139.721254 88.257076) + (xy 139.600806 88.211922) + (xy 139.585551 88.208295) + (xy 139.534686 88.202769) + (xy 139.527872 88.2024) + (xy 138.905315 88.2024) + (xy 138.890076 88.206875) + (xy 138.888871 88.208265) + (xy 138.8872 88.215948) + (xy 138.8872 89.288285) + (xy 138.3792 89.288285) + (xy 138.3792 88.220516) + (xy 138.374725 88.205277) + (xy 138.373335 88.204072) + (xy 138.365652 88.202401) + (xy 137.738531 88.202401) + (xy 137.73171 88.202771) + (xy 137.680848 88.208295) + (xy 137.665596 88.211921) + (xy 137.545146 88.257076) + (xy 137.529551 88.265614) + (xy 137.427476 88.342115) + (xy 137.414915 88.354676) + (xy 137.338414 88.456751) + (xy 137.329876 88.472346) + (xy 137.284722 88.592794) + (xy 137.281095 88.608049) + (xy 137.275569 88.658914) + (xy 137.2752 88.665728) + (xy 137.2752 89.288285) + (xy 134.7085 89.288285) + (xy 134.7085 88.662266) + (xy 134.701745 88.600084) + (xy 134.650615 88.463695) + (xy 134.563261 88.347139) + (xy 134.446705 88.259785) + (xy 134.310316 88.208655) + (xy 134.248134 88.2019) + (xy 132.451866 88.2019) + (xy 132.389684 88.208655) + (xy 132.253295 88.259785) + (xy 132.136739 88.347139) + (xy 132.049385 88.463695) + (xy 131.998255 88.600084) + (xy 131.9915 88.662266) + (xy 131.9915 90.458534) + (xy 129.6849 90.458534) + (xy 129.6849 87.744325) + (xy 129.704902 87.676204) + (xy 129.721805 87.65523) + (xy 131.430065 85.946969) + (xy 131.478658 85.916751) + (xy 131.516799 85.903804) + (xy 131.55951 85.879885) + (xy 131.594115 85.860505) + (xy 131.694551 85.804258) + (xy 131.851186 85.673986) + (xy 131.981458 85.517351) + (xy 132.05806 85.380569) + (xy 132.07818 85.344642) + (xy 132.078181 85.34464) + (xy 132.081004 85.339599) + (xy 132.08286 85.334132) + (xy 132.082862 85.334127) + (xy 132.144634 85.152152) + (xy 132.144635 85.152147) + (xy 132.14649 85.146683) + (xy 132.175723 84.945063) + (xy 132.177249 84.8868) + (xy 132.163062 84.732402) + (xy 132.159137 84.68968) + (xy 132.159136 84.689677) + (xy 132.158608 84.683926) + (xy 132.15704 84.678366) + (xy 132.104875 84.493406) + (xy 132.104874 84.493404) + (xy 132.103307 84.487847) + (xy 132.089959 84.460778) + (xy 132.015756 84.31031) + (xy 132.013201 84.305129) + (xy 132.000124 84.287616) + (xy 131.894758 84.146515) + (xy 131.894758 84.146514) + (xy 131.891305 84.141891) + (xy 131.771578 84.031216) + (xy 131.745943 84.007519) + (xy 131.74594 84.007517) + (xy 131.741703 84.0036) + (xy 131.631097 83.933813) + (xy 131.574288 83.897969) + (xy 131.574283 83.897967) + (xy 131.569404 83.894888) + (xy 131.38018 83.819395) + (xy 131.180366 83.779649) + (xy 131.174592 83.779573) + (xy 131.174588 83.779573) + (xy 131.071452 83.778224) + (xy 130.976655 83.776983) + (xy 130.970958 83.777962) + (xy 130.970957 83.777962) + (xy 130.795418 83.808125) + (xy 130.77587 83.811484) + (xy 130.584734 83.881998) + (xy 130.579773 83.88495) + (xy 130.579772 83.88495) + (xy 130.505718 83.929008) + (xy 130.409649 83.986163) + (xy 130.256478 84.12049) + (xy 130.252911 84.125015) + (xy 130.252906 84.12502) + (xy 130.200546 84.191439) + (xy 130.130351 84.280481) + (xy 130.127662 84.285592) + (xy 130.12766 84.285595) + (xy 130.095279 84.347142) + (xy 130.035492 84.460778) + (xy 130.031978 84.472096) + (xy 130.000741 84.523824) + (xy 128.007021 86.517545) + (xy 127.996878 86.526647) + (xy 127.967375 86.550368) + (xy 127.963408 86.555096) + (xy 127.935109 86.588821) + (xy 127.931928 86.592469) + (xy 127.930285 86.594281) + (xy 127.928091 86.596475) + (xy 127.900758 86.629749) + (xy 127.900096 86.630547) + (xy 127.840246 86.701874) + (xy 127.837678 86.706544) + (xy 127.834297 86.710661) + (xy 127.818287 86.74052) + (xy 127.790423 86.792486) + (xy 127.789794 86.793645) + (xy 127.747938 86.869781) + (xy 127.747935 86.869789) + (xy 127.744967 86.875187) + (xy 127.743355 86.880269) + (xy 127.740838 86.884963) + (xy 127.713638 86.973931) + (xy 127.713318 86.974959) + (xy 127.685165 87.063706) + (xy 127.684571 87.069002) + (xy 127.683013 87.074098) + (xy 127.678117 87.1223) + (xy 127.673618 87.166587) + (xy 127.673489 87.167793) + (xy 127.6679 87.217627) + (xy 127.6679 87.221154) + (xy 127.667845 87.222139) + (xy 127.667398 87.227819) + (xy 127.663026 87.270862) + (xy 127.663606 87.276993) + (xy 127.667341 87.316509) + (xy 127.6679 87.328367) + (xy 127.6679 103.492276) + (xy 127.647898 103.560397) + (xy 127.630995 103.581371) + (xy 125.993155 105.219211) + (xy 125.930843 105.253237) + (xy 125.860028 105.248172) + (xy 125.803192 105.205625) + (xy 125.779545 105.143829) + (xy 125.77974 105.140223) + (xy 125.777688 105.131481) + (xy 125.776941 105.123048) + (xy 125.77645 105.111934) + (xy 125.77645 73.135734) + (xy 126.2511 73.135734) + (xy 126.257855 73.197916) + (xy 126.308985 73.334305) + (xy 126.396339 73.450861) + (xy 126.512895 73.538215) + (xy 126.649284 73.589345) + (xy 126.711466 73.5961) + (xy 128.507734 73.5961) + (xy 128.569916 73.589345) + (xy 128.706305 73.538215) + (xy 128.822861 73.450861) + (xy 128.910215 73.334305) + (xy 128.961345 73.197916) + (xy 128.9681 73.135734) + (xy 128.9681 71.339466) + (xy 128.961345 71.277284) + (xy 128.910215 71.140895) + (xy 128.822861 71.024339) + (xy 128.706305 70.936985) + (xy 128.569916 70.885855) + (xy 128.507734 70.8791) + (xy 126.711466 70.8791) + (xy 126.649284 70.885855) + (xy 126.512895 70.936985) + (xy 126.396339 71.024339) + (xy 126.308985 71.140895) + (xy 126.257855 71.277284) + (xy 126.2511 71.339466) + (xy 126.2511 73.135734) + (xy 125.77645 73.135734) + (xy 125.77645 68.774636) + (xy 125.777351 68.759596) + (xy 125.780475 68.733608) + (xy 125.781547 68.724694) + (xy 125.770772 68.659917) + (xy 125.770343 68.657149) + (xy 125.762303 68.601) + (xy 125.762302 68.600998) + (xy 125.76103 68.592113) + (xy 125.744849 68.556525) + (xy 125.73992 68.543928) + (xy 125.717027 68.474682) + (xy 125.604957 68.135706) + (xy 125.60312 68.128874) + (xy 125.602733 68.122797) + (xy 125.599672 68.11436) + (xy 125.599671 68.114357) + (xy 125.580352 68.061116) + (xy 125.579164 68.057689) + (xy 125.57258 68.037773) + (xy 125.572574 68.037758) + (xy 125.571171 68.033515) + (xy 125.569177 68.029505) + (xy 125.567696 68.025908) + (xy 125.56577 68.020932) + (xy 125.556109 67.994309) + (xy 125.553049 67.985875) + (xy 125.542098 67.970936) + (xy 125.530904 67.952557) + (xy 125.526728 67.944161) + (xy 125.522731 67.936124) + (xy 125.497849 67.909202) + (xy 125.49282 67.903101) + (xy 125.48976 67.899539) + (xy 125.486881 67.895612) + (xy 125.468499 67.87729) + (xy 125.464917 67.87357) + (xy 125.429962 67.835749) + (xy 125.42996 67.835747) + (xy 125.423868 67.829156) + (xy 125.416672 67.82484) + (xy 125.408421 67.81741) + (xy 125.392875 67.801914) + (xy 125.246514 67.656033) + (xy 125.067162 67.477269) + (xy 125.055658 67.464088) + (xy 125.055498 67.463877) + (xy 125.03822 67.441057) + (xy 125.031012 67.43571) + (xy 125.03101 67.435708) + (xy 124.981473 67.398962) + (xy 124.981141 67.398714) + (xy 124.92978 67.360352) + (xy 124.92275 67.355101) + (xy 124.921937 67.354798) + (xy 124.921235 67.354277) + (xy 124.851796 67.328634) + (xy 124.851411 67.328491) + (xy 124.794686 67.307332) + (xy 124.794682 67.307331) + (xy 124.786277 67.304196) + (xy 124.760309 67.302309) + (xy 124.75359 67.301821) + (xy 124.737777 67.299658) + (xy 124.424308 67.236348) + (xy 124.412415 67.233337) + (xy 124.412072 67.233232) + (xy 124.40395 67.229419) + (xy 124.395085 67.228039) + (xy 124.395083 67.228038) + (xy 124.368344 67.223875) + (xy 124.345794 67.220364) + (xy 124.340283 67.219379) + (xy 124.318568 67.214993) + (xy 124.314092 67.214738) + (xy 124.314088 67.214737) + (xy 124.313478 67.214702) + (xy 124.313219 67.214688) + (xy 124.301026 67.213393) + (xy 124.298177 67.212949) + (xy 124.29817 67.212948) + (xy 124.293364 67.2122) + (xy 124.273258 67.2122) + (xy 124.266074 67.211995) + (xy 124.261134 67.211713) + (xy 124.209973 67.208791) + (xy 124.201229 67.210815) + (xy 124.192281 67.211579) + (xy 124.192223 67.210902) + (xy 124.180851 67.2122) + (xy 114.748992 67.2122) + (xy 114.680871 67.192198) + (xy 114.634378 67.138542) + (xy 114.624274 67.068268) + (xy 114.653768 67.003688) + (xy 114.696073 66.974261) + (xy 114.695425 66.973077) + (xy 114.703297 66.968767) + (xy 114.711705 66.965615) + (xy 114.828261 66.878261) + (xy 114.915615 66.761705) + (xy 114.966745 66.625316) + (xy 114.9735 66.563134) + (xy 114.9735 65.616866) + (xy 114.966745 65.554684) + (xy 114.915615 65.418295) + (xy 114.828261 65.301739) + (xy 114.711705 65.214385) + (xy 114.575316 65.163255) + (xy 114.513134 65.1565) + (xy 113.566866 65.1565) + (xy 113.504684 65.163255) + (xy 113.368295 65.214385) + (xy 113.251739 65.301739) + (xy 113.164385 65.418295) + (xy 113.113255 65.554684) + (xy 113.112402 65.56254) + (xy 113.112083 65.56388) + (xy 113.076865 65.625527) + (xy 113.01391 65.658347) + (xy 112.943205 65.651921) + (xy 112.887198 65.608289) + (xy 112.8635 65.534734) + (xy 112.8635 64.856866) + (xy 112.856745 64.794684) + (xy 112.805615 64.658295) + (xy 112.718261 64.541739) + (xy 112.613935 64.463551) + (xy 112.57142 64.406692) + (xy 112.5635 64.362725) + (xy 112.5635 63.956525) + (xy 112.567457 63.925196) + (xy 112.5713 63.91023) + (xy 112.5713 63.889976) + (xy 112.572851 63.870265) + (xy 112.57478 63.858086) + (xy 112.57602 63.850257) + (xy 112.571859 63.806238) + (xy 112.5713 63.794381) + (xy 112.5713 63.654967) + (xy 112.571827 63.643784) + (xy 112.573502 63.636291) + (xy 112.572715 63.611233) + (xy 112.571362 63.568201) + (xy 112.5713 63.564243) + (xy 112.5713 63.536344) + (xy 112.570796 63.532353) + (xy 112.569863 63.520511) + (xy 112.569533 63.509994) + (xy 112.568474 63.476311) + (xy 112.566262 63.468697) + (xy 112.566261 63.468692) + (xy 112.562823 63.456859) + (xy 112.558812 63.437495) + (xy 112.557267 63.425264) + (xy 112.556274 63.417403) + (xy 112.553357 63.410036) + (xy 112.553356 63.410031) + (xy 112.539998 63.376292) + (xy 112.536154 63.365065) + (xy 112.534015 63.357703) + (xy 123.770743 63.357703) + (xy 123.771302 63.361947) + (xy 123.771302 63.361951) + (xy 123.781248 63.437495) + (xy 123.808268 63.642734) + (xy 123.809401 63.646874) + (xy 123.809401 63.646876) + (xy 123.82441 63.701739) + (xy 123.884129 63.920036) + (xy 123.885813 63.923984) + (xy 123.978529 64.141351) + (xy 123.996923 64.184476) + (xy 124.029133 64.238295) + (xy 124.138534 64.42109) + (xy 124.144561 64.431161) + (xy 124.324313 64.655528) + (xy 124.408297 64.735226) + (xy 124.526693 64.847579) + (xy 124.532851 64.853423) + (xy 124.766317 65.021186) + (xy 124.770112 65.023195) + (xy 124.770113 65.023196) + (xy 124.791869 65.034715) + (xy 125.020392 65.155712) + (xy 125.086374 65.179858) + (xy 125.275016 65.248891) + (xy 125.290373 65.254511) + (xy 125.571264 65.315755) + (xy 125.599841 65.318004) + (xy 125.794282 65.333307) + (xy 125.794291 65.333307) + (xy 125.796739 65.3335) + (xy 125.952271 65.3335) + (xy 125.954407 65.333354) + (xy 125.954418 65.333354) + (xy 126.162548 65.319165) + (xy 126.162554 65.319164) + (xy 126.166825 65.318873) + (xy 126.17102 65.318004) + (xy 126.171022 65.318004) + (xy 126.33695 65.283642) + (xy 126.448342 65.260574) + (xy 126.719343 65.164607) + (xy 126.894891 65.074) + (xy 126.971005 65.034715) + (xy 126.971006 65.034715) + (xy 126.974812 65.03275) + (xy 126.978313 65.030289) + (xy 126.978317 65.030287) + (xy 127.137575 64.918358) + (xy 127.210023 64.867441) + (xy 127.352303 64.735226) + (xy 127.417479 64.674661) + (xy 127.417481 64.674658) + (xy 127.420622 64.67174) + (xy 127.602713 64.449268) + (xy 127.752927 64.204142) + (xy 127.789542 64.120731) + (xy 127.866758 63.944828) + (xy 127.866759 63.944826) + (xy 127.868483 63.940898) + (xy 127.892607 63.856212) + (xy 127.946068 63.668534) + (xy 127.947244 63.664406) + (xy 127.987751 63.379784) + (xy 127.987799 63.370772) + (xy 127.989235 63.096583) + (xy 127.989235 63.096576) + (xy 127.989257 63.092297) + (xy 127.979436 63.017695) + (xy 127.955976 62.839505) + (xy 127.951732 62.807266) + (xy 127.949776 62.800114) + (xy 127.916674 62.679115) + (xy 127.875871 62.529964) + (xy 127.852347 62.474813) + (xy 127.764763 62.269476) + (xy 127.764761 62.269472) + (xy 127.763077 62.265524) + (xy 127.615439 62.018839) + (xy 127.435687 61.794472) + (xy 127.227149 61.596577) + (xy 126.993683 61.428814) + (xy 126.971843 61.41725) + (xy 126.941612 61.401244) + (xy 126.739608 61.294288) + (xy 126.527627 61.216714) + (xy 126.473658 61.196964) + (xy 126.473656 61.196963) + (xy 126.469627 61.195489) + (xy 126.188736 61.134245) + (xy 126.157685 61.131801) + (xy 125.965718 61.116693) + (xy 125.965709 61.116693) + (xy 125.963261 61.1165) + (xy 125.807729 61.1165) + (xy 125.805593 61.116646) + (xy 125.805582 61.116646) + (xy 125.597452 61.130835) + (xy 125.597446 61.130836) + (xy 125.593175 61.131127) + (xy 125.58898 61.131996) + (xy 125.588978 61.131996) + (xy 125.544162 61.141277) + (xy 125.311658 61.189426) + (xy 125.040657 61.285393) + (xy 124.785188 61.41725) + (xy 124.781687 61.419711) + (xy 124.781683 61.419713) + (xy 124.72134 61.462123) + (xy 124.549977 61.582559) + (xy 124.531717 61.599527) + (xy 124.34414 61.773835) + (xy 124.339378 61.77826) + (xy 124.157287 62.000732) + (xy 124.007073 62.245858) + (xy 124.005347 62.249791) + (xy 124.005346 62.249792) + (xy 123.904252 62.48009) + (xy 123.891517 62.509102) + (xy 123.890342 62.513229) + (xy 123.890341 62.51323) + (xy 123.880521 62.547704) + (xy 123.812756 62.785594) + (xy 123.772249 63.070216) + (xy 123.772227 63.074505) + (xy 123.772226 63.074512) + (xy 123.770887 63.330222) + (xy 123.770743 63.357703) + (xy 112.534015 63.357703) + (xy 112.52603 63.330222) + (xy 112.523818 63.322607) + (xy 112.513507 63.305172) + (xy 112.504812 63.287424) + (xy 112.497352 63.268583) + (xy 112.48665 63.253852) + (xy 112.471364 63.232813) + (xy 112.464848 63.222893) + (xy 112.44638 63.191665) + (xy 112.446378 63.191662) + (xy 112.442342 63.184838) + (xy 112.428021 63.170517) + (xy 112.41518 63.155483) + (xy 112.407931 63.145506) + (xy 112.403272 63.139093) + (xy 112.369195 63.110902) + (xy 112.360416 63.102912) + (xy 111.034352 61.776847) + (xy 111.026812 61.768561) + (xy 111.0227 61.762082) + (xy 110.973048 61.715456) + (xy 110.970207 61.712702) + (xy 110.95047 61.692965) + (xy 110.947273 61.690485) + (xy 110.938251 61.68278) + (xy 110.9118 61.657941) + (xy 110.906021 61.652514) + (xy 110.899075 61.648695) + (xy 110.899072 61.648693) + (xy 110.888266 61.642752) + (xy 110.871747 61.631901) + (xy 110.871283 61.631541) + (xy 110.855741 61.619486) + (xy 110.848472 61.616341) + (xy 110.848468 61.616338) + (xy 110.815163 61.601926) + (xy 110.804513 61.596709) + (xy 110.76576 61.575405) + (xy 110.746137 61.570367) + (xy 110.727434 61.563963) + (xy 110.71612 61.559067) + (xy 110.716119 61.559067) + (xy 110.708845 61.555919) + (xy 110.701022 61.55468) + (xy 110.701012 61.554677) + (xy 110.665176 61.549001) + (xy 110.653556 61.546595) + (xy 110.618411 61.537572) + (xy 110.61841 61.537572) + (xy 110.61073 61.5356) + (xy 110.590476 61.5356) + (xy 110.570765 61.534049) + (xy 110.558586 61.53212) + (xy 110.550757 61.53088) + (xy 110.542865 61.531626) + (xy 110.506739 61.535041) + (xy 110.494881 61.5356) + (xy 108.68692 61.5356) + (xy 108.618799 61.515598) + (xy 108.572306 61.461942) + (xy 108.562202 61.391668) + (xy 108.591696 61.327088) + (xy 108.625354 61.299666) + (xy 108.677104 61.270685) + (xy 108.677108 61.270682) + (xy 108.682151 61.267858) + (xy 108.838786 61.137586) + (xy 108.969058 60.980951) + (xy 109.036404 60.860697) + (xy 109.06578 60.808242) + (xy 109.065781 60.80824) + (xy 109.068604 60.803199) + (xy 109.07046 60.797732) + (xy 109.070462 60.797727) + (xy 109.132234 60.615752) + (xy 109.132235 60.615747) + (xy 109.13409 60.610283) + (xy 109.163323 60.408663) + (xy 109.164849 60.3504) + (xy 109.146208 60.147526) + (xy 109.090907 59.951447) + (xy 109.071015 59.911108) + (xy 109.003356 59.77391) + (xy 109.000801 59.768729) + (xy 108.995903 59.762169) + (xy 108.934959 59.680556) + (xy 108.878905 59.605491) + (xy 108.858971 59.587064) + (xy 108.822526 59.526136) + (xy 108.8185 59.49454) + (xy 108.8185 56.488513) + (xy 108.826518 56.444284) + (xy 108.858973 56.357711) + (xy 108.858973 56.357709) + (xy 108.861745 56.350316) + (xy 108.862737 56.341185) + (xy 108.863123 56.340255) + (xy 108.864426 56.334777) + (xy 108.865312 56.334988) + (xy 108.889979 56.275623) + (xy 108.948341 56.235196) + (xy 109.019296 56.23274) + (xy 109.080314 56.269035) + (xy 109.112023 56.332557) + (xy 109.114 56.354792) + (xy 109.114 56.729884) + (xy 109.118475 56.745123) + (xy 109.119865 56.746328) + (xy 109.127548 56.747999) + (xy 109.204669 56.747999) + (xy 109.21149 56.747629) + (xy 109.262352 56.742105) + (xy 109.277604 56.738479) + (xy 109.398054 56.693324) + (xy 109.413649 56.684786) + (xy 109.515724 56.608285) + (xy 109.528285 56.595724) + (xy 109.604786 56.493649) + (xy 109.613324 56.478054) + (xy 109.658478 56.357606) + (xy 109.662105 56.342351) + (xy 109.667631 56.291486) + (xy 109.668 56.284672) + (xy 109.668 56.159934) + (xy 109.675665 56.125892) + (xy 109.676 56.121648) + (xy 109.676 56.107924) + (xy 110.184 56.107924) + (xy 110.187973 56.121455) + (xy 110.195768 56.122575) + (xy 110.303521 56.090862) + (xy 110.314889 56.086269) + (xy 110.479154 56.000393) + (xy 110.489415 55.993679) + (xy 110.633873 55.877532) + (xy 110.642632 55.868954) + (xy 110.761778 55.726961) + (xy 110.768708 55.716841) + (xy 110.858002 55.554415) + (xy 110.862834 55.543142) + (xy 110.91888 55.366462) + (xy 110.92143 55.354468) + (xy 110.937607 55.210239) + (xy 110.938 55.203215) + (xy 110.938 54.872115) + (xy 110.933525 54.856876) + (xy 110.932135 54.855671) + (xy 110.924452 54.854) + (xy 110.202115 54.854) + (xy 110.186876 54.858475) + (xy 110.185671 54.859865) + (xy 110.184 54.867548) + (xy 110.184 56.107924) + (xy 109.676 56.107924) + (xy 109.676 55.787115) + (xy 109.671525 55.771876) + (xy 109.670135 55.770671) + (xy 109.662452 55.769) + (xy 109.132115 55.769) + (xy 109.116876 55.773475) + (xy 109.10771 55.784053) + (xy 109.083596 55.828214) + (xy 109.021284 55.862239) + (xy 108.950468 55.857175) + (xy 108.893632 55.814628) + (xy 108.868821 55.748108) + (xy 108.8685 55.739119) + (xy 108.8685 55.283137) + (xy 108.888502 55.215016) + (xy 108.942158 55.168523) + (xy 109.012432 55.158419) + (xy 109.077012 55.187913) + (xy 109.115396 55.247639) + (xy 109.118475 55.258124) + (xy 109.119865 55.259329) + (xy 109.127548 55.261) + (xy 109.657885 55.261) + (xy 109.673124 55.256525) + (xy 109.674329 55.255135) + (xy 109.676 55.247452) + (xy 109.676 54.872115) + (xy 109.671525 54.856876) + (xy 109.670135 54.855671) + (xy 109.662452 54.854) + (xy 109.200674 54.854) + (xy 109.132553 54.833998) + (xy 109.08606 54.780342) + (xy 109.075956 54.710068) + (xy 109.10545 54.645488) + (xy 109.114101 54.636452) + (xy 109.133527 54.618082) + (xy 109.133529 54.61808) + (xy 109.138485 54.613393) + (xy 109.142317 54.607755) + (xy 109.14232 54.607751) + (xy 109.236442 54.469255) + (xy 109.240277 54.463612) + (xy 109.255638 54.425206) + (xy 109.299505 54.369387) + (xy 109.372626 54.346) + (xy 109.657885 54.346) + (xy 109.673124 54.341525) + (xy 109.674329 54.340135) + (xy 109.676 54.332452) + (xy 109.676 54.327885) + (xy 110.184 54.327885) + (xy 110.188475 54.343124) + (xy 110.189865 54.344329) + (xy 110.197548 54.346) + (xy 110.919885 54.346) + (xy 110.935124 54.341525) + (xy 110.936329 54.340135) + (xy 110.938 54.332452) + (xy 110.938 54.003343) + (xy 110.937699 53.997195) + (xy 110.924188 53.859397) + (xy 110.921805 53.847362) + (xy 110.868233 53.669924) + (xy 110.863559 53.658584) + (xy 110.77654 53.494923) + (xy 110.769751 53.484706) + (xy 110.652603 53.341067) + (xy 110.643959 53.332363) + (xy 110.501144 53.214216) + (xy 110.490973 53.207356) + (xy 110.327924 53.119196) + (xy 110.316619 53.114444) + (xy 110.201308 53.07875) + (xy 110.187205 53.078544) + (xy 110.184 53.085299) + (xy 110.184 54.327885) + (xy 109.676 54.327885) + (xy 109.676 53.092076) + (xy 109.672027 53.078545) + (xy 109.664232 53.077425) + (xy 109.556479 53.109138) + (xy 109.545111 53.113731) + (xy 109.380846 53.199607) + (xy 109.370585 53.206321) + (xy 109.226127 53.322468) + (xy 109.217368 53.331046) + (xy 109.173 53.383921) + (xy 109.11389 53.423248) + (xy 109.042902 53.424374) + (xy 108.999952 53.403028) + (xy 108.934322 53.35285) + (xy 108.803162 53.291689) + (xy 108.776369 53.279195) + (xy 108.776366 53.279194) + (xy 108.770192 53.276315) + (xy 108.763544 53.274829) + (xy 108.763541 53.274828) + (xy 108.598494 53.237936) + (xy 108.598495 53.237936) + (xy 108.593457 53.23681) + (xy 108.587912 53.2365) + (xy 108.454756 53.2365) + (xy 108.319963 53.251143) + (xy 108.236609 53.279195) + (xy 108.154796 53.306728) + (xy 108.154794 53.306729) + (xy 108.148325 53.308906) + (xy 107.993095 53.402177) + (xy 107.988138 53.406865) + (xy 107.988135 53.406867) + (xy 107.866473 53.521918) + (xy 107.861515 53.526607) + (xy 107.857683 53.532245) + (xy 107.85768 53.532249) + (xy 107.80674 53.607205) + (xy 107.759723 53.676388) + (xy 107.69247 53.844534) + (xy 107.691356 53.851262) + (xy 107.691355 53.851266) + (xy 107.666179 54.003343) + (xy 107.662892 54.023198) + (xy 107.663249 54.030015) + (xy 107.663249 54.030019) + (xy 107.66948 54.148906) + (xy 107.653071 54.21798) + (xy 107.601922 54.267217) + (xy 107.543653 54.2815) + (xy 107.161866 54.2815) + (xy 107.158471 54.281869) + (xy 107.158467 54.281869) + (xy 107.132469 54.284693) + (xy 107.123606 54.285656) + (xy 107.096394 54.285656) + (xy 107.087531 54.284693) + (xy 107.061533 54.281869) + (xy 107.061529 54.281869) + (xy 107.058134 54.2815) + (xy 106.661866 54.2815) + (xy 106.658471 54.281869) + (xy 106.658467 54.281869) + (xy 106.632469 54.284693) + (xy 106.623606 54.285656) + (xy 106.596394 54.285656) + (xy 106.587531 54.284693) + (xy 106.561533 54.281869) + (xy 106.561529 54.281869) + (xy 106.558134 54.2815) + (xy 106.161866 54.2815) + (xy 106.158471 54.281869) + (xy 106.158467 54.281869) + (xy 106.132469 54.284693) + (xy 106.123606 54.285656) + (xy 106.096394 54.285656) + (xy 106.087531 54.284693) + (xy 106.061533 54.281869) + (xy 106.061529 54.281869) + (xy 106.058134 54.2815) + (xy 105.661866 54.2815) + (xy 105.658471 54.281869) + (xy 105.658467 54.281869) + (xy 105.632469 54.284693) + (xy 105.623606 54.285656) + (xy 105.596394 54.285656) + (xy 105.587531 54.284693) + (xy 105.561533 54.281869) + (xy 105.561529 54.281869) + (xy 105.558134 54.2815) + (xy 105.161866 54.2815) + (xy 105.158471 54.281869) + (xy 105.158467 54.281869) + (xy 105.132469 54.284693) + (xy 105.123606 54.285656) + (xy 105.096394 54.285656) + (xy 105.087531 54.284693) + (xy 105.061533 54.281869) + (xy 105.061529 54.281869) + (xy 105.058134 54.2815) + (xy 104.661866 54.2815) + (xy 104.658471 54.281869) + (xy 104.658467 54.281869) + (xy 104.632469 54.284693) + (xy 104.623606 54.285656) + (xy 104.596394 54.285656) + (xy 104.587531 54.284693) + (xy 104.561533 54.281869) + (xy 104.561529 54.281869) + (xy 104.558134 54.2815) + (xy 104.161866 54.2815) + (xy 104.158471 54.281869) + (xy 104.158467 54.281869) + (xy 104.132469 54.284693) + (xy 104.123606 54.285656) + (xy 104.096394 54.285656) + (xy 104.087531 54.284693) + (xy 104.061533 54.281869) + (xy 104.061529 54.281869) + (xy 104.058134 54.2815) + (xy 103.678416 54.2815) + (xy 103.610295 54.261498) + (xy 103.563802 54.207842) + (xy 103.554108 54.134921) + (xy 103.557108 54.116802) + (xy 103.552203 54.023198) + (xy 103.547987 53.942766) + (xy 103.54763 53.935953) + (xy 103.53533 53.891296) + (xy 103.501352 53.767941) + (xy 103.499539 53.761359) + (xy 103.415078 53.601164) + (xy 103.410673 53.595951) + (xy 103.41067 53.595947) + (xy 103.302594 53.468057) + (xy 103.30259 53.468053) + (xy 103.298187 53.462843) + (xy 103.292762 53.458695) + (xy 103.159743 53.356994) + (xy 103.159739 53.356991) + (xy 103.154322 53.35285) + (xy 103.023162 53.291689) + (xy 102.996369 53.279195) + (xy 102.996366 53.279194) + (xy 102.990192 53.276315) + (xy 102.983544 53.274829) + (xy 102.983541 53.274828) + (xy 102.818494 53.237936) + (xy 102.818495 53.237936) + (xy 102.813457 53.23681) + (xy 102.807912 53.2365) + (xy 102.674756 53.2365) + (xy 102.539963 53.251143) + (xy 102.456609 53.279195) + (xy 102.374796 53.306728) + (xy 102.374794 53.306729) + (xy 102.368325 53.308906) + (xy 102.216349 53.400222) + (xy 102.216346 53.400223) + (xy 102.213095 53.402177) + (xy 102.212745 53.401594) + (xy 102.151083 53.425065) + (xy 102.081609 53.410439) + (xy 102.043609 53.379085) + (xy 102.012603 53.341067) + (xy 102.003959 53.332363) + (xy 101.861144 53.214216) + (xy 101.850973 53.207356) + (xy 101.687924 53.119196) + (xy 101.676619 53.114444) + (xy 101.561308 53.07875) + (xy 101.547205 53.078544) + (xy 101.544 53.085299) + (xy 101.544 54.327885) + (xy 101.548475 54.343124) + (xy 101.549865 54.344329) + (xy 101.557548 54.346) + (xy 101.847243 54.346) + (xy 101.915364 54.366002) + (xy 101.9587 54.413235) + (xy 102.024922 54.538836) + (xy 102.029327 54.544049) + (xy 102.02933 54.544053) + (xy 102.116051 54.646672) + (xy 102.144743 54.711613) + (xy 102.13377 54.781756) + (xy 102.086617 54.834833) + (xy 102.019813 54.854) + (xy 101.562115 54.854) + (xy 101.546876 54.858475) + (xy 101.545671 54.859865) + (xy 101.544 54.867548) + (xy 101.544 55.242885) + (xy 101.548475 55.258124) + (xy 101.549865 55.259329) + (xy 101.557548 55.261) + (xy 102.087885 55.261) + (xy 102.103124 55.256525) + (xy 102.11229 55.245947) + (xy 102.136404 55.201786) + (xy 102.198716 55.167761) + (xy 102.269532 55.172825) + (xy 102.326368 55.215372) + (xy 102.351179 55.281892) + (xy 102.3515 55.290881) + (xy 102.3515 55.643) + (xy 102.331498 55.711121) + (xy 102.277842 55.757614) + (xy 102.2255 55.769) + (xy 101.562115 55.769) + (xy 101.546876 55.773475) + (xy 101.545671 55.774865) + (xy 101.544 55.782548) + (xy 101.544 56.107924) + (xy 101.546897 56.11779) + (xy 101.552001 56.153288) + (xy 101.552001 56.176442) + (xy 101.531999 56.244563) + (xy 101.478343 56.291056) + (xy 101.469612 56.294654) + (xy 101.366873 56.332557) + (xy 101.323934 56.348398) + (xy 101.318973 56.35135) + (xy 101.318972 56.35135) + (xy 101.158205 56.446997) + (xy 101.148849 56.452563) + (xy 100.995678 56.58689) + (xy 100.992106 56.591421) + (xy 100.887542 56.724059) + (xy 100.82966 56.765172) + (xy 100.75874 56.768466) + (xy 100.699497 56.735148) + (xy 99.161006 55.196657) + (xy 100.282 55.196657) + (xy 100.282301 55.202805) + (xy 100.295812 55.340603) + (xy 100.298195 55.352638) + (xy 100.351767 55.530076) + (xy 100.356441 55.541416) + (xy 100.44346 55.705077) + (xy 100.450249 55.715294) + (xy 100.567397 55.858933) + (xy 100.576041 55.867637) + (xy 100.718856 55.985784) + (xy 100.729027 55.992644) + (xy 100.892076 56.080804) + (xy 100.903381 56.085556) + (xy 101.018692 56.12125) + (xy 101.032795 56.121456) + (xy 101.036 56.114701) + (xy 101.036 54.872115) + (xy 101.031525 54.856876) + (xy 101.030135 54.855671) + (xy 101.022452 54.854) + (xy 100.300115 54.854) + (xy 100.284876 54.858475) + (xy 100.283671 54.859865) + (xy 100.282 54.867548) + (xy 100.282 55.196657) + (xy 99.161006 55.196657) + (xy 99.117915 55.153566) + (xy 99.107048 55.141175) + (xy 99.092613 55.122363) + (xy 99.087587 55.115813) + (xy 99.055675 55.091326) + (xy 99.055672 55.091323) + (xy 99.031043 55.072424) + (xy 98.967029 55.023304) + (xy 98.967027 55.023303) + (xy 98.960476 55.018276) + (xy 98.812451 54.956962) + (xy 98.804264 54.955884) + (xy 98.804263 54.955884) + (xy 98.793058 54.954409) + (xy 98.757965 54.949789) + (xy 98.693485 54.9413) + (xy 98.693482 54.9413) + (xy 98.693474 54.941299) + (xy 98.661789 54.937128) + (xy 98.6536 54.93605) + (xy 98.643706 54.937352) + (xy 98.642267 54.937128) + (xy 98.637155 54.937128) + (xy 98.637155 54.936331) + (xy 98.573561 54.926415) + (xy 98.520115 54.878733) + (xy 98.503568 54.851992) + (xy 98.503563 54.851986) + (xy 98.499716 54.845769) + (xy 98.488761 54.834833) + (xy 98.381784 54.728042) + (xy 98.381779 54.728038) + (xy 98.376603 54.722871) + (xy 98.355833 54.710068) + (xy 98.23475 54.635431) + (xy 98.234748 54.63543) + (xy 98.22852 54.631591) + (xy 98.063409 54.576826) + (xy 98.056573 54.576126) + (xy 98.05657 54.576125) + (xy 98.005074 54.570849) + (xy 97.960672 54.5663) + (xy 97.361528 54.5663) + (xy 97.358282 54.566637) + (xy 97.358278 54.566637) + (xy 97.264365 54.576381) + (xy 97.264361 54.576382) + (xy 97.257507 54.577093) + (xy 97.250971 54.579274) + (xy 97.250969 54.579274) + (xy 97.146919 54.613988) + (xy 97.092493 54.632146) + (xy 96.944569 54.723684) + (xy 96.939396 54.728866) + (xy 96.837853 54.830586) + (xy 96.77557 54.864665) + (xy 96.70475 54.859662) + (xy 96.659663 54.830741) + (xy 96.556788 54.728046) + (xy 96.556783 54.728042) + (xy 96.551603 54.722871) + (xy 96.530833 54.710068) + (xy 96.40975 54.635431) + (xy 96.409748 54.63543) + (xy 96.40352 54.631591) + (xy 96.238409 54.576826) + (xy 96.231573 54.576126) + (xy 96.23157 54.576125) + (xy 96.180074 54.570849) + (xy 96.135672 54.5663) + (xy 95.536528 54.5663) + (xy 95.533282 54.566637) + (xy 95.533278 54.566637) + (xy 95.439365 54.576381) + (xy 95.439361 54.576382) + (xy 95.432507 54.577093) + (xy 95.425971 54.579274) + (xy 95.425969 54.579274) + (xy 95.321919 54.613988) + (xy 95.267493 54.632146) + (xy 95.119569 54.723684) + (xy 95.114396 54.728866) + (xy 95.001842 54.841616) + (xy 95.001838 54.841621) + (xy 94.996671 54.846797) + (xy 94.992831 54.853027) + (xy 94.99283 54.853028) + (xy 94.990743 54.856414) + (xy 94.988714 54.858241) + (xy 94.988293 54.858773) + (xy 94.988202 54.858701) + (xy 94.937972 54.903908) + (xy 94.883482 54.9163) + (xy 91.518767 54.9163) + (xy 91.507584 54.915773) + (xy 91.500091 54.914098) + (xy 91.492165 54.914347) + (xy 91.492164 54.914347) + (xy 91.432014 54.916238) + (xy 91.428055 54.9163) + (xy 91.400144 54.9163) + (xy 91.39621 54.916797) + (xy 91.396209 54.916797) + (xy 91.396144 54.916805) + (xy 91.384307 54.917738) + (xy 91.35249 54.918738) + (xy 91.348029 54.918878) + (xy 91.34011 54.919127) + (xy 91.322454 54.924256) + (xy 91.320658 54.924778) + (xy 91.301306 54.928786) + (xy 91.294235 54.92968) + (xy 91.281203 54.931326) + (xy 91.273834 54.934243) + (xy 91.273832 54.934244) + (xy 91.240097 54.9476) + (xy 91.228869 54.951445) + (xy 91.186407 54.963782) + (xy 91.179585 54.967816) + (xy 91.179579 54.967819) + (xy 91.168968 54.974094) + (xy 91.151218 54.98279) + (xy 91.139756 54.987328) + (xy 91.139751 54.987331) + (xy 91.132383 54.990248) + (xy 91.125968 54.994909) + (xy 91.096625 55.016227) + (xy 91.086707 55.022743) + (xy 91.074499 55.029963) + (xy 91.048637 55.045258) + (xy 91.034313 55.059582) + (xy 91.019281 55.072421) + (xy 91.002893 55.084328) + (xy 90.981004 55.110787) + (xy 90.974712 55.118393) + (xy 90.966722 55.127173) + (xy 90.758147 55.335748) + (xy 90.749861 55.343288) + (xy 90.743382 55.3474) + (xy 90.737957 55.353177) + (xy 90.696757 55.397051) + (xy 90.694002 55.399893) + (xy 90.674265 55.41963) + (xy 90.671785 55.422827) + (xy 90.664082 55.431847) + (xy 90.633814 55.464079) + (xy 90.629995 55.471025) + (xy 90.629993 55.471028) + (xy 90.624052 55.481834) + (xy 90.613201 55.498353) + (xy 90.600786 55.514359) + (xy 90.597641 55.521628) + (xy 90.597638 55.521632) + (xy 90.583226 55.554937) + (xy 90.578009 55.565587) + (xy 90.556705 55.60434) + (xy 90.554734 55.612015) + (xy 90.554734 55.612016) + (xy 90.551667 55.623962) + (xy 90.545263 55.642666) + (xy 90.545119 55.643) + (xy 90.537219 55.661255) + (xy 90.53598 55.669078) + (xy 90.535977 55.669088) + (xy 90.530301 55.704924) + (xy 90.527895 55.716544) + (xy 90.5169 55.75937) + (xy 90.5169 55.779624) + (xy 90.515349 55.799334) + (xy 90.51218 55.819343) + (xy 90.512926 55.827235) + (xy 90.516341 55.863361) + (xy 90.5169 55.875219) + (xy 90.5169 55.895071) + (xy 90.496898 55.963192) + (xy 90.474993 55.986732) + (xy 90.475669 55.987408) + (xy 90.469319 55.993758) + (xy 90.462139 55.999139) + (xy 90.374785 56.115695) + (xy 90.323655 56.252084) + (xy 90.3169 56.314266) + (xy 90.3169 57.970534) + (xy 90.323655 58.032716) + (xy 90.374785 58.169105) + (xy 90.462139 58.285661) + (xy 90.578695 58.373015) + (xy 90.587103 58.376167) + (xy 90.594975 58.380477) + (xy 90.593672 58.382857) + (xy 90.639204 58.417064) + (xy 90.663901 58.483627) + (xy 90.648691 58.552975) + (xy 90.598403 58.603091) + (xy 90.591303 58.606333) + (xy 90.587101 58.608634) + (xy 90.578695 58.611785) + (xy 90.462139 58.699139) + (xy 90.374785 58.815695) + (xy 90.323655 58.952084) + (xy 90.3169 59.014266) + (xy 90.3169 60.670534) + (xy 90.323655 60.732716) + (xy 90.374785 60.869105) + (xy 90.462139 60.985661) + (xy 90.469319 60.991042) + (xy 90.475632 60.997355) + (xy 90.509658 61.059667) + (xy 90.504593 61.130482) + (xy 90.480176 61.170757) + (xy 90.42156 61.235856) + (xy 90.368887 61.327088) + (xy 90.345611 61.367404) + (xy 90.326073 61.401244) + (xy 90.267058 61.582872) + (xy 90.266368 61.589433) + (xy 90.266368 61.589435) + (xy 90.253264 61.714116) + (xy 90.247096 61.7728) + (xy 90.247786 61.779365) + (xy 90.264509 61.938472) + (xy 90.267058 61.962728) + (xy 90.326073 62.144356) + (xy 90.329376 62.150078) + (xy 90.329377 62.150079) + (xy 90.33832 62.165569) + (xy 90.42156 62.309744) + (xy 90.425978 62.314651) + (xy 90.425979 62.314652) + (xy 90.544925 62.446755) + (xy 90.549347 62.451666) + (xy 90.628401 62.509102) + (xy 90.675985 62.543674) + (xy 90.703848 62.563918) + (xy 90.709876 62.566602) + (xy 90.709878 62.566603) + (xy 90.872281 62.638909) + (xy 90.878312 62.641594) + (xy 90.971712 62.661447) + (xy 91.058656 62.679928) + (xy 91.058661 62.679928) + (xy 91.065113 62.6813) + (xy 91.256087 62.6813) + (xy 91.262539 62.679928) + (xy 91.262544 62.679928) + (xy 91.349488 62.661447) + (xy 91.442888 62.641594) + (xy 91.448919 62.638909) + (xy 91.611322 62.566603) + (xy 91.611324 62.566602) + (xy 91.617352 62.563918) + (xy 91.645216 62.543674) + (xy 91.692799 62.509102) + (xy 91.771853 62.451666) + (xy 91.77731 62.445606) + (xy 91.808002 62.411518) + (xy 91.879441 62.332178) + (xy 91.939886 62.294938) + (xy 92.010869 62.29629) + (xy 92.06509 62.332761) + (xy 92.0656 62.332218) + (xy 92.071378 62.337644) + (xy 92.071379 62.337645) + (xy 92.115267 62.378858) + (xy 92.118109 62.381613) + (xy 92.13783 62.401334) + (xy 92.141025 62.403812) + (xy 92.150047 62.411518) + (xy 92.182279 62.441786) + (xy 92.189228 62.445606) + (xy 92.200032 62.451546) + (xy 92.216556 62.462399) + (xy 92.232559 62.474813) + (xy 92.273143 62.492376) + (xy 92.283773 62.497583) + (xy 92.32254 62.518895) + (xy 92.330217 62.520866) + (xy 92.330222 62.520868) + (xy 92.342158 62.523932) + (xy 92.360866 62.530337) + (xy 92.379455 62.538381) + (xy 92.38728 62.53962) + (xy 92.387282 62.539621) + (xy 92.423119 62.545297) + (xy 92.43474 62.547704) + (xy 92.466559 62.555873) + (xy 92.47757 62.5587) + (xy 92.497831 62.5587) + (xy 92.51754 62.560251) + (xy 92.537543 62.563419) + (xy 92.545435 62.562673) + (xy 92.550662 62.562179) + (xy 92.581554 62.559259) + (xy 92.593411 62.5587) + (xy 94.129833 62.5587) + (xy 94.141016 62.559227) + (xy 94.148509 62.560902) + (xy 94.156435 62.560653) + (xy 94.156436 62.560653) + (xy 94.216586 62.558762) + (xy 94.220545 62.5587) + (xy 94.248456 62.5587) + (xy 94.252391 62.558203) + (xy 94.252456 62.558195) + (xy 94.264293 62.557262) + (xy 94.296551 62.556248) + (xy 94.30057 62.556122) + (xy 94.308489 62.555873) + (xy 94.327943 62.550221) + (xy 94.3473 62.546213) + (xy 94.35953 62.544668) + (xy 94.359531 62.544668) + (xy 94.367397 62.543674) + (xy 94.374768 62.540755) + (xy 94.37477 62.540755) + (xy 94.408512 62.527396) + (xy 94.419742 62.523551) + (xy 94.454583 62.513429) + (xy 94.454584 62.513429) + (xy 94.462193 62.511218) + (xy 94.469012 62.507185) + (xy 94.469017 62.507183) + (xy 94.479628 62.500907) + (xy 94.497376 62.492212) + (xy 94.516217 62.484752) + (xy 94.530835 62.474132) + (xy 94.551987 62.458764) + (xy 94.561907 62.452248) + (xy 94.593135 62.43378) + (xy 94.593138 62.433778) + (xy 94.599962 62.429742) + (xy 94.614283 62.415421) + (xy 94.629317 62.40258) + (xy 94.631032 62.401334) + (xy 94.645707 62.390672) + (xy 94.673898 62.356595) + (xy 94.681888 62.347816) + (xy 96.008899 61.020805) + (xy 96.071211 60.986779) + (xy 96.097994 60.9839) + (xy 97.809194 60.9839) + (xy 97.877315 61.003902) + (xy 97.923808 61.057558) + (xy 97.933912 61.127832) + (xy 97.904418 61.192412) + (xy 97.844692 61.230796) + (xy 97.83539 61.233147) + (xy 97.710912 61.259606) + (xy 97.704882 61.262291) + (xy 97.704881 61.262291) + (xy 97.542478 61.334597) + (xy 97.542476 61.334598) + (xy 97.536448 61.337282) + (xy 97.381947 61.449534) + (xy 97.377526 61.454444) + (xy 97.377525 61.454445) + (xy 97.259543 61.585478) + (xy 97.25416 61.591456) + (xy 97.158673 61.756844) + (xy 97.099658 61.938472) + (xy 97.098968 61.945033) + (xy 97.098968 61.945035) + (xy 97.096449 61.969006) + (xy 97.079696 62.1284) + (xy 97.080386 62.134965) + (xy 97.099658 62.318328) + (xy 97.097334 62.318572) + (xy 97.092745 62.378697) + (xy 97.049926 62.435328) + (xy 96.983288 62.459821) + (xy 96.974901 62.4601) + (xy 95.658963 62.4601) + (xy 95.647779 62.459573) + (xy 95.640291 62.457899) + (xy 95.632368 62.458148) + (xy 95.572233 62.460038) + (xy 95.568275 62.4601) + (xy 95.540344 62.4601) + (xy 95.536429 62.460595) + (xy 95.536425 62.460595) + (xy 95.536367 62.460603) + (xy 95.536338 62.460606) + (xy 95.524496 62.461539) + (xy 95.48031 62.462927) + (xy 95.462944 62.467972) + (xy 95.460858 62.468578) + (xy 95.441506 62.472586) + (xy 95.429268 62.474132) + (xy 95.429266 62.474133) + (xy 95.421403 62.475126) + (xy 95.380286 62.491406) + (xy 95.369085 62.495241) + (xy 95.326606 62.507582) + (xy 95.319787 62.511615) + (xy 95.319782 62.511617) + (xy 95.309171 62.517893) + (xy 95.291421 62.52659) + (xy 95.272583 62.534048) + (xy 95.266167 62.538709) + (xy 95.266166 62.53871) + (xy 95.247484 62.552284) + (xy 95.240375 62.557449) + (xy 95.236825 62.560028) + (xy 95.226901 62.566547) + (xy 95.19566 62.585022) + (xy 95.195655 62.585026) + (xy 95.188837 62.589058) + (xy 95.174513 62.603382) + (xy 95.159481 62.616221) + (xy 95.143093 62.628128) + (xy 95.114912 62.662193) + (xy 95.106922 62.670973) + (xy 92.7639 65.013995) + (xy 92.701588 65.048021) + (xy 92.674805 65.0509) + (xy 87.503287 65.0509) + (xy 87.435166 65.030898) + (xy 87.388673 64.977242) + (xy 87.378569 64.906968) + (xy 87.408063 64.842388) + (xy 87.417516 64.8326) + (xy 87.449865 64.80254) + (xy 87.522303 64.735226) + (xy 87.587479 64.674661) + (xy 87.587481 64.674658) + (xy 87.590622 64.67174) + (xy 87.772713 64.449268) + (xy 87.922927 64.204142) + (xy 87.959542 64.120731) + (xy 88.036758 63.944828) + (xy 88.036759 63.944826) + (xy 88.038483 63.940898) + (xy 88.062607 63.856212) + (xy 88.116068 63.668534) + (xy 88.117244 63.664406) + (xy 88.157751 63.379784) + (xy 88.157799 63.370772) + (xy 88.159235 63.096583) + (xy 88.159235 63.096576) + (xy 88.159257 63.092297) + (xy 88.149436 63.017695) + (xy 88.125976 62.839505) + (xy 88.121732 62.807266) + (xy 88.119776 62.800114) + (xy 88.086674 62.679115) + (xy 88.045871 62.529964) + (xy 88.022347 62.474813) + (xy 87.934763 62.269476) + (xy 87.934761 62.269472) + (xy 87.933077 62.265524) + (xy 87.785439 62.018839) + (xy 87.605687 61.794472) + (xy 87.397149 61.596577) + (xy 87.163683 61.428814) + (xy 87.141843 61.41725) + (xy 87.111612 61.401244) + (xy 86.909608 61.294288) + (xy 86.697627 61.216714) + (xy 86.643658 61.196964) + (xy 86.643656 61.196963) + (xy 86.639627 61.195489) + (xy 86.358736 61.134245) + (xy 86.327685 61.131801) + (xy 86.135718 61.116693) + (xy 86.135709 61.116693) + (xy 86.133261 61.1165) + (xy 85.977729 61.1165) + (xy 85.975593 61.116646) + (xy 85.975582 61.116646) + (xy 85.767452 61.130835) + (xy 85.767446 61.130836) + (xy 85.763175 61.131127) + (xy 85.75898 61.131996) + (xy 85.758978 61.131996) + (xy 85.714162 61.141277) + (xy 85.481658 61.189426) + (xy 85.210657 61.285393) + (xy 84.955188 61.41725) + (xy 84.951687 61.419711) + (xy 84.951683 61.419713) + (xy 84.89134 61.462123) + (xy 84.719977 61.582559) + (xy 84.701717 61.599527) + (xy 84.51414 61.773835) + (xy 84.509378 61.77826) + (xy 84.327287 62.000732) + (xy 84.177073 62.245858) + (xy 84.175347 62.249791) + (xy 84.175346 62.249792) + (xy 84.074252 62.48009) + (xy 84.061517 62.509102) + (xy 84.060342 62.513229) + (xy 84.060341 62.51323) + (xy 84.050521 62.547704) + (xy 83.982756 62.785594) + (xy 83.942249 63.070216) + (xy 83.942227 63.074505) + (xy 83.942226 63.074512) + (xy 83.940887 63.330222) + (xy 83.940743 63.357703) + (xy 83.941302 63.361947) + (xy 83.941302 63.361951) + (xy 83.951248 63.437495) + (xy 83.978268 63.642734) + (xy 83.979401 63.646874) + (xy 83.979401 63.646876) + (xy 83.99441 63.701739) + (xy 84.054129 63.920036) + (xy 84.055813 63.923984) + (xy 84.148529 64.141351) + (xy 84.166923 64.184476) + (xy 84.199133 64.238295) + (xy 84.308534 64.42109) + (xy 84.314561 64.431161) + (xy 84.494313 64.655528) + (xy 84.578297 64.735226) + (xy 84.696693 64.847579) + (xy 84.702851 64.853423) + (xy 84.936317 65.021186) + (xy 84.940112 65.023195) + (xy 84.940113 65.023196) + (xy 84.961869 65.034715) + (xy 85.190392 65.155712) + (xy 85.256374 65.179858) + (xy 85.445016 65.248891) + (xy 85.460373 65.254511) + (xy 85.741264 65.315755) + (xy 85.769841 65.318004) + (xy 85.964282 65.333307) + (xy 85.964291 65.333307) + (xy 85.966739 65.3335) + (xy 86.122271 65.3335) + (xy 86.124407 65.333354) + (xy 86.124418 65.333354) + (xy 86.332548 65.319165) + (xy 86.332554 65.319164) + (xy 86.336825 65.318873) + (xy 86.34102 65.318004) + (xy 86.341022 65.318004) + (xy 86.500071 65.285067) + (xy 86.570833 65.29084) + (xy 86.62724 65.333952) + (xy 86.651385 65.400717) + (xy 86.6356 65.469937) + (xy 86.614718 65.497543) + (xy 86.408619 65.703642) + (xy 85.802864 66.309396) + (xy 85.740552 66.343421) + (xy 85.713769 66.3463) + (xy 80.698367 66.3463) + (xy 80.687184 66.345773) + (xy 80.679691 66.344098) + (xy 80.671765 66.344347) + (xy 80.671764 66.344347) + (xy 80.611614 66.346238) + (xy 80.607655 66.3463) + (xy 80.579744 66.3463) + (xy 80.57581 66.346797) + (xy 80.575809 66.346797) + (xy 80.575744 66.346805) + (xy 80.563907 66.347738) + (xy 80.53209 66.348738) + (xy 80.527629 66.348878) + (xy 80.51971 66.349127) + (xy 80.502054 66.354256) + (xy 80.500258 66.354778) + (xy 80.480906 66.358786) + (xy 80.473835 66.35968) + (xy 80.460803 66.361326) + (xy 80.453434 66.364243) + (xy 80.453432 66.364244) + (xy 80.419697 66.3776) + (xy 80.408469 66.381445) + (xy 80.366007 66.393782) + (xy 80.359185 66.397816) + (xy 80.359179 66.397819) + (xy 80.348568 66.404094) + (xy 80.330818 66.41279) + (xy 80.319356 66.417328) + (xy 80.319351 66.417331) + (xy 80.311983 66.420248) + (xy 80.29457 66.432899) + (xy 80.276225 66.446227) + (xy 80.266307 66.452743) + (xy 80.247619 66.463795) + (xy 80.228237 66.475258) + (xy 80.213913 66.489582) + (xy 80.198881 66.502421) + (xy 80.182493 66.514328) + (xy 80.154312 66.548393) + (xy 80.146322 66.557173) + (xy 79.219813 67.483682) + (xy 79.211527 67.491222) + (xy 79.205048 67.495334) + (xy 79.199623 67.501111) + (xy 79.158423 67.544985) + (xy 79.155668 67.547827) + (xy 79.135931 67.567564) + (xy 79.133451 67.570761) + (xy 79.125748 67.579781) + (xy 79.09548 67.612013) + (xy 79.091661 67.618959) + (xy 79.091659 67.618962) + (xy 79.085718 67.629768) + (xy 79.074867 67.646287) + (xy 79.062452 67.662293) + (xy 79.059307 67.669562) + (xy 79.059304 67.669566) + (xy 79.044892 67.702871) + (xy 79.039675 67.713521) + (xy 79.018371 67.752274) + (xy 79.0164 67.759949) + (xy 79.0164 67.75995) + (xy 79.013333 67.771896) + (xy 79.006929 67.7906) + (xy 78.998885 67.809189) + (xy 78.997646 67.817012) + (xy 78.997643 67.817022) + (xy 78.991967 67.852858) + (xy 78.989561 67.864478) + (xy 78.981568 67.895612) + (xy 78.978566 67.907304) + (xy 78.978566 67.927558) + (xy 78.977015 67.947268) + (xy 78.973846 67.967277) + (xy 78.974592 67.975169) + (xy 78.978007 68.011295) + (xy 78.978566 68.023153) + (xy 78.978566 68.317136) + (xy 78.958564 68.385257) + (xy 78.91887 68.424279) + (xy 78.908035 68.430984) + (xy 78.908033 68.430986) + (xy 78.907924 68.430809) + (xy 78.845578 68.456042) + (xy 78.775814 68.442868) + (xy 78.759329 68.432293) + (xy 78.757203 68.430171) + (xy 78.75098 68.426335) + (xy 78.750976 68.426332) + (xy 78.61535 68.342731) + (xy 78.615348 68.34273) + (xy 78.60912 68.338891) + (xy 78.444009 68.284126) + (xy 78.437173 68.283426) + (xy 78.43717 68.283425) + (xy 78.376487 68.277208) + (xy 78.341272 68.2736) + (xy 77.767128 68.2736) + (xy 77.763882 68.273937) + (xy 77.763878 68.273937) + (xy 77.669965 68.283681) + (xy 77.669961 68.283682) + (xy 77.663107 68.284393) + (xy 77.656571 68.286574) + (xy 77.656569 68.286574) + (xy 77.597042 68.306434) + (xy 77.498093 68.339446) + (xy 77.350169 68.430984) + (xy 77.344996 68.436166) + (xy 77.291001 68.490255) + (xy 77.228718 68.524334) + (xy 77.157898 68.519331) + (xy 77.127768 68.503174) + (xy 77.107023 68.488102) + (xy 77.088552 68.474682) + (xy 77.082524 68.471998) + (xy 77.082522 68.471997) + (xy 76.920119 68.399691) + (xy 76.920118 68.399691) + (xy 76.914088 68.397006) + (xy 76.793961 68.371472) + (xy 76.733744 68.358672) + (xy 76.733739 68.358672) + (xy 76.727287 68.3573) + (xy 76.536313 68.3573) + (xy 76.529861 68.358672) + (xy 76.529856 68.358672) + (xy 76.469639 68.371472) + (xy 76.349512 68.397006) + (xy 76.343482 68.399691) + (xy 76.343481 68.399691) + (xy 76.181078 68.471997) + (xy 76.181076 68.471998) + (xy 76.175048 68.474682) + (xy 76.169707 68.478562) + (xy 76.169706 68.478563) + (xy 76.136885 68.502409) + (xy 76.020547 68.586934) + (xy 76.016126 68.591844) + (xy 76.016125 68.591845) + (xy 75.904481 68.715839) + (xy 75.89276 68.728856) + (xy 75.797273 68.894244) + (xy 75.738258 69.075872) + (xy 75.718296 69.2658) + (xy 75.738258 69.455728) + (xy 75.797273 69.637356) + (xy 75.89276 69.802744) + (xy 75.897178 69.807651) + (xy 75.897179 69.807652) + (xy 76.016125 69.939755) + (xy 76.020547 69.944666) + (xy 76.175048 70.056918) + (xy 76.181076 70.059602) + (xy 76.181078 70.059603) + (xy 76.343481 70.131909) + (xy 76.349512 70.134594) + (xy 76.442913 70.154447) + (xy 76.529856 70.172928) + (xy 76.529861 70.172928) + (xy 76.536313 70.1743) + (xy 76.727287 70.1743) + (xy 76.733739 70.172928) + (xy 76.733744 70.172928) + (xy 76.820687 70.154447) + (xy 76.914088 70.134594) + (xy 76.920119 70.131909) + (xy 77.082522 70.059603) + (xy 77.082524 70.059602) + (xy 77.088552 70.056918) + (xy 77.123364 70.031626) + (xy 77.19023 70.007767) + (xy 77.259382 70.023846) + (xy 77.286443 70.044388) + (xy 77.334986 70.092847) + (xy 77.369065 70.15513) + (xy 77.364062 70.22595) + (xy 77.335141 70.271037) + (xy 77.232446 70.373912) + (xy 77.232442 70.373917) + (xy 77.227271 70.379097) + (xy 77.135991 70.52718) + (xy 77.081226 70.692291) + (xy 77.0707 70.795028) + (xy 77.0707 71.130006) + (xy 77.050698 71.198127) + (xy 77.033795 71.219101) + (xy 74.791747 73.461148) + (xy 74.783461 73.468688) + (xy 74.776982 73.4728) + (xy 74.771557 73.478577) + (xy 74.730357 73.522451) + (xy 74.727602 73.525293) + (xy 74.707865 73.54503) + (xy 74.705385 73.548227) + (xy 74.697682 73.557247) + (xy 74.667414 73.589479) + (xy 74.663595 73.596425) + (xy 74.663593 73.596428) + (xy 74.657652 73.607234) + (xy 74.646801 73.623753) + (xy 74.634386 73.639759) + (xy 74.631241 73.647028) + (xy 74.631238 73.647032) + (xy 74.616826 73.680337) + (xy 74.611609 73.690987) + (xy 74.590305 73.72974) + (xy 74.588334 73.737415) + (xy 74.588334 73.737416) + (xy 74.585267 73.749362) + (xy 74.578863 73.768066) + (xy 74.570819 73.786655) + (xy 74.56958 73.794478) + (xy 74.569577 73.794488) + (xy 74.563901 73.830324) + (xy 74.561495 73.841944) + (xy 74.5505 73.88477) + (xy 74.5505 73.905024) + (xy 74.548949 73.924734) + (xy 74.54578 73.944743) + (xy 74.546526 73.952635) + (xy 74.549941 73.988761) + (xy 74.5505 74.000619) + (xy 74.5505 77.224676) + (xy 74.530498 77.292797) + (xy 74.518142 77.308979) + (xy 74.44496 77.390256) + (xy 74.349473 77.555644) + (xy 74.290458 77.737272) + (xy 74.270496 77.9272) + (xy 74.271186 77.933765) + (xy 74.287909 78.092872) + (xy 74.290458 78.117128) + (xy 74.349473 78.298756) + (xy 74.44496 78.464144) + (xy 74.572747 78.606066) + (xy 74.616879 78.63813) + (xy 74.70174 78.699785) + (xy 74.727248 78.718318) + (xy 74.733276 78.721002) + (xy 74.733278 78.721003) + (xy 74.809644 78.755003) + (xy 74.901712 78.795994) + (xy 74.995112 78.815847) + (xy 75.082056 78.834328) + (xy 75.082061 78.834328) + (xy 75.088513 78.8357) + (xy 75.279487 78.8357) + (xy 75.285939 78.834328) + (xy 75.285944 78.834328) + (xy 75.372888 78.815847) + (xy 75.466288 78.795994) + (xy 75.558356 78.755003) + (xy 75.634722 78.721003) + (xy 75.634724 78.721002) + (xy 75.640752 78.718318) + (xy 75.666261 78.699785) + (xy 75.718283 78.661988) + (xy 75.78515 78.63813) + (xy 75.854302 78.65421) + (xy 75.900797 78.699785) + (xy 75.968509 78.81428) + (xy 75.968511 78.814283) + (xy 75.972547 78.821107) + (xy 76.090193 78.938753) + (xy 76.094002 78.941006) + (xy 76.134655 78.997296) + (xy 76.138506 79.068188) + (xy 76.103418 79.129909) + (xy 76.095724 79.136576) + (xy 76.090193 79.139847) + (xy 75.972547 79.257493) + (xy 75.968511 79.264317) + (xy 75.968509 79.26432) + (xy 75.896247 79.386509) + (xy 75.844355 79.434962) + (xy 75.774504 79.447667) + (xy 75.713733 79.424306) + (xy 75.646094 79.375163) + (xy 75.646093 79.375162) + (xy 75.640752 79.371282) + (xy 75.634724 79.368598) + (xy 75.634722 79.368597) + (xy 75.472319 79.296291) + (xy 75.472318 79.296291) + (xy 75.466288 79.293606) + (xy 75.372888 79.273753) + (xy 75.285944 79.255272) + (xy 75.285939 79.255272) + (xy 75.279487 79.2539) + (xy 75.088513 79.2539) + (xy 75.082061 79.255272) + (xy 75.082056 79.255272) + (xy 74.995112 79.273753) + (xy 74.901712 79.293606) + (xy 74.895682 79.296291) + (xy 74.895681 79.296291) + (xy 74.733278 79.368597) + (xy 74.733276 79.368598) + (xy 74.727248 79.371282) + (xy 74.572747 79.483534) + (xy 74.44496 79.625456) + (xy 74.349473 79.790844) + (xy 74.290458 79.972472) + (xy 74.270496 80.1624) + (xy 74.290458 80.352328) + (xy 74.349473 80.533956) + (xy 74.44496 80.699344) + (xy 74.449378 80.704251) + (xy 74.449379 80.704252) + (xy 74.529406 80.793131) + (xy 74.572747 80.841266) + (xy 74.727248 80.953518) + (xy 74.733276 80.956202) + (xy 74.733278 80.956203) + (xy 74.865453 81.015051) + (xy 74.901712 81.031194) + (xy 74.908165 81.032566) + (xy 74.914451 81.034608) + (xy 74.913733 81.036819) + (xy 74.96683 81.065493) + (xy 75.001144 81.127647) + (xy 75.003886 81.156823) + (xy 75.00298 81.162543) + (xy 75.003726 81.170435) + (xy 75.003726 81.170437) + (xy 75.007141 81.206561) + (xy 75.0077 81.218419) + (xy 75.0077 84.082676) + (xy 74.987698 84.150797) + (xy 74.975342 84.166979) + (xy 74.90216 84.248256) + (xy 74.806673 84.413644) + (xy 74.747658 84.595272) + (xy 74.746968 84.601833) + (xy 74.746968 84.601835) + (xy 74.735574 84.710241) + (xy 74.727696 84.7852) + (xy 74.747658 84.975128) + (xy 74.806673 85.156756) + (xy 74.90216 85.322144) + (xy 74.906578 85.327051) + (xy 74.906579 85.327052) + (xy 74.98372 85.412726) + (xy 75.029947 85.464066) + (xy 75.184448 85.576318) + (xy 75.190476 85.579002) + (xy 75.190478 85.579003) + (xy 75.352879 85.651308) + (xy 75.358912 85.653994) + (xy 75.452312 85.673847) + (xy 75.539256 85.692328) + (xy 75.539261 85.692328) + (xy 75.545713 85.6937) + (xy 75.736687 85.6937) + (xy 75.743139 85.692328) + (xy 75.743144 85.692328) + (xy 75.830088 85.673847) + (xy 75.923488 85.653994) + (xy 75.929515 85.651311) + (xy 75.929523 85.651308) + (xy 76.063398 85.591703) + (xy 76.133765 85.582269) + (xy 76.177647 85.597692) + (xy 76.178285 85.59806) + (xy 76.183622 85.601938) + (xy 76.189648 85.604621) + (xy 76.294512 85.651309) + (xy 76.358086 85.679614) + (xy 76.451486 85.699467) + (xy 76.53843 85.717948) + (xy 76.538435 85.717948) + (xy 76.544887 85.71932) + (xy 76.735861 85.71932) + (xy 76.742313 85.717948) + (xy 76.742318 85.717948) + (xy 76.89572 85.685341) + (xy 76.966511 85.690743) + (xy 77.023144 85.73356) + (xy 77.047637 85.800198) + (xy 77.032216 85.869499) + (xy 77.011012 85.897683) + (xy 76.8889 86.019795) + (xy 76.826588 86.053821) + (xy 76.799805 86.0567) + (xy 73.441195 86.0567) + (xy 73.373074 86.036698) + (xy 73.3521 86.019795) + (xy 72.128852 84.796547) + (xy 72.121312 84.788261) + (xy 72.1172 84.781782) + (xy 72.067548 84.735156) + (xy 72.064707 84.732402) + (xy 72.04497 84.712665) + (xy 72.041773 84.710185) + (xy 72.032751 84.70248) + (xy 72.000521 84.672214) + (xy 71.993575 84.668395) + (xy 71.993572 84.668393) + (xy 71.982766 84.662452) + (xy 71.966247 84.651601) + (xy 71.965783 84.651241) + (xy 71.950241 84.639186) + (xy 71.942972 84.636041) + (xy 71.942968 84.636038) + (xy 71.909663 84.621626) + (xy 71.899013 84.616409) + (xy 71.86026 84.595105) + (xy 71.840637 84.590067) + (xy 71.821934 84.583663) + (xy 71.81062 84.578767) + (xy 71.810619 84.578767) + (xy 71.803345 84.575619) + (xy 71.795522 84.57438) + (xy 71.795512 84.574377) + (xy 71.759676 84.568701) + (xy 71.748056 84.566295) + (xy 71.712911 84.557272) + (xy 71.71291 84.557272) + (xy 71.70523 84.5553) + (xy 71.684976 84.5553) + (xy 71.665265 84.553749) + (xy 71.653086 84.55182) + (xy 71.645257 84.55058) + (xy 71.637365 84.551326) + (xy 71.601239 84.554741) + (xy 71.589381 84.5553) + (xy 71.553875 84.5553) + (xy 71.485754 84.535298) + (xy 71.453049 84.504865) + (xy 71.440295 84.487847) + (xy 71.374861 84.400539) + (xy 71.258305 84.313185) + (xy 71.121916 84.262055) + (xy 71.059734 84.2553) + (xy 70.113466 84.2553) + (xy 70.051284 84.262055) + (xy 70.043888 84.264827) + (xy 70.043882 84.264829) + (xy 69.996924 84.282433) + (xy 69.926117 84.287616) + (xy 69.863748 84.253695) + (xy 69.829619 84.191439) + (xy 69.82726 84.15253) + (xy 69.827425 84.150797) + (xy 70.039808 81.915996) + (xy 70.041043 81.906699) + (xy 70.04744 81.869273) + (xy 70.62311 78.500935) + (xy 70.626615 78.485981) + (xy 70.627432 78.483258) + (xy 71.619971 75.172549) + (xy 71.62454 75.159832) + (xy 72.956498 71.996781) + (xy 72.959924 71.989332) + (xy 74.543551 68.822078) + (xy 74.549559 68.811397) + (xy 76.368618 65.91707) + (xy 76.379676 65.902068) + (xy 76.512657 65.747105) + (xy 76.795979 65.416949) + (xy 76.824012 65.392665) + (xy 76.825479 65.391733) + (xy 77.620907 64.886191) + (xy 77.643202 64.874952) + (xy 78.367384 64.596003) + (xy 78.572689 64.516921) + (xy 78.617979 64.5085) + (xy 79.633279 64.5085) + (xy 79.653884 64.510196) + (xy 80.09555 64.583409) + (xy 80.096613 64.58359) + (xy 80.176566 64.597547) + (xy 80.207172 64.594116) + (xy 80.223974 64.593363) + (xy 80.235783 64.593623) + (xy 80.25386 64.594021) + (xy 80.262531 64.591691) + (xy 80.262534 64.591691) + (xy 80.286035 64.585377) + (xy 80.28692 64.585174) + (xy 80.287787 64.585077) + (xy 80.290146 64.584434) + (xy 80.290159 64.584431) + (xy 80.331089 64.573274) + (xy 80.331532 64.573154) + (xy 80.346797 64.569053) + (xy 80.394529 64.556229) + (xy 80.395152 64.55585) + (xy 80.395672 64.555668) + (xy 81.035536 64.381246) + (xy 81.192653 64.338417) + (xy 81.212808 64.335098) + (xy 81.216694 64.3343) + (xy 81.225657 64.33376) + (xy 81.258633 64.321921) + (xy 81.271222 64.317402) + (xy 81.280654 64.314429) + (xy 81.287083 64.312676) + (xy 81.287087 64.312675) + (xy 81.291411 64.311496) + (xy 81.305952 64.305205) + (xy 81.313388 64.302265) + (xy 81.330993 64.295944) + (xy 81.339972 64.291048) + (xy 81.350247 64.286038) + (xy 81.383 64.271866) + (xy 81.383001 64.271866) + (xy 81.391239 64.268301) + (xy 81.400081 64.260961) + (xy 81.420242 64.247287) + (xy 82.286675 63.774919) + (xy 82.289919 63.773211) + (xy 82.306914 63.764577) + (xy 82.347855 63.743778) + (xy 82.374779 63.718467) + (xy 82.385695 63.709311) + (xy 82.403041 63.696358) + (xy 82.415168 63.687303) + (xy 82.420563 63.680131) + (xy 82.420565 63.680129) + (xy 82.456501 63.632355) + (xy 82.457794 63.630667) + (xy 83.006518 62.92626) + (xy 83.022982 62.909047) + (xy 83.02378 62.908141) + (xy 83.030605 62.90232) + (xy 83.03552 62.89482) + (xy 83.035525 62.894814) + (xy 83.056592 62.862664) + (xy 83.062582 62.85429) + (xy 83.065982 62.849925) + (xy 83.068739 62.846386) + (xy 83.077008 62.831929) + (xy 83.080992 62.825429) + (xy 83.089277 62.812787) + (xy 83.08928 62.812781) + (xy 83.091948 62.80871) + (xy 83.095845 62.800114) + (xy 83.10123 62.789581) + (xy 83.118286 62.759762) + (xy 83.118287 62.759759) + (xy 83.122744 62.751967) + (xy 83.124835 62.743236) + (xy 83.124837 62.743231) + (xy 83.125621 62.739957) + (xy 83.133396 62.717281) + (xy 83.40333 62.121835) + (xy 83.527021 61.848987) + (xy 83.527713 61.847489) + (xy 83.552604 61.794472) + (xy 83.558131 61.7827) + (xy 83.563035 61.751204) + (xy 83.566558 61.735371) + (xy 83.575471 61.704764) + (xy 83.57535 61.59597) + (xy 83.57535 59.923613) + (xy 83.578174 59.897085) + (xy 83.647978 59.572968) + (xy 83.799571 58.869091) + (xy 83.812119 58.835309) + (xy 83.818229 58.824103) + (xy 84.231415 58.066217) + (xy 84.252946 58.037434) + (xy 84.988326 57.302051) + (xy 85.008463 57.285691) + (xy 85.187149 57.168845) + (xy 87.132752 55.89658) + (xy 87.140487 55.89191) + (xy 87.181204 55.869275) + (xy 89.953936 54.327885) + (xy 100.282 54.327885) + (xy 100.286475 54.343124) + (xy 100.287865 54.344329) + (xy 100.295548 54.346) + (xy 101.017885 54.346) + (xy 101.033124 54.341525) + (xy 101.034329 54.340135) + (xy 101.036 54.332452) + (xy 101.036 53.092076) + (xy 101.032027 53.078545) + (xy 101.024232 53.077425) + (xy 100.916479 53.109138) + (xy 100.905111 53.113731) + (xy 100.740846 53.199607) + (xy 100.730585 53.206321) + (xy 100.586127 53.322468) + (xy 100.577368 53.331046) + (xy 100.458222 53.473039) + (xy 100.451292 53.483159) + (xy 100.361998 53.645585) + (xy 100.357166 53.656858) + (xy 100.30112 53.833538) + (xy 100.29857 53.845532) + (xy 100.282393 53.989761) + (xy 100.282 53.996785) + (xy 100.282 54.327885) + (xy 89.953936 54.327885) + (xy 90.130927 54.229494) + (xy 90.144328 54.223048) + (xy 93.387316 52.892806) + (xy 93.396183 52.889552) + (xy 96.282522 51.951342) + (xy 96.69153 51.818393) + (xy 96.705272 51.815499) + (xy 96.70525 51.815411) + (xy 96.713966 51.81325) + (xy 96.722894 51.812346) + (xy 96.731208 51.808973) + (xy 96.731214 51.808972) + (xy 96.770212 51.793153) + (xy 96.778618 51.790086) + (xy 96.786897 51.787395) + (xy 96.786905 51.787392) + (xy 96.791168 51.786006) + (xy 96.795195 51.784028) + (xy 96.795198 51.784027) + (xy 96.799367 51.781979) + (xy 96.802984 51.780203) + (xy 96.811165 51.77654) + (xy 96.849548 51.760971) + (xy 96.849552 51.760969) + (xy 96.857869 51.757595) + (xy 96.864908 51.752021) + (xy 96.87266 51.747503) + (xy 96.872716 51.747599) + (xy 96.873394 51.747171) + (xy 96.873327 51.747073) + (xy 96.880741 51.742014) + (xy 96.888801 51.738056) + (xy 96.895425 51.731996) + (xy 96.895427 51.731994) + (xy 96.92581 51.704194) + (xy 96.932617 51.698396) + (xy 96.972054 51.667163) + (xy 96.977246 51.659836) + (xy 96.983421 51.653322) + (xy 96.983504 51.653401) + (xy 96.984032 51.652804) + (xy 96.983943 51.652731) + (xy 96.989641 51.645792) + (xy 96.996265 51.639732) + (xy 97.022342 51.596746) + (xy 97.027263 51.58925) + (xy 97.033943 51.579823) + (xy 97.033944 51.579822) + (xy 97.036761 51.575846) + (xy 97.038936 51.571479) + (xy 97.04239 51.564543) + (xy 97.047452 51.555356) + (xy 97.067156 51.522876) + (xy 97.067156 51.522875) + (xy 97.071813 51.515199) + (xy 97.074138 51.506489) + (xy 97.083085 51.482817) + (xy 97.198962 51.25011) + (xy 97.209856 51.232158) + (xy 97.305934 51.100076) + (xy 97.365845 51.017713) + (xy 97.548465 50.766657) + (xy 100.282 50.766657) + (xy 100.282301 50.772805) + (xy 100.295812 50.910603) + (xy 100.298195 50.922638) + (xy 100.351767 51.100076) + (xy 100.356441 51.111416) + (xy 100.44346 51.275077) + (xy 100.450249 51.285294) + (xy 100.567397 51.428933) + (xy 100.576041 51.437637) + (xy 100.718856 51.555784) + (xy 100.729027 51.562644) + (xy 100.892076 51.650804) + (xy 100.903381 51.655556) + (xy 101.018692 51.69125) + (xy 101.032795 51.691456) + (xy 101.036 51.684701) + (xy 101.036 51.677924) + (xy 101.544 51.677924) + (xy 101.547973 51.691455) + (xy 101.555768 51.692575) + (xy 101.663521 51.660862) + (xy 101.674889 51.656269) + (xy 101.839154 51.570393) + (xy 101.849415 51.563679) + (xy 101.993873 51.447532) + (xy 102.002632 51.438954) + (xy 102.121778 51.296961) + (xy 102.128708 51.286841) + (xy 102.218002 51.124415) + (xy 102.222834 51.113142) + (xy 102.27888 50.936462) + (xy 102.28143 50.924468) + (xy 102.297607 50.780239) + (xy 102.298 50.773215) + (xy 102.298 50.766657) + (xy 108.922 50.766657) + (xy 108.922301 50.772805) + (xy 108.935812 50.910603) + (xy 108.938195 50.922638) + (xy 108.991767 51.100076) + (xy 108.996441 51.111416) + (xy 109.08346 51.275077) + (xy 109.090249 51.285294) + (xy 109.207397 51.428933) + (xy 109.216041 51.437637) + (xy 109.358856 51.555784) + (xy 109.369027 51.562644) + (xy 109.532076 51.650804) + (xy 109.543381 51.655556) + (xy 109.658692 51.69125) + (xy 109.672795 51.691456) + (xy 109.676 51.684701) + (xy 109.676 51.677924) + (xy 110.184 51.677924) + (xy 110.187973 51.691455) + (xy 110.195768 51.692575) + (xy 110.303521 51.660862) + (xy 110.314889 51.656269) + (xy 110.479154 51.570393) + (xy 110.489415 51.563679) + (xy 110.633873 51.447532) + (xy 110.642632 51.438954) + (xy 110.761778 51.296961) + (xy 110.768708 51.286841) + (xy 110.858002 51.124415) + (xy 110.862834 51.113142) + (xy 110.91888 50.936462) + (xy 110.92143 50.924468) + (xy 110.937607 50.780239) + (xy 110.938 50.773215) + (xy 110.938 50.692115) + (xy 110.933525 50.676876) + (xy 110.932135 50.675671) + (xy 110.924452 50.674) + (xy 110.202115 50.674) + (xy 110.186876 50.678475) + (xy 110.185671 50.679865) + (xy 110.184 50.687548) + (xy 110.184 51.677924) + (xy 109.676 51.677924) + (xy 109.676 50.692115) + (xy 109.671525 50.676876) + (xy 109.670135 50.675671) + (xy 109.662452 50.674) + (xy 108.940115 50.674) + (xy 108.924876 50.678475) + (xy 108.923671 50.679865) + (xy 108.922 50.687548) + (xy 108.922 50.766657) + (xy 102.298 50.766657) + (xy 102.298 50.692115) + (xy 102.293525 50.676876) + (xy 102.292135 50.675671) + (xy 102.284452 50.674) + (xy 101.562115 50.674) + (xy 101.546876 50.678475) + (xy 101.545671 50.679865) + (xy 101.544 50.687548) + (xy 101.544 51.677924) + (xy 101.036 51.677924) + (xy 101.036 50.692115) + (xy 101.031525 50.676876) + (xy 101.030135 50.675671) + (xy 101.022452 50.674) + (xy 100.300115 50.674) + (xy 100.284876 50.678475) + (xy 100.283671 50.679865) + (xy 100.282 50.687548) + (xy 100.282 50.766657) + (xy 97.548465 50.766657) + (xy 97.804965 50.414035) + (xy 97.828167 50.389749) + (xy 98.231524 50.067195) + (xy 98.513458 49.84174) + (xy 98.555026 49.819739) + (xy 99.490137 49.531467) + (xy 99.510067 49.527054) + (xy 100.29549 49.418947) + (xy 100.3657 49.429473) + (xy 100.419075 49.476288) + (xy 100.438667 49.544528) + (xy 100.423084 49.604471) + (xy 100.361994 49.715593) + (xy 100.357166 49.726858) + (xy 100.30112 49.903538) + (xy 100.29857 49.915532) + (xy 100.282393 50.059761) + (xy 100.282 50.066785) + (xy 100.282 50.147885) + (xy 100.286475 50.163124) + (xy 100.287865 50.164329) + (xy 100.295548 50.166) + (xy 102.279885 50.166) + (xy 102.295124 50.161525) + (xy 102.296329 50.160135) + (xy 102.298 50.152452) + (xy 102.298 50.073343) + (xy 102.297699 50.067195) + (xy 102.284188 49.929397) + (xy 102.281805 49.917362) + (xy 102.228233 49.739924) + (xy 102.223559 49.728584) + (xy 102.13654 49.564923) + (xy 102.129751 49.554706) + (xy 102.012603 49.411067) + (xy 102.001771 49.40016) + (xy 101.967963 49.33773) + (xy 101.973274 49.266932) + (xy 102.016019 49.210245) + (xy 102.082412 49.18568) + (xy 103.30978 49.100104) + (xy 105.477951 48.948932) + (xy 105.492568 48.948764) + ) + ) + (filled_polygon + (layer "F.Cu") + (pts + (xy 71.612074 86.960578) + (xy 72.2305 87.579004) + (xy 72.264526 87.641316) + (xy 72.259461 87.712131) + (xy 72.230501 87.757194) + (xy 72.189698 87.797997) + (xy 72.148895 87.838801) + (xy 72.086584 87.872825) + (xy 72.015768 87.867761) + (xy 71.970705 87.8388) + (xy 71.928452 87.796547) + (xy 71.920912 87.788261) + (xy 71.9168 87.781782) + (xy 71.867148 87.735156) + (xy 71.864307 87.732402) + (xy 71.84457 87.712665) + (xy 71.841373 87.710185) + (xy 71.832351 87.70248) + (xy 71.8059 87.677641) + (xy 71.800121 87.672214) + (xy 71.793175 87.668395) + (xy 71.793172 87.668393) + (xy 71.782366 87.662452) + (xy 71.765847 87.651601) + (xy 71.765383 87.651241) + (xy 71.749841 87.639186) + (xy 71.742572 87.636041) + (xy 71.742568 87.636038) + (xy 71.709263 87.621626) + (xy 71.698613 87.616409) + (xy 71.65986 87.595105) + (xy 71.640237 87.590067) + (xy 71.621534 87.583663) + (xy 71.61022 87.578767) + (xy 71.610219 87.578767) + (xy 71.602945 87.575619) + (xy 71.595116 87.574379) + (xy 71.595113 87.574378) + (xy 71.586151 87.572958) + (xy 71.521999 87.542544) + (xy 71.484474 87.482274) + (xy 71.480051 87.446013) + (xy 71.473516 87.4428) + (xy 71.188924 87.4428) + (xy 71.120803 87.422798) + (xy 71.114863 87.418736) + (xy 71.061263 87.379793) + (xy 71.061262 87.379792) + (xy 71.055921 87.375912) + (xy 71.049893 87.373228) + (xy 71.049891 87.373227) + (xy 70.894195 87.303907) + (xy 70.840099 87.257927) + (xy 70.81945 87.19) + (xy 70.838802 87.121691) + (xy 70.894195 87.073693) + (xy 70.903319 87.069631) + (xy 70.94402 87.05151) + (xy 71.049891 87.004373) + (xy 71.049893 87.004372) + (xy 71.055921 87.001688) + (xy 71.09341 86.974451) + (xy 71.114863 86.958864) + (xy 71.181731 86.935006) + (xy 71.188924 86.9348) + (xy 71.466969 86.9348) + (xy 71.487481 86.928777) + (xy 71.558477 86.928777) + ) + ) + (filled_polygon + (layer "F.Cu") + (pts + (xy 86.232338 69.434245) + (xy 86.27352 69.492078) + (xy 86.28045 69.533288) + (xy 86.28045 87.369426) + (xy 86.260448 87.437547) + (xy 86.206792 87.48404) + (xy 86.136518 87.494144) + (xy 86.071938 87.46465) + (xy 86.065355 87.458521) + (xy 84.780055 86.173221) + (xy 84.770953 86.163078) + (xy 84.751097 86.138382) + (xy 84.747232 86.133575) + (xy 84.708778 86.101308) + (xy 84.705131 86.098128) + (xy 84.703319 86.096485) + (xy 84.701125 86.094291) + (xy 84.667851 86.066958) + (xy 84.667053 86.066296) + (xy 84.595726 86.006446) + (xy 84.591056 86.003878) + (xy 84.586939 86.000497) + (xy 84.505114 85.956623) + (xy 84.503955 85.955994) + (xy 84.427819 85.914138) + (xy 84.427811 85.914135) + (xy 84.422413 85.911167) + (xy 84.417331 85.909555) + (xy 84.412637 85.907038) + (xy 84.323669 85.879838) + (xy 84.322641 85.879518) + (xy 84.233894 85.851365) + (xy 84.228598 85.850771) + (xy 84.223502 85.849213) + (xy 84.130943 85.83981) + (xy 84.129807 85.839689) + (xy 84.096192 85.835919) + (xy 84.08347 85.834492) + (xy 84.083466 85.834492) + (xy 84.079973 85.8341) + (xy 84.076446 85.8341) + (xy 84.075461 85.834045) + (xy 84.069781 85.833598) + (xy 84.040375 85.830611) + (xy 84.032863 85.829848) + (xy 84.032861 85.829848) + (xy 84.026738 85.829226) + (xy 83.984459 85.833223) + (xy 83.981091 85.833541) + (xy 83.969233 85.8341) + (xy 82.3951 85.8341) + (xy 82.326979 85.814098) + (xy 82.280486 85.760442) + (xy 82.2691 85.7081) + (xy 82.2691 84.355967) + (xy 82.269627 84.344784) + (xy 82.271302 84.337291) + (xy 82.269741 84.287616) + (xy 82.269162 84.269214) + (xy 82.2691 84.265255) + (xy 82.2691 84.237344) + (xy 82.268595 84.233344) + (xy 82.267662 84.221501) + (xy 82.266522 84.185229) + (xy 82.266273 84.17731) + (xy 82.260622 84.157858) + (xy 82.256614 84.138506) + (xy 82.255067 84.126263) + (xy 82.254074 84.118403) + (xy 82.251156 84.111032) + (xy 82.2378 84.077297) + (xy 82.233955 84.06607) + (xy 82.233321 84.063887) + (xy 82.221618 84.023607) + (xy 82.212104 84.007519) + (xy 82.211307 84.006172) + (xy 82.202612 83.988424) + (xy 82.195152 83.969583) + (xy 82.169164 83.933813) + (xy 82.162648 83.923893) + (xy 82.14418 83.892665) + (xy 82.144178 83.892662) + (xy 82.140142 83.885838) + (xy 82.125818 83.871514) + (xy 82.112983 83.856487) + (xy 82.101072 83.840093) + (xy 82.078642 83.821537) + (xy 82.067002 83.811908) + (xy 82.058222 83.803918) + (xy 82.012253 83.757949) + (xy 82.004713 83.749663) + (xy 82.0006 83.743182) + (xy 81.950947 83.696555) + (xy 81.948106 83.693801) + (xy 81.92837 83.674065) + (xy 81.925173 83.671585) + (xy 81.916151 83.66388) + (xy 81.8897 83.639041) + (xy 81.883921 83.633614) + (xy 81.876975 83.629795) + (xy 81.876972 83.629793) + (xy 81.866166 83.623852) + (xy 81.849647 83.613001) + (xy 81.849183 83.612641) + (xy 81.833641 83.600586) + (xy 81.826372 83.597441) + (xy 81.826368 83.597438) + (xy 81.793063 83.583026) + (xy 81.782413 83.577809) + (xy 81.74366 83.556505) + (xy 81.724037 83.551467) + (xy 81.705334 83.545063) + (xy 81.69402 83.540167) + (xy 81.694019 83.540167) + (xy 81.686745 83.537019) + (xy 81.678922 83.53578) + (xy 81.678912 83.535777) + (xy 81.643076 83.530101) + (xy 81.631456 83.527695) + (xy 81.596311 83.518672) + (xy 81.59631 83.518672) + (xy 81.58863 83.5167) + (xy 81.568376 83.5167) + (xy 81.548665 83.515149) + (xy 81.536486 83.51322) + (xy 81.528657 83.51198) + (xy 81.520765 83.512726) + (xy 81.484639 83.516141) + (xy 81.472781 83.5167) + (xy 80.040194 83.5167) + (xy 79.972073 83.496698) + (xy 79.92558 83.443042) + (xy 79.915476 83.372768) + (xy 79.94497 83.308188) + (xy 79.951099 83.301605) + (xy 81.164247 82.088457) + (xy 81.172537 82.080913) + (xy 81.179018 82.0768) + (xy 81.225659 82.027132) + (xy 81.228413 82.024291) + (xy 81.248134 82.00457) + (xy 81.250612 82.001375) + (xy 81.258318 81.992353) + (xy 81.283158 81.965901) + (xy 81.288586 81.960121) + (xy 81.298346 81.942368) + (xy 81.309199 81.925845) + (xy 81.316753 81.916106) + (xy 81.321613 81.909841) + (xy 81.339176 81.869257) + (xy 81.344383 81.858627) + (xy 81.365695 81.81986) + (xy 81.367666 81.812183) + (xy 81.367668 81.812178) + (xy 81.370732 81.800242) + (xy 81.377138 81.78153) + (xy 81.382034 81.770217) + (xy 81.385181 81.762945) + (xy 81.388383 81.742732) + (xy 81.392097 81.719281) + (xy 81.394504 81.70766) + (xy 81.403528 81.672511) + (xy 81.403528 81.67251) + (xy 81.4055 81.66483) + (xy 81.4055 81.644569) + (xy 81.407051 81.624858) + (xy 81.408979 81.612685) + (xy 81.410219 81.604857) + (xy 81.406059 81.560846) + (xy 81.4055 81.548989) + (xy 81.4055 79.316395) + (xy 81.425502 79.248274) + (xy 81.479158 79.201781) + (xy 81.540113 79.191829) + (xy 81.540113 79.1913) + (xy 81.731087 79.1913) + (xy 81.737539 79.189928) + (xy 81.737544 79.189928) + (xy 81.824487 79.171447) + (xy 81.917888 79.151594) + (xy 81.931672 79.145457) + (xy 82.086322 79.076603) + (xy 82.086324 79.076602) + (xy 82.092352 79.073918) + (xy 82.133039 79.044357) + (xy 82.199906 79.020499) + (xy 82.269058 79.036579) + (xy 82.281161 79.044357) + (xy 82.321848 79.073918) + (xy 82.327876 79.076602) + (xy 82.327878 79.076603) + (xy 82.482528 79.145457) + (xy 82.496312 79.151594) + (xy 82.589713 79.171447) + (xy 82.676656 79.189928) + (xy 82.676661 79.189928) + (xy 82.683113 79.1913) + (xy 82.874087 79.1913) + (xy 82.880539 79.189928) + (xy 82.880544 79.189928) + (xy 82.967487 79.171447) + (xy 83.060888 79.151594) + (xy 83.074672 79.145457) + (xy 83.229322 79.076603) + (xy 83.229324 79.076602) + (xy 83.235352 79.073918) + (xy 83.389853 78.961666) + (xy 83.504509 78.834328) + (xy 83.513221 78.824652) + (xy 83.513222 78.824651) + (xy 83.51764 78.819744) + (xy 83.613127 78.654356) + (xy 83.672142 78.472728) + (xy 83.692104 78.2828) + (xy 83.675351 78.123406) + (xy 83.672832 78.099435) + (xy 83.672832 78.099433) + (xy 83.672142 78.092872) + (xy 83.613127 77.911244) + (xy 83.51764 77.745856) + (xy 83.419464 77.63682) + (xy 83.388746 77.572813) + (xy 83.3871 77.55251) + (xy 83.3871 77.342439) + (xy 83.407102 77.274318) + (xy 83.424005 77.253344) + (xy 84.241634 76.435715) + (xy 84.254025 76.424848) + (xy 84.272837 76.410413) + (xy 84.279387 76.405387) + (xy 84.303874 76.373475) + (xy 84.30388 76.373469) + (xy 84.371896 76.284829) + (xy 84.371897 76.284827) + (xy 84.376924 76.278276) + (xy 84.438238 76.130251) + (xy 84.440791 76.110857) + (xy 84.4539 76.011285) + (xy 84.4539 76.01128) + (xy 84.45915 75.9714) + (xy 84.454978 75.939707) + (xy 84.4539 75.923264) + (xy 84.4539 73.405439) + (xy 84.473902 73.337318) + (xy 84.490805 73.316344) + (xy 85.613234 72.193915) + (xy 85.625625 72.183048) + (xy 85.644437 72.168613) + (xy 85.650987 72.163587) + (xy 85.675474 72.131675) + (xy 85.675477 72.131672) + (xy 85.743333 72.04324) + (xy 85.748524 72.036475) + (xy 85.809838 71.88845) + (xy 85.8255 71.769485) + (xy 85.8255 71.769478) + (xy 85.83075 71.7296) + (xy 85.826578 71.697907) + (xy 85.8255 71.681464) + (xy 85.8255 69.81829) + (xy 85.845502 69.750169) + (xy 85.857864 69.73398) + (xy 85.951621 69.629852) + (xy 85.951622 69.629851) + (xy 85.95604 69.624944) + (xy 86.045331 69.470288) + (xy 86.096714 69.421295) + (xy 86.166427 69.407859) + ) + ) + (filled_polygon + (layer "F.Cu") + (pts + (xy 78.736774 72.06021) + (xy 78.768599 72.123675) + (xy 78.76445 72.185071) + (xy 78.730178 72.290549) + (xy 78.710058 72.352472) + (xy 78.690096 72.5424) + (xy 78.710058 72.732328) + (xy 78.769073 72.913956) + (xy 78.86456 73.079344) + (xy 78.868978 73.084251) + (xy 78.868979 73.084252) + (xy 78.976678 73.203864) + (xy 78.992347 73.221266) + (xy 79.029359 73.248157) + (xy 79.136359 73.325897) + (xy 79.146848 73.333518) + (xy 79.152876 73.336202) + (xy 79.152878 73.336203) + (xy 79.294072 73.399066) + (xy 79.321312 73.411194) + (xy 79.414712 73.431047) + (xy 79.501656 73.449528) + (xy 79.501661 73.449528) + (xy 79.508113 73.4509) + (xy 79.699087 73.4509) + (xy 79.705539 73.449528) + (xy 79.705544 73.449528) + (xy 79.792488 73.431047) + (xy 79.885888 73.411194) + (xy 79.913128 73.399066) + (xy 80.054322 73.336203) + (xy 80.054324 73.336202) + (xy 80.060352 73.333518) + (xy 80.070842 73.325897) + (xy 80.177841 73.248157) + (xy 80.244709 73.224299) + (xy 80.31386 73.240379) + (xy 80.345537 73.265781) + (xy 80.465547 73.399066) + (xy 80.620048 73.511318) + (xy 80.626076 73.514002) + (xy 80.626078 73.514003) + (xy 80.702929 73.548219) + (xy 80.794512 73.588994) + (xy 80.880324 73.607234) + (xy 80.974856 73.627328) + (xy 80.974861 73.627328) + (xy 80.981313 73.6287) + (xy 81.172287 73.6287) + (xy 81.178739 73.627328) + (xy 81.178744 73.627328) + (xy 81.273276 73.607234) + (xy 81.359088 73.588994) + (xy 81.450671 73.548219) + (xy 81.527522 73.514003) + (xy 81.527524 73.514002) + (xy 81.533552 73.511318) + (xy 81.688053 73.399066) + (xy 81.81584 73.257144) + (xy 81.859181 73.182075) + (xy 81.910563 73.133082) + (xy 81.980277 73.119646) + (xy 82.046188 73.146032) + (xy 82.08737 73.203864) + (xy 82.0943 73.245075) + (xy 82.0943 75.072605) + (xy 82.074298 75.140726) + (xy 82.057395 75.1617) + (xy 80.379741 76.839354) + (xy 80.371463 76.846887) + (xy 80.364982 76.851) + (xy 80.359555 76.85678) + (xy 80.359553 76.856781) + (xy 80.318365 76.900643) + (xy 80.315609 76.903487) + (xy 79.987699 77.231396) + (xy 79.925387 77.265421) + (xy 79.898604 77.2683) + (xy 79.442178 77.2683) + (xy 79.374057 77.248298) + (xy 79.327564 77.194642) + (xy 79.321181 77.177453) + (xy 79.308357 77.133312) + (xy 79.308356 77.13331) + (xy 79.306145 77.125699) + (xy 79.260547 77.048597) + (xy 79.225491 76.98932) + (xy 79.225489 76.989317) + (xy 79.221453 76.982493) + (xy 79.103807 76.864847) + (xy 79.096983 76.860811) + (xy 79.09698 76.860809) + (xy 78.967427 76.784192) + (xy 78.967428 76.784192) + (xy 78.960601 76.780155) + (xy 78.95299 76.777944) + (xy 78.952988 76.777943) + (xy 78.865142 76.752422) + (xy 78.800831 76.733738) + (xy 78.794426 76.733234) + (xy 78.794421 76.733233) + (xy 78.765958 76.730993) + (xy 78.76595 76.730993) + (xy 78.763502 76.7308) + (xy 78.330498 76.7308) + (xy 78.32805 76.730993) + (xy 78.328042 76.730993) + (xy 78.299579 76.733233) + (xy 78.299574 76.733234) + (xy 78.293169 76.733738) + (xy 78.228858 76.752422) + (xy 78.141012 76.777943) + (xy 78.14101 76.777944) + (xy 78.133399 76.780155) + (xy 78.126577 76.784189) + (xy 78.121404 76.786428) + (xy 78.050942 76.795124) + (xy 78.021326 76.786428) + (xy 78.00279 76.778407) + (xy 77.868395 76.739361) + (xy 77.854294 76.739401) + (xy 77.851 76.74667) + (xy 77.851 76.984458) + (xy 77.833453 77.048597) + (xy 77.787855 77.125699) + (xy 77.741438 77.285469) + (xy 77.7385 77.322798) + (xy 77.7385 78.480802) + (xy 77.738693 78.48325) + (xy 77.738693 78.483258) + (xy 77.740085 78.500938) + (xy 77.741438 78.518131) + (xy 77.766985 78.606066) + (xy 77.781015 78.654356) + (xy 77.787855 78.677901) + (xy 77.791892 78.684727) + (xy 77.833453 78.755003) + (xy 77.851 78.819142) + (xy 77.851 79.051178) + (xy 77.855474 79.066416) + (xy 77.864882 79.074568) + (xy 77.903266 79.134294) + (xy 77.903266 79.20529) + (xy 77.881929 79.24702) + (xy 77.878156 79.251884) + (xy 77.872547 79.257493) + (xy 77.868511 79.264317) + (xy 77.868509 79.26432) + (xy 77.849602 79.296291) + (xy 77.787855 79.400699) + (xy 77.785644 79.40831) + (xy 77.785643 79.408312) + (xy 77.777901 79.434962) + (xy 77.741438 79.560469) + (xy 77.7385 79.597798) + (xy 77.7385 80.755802) + (xy 77.741438 80.793131) + (xy 77.787855 80.952901) + (xy 77.791892 80.959727) + (xy 77.868509 81.08928) + (xy 77.868511 81.089283) + (xy 77.872547 81.096107) + (xy 77.878155 81.101715) + (xy 77.883011 81.107975) + (xy 77.881504 81.109144) + (xy 77.910621 81.162467) + (xy 77.9135 81.18925) + (xy 77.9135 81.463205) + (xy 77.893498 81.531326) + (xy 77.876595 81.5523) + (xy 76.489795 82.9391) + (xy 76.427483 82.973126) + (xy 76.356668 82.968061) + (xy 76.299832 82.925514) + (xy 76.275021 82.858994) + (xy 76.2747 82.850005) + (xy 76.2747 81.497194) + (xy 76.294702 81.429073) + (xy 76.311605 81.408099) + (xy 76.335241 81.384463) + (xy 76.397553 81.350437) + (xy 76.428985 81.347681) + (xy 76.430498 81.3478) + (xy 76.863502 81.3478) + (xy 76.86595 81.347607) + (xy 76.865958 81.347607) + (xy 76.894421 81.345367) + (xy 76.894426 81.345366) + (xy 76.900831 81.344862) + (xy 77.000769 81.315828) + (xy 77.052988 81.300657) + (xy 77.05299 81.300656) + (xy 77.060601 81.298445) + (xy 77.108352 81.270205) + (xy 77.19698 81.217791) + (xy 77.196983 81.217789) + (xy 77.203807 81.213753) + (xy 77.321453 81.096107) + (xy 77.325489 81.089283) + (xy 77.325491 81.08928) + (xy 77.402108 80.959727) + (xy 77.406145 80.952901) + (xy 77.452562 80.793131) + (xy 77.4555 80.755802) + (xy 77.4555 79.597798) + (xy 77.452562 79.560469) + (xy 77.416099 79.434962) + (xy 77.408357 79.408312) + (xy 77.408356 79.40831) + (xy 77.406145 79.400699) + (xy 77.321453 79.257493) + (xy 77.315844 79.251884) + (xy 77.311601 79.246414) + (xy 77.285654 79.180329) + (xy 77.299555 79.110706) + (xy 77.337446 79.069184) + (xy 77.343 79.05693) + (xy 77.343 78.819142) + (xy 77.360547 78.755003) + (xy 77.402108 78.684727) + (xy 77.406145 78.677901) + (xy 77.412986 78.654356) + (xy 77.427015 78.606066) + (xy 77.452562 78.518131) + (xy 77.453916 78.500938) + (xy 77.455307 78.483258) + (xy 77.455307 78.48325) + (xy 77.4555 78.480802) + (xy 77.4555 77.322798) + (xy 77.452562 77.285469) + (xy 77.406145 77.125699) + (xy 77.360547 77.048597) + (xy 77.343 76.984458) + (xy 77.343 76.752422) + (xy 77.339027 76.738891) + (xy 77.331129 76.737756) + (xy 77.19121 76.778407) + (xy 77.172674 76.786428) + (xy 77.102212 76.795124) + (xy 77.072596 76.786428) + (xy 77.067423 76.784189) + (xy 77.060601 76.780155) + (xy 77.05299 76.777944) + (xy 77.052988 76.777943) + (xy 76.965142 76.752422) + (xy 76.900831 76.733738) + (xy 76.894426 76.733234) + (xy 76.894421 76.733233) + (xy 76.865958 76.730993) + (xy 76.86595 76.730993) + (xy 76.863502 76.7308) + (xy 76.430498 76.7308) + (xy 76.42805 76.730993) + (xy 76.428042 76.730993) + (xy 76.399579 76.733233) + (xy 76.399574 76.733234) + (xy 76.393169 76.733738) + (xy 76.328858 76.752422) + (xy 76.241012 76.777943) + (xy 76.24101 76.777944) + (xy 76.233399 76.780155) + (xy 76.226572 76.784192) + (xy 76.226573 76.784192) + (xy 76.09702 76.860809) + (xy 76.097017 76.860811) + (xy 76.090193 76.864847) + (xy 76.032595 76.922445) + (xy 75.970283 76.956471) + (xy 75.899468 76.951406) + (xy 75.842632 76.908859) + (xy 75.817821 76.842339) + (xy 75.8175 76.83335) + (xy 75.8175 74.279394) + (xy 75.837502 74.211273) + (xy 75.854405 74.190299) + (xy 77.9172 72.127505) + (xy 77.979512 72.093479) + (xy 78.006295 72.0906) + (xy 78.341272 72.0906) + (xy 78.344518 72.090263) + (xy 78.344522 72.090263) + (xy 78.438435 72.080519) + (xy 78.438439 72.080518) + (xy 78.445293 72.079807) + (xy 78.451829 72.077626) + (xy 78.451831 72.077626) + (xy 78.604741 72.026611) + (xy 78.67569 72.024027) + ) + ) + (filled_polygon + (layer "F.Cu") + (pts + (xy 110.284227 62.822602) + (xy 110.305197 62.839501) + (xy 111.259597 63.793902) + (xy 111.293621 63.856212) + (xy 111.2965 63.882995) + (xy 111.2965 64.362725) + (xy 111.276498 64.430846) + (xy 111.246065 64.463551) + (xy 111.141739 64.541739) + (xy 111.054385 64.658295) + (xy 111.003255 64.794684) + (xy 110.9965 64.856866) + (xy 110.9965 65.803134) + (xy 111.003255 65.865316) + (xy 111.054385 66.001705) + (xy 111.141739 66.118261) + (xy 111.258295 66.205615) + (xy 111.394684 66.256745) + (xy 111.456866 66.2635) + (xy 112.403134 66.2635) + (xy 112.465316 66.256745) + (xy 112.601705 66.205615) + (xy 112.718261 66.118261) + (xy 112.805615 66.001705) + (xy 112.856745 65.865316) + (xy 112.857598 65.85746) + (xy 112.857917 65.85612) + (xy 112.893135 65.794473) + (xy 112.95609 65.761653) + (xy 113.026795 65.768079) + (xy 113.082802 65.811711) + (xy 113.1065 65.885266) + (xy 113.1065 66.563134) + (xy 113.113255 66.625316) + (xy 113.164385 66.761705) + (xy 113.251739 66.878261) + (xy 113.368295 66.965615) + (xy 113.376703 66.968767) + (xy 113.384575 66.973077) + (xy 113.383739 66.974604) + (xy 113.432004 67.010862) + (xy 113.456702 67.077424) + (xy 113.441493 67.146772) + (xy 113.391206 67.19689) + (xy 113.331008 67.2122) + (xy 98.226661 67.2122) + (xy 98.15854 67.192198) + (xy 98.112047 67.138542) + (xy 98.101943 67.068268) + (xy 98.125835 67.010635) + (xy 98.179786 66.938648) + (xy 98.188324 66.923054) + (xy 98.233478 66.802606) + (xy 98.237105 66.787351) + (xy 98.242631 66.736486) + (xy 98.243 66.729672) + (xy 98.243 66.532115) + (xy 98.238525 66.516876) + (xy 98.237135 66.515671) + (xy 98.229452 66.514) + (xy 96.395116 66.514) + (xy 96.379877 66.518475) + (xy 96.378672 66.519865) + (xy 96.377001 66.527548) + (xy 96.377001 66.729669) + (xy 96.377371 66.73649) + (xy 96.382895 66.787352) + (xy 96.386521 66.802604) + (xy 96.431676 66.923054) + (xy 96.440214 66.938648) + (xy 96.494165 67.010635) + (xy 96.519013 67.077141) + (xy 96.50396 67.146524) + (xy 96.453786 67.196754) + (xy 96.393339 67.2122) + (xy 94.592094 67.2122) + (xy 94.523973 67.192198) + (xy 94.47748 67.138542) + (xy 94.467376 67.068268) + (xy 94.49687 67.003688) + (xy 94.502999 66.997105) + (xy 95.512219 65.987885) + (xy 96.377 65.987885) + (xy 96.381475 66.003124) + (xy 96.382865 66.004329) + (xy 96.390548 66.006) + (xy 97.037885 66.006) + (xy 97.053124 66.001525) + (xy 97.054329 66.000135) + (xy 97.056 65.992452) + (xy 97.056 65.987885) + (xy 97.564 65.987885) + (xy 97.568475 66.003124) + (xy 97.569865 66.004329) + (xy 97.577548 66.006) + (xy 98.224884 66.006) + (xy 98.240123 66.001525) + (xy 98.241328 66.000135) + (xy 98.242999 65.992452) + (xy 98.242999 65.790331) + (xy 98.242629 65.78351) + (xy 98.237105 65.732648) + (xy 98.233479 65.717396) + (xy 98.188324 65.596946) + (xy 98.179786 65.581351) + (xy 98.103285 65.479276) + (xy 98.090724 65.466715) + (xy 97.988649 65.390214) + (xy 97.973054 65.381676) + (xy 97.852606 65.336522) + (xy 97.837351 65.332895) + (xy 97.786486 65.327369) + (xy 97.779672 65.327) + (xy 97.582115 65.327) + (xy 97.566876 65.331475) + (xy 97.565671 65.332865) + (xy 97.564 65.340548) + (xy 97.564 65.987885) + (xy 97.056 65.987885) + (xy 97.056 65.345116) + (xy 97.051525 65.329877) + (xy 97.050135 65.328672) + (xy 97.042452 65.327001) + (xy 96.840331 65.327001) + (xy 96.83351 65.327371) + (xy 96.782648 65.332895) + (xy 96.767396 65.336521) + (xy 96.646946 65.381676) + (xy 96.631351 65.390214) + (xy 96.529276 65.466715) + (xy 96.516715 65.479276) + (xy 96.440214 65.581351) + (xy 96.431676 65.596946) + (xy 96.386522 65.717394) + (xy 96.382895 65.732649) + (xy 96.377369 65.783514) + (xy 96.377 65.790328) + (xy 96.377 65.987885) + (xy 95.512219 65.987885) + (xy 96.618499 64.881605) + (xy 96.680811 64.847579) + (xy 96.707594 64.8447) + (xy 98.44586 64.8447) + (xy 98.513981 64.864702) + (xy 98.560474 64.918358) + (xy 98.571123 64.984307) + (xy 98.566869 65.023467) + (xy 98.5665 65.026866) + (xy 98.5665 65.973134) + (xy 98.573255 66.035316) + (xy 98.624385 66.171705) + (xy 98.711739 66.288261) + (xy 98.828295 66.375615) + (xy 98.964684 66.426745) + (xy 99.026866 66.4335) + (xy 99.973134 66.4335) + (xy 100.035316 66.426745) + (xy 100.171705 66.375615) + (xy 100.288261 66.288261) + (xy 100.375615 66.171705) + (xy 100.426745 66.035316) + (xy 100.4335 65.973134) + (xy 100.4335 65.026866) + (xy 100.426745 64.964684) + (xy 100.375615 64.828295) + (xy 100.288261 64.711739) + (xy 100.185651 64.634837) + (xy 100.143137 64.577977) + (xy 100.137263 64.533442) + (xy 100.135702 64.533491) + (xy 100.133562 64.465401) + (xy 100.1335 64.461443) + (xy 100.1335 64.433544) + (xy 100.132996 64.429553) + (xy 100.132063 64.417695) + (xy 100.132005 64.415842) + (xy 100.149866 64.347129) + (xy 100.202041 64.29898) + (xy 100.257943 64.2859) + (xy 100.625006 64.2859) + (xy 100.693127 64.305902) + (xy 100.714101 64.322805) + (xy 100.730082 64.338786) + (xy 100.764108 64.401098) + (xy 100.766774 64.434347) + (xy 100.7665 64.436866) + (xy 100.7665 65.383134) + (xy 100.773255 65.445316) + (xy 100.824385 65.581705) + (xy 100.911739 65.698261) + (xy 101.028295 65.785615) + (xy 101.164684 65.836745) + (xy 101.226866 65.8435) + (xy 102.173134 65.8435) + (xy 102.235316 65.836745) + (xy 102.371705 65.785615) + (xy 102.488261 65.698261) + (xy 102.575615 65.581705) + (xy 102.626745 65.445316) + (xy 102.6335 65.383134) + (xy 102.6335 64.436866) + (xy 102.626745 64.374684) + (xy 102.575615 64.238295) + (xy 102.488261 64.121739) + (xy 102.371705 64.034385) + (xy 102.235316 63.983255) + (xy 102.21144 63.980661) + (xy 102.203016 63.979746) + (xy 102.136316 63.951573) + (xy 102.134644 63.95019) + (xy 102.094902 63.891359) + (xy 102.093275 63.820382) + (xy 102.13028 63.759791) + (xy 102.194168 63.728826) + (xy 102.214953 63.7271) + (xy 102.428406 63.7271) + (xy 102.496527 63.747102) + (xy 102.517501 63.764005) + (xy 103.009595 64.256099) + (xy 103.043621 64.318411) + (xy 103.0465 64.345194) + (xy 103.0465 65.043134) + (xy 103.053255 65.105316) + (xy 103.104385 65.241705) + (xy 103.191739 65.358261) + (xy 103.308295 65.445615) + (xy 103.444684 65.496745) + (xy 103.506866 65.5035) + (xy 104.453134 65.5035) + (xy 104.515316 65.496745) + (xy 104.651705 65.445615) + (xy 104.768261 65.358261) + (xy 104.855615 65.241705) + (xy 104.906745 65.105316) + (xy 104.9135 65.043134) + (xy 104.9135 64.963134) + (xy 105.3365 64.963134) + (xy 105.343255 65.025316) + (xy 105.394385 65.161705) + (xy 105.481739 65.278261) + (xy 105.598295 65.365615) + (xy 105.734684 65.416745) + (xy 105.796866 65.4235) + (xy 106.743134 65.4235) + (xy 106.805316 65.416745) + (xy 106.941705 65.365615) + (xy 107.043039 65.289669) + (xy 108.707001 65.289669) + (xy 108.707371 65.29649) + (xy 108.712895 65.347352) + (xy 108.716521 65.362604) + (xy 108.761676 65.483054) + (xy 108.770214 65.498649) + (xy 108.846715 65.600724) + (xy 108.859276 65.613285) + (xy 108.961351 65.689786) + (xy 108.976946 65.698324) + (xy 109.097394 65.743478) + (xy 109.112649 65.747105) + (xy 109.163514 65.752631) + (xy 109.170328 65.753) + (xy 109.367885 65.753) + (xy 109.383124 65.748525) + (xy 109.384329 65.747135) + (xy 109.386 65.739452) + (xy 109.386 65.734884) + (xy 109.894 65.734884) + (xy 109.898475 65.750123) + (xy 109.899865 65.751328) + (xy 109.907548 65.752999) + (xy 110.109669 65.752999) + (xy 110.11649 65.752629) + (xy 110.167352 65.747105) + (xy 110.182604 65.743479) + (xy 110.303054 65.698324) + (xy 110.318649 65.689786) + (xy 110.420724 65.613285) + (xy 110.433285 65.600724) + (xy 110.509786 65.498649) + (xy 110.518324 65.483054) + (xy 110.563478 65.362606) + (xy 110.567105 65.347351) + (xy 110.572631 65.296486) + (xy 110.573 65.289672) + (xy 110.573 65.092115) + (xy 110.568525 65.076876) + (xy 110.567135 65.075671) + (xy 110.559452 65.074) + (xy 109.912115 65.074) + (xy 109.896876 65.078475) + (xy 109.895671 65.079865) + (xy 109.894 65.087548) + (xy 109.894 65.734884) + (xy 109.386 65.734884) + (xy 109.386 65.092115) + (xy 109.381525 65.076876) + (xy 109.380135 65.075671) + (xy 109.372452 65.074) + (xy 108.725116 65.074) + (xy 108.709877 65.078475) + (xy 108.708672 65.079865) + (xy 108.707001 65.087548) + (xy 108.707001 65.289669) + (xy 107.043039 65.289669) + (xy 107.058261 65.278261) + (xy 107.145615 65.161705) + (xy 107.196745 65.025316) + (xy 107.2035 64.963134) + (xy 107.2035 64.547885) + (xy 108.707 64.547885) + (xy 108.711475 64.563124) + (xy 108.712865 64.564329) + (xy 108.720548 64.566) + (xy 109.367885 64.566) + (xy 109.383124 64.561525) + (xy 109.384329 64.560135) + (xy 109.386 64.552452) + (xy 109.386 64.547885) + (xy 109.894 64.547885) + (xy 109.898475 64.563124) + (xy 109.899865 64.564329) + (xy 109.907548 64.566) + (xy 110.554884 64.566) + (xy 110.570123 64.561525) + (xy 110.571328 64.560135) + (xy 110.572999 64.552452) + (xy 110.572999 64.350331) + (xy 110.572629 64.34351) + (xy 110.567105 64.292648) + (xy 110.563479 64.277396) + (xy 110.518324 64.156946) + (xy 110.509786 64.141351) + (xy 110.433285 64.039276) + (xy 110.420724 64.026715) + (xy 110.318649 63.950214) + (xy 110.303054 63.941676) + (xy 110.182606 63.896522) + (xy 110.167351 63.892895) + (xy 110.116486 63.887369) + (xy 110.109672 63.887) + (xy 109.912115 63.887) + (xy 109.896876 63.891475) + (xy 109.895671 63.892865) + (xy 109.894 63.900548) + (xy 109.894 64.547885) + (xy 109.386 64.547885) + (xy 109.386 63.905116) + (xy 109.381525 63.889877) + (xy 109.380135 63.888672) + (xy 109.372452 63.887001) + (xy 109.170331 63.887001) + (xy 109.16351 63.887371) + (xy 109.112648 63.892895) + (xy 109.097396 63.896521) + (xy 108.976946 63.941676) + (xy 108.961351 63.950214) + (xy 108.859276 64.026715) + (xy 108.846715 64.039276) + (xy 108.770214 64.141351) + (xy 108.761676 64.156946) + (xy 108.716522 64.277394) + (xy 108.712895 64.292649) + (xy 108.707369 64.343514) + (xy 108.707 64.350328) + (xy 108.707 64.547885) + (xy 107.2035 64.547885) + (xy 107.2035 64.016866) + (xy 107.196745 63.954684) + (xy 107.145615 63.818295) + (xy 107.058261 63.701739) + (xy 106.941705 63.614385) + (xy 106.805316 63.563255) + (xy 106.74944 63.557185) + (xy 106.746531 63.556869) + (xy 106.743134 63.5565) + (xy 105.796866 63.5565) + (xy 105.793469 63.556869) + (xy 105.79056 63.557185) + (xy 105.734684 63.563255) + (xy 105.598295 63.614385) + (xy 105.481739 63.701739) + (xy 105.394385 63.818295) + (xy 105.343255 63.954684) + (xy 105.3365 64.016866) + (xy 105.3365 64.963134) + (xy 104.9135 64.963134) + (xy 104.9135 64.096866) + (xy 104.906745 64.034684) + (xy 104.855615 63.898295) + (xy 104.768261 63.781739) + (xy 104.651705 63.694385) + (xy 104.515316 63.643255) + (xy 104.453134 63.6365) + (xy 104.233995 63.6365) + (xy 104.165874 63.616498) + (xy 104.1449 63.599595) + (xy 103.563 63.017695) + (xy 103.528974 62.955383) + (xy 103.534039 62.884568) + (xy 103.576586 62.827732) + (xy 103.643106 62.802921) + (xy 103.652095 62.8026) + (xy 110.216106 62.8026) + ) + ) + (filled_polygon + (layer "B.Cu") + (pts + (xy 107.231877 49.029835) + (xy 109.069568 49.115491) + (xy 109.078558 49.116233) + (xy 109.208636 49.131679) + (xy 109.273923 49.159574) + (xy 109.313765 49.218338) + (xy 109.315512 49.289313) + (xy 109.27861 49.349965) + (xy 109.272731 49.354996) + (xy 109.226133 49.392462) + (xy 109.217368 49.401046) + (xy 109.098222 49.543039) + (xy 109.091292 49.553159) + (xy 109.001998 49.715585) + (xy 108.997166 49.726858) + (xy 108.94112 49.903538) + (xy 108.93857 49.915532) + (xy 108.922393 50.059761) + (xy 108.922 50.066785) + (xy 108.922 50.147885) + (xy 108.926475 50.163124) + (xy 108.927865 50.164329) + (xy 108.935548 50.166) + (xy 110.919885 50.166) + (xy 110.935124 50.161525) + (xy 110.936329 50.160135) + (xy 110.938 50.152452) + (xy 110.938 50.073343) + (xy 110.937699 50.067195) + (xy 110.924188 49.929397) + (xy 110.921805 49.917362) + (xy 110.868233 49.739924) + (xy 110.863559 49.728584) + (xy 110.77654 49.564923) + (xy 110.769748 49.5547) + (xy 110.752115 49.53308) + (xy 110.724561 49.467649) + (xy 110.736757 49.397707) + (xy 110.784829 49.345462) + (xy 110.853516 49.327501) + (xy 110.864609 49.328323) + (xy 111.982887 49.461118) + (xy 112.582257 49.532292) + (xy 112.592343 49.533907) + (xy 112.906559 49.597368) + (xy 112.937964 49.608176) + (xy 113.800483 50.039436) + (xy 113.828371 50.058433) + (xy 113.946164 50.164329) + (xy 114.529882 50.689097) + (xy 114.556272 50.722486) + (xy 114.976249 51.49283) + (xy 114.98057 51.503488) + (xy 114.9812 51.503212) + (xy 114.984806 51.511433) + (xy 114.987209 51.520082) + (xy 114.991943 51.527709) + (xy 114.991944 51.52771) + (xy 115.01734 51.56862) + (xy 115.020908 51.574746) + (xy 115.028766 51.58916) + (xy 115.033391 51.595354) + (xy 115.039474 51.604276) + (xy 115.059293 51.636204) + (xy 115.059297 51.636209) + (xy 115.06403 51.643833) + (xy 115.071487 51.650516) + (xy 115.088355 51.668965) + (xy 115.088472 51.669121) + (xy 115.093845 51.676317) + (xy 115.129516 51.70315) + (xy 115.137867 51.710012) + (xy 115.172497 51.74105) + (xy 115.180594 51.744924) + (xy 115.181519 51.745367) + (xy 115.202875 51.758333) + (xy 115.210246 51.763877) + (xy 115.218642 51.767042) + (xy 115.218645 51.767043) + (xy 115.252106 51.779654) + (xy 115.262044 51.783895) + (xy 115.273455 51.789355) + (xy 115.290947 51.794609) + (xy 115.299121 51.797374) + (xy 115.346544 51.815248) + (xy 115.355499 51.815929) + (xy 115.364261 51.817872) + (xy 115.36421 51.8181) + (xy 115.377179 51.820512) + (xy 117.816233 52.553154) + (xy 117.828885 52.557703) + (xy 120.992061 53.88971) + (xy 120.999491 53.893127) + (xy 124.167617 55.476511) + (xy 124.178334 55.482538) + (xy 127.073014 57.30181) + (xy 127.088003 57.312855) + (xy 127.197001 57.406354) + (xy 127.572001 57.728031) + (xy 127.59623 57.755965) + (xy 128.088647 58.528952) + (xy 128.103913 58.552916) + (xy 128.115241 58.575369) + (xy 128.45277 59.45273) + (xy 128.473148 59.505699) + (xy 128.48155 59.55094) + (xy 128.48155 60.564003) + (xy 128.479799 60.584935) + (xy 128.407635 61.0133) + (xy 128.406166 61.022017) + (xy 128.406069 61.022585) + (xy 128.391103 61.108316) + (xy 128.392103 61.117235) + (xy 128.392103 61.117237) + (xy 128.394438 61.13806) + (xy 128.395185 61.155207) + (xy 128.394468 61.184271) + (xy 128.396775 61.192948) + (xy 128.396775 61.19295) + (xy 128.403093 61.216714) + (xy 128.403415 61.218123) + (xy 128.403573 61.219537) + (xy 128.404583 61.223241) + (xy 128.404585 61.223251) + (xy 128.414411 61.259297) + (xy 128.414617 61.260062) + (xy 128.431891 61.325039) + (xy 128.432558 61.326141) + (xy 128.432905 61.32714) + (xy 128.554389 61.7728) + (xy 128.650311 62.124688) + (xy 128.653239 62.142508) + (xy 128.654395 62.148158) + (xy 128.654929 62.157117) + (xy 128.657956 62.165566) + (xy 128.657957 62.165569) + (xy 128.670921 62.201749) + (xy 128.673871 62.211118) + (xy 128.677154 62.223161) + (xy 128.678935 62.227277) + (xy 128.68391 62.238776) + (xy 128.686885 62.246305) + (xy 128.69268 62.262477) + (xy 128.695003 62.266745) + (xy 128.695006 62.266751) + (xy 128.697203 62.270786) + (xy 128.702176 62.280989) + (xy 128.720349 62.322989) + (xy 128.726083 62.329896) + (xy 128.727819 62.331987) + (xy 128.741538 62.352227) + (xy 128.897601 62.638909) + (xy 129.204221 63.202159) + (xy 129.209274 63.212549) + (xy 129.227068 63.253852) + (xy 129.232789 63.260766) + (xy 129.232791 63.260769) + (xy 129.26428 63.298823) + (xy 129.268199 63.303811) + (xy 129.30122 63.348091) + (xy 129.308392 63.353493) + (xy 129.308393 63.353494) + (xy 129.338817 63.376409) + (xy 129.346573 63.382749) + (xy 129.556785 63.569013) + (xy 130.054897 64.010378) + (xy 130.074747 64.027967) + (xy 130.080548 64.033445) + (xy 130.118024 64.07115) + (xy 130.157593 64.092971) + (xy 130.159752 64.094161) + (xy 130.168253 64.099296) + (xy 130.170289 64.100638) + (xy 130.208262 64.12567) + (xy 130.263264 64.142584) + (xy 130.26936 64.144631) + (xy 130.78831 64.33376) + (xy 131.156323 64.467881) + (xy 131.166727 64.472209) + (xy 131.189552 64.482925) + (xy 131.20735 64.491281) + (xy 131.237886 64.496036) + (xy 131.262758 64.499909) + (xy 131.269296 64.501105) + (xy 131.315397 64.510798) + (xy 131.315399 64.510798) + (xy 131.324183 64.512645) + (xy 131.372875 64.508876) + (xy 131.382598 64.5085) + (xy 133.066913 64.5085) + (xy 133.093304 64.511295) + (xy 134.120832 64.731398) + (xy 134.154753 64.743976) + (xy 134.802247 65.096979) + (xy 134.909978 65.155712) + (xy 134.924037 65.163377) + (xy 134.95282 65.184908) + (xy 135.213232 65.445316) + (xy 135.506292 65.738372) + (xy 135.68661 65.918688) + (xy 135.703395 65.93948) + (xy 137.264047 68.358672) + (xy 137.340606 68.477348) + (xy 137.346813 68.488099) + (xy 138.917108 71.546546) + (xy 138.926529 71.564895) + (xy 138.931013 71.574625) + (xy 140.247906 74.785054) + (xy 140.262768 74.821287) + (xy 140.266882 74.832904) + (xy 141.254211 78.12492) + (xy 141.262925 78.153976) + (xy 141.265905 78.166046) + (xy 141.39627 78.834328) + (xy 141.931909 81.580131) + (xy 141.933355 81.589351) + (xy 142.349265 85.08055) + (xy 142.35015 85.095455) + (xy 142.35015 88.49517) + (xy 142.349585 88.507091) + (xy 142.017767 91.99859) + (xy 142.015999 92.010803) + (xy 141.909676 92.55563) + (xy 141.351629 95.415205) + (xy 141.350009 95.423506) + (xy 141.347836 95.432764) + (xy 140.96659 96.819371) + (xy 140.434019 98.756349) + (xy 140.429095 98.77078) + (xy 139.100953 102.00727) + (xy 139.096475 102.016985) + (xy 137.514804 105.09759) + (xy 137.509396 105.107084) + (xy 136.725521 106.354326) + (xy 135.688267 108.004722) + (xy 135.677206 108.01973) + (xy 135.247683 108.520254) + (xy 135.226184 108.540092) + (xy 134.441848 109.11063) + (xy 134.404752 109.129173) + (xy 133.498552 109.407738) + (xy 133.46153 109.4133) + (xy 131.935625 109.4133) + (xy 131.929582 109.412948) + (xy 131.924324 109.411556) + (xy 131.915355 109.411787) + (xy 131.915353 109.411787) + (xy 131.858296 109.413258) + (xy 131.855049 109.4133) + (xy 131.828137 109.4133) + (xy 131.823703 109.413935) + (xy 131.821837 109.414068) + (xy 131.817796 109.414264) + (xy 131.817305 109.414315) + (xy 131.812442 109.41444) + (xy 131.807658 109.415312) + (xy 131.807655 109.415312) + (xy 131.786395 109.419186) + (xy 131.781672 109.419954) + (xy 131.729349 109.427447) + (xy 131.729346 109.427448) + (xy 131.720463 109.42872) + (xy 131.713318 109.431969) + (xy 131.703526 109.434286) + (xy 131.218647 109.522641) + (xy 130.881242 109.584123) + (xy 130.866242 109.585934) + (xy 130.850922 109.586857) + (xy 130.8402 109.587503) + (xy 130.840198 109.587503) + (xy 130.831241 109.588043) + (xy 130.769587 109.610178) + (xy 130.76699 109.611077) + (xy 130.735226 109.621691) + (xy 130.704206 109.632056) + (xy 130.696833 109.637176) + (xy 130.672044 109.65439) + (xy 130.660494 109.66152) + (xy 129.891902 110.080544) + (xy 129.770376 110.146798) + (xy 129.767134 110.148505) + (xy 129.709038 110.17802) + (xy 129.702497 110.184169) + (xy 129.702496 110.18417) + (xy 129.682085 110.203359) + (xy 129.671167 110.212517) + (xy 129.641732 110.234496) + (xy 129.636337 110.241668) + (xy 129.636335 110.24167) + (xy 129.600569 110.289218) + (xy 129.599276 110.290906) + (xy 129.48762 110.434242) + (xy 129.207831 110.793417) + (xy 129.050367 110.995558) + (xy 129.033973 111.012697) + (xy 129.033128 111.013656) + (xy 129.026303 111.019478) + (xy 129.000351 111.059083) + (xy 128.994364 111.067452) + (xy 128.98816 111.075416) + (xy 128.981606 111.086876) + (xy 128.979848 111.089949) + (xy 128.975866 111.096447) + (xy 128.964961 111.113088) + (xy 128.962954 111.117515) + (xy 128.96109 111.121626) + (xy 128.955706 111.132156) + (xy 128.934155 111.169835) + (xy 128.931269 111.181884) + (xy 128.923496 111.204554) + (xy 128.614745 111.885614) + (xy 128.529932 112.072698) + (xy 128.529229 112.074221) + (xy 128.502583 112.130974) + (xy 128.502581 112.130981) + (xy 128.498769 112.1391) + (xy 128.497389 112.147964) + (xy 128.497388 112.147967) + (xy 128.493866 112.170589) + (xy 128.49034 112.186435) + (xy 128.483939 112.208413) + (xy 128.483938 112.208418) + (xy 128.481429 112.217034) + (xy 128.481439 112.22601) + (xy 128.48155 112.325687) + (xy 128.48155 114.078531) + (xy 128.478287 114.107021) + (xy 128.256745 115.061443) + (xy 128.246737 115.08924) + (xy 128.087863 115.407426) + (xy 127.838046 115.90775) + (xy 127.826873 115.930126) + (xy 127.798462 115.967469) + (xy 127.08075 116.613755) + (xy 127.064772 116.625979) + (xy 124.505799 118.277283) + (xy 124.497398 118.282253) + (xy 121.956632 119.655009) + (xy 121.425557 119.941944) + (xy 121.410878 119.948697) + (xy 118.173652 121.193256) + (xy 118.164666 121.196327) + (xy 116.521278 121.68968) + (xy 114.91813 122.170953) + (xy 114.827152 122.198265) + (xy 114.817929 122.200658) + (xy 111.411279 122.948063) + (xy 111.39655 122.95039) + (xy 108.0452 123.27807) + (xy 107.99756 123.282728) + (xy 107.985299 123.283326) + (xy 104.493876 123.283326) + (xy 104.481902 123.282756) + (xy 100.984128 122.948854) + (xy 100.974932 122.947633) + (xy 97.567924 122.366937) + (xy 97.552852 122.363403) + (xy 94.231032 121.365782) + (xy 94.222075 121.362721) + (xy 90.983858 120.118291) + (xy 90.969125 120.111511) + (xy 90.655538 119.941944) + (xy 87.894182 118.448788) + (xy 87.88706 118.44463) + (xy 86.278531 117.433213) + (xy 84.985005 116.619865) + (xy 84.970153 116.608932) + (xy 84.469807 116.180731) + (xy 84.449851 116.159133) + (xy 83.932445 115.447834) + (xy 83.879186 115.374616) + (xy 83.860671 115.337615) + (xy 83.770477 115.045035) + (xy 83.580941 114.430197) + (xy 83.57535 114.39308) + (xy 83.57535 112.954028) + (xy 83.575497 112.95182) + (xy 83.5761 112.949679) + (xy 83.575356 112.873778) + (xy 83.57535 112.872543) + (xy 83.57535 112.845387) + (xy 83.575103 112.843658) + (xy 83.57507 112.842853) + (xy 83.575051 112.842635) + (xy 83.575003 112.837766) + (xy 83.569754 112.806099) + (xy 83.569331 112.803357) + (xy 83.561203 112.7466) + (xy 83.561202 112.746598) + (xy 83.55993 112.737713) + (xy 83.558016 112.733504) + (xy 83.556936 112.728772) + (xy 83.551409 112.695425) + (xy 83.405771 111.816818) + (xy 83.404298 111.803716) + (xy 83.402504 111.773639) + (xy 83.40197 111.764679) + (xy 83.382264 111.70968) + (xy 83.380766 111.705238) + (xy 83.364322 111.653277) + (xy 83.364321 111.653276) + (xy 83.361614 111.644721) + (xy 83.356615 111.637271) + (xy 83.356612 111.637265) + (xy 83.336564 111.607388) + (xy 83.330527 111.597426) + (xy 82.895174 110.797703) + (xy 83.940743 110.797703) + (xy 83.978268 111.082734) + (xy 84.054129 111.360036) + (xy 84.055813 111.363984) + (xy 84.161696 111.612221) + (xy 84.166923 111.624476) + (xy 84.180882 111.647799) + (xy 84.282039 111.81682) + (xy 84.314561 111.871161) + (xy 84.494313 112.095528) + (xy 84.702851 112.293423) + (xy 84.936317 112.461186) + (xy 84.940112 112.463195) + (xy 84.940113 112.463196) + (xy 84.961869 112.474715) + (xy 85.190392 112.595712) + (xy 85.460373 112.694511) + (xy 85.741264 112.755755) + (xy 85.769841 112.758004) + (xy 85.964282 112.773307) + (xy 85.964291 112.773307) + (xy 85.966739 112.7735) + (xy 86.122271 112.7735) + (xy 86.124407 112.773354) + (xy 86.124418 112.773354) + (xy 86.332548 112.759165) + (xy 86.332554 112.759164) + (xy 86.336825 112.758873) + (xy 86.34102 112.758004) + (xy 86.341022 112.758004) + (xy 86.482178 112.728772) + (xy 86.618342 112.700574) + (xy 86.889343 112.604607) + (xy 87.144812 112.47275) + (xy 87.148313 112.470289) + (xy 87.148317 112.470287) + (xy 87.353862 112.325827) + (xy 87.380023 112.307441) + (xy 87.590622 112.11174) + (xy 87.772713 111.889268) + (xy 87.922927 111.644142) + (xy 87.925787 111.637628) + (xy 88.036757 111.38483) + (xy 88.038483 111.380898) + (xy 88.117244 111.104406) + (xy 88.157751 110.819784) + (xy 88.157845 110.801951) + (xy 88.157867 110.797703) + (xy 123.770743 110.797703) + (xy 123.808268 111.082734) + (xy 123.884129 111.360036) + (xy 123.885813 111.363984) + (xy 123.991696 111.612221) + (xy 123.996923 111.624476) + (xy 124.010882 111.647799) + (xy 124.112039 111.81682) + (xy 124.144561 111.871161) + (xy 124.324313 112.095528) + (xy 124.532851 112.293423) + (xy 124.766317 112.461186) + (xy 124.770112 112.463195) + (xy 124.770113 112.463196) + (xy 124.791869 112.474715) + (xy 125.020392 112.595712) + (xy 125.290373 112.694511) + (xy 125.571264 112.755755) + (xy 125.599841 112.758004) + (xy 125.794282 112.773307) + (xy 125.794291 112.773307) + (xy 125.796739 112.7735) + (xy 125.952271 112.7735) + (xy 125.954407 112.773354) + (xy 125.954418 112.773354) + (xy 126.162548 112.759165) + (xy 126.162554 112.759164) + (xy 126.166825 112.758873) + (xy 126.17102 112.758004) + (xy 126.171022 112.758004) + (xy 126.312178 112.728772) + (xy 126.448342 112.700574) + (xy 126.719343 112.604607) + (xy 126.974812 112.47275) + (xy 126.978313 112.470289) + (xy 126.978317 112.470287) + (xy 127.183862 112.325827) + (xy 127.210023 112.307441) + (xy 127.420622 112.11174) + (xy 127.602713 111.889268) + (xy 127.752927 111.644142) + (xy 127.755787 111.637628) + (xy 127.866757 111.38483) + (xy 127.868483 111.380898) + (xy 127.947244 111.104406) + (xy 127.987751 110.819784) + (xy 127.987845 110.801951) + (xy 127.989235 110.536583) + (xy 127.989235 110.536576) + (xy 127.989257 110.532297) + (xy 127.976178 110.432948) + (xy 127.952292 110.251522) + (xy 127.951732 110.247266) + (xy 127.939721 110.203359) + (xy 127.915989 110.116611) + (xy 127.875871 109.969964) + (xy 127.860139 109.933081) + (xy 127.764763 109.709476) + (xy 127.764761 109.709472) + (xy 127.763077 109.705524) + (xy 127.680691 109.567867) + (xy 127.617643 109.462521) + (xy 127.61764 109.462517) + (xy 127.615439 109.458839) + (xy 127.435687 109.234472) + (xy 127.227149 109.036577) + (xy 126.993683 108.868814) + (xy 126.971843 108.85725) + (xy 126.948654 108.844972) + (xy 126.739608 108.734288) + (xy 126.469627 108.635489) + (xy 126.188736 108.574245) + (xy 126.157685 108.571801) + (xy 125.965718 108.556693) + (xy 125.965709 108.556693) + (xy 125.963261 108.5565) + (xy 125.807729 108.5565) + (xy 125.805593 108.556646) + (xy 125.805582 108.556646) + (xy 125.597452 108.570835) + (xy 125.597446 108.570836) + (xy 125.593175 108.571127) + (xy 125.58898 108.571996) + (xy 125.588978 108.571996) + (xy 125.474047 108.595797) + (xy 125.311658 108.629426) + (xy 125.040657 108.725393) + (xy 124.785188 108.85725) + (xy 124.781687 108.859711) + (xy 124.781683 108.859713) + (xy 124.771594 108.866804) + (xy 124.549977 109.022559) + (xy 124.534892 109.036577) + (xy 124.344295 109.213691) + (xy 124.339378 109.21826) + (xy 124.157287 109.440732) + (xy 124.007073 109.685858) + (xy 124.005347 109.689791) + (xy 124.005346 109.689792) + (xy 123.904939 109.918526) + (xy 123.891517 109.949102) + (xy 123.890342 109.953229) + (xy 123.890341 109.95323) + (xy 123.872187 110.01696) + (xy 123.812756 110.225594) + (xy 123.772249 110.510216) + (xy 123.772227 110.514505) + (xy 123.772226 110.514512) + (xy 123.770772 110.792094) + (xy 123.770743 110.797703) + (xy 88.157867 110.797703) + (xy 88.159235 110.536583) + (xy 88.159235 110.536576) + (xy 88.159257 110.532297) + (xy 88.146178 110.432948) + (xy 88.122292 110.251522) + (xy 88.121732 110.247266) + (xy 88.109721 110.203359) + (xy 88.085989 110.116611) + (xy 88.045871 109.969964) + (xy 88.030139 109.933081) + (xy 87.934763 109.709476) + (xy 87.934761 109.709472) + (xy 87.933077 109.705524) + (xy 87.850691 109.567867) + (xy 87.787643 109.462521) + (xy 87.78764 109.462517) + (xy 87.785439 109.458839) + (xy 87.605687 109.234472) + (xy 87.397149 109.036577) + (xy 87.163683 108.868814) + (xy 87.141843 108.85725) + (xy 87.118654 108.844972) + (xy 86.909608 108.734288) + (xy 86.639627 108.635489) + (xy 86.358736 108.574245) + (xy 86.327685 108.571801) + (xy 86.135718 108.556693) + (xy 86.135709 108.556693) + (xy 86.133261 108.5565) + (xy 85.977729 108.5565) + (xy 85.975593 108.556646) + (xy 85.975582 108.556646) + (xy 85.767452 108.570835) + (xy 85.767446 108.570836) + (xy 85.763175 108.571127) + (xy 85.75898 108.571996) + (xy 85.758978 108.571996) + (xy 85.644047 108.595797) + (xy 85.481658 108.629426) + (xy 85.210657 108.725393) + (xy 84.955188 108.85725) + (xy 84.951687 108.859711) + (xy 84.951683 108.859713) + (xy 84.941594 108.866804) + (xy 84.719977 109.022559) + (xy 84.704892 109.036577) + (xy 84.514295 109.213691) + (xy 84.509378 109.21826) + (xy 84.327287 109.440732) + (xy 84.177073 109.685858) + (xy 84.175347 109.689791) + (xy 84.175346 109.689792) + (xy 84.074939 109.918526) + (xy 84.061517 109.949102) + (xy 84.060342 109.953229) + (xy 84.060341 109.95323) + (xy 84.042187 110.01696) + (xy 83.982756 110.225594) + (xy 83.942249 110.510216) + (xy 83.942227 110.514505) + (xy 83.942226 110.514512) + (xy 83.940772 110.792094) + (xy 83.940743 110.797703) + (xy 82.895174 110.797703) + (xy 82.843938 110.703585) + (xy 82.842382 110.700634) + (xy 82.815496 110.647972) + (xy 82.815495 110.647971) + (xy 82.811416 110.639981) + (xy 82.80526 110.633459) + (xy 82.805258 110.633456) + (xy 82.786342 110.613416) + (xy 82.776966 110.602253) + (xy 82.761048 110.580908) + (xy 82.755679 110.573708) + (xy 82.72006 110.54688) + (xy 82.701419 110.532839) + (xy 82.699993 110.531749) + (xy 81.993268 109.983488) + (xy 81.978261 109.969145) + (xy 81.97546 109.96667) + (xy 81.969645 109.959837) + (xy 81.962144 109.954909) + (xy 81.96214 109.954905) + (xy 81.928925 109.933081) + (xy 81.920883 109.927334) + (xy 81.918069 109.925151) + (xy 81.912388 109.920744) + (xy 81.908498 109.918529) + (xy 81.908493 109.918526) + (xy 81.903044 109.915424) + (xy 81.89909 109.913173) + (xy 81.892256 109.908989) + (xy 81.87611 109.89838) + (xy 81.871679 109.896365) + (xy 81.871674 109.896362) + (xy 81.866373 109.893951) + (xy 81.856202 109.888756) + (xy 81.825662 109.871369) + (xy 81.82566 109.871368) + (xy 81.817861 109.866928) + (xy 81.806967 109.864342) + (xy 81.783905 109.856445) + (xy 80.916332 109.461863) + (xy 80.914961 109.461229) + (xy 80.909871 109.458839) + (xy 80.84955 109.430519) + (xy 80.818448 109.425676) + (xy 80.802458 109.422108) + (xy 80.780851 109.415787) + (xy 80.78085 109.415787) + (xy 80.772236 109.413267) + (xy 80.763259 109.413266) + (xy 80.763258 109.413266) + (xy 80.62693 109.413252) + (xy 80.626579 109.413252) + (xy 80.626466 109.413285) + (xy 80.626257 109.4133) + (xy 78.910929 109.4133) + (xy 78.882619 109.410078) + (xy 78.872471 109.407738) + (xy 77.927143 109.189766) + (xy 77.899111 109.179688) + (xy 77.060006 108.760137) + (xy 77.022731 108.731763) + (xy 76.374995 108.012581) + (xy 76.362723 107.996536) + (xy 74.712638 105.437363) + (xy 74.707691 105.428998) + (xy 73.048141 102.358775) + (xy 73.041386 102.344102) + (xy 71.924977 99.442169) + (xy 71.795362 99.105255) + (xy 71.792274 99.096219) + (xy 71.791242 99.092776) + (xy 70.87894 96.050954) + (xy 70.791778 95.760335) + (xy 70.789402 95.751176) + (xy 70.414208 94.043467) + (xy 70.040624 92.343085) + (xy 70.038283 92.328264) + (xy 70.029867 92.241828) + (xy 69.920365 91.11731) + (xy 69.933671 91.047572) + (xy 69.982568 90.996098) + (xy 70.051532 90.979231) + (xy 70.108772 90.99598) + (xy 70.111941 90.99781) + (xy 70.117279 91.001688) + (xy 70.123306 91.004371) + (xy 70.123307 91.004372) + (xy 70.12331 91.004373) + (xy 70.296544 91.081502) + (xy 70.392515 91.101901) + (xy 70.482028 91.120928) + (xy 70.482032 91.120928) + (xy 70.488485 91.1223) + (xy 70.684715 91.1223) + (xy 70.691168 91.120928) + (xy 70.691172 91.120928) + (xy 70.780685 91.101901) + (xy 70.876656 91.081502) + (xy 70.952864 91.047572) + (xy 71.049891 91.004373) + (xy 71.049893 91.004372) + (xy 71.055921 91.001688) + (xy 71.063615 90.996098) + (xy 71.20933 90.89023) + (xy 71.209332 90.890228) + (xy 71.214674 90.886347) + (xy 71.242333 90.855629) + (xy 71.341558 90.745428) + (xy 71.341559 90.745427) + (xy 71.345977 90.74052) + (xy 71.444092 90.57058) + (xy 71.50473 90.383955) + (xy 71.509472 90.338844) + (xy 71.524552 90.195365) + (xy 71.525242 90.1888) + (xy 71.51384 90.080321) + (xy 71.50542 90.000209) + (xy 71.50542 90.000208) + (xy 71.50473 89.993645) + (xy 71.484427 89.931157) + (xy 71.450892 89.827948) + (xy 71.444092 89.80702) + (xy 71.412211 89.7518) + (xy 71.395473 89.682804) + (xy 71.412211 89.6258) + (xy 71.440788 89.576303) + (xy 71.440789 89.576302) + (xy 71.444092 89.57058) + (xy 71.484215 89.447093) + (xy 71.50269 89.390234) + (xy 71.50269 89.390233) + (xy 71.50473 89.383955) + (xy 71.514306 89.292852) + (xy 71.524552 89.195365) + (xy 71.525242 89.1888) + (xy 71.512232 89.065022) + (xy 71.50542 89.000209) + (xy 71.50542 89.000208) + (xy 71.50473 88.993645) + (xy 71.494674 88.962694) + (xy 71.446134 88.813305) + (xy 71.444092 88.80702) + (xy 71.412211 88.7518) + (xy 71.395473 88.682804) + (xy 71.412211 88.6258) + (xy 71.440788 88.576303) + (xy 71.440789 88.576302) + (xy 71.444092 88.57058) + (xy 71.50041 88.397251) + (xy 71.50269 88.390234) + (xy 71.50269 88.390233) + (xy 71.50473 88.383955) + (xy 71.522733 88.212676) + (xy 71.524552 88.195365) + (xy 71.525242 88.1888) + (xy 71.50473 87.993645) + (xy 71.444092 87.80702) + (xy 71.411922 87.7513) + (xy 71.395184 87.682305) + (xy 71.411922 87.625299) + (xy 71.440334 87.576088) + (xy 71.445673 87.564096) + (xy 71.479485 87.460032) + (xy 71.479888 87.445932) + (xy 71.473517 87.4428) + (xy 71.188924 87.4428) + (xy 71.120803 87.422798) + (xy 71.114863 87.418736) + (xy 71.061263 87.379793) + (xy 71.061262 87.379792) + (xy 71.055921 87.375912) + (xy 71.049893 87.373228) + (xy 71.049891 87.373227) + (xy 70.894195 87.303907) + (xy 70.840099 87.257927) + (xy 70.81945 87.19) + (xy 70.838802 87.121691) + (xy 70.894195 87.073693) + (xy 71.049891 87.004373) + (xy 71.049893 87.004372) + (xy 71.055921 87.001688) + (xy 71.114863 86.958864) + (xy 71.181731 86.935006) + (xy 71.188924 86.9348) + (xy 71.466969 86.9348) + (xy 71.4805 86.930827) + (xy 71.48151 86.9238) + (xy 71.445673 86.813504) + (xy 71.440334 86.801512) + (xy 71.411922 86.752301) + (xy 71.395184 86.683306) + (xy 71.411922 86.6263) + (xy 71.440788 86.576303) + (xy 71.440789 86.576302) + (xy 71.444092 86.57058) + (xy 71.494527 86.415358) + (xy 71.50269 86.390234) + (xy 71.50269 86.390233) + (xy 71.50473 86.383955) + (xy 71.515965 86.277068) + (xy 71.524552 86.195365) + (xy 71.525242 86.1888) + (xy 71.50473 85.993645) + (xy 71.489522 85.946838) + (xy 71.475433 85.903475) + (xy 71.473406 85.832508) + (xy 71.477284 85.820311) + (xy 71.510571 85.731518) + (xy 71.510573 85.731512) + (xy 71.513345 85.724116) + (xy 71.5201 85.661934) + (xy 71.5201 85.064595) + (xy 71.540102 84.996474) + (xy 71.593758 84.949981) + (xy 71.664032 84.939877) + (xy 71.728612 84.969371) + (xy 71.735195 84.9755) + (xy 71.897395 85.1377) + (xy 71.931421 85.200012) + (xy 71.9343 85.226795) + (xy 71.9343 88.306539) + (xy 71.933773 88.317722) + (xy 71.932098 88.325215) + (xy 71.932347 88.333141) + (xy 71.932347 88.333142) + (xy 71.934238 88.393292) + (xy 71.9343 88.397251) + (xy 71.9343 88.425162) + (xy 71.934797 88.429096) + (xy 71.934797 88.429097) + (xy 71.934805 88.429162) + (xy 71.935738 88.440999) + (xy 71.937127 88.485195) + (xy 71.942778 88.504645) + (xy 71.946787 88.524006) + (xy 71.949326 88.544103) + (xy 71.952245 88.551474) + (xy 71.952245 88.551476) + (xy 71.965604 88.585218) + (xy 71.969449 88.596448) + (xy 71.981782 88.638899) + (xy 71.985815 88.645718) + (xy 71.985817 88.645723) + (xy 71.992093 88.656334) + (xy 72.000788 88.674082) + (xy 72.008248 88.692923) + (xy 72.01291 88.699339) + (xy 72.01291 88.69934) + (xy 72.034236 88.728693) + (xy 72.040752 88.738613) + (xy 72.063258 88.776668) + (xy 72.077579 88.790989) + (xy 72.090419 88.806022) + (xy 72.102328 88.822413) + (xy 72.134213 88.84879) + (xy 72.136393 88.850594) + (xy 72.145174 88.858584) + (xy 72.618847 89.332258) + (xy 72.626381 89.340537) + (xy 72.630494 89.347018) + (xy 72.639081 89.355081) + (xy 72.639252 89.355242) + (xy 72.640881 89.358014) + (xy 72.641325 89.358551) + (xy 72.641238 89.358623) + (xy 72.675218 89.416454) + (xy 72.679 89.447093) + (xy 72.679 89.553244) + (xy 72.694019 89.667324) + (xy 72.697178 89.674951) + (xy 72.697179 89.674954) + (xy 72.723416 89.738296) + (xy 72.752814 89.809268) + (xy 72.846343 89.931157) + (xy 72.852893 89.936183) + (xy 72.852894 89.936184) + (xy 72.907288 89.977922) + (xy 72.968233 90.024686) + (xy 73.110176 90.083481) + (xy 73.162928 90.090426) + (xy 73.220169 90.097962) + (xy 73.22017 90.097962) + (xy 73.224256 90.0985) + (xy 74.553 90.0985) + (xy 74.621121 90.118502) + (xy 74.667614 90.172158) + (xy 74.679 90.2245) + (xy 74.679 91.553244) + (xy 74.694019 91.667324) + (xy 74.752814 91.809268) + (xy 74.846343 91.931157) + (xy 74.851598 91.93519) + (xy 74.885262 91.996838) + (xy 74.880197 92.067653) + (xy 74.851314 92.112638) + (xy 74.733746 92.230412) + (xy 74.733742 92.230417) + (xy 74.728571 92.235597) + (xy 74.637291 92.38368) + (xy 74.582526 92.548791) + (xy 74.572 92.651528) + (xy 74.572 93.225672) + (xy 74.582793 93.329693) + (xy 74.637846 93.494707) + (xy 74.729384 93.642631) + (xy 74.734566 93.647804) + (xy 74.847316 93.760358) + (xy 74.847321 93.760362) + (xy 74.852497 93.765529) + (xy 75.00058 93.856809) + (xy 75.165691 93.911574) + (xy 75.172527 93.912274) + (xy 75.17253 93.912275) + (xy 75.21987 93.917125) + (xy 75.268428 93.9221) + (xy 75.967572 93.9221) + (xy 75.970818 93.921763) + (xy 75.970822 93.921763) + (xy 76.064735 93.912019) + (xy 76.064739 93.912018) + (xy 76.071593 93.911307) + (xy 76.078129 93.909126) + (xy 76.078131 93.909126) + (xy 76.210895 93.864832) + (xy 76.236607 93.856254) + (xy 76.384531 93.764716) + (xy 76.391774 93.757461) + (xy 76.393538 93.756495) + (xy 76.395441 93.754987) + (xy 76.395699 93.755313) + (xy 76.454054 93.723381) + (xy 76.524875 93.728382) + (xy 76.56997 93.757308) + (xy 76.572631 93.759964) + (xy 76.58404 93.768975) + (xy 76.719563 93.852512) + (xy 76.732741 93.858656) + (xy 76.884266 93.908915) + (xy 76.897632 93.911781) + (xy 76.99027 93.921272) + (xy 76.996685 93.9216) + (xy 77.070885 93.9216) + (xy 77.086124 93.917125) + (xy 77.087329 93.915735) + (xy 77.089 93.908052) + (xy 77.089 92.428939) + (xy 77.109002 92.360818) + (xy 77.125905 92.339844) + (xy 77.233734 92.232015) + (xy 77.246125 92.221148) + (xy 77.264937 92.206713) + (xy 77.271487 92.201687) + (xy 77.295974 92.169775) + (xy 77.295978 92.169771) + (xy 77.363143 92.08224) + (xy 77.420481 92.040373) + (xy 77.491352 92.036151) + (xy 77.51132 92.042534) + (xy 77.519215 92.045804) + (xy 77.574497 92.090351) + (xy 77.597 92.162214) + (xy 77.597 93.903485) + (xy 77.601475 93.918724) + (xy 77.602865 93.919929) + (xy 77.604783 93.920346) + (xy 77.667095 93.954371) + (xy 77.70112 94.016683) + (xy 77.704 94.043467) + (xy 77.704 94.715105) + (xy 77.683998 94.783226) + (xy 77.667095 94.804201) + (xy 77.139622 95.331673) + (xy 77.07731 95.365698) + (xy 77.017916 95.364284) + (xy 76.986571 95.355885) + (xy 76.7672 95.336693) + (xy 76.547829 95.355885) + (xy 76.335124 95.41288) + (xy 76.250647 95.452272) + (xy 76.140534 95.503618) + (xy 76.140529 95.503621) + (xy 76.135547 95.505944) + (xy 76.13104 95.5091) + (xy 76.131038 95.509101) + (xy 75.959673 95.629092) + (xy 75.95967 95.629094) + (xy 75.955162 95.632251) + (xy 75.799451 95.787962) + (xy 75.673144 95.968347) + (xy 75.670821 95.973329) + (xy 75.670818 95.973334) + (xy 75.638362 96.042937) + (xy 75.58008 96.167924) + (xy 75.523085 96.380629) + (xy 75.503893 96.6) + (xy 75.523085 96.819371) + (xy 75.58008 97.032076) + (xy 75.582405 97.037061) + (xy 75.670818 97.226666) + (xy 75.670821 97.226671) + (xy 75.673144 97.231653) + (xy 75.799451 97.412038) + (xy 75.955162 97.567749) + (xy 76.135546 97.694056) + (xy 76.335124 97.78712) + (xy 76.547829 97.844115) + (xy 76.7672 97.863307) + (xy 76.986571 97.844115) + (xy 77.199276 97.78712) + (xy 77.398854 97.694056) + (xy 77.579238 97.567749) + (xy 77.734949 97.412038) + (xy 77.861256 97.231653) + (xy 77.863579 97.226671) + (xy 77.863582 97.226666) + (xy 77.951995 97.037061) + (xy 77.95432 97.032076) + (xy 78.011315 96.819371) + (xy 78.030507 96.6) + (xy 78.011315 96.380629) + (xy 78.009892 96.375319) + (xy 78.009891 96.375312) + (xy 78.002916 96.349281) + (xy 78.004606 96.278304) + (xy 78.035528 96.227576) + (xy 78.729747 95.533357) + (xy 78.738037 95.525813) + (xy 78.744518 95.5217) + (xy 78.791159 95.472032) + (xy 78.793913 95.469191) + (xy 78.813635 95.449469) + (xy 78.816112 95.446276) + (xy 78.823817 95.437255) + (xy 78.848659 95.4108) + (xy 78.854086 95.405021) + (xy 78.857907 95.398071) + (xy 78.863846 95.387268) + (xy 78.874702 95.370741) + (xy 78.882257 95.361002) + (xy 78.882258 95.361) + (xy 78.887114 95.35474) + (xy 78.904674 95.31416) + (xy 78.909891 95.303512) + (xy 78.927375 95.271709) + (xy 78.927376 95.271707) + (xy 78.931195 95.26476) + (xy 78.936233 95.245137) + (xy 78.942637 95.226434) + (xy 78.947533 95.21512) + (xy 78.947533 95.215119) + (xy 78.950681 95.207845) + (xy 78.95192 95.200022) + (xy 78.951923 95.200012) + (xy 78.957599 95.164176) + (xy 78.960005 95.152556) + (xy 78.969029 95.117409) + (xy 78.96903 95.117405) + (xy 78.971 95.10973) + (xy 78.971 95.105152) + (xy 78.998784 95.041441) + (xy 79.057842 95.002037) + (xy 79.128828 95.000818) + (xy 79.184506 95.033211) + (xy 80.378872 96.227577) + (xy 80.412898 96.289889) + (xy 80.411484 96.349283) + (xy 80.403085 96.380629) + (xy 80.383893 96.6) + (xy 80.403085 96.819371) + (xy 80.46008 97.032076) + (xy 80.462405 97.037061) + (xy 80.550818 97.226666) + (xy 80.550821 97.226671) + (xy 80.553144 97.231653) + (xy 80.679451 97.412038) + (xy 80.835162 97.567749) + (xy 81.015546 97.694056) + (xy 81.215124 97.78712) + (xy 81.427829 97.844115) + (xy 81.6472 97.863307) + (xy 81.866571 97.844115) + (xy 82.079276 97.78712) + (xy 82.278854 97.694056) + (xy 82.459238 97.567749) + (xy 82.614949 97.412038) + (xy 82.741256 97.231653) + (xy 82.743579 97.226671) + (xy 82.743582 97.226666) + (xy 82.831995 97.037061) + (xy 82.83432 97.032076) + (xy 82.891315 96.819371) + (xy 82.910507 96.6) + (xy 82.891315 96.380629) + (xy 82.83432 96.167924) + (xy 82.776038 96.042937) + (xy 82.743582 95.973334) + (xy 82.743579 95.973329) + (xy 82.741256 95.968347) + (xy 82.614949 95.787962) + (xy 82.459238 95.632251) + (xy 82.449139 95.625179) + (xy 82.379959 95.576739) + (xy 82.278854 95.505944) + (xy 82.079276 95.41288) + (xy 81.866571 95.355885) + (xy 81.6472 95.336693) + (xy 81.427829 95.355885) + (xy 81.422514 95.357309) + (xy 81.422515 95.357309) + (xy 81.396483 95.364284) + (xy 81.325506 95.362594) + (xy 81.274777 95.331672) + (xy 79.507905 93.5648) + (xy 79.473879 93.502488) + (xy 79.471 93.475705) + (xy 79.471 92.208834) + (xy 79.491002 92.140713) + (xy 79.544658 92.09422) + (xy 79.613446 92.083912) + (xy 79.720169 92.097962) + (xy 79.72017 92.097962) + (xy 79.724256 92.0985) + (xy 79.950744 92.0985) + (xy 79.95483 92.097962) + (xy 79.954831 92.097962) + (xy 80.064824 92.083481) + (xy 80.065027 92.085026) + (xy 80.109973 92.085026) + (xy 80.110176 92.083481) + (xy 80.220169 92.097962) + (xy 80.22017 92.097962) + (xy 80.224256 92.0985) + (xy 80.450744 92.0985) + (xy 80.45483 92.097962) + (xy 80.454831 92.097962) + (xy 80.564824 92.083481) + (xy 80.565027 92.085026) + (xy 80.609973 92.085026) + (xy 80.610176 92.083481) + (xy 80.720169 92.097962) + (xy 80.72017 92.097962) + (xy 80.724256 92.0985) + (xy 80.950744 92.0985) + (xy 80.95483 92.097962) + (xy 80.954831 92.097962) + (xy 81.012641 92.090351) + (xy 81.064824 92.083481) + (xy 81.072451 92.080322) + (xy 81.072454 92.080321) + (xy 81.135796 92.054084) + (xy 81.206768 92.024686) + (xy 81.328657 91.931157) + (xy 81.422186 91.809267) + (xy 81.480981 91.667324) + (xy 81.488204 91.61246) + (xy 81.516927 91.547533) + (xy 81.576192 91.508442) + (xy 81.647183 91.507597) + (xy 81.707362 91.545267) + (xy 81.73265 91.589031) + (xy 81.775246 91.716707) + (xy 81.866784 91.864631) + (xy 81.871966 91.869804) + (xy 81.984716 91.982358) + (xy 81.984721 91.982362) + (xy 81.989897 91.987529) + (xy 81.996127 91.991369) + (xy 81.996128 91.99137) + (xy 82.131113 92.074576) + (xy 82.13798 92.078809) + (xy 82.303091 92.133574) + (xy 82.309927 92.134274) + (xy 82.30993 92.134275) + (xy 82.357026 92.1391) + (xy 82.405828 92.1441) + (xy 83.104972 92.1441) + (xy 83.108218 92.143763) + (xy 83.108222 92.143763) + (xy 83.202135 92.134019) + (xy 83.202139 92.134018) + (xy 83.208993 92.133307) + (xy 83.215529 92.131126) + (xy 83.215531 92.131126) + (xy 83.362059 92.08224) + (xy 83.374007 92.078254) + (xy 83.521931 91.986716) + (xy 83.529174 91.979461) + (xy 83.530938 91.978495) + (xy 83.532841 91.976987) + (xy 83.533099 91.977313) + (xy 83.591454 91.945381) + (xy 83.662275 91.950382) + (xy 83.70737 91.979308) + (xy 83.710031 91.981964) + (xy 83.72144 91.990975) + (xy 83.856963 92.074512) + (xy 83.870141 92.080656) + (xy 84.021666 92.130915) + (xy 84.035032 92.133781) + (xy 84.12767 92.143272) + (xy 84.134085 92.1436) + (xy 84.208285 92.1436) + (xy 84.223524 92.139125) + (xy 84.224729 92.137735) + (xy 84.2264 92.130052) + (xy 84.2264 92.125485) + (xy 84.7344 92.125485) + (xy 84.738875 92.140724) + (xy 84.740265 92.141929) + (xy 84.747948 92.1436) + (xy 84.826666 92.1436) + (xy 84.833182 92.143263) + (xy 84.927032 92.133525) + (xy 84.940428 92.130632) + (xy 85.091853 92.080112) + (xy 85.105015 92.073947) + (xy 85.240392 91.990174) + (xy 85.25179 91.98114) + (xy 85.364263 91.868471) + (xy 85.373275 91.85706) + (xy 85.456812 91.721537) + (xy 85.462956 91.708359) + (xy 85.513215 91.556834) + (xy 85.516081 91.543468) + (xy 85.525572 91.45083) + (xy 85.5259 91.444415) + (xy 85.5259 91.432715) + (xy 85.521425 91.417476) + (xy 85.520035 91.416271) + (xy 85.512352 91.4146) + (xy 84.752515 91.4146) + (xy 84.737276 91.419075) + (xy 84.736071 91.420465) + (xy 84.7344 91.428148) + (xy 84.7344 92.125485) + (xy 84.2264 92.125485) + (xy 84.2264 90.888485) + (xy 84.7344 90.888485) + (xy 84.738875 90.903724) + (xy 84.740265 90.904929) + (xy 84.747948 90.9066) + (xy 85.507785 90.9066) + (xy 85.523024 90.902125) + (xy 85.524229 90.900735) + (xy 85.5259 90.893052) + (xy 85.5259 90.876834) + (xy 85.525563 90.870318) + (xy 85.515825 90.776468) + (xy 85.512932 90.763072) + (xy 85.462412 90.611647) + (xy 85.456247 90.598485) + (xy 85.372474 90.463108) + (xy 85.36344 90.45171) + (xy 85.250771 90.339237) + (xy 85.23936 90.330225) + (xy 85.103837 90.246688) + (xy 85.090659 90.240544) + (xy 84.939134 90.190285) + (xy 84.925768 90.187419) + (xy 84.83313 90.177928) + (xy 84.826715 90.1776) + (xy 84.752515 90.1776) + (xy 84.737276 90.182075) + (xy 84.736071 90.183465) + (xy 84.7344 90.191148) + (xy 84.7344 90.888485) + (xy 84.2264 90.888485) + (xy 84.2264 90.195715) + (xy 84.221925 90.180476) + (xy 84.220535 90.179271) + (xy 84.212852 90.1776) + (xy 84.134134 90.1776) + (xy 84.127618 90.177937) + (xy 84.033768 90.187675) + (xy 84.020372 90.190568) + (xy 83.868947 90.241088) + (xy 83.855785 90.247253) + (xy 83.720408 90.331026) + (xy 83.709006 90.340064) + (xy 83.707333 90.341739) + (xy 83.705907 90.342519) + (xy 83.703273 90.344607) + (xy 83.702916 90.344156) + (xy 83.645051 90.375819) + (xy 83.574231 90.370816) + (xy 83.529146 90.341899) + (xy 83.526085 90.338844) + (xy 83.520903 90.333671) + (xy 83.37282 90.242391) + (xy 83.284424 90.213071) + (xy 83.226065 90.172642) + (xy 83.198828 90.107078) + (xy 83.211361 90.037196) + (xy 83.247388 89.993517) + (xy 83.322104 89.936185) + (xy 83.328657 89.931157) + (xy 83.333686 89.924604) + (xy 83.404347 89.832515) + (xy 83.422186 89.809267) + (xy 83.480981 89.667324) + (xy 83.496 89.553244) + (xy 83.496 89.326756) + (xy 83.480981 89.212676) + (xy 83.482266 89.212507) + (xy 83.482265 89.167427) + (xy 83.480494 89.167194) + (xy 83.488292 89.10796) + (xy 83.486081 89.093778) + (xy 83.466716 89.088217) + (xy 83.406763 89.050189) + (xy 83.401533 89.043816) + (xy 83.380729 89.016704) + (xy 83.355128 88.950484) + (xy 83.369392 88.880935) + (xy 83.380729 88.863295) + (xy 83.401603 88.836092) + (xy 83.458942 88.794225) + (xy 83.466067 88.791901) + (xy 83.486313 88.785956) + (xy 83.488342 88.772417) + (xy 83.480494 88.712806) + (xy 83.482265 88.712573) + (xy 83.482266 88.667493) + (xy 83.480981 88.667324) + (xy 83.495462 88.557331) + (xy 83.495462 88.55733) + (xy 83.496 88.553244) + (xy 83.496 88.326756) + (xy 83.480981 88.212676) + (xy 83.482526 88.212473) + (xy 83.482526 88.167527) + (xy 83.480981 88.167324) + (xy 83.495462 88.057331) + (xy 83.495462 88.05733) + (xy 83.496 88.053244) + (xy 83.496 87.826756) + (xy 83.480981 87.712676) + (xy 83.482526 87.712473) + (xy 83.482526 87.667527) + (xy 83.480981 87.667324) + (xy 83.495462 87.557331) + (xy 83.495462 87.55733) + (xy 83.496 87.553244) + (xy 83.496 87.326756) + (xy 83.484741 87.241232) + (xy 83.480981 87.212676) + (xy 83.482526 87.212473) + (xy 83.482526 87.167527) + (xy 83.480981 87.167324) + (xy 83.495462 87.057331) + (xy 83.495462 87.05733) + (xy 83.496 87.053244) + (xy 83.496 86.826756) + (xy 83.480981 86.712676) + (xy 83.482526 86.712473) + (xy 83.482526 86.667527) + (xy 83.480981 86.667324) + (xy 83.495462 86.557331) + (xy 83.495462 86.55733) + (xy 83.496 86.553244) + (xy 83.496 86.326756) + (xy 83.480981 86.212676) + (xy 83.482526 86.212473) + (xy 83.482526 86.167527) + (xy 83.480981 86.167324) + (xy 83.495462 86.057331) + (xy 83.495462 86.05733) + (xy 83.496 86.053244) + (xy 83.496 85.826756) + (xy 83.495152 85.820311) + (xy 83.480981 85.712676) + (xy 83.482526 85.712473) + (xy 83.482526 85.667527) + (xy 83.480981 85.667324) + (xy 83.495462 85.557331) + (xy 83.495462 85.55733) + (xy 83.496 85.553244) + (xy 83.496 85.326756) + (xy 83.480981 85.212676) + (xy 83.482526 85.212473) + (xy 83.482526 85.167527) + (xy 83.480981 85.167324) + (xy 83.495462 85.057331) + (xy 83.495462 85.05733) + (xy 83.496 85.053244) + (xy 83.496 84.826756) + (xy 83.480981 84.712676) + (xy 83.482526 84.712473) + (xy 83.482526 84.667527) + (xy 83.480981 84.667324) + (xy 83.495462 84.557331) + (xy 83.495462 84.55733) + (xy 83.496 84.553244) + (xy 83.496 84.326756) + (xy 83.480981 84.212676) + (xy 83.482526 84.212473) + (xy 83.482526 84.167527) + (xy 83.480981 84.167324) + (xy 83.495462 84.057331) + (xy 83.495462 84.05733) + (xy 83.496 84.053244) + (xy 83.496 83.826756) + (xy 83.480981 83.712676) + (xy 83.469955 83.686055) + (xy 83.428214 83.585286) + (xy 83.422186 83.570732) + (xy 83.402215 83.544705) + (xy 83.376616 83.478485) + (xy 83.390882 83.408936) + (xy 83.413006 83.378985) + (xy 83.431616 83.360343) + (xy 83.503929 83.287903) + (xy 83.517159 83.26644) + (xy 83.591369 83.14605) + (xy 83.59137 83.146048) + (xy 83.595209 83.13982) + (xy 83.649974 82.974709) + (xy 83.65323 82.942935) + (xy 83.65753 82.900958) + (xy 83.6605 82.871972) + (xy 83.6605 82.172828) + (xy 83.6567 82.136204) + (xy 83.650419 82.075665) + (xy 83.650418 82.075661) + (xy 83.649707 82.068807) + (xy 83.594654 81.903793) + (xy 83.503116 81.755869) + (xy 83.495861 81.748626) + (xy 83.494895 81.746862) + (xy 83.493387 81.744959) + (xy 83.493713 81.744701) + (xy 83.461781 81.686346) + (xy 83.466782 81.615525) + (xy 83.495708 81.57043) + (xy 83.498364 81.567769) + (xy 83.507375 81.55636) + (xy 83.590912 81.420837) + (xy 83.597056 81.407659) + (xy 83.647315 81.256134) + (xy 83.650181 81.242768) + (xy 83.659672 81.15013) + (xy 83.66 81.143715) + (xy 83.66 81.069515) + (xy 83.655525 81.054276) + (xy 83.654135 81.053071) + (xy 83.646452 81.0514) + (xy 81.712115 81.0514) + (xy 81.696876 81.055875) + (xy 81.695671 81.057265) + (xy 81.694 81.064948) + (xy 81.694 81.143666) + (xy 81.694337 81.150182) + (xy 81.704075 81.244032) + (xy 81.706968 81.257428) + (xy 81.757488 81.408853) + (xy 81.763653 81.422015) + (xy 81.847426 81.557392) + (xy 81.856464 81.568794) + (xy 81.858139 81.570467) + (xy 81.858919 81.571893) + (xy 81.861007 81.574527) + (xy 81.860556 81.574884) + (xy 81.892219 81.632749) + (xy 81.887216 81.703569) + (xy 81.858299 81.748654) + (xy 81.85626 81.750697) + (xy 81.850071 81.756897) + (xy 81.846231 81.763127) + (xy 81.84623 81.763128) + (xy 81.787062 81.859116) + (xy 81.73429 81.906609) + (xy 81.679802 81.919) + (xy 81.618643 81.919) + (xy 81.550522 81.898998) + (xy 81.504029 81.845342) + (xy 81.493721 81.809446) + (xy 81.482059 81.720864) + (xy 81.480981 81.712676) + (xy 81.46692 81.678728) + (xy 81.433915 81.599049) + (xy 81.422186 81.570732) + (xy 81.328657 81.448843) + (xy 81.278272 81.410181) + (xy 81.249616 81.388193) + (xy 81.206767 81.355314) + (xy 81.064824 81.296519) + (xy 80.977261 81.284991) + (xy 80.954831 81.282038) + (xy 80.95483 81.282038) + (xy 80.950744 81.2815) + (xy 80.724256 81.2815) + (xy 80.72017 81.282038) + (xy 80.720169 81.282038) + (xy 80.610176 81.296519) + (xy 80.610007 81.295234) + (xy 80.564927 81.295235) + (xy 80.564694 81.297006) + (xy 80.50546 81.289208) + (xy 80.491278 81.291419) + (xy 80.485717 81.310784) + (xy 80.447689 81.370737) + (xy 80.441316 81.375967) + (xy 80.414204 81.396771) + (xy 80.347984 81.422372) + (xy 80.278435 81.408108) + (xy 80.260795 81.396771) + (xy 80.233592 81.375897) + (xy 80.191725 81.318558) + (xy 80.189401 81.311433) + (xy 80.182005 81.286245) + (xy 80.147378 81.232363) + (xy 80.147378 81.161366) + (xy 80.179179 81.10777) + (xy 81.291944 79.995005) + (xy 81.354256 79.960979) + (xy 81.381039 79.9581) + (xy 81.663664 79.9581) + (xy 81.680096 79.959176) + (xy 81.6864 79.960006) + (xy 81.751325 79.988726) + (xy 81.790419 80.047989) + (xy 81.791266 80.118981) + (xy 81.777216 80.151042) + (xy 81.763089 80.173961) + (xy 81.756944 80.187141) + (xy 81.706685 80.338666) + (xy 81.703819 80.352032) + (xy 81.694328 80.44467) + (xy 81.694 80.451085) + (xy 81.694 80.525285) + (xy 81.698475 80.540524) + (xy 81.699865 80.541729) + (xy 81.707548 80.5434) + (xy 82.404885 80.5434) + (xy 82.420124 80.538925) + (xy 82.421329 80.537535) + (xy 82.423 80.529852) + (xy 82.423 80.525285) + (xy 82.931 80.525285) + (xy 82.935475 80.540524) + (xy 82.936865 80.541729) + (xy 82.944548 80.5434) + (xy 83.641885 80.5434) + (xy 83.657124 80.538925) + (xy 83.658329 80.537535) + (xy 83.66 80.529852) + (xy 83.66 80.451134) + (xy 83.659663 80.444618) + (xy 83.649925 80.350768) + (xy 83.647032 80.337372) + (xy 83.596512 80.185947) + (xy 83.590347 80.172785) + (xy 83.506574 80.037408) + (xy 83.49754 80.02601) + (xy 83.384871 79.913537) + (xy 83.37346 79.904525) + (xy 83.237937 79.820988) + (xy 83.224759 79.814844) + (xy 83.073234 79.764585) + (xy 83.059868 79.761719) + (xy 82.96723 79.752228) + (xy 82.960815 79.7519) + (xy 82.949115 79.7519) + (xy 82.933876 79.756375) + (xy 82.932671 79.757765) + (xy 82.931 79.765448) + (xy 82.931 80.525285) + (xy 82.423 80.525285) + (xy 82.423 79.770015) + (xy 82.418525 79.754776) + (xy 82.395441 79.734773) + (xy 82.375993 79.724155) + (xy 82.341965 79.661844) + (xy 82.347026 79.591028) + (xy 82.375989 79.54596) + (xy 82.693744 79.228205) + (xy 82.756056 79.194179) + (xy 82.782839 79.1913) + (xy 82.874087 79.1913) + (xy 82.880539 79.189928) + (xy 82.880544 79.189928) + (xy 82.967487 79.171447) + (xy 83.060888 79.151594) + (xy 83.066919 79.148909) + (xy 83.229322 79.076603) + (xy 83.229324 79.076602) + (xy 83.235352 79.073918) + (xy 83.389853 78.961666) + (xy 83.51764 78.819744) + (xy 83.613127 78.654356) + (xy 83.672142 78.472728) + (xy 83.678321 78.413944) + (xy 83.691414 78.289365) + (xy 83.692104 78.2828) + (xy 83.684637 78.211759) + (xy 83.672832 78.099435) + (xy 83.672832 78.099433) + (xy 83.672142 78.092872) + (xy 83.613127 77.911244) + (xy 83.51764 77.745856) + (xy 83.389853 77.603934) + (xy 83.247306 77.500367) + (xy 83.240694 77.495563) + (xy 83.240693 77.495562) + (xy 83.235352 77.491682) + (xy 83.229324 77.488998) + (xy 83.229322 77.488997) + (xy 83.066919 77.416691) + (xy 83.066918 77.416691) + (xy 83.060888 77.414006) + (xy 82.965013 77.393627) + (xy 82.880544 77.375672) + (xy 82.880539 77.375672) + (xy 82.874087 77.3743) + (xy 82.683113 77.3743) + (xy 82.676661 77.375672) + (xy 82.676656 77.375672) + (xy 82.592187 77.393627) + (xy 82.496312 77.414006) + (xy 82.490282 77.416691) + (xy 82.490281 77.416691) + (xy 82.327878 77.488997) + (xy 82.327876 77.488998) + (xy 82.321848 77.491682) + (xy 82.316507 77.495562) + (xy 82.316506 77.495563) + (xy 82.281161 77.521243) + (xy 82.214294 77.545101) + (xy 82.145142 77.529021) + (xy 82.133039 77.521243) + (xy 82.097694 77.495563) + (xy 82.097693 77.495562) + (xy 82.092352 77.491682) + (xy 82.086324 77.488998) + (xy 82.086322 77.488997) + (xy 81.923919 77.416691) + (xy 81.923918 77.416691) + (xy 81.917888 77.414006) + (xy 81.822013 77.393627) + (xy 81.737544 77.375672) + (xy 81.737539 77.375672) + (xy 81.731087 77.3743) + (xy 81.540113 77.3743) + (xy 81.533661 77.375672) + (xy 81.533656 77.375672) + (xy 81.449187 77.393627) + (xy 81.353312 77.414006) + (xy 81.347282 77.416691) + (xy 81.347281 77.416691) + (xy 81.184878 77.488997) + (xy 81.184876 77.488998) + (xy 81.178848 77.491682) + (xy 81.173507 77.495562) + (xy 81.173506 77.495563) + (xy 81.166894 77.500367) + (xy 81.024347 77.603934) + (xy 80.89656 77.745856) + (xy 80.801073 77.911244) + (xy 80.793424 77.934786) + (xy 80.787733 77.9523) + (xy 80.747659 78.010906) + (xy 80.682263 78.038543) + (xy 80.612306 78.026436) + (xy 80.56 77.97843) + (xy 80.5419 77.913364) + (xy 80.5419 74.203195) + (xy 80.561902 74.135074) + (xy 80.578805 74.114099) + (xy 81.027301 73.665604) + (xy 81.089613 73.631579) + (xy 81.116396 73.6287) + (xy 81.172287 73.6287) + (xy 81.178739 73.627328) + (xy 81.178744 73.627328) + (xy 81.270797 73.607761) + (xy 81.359088 73.588994) + (xy 81.378422 73.580386) + (xy 81.527522 73.514003) + (xy 81.527524 73.514002) + (xy 81.533552 73.511318) + (xy 81.545278 73.502799) + (xy 81.610807 73.455189) + (xy 81.688053 73.399066) + (xy 81.733367 73.34874) + (xy 81.811421 73.262052) + (xy 81.811422 73.262051) + (xy 81.81584 73.257144) + (xy 81.911327 73.091756) + (xy 81.970342 72.910128) + (xy 81.990304 72.7202) + (xy 81.970342 72.530272) + (xy 81.92835 72.401035) + (xy 81.926322 72.330069) + (xy 81.962985 72.269271) + (xy 82.026697 72.237946) + (xy 82.048183 72.2361) + (xy 84.731833 72.2361) + (xy 84.743016 72.236627) + (xy 84.750509 72.238302) + (xy 84.758435 72.238053) + (xy 84.758436 72.238053) + (xy 84.818586 72.236162) + (xy 84.822545 72.2361) + (xy 84.850456 72.2361) + (xy 84.854391 72.235603) + (xy 84.854456 72.235595) + (xy 84.866293 72.234662) + (xy 84.898551 72.233648) + (xy 84.90257 72.233522) + (xy 84.910489 72.233273) + (xy 84.929943 72.227621) + (xy 84.9493 72.223613) + (xy 84.96153 72.222068) + (xy 84.961531 72.222068) + (xy 84.969397 72.221074) + (xy 84.976768 72.218155) + (xy 84.97677 72.218155) + (xy 85.010512 72.204796) + (xy 85.021742 72.200951) + (xy 85.056583 72.190829) + (xy 85.056584 72.190829) + (xy 85.064193 72.188618) + (xy 85.071012 72.184585) + (xy 85.071017 72.184583) + (xy 85.081628 72.178307) + (xy 85.099376 72.169612) + (xy 85.118217 72.162152) + (xy 85.153987 72.136164) + (xy 85.163907 72.129648) + (xy 85.195135 72.11118) + (xy 85.195138 72.111178) + (xy 85.201962 72.107142) + (xy 85.216283 72.092821) + (xy 85.231317 72.07998) + (xy 85.233031 72.078735) + (xy 85.247707 72.068072) + (xy 85.275898 72.033995) + (xy 85.283888 72.025216) + (xy 86.065355 71.243749) + (xy 86.127667 71.209723) + (xy 86.198482 71.214788) + (xy 86.255318 71.257335) + (xy 86.280129 71.323855) + (xy 86.28045 71.332844) + (xy 86.28045 105.134274) + (xy 86.278834 105.154387) + (xy 86.275306 105.176204) + (xy 86.276417 105.185108) + (xy 86.276417 105.185109) + (xy 86.280019 105.213971) + (xy 86.28045 105.218366) + (xy 86.28045 105.222013) + (xy 86.283616 105.244114) + (xy 86.284738 105.25195) + (xy 86.285024 105.254081) + (xy 86.289164 105.287261) + (xy 86.290169 105.290775) + (xy 86.290903 105.295005) + (xy 86.29587 105.329687) + (xy 86.299586 105.337859) + (xy 86.306644 105.353383) + (xy 86.313084 105.370883) + (xy 86.460141 105.884982) + (xy 86.463136 105.898041) + (xy 86.469912 105.936996) + (xy 86.47387 105.945052) + (xy 86.473871 105.945054) + (xy 86.49724 105.992614) + (xy 86.499159 105.996703) + (xy 86.524037 106.052284) + (xy 86.529547 106.058755) + (xy 86.530307 106.059912) + (xy 86.534146 106.067725) + (xy 86.540204 106.074344) + (xy 86.576219 106.113694) + (xy 86.579206 106.117078) + (xy 86.612646 106.156351) + (xy 86.618466 106.163186) + (xy 86.625965 106.16811) + (xy 86.625968 106.168112) + (xy 86.654374 106.186761) + (xy 86.663969 106.193728) + (xy 86.854289 106.34611) + (xy 87.007057 106.468426) + (xy 87.014117 106.474717) + (xy 87.018683 106.480747) + (xy 87.02589 106.486093) + (xy 87.025893 106.486096) + (xy 87.067978 106.517313) + (xy 87.071662 106.520154) + (xy 87.090817 106.53549) + (xy 87.094676 106.537766) + (xy 87.098365 106.540312) + (xy 87.098362 106.540317) + (xy 87.104277 106.544239) + (xy 87.135669 106.567525) + (xy 87.144092 106.570635) + (xy 87.144095 106.570637) + (xy 87.150358 106.57295) + (xy 87.17072 106.582618) + (xy 87.184507 106.59075) + (xy 87.193208 106.592957) + (xy 87.222957 106.600503) + (xy 87.235614 106.604432) + (xy 87.240658 106.606295) + (xy 87.262851 106.610777) + (xy 87.268832 106.612139) + (xy 87.299338 106.619877) + (xy 87.316988 106.624354) + (xy 87.31699 106.624354) + (xy 87.325694 106.626562) + (xy 87.33467 106.626238) + (xy 87.338865 106.626685) + (xy 87.350448 106.628468) + (xy 87.63258 106.685446) + (xy 87.644473 106.688458) + (xy 87.644821 106.688565) + (xy 87.65295 106.692381) + (xy 87.711184 106.701448) + (xy 87.716688 106.702432) + (xy 87.738336 106.706804) + (xy 87.74365 106.707107) + (xy 87.755831 106.708401) + (xy 87.758715 106.70885) + (xy 87.758723 106.708851) + (xy 87.763536 106.7096) + (xy 87.783718 106.7096) + (xy 87.790899 106.709805) + (xy 87.846932 106.713004) + (xy 87.855682 106.710979) + (xy 87.864621 106.710215) + (xy 87.864679 106.710896) + (xy 87.876029 106.7096) + (xy 124.216438 106.7096) + (xy 124.231069 106.710452) + (xy 124.258121 106.713615) + (xy 124.258123 106.713615) + (xy 124.267036 106.714657) + (xy 124.330757 106.703843) + (xy 124.333977 106.70334) + (xy 124.38905 106.695453) + (xy 124.389052 106.695453) + (xy 124.397937 106.69418) + (xy 124.434486 106.677562) + (xy 124.446691 106.672763) + (xy 124.642671 106.607258) + (xy 124.854657 106.536403) + (xy 124.859982 106.534968) + (xy 124.865029 106.534654) + (xy 124.927808 106.511991) + (xy 124.930647 106.511004) + (xy 124.952452 106.503716) + (xy 124.952457 106.503714) + (xy 124.956699 106.502296) + (xy 124.960702 106.500289) + (xy 124.96113 106.500111) + (xy 124.966678 106.497959) + (xy 124.99359 106.488243) + (xy 124.993592 106.488242) + (xy 125.002032 106.485195) + (xy 125.009273 106.479905) + (xy 125.009279 106.479902) + (xy 125.018146 106.473424) + (xy 125.035994 106.462534) + (xy 125.045903 106.457565) + (xy 125.045907 106.457562) + (xy 125.053932 106.453538) + (xy 125.079794 106.429478) + (xy 125.084849 106.425304) + (xy 125.084773 106.425215) + (xy 125.08848 106.42204) + (xy 125.092404 106.419174) + (xy 125.111267 106.40031) + (xy 125.114541 106.397152) + (xy 125.154006 106.360438) + (xy 125.160576 106.354326) + (xy 125.164422 106.347867) + (xy 125.170755 106.340823) + (xy 125.512719 105.998855) + (xy 125.525442 105.987735) + (xy 125.550124 105.968925) + (xy 125.597011 105.905303) + (xy 125.597582 105.904536) + (xy 125.629756 105.861605) + (xy 125.629757 105.861603) + (xy 125.634522 105.855245) + (xy 125.635164 105.853532) + (xy 125.636537 105.851669) + (xy 125.663363 105.778318) + (xy 125.663643 105.777563) + (xy 125.68565 105.718856) + (xy 125.688168 105.684976) + (xy 125.690235 105.669777) + (xy 125.69462 105.647714) + (xy 125.753005 105.353886) + (xy 125.755675 105.343276) + (xy 125.759231 105.3357) + (xy 125.761595 105.320517) + (xy 125.768288 105.277533) + (xy 125.769204 105.272361) + (xy 125.773007 105.253224) + (xy 125.773879 105.248837) + (xy 125.77412 105.244368) + (xy 125.774122 105.244355) + (xy 125.774135 105.244114) + (xy 125.77545 105.231538) + (xy 125.775701 105.229924) + (xy 125.77645 105.225114) + (xy 125.77645 105.20459) + (xy 125.776633 105.197801) + (xy 125.778276 105.167347) + (xy 125.77974 105.140223) + (xy 125.777688 105.131481) + (xy 125.776941 105.123051) + (xy 125.77645 105.111934) + (xy 125.77645 68.858274) + (xy 125.796452 68.790153) + (xy 125.850108 68.74366) + (xy 125.920382 68.733556) + (xy 125.984962 68.76305) + (xy 125.991545 68.769179) + (xy 126.564195 69.341829) + (xy 126.598221 69.404141) + (xy 126.6011 69.430924) + (xy 126.6011 70.816591) + (xy 126.581098 70.884712) + (xy 126.527442 70.931205) + (xy 126.521906 70.933503) + (xy 126.521304 70.933832) + (xy 126.512895 70.936985) + (xy 126.396339 71.024339) + (xy 126.308985 71.140895) + (xy 126.257855 71.277284) + (xy 126.2511 71.339466) + (xy 126.2511 73.135734) + (xy 126.257855 73.197916) + (xy 126.308985 73.334305) + (xy 126.396339 73.450861) + (xy 126.512895 73.538215) + (xy 126.649284 73.589345) + (xy 126.711466 73.5961) + (xy 128.507734 73.5961) + (xy 128.569916 73.589345) + (xy 128.706305 73.538215) + (xy 128.822861 73.450861) + (xy 128.910215 73.334305) + (xy 128.961345 73.197916) + (xy 128.963262 73.180269) + (xy 129.969801 73.180269) + (xy 129.970171 73.18709) + (xy 129.975695 73.237952) + (xy 129.979321 73.253204) + (xy 130.024476 73.373654) + (xy 130.033014 73.389249) + (xy 130.109515 73.491324) + (xy 130.122076 73.503885) + (xy 130.224151 73.580386) + (xy 130.239746 73.588924) + (xy 130.360194 73.634078) + (xy 130.375449 73.637705) + (xy 130.426314 73.643231) + (xy 130.433128 73.6436) + (xy 130.955685 73.6436) + (xy 130.970924 73.639125) + (xy 130.972129 73.637735) + (xy 130.9738 73.630052) + (xy 130.9738 72.407715) + (xy 130.969325 72.392476) + (xy 130.967935 72.391271) + (xy 130.960252 72.3896) + (xy 129.987916 72.3896) + (xy 129.972677 72.394075) + (xy 129.971472 72.395465) + (xy 129.969801 72.403148) + (xy 129.969801 73.180269) + (xy 128.963262 73.180269) + (xy 128.9681 73.135734) + (xy 128.9681 71.863485) + (xy 129.9698 71.863485) + (xy 129.974275 71.878724) + (xy 129.975665 71.879929) + (xy 129.983348 71.8816) + (xy 130.955685 71.8816) + (xy 130.970924 71.877125) + (xy 130.972129 71.875735) + (xy 130.9738 71.868052) + (xy 130.9738 70.645716) + (xy 130.969325 70.630477) + (xy 130.967935 70.629272) + (xy 130.960252 70.627601) + (xy 130.433131 70.627601) + (xy 130.42631 70.627971) + (xy 130.375448 70.633495) + (xy 130.360196 70.637121) + (xy 130.239746 70.682276) + (xy 130.224151 70.690814) + (xy 130.122076 70.767315) + (xy 130.109515 70.779876) + (xy 130.033014 70.881951) + (xy 130.024476 70.897546) + (xy 129.979322 71.017994) + (xy 129.975695 71.033249) + (xy 129.970169 71.084114) + (xy 129.9698 71.090928) + (xy 129.9698 71.863485) + (xy 128.9681 71.863485) + (xy 128.9681 71.339466) + (xy 128.961345 71.277284) + (xy 128.910215 71.140895) + (xy 128.822861 71.024339) + (xy 128.706305 70.936985) + (xy 128.697896 70.933833) + (xy 128.690025 70.929523) + (xy 128.690936 70.927859) + (xy 128.64311 70.891937) + (xy 128.618407 70.825376) + (xy 128.6181 70.816591) + (xy 128.6181 69.430926) + (xy 128.638102 69.362805) + (xy 128.655004 69.341831) + (xy 129.387429 68.609405) + (xy 129.449742 68.57538) + (xy 129.476525 68.5725) + (xy 131.247253 68.5725) + (xy 131.315374 68.592502) + (xy 131.361867 68.646158) + (xy 131.371971 68.716432) + (xy 131.366846 68.738167) + (xy 131.360763 68.756507) + (xy 131.357895 68.769886) + (xy 131.348228 68.864238) + (xy 131.3479 68.870655) + (xy 131.3479 69.120685) + (xy 131.352375 69.135924) + (xy 131.353765 69.137129) + (xy 131.361448 69.1388) + (xy 132.5714 69.1388) + (xy 132.639521 69.158802) + (xy 132.686014 69.212458) + (xy 132.6974 69.2648) + (xy 132.6974 69.5208) + (xy 132.677398 69.588921) + (xy 132.623742 69.635414) + (xy 132.5714 69.6468) + (xy 131.366016 69.6468) + (xy 131.350777 69.651275) + (xy 131.349572 69.652665) + (xy 131.347901 69.660348) + (xy 131.347901 69.914895) + (xy 131.348238 69.921414) + (xy 131.358157 70.017006) + (xy 131.361049 70.0304) + (xy 131.412488 70.184584) + (xy 131.418661 70.197762) + (xy 131.503963 70.335607) + (xy 131.512999 70.347008) + (xy 131.578532 70.412427) + (xy 131.612611 70.47471) + (xy 131.607608 70.54553) + (xy 131.565111 70.602402) + (xy 131.516712 70.620502) + (xy 131.517298 70.622496) + (xy 131.484676 70.632075) + (xy 131.483471 70.633465) + (xy 131.4818 70.641148) + (xy 131.4818 73.625484) + (xy 131.486275 73.640723) + (xy 131.487665 73.641928) + (xy 131.495348 73.643599) + (xy 132.022469 73.643599) + (xy 132.02929 73.643229) + (xy 132.080152 73.637705) + (xy 132.095404 73.634079) + (xy 132.215854 73.588924) + (xy 132.231448 73.580386) + (xy 132.301818 73.527647) + (xy 132.368324 73.502799) + (xy 132.437707 73.517852) + (xy 132.452948 73.527647) + (xy 132.531095 73.586215) + (xy 132.539503 73.589367) + (xy 132.660086 73.634572) + (xy 132.660089 73.634573) + (xy 132.667484 73.637345) + (xy 132.673253 73.637972) + (xy 132.734091 73.672726) + (xy 132.766913 73.735681) + (xy 132.7693 73.760093) + (xy 132.7693 76.8011) + (xy 132.749298 76.869221) + (xy 132.695642 76.915714) + (xy 132.6433 76.9271) + (xy 131.579666 76.9271) + (xy 131.517484 76.933855) + (xy 131.381095 76.984985) + (xy 131.264539 77.072339) + (xy 131.177185 77.188895) + (xy 131.126055 77.325284) + (xy 131.1193 77.387466) + (xy 131.1193 79.483734) + (xy 131.126055 79.545916) + (xy 131.177185 79.682305) + (xy 131.264539 79.798861) + (xy 131.381095 79.886215) + (xy 131.517484 79.937345) + (xy 131.579666 79.9441) + (xy 132.4463 79.9441) + (xy 132.514421 79.964102) + (xy 132.560914 80.017758) + (xy 132.5723 80.0701) + (xy 132.5723 80.712316) + (xy 132.565893 80.751983) + (xy 132.562982 80.760761) + (xy 132.545326 80.813991) + (xy 132.544626 80.820827) + (xy 132.544625 80.82083) + (xy 132.542134 80.845145) + (xy 132.5348 80.916728) + (xy 132.5348 81.490872) + (xy 132.535137 81.494118) + (xy 132.535137 81.494122) + (xy 132.538735 81.528799) + (xy 132.545593 81.594893) + (xy 132.547392 81.600285) + (xy 132.5501 81.625649) + (xy 132.5501 82.887321) + (xy 132.530098 82.955442) + (xy 132.476442 83.001935) + (xy 132.463977 83.006844) + (xy 132.366607 83.03933) + (xy 132.366605 83.039331) + (xy 132.359654 83.04165) + (xy 132.209252 83.134722) + (xy 132.084295 83.259897) + (xy 132.080455 83.266127) + (xy 132.080454 83.266128) + (xy 132.032849 83.343358) + (xy 131.991485 83.410462) + (xy 131.978755 83.448843) + (xy 131.940499 83.564182) + (xy 131.935803 83.578339) + (xy 131.9251 83.6828) + (xy 131.9251 83.7523) + (xy 131.905098 83.820421) + (xy 131.851442 83.866914) + (xy 131.7991 83.8783) + (xy 131.552033 83.8783) + (xy 131.505343 83.86933) + (xy 131.385549 83.821537) + (xy 131.38018 83.819395) + (xy 131.180366 83.779649) + (xy 131.174592 83.779573) + (xy 131.174588 83.779573) + (xy 131.071452 83.778224) + (xy 130.976655 83.776983) + (xy 130.970958 83.777962) + (xy 130.970957 83.777962) + (xy 130.781567 83.810505) + (xy 130.77587 83.811484) + (xy 130.584734 83.881998) + (xy 130.409649 83.986163) + (xy 130.256478 84.12049) + (xy 130.252911 84.125015) + (xy 130.252906 84.12502) + (xy 130.200546 84.191439) + (xy 130.130351 84.280481) + (xy 130.127662 84.285592) + (xy 130.12766 84.285595) + (xy 130.103836 84.330878) + (xy 130.035492 84.460778) + (xy 129.975078 84.655343) + (xy 129.951132 84.857659) + (xy 129.964457 85.060951) + (xy 130.014605 85.25841) + (xy 130.099898 85.443424) + (xy 130.217479 85.609797) + (xy 130.245159 85.636762) + (xy 130.355847 85.744589) + (xy 130.36341 85.751957) + (xy 130.368206 85.755162) + (xy 130.368209 85.755164) + (xy 130.465709 85.820311) + (xy 130.532803 85.865142) + (xy 130.538106 85.86742) + (xy 130.538109 85.867422) + (xy 130.630569 85.907146) + (xy 130.719987 85.945563) + (xy 130.76168 85.954997) + (xy 130.913055 85.98925) + (xy 130.91306 85.989251) + (xy 130.918692 85.990525) + (xy 130.924463 85.990752) + (xy 130.924465 85.990752) + (xy 130.98747 85.993227) + (xy 131.122263 85.998523) + (xy 131.323883 85.96929) + (xy 131.329347 85.967435) + (xy 131.329352 85.967434) + (xy 131.516799 85.903804) + (xy 131.517107 85.904711) + (xy 131.561381 85.8953) + (xy 131.914517 85.8953) + (xy 131.982638 85.915302) + (xy 132.021661 85.954997) + (xy 132.048596 85.998523) + (xy 132.085122 86.057548) + (xy 132.210297 86.182505) + (xy 132.216527 86.186345) + (xy 132.216528 86.186346) + (xy 132.353888 86.271016) + (xy 132.360862 86.275315) + (xy 132.440605 86.301764) + (xy 132.522211 86.328832) + (xy 132.522213 86.328832) + (xy 132.528739 86.330997) + (xy 132.535575 86.331697) + (xy 132.535578 86.331698) + (xy 132.578631 86.336109) + (xy 132.6332 86.3417) + (xy 132.6741 86.3417) + (xy 132.742221 86.361702) + (xy 132.788714 86.415358) + (xy 132.8001 86.4677) + (xy 132.8001 88.0759) + (xy 132.780098 88.144021) + (xy 132.726442 88.190514) + (xy 132.6741 88.2019) + (xy 132.451866 88.2019) + (xy 132.389684 88.208655) + (xy 132.253295 88.259785) + (xy 132.136739 88.347139) + (xy 132.049385 88.463695) + (xy 131.998255 88.600084) + (xy 131.9915 88.662266) + (xy 131.9915 90.458534) + (xy 131.998255 90.520716) + (xy 132.049385 90.657105) + (xy 132.136739 90.773661) + (xy 132.253295 90.861015) + (xy 132.389684 90.912145) + (xy 132.451866 90.9189) + (xy 134.248134 90.9189) + (xy 134.310316 90.912145) + (xy 134.446705 90.861015) + (xy 134.563261 90.773661) + (xy 134.650615 90.657105) + (xy 134.701745 90.520716) + (xy 134.7085 90.458534) + (xy 134.7085 90.455069) + (xy 137.275201 90.455069) + (xy 137.275571 90.46189) + (xy 137.281095 90.512752) + (xy 137.284721 90.528004) + (xy 137.329876 90.648454) + (xy 137.338414 90.664049) + (xy 137.414915 90.766124) + (xy 137.427476 90.778685) + (xy 137.529551 90.855186) + (xy 137.545146 90.863724) + (xy 137.665594 90.908878) + (xy 137.680849 90.912505) + (xy 137.731714 90.918031) + (xy 137.738528 90.9184) + (xy 138.361085 90.9184) + (xy 138.376324 90.913925) + (xy 138.377529 90.912535) + (xy 138.3792 90.904852) + (xy 138.3792 90.900284) + (xy 138.8872 90.900284) + (xy 138.891675 90.915523) + (xy 138.893065 90.916728) + (xy 138.900748 90.918399) + (xy 139.527869 90.918399) + (xy 139.53469 90.918029) + (xy 139.585552 90.912505) + (xy 139.600804 90.908879) + (xy 139.721254 90.863724) + (xy 139.736849 90.855186) + (xy 139.838924 90.778685) + (xy 139.851485 90.766124) + (xy 139.927986 90.664049) + (xy 139.936524 90.648454) + (xy 139.981678 90.528006) + (xy 139.985305 90.512751) + (xy 139.990831 90.461886) + (xy 139.9912 90.455072) + (xy 139.9912 89.832515) + (xy 139.986725 89.817276) + (xy 139.985335 89.816071) + (xy 139.977652 89.8144) + (xy 138.905315 89.8144) + (xy 138.890076 89.818875) + (xy 138.888871 89.820265) + (xy 138.8872 89.827948) + (xy 138.8872 90.900284) + (xy 138.3792 90.900284) + (xy 138.3792 89.832515) + (xy 138.374725 89.817276) + (xy 138.373335 89.816071) + (xy 138.365652 89.8144) + (xy 137.293316 89.8144) + (xy 137.278077 89.818875) + (xy 137.276872 89.820265) + (xy 137.275201 89.827948) + (xy 137.275201 90.455069) + (xy 134.7085 90.455069) + (xy 134.7085 89.288285) + (xy 137.2752 89.288285) + (xy 137.279675 89.303524) + (xy 137.281065 89.304729) + (xy 137.288748 89.3064) + (xy 138.361085 89.3064) + (xy 138.376324 89.301925) + (xy 138.377529 89.300535) + (xy 138.3792 89.292852) + (xy 138.3792 89.288285) + (xy 138.8872 89.288285) + (xy 138.891675 89.303524) + (xy 138.893065 89.304729) + (xy 138.900748 89.3064) + (xy 139.973084 89.3064) + (xy 139.988323 89.301925) + (xy 139.989528 89.300535) + (xy 139.991199 89.292852) + (xy 139.991199 88.665731) + (xy 139.990829 88.65891) + (xy 139.985305 88.608048) + (xy 139.981679 88.592796) + (xy 139.936524 88.472346) + (xy 139.927986 88.456751) + (xy 139.851485 88.354676) + (xy 139.838924 88.342115) + (xy 139.736849 88.265614) + (xy 139.721254 88.257076) + (xy 139.600806 88.211922) + (xy 139.585551 88.208295) + (xy 139.534686 88.202769) + (xy 139.527872 88.2024) + (xy 138.905315 88.2024) + (xy 138.890076 88.206875) + (xy 138.888871 88.208265) + (xy 138.8872 88.215948) + (xy 138.8872 89.288285) + (xy 138.3792 89.288285) + (xy 138.3792 88.220516) + (xy 138.374725 88.205277) + (xy 138.373335 88.204072) + (xy 138.365652 88.202401) + (xy 137.738531 88.202401) + (xy 137.73171 88.202771) + (xy 137.680848 88.208295) + (xy 137.665596 88.211921) + (xy 137.545146 88.257076) + (xy 137.529551 88.265614) + (xy 137.427476 88.342115) + (xy 137.414915 88.354676) + (xy 137.338414 88.456751) + (xy 137.329876 88.472346) + (xy 137.284722 88.592794) + (xy 137.281095 88.608049) + (xy 137.275569 88.658914) + (xy 137.2752 88.665728) + (xy 137.2752 89.288285) + (xy 134.7085 89.288285) + (xy 134.7085 88.662266) + (xy 134.701745 88.600084) + (xy 134.650615 88.463695) + (xy 134.563261 88.347139) + (xy 134.446705 88.259785) + (xy 134.434848 88.25534) + (xy 134.39887 88.241852) + (xy 134.342105 88.19921) + (xy 134.317406 88.132648) + (xy 134.3171 88.12387) + (xy 134.3171 86.4677) + (xy 134.337102 86.399579) + (xy 134.390758 86.353086) + (xy 134.4431 86.3417) + (xy 134.484 86.3417) + (xy 134.487246 86.341363) + (xy 134.48725 86.341363) + (xy 134.582908 86.331438) + (xy 134.582912 86.331437) + (xy 134.589766 86.330726) + (xy 134.596302 86.328545) + (xy 134.596304 86.328545) + (xy 134.728406 86.284472) + (xy 134.757546 86.27475) + (xy 134.907948 86.181678) + (xy 135.032905 86.056503) + (xy 135.068645 85.998523) + (xy 135.121875 85.912168) + (xy 135.121876 85.912166) + (xy 135.125715 85.905938) + (xy 135.181397 85.738061) + (xy 135.1921 85.6336) + (xy 135.1921 85.630295) + (xy 137.025601 85.630295) + (xy 137.025938 85.636814) + (xy 137.035857 85.732406) + (xy 137.038749 85.7458) + (xy 137.090188 85.899984) + (xy 137.096361 85.913162) + (xy 137.181663 86.051007) + (xy 137.190699 86.062408) + (xy 137.305429 86.176939) + (xy 137.31684 86.185951) + (xy 137.454843 86.271016) + (xy 137.468024 86.277163) + (xy 137.62231 86.328338) + (xy 137.635686 86.331205) + (xy 137.730038 86.340872) + (xy 137.736454 86.3412) + (xy 138.386485 86.3412) + (xy 138.401724 86.336725) + (xy 138.402929 86.335335) + (xy 138.4046 86.327652) + (xy 138.4046 86.323084) + (xy 138.9126 86.323084) + (xy 138.917075 86.338323) + (xy 138.918465 86.339528) + (xy 138.926148 86.341199) + (xy 139.580695 86.341199) + (xy 139.587214 86.340862) + (xy 139.682806 86.330943) + (xy 139.6962 86.328051) + (xy 139.850384 86.276612) + (xy 139.863562 86.270439) + (xy 140.001407 86.185137) + (xy 140.012808 86.176101) + (xy 140.127339 86.061371) + (xy 140.136351 86.04996) + (xy 140.221416 85.911957) + (xy 140.227563 85.898776) + (xy 140.278738 85.74449) + (xy 140.281605 85.731114) + (xy 140.291272 85.636762) + (xy 140.2916 85.630346) + (xy 140.2916 84.930315) + (xy 140.287125 84.915076) + (xy 140.285735 84.913871) + (xy 140.278052 84.9122) + (xy 138.930715 84.9122) + (xy 138.915476 84.916675) + (xy 138.914271 84.918065) + (xy 138.9126 84.925748) + (xy 138.9126 86.323084) + (xy 138.4046 86.323084) + (xy 138.4046 84.930315) + (xy 138.400125 84.915076) + (xy 138.398735 84.913871) + (xy 138.391052 84.9122) + (xy 137.043716 84.9122) + (xy 137.028477 84.916675) + (xy 137.027272 84.918065) + (xy 137.025601 84.925748) + (xy 137.025601 85.630295) + (xy 135.1921 85.630295) + (xy 135.1921 84.386085) + (xy 137.0256 84.386085) + (xy 137.030075 84.401324) + (xy 137.031465 84.402529) + (xy 137.039148 84.4042) + (xy 138.386485 84.4042) + (xy 138.401724 84.399725) + (xy 138.402929 84.398335) + (xy 138.4046 84.390652) + (xy 138.4046 84.386085) + (xy 138.9126 84.386085) + (xy 138.917075 84.401324) + (xy 138.918465 84.402529) + (xy 138.926148 84.4042) + (xy 140.273484 84.4042) + (xy 140.288723 84.399725) + (xy 140.289928 84.398335) + (xy 140.291599 84.390652) + (xy 140.291599 83.686105) + (xy 140.291262 83.679586) + (xy 140.281343 83.583994) + (xy 140.278451 83.5706) + (xy 140.227012 83.416416) + (xy 140.220839 83.403238) + (xy 140.135537 83.265393) + (xy 140.126501 83.253992) + (xy 140.011771 83.139461) + (xy 140.00036 83.130449) + (xy 139.862357 83.045384) + (xy 139.849176 83.039237) + (xy 139.69489 82.988062) + (xy 139.681514 82.985195) + (xy 139.587162 82.975528) + (xy 139.580745 82.9752) + (xy 138.930715 82.9752) + (xy 138.915476 82.979675) + (xy 138.914271 82.981065) + (xy 138.9126 82.988748) + (xy 138.9126 84.386085) + (xy 138.4046 84.386085) + (xy 138.4046 82.993316) + (xy 138.400125 82.978077) + (xy 138.398735 82.976872) + (xy 138.391052 82.975201) + (xy 137.736505 82.975201) + (xy 137.729986 82.975538) + (xy 137.634394 82.985457) + (xy 137.621 82.988349) + (xy 137.466816 83.039788) + (xy 137.453638 83.045961) + (xy 137.315793 83.131263) + (xy 137.304392 83.140299) + (xy 137.189861 83.255029) + (xy 137.180849 83.26644) + (xy 137.095784 83.404443) + (xy 137.089637 83.417624) + (xy 137.038462 83.57191) + (xy 137.035595 83.585286) + (xy 137.025928 83.679638) + (xy 137.0256 83.686055) + (xy 137.0256 84.386085) + (xy 135.1921 84.386085) + (xy 135.1921 83.6828) + (xy 135.191763 83.67955) + (xy 135.181838 83.583892) + (xy 135.181837 83.583888) + (xy 135.181126 83.577034) + (xy 135.136681 83.443815) + (xy 135.127468 83.416202) + (xy 135.12515 83.409254) + (xy 135.032078 83.258852) + (xy 134.906903 83.133895) + (xy 134.900672 83.130054) + (xy 134.762568 83.044925) + (xy 134.762566 83.044924) + (xy 134.756338 83.041085) + (xy 134.653433 83.006953) + (xy 134.595073 82.966522) + (xy 134.567836 82.900958) + (xy 134.5671 82.88736) + (xy 134.5671 82.255797) + (xy 134.587102 82.187676) + (xy 134.640758 82.141183) + (xy 134.711032 82.131079) + (xy 134.732767 82.136204) + (xy 134.847065 82.174115) + (xy 134.860432 82.176981) + (xy 134.95307 82.186472) + (xy 134.959485 82.1868) + (xy 135.033685 82.1868) + (xy 135.048924 82.182325) + (xy 135.050129 82.180935) + (xy 135.0518 82.173252) + (xy 135.0518 82.168685) + (xy 135.5598 82.168685) + (xy 135.564275 82.183924) + (xy 135.565665 82.185129) + (xy 135.573348 82.1868) + (xy 135.652066 82.1868) + (xy 135.658582 82.186463) + (xy 135.752432 82.176725) + (xy 135.765828 82.173832) + (xy 135.917253 82.123312) + (xy 135.930415 82.117147) + (xy 136.065792 82.033374) + (xy 136.07719 82.02434) + (xy 136.189663 81.911671) + (xy 136.198675 81.90026) + (xy 136.282212 81.764737) + (xy 136.288356 81.751559) + (xy 136.338615 81.600034) + (xy 136.341481 81.586668) + (xy 136.350972 81.49403) + (xy 136.3513 81.487615) + (xy 136.3513 81.475915) + (xy 136.346825 81.460676) + (xy 136.345435 81.459471) + (xy 136.337752 81.4578) + (xy 135.577915 81.4578) + (xy 135.562676 81.462275) + (xy 135.561471 81.463665) + (xy 135.5598 81.471348) + (xy 135.5598 82.168685) + (xy 135.0518 82.168685) + (xy 135.0518 80.931685) + (xy 135.5598 80.931685) + (xy 135.564275 80.946924) + (xy 135.565665 80.948129) + (xy 135.573348 80.9498) + (xy 136.333185 80.9498) + (xy 136.348424 80.945325) + (xy 136.349629 80.943935) + (xy 136.3513 80.936252) + (xy 136.3513 80.920034) + (xy 136.350963 80.913518) + (xy 136.341225 80.819668) + (xy 136.338332 80.806272) + (xy 136.287812 80.654847) + (xy 136.281647 80.641685) + (xy 136.197874 80.506308) + (xy 136.18884 80.49491) + (xy 136.076171 80.382437) + (xy 136.06476 80.373425) + (xy 135.929237 80.289888) + (xy 135.916059 80.283744) + (xy 135.764534 80.233485) + (xy 135.751168 80.230619) + (xy 135.65853 80.221128) + (xy 135.652115 80.2208) + (xy 135.577915 80.2208) + (xy 135.562676 80.225275) + (xy 135.561471 80.226665) + (xy 135.5598 80.234348) + (xy 135.5598 80.931685) + (xy 135.0518 80.931685) + (xy 135.0518 80.238915) + (xy 135.047325 80.223676) + (xy 135.045935 80.222471) + (xy 135.038252 80.2208) + (xy 134.959534 80.2208) + (xy 134.953018 80.221137) + (xy 134.859168 80.230875) + (xy 134.845771 80.233768) + (xy 134.755176 80.263993) + (xy 134.684226 80.266577) + (xy 134.623142 80.230393) + (xy 134.591318 80.166929) + (xy 134.5893 80.144469) + (xy 134.5893 80.0701) + (xy 134.609302 80.001979) + (xy 134.662958 79.955486) + (xy 134.7153 79.9441) + (xy 135.475934 79.9441) + (xy 135.538116 79.937345) + (xy 135.674505 79.886215) + (xy 135.791061 79.798861) + (xy 135.878415 79.682305) + (xy 135.929545 79.545916) + (xy 135.9363 79.483734) + (xy 135.9363 77.387466) + (xy 135.929545 77.325284) + (xy 135.878415 77.188895) + (xy 135.791061 77.072339) + (xy 135.674505 76.984985) + (xy 135.538116 76.933855) + (xy 135.475934 76.9271) + (xy 134.4123 76.9271) + (xy 134.344179 76.907098) + (xy 134.297686 76.853442) + (xy 134.2863 76.8011) + (xy 134.2863 73.760093) + (xy 134.306302 73.691972) + (xy 134.359958 73.645479) + (xy 134.381563 73.638057) + (xy 134.388116 73.637345) + (xy 134.395511 73.634573) + (xy 134.395514 73.634572) + (xy 134.516097 73.589367) + (xy 134.524505 73.586215) + (xy 134.532283 73.580386) + (xy 134.602235 73.52796) + (xy 134.668742 73.503112) + (xy 134.738124 73.518165) + (xy 134.753365 73.52796) + (xy 134.823317 73.580386) + (xy 134.831095 73.586215) + (xy 134.967484 73.637345) + (xy 135.029666 73.6441) + (xy 136.625934 73.6441) + (xy 136.688116 73.637345) + (xy 136.824505 73.586215) + (xy 136.941061 73.498861) + (xy 137.028415 73.382305) + (xy 137.079545 73.245916) + (xy 137.0863 73.183734) + (xy 137.0863 71.087466) + (xy 137.079545 71.025284) + (xy 137.028415 70.888895) + (xy 136.941061 70.772339) + (xy 136.885098 70.730397) + (xy 136.842583 70.673538) + (xy 136.835264 70.641866) + (xy 136.832109 70.609688) + (xy 136.831987 70.608374) + (xy 136.824423 70.521919) + (xy 136.823887 70.515787) + (xy 136.8224 70.510668) + (xy 136.82188 70.505367) + (xy 136.795018 70.416394) + (xy 136.794662 70.415194) + (xy 136.792596 70.408083) + (xy 136.768709 70.325863) + (xy 136.766255 70.321129) + (xy 136.764716 70.316031) + (xy 136.721116 70.234031) + (xy 136.720502 70.232863) + (xy 136.680526 70.155741) + (xy 136.680525 70.15574) + (xy 136.677692 70.150274) + (xy 136.674369 70.146111) + (xy 136.671866 70.141404) + (xy 136.613045 70.069282) + (xy 136.612354 70.068426) + (xy 136.581062 70.029227) + (xy 136.578558 70.026723) + (xy 136.577916 70.026005) + (xy 136.574215 70.021672) + (xy 136.546865 69.988138) + (xy 136.511533 69.958909) + (xy 136.502763 69.950928) + (xy 136.140756 69.588921) + (xy 135.651305 69.099471) + (xy 135.61728 69.037158) + (xy 135.6144 69.010375) + (xy 135.6144 68.8674) + (xy 135.609128 68.816587) + (xy 135.604138 68.768492) + (xy 135.604137 68.768488) + (xy 135.603426 68.761634) + (xy 135.59743 68.74366) + (xy 135.549765 68.600794) + (xy 135.54745 68.593854) + (xy 135.543599 68.587632) + (xy 135.540493 68.581) + (xy 135.542601 68.580013) + (xy 135.5269 68.524813) + (xy 135.5269 67.854442) + (xy 135.527637 67.840835) + (xy 135.531059 67.809337) + (xy 135.531059 67.809332) + (xy 135.531724 67.803211) + (xy 135.52735 67.753209) + (xy 135.527021 67.748384) + (xy 135.5269 67.745913) + (xy 135.5269 67.742831) + (xy 135.522709 67.700089) + (xy 135.522587 67.698774) + (xy 135.515023 67.612319) + (xy 135.514487 67.606187) + (xy 135.513 67.601068) + (xy 135.51248 67.595767) + (xy 135.485618 67.506794) + (xy 135.485262 67.505594) + (xy 135.477738 67.479696) + (xy 135.459309 67.416263) + (xy 135.456855 67.411529) + (xy 135.455316 67.406431) + (xy 135.411716 67.324431) + (xy 135.411102 67.323263) + (xy 135.371126 67.246141) + (xy 135.371125 67.24614) + (xy 135.368292 67.240674) + (xy 135.364969 67.236511) + (xy 135.362466 67.231804) + (xy 135.303645 67.159682) + (xy 135.302954 67.158826) + (xy 135.271662 67.119627) + (xy 135.269158 67.117123) + (xy 135.268516 67.116405) + (xy 135.264815 67.112072) + (xy 135.237465 67.078538) + (xy 135.202142 67.049316) + (xy 135.193363 67.041328) + (xy 135.04665 66.894616) + (xy 135.037548 66.884472) + (xy 135.017697 66.859782) + (xy 135.017696 66.859781) + (xy 135.013832 66.854975) + (xy 134.975378 66.822708) + (xy 134.971731 66.819528) + (xy 134.969919 66.817885) + (xy 134.967725 66.815691) + (xy 134.934451 66.788358) + (xy 134.933653 66.787696) + (xy 134.862326 66.727846) + (xy 134.857656 66.725278) + (xy 134.853539 66.721897) + (xy 134.771714 66.678023) + (xy 134.770555 66.677394) + (xy 134.694419 66.635538) + (xy 134.694411 66.635535) + (xy 134.689013 66.632567) + (xy 134.683931 66.630955) + (xy 134.679237 66.628438) + (xy 134.590269 66.601238) + (xy 134.589241 66.600918) + (xy 134.500494 66.572765) + (xy 134.495198 66.572171) + (xy 134.490102 66.570613) + (xy 134.397543 66.56121) + (xy 134.396407 66.561089) + (xy 134.362792 66.557319) + (xy 134.35007 66.555892) + (xy 134.350066 66.555892) + (xy 134.346573 66.5555) + (xy 134.343046 66.5555) + (xy 134.342061 66.555445) + (xy 134.336381 66.554998) + (xy 134.306975 66.552011) + (xy 134.299463 66.551248) + (xy 134.299461 66.551248) + (xy 134.293338 66.550626) + (xy 134.251059 66.554623) + (xy 134.247691 66.554941) + (xy 134.235833 66.5555) + (xy 129.068442 66.5555) + (xy 129.054835 66.554763) + (xy 129.023337 66.551341) + (xy 129.023332 66.551341) + (xy 129.017211 66.550676) + (xy 128.999211 66.552251) + (xy 128.967209 66.55505) + (xy 128.962384 66.555379) + (xy 128.959913 66.5555) + (xy 128.956831 66.5555) + (xy 128.934363 66.557703) + (xy 128.914089 66.559691) + (xy 128.912774 66.559813) + (xy 128.880513 66.562636) + (xy 128.820187 66.567913) + (xy 128.815068 66.5694) + (xy 128.809767 66.56992) + (xy 128.803862 66.571703) + (xy 128.803861 66.571703) + (xy 128.784507 66.577546) + (xy 128.720794 66.596782) + (xy 128.719654 66.59712) + (xy 128.630263 66.623091) + (xy 128.625529 66.625545) + (xy 128.620431 66.627084) + (xy 128.614987 66.629978) + (xy 128.614986 66.629979) + (xy 128.538431 66.670684) + (xy 128.537263 66.671298) + (xy 128.454674 66.714108) + (xy 128.450511 66.717431) + (xy 128.445804 66.719934) + (xy 128.373682 66.778755) + (xy 128.372826 66.779446) + (xy 128.333627 66.810738) + (xy 128.331123 66.813242) + (xy 128.330405 66.813884) + (xy 128.326072 66.817585) + (xy 128.292538 66.844935) + (xy 128.288611 66.849682) + (xy 128.288609 66.849684) + (xy 128.263313 66.880262) + (xy 128.255323 66.889042) + (xy 127.698695 67.44567) + (xy 127.636383 67.479696) + (xy 127.565568 67.474631) + (xy 127.520505 67.44567) + (xy 125.978855 65.904021) + (xy 125.969753 65.893878) + (xy 125.949897 65.869182) + (xy 125.946032 65.864375) + (xy 125.907578 65.832108) + (xy 125.903931 65.828928) + (xy 125.902119 65.827285) + (xy 125.899925 65.825091) + (xy 125.866651 65.797758) + (xy 125.865853 65.797096) + (xy 125.794526 65.737246) + (xy 125.789856 65.734678) + (xy 125.785739 65.731297) + (xy 125.703914 65.687423) + (xy 125.702755 65.686794) + (xy 125.626619 65.644938) + (xy 125.626611 65.644935) + (xy 125.621213 65.641967) + (xy 125.616131 65.640355) + (xy 125.611437 65.637838) + (xy 125.522469 65.610638) + (xy 125.521441 65.610318) + (xy 125.432694 65.582165) + (xy 125.427398 65.581571) + (xy 125.422302 65.580013) + (xy 125.329743 65.57061) + (xy 125.328607 65.570489) + (xy 125.294992 65.566719) + (xy 125.28227 65.565292) + (xy 125.282266 65.565292) + (xy 125.278773 65.5649) + (xy 125.275246 65.5649) + (xy 125.274261 65.564845) + (xy 125.268581 65.564398) + (xy 125.239175 65.561411) + (xy 125.231663 65.560648) + (xy 125.231661 65.560648) + (xy 125.225538 65.560026) + (xy 125.183259 65.564023) + (xy 125.179891 65.564341) + (xy 125.168033 65.5649) + (xy 123.888524 65.5649) + (xy 123.820403 65.544898) + (xy 123.799429 65.527995) + (xy 123.692055 65.420621) + (xy 123.682953 65.410478) + (xy 123.663097 65.385782) + (xy 123.659232 65.380975) + (xy 123.620778 65.348708) + (xy 123.617131 65.345528) + (xy 123.615319 65.343885) + (xy 123.613125 65.341691) + (xy 123.579851 65.314358) + (xy 123.579053 65.313696) + (xy 123.507726 65.253846) + (xy 123.503056 65.251278) + (xy 123.498939 65.247897) + (xy 123.441055 65.21686) + (xy 123.417114 65.204023) + (xy 123.415955 65.203394) + (xy 123.339819 65.161538) + (xy 123.339811 65.161535) + (xy 123.334413 65.158567) + (xy 123.329331 65.156955) + (xy 123.324637 65.154438) + (xy 123.235669 65.127238) + (xy 123.234641 65.126918) + (xy 123.145894 65.098765) + (xy 123.140598 65.098171) + (xy 123.135502 65.096613) + (xy 123.042943 65.08721) + (xy 123.041807 65.087089) + (xy 123.008192 65.083319) + (xy 122.99547 65.081892) + (xy 122.995466 65.081892) + (xy 122.991973 65.0815) + (xy 122.988446 65.0815) + (xy 122.987461 65.081445) + (xy 122.981781 65.080998) + (xy 122.952375 65.078011) + (xy 122.944863 65.077248) + (xy 122.944861 65.077248) + (xy 122.938738 65.076626) + (xy 122.896459 65.080623) + (xy 122.893091 65.080941) + (xy 122.881233 65.0815) + (xy 115.1745 65.0815) + (xy 115.106379 65.061498) + (xy 115.059886 65.007842) + (xy 115.0485 64.9555) + (xy 115.0485 63.357703) + (xy 123.770743 63.357703) + (xy 123.771302 63.361947) + (xy 123.771302 63.361951) + (xy 123.785405 63.469072) + (xy 123.808268 63.642734) + (xy 123.809401 63.646874) + (xy 123.809401 63.646876) + (xy 123.82441 63.701739) + (xy 123.884129 63.920036) + (xy 123.885813 63.923984) + (xy 123.981471 64.148249) + (xy 123.996923 64.184476) + (xy 124.029133 64.238295) + (xy 124.138534 64.42109) + (xy 124.144561 64.431161) + (xy 124.324313 64.655528) + (xy 124.408297 64.735226) + (xy 124.515232 64.836703) + (xy 124.532851 64.853423) + (xy 124.690257 64.966531) + (xy 124.75373 65.012141) + (xy 124.766317 65.021186) + (xy 124.770112 65.023195) + (xy 124.770113 65.023196) + (xy 124.791869 65.034715) + (xy 125.020392 65.155712) + (xy 125.100174 65.184908) + (xy 125.275016 65.248891) + (xy 125.290373 65.254511) + (xy 125.571264 65.315755) + (xy 125.599841 65.318004) + (xy 125.794282 65.333307) + (xy 125.794291 65.333307) + (xy 125.796739 65.3335) + (xy 125.952271 65.3335) + (xy 125.954407 65.333354) + (xy 125.954418 65.333354) + (xy 126.162548 65.319165) + (xy 126.162554 65.319164) + (xy 126.166825 65.318873) + (xy 126.17102 65.318004) + (xy 126.171022 65.318004) + (xy 126.33695 65.283642) + (xy 126.448342 65.260574) + (xy 126.719343 65.164607) + (xy 126.869553 65.087078) + (xy 126.971005 65.034715) + (xy 126.971006 65.034715) + (xy 126.974812 65.03275) + (xy 126.978313 65.030289) + (xy 126.978317 65.030287) + (xy 127.096328 64.947347) + (xy 127.210023 64.867441) + (xy 127.352303 64.735226) + (xy 127.417479 64.674661) + (xy 127.417481 64.674658) + (xy 127.420622 64.67174) + (xy 127.602713 64.449268) + (xy 127.752927 64.204142) + (xy 127.789542 64.120731) + (xy 127.866758 63.944828) + (xy 127.866759 63.944826) + (xy 127.868483 63.940898) + (xy 127.947244 63.664406) + (xy 127.987751 63.379784) + (xy 127.987809 63.368875) + (xy 127.989235 63.096583) + (xy 127.989235 63.096576) + (xy 127.989257 63.092297) + (xy 127.976737 62.997194) + (xy 127.964246 62.90232) + (xy 127.951732 62.807266) + (xy 127.949776 62.800114) + (xy 127.927115 62.717281) + (xy 127.875871 62.529964) + (xy 127.866607 62.508246) + (xy 127.764763 62.269476) + (xy 127.764761 62.269472) + (xy 127.763077 62.265524) + (xy 127.615439 62.018839) + (xy 127.435687 61.794472) + (xy 127.255897 61.623858) + (xy 127.230258 61.599527) + (xy 127.230255 61.599525) + (xy 127.227149 61.596577) + (xy 126.993683 61.428814) + (xy 126.971843 61.41725) + (xy 126.941612 61.401244) + (xy 126.739608 61.294288) + (xy 126.54549 61.223251) + (xy 126.473658 61.196964) + (xy 126.473656 61.196963) + (xy 126.469627 61.195489) + (xy 126.188736 61.134245) + (xy 126.157685 61.131801) + (xy 125.965718 61.116693) + (xy 125.965709 61.116693) + (xy 125.963261 61.1165) + (xy 125.807729 61.1165) + (xy 125.805593 61.116646) + (xy 125.805582 61.116646) + (xy 125.597452 61.130835) + (xy 125.597446 61.130836) + (xy 125.593175 61.131127) + (xy 125.58898 61.131996) + (xy 125.588978 61.131996) + (xy 125.518395 61.146613) + (xy 125.311658 61.189426) + (xy 125.040657 61.285393) + (xy 124.785188 61.41725) + (xy 124.781687 61.419711) + (xy 124.781683 61.419713) + (xy 124.729112 61.456661) + (xy 124.549977 61.582559) + (xy 124.533011 61.598325) + (xy 124.34414 61.773835) + (xy 124.339378 61.77826) + (xy 124.157287 62.000732) + (xy 124.007073 62.245858) + (xy 124.005347 62.249791) + (xy 124.005346 62.249792) + (xy 123.975261 62.318328) + (xy 123.891517 62.509102) + (xy 123.812756 62.785594) + (xy 123.772249 63.070216) + (xy 123.772227 63.074505) + (xy 123.772226 63.074512) + (xy 123.770841 63.338926) + (xy 123.770743 63.357703) + (xy 115.0485 63.357703) + (xy 115.0485 60.939642) + (xy 115.049237 60.926035) + (xy 115.052659 60.894537) + (xy 115.052659 60.894532) + (xy 115.053324 60.888411) + (xy 115.051215 60.8643) + (xy 115.04895 60.838409) + (xy 115.048621 60.833584) + (xy 115.0485 60.831113) + (xy 115.0485 60.828031) + (xy 115.044309 60.785289) + (xy 115.044187 60.783974) + (xy 115.041364 60.751713) + (xy 115.036087 60.691387) + (xy 115.0346 60.686268) + (xy 115.03408 60.680967) + (xy 115.028355 60.662003) + (xy 115.007237 60.592059) + (xy 115.006862 60.590794) + (xy 114.999538 60.565585) + (xy 114.980909 60.501463) + (xy 114.978455 60.496729) + (xy 114.976916 60.491631) + (xy 114.969032 60.476803) + (xy 114.933316 60.409631) + (xy 114.932702 60.408463) + (xy 114.892726 60.331341) + (xy 114.892725 60.33134) + (xy 114.889892 60.325874) + (xy 114.886569 60.321711) + (xy 114.884066 60.317004) + (xy 114.825245 60.244882) + (xy 114.824554 60.244026) + (xy 114.793262 60.204827) + (xy 114.790758 60.202323) + (xy 114.790116 60.201605) + (xy 114.786415 60.197272) + (xy 114.759065 60.163738) + (xy 114.72373 60.134506) + (xy 114.714964 60.126529) + (xy 114.269451 59.681017) + (xy 114.260349 59.670873) + (xy 114.240497 59.646182) + (xy 114.236632 59.641375) + (xy 114.198178 59.609108) + (xy 114.194531 59.605928) + (xy 114.192719 59.604285) + (xy 114.190525 59.602091) + (xy 114.157251 59.574758) + (xy 114.156453 59.574096) + (xy 114.085126 59.514246) + (xy 114.080456 59.511678) + (xy 114.076339 59.508297) + (xy 114.006489 59.470844) + (xy 113.994514 59.464423) + (xy 113.993355 59.463794) + (xy 113.917219 59.421938) + (xy 113.917211 59.421935) + (xy 113.911813 59.418967) + (xy 113.906731 59.417355) + (xy 113.902037 59.414838) + (xy 113.813069 59.387638) + (xy 113.812041 59.387318) + (xy 113.723294 59.359165) + (xy 113.717998 59.358571) + (xy 113.712902 59.357013) + (xy 113.620343 59.34761) + (xy 113.619207 59.347489) + (xy 113.581392 59.343248) + (xy 113.57287 59.342292) + (xy 113.572866 59.342292) + (xy 113.569373 59.3419) + (xy 113.565846 59.3419) + (xy 113.564861 59.341845) + (xy 113.559181 59.341398) + (xy 113.529775 59.338411) + (xy 113.522263 59.337648) + (xy 113.522261 59.337648) + (xy 113.516138 59.337026) + (xy 113.474427 59.340969) + (xy 113.470491 59.341341) + (xy 113.458633 59.3419) + (xy 111.882707 59.3419) + (xy 111.814586 59.321898) + (xy 111.768093 59.268242) + (xy 111.757989 59.197968) + (xy 111.775447 59.149784) + (xy 111.848212 59.031737) + (xy 111.854356 59.018559) + (xy 111.904615 58.867034) + (xy 111.907481 58.853668) + (xy 111.916972 58.76103) + (xy 111.9173 58.754615) + (xy 111.9173 58.742915) + (xy 111.912825 58.727676) + (xy 111.911435 58.726471) + (xy 111.903752 58.7248) + (xy 110.7938 58.7248) + (xy 110.725679 58.704798) + (xy 110.679186 58.651142) + (xy 110.6678 58.5988) + (xy 110.6678 58.198685) + (xy 111.1758 58.198685) + (xy 111.180275 58.213924) + (xy 111.181665 58.215129) + (xy 111.189348 58.2168) + (xy 111.899185 58.2168) + (xy 111.914424 58.212325) + (xy 111.915629 58.210935) + (xy 111.9173 58.203252) + (xy 111.9173 58.187034) + (xy 111.916963 58.180518) + (xy 111.907225 58.086668) + (xy 111.904332 58.073272) + (xy 111.853812 57.921847) + (xy 111.847647 57.908685) + (xy 111.763874 57.773308) + (xy 111.75484 57.76191) + (xy 111.642171 57.649437) + (xy 111.63076 57.640425) + (xy 111.495237 57.556888) + (xy 111.482059 57.550744) + (xy 111.330534 57.500485) + (xy 111.317168 57.497619) + (xy 111.22453 57.488128) + (xy 111.218115 57.4878) + (xy 111.193915 57.4878) + (xy 111.178676 57.492275) + (xy 111.177471 57.493665) + (xy 111.1758 57.501348) + (xy 111.1758 58.198685) + (xy 110.6678 58.198685) + (xy 110.6678 57.505915) + (xy 110.663325 57.490676) + (xy 110.661935 57.489471) + (xy 110.654252 57.4878) + (xy 110.625534 57.4878) + (xy 110.619018 57.488137) + (xy 110.525168 57.497875) + (xy 110.511772 57.500768) + (xy 110.360347 57.551288) + (xy 110.347185 57.557453) + (xy 110.211808 57.641226) + (xy 110.20041 57.65026) + (xy 110.098907 57.75194) + (xy 110.036624 57.786019) + (xy 109.965804 57.781016) + (xy 109.920716 57.752095) + (xy 109.908802 57.740201) + (xy 109.812303 57.643871) + (xy 109.806072 57.64003) + (xy 109.67045 57.556431) + (xy 109.670448 57.55643) + (xy 109.66422 57.552591) + (xy 109.499109 57.497826) + (xy 109.492273 57.497126) + (xy 109.49227 57.497125) + (xy 109.440774 57.491849) + (xy 109.396372 57.4873) + (xy 108.797228 57.4873) + (xy 108.793982 57.487637) + (xy 108.793978 57.487637) + (xy 108.700065 57.497381) + (xy 108.700061 57.497382) + (xy 108.693207 57.498093) + (xy 108.686671 57.500274) + (xy 108.686669 57.500274) + (xy 108.62234 57.521736) + (xy 108.528193 57.553146) + (xy 108.380269 57.644684) + (xy 108.375096 57.649866) + (xy 108.262542 57.762616) + (xy 108.262538 57.762621) + (xy 108.257371 57.767797) + (xy 108.253531 57.774027) + (xy 108.25353 57.774028) + (xy 108.251443 57.777414) + (xy 108.249414 57.779241) + (xy 108.248993 57.779773) + (xy 108.248902 57.779701) + (xy 108.198672 57.824908) + (xy 108.144182 57.8373) + (xy 107.8454 57.8373) + (xy 107.777279 57.817298) + (xy 107.758053 57.800957) + (xy 107.75778 57.80126) + (xy 107.752868 57.796837) + (xy 107.748453 57.791934) + (xy 107.715231 57.767797) + (xy 107.599294 57.683563) + (xy 107.599293 57.683562) + (xy 107.593952 57.679682) + (xy 107.587924 57.676998) + (xy 107.587922 57.676997) + (xy 107.425519 57.604691) + (xy 107.425518 57.604691) + (xy 107.419488 57.602006) + (xy 107.326088 57.582153) + (xy 107.239144 57.563672) + (xy 107.239139 57.563672) + (xy 107.232687 57.5623) + (xy 107.041713 57.5623) + (xy 107.035261 57.563672) + (xy 107.035256 57.563672) + (xy 106.948312 57.582153) + (xy 106.854912 57.602006) + (xy 106.848882 57.604691) + (xy 106.848881 57.604691) + (xy 106.727833 57.658585) + (xy 106.657466 57.668019) + (xy 106.593169 57.637913) + (xy 106.555355 57.577824) + (xy 106.554562 57.574621) + (xy 106.554042 57.569672) + (xy 106.495027 57.388044) + (xy 106.487649 57.375264) + (xy 106.455425 57.319451) + (xy 106.39954 57.222656) + (xy 106.351089 57.168845) + (xy 106.276175 57.085645) + (xy 106.276174 57.085644) + (xy 106.271753 57.080734) + (xy 106.117252 56.968482) + (xy 106.111224 56.965798) + (xy 106.111222 56.965797) + (xy 105.948819 56.893491) + (xy 105.948818 56.893491) + (xy 105.942788 56.890806) + (xy 105.849387 56.870953) + (xy 105.762444 56.852472) + (xy 105.762439 56.852472) + (xy 105.755987 56.8511) + (xy 105.565013 56.8511) + (xy 105.558561 56.852472) + (xy 105.558556 56.852472) + (xy 105.471613 56.870953) + (xy 105.378212 56.890806) + (xy 105.372182 56.893491) + (xy 105.372181 56.893491) + (xy 105.209778 56.965797) + (xy 105.209776 56.965798) + (xy 105.203748 56.968482) + (xy 105.049247 57.080734) + (xy 105.044826 57.085644) + (xy 105.044825 57.085645) + (xy 104.969912 57.168845) + (xy 104.92146 57.222656) + (xy 104.848569 57.348907) + (xy 104.797188 57.397899) + (xy 104.727474 57.411335) + (xy 104.66539 57.387842) + (xy 104.652894 57.378763) + (xy 104.652893 57.378762) + (xy 104.647552 57.374882) + (xy 104.641524 57.372198) + (xy 104.641522 57.372197) + (xy 104.479119 57.299891) + (xy 104.479118 57.299891) + (xy 104.473088 57.297206) + (xy 104.379687 57.277353) + (xy 104.292744 57.258872) + (xy 104.292739 57.258872) + (xy 104.286287 57.2575) + (xy 104.095313 57.2575) + (xy 104.088861 57.258872) + (xy 104.088856 57.258872) + (xy 104.001913 57.277353) + (xy 103.908512 57.297206) + (xy 103.902482 57.299891) + (xy 103.902481 57.299891) + (xy 103.858549 57.319451) + (xy 103.788182 57.328885) + (xy 103.723885 57.298779) + (xy 103.686071 57.23869) + (xy 103.6813 57.204344) + (xy 103.6813 56.358193) + (xy 103.683532 56.334584) + (xy 103.68359 56.334281) + (xy 103.68359 56.334277) + (xy 103.685075 56.326494) + (xy 103.681549 56.270449) + (xy 103.6813 56.262538) + (xy 103.6813 56.246544) + (xy 103.679294 56.23067) + (xy 103.678551 56.222802) + (xy 103.675523 56.174663) + (xy 103.675523 56.174662) + (xy 103.675025 56.16675) + (xy 103.672479 56.158913) + (xy 103.667306 56.135769) + (xy 103.667268 56.135465) + (xy 103.667267 56.13546) + (xy 103.666274 56.127603) + (xy 103.663358 56.120238) + (xy 103.663357 56.120234) + (xy 103.645601 56.075389) + (xy 103.642929 56.06797) + (xy 103.625564 56.014525) + (xy 103.621314 56.007828) + (xy 103.62115 56.007569) + (xy 103.610385 55.986442) + (xy 103.610271 55.986154) + (xy 103.610268 55.986149) + (xy 103.607352 55.978783) + (xy 103.602696 55.972375) + (xy 103.602693 55.972369) + (xy 103.574342 55.933348) + (xy 103.569892 55.926801) + (xy 103.5398 55.879382) + (xy 103.533793 55.873741) + (xy 103.518112 55.855954) + (xy 103.517934 55.855709) + (xy 103.517932 55.855707) + (xy 103.513272 55.849293) + (xy 103.507162 55.844238) + (xy 103.470004 55.813497) + (xy 103.46407 55.808266) + (xy 103.428902 55.775242) + (xy 103.428899 55.77524) + (xy 103.423121 55.769814) + (xy 103.415897 55.765842) + (xy 103.396294 55.752519) + (xy 103.396054 55.75232) + (xy 103.396047 55.752316) + (xy 103.389944 55.747267) + (xy 103.339124 55.723353) + (xy 103.332092 55.719771) + (xy 103.28286 55.692705) + (xy 103.275185 55.690735) + (xy 103.275179 55.690732) + (xy 103.274881 55.690656) + (xy 103.252572 55.682624) + (xy 103.252297 55.682494) + (xy 103.252289 55.682491) + (xy 103.245118 55.679117) + (xy 103.189951 55.668594) + (xy 103.182242 55.666871) + (xy 103.148249 55.658143) + (xy 103.135507 55.654871) + (xy 103.135506 55.654871) + (xy 103.12783 55.6529) + (xy 103.119593 55.6529) + (xy 103.095984 55.650668) + (xy 103.095681 55.65061) + (xy 103.095677 55.65061) + (xy 103.087894 55.649125) + (xy 103.031849 55.652651) + (xy 103.023938 55.6529) + (xy 102.360174 55.6529) + (xy 102.292053 55.632898) + (xy 102.24556 55.579242) + (xy 102.235456 55.508968) + (xy 102.240072 55.488802) + (xy 102.27888 55.366462) + (xy 102.28143 55.354468) + (xy 102.297607 55.210239) + (xy 102.298 55.203215) + (xy 102.298 54.987026) + (xy 102.318002 54.918905) + (xy 102.371658 54.872412) + (xy 102.441932 54.862308) + (xy 102.451486 54.864061) + (xy 102.621494 54.902062) + (xy 102.621501 54.902063) + (xy 102.626543 54.90319) + (xy 102.632088 54.9035) + (xy 102.765244 54.9035) + (xy 102.900037 54.888857) + (xy 103.01819 54.849094) + (xy 103.065204 54.833272) + (xy 103.065206 54.833271) + (xy 103.071675 54.831094) + (xy 103.226905 54.737823) + (xy 103.231862 54.733135) + (xy 103.231865 54.733133) + (xy 103.353527 54.618082) + (xy 103.353529 54.61808) + (xy 103.358485 54.613393) + (xy 103.362317 54.607755) + (xy 103.36232 54.607751) + (xy 103.456442 54.469255) + (xy 103.460277 54.463612) + (xy 103.52753 54.295466) + (xy 103.528644 54.288738) + (xy 103.528645 54.288734) + (xy 103.555993 54.123539) + (xy 103.555993 54.123536) + (xy 103.557108 54.116802) + (xy 103.552203 54.023198) + (xy 107.662892 54.023198) + (xy 107.663249 54.030015) + (xy 107.663249 54.030019) + (xy 107.668151 54.123539) + (xy 107.67237 54.204047) + (xy 107.674181 54.21062) + (xy 107.674181 54.210623) + (xy 107.707738 54.332452) + (xy 107.720461 54.378641) + (xy 107.804922 54.538836) + (xy 107.809327 54.544049) + (xy 107.80933 54.544053) + (xy 107.917406 54.671943) + (xy 107.91741 54.671947) + (xy 107.921813 54.677157) + (xy 107.927237 54.681304) + (xy 107.927238 54.681305) + (xy 108.060257 54.783006) + (xy 108.060261 54.783009) + (xy 108.065678 54.78715) + (xy 108.152372 54.827576) + (xy 108.223631 54.860805) + (xy 108.223634 54.860806) + (xy 108.229808 54.863685) + (xy 108.236456 54.865171) + (xy 108.236459 54.865172) + (xy 108.332686 54.886681) + (xy 108.406543 54.90319) + (xy 108.412088 54.9035) + (xy 108.545244 54.9035) + (xy 108.680037 54.888857) + (xy 108.686501 54.886682) + (xy 108.686504 54.886681) + (xy 108.753716 54.864061) + (xy 108.755811 54.863356) + (xy 108.826753 54.860586) + (xy 108.887932 54.896609) + (xy 108.919923 54.95999) + (xy 108.922 54.982775) + (xy 108.922 55.196657) + (xy 108.922301 55.202805) + (xy 108.935812 55.340603) + (xy 108.938195 55.352638) + (xy 108.991767 55.530076) + (xy 108.996441 55.541416) + (xy 109.08346 55.705077) + (xy 109.090249 55.715294) + (xy 109.207397 55.858933) + (xy 109.216041 55.867637) + (xy 109.358856 55.985784) + (xy 109.369027 55.992644) + (xy 109.532076 56.080804) + (xy 109.543381 56.085556) + (xy 109.658692 56.12125) + (xy 109.672795 56.121456) + (xy 109.676 56.114701) + (xy 109.676 56.107924) + (xy 110.184 56.107924) + (xy 110.187973 56.121455) + (xy 110.195768 56.122575) + (xy 110.303521 56.090862) + (xy 110.314889 56.086269) + (xy 110.479154 56.000393) + (xy 110.489415 55.993679) + (xy 110.633873 55.877532) + (xy 110.642632 55.868954) + (xy 110.761778 55.726961) + (xy 110.768708 55.716841) + (xy 110.858002 55.554415) + (xy 110.862834 55.543142) + (xy 110.91888 55.366462) + (xy 110.92143 55.354468) + (xy 110.937607 55.210239) + (xy 110.938 55.203215) + (xy 110.938 54.872115) + (xy 110.933525 54.856876) + (xy 110.932135 54.855671) + (xy 110.924452 54.854) + (xy 110.202115 54.854) + (xy 110.186876 54.858475) + (xy 110.185671 54.859865) + (xy 110.184 54.867548) + (xy 110.184 56.107924) + (xy 109.676 56.107924) + (xy 109.676 54.327885) + (xy 110.184 54.327885) + (xy 110.188475 54.343124) + (xy 110.189865 54.344329) + (xy 110.197548 54.346) + (xy 110.919885 54.346) + (xy 110.935124 54.341525) + (xy 110.936329 54.340135) + (xy 110.938 54.332452) + (xy 110.938 54.003343) + (xy 110.937699 53.997195) + (xy 110.924188 53.859397) + (xy 110.921805 53.847362) + (xy 110.868233 53.669924) + (xy 110.863559 53.658584) + (xy 110.77654 53.494923) + (xy 110.769751 53.484706) + (xy 110.652603 53.341067) + (xy 110.643959 53.332363) + (xy 110.501144 53.214216) + (xy 110.490973 53.207356) + (xy 110.327924 53.119196) + (xy 110.316619 53.114444) + (xy 110.201308 53.07875) + (xy 110.187205 53.078544) + (xy 110.184 53.085299) + (xy 110.184 54.327885) + (xy 109.676 54.327885) + (xy 109.676 53.092076) + (xy 109.672027 53.078545) + (xy 109.664232 53.077425) + (xy 109.556479 53.109138) + (xy 109.545111 53.113731) + (xy 109.380846 53.199607) + (xy 109.370585 53.206321) + (xy 109.226127 53.322468) + (xy 109.217368 53.331046) + (xy 109.173 53.383921) + (xy 109.11389 53.423248) + (xy 109.042902 53.424374) + (xy 108.999952 53.403028) + (xy 108.934322 53.35285) + (xy 108.803162 53.291689) + (xy 108.776369 53.279195) + (xy 108.776366 53.279194) + (xy 108.770192 53.276315) + (xy 108.763544 53.274829) + (xy 108.763541 53.274828) + (xy 108.598494 53.237936) + (xy 108.598495 53.237936) + (xy 108.593457 53.23681) + (xy 108.587912 53.2365) + (xy 108.454756 53.2365) + (xy 108.319963 53.251143) + (xy 108.236609 53.279195) + (xy 108.154796 53.306728) + (xy 108.154794 53.306729) + (xy 108.148325 53.308906) + (xy 107.993095 53.402177) + (xy 107.988138 53.406865) + (xy 107.988135 53.406867) + (xy 107.866473 53.521918) + (xy 107.861515 53.526607) + (xy 107.857683 53.532245) + (xy 107.85768 53.532249) + (xy 107.80674 53.607205) + (xy 107.759723 53.676388) + (xy 107.69247 53.844534) + (xy 107.691356 53.851262) + (xy 107.691355 53.851266) + (xy 107.666179 54.003343) + (xy 107.662892 54.023198) + (xy 103.552203 54.023198) + (xy 103.547987 53.942766) + (xy 103.54763 53.935953) + (xy 103.53533 53.891296) + (xy 103.501352 53.767941) + (xy 103.499539 53.761359) + (xy 103.415078 53.601164) + (xy 103.410673 53.595951) + (xy 103.41067 53.595947) + (xy 103.302594 53.468057) + (xy 103.30259 53.468053) + (xy 103.298187 53.462843) + (xy 103.292762 53.458695) + (xy 103.159743 53.356994) + (xy 103.159739 53.356991) + (xy 103.154322 53.35285) + (xy 103.023162 53.291689) + (xy 102.996369 53.279195) + (xy 102.996366 53.279194) + (xy 102.990192 53.276315) + (xy 102.983544 53.274829) + (xy 102.983541 53.274828) + (xy 102.818494 53.237936) + (xy 102.818495 53.237936) + (xy 102.813457 53.23681) + (xy 102.807912 53.2365) + (xy 102.674756 53.2365) + (xy 102.539963 53.251143) + (xy 102.456609 53.279195) + (xy 102.374796 53.306728) + (xy 102.374794 53.306729) + (xy 102.368325 53.308906) + (xy 102.216349 53.400222) + (xy 102.216346 53.400223) + (xy 102.213095 53.402177) + (xy 102.212745 53.401594) + (xy 102.151083 53.425065) + (xy 102.081609 53.410439) + (xy 102.043609 53.379085) + (xy 102.012603 53.341067) + (xy 102.003959 53.332363) + (xy 101.861144 53.214216) + (xy 101.850973 53.207356) + (xy 101.687924 53.119196) + (xy 101.676619 53.114444) + (xy 101.561308 53.07875) + (xy 101.547205 53.078544) + (xy 101.544 53.085299) + (xy 101.544 54.728) + (xy 101.523998 54.796121) + (xy 101.470342 54.842614) + (xy 101.418 54.854) + (xy 100.300115 54.854) + (xy 100.284876 54.858475) + (xy 100.283671 54.859865) + (xy 100.282 54.867548) + (xy 100.282 55.196657) + (xy 100.282301 55.202805) + (xy 100.295812 55.340603) + (xy 100.298195 55.352638) + (xy 100.351767 55.530076) + (xy 100.356441 55.541416) + (xy 100.44346 55.705077) + (xy 100.450249 55.715294) + (xy 100.520671 55.801641) + (xy 100.548225 55.867073) + (xy 100.53603 55.937014) + (xy 100.512123 55.970372) + (xy 100.039342 56.443153) + (xy 100.031063 56.450687) + (xy 100.024582 56.4548) + (xy 99.991576 56.489948) + (xy 99.977957 56.504451) + (xy 99.975202 56.507293) + (xy 99.955465 56.52703) + (xy 99.952985 56.530227) + (xy 99.945282 56.539247) + (xy 99.915014 56.571479) + (xy 99.911195 56.578425) + (xy 99.911193 56.578428) + (xy 99.905252 56.589234) + (xy 99.894401 56.605753) + (xy 99.881986 56.621759) + (xy 99.878841 56.629028) + (xy 99.878838 56.629032) + (xy 99.864426 56.662337) + (xy 99.859209 56.672987) + (xy 99.837905 56.71174) + (xy 99.835934 56.719415) + (xy 99.835934 56.719416) + (xy 99.832867 56.731362) + (xy 99.826463 56.750066) + (xy 99.818419 56.768655) + (xy 99.81718 56.776478) + (xy 99.817177 56.776488) + (xy 99.811501 56.812324) + (xy 99.809095 56.823944) + (xy 99.7981 56.86677) + (xy 99.7981 56.887024) + (xy 99.796549 56.906734) + (xy 99.79338 56.926743) + (xy 99.794126 56.934635) + (xy 99.797541 56.970761) + (xy 99.7981 56.982619) + (xy 99.7981 58.158101) + (xy 99.778098 58.226222) + (xy 99.738402 58.265245) + (xy 99.715069 58.279684) + (xy 99.607999 58.386941) + (xy 99.545718 58.42102) + (xy 99.474898 58.416017) + (xy 99.429809 58.387096) + (xy 99.326971 58.284437) + (xy 99.31556 58.275425) + (xy 99.180037 58.191888) + (xy 99.166859 58.185744) + (xy 99.015334 58.135485) + (xy 99.001968 58.132619) + (xy 98.90933 58.123128) + (xy 98.902915 58.1228) + (xy 98.878715 58.1228) + (xy 98.863476 58.127275) + (xy 98.862271 58.128665) + (xy 98.8606 58.136348) + (xy 98.8606 60.070685) + (xy 98.865075 60.085924) + (xy 98.866465 60.087129) + (xy 98.874148 60.0888) + (xy 98.902866 60.0888) + (xy 98.909382 60.088463) + (xy 99.003232 60.078725) + (xy 99.016628 60.075832) + (xy 99.168053 60.025312) + (xy 99.181215 60.019147) + (xy 99.316592 59.935374) + (xy 99.32799 59.92634) + (xy 99.429493 59.82466) + (xy 99.491776 59.790581) + (xy 99.562596 59.795584) + (xy 99.607683 59.824504) + (xy 99.716097 59.932729) + (xy 99.86418 60.024009) + (xy 100.029291 60.078774) + (xy 100.036127 60.079474) + (xy 100.03613 60.079475) + (xy 100.08347 60.084325) + (xy 100.132028 60.0893) + (xy 100.731172 60.0893) + (xy 100.734418 60.088963) + (xy 100.734422 60.088963) + (xy 100.828335 60.079219) + (xy 100.828339 60.079218) + (xy 100.835193 60.078507) + (xy 100.841729 60.076326) + (xy 100.841731 60.076326) + (xy 100.974916 60.031892) + (xy 101.045866 60.029308) + (xy 101.106949 60.065492) + (xy 101.119377 60.083386) + (xy 101.120367 60.082737) + (xy 101.160386 60.143776) + (xy 101.162723 60.14748) + (xy 101.200605 60.209907) + (xy 101.204321 60.214115) + (xy 101.204322 60.214116) + (xy 101.208003 60.218284) + (xy 101.207976 60.218308) + (xy 101.210629 60.2213) + (xy 101.213332 60.224533) + (xy 101.217344 60.230652) + (xy 101.222656 60.235684) + (xy 101.273583 60.283928) + (xy 101.276025 60.286306) + (xy 101.82903 60.839311) + (xy 101.841416 60.853723) + (xy 101.849949 60.865318) + (xy 101.849954 60.865323) + (xy 101.854292 60.871218) + (xy 101.85987 60.875957) + (xy 101.859873 60.87596) + (xy 101.894568 60.905435) + (xy 101.902084 60.912365) + (xy 101.90778 60.918061) + (xy 101.910641 60.920324) + (xy 101.910646 60.920329) + (xy 101.930056 60.935685) + (xy 101.933458 60.938474) + (xy 101.989085 60.985733) + (xy 101.995602 60.989061) + (xy 102.00065 60.992427) + (xy 102.005772 60.99559) + (xy 102.011516 61.000135) + (xy 102.077695 61.031064) + (xy 102.081579 61.032963) + (xy 102.146608 61.066169) + (xy 102.153723 61.06791) + (xy 102.159378 61.070013) + (xy 102.165117 61.071922) + (xy 102.17175 61.075022) + (xy 102.243235 61.089891) + (xy 102.247501 61.090857) + (xy 102.31841 61.108208) + (xy 102.324012 61.108556) + (xy 102.324015 61.108556) + (xy 102.329564 61.1089) + (xy 102.329562 61.108935) + (xy 102.333534 61.109175) + (xy 102.337755 61.109552) + (xy 102.344915 61.111041) + (xy 102.422342 61.108946) + (xy 102.42575 61.1089) + (xy 106.9171 61.1089) + (xy 106.985221 61.128902) + (xy 107.031714 61.182558) + (xy 107.0431 61.2349) + (xy 107.0431 62.699876) + (xy 107.023098 62.767997) + (xy 107.006195 62.788971) + (xy 106.350571 63.444595) + (xy 106.288259 63.478621) + (xy 106.261476 63.4815) + (xy 106.220231 63.4815) + (xy 106.217175 63.4818) + (xy 106.217168 63.4818) + (xy 106.15866 63.487537) + (xy 106.073167 63.49592) + (xy 106.067266 63.497702) + (xy 106.067264 63.497702) + (xy 105.890329 63.551122) + (xy 105.853911 63.5565) + (xy 105.796866 63.5565) + (xy 105.793469 63.556869) + (xy 105.79056 63.557185) + (xy 105.734684 63.563255) + (xy 105.598295 63.614385) + (xy 105.481739 63.701739) + (xy 105.394385 63.818295) + (xy 105.343255 63.954684) + (xy 105.3365 64.016866) + (xy 105.3365 64.075989) + (xy 105.330865 64.113248) + (xy 105.277318 64.286232) + (xy 105.276674 64.292357) + (xy 105.276674 64.292358) + (xy 105.259079 64.459771) + (xy 105.256645 64.482925) + (xy 105.262557 64.547885) + (xy 105.272491 64.657039) + (xy 105.27457 64.679888) + (xy 105.276308 64.685794) + (xy 105.276309 64.685798) + (xy 105.33041 64.869619) + (xy 105.329191 64.869978) + (xy 105.3365 64.90758) + (xy 105.3365 64.963134) + (xy 105.343255 65.025316) + (xy 105.394385 65.161705) + (xy 105.481739 65.278261) + (xy 105.598295 65.365615) + (xy 105.734684 65.416745) + (xy 105.796866 65.4235) + (xy 105.857797 65.4235) + (xy 105.895896 65.429398) + (xy 106.059306 65.481235) + (xy 106.213227 65.4985) + (xy 106.669557 65.4985) + (xy 106.683164 65.499237) + (xy 106.714662 65.502659) + (xy 106.714667 65.502659) + (xy 106.720788 65.503324) + (xy 106.747038 65.501027) + (xy 106.770788 65.49895) + (xy 106.775614 65.498621) + (xy 106.778086 65.4985) + (xy 106.781169 65.4985) + (xy 106.793138 65.497326) + (xy 106.823906 65.49431) + (xy 106.825219 65.494188) + (xy 106.869484 65.490315) + (xy 106.917813 65.486087) + (xy 106.922932 65.4846) + (xy 106.928233 65.48408) + (xy 107.017234 65.457209) + (xy 107.018367 65.456874) + (xy 107.101814 65.43263) + (xy 107.101818 65.432628) + (xy 107.107736 65.430909) + (xy 107.112468 65.428456) + (xy 107.117569 65.426916) + (xy 107.124688 65.423131) + (xy 107.19966 65.383269) + (xy 107.200826 65.382657) + (xy 107.277853 65.342729) + (xy 107.283326 65.339892) + (xy 107.287489 65.336569) + (xy 107.292196 65.334066) + (xy 107.300859 65.327001) + (xy 107.317226 65.313652) + (xy 107.346632 65.289669) + (xy 108.707001 65.289669) + (xy 108.707371 65.29649) + (xy 108.712895 65.347352) + (xy 108.716521 65.362604) + (xy 108.761676 65.483054) + (xy 108.770214 65.498649) + (xy 108.846715 65.600724) + (xy 108.859276 65.613285) + (xy 108.961351 65.689786) + (xy 108.976946 65.698324) + (xy 109.097394 65.743478) + (xy 109.112649 65.747105) + (xy 109.163514 65.752631) + (xy 109.170328 65.753) + (xy 109.367885 65.753) + (xy 109.383124 65.748525) + (xy 109.384329 65.747135) + (xy 109.386 65.739452) + (xy 109.386 65.734884) + (xy 109.894 65.734884) + (xy 109.898475 65.750123) + (xy 109.899865 65.751328) + (xy 109.907548 65.752999) + (xy 110.109669 65.752999) + (xy 110.11649 65.752629) + (xy 110.167352 65.747105) + (xy 110.182604 65.743479) + (xy 110.303054 65.698324) + (xy 110.318649 65.689786) + (xy 110.420724 65.613285) + (xy 110.433285 65.600724) + (xy 110.509786 65.498649) + (xy 110.518324 65.483054) + (xy 110.563478 65.362606) + (xy 110.567105 65.347351) + (xy 110.572631 65.296486) + (xy 110.573 65.289672) + (xy 110.573 65.092115) + (xy 110.568525 65.076876) + (xy 110.567135 65.075671) + (xy 110.559452 65.074) + (xy 109.912115 65.074) + (xy 109.896876 65.078475) + (xy 109.895671 65.079865) + (xy 109.894 65.087548) + (xy 109.894 65.734884) + (xy 109.386 65.734884) + (xy 109.386 65.092115) + (xy 109.381525 65.076876) + (xy 109.380135 65.075671) + (xy 109.372452 65.074) + (xy 108.725116 65.074) + (xy 108.709877 65.078475) + (xy 108.708672 65.079865) + (xy 108.707001 65.087548) + (xy 108.707001 65.289669) + (xy 107.346632 65.289669) + (xy 107.364318 65.275245) + (xy 107.365174 65.274554) + (xy 107.404373 65.243262) + (xy 107.406877 65.240758) + (xy 107.407595 65.240116) + (xy 107.411928 65.236415) + (xy 107.445462 65.209065) + (xy 107.450154 65.203394) + (xy 107.474687 65.173738) + (xy 107.482677 65.164958) + (xy 107.996526 64.651109) + (xy 108.512971 64.134663) + (xy 108.575283 64.100638) + (xy 108.646098 64.105702) + (xy 108.702934 64.148249) + (xy 108.727745 64.214769) + (xy 108.720048 64.267988) + (xy 108.716522 64.277394) + (xy 108.712895 64.292649) + (xy 108.707369 64.343514) + (xy 108.707 64.350328) + (xy 108.707 64.547885) + (xy 108.711475 64.563124) + (xy 108.712865 64.564329) + (xy 108.720548 64.566) + (xy 109.367885 64.566) + (xy 109.383124 64.561525) + (xy 109.384329 64.560135) + (xy 109.386 64.552452) + (xy 109.386 64.547885) + (xy 109.894 64.547885) + (xy 109.898475 64.563124) + (xy 109.899865 64.564329) + (xy 109.907548 64.566) + (xy 110.554884 64.566) + (xy 110.570123 64.561525) + (xy 110.571328 64.560135) + (xy 110.572999 64.552452) + (xy 110.572999 64.350331) + (xy 110.572629 64.34351) + (xy 110.567105 64.292648) + (xy 110.563479 64.277396) + (xy 110.518324 64.156946) + (xy 110.509786 64.141351) + (xy 110.433285 64.039276) + (xy 110.420724 64.026715) + (xy 110.318649 63.950214) + (xy 110.303054 63.941676) + (xy 110.182606 63.896522) + (xy 110.167351 63.892895) + (xy 110.116486 63.887369) + (xy 110.109672 63.887) + (xy 109.912115 63.887) + (xy 109.896876 63.891475) + (xy 109.895671 63.892865) + (xy 109.894 63.900548) + (xy 109.894 64.547885) + (xy 109.386 64.547885) + (xy 109.386 63.905116) + (xy 109.381525 63.889877) + (xy 109.380135 63.888672) + (xy 109.372452 63.887001) + (xy 109.170331 63.887001) + (xy 109.16351 63.887371) + (xy 109.112648 63.892895) + (xy 109.097396 63.896521) + (xy 109.045751 63.915882) + (xy 108.974944 63.921065) + (xy 108.912575 63.887144) + (xy 108.878445 63.824889) + (xy 108.883392 63.754065) + (xy 108.893846 63.733616) + (xy 108.893703 63.733539) + (xy 108.937615 63.651642) + (xy 108.938224 63.65052) + (xy 108.940228 63.646876) + (xy 108.95809 63.614385) + (xy 108.980066 63.574411) + (xy 108.980068 63.574406) + (xy 108.983033 63.569013) + (xy 108.984644 63.563935) + (xy 108.987163 63.559237) + (xy 109.014353 63.470302) + (xy 109.014736 63.469072) + (xy 109.040971 63.38637) + (xy 109.042835 63.380494) + (xy 109.043428 63.375203) + (xy 109.044988 63.370102) + (xy 109.054395 63.277489) + (xy 109.054515 63.276369) + (xy 109.0601 63.226573) + (xy 109.0601 63.223044) + (xy 109.060155 63.222061) + (xy 109.060604 63.216356) + (xy 109.060609 63.216314) + (xy 109.064974 63.173337) + (xy 109.060659 63.127688) + (xy 109.0601 63.115831) + (xy 109.0601 61.4849) + (xy 109.080102 61.416779) + (xy 109.133758 61.370286) + (xy 109.1861 61.3589) + (xy 112.9055 61.3589) + (xy 112.973621 61.378902) + (xy 113.020114 61.432558) + (xy 113.0315 61.4849) + (xy 113.0315 64.581474) + (xy 113.011498 64.649595) + (xy 112.957842 64.696088) + (xy 112.887568 64.706192) + (xy 112.822988 64.676698) + (xy 112.804674 64.657039) + (xy 112.723643 64.54892) + (xy 112.723642 64.548919) + (xy 112.718261 64.541739) + (xy 112.601705 64.454385) + (xy 112.465316 64.403255) + (xy 112.403134 64.3965) + (xy 111.456866 64.3965) + (xy 111.394684 64.403255) + (xy 111.258295 64.454385) + (xy 111.141739 64.541739) + (xy 111.054385 64.658295) + (xy 111.003255 64.794684) + (xy 110.9965 64.856866) + (xy 110.9965 65.803134) + (xy 111.003255 65.865316) + (xy 111.054385 66.001705) + (xy 111.141739 66.118261) + (xy 111.258295 66.205615) + (xy 111.394684 66.256745) + (xy 111.456866 66.2635) + (xy 112.403134 66.2635) + (xy 112.465316 66.256745) + (xy 112.601705 66.205615) + (xy 112.718261 66.118261) + (xy 112.800409 66.008651) + (xy 112.857267 65.966137) + (xy 112.928085 65.961111) + (xy 112.990379 65.995171) + (xy 113.024369 66.057502) + (xy 113.026827 66.081194) + (xy 113.026645 66.082925) + (xy 113.031218 66.133173) + (xy 113.0315 66.137207) + (xy 113.0315 66.139769) + (xy 113.0318 66.142827) + (xy 113.0318 66.142831) + (xy 113.035895 66.184596) + (xy 113.035977 66.185471) + (xy 113.04457 66.279888) + (xy 113.045573 66.283297) + (xy 113.04592 66.286833) + (xy 113.073334 66.37763) + (xy 113.073561 66.37839) + (xy 113.087792 66.426745) + (xy 113.10041 66.469619) + (xy 113.099191 66.469978) + (xy 113.1065 66.507579) + (xy 113.1065 66.563134) + (xy 113.113255 66.625316) + (xy 113.164385 66.761705) + (xy 113.251739 66.878261) + (xy 113.368295 66.965615) + (xy 113.376703 66.968767) + (xy 113.384575 66.973077) + (xy 113.383739 66.974604) + (xy 113.432004 67.010862) + (xy 113.456702 67.077424) + (xy 113.441493 67.146772) + (xy 113.391206 67.19689) + (xy 113.331008 67.2122) + (xy 98.226661 67.2122) + (xy 98.15854 67.192198) + (xy 98.112047 67.138542) + (xy 98.101943 67.068268) + (xy 98.125835 67.010635) + (xy 98.179786 66.938648) + (xy 98.188324 66.923054) + (xy 98.233478 66.802606) + (xy 98.237105 66.787351) + (xy 98.242631 66.736486) + (xy 98.243 66.729672) + (xy 98.243 66.532115) + (xy 98.238525 66.516876) + (xy 98.237135 66.515671) + (xy 98.229452 66.514) + (xy 96.395116 66.514) + (xy 96.379877 66.518475) + (xy 96.378672 66.519865) + (xy 96.377001 66.527548) + (xy 96.377001 66.729669) + (xy 96.377371 66.73649) + (xy 96.382895 66.787352) + (xy 96.386521 66.802604) + (xy 96.431676 66.923054) + (xy 96.440214 66.938648) + (xy 96.494165 67.010635) + (xy 96.519013 67.077141) + (xy 96.50396 67.146524) + (xy 96.453786 67.196754) + (xy 96.393339 67.2122) + (xy 93.500082 67.2122) + (xy 93.431961 67.192198) + (xy 93.385468 67.138542) + (xy 93.375364 67.068268) + (xy 93.403002 67.005879) + (xy 93.403903 67.00479) + (xy 93.411888 66.996016) + (xy 94.420019 65.987885) + (xy 96.377 65.987885) + (xy 96.381475 66.003124) + (xy 96.382865 66.004329) + (xy 96.390548 66.006) + (xy 97.037885 66.006) + (xy 97.053124 66.001525) + (xy 97.054329 66.000135) + (xy 97.056 65.992452) + (xy 97.056 65.987885) + (xy 97.564 65.987885) + (xy 97.568475 66.003124) + (xy 97.569865 66.004329) + (xy 97.577548 66.006) + (xy 98.224884 66.006) + (xy 98.240123 66.001525) + (xy 98.241328 66.000135) + (xy 98.242999 65.992452) + (xy 98.242999 65.973134) + (xy 98.5665 65.973134) + (xy 98.573255 66.035316) + (xy 98.624385 66.171705) + (xy 98.711739 66.288261) + (xy 98.828295 66.375615) + (xy 98.964684 66.426745) + (xy 99.026866 66.4335) + (xy 99.973134 66.4335) + (xy 100.035316 66.426745) + (xy 100.171705 66.375615) + (xy 100.288261 66.288261) + (xy 100.375615 66.171705) + (xy 100.426745 66.035316) + (xy 100.4335 65.973134) + (xy 100.4335 65.383134) + (xy 100.7665 65.383134) + (xy 100.773255 65.445316) + (xy 100.824385 65.581705) + (xy 100.911739 65.698261) + (xy 101.028295 65.785615) + (xy 101.164684 65.836745) + (xy 101.226866 65.8435) + (xy 102.173134 65.8435) + (xy 102.235316 65.836745) + (xy 102.371705 65.785615) + (xy 102.488261 65.698261) + (xy 102.575615 65.581705) + (xy 102.626745 65.445316) + (xy 102.6335 65.383134) + (xy 102.6335 65.043134) + (xy 103.0465 65.043134) + (xy 103.053255 65.105316) + (xy 103.104385 65.241705) + (xy 103.191739 65.358261) + (xy 103.308295 65.445615) + (xy 103.444684 65.496745) + (xy 103.506866 65.5035) + (xy 104.453134 65.5035) + (xy 104.515316 65.496745) + (xy 104.651705 65.445615) + (xy 104.768261 65.358261) + (xy 104.855615 65.241705) + (xy 104.906745 65.105316) + (xy 104.9135 65.043134) + (xy 104.9135 64.096866) + (xy 104.906745 64.034684) + (xy 104.855615 63.898295) + (xy 104.768261 63.781739) + (xy 104.651705 63.694385) + (xy 104.515316 63.643255) + (xy 104.453134 63.6365) + (xy 103.506866 63.6365) + (xy 103.444684 63.643255) + (xy 103.308295 63.694385) + (xy 103.191739 63.781739) + (xy 103.104385 63.898295) + (xy 103.053255 64.034684) + (xy 103.0465 64.096866) + (xy 103.0465 65.043134) + (xy 102.6335 65.043134) + (xy 102.6335 64.436866) + (xy 102.626745 64.374684) + (xy 102.575615 64.238295) + (xy 102.488261 64.121739) + (xy 102.371705 64.034385) + (xy 102.235316 63.983255) + (xy 102.173134 63.9765) + (xy 101.226866 63.9765) + (xy 101.164684 63.983255) + (xy 101.028295 64.034385) + (xy 100.911739 64.121739) + (xy 100.824385 64.238295) + (xy 100.773255 64.374684) + (xy 100.7665 64.436866) + (xy 100.7665 65.383134) + (xy 100.4335 65.383134) + (xy 100.4335 65.026866) + (xy 100.426745 64.964684) + (xy 100.375615 64.828295) + (xy 100.288261 64.711739) + (xy 100.171705 64.624385) + (xy 100.035316 64.573255) + (xy 99.973134 64.5665) + (xy 99.026866 64.5665) + (xy 98.964684 64.573255) + (xy 98.828295 64.624385) + (xy 98.711739 64.711739) + (xy 98.624385 64.828295) + (xy 98.573255 64.964684) + (xy 98.5665 65.026866) + (xy 98.5665 65.973134) + (xy 98.242999 65.973134) + (xy 98.242999 65.790331) + (xy 98.242629 65.78351) + (xy 98.237105 65.732648) + (xy 98.233479 65.717396) + (xy 98.188324 65.596946) + (xy 98.179786 65.581351) + (xy 98.103285 65.479276) + (xy 98.090724 65.466715) + (xy 97.988649 65.390214) + (xy 97.973054 65.381676) + (xy 97.852606 65.336522) + (xy 97.837351 65.332895) + (xy 97.786486 65.327369) + (xy 97.779672 65.327) + (xy 97.582115 65.327) + (xy 97.566876 65.331475) + (xy 97.565671 65.332865) + (xy 97.564 65.340548) + (xy 97.564 65.987885) + (xy 97.056 65.987885) + (xy 97.056 65.345116) + (xy 97.051525 65.329877) + (xy 97.050135 65.328672) + (xy 97.042452 65.327001) + (xy 96.840331 65.327001) + (xy 96.83351 65.327371) + (xy 96.782648 65.332895) + (xy 96.767396 65.336521) + (xy 96.646946 65.381676) + (xy 96.631351 65.390214) + (xy 96.529276 65.466715) + (xy 96.516715 65.479276) + (xy 96.440214 65.581351) + (xy 96.431676 65.596946) + (xy 96.386522 65.717394) + (xy 96.382895 65.732649) + (xy 96.377369 65.783514) + (xy 96.377 65.790328) + (xy 96.377 65.987885) + (xy 94.420019 65.987885) + (xy 97.441958 62.965946) + (xy 97.50427 62.93192) + (xy 97.575085 62.936985) + (xy 97.582301 62.939934) + (xy 97.704877 62.994508) + (xy 97.704885 62.994511) + (xy 97.710912 62.997194) + (xy 97.804313 63.017047) + (xy 97.891256 63.035528) + (xy 97.891261 63.035528) + (xy 97.897713 63.0369) + (xy 98.088687 63.0369) + (xy 98.095139 63.035528) + (xy 98.095144 63.035528) + (xy 98.182087 63.017047) + (xy 98.275488 62.997194) + (xy 98.281521 62.994508) + (xy 98.443922 62.922203) + (xy 98.443924 62.922202) + (xy 98.449952 62.919518) + (xy 98.467394 62.906846) + (xy 98.505357 62.879264) + (xy 98.604453 62.807266) + (xy 98.623967 62.785594) + (xy 98.727821 62.670252) + (xy 98.727822 62.670251) + (xy 98.73224 62.665344) + (xy 98.827727 62.499956) + (xy 98.886742 62.318328) + (xy 98.890667 62.28099) + (xy 98.906014 62.134965) + (xy 98.906704 62.1284) + (xy 98.889951 61.969006) + (xy 98.887432 61.945035) + (xy 98.887432 61.945033) + (xy 98.886742 61.938472) + (xy 98.827727 61.756844) + (xy 98.73224 61.591456) + (xy 98.726858 61.585478) + (xy 98.608875 61.454445) + (xy 98.608873 61.454443) + (xy 98.604453 61.449534) + (xy 98.449952 61.337282) + (xy 98.443924 61.334598) + (xy 98.443922 61.334597) + (xy 98.281519 61.262291) + (xy 98.281518 61.262291) + (xy 98.275488 61.259606) + (xy 98.163754 61.235856) + (xy 98.095144 61.221272) + (xy 98.095139 61.221272) + (xy 98.088687 61.2199) + (xy 97.897713 61.2199) + (xy 97.891261 61.221272) + (xy 97.891256 61.221272) + (xy 97.822646 61.235856) + (xy 97.710912 61.259606) + (xy 97.704882 61.262291) + (xy 97.704881 61.262291) + (xy 97.542478 61.334597) + (xy 97.542476 61.334598) + (xy 97.536448 61.337282) + (xy 97.381947 61.449534) + (xy 97.376111 61.456016) + (xy 97.375064 61.456661) + (xy 97.372623 61.458859) + (xy 97.372221 61.458412) + (xy 97.315664 61.493254) + (xy 97.299379 61.495699) + (xy 97.299464 61.496237) + (xy 97.29163 61.497478) + (xy 97.28371 61.497727) + (xy 97.266054 61.502856) + (xy 97.264258 61.503378) + (xy 97.244906 61.507386) + (xy 97.237835 61.50828) + (xy 97.224803 61.509926) + (xy 97.217434 61.512843) + (xy 97.217432 61.512844) + (xy 97.183697 61.5262) + (xy 97.172469 61.530045) + (xy 97.130007 61.542382) + (xy 97.123185 61.546416) + (xy 97.123179 61.546419) + (xy 97.112568 61.552694) + (xy 97.094818 61.56139) + (xy 97.083356 61.565928) + (xy 97.083351 61.565931) + (xy 97.075983 61.568848) + (xy 97.060501 61.580096) + (xy 97.040225 61.594827) + (xy 97.030307 61.601343) + (xy 97.011619 61.612395) + (xy 96.992237 61.623858) + (xy 96.977913 61.638182) + (xy 96.962881 61.651021) + (xy 96.946493 61.662928) + (xy 96.919306 61.695791) + (xy 96.918312 61.696993) + (xy 96.910322 61.705773) + (xy 95.311195 63.3049) + (xy 95.248883 63.338926) + (xy 95.178068 63.333861) + (xy 95.121232 63.291314) + (xy 95.096421 63.224794) + (xy 95.0961 63.215805) + (xy 95.0961 60.544924) + (xy 95.116102 60.476803) + (xy 95.128458 60.460621) + (xy 95.20164 60.379344) + (xy 95.287488 60.230652) + (xy 95.293823 60.219679) + (xy 95.293824 60.219678) + (xy 95.297127 60.213956) + (xy 95.356142 60.032328) + (xy 95.35688 60.025312) + (xy 95.375414 59.848965) + (xy 95.376104 59.8424) + (xy 95.371611 59.799653) + (xy 95.356832 59.659035) + (xy 95.356832 59.659033) + (xy 95.356142 59.652472) + (xy 95.297127 59.470844) + (xy 95.286185 59.451891) + (xy 95.250201 59.389566) + (xy 97.6111 59.389566) + (xy 97.611437 59.396082) + (xy 97.621175 59.489932) + (xy 97.624068 59.503328) + (xy 97.674588 59.654753) + (xy 97.680753 59.667915) + (xy 97.764526 59.803292) + (xy 97.77356 59.81469) + (xy 97.886229 59.927163) + (xy 97.89764 59.936175) + (xy 98.033163 60.019712) + (xy 98.046341 60.025856) + (xy 98.197866 60.076115) + (xy 98.211232 60.078981) + (xy 98.30387 60.088472) + (xy 98.310285 60.0888) + (xy 98.334485 60.0888) + (xy 98.349724 60.084325) + (xy 98.350929 60.082935) + (xy 98.3526 60.075252) + (xy 98.3526 59.377915) + (xy 98.348125 59.362676) + (xy 98.346735 59.361471) + (xy 98.339052 59.3598) + (xy 97.629215 59.3598) + (xy 97.613976 59.364275) + (xy 97.612771 59.365665) + (xy 97.6111 59.373348) + (xy 97.6111 59.389566) + (xy 95.250201 59.389566) + (xy 95.241462 59.374429) + (xy 95.20164 59.305456) + (xy 95.168133 59.268242) + (xy 95.078275 59.168445) + (xy 95.078274 59.168444) + (xy 95.073853 59.163534) + (xy 94.919352 59.051282) + (xy 94.913324 59.048598) + (xy 94.913322 59.048597) + (xy 94.750919 58.976291) + (xy 94.750918 58.976291) + (xy 94.744888 58.973606) + (xy 94.62207 58.9475) + (xy 94.564544 58.935272) + (xy 94.564539 58.935272) + (xy 94.558087 58.9339) + (xy 94.367113 58.9339) + (xy 94.360661 58.935272) + (xy 94.360656 58.935272) + (xy 94.30313 58.9475) + (xy 94.180312 58.973606) + (xy 94.174282 58.976291) + (xy 94.174281 58.976291) + (xy 94.011878 59.048597) + (xy 94.011876 59.048598) + (xy 94.005848 59.051282) + (xy 93.851347 59.163534) + (xy 93.846926 59.168444) + (xy 93.846925 59.168445) + (xy 93.757068 59.268242) + (xy 93.72356 59.305456) + (xy 93.683738 59.374429) + (xy 93.639016 59.451891) + (xy 93.628073 59.470844) + (xy 93.569058 59.652472) + (xy 93.568368 59.659033) + (xy 93.568368 59.659035) + (xy 93.553589 59.799653) + (xy 93.549096 59.8424) + (xy 93.549786 59.848965) + (xy 93.568321 60.025312) + (xy 93.569058 60.032328) + (xy 93.628073 60.213956) + (xy 93.631376 60.219678) + (xy 93.631377 60.219679) + (xy 93.637712 60.230652) + (xy 93.72356 60.379344) + (xy 93.796737 60.460615) + (xy 93.827453 60.524621) + (xy 93.8291 60.544924) + (xy 93.8291 61.0133) + (xy 93.809098 61.081421) + (xy 93.755442 61.127914) + (xy 93.7031 61.1393) + (xy 91.8688 61.1393) + (xy 91.800679 61.119298) + (xy 91.781453 61.102957) + (xy 91.78118 61.10326) + (xy 91.776268 61.098837) + (xy 91.771853 61.093934) + (xy 91.66087 61.0133) + (xy 91.622694 60.985563) + (xy 91.622693 60.985562) + (xy 91.617352 60.981682) + (xy 91.611324 60.978998) + (xy 91.611322 60.978997) + (xy 91.448919 60.906691) + (xy 91.448918 60.906691) + (xy 91.442888 60.904006) + (xy 91.340652 60.882275) + (xy 91.262544 60.865672) + (xy 91.262539 60.865672) + (xy 91.256087 60.8643) + (xy 91.065113 60.8643) + (xy 91.058661 60.865672) + (xy 91.058656 60.865672) + (xy 90.980548 60.882275) + (xy 90.878312 60.904006) + (xy 90.872282 60.906691) + (xy 90.872281 60.906691) + (xy 90.709878 60.978997) + (xy 90.709876 60.978998) + (xy 90.703848 60.981682) + (xy 90.698507 60.985562) + (xy 90.698506 60.985563) + (xy 90.66033 61.0133) + (xy 90.549347 61.093934) + (xy 90.544926 61.098844) + (xy 90.544925 61.098845) + (xy 90.43291 61.223251) + (xy 90.42156 61.235856) + (xy 90.326073 61.401244) + (xy 90.267058 61.582872) + (xy 90.266368 61.589433) + (xy 90.266368 61.589435) + (xy 90.251031 61.735362) + (xy 90.247096 61.7728) + (xy 90.247786 61.779365) + (xy 90.264509 61.938472) + (xy 90.267058 61.962728) + (xy 90.326073 62.144356) + (xy 90.329376 62.150078) + (xy 90.329377 62.150079) + (xy 90.33832 62.165569) + (xy 90.42156 62.309744) + (xy 90.425978 62.314651) + (xy 90.425979 62.314652) + (xy 90.450097 62.341438) + (xy 90.549347 62.451666) + (xy 90.607162 62.493671) + (xy 90.657115 62.529964) + (xy 90.703848 62.563918) + (xy 90.709876 62.566602) + (xy 90.709878 62.566603) + (xy 90.872281 62.638909) + (xy 90.878312 62.641594) + (xy 90.971712 62.661447) + (xy 91.058656 62.679928) + (xy 91.058661 62.679928) + (xy 91.065113 62.6813) + (xy 91.256087 62.6813) + (xy 91.262539 62.679928) + (xy 91.262544 62.679928) + (xy 91.349488 62.661447) + (xy 91.442888 62.641594) + (xy 91.448919 62.638909) + (xy 91.611322 62.566603) + (xy 91.611324 62.566602) + (xy 91.617352 62.563918) + (xy 91.664086 62.529964) + (xy 91.750271 62.467346) + (xy 91.771853 62.451666) + (xy 91.776268 62.446763) + (xy 91.78118 62.44234) + (xy 91.782305 62.443589) + (xy 91.835614 62.410749) + (xy 91.8688 62.4063) + (xy 93.0427 62.4063) + (xy 93.110821 62.426302) + (xy 93.157314 62.479958) + (xy 93.1687 62.5323) + (xy 93.1687 63.058406) + (xy 93.148698 63.126527) + (xy 93.131795 63.147501) + (xy 91.3669 64.912395) + (xy 91.304588 64.946421) + (xy 91.277805 64.9493) + (xy 89.10003 64.9493) + (xy 89.088847 64.948773) + (xy 89.081354 64.947098) + (xy 89.073428 64.947347) + (xy 89.073427 64.947347) + (xy 89.013264 64.949238) + (xy 89.009306 64.9493) + (xy 88.981406 64.9493) + (xy 88.977416 64.949804) + (xy 88.965582 64.950736) + (xy 88.921373 64.952126) + (xy 88.913759 64.954338) + (xy 88.913754 64.954339) + (xy 88.901921 64.957777) + (xy 88.882558 64.961788) + (xy 88.862465 64.964326) + (xy 88.855098 64.967243) + (xy 88.855093 64.967244) + (xy 88.821354 64.980602) + (xy 88.810127 64.984446) + (xy 88.767669 64.996782) + (xy 88.760843 65.000819) + (xy 88.750234 65.007093) + (xy 88.732486 65.015788) + (xy 88.713645 65.023248) + (xy 88.707229 65.02791) + (xy 88.707228 65.02791) + (xy 88.677875 65.049236) + (xy 88.667955 65.055752) + (xy 88.636727 65.07422) + (xy 88.636724 65.074222) + (xy 88.6299 65.078258) + (xy 88.615579 65.092579) + (xy 88.600546 65.105419) + (xy 88.584155 65.117328) + (xy 88.557778 65.149213) + (xy 88.555974 65.151393) + (xy 88.547984 65.160174) + (xy 88.15093 65.557227) + (xy 88.088618 65.591252) + (xy 88.061835 65.594131) + (xy 86.708332 65.594131) + (xy 86.697148 65.593604) + (xy 86.68966 65.59193) + (xy 86.681737 65.592179) + (xy 86.621602 65.594069) + (xy 86.617644 65.594131) + (xy 86.589713 65.594131) + (xy 86.585798 65.594626) + (xy 86.585794 65.594626) + (xy 86.585736 65.594634) + (xy 86.585707 65.594637) + (xy 86.573865 65.59557) + (xy 86.529679 65.596958) + (xy 86.516716 65.600724) + (xy 86.510227 65.602609) + (xy 86.490875 65.606617) + (xy 86.483804 65.607511) + (xy 86.470772 65.609157) + (xy 86.463403 65.612074) + (xy 86.463401 65.612075) + (xy 86.429666 65.625431) + (xy 86.418438 65.629276) + (xy 86.375976 65.641613) + (xy 86.369154 65.645647) + (xy 86.369148 65.64565) + (xy 86.358537 65.651925) + (xy 86.340787 65.660621) + (xy 86.329325 65.665159) + (xy 86.32932 65.665162) + (xy 86.321952 65.668079) + (xy 86.315537 65.67274) + (xy 86.286194 65.694058) + (xy 86.276276 65.700574) + (xy 86.271089 65.703642) + (xy 86.238206 65.723089) + (xy 86.223882 65.737413) + (xy 86.20885 65.750252) + (xy 86.192462 65.762159) + (xy 86.17045 65.788767) + (xy 86.164281 65.796224) + (xy 86.156291 65.805004) + (xy 83.71878 68.242515) + (xy 83.680934 68.268527) + (xy 83.623278 68.294197) + (xy 83.623276 68.294198) + (xy 83.617248 68.296882) + (xy 83.611907 68.300762) + (xy 83.611906 68.300763) + (xy 83.57556 68.32717) + (xy 83.462747 68.409134) + (xy 83.458326 68.414044) + (xy 83.458325 68.414045) + (xy 83.350071 68.534274) + (xy 83.33496 68.551056) + (xy 83.239473 68.716444) + (xy 83.180458 68.898072) + (xy 83.160496 69.088) + (xy 83.161186 69.094565) + (xy 83.167938 69.158802) + (xy 83.180458 69.277928) + (xy 83.239473 69.459556) + (xy 83.33496 69.624944) + (xy 83.339378 69.629851) + (xy 83.339379 69.629852) + (xy 83.35992 69.652665) + (xy 83.462747 69.766866) + (xy 83.617248 69.879118) + (xy 83.623276 69.881802) + (xy 83.623278 69.881803) + (xy 83.785681 69.954109) + (xy 83.791712 69.956794) + (xy 83.885112 69.976647) + (xy 83.972056 69.995128) + (xy 83.972061 69.995128) + (xy 83.978513 69.9965) + (xy 84.169487 69.9965) + (xy 84.175939 69.995128) + (xy 84.175944 69.995128) + (xy 84.262888 69.976647) + (xy 84.356288 69.956794) + (xy 84.362319 69.954109) + (xy 84.524722 69.881803) + (xy 84.524724 69.881802) + (xy 84.530752 69.879118) + (xy 84.571439 69.849557) + (xy 84.638306 69.825699) + (xy 84.707458 69.841779) + (xy 84.719561 69.849557) + (xy 84.760248 69.879118) + (xy 84.766276 69.881802) + (xy 84.766278 69.881803) + (xy 84.928681 69.954109) + (xy 84.934712 69.956794) + (xy 85.028112 69.976647) + (xy 85.115056 69.995128) + (xy 85.115061 69.995128) + (xy 85.121513 69.9965) + (xy 85.216605 69.9965) + (xy 85.284726 70.016502) + (xy 85.331219 70.070158) + (xy 85.341323 70.140432) + (xy 85.311829 70.205012) + (xy 85.305702 70.211594) + (xy 84.915393 70.601902) + (xy 84.585099 70.932196) + (xy 84.522787 70.966221) + (xy 84.496004 70.9691) + (xy 78.546594 70.9691) + (xy 78.478473 70.949098) + (xy 78.457499 70.932195) + (xy 77.423543 69.898238) + (xy 77.389517 69.835926) + (xy 77.394582 69.76511) + (xy 77.403519 69.746143) + (xy 77.463023 69.643079) + (xy 77.463024 69.643078) + (xy 77.466327 69.637356) + (xy 77.525342 69.455728) + (xy 77.535109 69.362805) + (xy 77.544614 69.272365) + (xy 77.545304 69.2658) + (xy 77.530052 69.120685) + (xy 77.526032 69.082435) + (xy 77.526032 69.082433) + (xy 77.525342 69.075872) + (xy 77.466327 68.894244) + (xy 77.37084 68.728856) + (xy 77.359654 68.716432) + (xy 77.247475 68.591845) + (xy 77.247474 68.591844) + (xy 77.243053 68.586934) + (xy 77.107023 68.488102) + (xy 77.093894 68.478563) + (xy 77.093893 68.478562) + (xy 77.088552 68.474682) + (xy 77.082524 68.471998) + (xy 77.082522 68.471997) + (xy 76.920119 68.399691) + (xy 76.920118 68.399691) + (xy 76.914088 68.397006) + (xy 76.820687 68.377153) + (xy 76.733744 68.358672) + (xy 76.733739 68.358672) + (xy 76.727287 68.3573) + (xy 76.536313 68.3573) + (xy 76.529861 68.358672) + (xy 76.529856 68.358672) + (xy 76.442913 68.377153) + (xy 76.349512 68.397006) + (xy 76.343482 68.399691) + (xy 76.343481 68.399691) + (xy 76.181078 68.471997) + (xy 76.181076 68.471998) + (xy 76.175048 68.474682) + (xy 76.169707 68.478562) + (xy 76.169706 68.478563) + (xy 76.156577 68.488102) + (xy 76.020547 68.586934) + (xy 76.016126 68.591844) + (xy 76.016125 68.591845) + (xy 75.903947 68.716432) + (xy 75.89276 68.728856) + (xy 75.797273 68.894244) + (xy 75.738258 69.075872) + (xy 75.737568 69.082433) + (xy 75.737568 69.082435) + (xy 75.733548 69.120685) + (xy 75.718296 69.2658) + (xy 75.718986 69.272365) + (xy 75.728492 69.362805) + (xy 75.738258 69.455728) + (xy 75.797273 69.637356) + (xy 75.800576 69.643078) + (xy 75.800577 69.643079) + (xy 75.805309 69.651275) + (xy 75.89276 69.802744) + (xy 75.964438 69.882351) + (xy 75.995154 69.946356) + (xy 75.996739 69.9627) + (xy 75.998238 70.010386) + (xy 75.9983 70.014345) + (xy 75.9983 70.042256) + (xy 75.998797 70.04619) + (xy 75.998797 70.046191) + (xy 75.998805 70.046256) + (xy 75.999738 70.058093) + (xy 76.001127 70.102289) + (xy 76.006778 70.121739) + (xy 76.010787 70.1411) + (xy 76.013326 70.161197) + (xy 76.016245 70.168568) + (xy 76.016245 70.16857) + (xy 76.029604 70.202312) + (xy 76.033449 70.213542) + (xy 76.043571 70.248383) + (xy 76.045782 70.255993) + (xy 76.049815 70.262812) + (xy 76.049817 70.262817) + (xy 76.056093 70.273428) + (xy 76.064788 70.291176) + (xy 76.072248 70.310017) + (xy 76.07691 70.316433) + (xy 76.07691 70.316434) + (xy 76.098236 70.345787) + (xy 76.104752 70.355707) + (xy 76.127258 70.393762) + (xy 76.141579 70.408083) + (xy 76.154419 70.423116) + (xy 76.166328 70.439507) + (xy 76.172434 70.444558) + (xy 76.200405 70.467698) + (xy 76.209184 70.475688) + (xy 77.728343 71.994847) + (xy 77.735887 72.003137) + (xy 77.74 72.009618) + (xy 77.745777 72.015043) + (xy 77.789667 72.056258) + (xy 77.792509 72.059013) + (xy 77.812231 72.078735) + (xy 77.815355 72.081158) + (xy 77.815359 72.081162) + (xy 77.815424 72.081212) + (xy 77.824445 72.088917) + (xy 77.856679 72.119186) + (xy 77.863627 72.123005) + (xy 77.863629 72.123007) + (xy 77.874432 72.128946) + (xy 77.890959 72.139802) + (xy 77.900698 72.147357) + (xy 77.9007 72.147358) + (xy 77.90696 72.152214) + (xy 77.94754 72.169774) + (xy 77.958188 72.174991) + (xy 77.982976 72.188618) + (xy 77.99694 72.196295) + (xy 78.004616 72.198266) + (xy 78.004619 72.198267) + (xy 78.016562 72.201333) + (xy 78.035267 72.207737) + (xy 78.053855 72.215781) + (xy 78.061678 72.21702) + (xy 78.061688 72.217023) + (xy 78.097524 72.222699) + (xy 78.109144 72.225105) + (xy 78.140959 72.233273) + (xy 78.15197 72.2361) + (xy 78.172224 72.2361) + (xy 78.191934 72.237651) + (xy 78.211943 72.24082) + (xy 78.219835 72.240074) + (xy 78.23858 72.238302) + (xy 78.255962 72.236659) + (xy 78.267819 72.2361) + (xy 78.582352 72.2361) + (xy 78.650473 72.256102) + (xy 78.696966 72.309758) + (xy 78.707662 72.37527) + (xy 78.690096 72.5424) + (xy 78.710058 72.732328) + (xy 78.769073 72.913956) + (xy 78.772376 72.919678) + (xy 78.772377 72.919679) + (xy 78.851931 73.057471) + (xy 78.868669 73.126467) + (xy 78.845448 73.193558) + (xy 78.842225 73.197492) + (xy 78.838441 73.202699) + (xy 78.833014 73.208479) + (xy 78.829195 73.215425) + (xy 78.829193 73.215428) + (xy 78.823252 73.226234) + (xy 78.812401 73.242753) + (xy 78.799986 73.258759) + (xy 78.796841 73.266028) + (xy 78.796838 73.266032) + (xy 78.782426 73.299337) + (xy 78.777209 73.309987) + (xy 78.755905 73.34874) + (xy 78.753934 73.356415) + (xy 78.753934 73.356416) + (xy 78.750867 73.368362) + (xy 78.744463 73.387066) + (xy 78.736419 73.405655) + (xy 78.73518 73.413478) + (xy 78.735177 73.413488) + (xy 78.729501 73.449324) + (xy 78.727095 73.460944) + (xy 78.7161 73.50377) + (xy 78.7161 73.524024) + (xy 78.714549 73.543734) + (xy 78.71138 73.563743) + (xy 78.712126 73.571635) + (xy 78.715541 73.607761) + (xy 78.7161 73.619619) + (xy 78.7161 77.765005) + (xy 78.696098 77.833126) + (xy 78.679195 77.8541) + (xy 78.500147 78.033148) + (xy 78.491861 78.040688) + (xy 78.485382 78.0448) + (xy 78.479957 78.050577) + (xy 78.438757 78.094451) + (xy 78.436002 78.097293) + (xy 78.416265 78.11703) + (xy 78.413785 78.120227) + (xy 78.406082 78.129247) + (xy 78.375814 78.161479) + (xy 78.371995 78.168425) + (xy 78.371993 78.168428) + (xy 78.366052 78.179234) + (xy 78.355201 78.195753) + (xy 78.342786 78.211759) + (xy 78.339641 78.219028) + (xy 78.339638 78.219032) + (xy 78.325226 78.252337) + (xy 78.320009 78.262987) + (xy 78.298705 78.30174) + (xy 78.296734 78.309415) + (xy 78.296734 78.309416) + (xy 78.293667 78.321362) + (xy 78.287263 78.340066) + (xy 78.279219 78.358655) + (xy 78.27798 78.366478) + (xy 78.277977 78.366488) + (xy 78.272301 78.402324) + (xy 78.269895 78.413944) + (xy 78.2589 78.45677) + (xy 78.2589 78.477024) + (xy 78.257349 78.496734) + (xy 78.25418 78.516743) + (xy 78.254926 78.524635) + (xy 78.258341 78.560761) + (xy 78.2589 78.572619) + (xy 78.2589 78.806405) + (xy 78.238898 78.874526) + (xy 78.221995 78.895501) + (xy 77.625499 79.491996) + (xy 77.563187 79.526021) + (xy 77.536404 79.5289) + (xy 75.8922 79.5289) + (xy 75.824079 79.508898) + (xy 75.804853 79.492557) + (xy 75.80458 79.49286) + (xy 75.799668 79.488437) + (xy 75.795253 79.483534) + (xy 75.640752 79.371282) + (xy 75.634724 79.368598) + (xy 75.634722 79.368597) + (xy 75.472319 79.296291) + (xy 75.472318 79.296291) + (xy 75.466288 79.293606) + (xy 75.372888 79.273753) + (xy 75.285944 79.255272) + (xy 75.285939 79.255272) + (xy 75.279487 79.2539) + (xy 75.088513 79.2539) + (xy 75.082061 79.255272) + (xy 75.082056 79.255272) + (xy 74.995112 79.273753) + (xy 74.901712 79.293606) + (xy 74.895682 79.296291) + (xy 74.895681 79.296291) + (xy 74.733278 79.368597) + (xy 74.733276 79.368598) + (xy 74.727248 79.371282) + (xy 74.572747 79.483534) + (xy 74.568326 79.488444) + (xy 74.568325 79.488445) + (xy 74.523652 79.53806) + (xy 74.44496 79.625456) + (xy 74.349473 79.790844) + (xy 74.290458 79.972472) + (xy 74.289768 79.979033) + (xy 74.289768 79.979035) + (xy 74.28809 79.995005) + (xy 74.270496 80.1624) + (xy 74.271186 80.168965) + (xy 74.288016 80.32909) + (xy 74.290458 80.352328) + (xy 74.349473 80.533956) + (xy 74.352776 80.539678) + (xy 74.352777 80.539679) + (xy 74.373208 80.575067) + (xy 74.44496 80.699344) + (xy 74.449378 80.704251) + (xy 74.449379 80.704252) + (xy 74.553284 80.81965) + (xy 74.572747 80.841266) + (xy 74.657854 80.9031) + (xy 74.719831 80.948129) + (xy 74.727248 80.953518) + (xy 74.733276 80.956202) + (xy 74.733278 80.956203) + (xy 74.895681 81.028509) + (xy 74.901712 81.031194) + (xy 75.065882 81.06609) + (xy 75.128354 81.099817) + (xy 75.162676 81.161967) + (xy 75.157948 81.232806) + (xy 75.115672 81.289844) + (xy 75.087902 81.305745) + (xy 74.968232 81.355314) + (xy 74.918118 81.393768) + (xy 74.851898 81.419369) + (xy 74.782349 81.405104) + (xy 74.734271 81.36011) + (xy 74.673416 81.261769) + (xy 74.667771 81.256134) + (xy 74.555484 81.144042) + (xy 74.555479 81.144038) + (xy 74.550303 81.138871) + (xy 74.440034 81.0709) + (xy 74.40845 81.051431) + (xy 74.408448 81.05143) + (xy 74.40222 81.047591) + (xy 74.237109 80.992826) + (xy 74.230273 80.992126) + (xy 74.23027 80.992125) + (xy 74.178774 80.986849) + (xy 74.134372 80.9823) + (xy 73.435228 80.9823) + (xy 73.431982 80.982637) + (xy 73.431978 80.982637) + (xy 73.338065 80.992381) + (xy 73.338061 80.992382) + (xy 73.331207 80.993093) + (xy 73.324671 80.995274) + (xy 73.324669 80.995274) + (xy 73.225052 81.028509) + (xy 73.166193 81.048146) + (xy 73.018269 81.139684) + (xy 73.013097 81.144865) + (xy 73.011027 81.146939) + (xy 73.009262 81.147905) + (xy 73.007359 81.149413) + (xy 73.007101 81.149087) + (xy 72.948746 81.181019) + (xy 72.877925 81.176018) + (xy 72.83283 81.147092) + (xy 72.830169 81.144436) + (xy 72.81876 81.135425) + (xy 72.683237 81.051888) + (xy 72.670059 81.045744) + (xy 72.518534 80.995485) + (xy 72.505168 80.992619) + (xy 72.41253 80.983128) + (xy 72.406115 80.9828) + (xy 72.331915 80.9828) + (xy 72.316676 80.987275) + (xy 72.315471 80.988665) + (xy 72.3138 80.996348) + (xy 72.3138 82.930685) + (xy 72.318275 82.945924) + (xy 72.319665 82.947129) + (xy 72.327348 82.9488) + (xy 72.406066 82.9488) + (xy 72.412582 82.948463) + (xy 72.506432 82.938725) + (xy 72.519828 82.935832) + (xy 72.671253 82.885312) + (xy 72.684415 82.879147) + (xy 72.819792 82.795374) + (xy 72.831194 82.786336) + (xy 72.832867 82.784661) + (xy 72.834293 82.783881) + (xy 72.836927 82.781793) + (xy 72.837284 82.782244) + (xy 72.895149 82.750581) + (xy 72.965969 82.755584) + (xy 73.011054 82.784501) + (xy 73.012893 82.786336) + (xy 73.019297 82.792729) + (xy 73.025527 82.796569) + (xy 73.025528 82.79657) + (xy 73.116416 82.852594) + (xy 73.163909 82.905366) + (xy 73.1763 82.959854) + (xy 73.1763 83.184939) + (xy 73.156298 83.25306) + (xy 73.098518 83.301348) + (xy 72.968232 83.355314) + (xy 72.846343 83.448843) + (xy 72.752814 83.570733) + (xy 72.694019 83.712676) + (xy 72.692941 83.720865) + (xy 72.681011 83.811484) + (xy 72.679 83.826756) + (xy 72.679 83.830876) + (xy 72.678942 83.831761) + (xy 72.654526 83.898427) + (xy 72.597943 83.94131) + (xy 72.527158 83.946794) + (xy 72.464117 83.912612) + (xy 71.7154 83.163895) + (xy 71.681374 83.101583) + (xy 71.686439 83.030768) + (xy 71.728986 82.973932) + (xy 71.771524 82.958066) + (xy 71.770302 82.953904) + (xy 71.802924 82.944325) + (xy 71.804129 82.942935) + (xy 71.8058 82.935252) + (xy 71.8058 81.000915) + (xy 71.793457 80.958878) + (xy 71.784055 80.94425) + (xy 71.784051 80.873254) + (xy 71.815854 80.81965) + (xy 74.037899 78.597605) + (xy 74.100211 78.563579) + (xy 74.126994 78.5607) + (xy 74.4758 78.5607) + (xy 74.543921 78.580702) + (xy 74.563147 78.597043) + (xy 74.56342 78.59674) + (xy 74.568332 78.601163) + (xy 74.572747 78.606066) + (xy 74.727248 78.718318) + (xy 74.733276 78.721002) + (xy 74.733278 78.721003) + (xy 74.895681 78.793309) + (xy 74.901712 78.795994) + (xy 74.995112 78.815847) + (xy 75.082056 78.834328) + (xy 75.082061 78.834328) + (xy 75.088513 78.8357) + (xy 75.279487 78.8357) + (xy 75.285939 78.834328) + (xy 75.285944 78.834328) + (xy 75.372888 78.815847) + (xy 75.466288 78.795994) + (xy 75.472319 78.793309) + (xy 75.634722 78.721003) + (xy 75.634724 78.721002) + (xy 75.640752 78.718318) + (xy 75.795253 78.606066) + (xy 75.830721 78.566675) + (xy 75.918621 78.469052) + (xy 75.918622 78.469051) + (xy 75.92304 78.464144) + (xy 75.999931 78.330966) + (xy 76.015223 78.304479) + (xy 76.015224 78.304478) + (xy 76.018527 78.298756) + (xy 76.077542 78.117128) + (xy 76.079776 78.095879) + (xy 76.096814 77.933765) + (xy 76.097504 77.9272) + (xy 76.077542 77.737272) + (xy 76.018527 77.555644) + (xy 75.92304 77.390256) + (xy 75.906881 77.372309) + (xy 75.799675 77.253245) + (xy 75.799674 77.253244) + (xy 75.795253 77.248334) + (xy 75.640752 77.136082) + (xy 75.634724 77.133398) + (xy 75.634722 77.133397) + (xy 75.472319 77.061091) + (xy 75.472318 77.061091) + (xy 75.466288 77.058406) + (xy 75.372888 77.038553) + (xy 75.285944 77.020072) + (xy 75.285939 77.020072) + (xy 75.279487 77.0187) + (xy 75.088513 77.0187) + (xy 75.082061 77.020072) + (xy 75.082056 77.020072) + (xy 74.995112 77.038553) + (xy 74.901712 77.058406) + (xy 74.895682 77.061091) + (xy 74.895681 77.061091) + (xy 74.733278 77.133397) + (xy 74.733276 77.133398) + (xy 74.727248 77.136082) + (xy 74.572747 77.248334) + (xy 74.568332 77.253237) + (xy 74.56342 77.25766) + (xy 74.562295 77.256411) + (xy 74.508986 77.289251) + (xy 74.4758 77.2937) + (xy 73.891167 77.2937) + (xy 73.879984 77.293173) + (xy 73.872491 77.291498) + (xy 73.864565 77.291747) + (xy 73.864564 77.291747) + (xy 73.804414 77.293638) + (xy 73.800455 77.2937) + (xy 73.772544 77.2937) + (xy 73.76861 77.294197) + (xy 73.768609 77.294197) + (xy 73.768544 77.294205) + (xy 73.756707 77.295138) + (xy 73.72489 77.296138) + (xy 73.720429 77.296278) + (xy 73.71251 77.296527) + (xy 73.694854 77.301656) + (xy 73.693058 77.302178) + (xy 73.673706 77.306186) + (xy 73.666635 77.30708) + (xy 73.653603 77.308726) + (xy 73.646234 77.311643) + (xy 73.646232 77.311644) + (xy 73.612497 77.325) + (xy 73.601269 77.328845) + (xy 73.558807 77.341182) + (xy 73.551985 77.345216) + (xy 73.551979 77.345219) + (xy 73.541368 77.351494) + (xy 73.523618 77.36019) + (xy 73.512156 77.364728) + (xy 73.512151 77.364731) + (xy 73.504783 77.367648) + (xy 73.493739 77.375672) + (xy 73.469025 77.393627) + (xy 73.459107 77.400143) + (xy 73.440419 77.411195) + (xy 73.421037 77.422658) + (xy 73.406713 77.436982) + (xy 73.391681 77.449821) + (xy 73.375293 77.461728) + (xy 73.352734 77.488997) + (xy 73.347112 77.495793) + (xy 73.339122 77.504573) + (xy 70.548631 80.295064) + (xy 70.486319 80.32909) + (xy 70.415504 80.324025) + (xy 70.358668 80.281478) + (xy 70.333857 80.214958) + (xy 70.335337 80.184743) + (xy 70.568623 78.819744) + (xy 70.62311 78.500935) + (xy 70.626615 78.485981) + (xy 70.635373 78.45677) + (xy 71.619971 75.172549) + (xy 71.62454 75.159832) + (xy 72.956498 71.996781) + (xy 72.959924 71.989332) + (xy 74.543551 68.822078) + (xy 74.549559 68.811397) + (xy 76.368618 65.91707) + (xy 76.379676 65.902068) + (xy 76.514955 65.744427) + (xy 76.795979 65.416949) + (xy 76.824012 65.392665) + (xy 76.825479 65.391733) + (xy 77.517164 64.952126) + (xy 77.620907 64.886191) + (xy 77.643202 64.874952) + (xy 78.367384 64.596003) + (xy 78.572689 64.516921) + (xy 78.617979 64.5085) + (xy 79.633279 64.5085) + (xy 79.653884 64.510196) + (xy 80.09555 64.583409) + (xy 80.096613 64.58359) + (xy 80.176566 64.597547) + (xy 80.207172 64.594116) + (xy 80.223974 64.593363) + (xy 80.235783 64.593623) + (xy 80.25386 64.594021) + (xy 80.262531 64.591691) + (xy 80.262534 64.591691) + (xy 80.286035 64.585377) + (xy 80.28692 64.585174) + (xy 80.287787 64.585077) + (xy 80.290146 64.584434) + (xy 80.290159 64.584431) + (xy 80.331089 64.573274) + (xy 80.331532 64.573154) + (xy 80.346797 64.569053) + (xy 80.394529 64.556229) + (xy 80.395152 64.55585) + (xy 80.395672 64.555668) + (xy 81.030789 64.38254) + (xy 81.192653 64.338417) + (xy 81.212808 64.335098) + (xy 81.216694 64.3343) + (xy 81.225657 64.33376) + (xy 81.258633 64.321921) + (xy 81.271222 64.317402) + (xy 81.280654 64.314429) + (xy 81.287083 64.312676) + (xy 81.287087 64.312675) + (xy 81.291411 64.311496) + (xy 81.305952 64.305205) + (xy 81.313388 64.302265) + (xy 81.330993 64.295944) + (xy 81.339972 64.291048) + (xy 81.350247 64.286038) + (xy 81.383 64.271866) + (xy 81.383001 64.271866) + (xy 81.391239 64.268301) + (xy 81.400081 64.260961) + (xy 81.420242 64.247287) + (xy 82.286675 63.774919) + (xy 82.289919 63.773211) + (xy 82.306914 63.764577) + (xy 82.347855 63.743778) + (xy 82.374779 63.718467) + (xy 82.385695 63.709311) + (xy 82.403041 63.696358) + (xy 82.415168 63.687303) + (xy 82.420563 63.680131) + (xy 82.420565 63.680129) + (xy 82.456501 63.632355) + (xy 82.457794 63.630667) + (xy 82.670429 63.357703) + (xy 83.940743 63.357703) + (xy 83.941302 63.361947) + (xy 83.941302 63.361951) + (xy 83.955405 63.469072) + (xy 83.978268 63.642734) + (xy 83.979401 63.646874) + (xy 83.979401 63.646876) + (xy 83.99441 63.701739) + (xy 84.054129 63.920036) + (xy 84.055813 63.923984) + (xy 84.151471 64.148249) + (xy 84.166923 64.184476) + (xy 84.199133 64.238295) + (xy 84.308534 64.42109) + (xy 84.314561 64.431161) + (xy 84.494313 64.655528) + (xy 84.578297 64.735226) + (xy 84.685232 64.836703) + (xy 84.702851 64.853423) + (xy 84.860257 64.966531) + (xy 84.92373 65.012141) + (xy 84.936317 65.021186) + (xy 84.940112 65.023195) + (xy 84.940113 65.023196) + (xy 84.961869 65.034715) + (xy 85.190392 65.155712) + (xy 85.270174 65.184908) + (xy 85.445016 65.248891) + (xy 85.460373 65.254511) + (xy 85.741264 65.315755) + (xy 85.769841 65.318004) + (xy 85.964282 65.333307) + (xy 85.964291 65.333307) + (xy 85.966739 65.3335) + (xy 86.122271 65.3335) + (xy 86.124407 65.333354) + (xy 86.124418 65.333354) + (xy 86.332548 65.319165) + (xy 86.332554 65.319164) + (xy 86.336825 65.318873) + (xy 86.34102 65.318004) + (xy 86.341022 65.318004) + (xy 86.50695 65.283642) + (xy 86.618342 65.260574) + (xy 86.889343 65.164607) + (xy 87.039553 65.087078) + (xy 87.141005 65.034715) + (xy 87.141006 65.034715) + (xy 87.144812 65.03275) + (xy 87.148313 65.030289) + (xy 87.148317 65.030287) + (xy 87.266328 64.947347) + (xy 87.380023 64.867441) + (xy 87.522303 64.735226) + (xy 87.587479 64.674661) + (xy 87.587481 64.674658) + (xy 87.590622 64.67174) + (xy 87.772713 64.449268) + (xy 87.922927 64.204142) + (xy 87.959542 64.120731) + (xy 88.036758 63.944828) + (xy 88.036759 63.944826) + (xy 88.038483 63.940898) + (xy 88.117244 63.664406) + (xy 88.157751 63.379784) + (xy 88.157809 63.368875) + (xy 88.159235 63.096583) + (xy 88.159235 63.096576) + (xy 88.159257 63.092297) + (xy 88.146737 62.997194) + (xy 88.134246 62.90232) + (xy 88.121732 62.807266) + (xy 88.119776 62.800114) + (xy 88.097115 62.717281) + (xy 88.045871 62.529964) + (xy 88.036607 62.508246) + (xy 87.934763 62.269476) + (xy 87.934761 62.269472) + (xy 87.933077 62.265524) + (xy 87.785439 62.018839) + (xy 87.605687 61.794472) + (xy 87.425897 61.623858) + (xy 87.400258 61.599527) + (xy 87.400255 61.599525) + (xy 87.397149 61.596577) + (xy 87.163683 61.428814) + (xy 87.141843 61.41725) + (xy 87.111612 61.401244) + (xy 86.909608 61.294288) + (xy 86.71549 61.223251) + (xy 86.643658 61.196964) + (xy 86.643656 61.196963) + (xy 86.639627 61.195489) + (xy 86.358736 61.134245) + (xy 86.327685 61.131801) + (xy 86.135718 61.116693) + (xy 86.135709 61.116693) + (xy 86.133261 61.1165) + (xy 85.977729 61.1165) + (xy 85.975593 61.116646) + (xy 85.975582 61.116646) + (xy 85.767452 61.130835) + (xy 85.767446 61.130836) + (xy 85.763175 61.131127) + (xy 85.75898 61.131996) + (xy 85.758978 61.131996) + (xy 85.688395 61.146613) + (xy 85.481658 61.189426) + (xy 85.210657 61.285393) + (xy 84.955188 61.41725) + (xy 84.951687 61.419711) + (xy 84.951683 61.419713) + (xy 84.899112 61.456661) + (xy 84.719977 61.582559) + (xy 84.703011 61.598325) + (xy 84.51414 61.773835) + (xy 84.509378 61.77826) + (xy 84.327287 62.000732) + (xy 84.177073 62.245858) + (xy 84.175347 62.249791) + (xy 84.175346 62.249792) + (xy 84.145261 62.318328) + (xy 84.061517 62.509102) + (xy 83.982756 62.785594) + (xy 83.942249 63.070216) + (xy 83.942227 63.074505) + (xy 83.942226 63.074512) + (xy 83.940841 63.338926) + (xy 83.940743 63.357703) + (xy 82.670429 63.357703) + (xy 83.006518 62.92626) + (xy 83.022982 62.909047) + (xy 83.02378 62.908141) + (xy 83.030605 62.90232) + (xy 83.03552 62.89482) + (xy 83.035525 62.894814) + (xy 83.056592 62.862664) + (xy 83.062582 62.85429) + (xy 83.065982 62.849925) + (xy 83.068739 62.846386) + (xy 83.077008 62.831929) + (xy 83.080992 62.825429) + (xy 83.089277 62.812787) + (xy 83.08928 62.812781) + (xy 83.091948 62.80871) + (xy 83.095845 62.800114) + (xy 83.10123 62.789581) + (xy 83.118286 62.759762) + (xy 83.118287 62.759759) + (xy 83.122744 62.751967) + (xy 83.124835 62.743236) + (xy 83.124837 62.743231) + (xy 83.125621 62.739957) + (xy 83.133396 62.717281) + (xy 83.40333 62.121835) + (xy 83.527021 61.848987) + (xy 83.527713 61.847489) + (xy 83.552604 61.794472) + (xy 83.558131 61.7827) + (xy 83.563035 61.751204) + (xy 83.566558 61.735371) + (xy 83.575471 61.704764) + (xy 83.57535 61.59597) + (xy 83.57535 59.923613) + (xy 83.578174 59.897085) + (xy 83.664362 59.496893) + (xy 83.799571 58.869091) + (xy 83.812119 58.835309) + (xy 83.812194 58.835173) + (xy 83.813005 58.833685) + (xy 97.6111 58.833685) + (xy 97.615575 58.848924) + (xy 97.616965 58.850129) + (xy 97.624648 58.8518) + (xy 98.334485 58.8518) + (xy 98.349724 58.847325) + (xy 98.350929 58.845935) + (xy 98.3526 58.838252) + (xy 98.3526 58.140915) + (xy 98.348125 58.125676) + (xy 98.346735 58.124471) + (xy 98.339052 58.1228) + (xy 98.310334 58.1228) + (xy 98.303818 58.123137) + (xy 98.209968 58.132875) + (xy 98.196572 58.135768) + (xy 98.045147 58.186288) + (xy 98.031985 58.192453) + (xy 97.896608 58.276226) + (xy 97.88521 58.28526) + (xy 97.772737 58.397929) + (xy 97.763725 58.40934) + (xy 97.680188 58.544863) + (xy 97.674044 58.558041) + (xy 97.623785 58.709566) + (xy 97.620919 58.722932) + (xy 97.611428 58.81557) + (xy 97.6111 58.821985) + (xy 97.6111 58.833685) + (xy 83.813005 58.833685) + (xy 84.231415 58.066217) + (xy 84.252946 58.037434) + (xy 84.988326 57.302051) + (xy 85.008463 57.285691) + (xy 85.104859 57.222656) + (xy 87.132752 55.89658) + (xy 87.140487 55.89191) + (xy 87.166351 55.877532) + (xy 89.953936 54.327885) + (xy 100.282 54.327885) + (xy 100.286475 54.343124) + (xy 100.287865 54.344329) + (xy 100.295548 54.346) + (xy 101.017885 54.346) + (xy 101.033124 54.341525) + (xy 101.034329 54.340135) + (xy 101.036 54.332452) + (xy 101.036 53.092076) + (xy 101.032027 53.078545) + (xy 101.024232 53.077425) + (xy 100.916479 53.109138) + (xy 100.905111 53.113731) + (xy 100.740846 53.199607) + (xy 100.730585 53.206321) + (xy 100.586127 53.322468) + (xy 100.577368 53.331046) + (xy 100.458222 53.473039) + (xy 100.451292 53.483159) + (xy 100.361998 53.645585) + (xy 100.357166 53.656858) + (xy 100.30112 53.833538) + (xy 100.29857 53.845532) + (xy 100.282393 53.989761) + (xy 100.282 53.996785) + (xy 100.282 54.327885) + (xy 89.953936 54.327885) + (xy 90.130927 54.229494) + (xy 90.144328 54.223048) + (xy 93.387316 52.892806) + (xy 93.396183 52.889552) + (xy 96.282522 51.951342) + (xy 96.69153 51.818393) + (xy 96.705272 51.815499) + (xy 96.70525 51.815411) + (xy 96.713966 51.81325) + (xy 96.722894 51.812346) + (xy 96.731208 51.808973) + (xy 96.731214 51.808972) + (xy 96.770212 51.793153) + (xy 96.778618 51.790086) + (xy 96.786897 51.787395) + (xy 96.786905 51.787392) + (xy 96.791168 51.786006) + (xy 96.795195 51.784028) + (xy 96.795198 51.784027) + (xy 96.799367 51.781979) + (xy 96.802984 51.780203) + (xy 96.811165 51.77654) + (xy 96.849548 51.760971) + (xy 96.849552 51.760969) + (xy 96.857869 51.757595) + (xy 96.864908 51.752021) + (xy 96.87266 51.747503) + (xy 96.872716 51.747599) + (xy 96.873394 51.747171) + (xy 96.873327 51.747073) + (xy 96.880741 51.742014) + (xy 96.888801 51.738056) + (xy 96.895425 51.731996) + (xy 96.895427 51.731994) + (xy 96.92581 51.704194) + (xy 96.932617 51.698396) + (xy 96.972054 51.667163) + (xy 96.977246 51.659836) + (xy 96.983421 51.653322) + (xy 96.983504 51.653401) + (xy 96.984032 51.652804) + (xy 96.983943 51.652731) + (xy 96.989641 51.645792) + (xy 96.996265 51.639732) + (xy 97.022342 51.596746) + (xy 97.027263 51.58925) + (xy 97.033943 51.579823) + (xy 97.033944 51.579822) + (xy 97.036761 51.575846) + (xy 97.038936 51.571479) + (xy 97.04239 51.564543) + (xy 97.047452 51.555356) + (xy 97.067156 51.522876) + (xy 97.067156 51.522875) + (xy 97.071813 51.515199) + (xy 97.074138 51.506489) + (xy 97.083085 51.482817) + (xy 97.198962 51.25011) + (xy 97.209856 51.232158) + (xy 97.305934 51.100076) + (xy 97.365845 51.017713) + (xy 97.548465 50.766657) + (xy 100.282 50.766657) + (xy 100.282301 50.772805) + (xy 100.295812 50.910603) + (xy 100.298195 50.922638) + (xy 100.351767 51.100076) + (xy 100.356441 51.111416) + (xy 100.44346 51.275077) + (xy 100.450249 51.285294) + (xy 100.567397 51.428933) + (xy 100.576041 51.437637) + (xy 100.718856 51.555784) + (xy 100.729027 51.562644) + (xy 100.892076 51.650804) + (xy 100.903381 51.655556) + (xy 101.018692 51.69125) + (xy 101.032795 51.691456) + (xy 101.036 51.684701) + (xy 101.036 51.677924) + (xy 101.544 51.677924) + (xy 101.547973 51.691455) + (xy 101.555768 51.692575) + (xy 101.663521 51.660862) + (xy 101.674889 51.656269) + (xy 101.839154 51.570393) + (xy 101.849415 51.563679) + (xy 101.993873 51.447532) + (xy 102.002632 51.438954) + (xy 102.121778 51.296961) + (xy 102.128708 51.286841) + (xy 102.218002 51.124415) + (xy 102.222834 51.113142) + (xy 102.27888 50.936462) + (xy 102.28143 50.924468) + (xy 102.297607 50.780239) + (xy 102.298 50.773215) + (xy 102.298 50.766657) + (xy 108.922 50.766657) + (xy 108.922301 50.772805) + (xy 108.935812 50.910603) + (xy 108.938195 50.922638) + (xy 108.991767 51.100076) + (xy 108.996441 51.111416) + (xy 109.08346 51.275077) + (xy 109.090249 51.285294) + (xy 109.207397 51.428933) + (xy 109.216041 51.437637) + (xy 109.358856 51.555784) + (xy 109.369027 51.562644) + (xy 109.532076 51.650804) + (xy 109.543381 51.655556) + (xy 109.658692 51.69125) + (xy 109.672795 51.691456) + (xy 109.676 51.684701) + (xy 109.676 51.677924) + (xy 110.184 51.677924) + (xy 110.187973 51.691455) + (xy 110.195768 51.692575) + (xy 110.303521 51.660862) + (xy 110.314889 51.656269) + (xy 110.479154 51.570393) + (xy 110.489415 51.563679) + (xy 110.633873 51.447532) + (xy 110.642632 51.438954) + (xy 110.761778 51.296961) + (xy 110.768708 51.286841) + (xy 110.858002 51.124415) + (xy 110.862834 51.113142) + (xy 110.91888 50.936462) + (xy 110.92143 50.924468) + (xy 110.937607 50.780239) + (xy 110.938 50.773215) + (xy 110.938 50.692115) + (xy 110.933525 50.676876) + (xy 110.932135 50.675671) + (xy 110.924452 50.674) + (xy 110.202115 50.674) + (xy 110.186876 50.678475) + (xy 110.185671 50.679865) + (xy 110.184 50.687548) + (xy 110.184 51.677924) + (xy 109.676 51.677924) + (xy 109.676 50.692115) + (xy 109.671525 50.676876) + (xy 109.670135 50.675671) + (xy 109.662452 50.674) + (xy 108.940115 50.674) + (xy 108.924876 50.678475) + (xy 108.923671 50.679865) + (xy 108.922 50.687548) + (xy 108.922 50.766657) + (xy 102.298 50.766657) + (xy 102.298 50.692115) + (xy 102.293525 50.676876) + (xy 102.292135 50.675671) + (xy 102.284452 50.674) + (xy 101.562115 50.674) + (xy 101.546876 50.678475) + (xy 101.545671 50.679865) + (xy 101.544 50.687548) + (xy 101.544 51.677924) + (xy 101.036 51.677924) + (xy 101.036 50.692115) + (xy 101.031525 50.676876) + (xy 101.030135 50.675671) + (xy 101.022452 50.674) + (xy 100.300115 50.674) + (xy 100.284876 50.678475) + (xy 100.283671 50.679865) + (xy 100.282 50.687548) + (xy 100.282 50.766657) + (xy 97.548465 50.766657) + (xy 97.804965 50.414035) + (xy 97.828167 50.389749) + (xy 98.231524 50.067195) + (xy 98.513458 49.84174) + (xy 98.555026 49.819739) + (xy 99.490137 49.531467) + (xy 99.510067 49.527054) + (xy 100.29549 49.418947) + (xy 100.3657 49.429473) + (xy 100.419075 49.476288) + (xy 100.438667 49.544528) + (xy 100.423084 49.604471) + (xy 100.361994 49.715593) + (xy 100.357166 49.726858) + (xy 100.30112 49.903538) + (xy 100.29857 49.915532) + (xy 100.282393 50.059761) + (xy 100.282 50.066785) + (xy 100.282 50.147885) + (xy 100.286475 50.163124) + (xy 100.287865 50.164329) + (xy 100.295548 50.166) + (xy 102.279885 50.166) + (xy 102.295124 50.161525) + (xy 102.296329 50.160135) + (xy 102.298 50.152452) + (xy 102.298 50.073343) + (xy 102.297699 50.067195) + (xy 102.284188 49.929397) + (xy 102.281805 49.917362) + (xy 102.228233 49.739924) + (xy 102.223559 49.728584) + (xy 102.13654 49.564923) + (xy 102.129751 49.554706) + (xy 102.012603 49.411067) + (xy 102.001771 49.40016) + (xy 101.967963 49.33773) + (xy 101.973274 49.266932) + (xy 102.016019 49.210245) + (xy 102.082412 49.18568) + (xy 103.30978 49.100104) + (xy 105.477951 48.948932) + (xy 105.492568 48.948764) + ) + ) + ) + (group "" (id a8429321-ead0-4c02-b96f-88fd24e99ca3) + (members + 00350e51-3a6b-40f2-a874-fd1085eac871 + 00581d2a-a383-4987-b8f1-0f80e4a5cf9a + 005a3cd0-f932-4103-a178-80f97766d6eb + 01819c35-fe7d-43bc-ad9a-095439bd277b + 0193a258-fa00-46fa-ad10-c810afb71c79 + 020ec526-9a76-4cb1-b7e1-f4530d1a4821 + 035fe88a-393a-442e-a398-6ef3f0338242 + 036e2ba7-827c-4435-89e4-503b05163f68 + 043f3938-be03-47ab-8270-a318964e655d + 04bffedb-c8d1-46b1-b2af-393ccaf585f4 + 0594a352-ae5a-4c59-be2e-d1f41238c1f7 + 05c4e507-fe7c-4c1d-a500-c152443ac00b + 07e89718-bd5c-42c1-a5d8-b78efacc65ff + 0808ff0e-7524-44a1-ad3e-cce3dc35481d + 08262b62-0246-4c73-8345-3a8afe5166c4 + 094d9772-3595-4321-adf0-ff714e9efca9 + 099917ca-091a-4e29-a216-d5f794e499b3 + 0a83f709-ef66-47d4-a3fa-9de701b28e53 + 0a84b9fa-f2f2-4267-8e4f-9ade834a503a + 0aa6c714-a212-4782-a2a6-48c7bb090ecc + 0aa9a8c3-8a04-4d97-855a-3576ab0922c7 + 0b4171de-de41-4c18-90df-e3bfa739b5c5 + 0bf62142-6c65-4f2a-b8d2-17d9ebc47778 + 0c4d64cc-27a4-4ad6-b637-d5c4c94151e6 + 0cb71717-a43d-4854-b375-9e93610ba8db + 0d2e8ce3-6c1c-4ede-bfe7-0be205b0da41 + 0fee5d6f-d21b-4c58-98a7-306397dd0507 + 128d3ac3-5756-4afc-85fc-00261b29b7ed + 13028842-5a21-474a-9741-ba2dec3f6069 + 13ad36ed-63d6-4c25-a743-6062b6834518 + 14f387ec-dbe9-408a-bcdc-724552cf35c2 + 154b151f-92fb-4f44-bb51-2e48b4fd6eeb + 15d7deb9-3dea-42d8-9e29-99b6c9ec08c1 + 1627ffb5-7a71-409a-925b-571cfe8c8138 + 16e79516-8b34-42f3-a9eb-f450b9047c14 + 17688423-9a2d-4744-81cf-576548b850d7 + 17743675-ad1c-4a55-b609-0947d103b09c + 17e9e03d-bc1f-4b54-9583-97fd40cf95e5 + 1815d3af-80fb-4e97-8dd8-0e704d2e3700 + 18d4b973-7732-4878-b7bd-4f47f5923dab + 18e6ca85-1136-4115-b635-79f074332a90 + 1a1348b6-e1b9-463c-b164-56bd3726bff3 + 1a2879a1-11b4-4934-9614-68fd99acddc8 + 1a50e7d4-ab9b-483b-9477-f4732fbab697 + 1ba1406c-868e-4fc9-92f2-ba566beefdca + 1baac583-3bc9-4de7-b09e-2bd2e3f3ac75 + 1d5de781-3cb3-40d0-adfd-a017f5b51a48 + 1e47333b-a6fc-4c73-be94-730dfad9f128 + 1f4f2031-9557-4d85-b345-085ffae11404 + 1f5b4918-3d71-444f-9969-94846053eca9 + 200b031b-5ce4-455b-b4ef-21a4b240d5b2 + 228d7b6a-af97-49e8-9e72-7c97161b6e35 + 2307e2d3-1a4a-4183-acc1-acd716af5c9b + 231cda34-f547-438c-b6e9-2e210a36ac64 + 23ce28a5-5e6a-481e-9e18-1d5fc2d2bb19 + 2458848b-6ff4-4b57-abf5-de63890851b3 + 248adc1a-5f70-4898-a4be-d710d5b56d10 + 251ad82c-57f3-4355-ba14-ae803aaa20ee + 253e85de-3160-4fe3-bfbc-48e940caaf94 + 2767bf74-8f31-438e-86df-df46c654515c + 27bc53d9-0b0d-4bce-ae24-505f55d4dd9e + 27dcedf6-49a0-497c-b172-81af502eb562 + 27f2a0e7-f798-43c3-a83a-4e39fcb265af + 280309e2-9b26-4600-adf7-43af4d832582 + 29317cea-04d5-40f9-b570-d6271c7cd109 + 2978da01-42d1-446b-add3-9469bb80504c + 29dd8402-257b-4f13-a333-fc4969fcdeab + 2a4119bb-e511-4c9b-8560-36d263ecb8e4 + 2afad281-5293-4663-88c2-9df2bf9e1e75 + 2b38115f-85b0-4f17-8f27-e0a14a8bbac9 + 2c39f554-7824-4901-ba62-625ab37c3b57 + 2caf5da4-8268-4bf6-8018-4d79e2cfd946 + 2ce34a61-12e3-4fbc-9bbe-5e2ee6c6a499 + 2cfe1f9a-8657-44cd-8870-bcd5ad21fd2c + 2ded0913-ec92-4484-b028-e1a1e8550594 + 2fca1878-ed3b-4181-96b4-e762c2d1910f + 3079f7ad-ff66-4fe5-99ff-b0c77f2c65a9 + 30ed7790-92ec-49e6-92f8-095f6570183c + 3369746e-c4b6-433d-8157-2691657e7a53 + 33f80464-2810-42a2-b528-bbb3b4df3048 + 346b3bd8-5a6d-4a48-87d6-e36f3e917ff6 + 34b05237-de27-4513-84da-aa67c72b33d9 + 34ddbecc-aec5-4fe4-9581-4a448c366a89 + 3698335c-d063-4496-b005-489f575e202e + 370cb4b4-6fb8-4abe-9648-30d6d1a1fffc + 381be438-1eea-4774-85a8-19e769df3b2d + 38d5c3bc-229a-48e9-9b9b-12b25b3672af + 390d5c4a-f39f-4a03-9ba9-60f123a37920 + 394ae02d-89fc-4952-90b4-afad0492a751 + 39b70c0c-b077-468e-8c62-32562e9870be + 3a5a69f0-8cec-4169-b984-d2a353fd9040 + 3a87d48c-789b-46b0-91f5-f27090a2a417 + 3b61165d-aacb-4ccf-9aa0-29ebe9d283e4 + 3c3f9db3-6e45-4d0f-88cc-5630db630b1d + 3c6c5560-b238-4432-9448-61f0b853760b + 3cf79594-43bb-42f8-a5b9-7403ac90b309 + 3de7b307-1505-4d2d-a3d6-f3a11b6bed4e + 3e0d7481-f4f9-439d-a3f7-fb9dc4d85370 + 3eccd0e8-9f72-4297-851c-fa3ff485e595 + 3efc8677-5d36-41af-acc0-4229b28ffcbf + 3efdfc91-9b66-4b7d-a644-10d375fe4c12 + 3f357c21-5dd5-42bb-8a1c-d0332377e8f6 + 4188dad4-c1e5-4d59-849f-9188f713b274 + 41dd4341-7f66-4ac0-a5da-f5beac40f053 + 430d8710-e940-46d5-9ffd-1f6051519e70 + 43457f48-daa6-4278-87c8-a8883b8f3822 + 436e0b52-f4b2-4c11-be03-3adfe1473057 + 437d652f-3e62-4997-99da-62dc77800091 + 43f6827c-e468-471d-a82e-bd4abdf454f4 + 4479ddb8-8a35-43e0-85b4-f4f69f0b266d + 44a2df93-aca7-4517-904f-75ed71d6e5e1 + 44fef1f5-c1e6-4e28-a05d-7e7ba40a3133 + 4697a77f-86df-411c-a337-1cb7c6065990 + 46e8e956-b68c-4216-9594-79a4281542f5 + 46e97ce7-bdb0-4ee1-8521-90bea3d4f82a + 487137ae-1b20-43f4-b696-ff527aa12d19 + 48da4907-ceff-45d8-ac77-356634a7cd9c + 492c0ca1-4e13-41d3-8bb2-11ea7f9b12b5 + 4a2bbd25-bad8-4deb-99a2-79a50685b6de + 4a5a26fc-4b4b-4bdb-86b2-298c2420113e + 4b217f00-c25f-42a0-b30b-c4e1678823c7 + 4b244eb5-fd11-4c58-9ec1-c3923f662f42 + 4b57bd2a-5fc9-4ec8-bf89-caf7f8c9c575 + 4b7f0470-d0f4-4d89-a89e-ee6b0162e73c + 4cec9263-ea2e-44d0-a394-b8606d64a0dc + 4cfc6b4a-6ac5-4c55-8db3-4aa7e03fa021 + 4e5aef81-c095-42fa-aa11-5a0d0b370a0a + 4e750acd-dade-4b21-b793-34d3c2fbcf23 + 4f0b3b09-2331-4834-8f28-468aee4c21b6 + 4f2372e8-f764-4def-9123-cee65ae6cf07 + 4f792c4a-5aaf-47d0-8c82-5ee0e09181a2 + 4f9b60c1-8c75-4dee-8afe-907cb153bdf6 + 50b70f5f-cf22-4fd1-b6b3-3a1eae065144 + 515c7085-7288-49a6-99f5-7895fedd7319 + 5258c75d-22de-4d30-a0a0-a048d610ffef + 52d118f2-8946-4fb7-86f9-34c2090f0441 + 532905b0-8bc3-4c7b-9466-e0f50f1d3ee7 + 53b68f3a-2ff7-45f1-9b52-22448ab9ea88 + 551b4df8-d907-49a3-97c5-38ea76c8094c + 55e7c5c1-844d-48be-af47-29a0901d0b47 + 56a4a2e2-9fa1-442e-9212-f1c56393c648 + 58195a60-87b5-4ae6-9f11-bbddec884f96 + 5900df5c-ee14-4caf-886d-04c720f397ee + 5a1d65a1-5d41-47f5-8429-803774c70ac5 + 5a7c4c31-c3be-4fb3-a168-2451af9dae56 + 5b3df742-5e0b-4574-9e82-4a1f12a1f6c5 + 5b493c52-928f-492a-a7e7-ff5b6a1f58aa + 5d660b56-fcb0-4305-826f-95a9ffa69004 + 5de5fb1e-1b49-4f5b-8b47-a1380e627207 + 5f75cb1b-df34-476a-8b3d-62aa8fda2c6f + 604da423-980c-4652-abb3-49bbbb6b67f0 + 60ce5f28-fa2b-4de6-b6b4-1a557d4f236d + 60de63d0-5a75-4c4c-86dc-715377a16987 + 61316a7b-1500-440b-a9c2-561d335eac96 + 62b21dc5-f030-4e08-9499-1575bb3848ff + 62b56e06-3466-42d9-86a8-3a5c0739af5b + 6499fddb-8606-4b5e-90f3-a67fc86f70fc + 66ff695b-4d10-4caa-b31e-f81e4dac4265 + 675addbe-0a30-4eb9-9ace-718bcd036efa + 67af9549-02ce-4e6c-8498-8666bb88c5c6 + 6878827b-9a4a-4640-9497-b23c8ba37010 + 699f2dda-7723-4968-812b-2d2b04097594 + 69ac8780-59c3-4a05-a127-1bc571fda25b + 6a30ac09-a434-46e9-92aa-a446d6d55c96 + 6ab2f042-44be-43d5-b9f2-dce3471bf48f + 6ab7bcdd-8f0b-4070-b194-552089e1486b + 6c2fbfc3-527c-4014-a155-552168ee90d9 + 6d4a004b-0843-4cd9-8009-d49163e3f99c + 70831a40-7cb4-4aa1-94fc-f3dcbd32bd21 + 708e4b3e-58b8-4ec4-9d27-353373e3f8b4 + 70f1ebec-a765-4d59-9454-6c183dd495fa + 70f98389-e46f-4920-bcf0-23452a6f5818 + 710bc189-a8c2-41fb-8893-56db95281e96 + 73c7b8d8-8dbe-4c73-9641-be07a7416893 + 7496cb73-7cc6-4714-bd2d-58ed5d9851f6 + 750a8abf-294a-4732-b729-64c38f8fb2fc + 766a27ab-a388-4e9a-8bd9-7562c0bf8640 + 77105f2a-6870-4bdc-8cff-1a82f623ad82 + 77786d2a-137e-4aae-b831-78351075eefe + 78430504-367d-4613-aece-ea63de15e328 + 79245bf2-c7b4-4272-b325-144fe45d0a33 + 79ff7933-9fc9-47dc-b5db-5607466f58e6 + 7b229d98-6a99-4a53-b2f0-7a9ed62955ed + 7b4f3f56-41a7-4131-a044-a2869ae32c35 + 7bf1ad88-8cff-457e-ac75-2a5036b97b24 + 7ca240a6-77b6-45db-909c-3be52e15a41f + 7ce15709-1e8e-49aa-a0a4-521d929df166 + 7d94d28c-f0ae-4bd6-a348-a11b4b5294bd + 7dc70690-9fc7-4742-be4a-52b611cabc89 + 7f937508-60d1-4ede-952e-0de56f8c39f9 + 7ff213be-297b-47dd-a8a8-8d98383e3a96 + 80680fa4-e2ac-4441-9d31-f05e2c7f9241 + 82b87ab9-40fb-4109-8531-5f660cfc8d44 + 8331e068-3f3b-4a50-aec3-c4ecd2eb0000 + 841bf6c7-a643-48ff-8bdc-1431bfe8fba6 + 8561eb28-bff3-4f22-a13c-1fc1e092daa9 + 859184db-fd6c-4ce7-ad6e-7c569223715f + 86942b97-c018-4c16-8487-f64cfe286c69 + 87d7912a-5f1b-4fbc-8cc4-c4c47b98f5b1 + 89450b17-f100-48be-b96b-91dd5f18686c + 8ac2b81e-09ac-4e61-9b3a-841cf10c1453 + 8b153f00-006d-4eaf-ab4c-28202da63d1c + 8b1cb30c-7740-4623-8c3a-d0f601ad77da + 8ca2001f-3db8-46b5-ad1d-cad1fc661c3a + 8ccc4b93-3b63-4a1d-bc33-fccd8892363d + 8e7e382e-bd02-46a5-89f9-ddfe95f5a73d + 8fa4714f-68bf-4806-85d3-6ebbeb4828aa + 8fc48e00-5810-4116-8c8b-1864fd4572f5 + 91283009-2a2f-4e96-8243-789bacaaca21 + 9246cb5a-3e29-4f4f-83f0-868663834601 + 926b4c66-9d58-4d21-94f2-1c9cf7be9912 + 933a5510-5d99-422f-b172-bf410aefa77a + 9432658b-3730-44b1-817d-f0be12035b77 + 94cdde64-9b1e-488b-91ff-bf5e536e4e20 + 94ec811b-45a8-41fc-9559-6493e4a7fc1c + 95959d95-625f-484d-8113-1c5ab05bc790 + 95989172-3da0-4ebb-88b9-4f410b75d22f + 967d318d-3635-4e31-be05-91cde25449c7 + 9873baa2-638e-4ece-862d-e8d1fad60365 + 9905d9ab-3c4e-4efc-aec2-ea141c443374 + 9aa47d7f-f942-4f44-8a34-0e266541589d + 9b6dc699-aac7-40d1-ad16-2b55cdfe575a + 9cb69109-e4f9-441a-b72c-69160b739f36 + 9cb7c448-f88d-4695-9303-e63e7b44437d + 9e1ebe2b-84c1-4eb8-9ec7-b7640c850451 + 9eae0f24-9654-4a7f-8f12-92670b1f5b88 + 9eb1ad54-d8cf-4e25-b33b-a2b72a4bb605 + 9f9165c4-b121-476b-9dc6-7c267209737f + a0137c99-a64b-487b-860e-370f8fd86983 + a0391bc5-ba41-477e-ac73-d17527a61eee + a164c273-df30-4baf-a82f-e0c34bc0511c + a1d35e64-fd0e-4957-9609-eeca9cf52aa0 + a2bdd1bb-5c20-440d-b640-b7f93e904418 + a3b5681c-58ae-4bcd-b6cd-754b64cda449 + a4144224-8a5f-445d-998e-cb539006ed11 + a5279668-1067-4bd3-a930-5d6ba232c19b + a5419f37-0b22-46e4-91f8-4ff3977f5f9c + a66219ed-5912-4563-8f85-28720761340e + a68b98ca-ebb9-492a-ab2b-849a242f73c3 + a6ba480f-9f6a-458c-971b-144053fecd77 + a6f467ac-df49-456f-8ff0-0406fd13bec8 + a770f27e-3fc6-434c-87d3-44a7588a132c + a7a7824e-ec6a-49cc-8184-0477b938bca9 + a97d9426-3ab3-43fb-8721-90a0d4ab8253 + a9d548a6-184c-46fc-971b-bae9b79e94a5 + ab9274cd-9ac3-4fa7-a45b-9be61c88a70b + acaa33f0-f82f-436d-b791-0cb1849dc43e + acef3205-866f-4efd-9a61-9e77df8a3e92 + af5ca916-302d-4555-b2c1-8545808b6743 + af740f74-8e15-4aa2-8dad-9c88c220f649 + afebfa0d-b16e-4075-be20-e9b5ff1a79aa + afee75ae-5b07-4e67-bb49-b6018ddb1585 + b087c02e-79be-4075-ade7-1f24c9b72346 + b0a9e96b-5076-4a32-b77f-28633637f082 + b170721a-1f5d-4d48-9d3d-affb60bc3533 + b1aa74c7-a9c3-46ee-a3d6-f4922bcc346f + b3efa544-23ec-4c8a-9bfe-c979d13fc0da + b40b32ee-6617-4aff-a769-471d43bbb5e2 + b40b63db-4103-4470-9473-e93546057749 + b45d6d88-6ee5-4de2-acf3-a13f80ef3f21 + b473c9e4-00c7-4e68-9294-613d2d9a4c54 + b4eba88e-62a1-40cd-87d5-406e01a61adf + b7d69e46-557b-4df7-9914-627429a303f4 + b848992a-26d0-41b1-bedb-193fbdeee574 + b8cc3872-d5b3-4b03-a3ae-f9a507e3d936 + b9002b09-af74-49ee-a804-7a5c3ab6bdc3 + b9e247e3-e940-4906-9e28-81ab30176268 + bb51c3a7-17a6-4887-8847-49e00f0ea7d8 + bc46b0e2-ccb5-4eac-9d3e-4fd1ee5199ca + bd33714d-6823-4de9-b92b-523f1caa8415 + bd6b87c7-7a67-4468-af5b-eb44968f76a0 + bd76ab9d-0bdb-4305-a28b-c9f726e23984 + bead9ddb-f428-4174-b804-b959a8334d68 + bed6ae75-6f54-4cd2-9aef-ada7d2fda956 + bf8720f0-eb54-4691-8529-34352f60f485 + bfc97239-225a-40e9-84a5-8ea86cd65f4a + bfd22a91-d6c5-420e-881a-65520d04c13f + c255354c-1c05-40c0-814d-cb3de775edbc + c315d4ba-258c-4b2f-bb84-462293d4a47b + c32fe5e8-bf07-44cc-994a-c21aff787b7b + c3bded8d-79cd-44c6-80e2-67e695921ebf + c5a1f016-2f79-4131-9885-b2a3f7551511 + c6156d49-1975-450a-8869-01221f20b50a + c63fcd45-5488-4a9f-9c86-cdcbe34fd72f + c651da79-f512-4a68-9ac8-a2a8caa9d594 + c68ac41a-1dcf-4887-8d43-31d52c1ffcd5 + c8258747-5ebe-43da-80c4-5506b31eb823 + c832e850-2fde-4598-9411-eeb55df05fef + c839d354-29c6-4e4b-a9e6-de5df5c70950 + c93f63dc-cda1-42a2-ab9c-f4fb37b53f27 + c99ae6be-e5e8-4a15-b711-53356239262c + ca862932-e081-41a1-8e81-89df980cdb8a + cab9aed7-2186-4b48-ac21-ee0d724f31cd + cc56dd60-0d54-4d60-8b46-c935746761e0 + cd209700-ba8b-4fe0-bde4-d3c8ed0b6006 + d10b41c2-cfb9-45c8-814b-c5d1ec9161d0 + d2aa7cc1-dd51-492e-bd65-50eb7d8bd03c + d36a40f2-776d-473d-baed-d03c270b7735 + d3f3f9fb-a665-4caf-9884-fbee1b7a9b51 + d44842e3-6e66-4987-a69a-f2ba204e7501 + d606c631-9343-45f9-8ed6-7fdfb812fb4e + d699dd2f-26e6-4ca3-af50-a9217d5d24ca + d784056d-851f-47c1-abc5-31809ffdbee0 + d7ecf3e9-b066-468e-98da-cf6535276d8f + d82b2933-a521-47ea-99e1-3487a24d9fad + d88ebbe2-68f4-4b09-89f5-82e8a1ab1eb5 + d89f4564-f95e-47f2-b9ff-f7313620f01d + d97541fc-bcb8-4829-9475-2f975e8bbcc6 + d97ed3db-8630-4afe-818f-bb102fc4dc4f + d9dbed01-936d-4ffc-a2f0-5769af6ce2de + d9f9855d-2be2-402a-b647-8599d37fb93d + da4a954b-1fba-47eb-90eb-8d07beda15f1 + dbc0611b-5404-438a-9ada-2b04c978f1eb + de3d77d1-c5fc-4c52-8a6b-bbaffda52f20 + de744ed8-79cd-408e-8d37-41955c5a461c + de9c09b0-7e8b-4fc2-a7f7-72f5208c0fa2 + debf4ca9-41fa-4513-95b0-b86f6586f718 + dfc1140e-cb72-43c2-b9ec-e64491d79c45 + e1003ff4-0aac-4edb-9fd6-637025fcf504 + e27d8db7-fefc-4edc-9aa0-458d13d1b438 + e2b9f968-ffa8-4fd4-80d3-98019ae2e770 + e36a86c2-3568-414d-ac39-f72cd88be503 + e3b0c24e-84c8-4bf3-9052-0d381fdc07ec + e6106d1b-178b-4792-9fbe-37facf92c026 + e650bb85-ecf4-40a1-a44a-20914eb42bc4 + e6a49913-bf0e-4aed-bc8a-fd17ec73ff32 + e7a996c4-410d-4248-9b14-dbfa3330f76e + e7caf6df-aa99-4ba5-a5ae-ecad68494edd + e8c5fb32-5b1e-4291-941f-76ae0955534a + e9438bce-ad15-4f25-8979-010ab93b7e3f + eb45edf4-3c0a-45ba-8eeb-037713e1a26a + eb5b9ff9-72cc-4451-85d5-07384f673651 + ec555b2d-f990-454d-82df-2d84fd620ea1 + ecc75e30-aa94-4c3c-ba38-b9d07f8cd176 + ed837a3d-7d5d-4f53-a0ca-85b3972d5318 + ef651f3a-e0f5-4d72-9add-cf9c93674bf9 + f0d946ab-a6b1-45e9-a980-74112c97b61e + f16e0d52-a7f8-45ba-ba07-4f3baa3d8f04 + f1f99b09-671d-4dc9-a638-51df54bda8bd + f23d317b-3721-405f-8dd1-859362888511 + f2942380-3192-4b46-bfbb-973c6a84ea8b + f300e36c-219c-4941-9b65-eeb48415bd9a + f330deb9-4ab1-430b-b588-e0301ffe0bcd + f399d9c5-40da-4c14-9eea-7fa36ed1e531 + f4399b3c-7bc8-418d-ab6e-661274d8c2a0 + f456de70-c98d-4f0c-b34d-618aab76b0be + f4deb5d3-b0b0-402d-bc9e-a9b6db2ec402 + f6a15dd4-49fa-437a-ad96-6080ed3f7fa6 + f75713df-6a5e-424a-b009-40c7bb9cbc85 + f8b36f68-17e8-43c6-9d03-b00e3e1b8b6b + f9037ef4-e9af-44eb-a156-d21e27780453 + f9e7802e-fbfd-4ce2-bf3a-574da6c1ace6 + fa2783e8-1ca7-42ec-a5aa-4ca398601eec + fb103594-8b81-4d4a-a039-b6fbf1dfe55d + fd9419a1-13ba-4bca-a875-e4d6b89da97c + fdda17b2-bac1-4c13-b710-5662c7486785 + ff101555-4d92-4e5b-ba07-bfed2c5b0fdc + fface806-e302-4d2e-89ad-911bb97f7a38 + ) + ) + (group "" (id aecda692-c3d8-4243-9ee7-8292793936c9) + (members + 001c6b0f-53f5-4ad5-97e3-69c73d6d01b3 + 02b02f9a-1a18-4a11-b870-d151f6c83a56 + 02b376ed-b790-4e87-9718-87424f941658 + 04430531-e9dc-4257-92d9-8cbf866092ec + 0665d402-98b1-4f1d-ac7a-5165903c6b0b + 06678714-bfd8-45d7-8198-07db4eea0047 + 06a7317c-f0fd-4e27-87a0-df3d62f15446 + 0734199d-e3b2-4060-ad12-3fbbe52c3bda + 0813bd9a-f13b-4b62-bf8b-862f707fdf5d + 086b8e0b-93c9-4d36-a408-e9fcc6736c66 + 092a9cfc-87be-4ffe-8615-eece9ff092b2 + 0b08d0d5-d77e-4b90-9a2f-0fcbdce7b90e + 0b0def94-93a7-47c5-a72e-d80fbdb93511 + 0baf2f32-8f55-4f9e-bc8d-07a3bd68b4e9 + 0c16f1ce-120b-4f90-8afa-12d7f334a021 + 0c355fdb-3f51-4389-9479-5cb222414897 + 10c75e50-44f8-45aa-9b77-f4219b2db6a1 + 10ef8b07-9603-410a-ad1b-0300ca896a30 + 116342fc-b8d7-4ae7-8e50-66e2369b3ff5 + 11ba4840-6334-4662-84dd-9d560b8f162b + 13241b48-abef-49ac-bdc3-9f95e5504d70 + 15d225cf-2e13-4877-814b-9b8fa1f9556a + 164d2966-dad2-42eb-853a-7c237522e2f0 + 1687de9b-4e38-4524-9d8c-c7c4e1e70c51 + 17a6b25c-af03-4b95-97cd-b4360e0c913a + 183a8063-27d4-4e14-8c69-acf7b1a5c9f3 + 1848209f-23fc-48bb-8c4e-5f371e55be5a + 1856f1e6-10e5-43fe-aa88-f99a7ad7c50c + 187c996a-66d0-49dd-be92-d8ead112ab4d + 1898834e-ed48-4d31-90c5-68229160872a + 18d29037-c195-4e3e-9922-f2d88683aed8 + 18f2f675-dae6-4a54-80e7-9bb01c5c9623 + 190f7000-7fd3-430d-b6a6-074e9894efd0 + 190f8e91-fa75-4af3-b3f3-05e70eec4f0b + 1a14da45-47d9-4565-ac9e-79eb86b312b5 + 1a165e2d-efa7-48e7-a921-9844150596c7 + 1c78ed0a-69c4-4616-8f3d-c2eddae96ceb + 1e7e4a34-cb48-4904-a902-78a5b190ef4f + 1e89c9bc-b0cd-4bfe-8eb0-349f839a3273 + 1effda4f-3f62-482c-8b8a-72684d99280c + 20a38718-3107-45c5-ae31-5d1f0bd606f0 + 20cccfdd-ff7f-4849-8d2c-a1e0cd906fd9 + 22e45947-4ace-4130-b1c5-72cdf313a15d + 248d2a37-5038-4ef9-adaa-f09cc990c5d8 + 24e1ff2e-1a64-4d34-8701-320497f3f9fe + 24f3b884-a0aa-4551-ad3c-324a38082f5b + 260bb4ec-f8e3-48db-8982-43e43aca064d + 26b53974-e418-44e8-9278-f5e4d78c0f9f + 29184fc3-390f-408c-9bcc-5ea33860d8e1 + 295563f3-87e4-4c3e-9d62-7dc4c6f724cc + 2c7d5b18-0dc5-42aa-b79d-ba7b97d66166 + 2d5ee7cb-06e6-4c64-bdec-72497e5131d3 + 2ecb3eac-8f88-4b6c-8e6f-00bc13a9323e + 2f0b278c-3168-4078-8760-74f5a5c22184 + 30196c2d-5ed7-4fad-80ba-7bad28d67d21 + 3131e849-f156-406e-966e-a7f6a7b5cfe7 + 320d4542-5ee6-41a1-ac86-a5bfa6a0bf24 + 32533704-a4c1-4c4c-8b14-de4c6f400840 + 32fb4046-f002-46a3-8c6b-6cf232f22c7e + 335971ba-d411-4597-8157-5836b1234c5b + 34139d56-8bc8-49f5-a75a-cf33d740acdf + 34bb80a0-cfa5-483b-929f-1bf6e3a18ac3 + 37fdf936-edec-4006-b46c-8d7b64687bc1 + 38687490-e796-405b-a787-3ab6787ecbba + 39318eda-4ff9-47e1-bb2c-c8d6d793c6d9 + 39ac13a5-3e19-4994-a8e0-f4d4c76ddff1 + 3b3019d8-cd5c-4826-a212-12e78504bfa6 + 3c4785fb-7f15-4c75-98d9-eeb6f8b99ee1 + 3de6b605-6aa9-4c08-8ae5-5c22741b706c + 3e465bfc-957c-439c-aff8-670e550a2a9c + 3f972c7e-671a-4a34-896e-126ba7940488 + 4121f974-d415-431f-80a5-af4bd8dc8747 + 422b3187-503b-43df-bcdd-0d9d960ddd90 + 42ae7def-e917-45a8-9f73-4850c35901e2 + 42fcdc6d-97d0-4e40-a3e5-09c8f5919c6d + 43adfbd2-9821-431d-8078-24e80952f6c3 + 4566ca32-297e-4792-869c-c5ca1aa83b6d + 45a4bf9c-601a-460e-9483-0d0a5f939954 + 46adc898-ee36-4bb5-b338-193f80070f74 + 4b582cf5-c717-44ba-be38-a427d4ab24ce + 4e175fde-2799-43ee-84cb-78adc994479c + 4e2f4f11-dee9-413b-902c-a713768b0a6f + 4e6b9159-c1cb-4aa9-b802-be6476f48c08 + 4eb0cad1-16bc-4ace-9497-f9ce35bc9509 + 4f84d26a-03da-49ec-8070-eb200923f8e0 + 50016dfa-6a0f-4f35-8c5f-125f2030cb5e + 500ce510-f3e1-4076-94fb-9ee174ef714d + 50859e4d-7842-4a1e-94f2-cbfc4eba8a7a + 51862f7c-7aad-4c57-bcc8-d067d038dc0b + 53f1f829-2868-479a-8712-0042e759d579 + 54a72326-7907-41c0-907a-bebfa6cbc8d9 + 54ba8681-a570-48f3-99e1-c9a8282ac55b + 55220ddb-12d4-4ea2-b992-ffbdb71f4eba + 58c5ee7e-2d63-47f1-877a-8f97fb2c96c3 + 5a7d974c-fe68-43de-93a1-fed39c8c357b + 5b6a7c35-73bf-42a8-8f60-fddfa6326ff7 + 5bb4f739-1e08-4132-94fe-41384dfcdb95 + 5bc9b9f4-f882-47a7-a851-c80560ffebf4 + 5c1b03d5-849c-4d6c-943e-2c072f9aec55 + 5d3ab7b5-4964-466f-9b0f-36e5820c46b5 + 5f1e684b-1fa6-4cec-91cc-1c94061e125f + 5f278345-16eb-4d6a-aeb4-ab9f01783446 + 5f39ef62-f68d-4fdb-9d99-9ac04c8f3d9a + 5f3ea096-c88f-4905-afd4-dff8e788b35b + 607b871a-dabd-4220-bfcc-8ca377b4ca62 + 611c2a56-1ee7-41f6-8154-e32a8e444c89 + 6236c3d1-dec9-411b-b450-85b172507fbf + 62e650a5-3c60-40cd-92f7-4d4b40ed2fc8 + 6547b40e-1c53-4999-bdad-69aab68a51e5 + 6576cf50-a216-4078-a873-585686473b2d + 65cace9e-0109-4981-8c4f-5d709dca00cd + 65db100d-2336-45ee-a64d-7c259a4263c7 + 6694956f-9cd7-47b3-a288-5edfca1be1ef + 66bcc2c9-a0cd-41d7-9494-79335a942200 + 67222d42-1c52-4ffe-85a1-74ded0c6e6fd + 67cb47a2-3772-4a0f-b132-db2b53f7cce6 + 69ff5428-d3e6-4ab7-b282-c5d351049f0e + 6af56369-f3bf-4cab-b64e-74f4d73465cc + 6b600344-1367-450f-a71b-b49cb71efadf + 6b9dccfe-39c4-4589-b9f8-1e1a40eda6e8 + 6bc64b5f-2812-4863-9de6-9e3d27d123d9 + 6be6eec4-e15c-450d-b68f-46999a6ad308 + 6c9aa5eb-bce2-49a8-9c75-6862c2f4fe94 + 6cd03fc4-f02e-4d13-be87-e5d79f087381 + 6d7c2364-a20d-4da1-88cc-4d625f70d843 + 6e03f50e-e5ca-4a90-abca-b7c7d8431c42 + 6e36e9d2-08f8-41e7-baf3-498878facd08 + 6f0af786-84e6-4013-817e-51c42b0cfe32 + 729a3213-f1bd-409b-be00-96ce6156ed00 + 731e0c6b-a571-4196-95c6-44eb3331079d + 77bf33eb-e095-45d6-95bb-547a4cbfe26c + 78474661-0b5b-4436-ae26-0abf9a4a58fd + 7cc7e69e-fa05-4f5c-9374-0a41f38b55e7 + 7e638106-55a9-464d-af58-5bc1a4865651 + 7f4713cd-1651-49d2-bc7c-7bc965e2f23e + 8185ecb9-c2b6-4d25-b694-8eb692d3cbf9 + 82577c42-7052-44ea-b718-9074f0639a99 + 826861bc-c682-4dff-8749-80ec3fcb3f50 + 8985d12e-d8c0-4f23-a154-5bfcf0228cce + 89c2c6ac-d6c0-40ab-a009-60b332e98ded + 89dca5fe-7fcf-4d89-b504-0f7bcc892fdd + 89dea559-3022-417a-bbde-cdf2955ae0ae + 8a89ef6d-5cc0-4811-a3d0-f95f52a42e5f + 8adacadb-554e-4706-aa08-a039d202a4d1 + 8b348e99-71dd-47fd-826d-c1c1cfc15993 + 8b580a3b-73f7-479b-b483-3d901661110b + 8c0270bf-a1d9-40e4-985d-e0767f4b21ae + 8da3afb4-2a22-4bee-901f-bdbd94bcf99b + 921eb92b-2de9-4c4a-b80c-652dddd97d13 + 9236700b-22e4-43ed-b814-8d31c532e9c0 + 9254b227-a5c6-425c-bc81-9ba838eecc40 + 929638a6-7d97-4161-bacf-34d61ef5e472 + 9354c134-b452-4482-92ce-a1eaf7b7021e + 9457374a-c585-439f-a6bf-71c4c324e72d + 9617d537-9b19-48de-9086-95bc708dd683 + 975fc736-b4ad-487c-b0f2-85af03051583 + 97ea2bf5-b8cc-4ddb-b2ff-d1f829777275 + 99887e80-5ce0-4314-b521-9d624e802d2a + 99ba401d-df63-4828-8e4c-f4964fe3b941 + 9b9678a9-4da4-4ec7-b546-afe74f2aa1cc + 9e3bb7fc-567c-4961-92af-bfba0fdb52f0 + a06b645c-eac6-4ab3-b8f1-ef9de2fcd3c9 + a06bfa2f-2c00-41f8-a7d7-66a8f7e5d156 + a346232c-2fcb-4bf8-9e6b-dbe328d75b4f + a4045263-2740-402e-aa0e-b0ed3900ccd0 + a5f5ae7a-46d9-4de8-8e8b-8c7edc191aea + a6ccf0df-faed-45f8-9373-33766311b406 + a854175e-e624-4f8c-8381-a32df49f8940 + a985aac4-fb27-4666-951d-cb47fc2831cf + ae161f70-df68-4bed-aa7a-cd71e4c5b987 + ae3c642e-b73d-42db-b177-a938dc4afb65 + ae6179a0-46b8-41f5-bfbf-a01ef52064d0 + b0a54267-45e8-41b1-99bd-4715cecba55a + b44072a0-168e-4475-9a0a-e808587482d5 + b4457e89-7996-48cc-9120-8e939b8659fe + b47165bf-b2cc-451b-a228-39a50cbed299 + b4fbaaac-b4a1-498d-af04-e6af9132f1f4 + b6f531a0-1953-42f6-b883-f1ee042721c6 + b74d62c3-c3c3-42ad-8d56-880243a3559b + b77cdfb4-195a-434f-b178-ca43d424b7d9 + b9f1837d-2bdc-451f-b22a-03208c3c4591 + ba122c9a-1e73-4000-a734-60c577efa095 + ba12b83f-827f-463e-9aca-f5fdd8e8950a + bb6b009a-717c-445f-b9f1-c3ad4ae97338 + be04d6a4-782c-43f9-9fd0-1b64c0e0fb6d + bf339eab-0aa6-4b64-9260-d7ec9394adfa + bfbebe34-0b11-440c-9581-e570a686944c + c09dc9e5-edcb-42ca-a628-29d309d8e9be + c1550a93-da04-49e0-8bea-0405cb584ade + c206cd1e-8d3e-4333-b65d-529e753199e7 + c21d0b10-1ca3-4e41-a873-86f38a3ad9cc + c3699c9a-bd8e-48c2-aa19-4927739af56b + c384b6f8-0a25-44e7-bff0-c7ff1ce0164b + c45dabef-ee54-4b8d-98fe-bb7c994323dc + c56f74d6-b588-4b50-b5e4-e8968f69105a + c5db9733-18f0-4e37-b565-109378c84ca4 + c6c80ebc-1b5f-4657-8847-b631e5a0b5da + c85c9ec2-e17c-4fbd-b261-805632489822 + c94119e7-e076-4a40-ad23-91b14c7b1fb3 + c9804a71-4db7-4b67-a8e9-bfdf9c39b6e1 + cb15c7e1-f869-4ebe-9708-aca8348e0d8e + cb2bfa8e-616e-433c-afc8-4cf505936847 + cc8ebcb5-7070-4085-8d2a-b8a8b63c2325 + cccb7461-4053-441d-bd75-70d0cc382378 + cccbe4ed-56b5-4b93-bdf5-280fe60ee941 + cd113228-94ff-48bd-bdb7-cb08ef396f96 + ce30f749-4ea4-4772-9623-13d3e1d3a5ee + cee17292-4f37-4030-b8b2-256058d86f8b + cf3b546c-f18f-438d-bdb3-f7096f65aa04 + cf6a1453-4bb3-4a26-817b-6c94c74663b7 + d0f980aa-1825-438f-8848-47e9cfb9cc2c + d5ddf5c9-6f8c-4e30-806e-ba42114acb56 + d68d643c-15db-43a9-95f6-27ba9dee7e6a + d8e311c5-5205-4591-b42b-b05eed48551e + d9519058-d0d0-4490-af2c-05a59ca2b765 + d9944e1c-ae3a-4316-9532-3626013f7e34 + d9b3fa42-3789-4ded-8515-e2a1ecdb23ff + da114603-9f44-4b16-8099-6fac9a26214c + daa1a545-5be8-4854-870f-17fbea2bd20f + db06e9e9-1b26-4172-837a-614a1c59a9ff + db321d02-9246-4f0f-a472-38bb00f8b4e0 + de78fb7e-d07e-4987-8fd6-a43ee20d8ee5 + dec37474-4aa7-499c-aec0-4ab21b969b38 + df6968c0-8cc4-48e5-a942-4db5b47819e7 + dfc5671a-9bce-417c-a5e5-a33f2a46a127 + e077aaab-e2f3-4daa-aced-5b7d9bc76b27 + e25470ba-ce2c-42ab-bfa2-b862a4d86375 + e289eb87-89bc-4aec-bd15-d09963a342cd + e2a629eb-c1b0-46c9-9810-3409f0f8310f + e2d753fd-9c25-4751-8839-63ca6a9e64cc + e600a537-345e-4492-80ce-ea4c67a3fb1a + e6994f6f-844c-4b1d-9b05-6039b0d52123 + e868ef30-eb4b-43bb-87b7-667f181cf4f2 + e872d8b3-5b7f-4b91-9386-697df44e34b0 + e993b859-e4c6-494a-a71d-6729e3fc4970 + e999f539-dcef-4ec2-947e-f705ddd7dc7e + eaef1efe-07b7-4c84-9fd2-7e8e2a10a5ca + ebcba516-d64f-41b4-8b77-7a4cb3dc5e8c + ec393646-6b6f-45d5-b3c2-549fc4e756e8 + ef1ab898-6082-42d1-93e5-487ca17aa0dd + ef6abef0-c350-4bd7-880b-0cc20d0e0053 + f02e05df-63fd-43c6-9439-f3093a210970 + f03a4891-26d5-428d-8cd8-d18eb6c42283 + f06808c1-d8a7-46d6-b20c-b712cac3f6c5 + f287baa5-1d01-4e32-a778-e6b3e7760beb + f324a404-ccbf-4f5b-ac00-539888e5140d + f476de9d-715a-48cf-a0e1-9985899a162c + f6204fe9-9328-4ad2-8012-599bf3392954 + f6357e0b-6da5-453e-a12a-d38d2e125c08 + f6be6180-ef79-408d-9413-509959fb658b + f7834d1f-5fe9-4073-a9b9-80742e5f7005 + f804872d-f56c-49ec-8089-76018849b2ec + f907e459-a529-4505-8d62-1c03b3cb2d9d + f99b649a-19bc-466e-83dd-37a92e2209d4 + f9fd033d-9be7-484a-b7c2-489254184de3 + fa671f80-b808-4024-8c60-a80218865041 + fc53f6dd-2173-4a24-b709-2b79d59c7f10 + fcd72624-b1fd-4c2d-b008-ea6ff8f29a2b + fd389323-e802-487d-b6a7-e6ab027011e6 + fd4d2574-1b1f-4b67-af06-bdc113ed183e + feaf7761-47d3-4430-b6e9-e3fc7570cfac + ff0ac318-3df1-4ee5-9229-65a3f0d4c59c + ) + ) +) diff --git a/F1:F103/Canon_managing_device/kicad/Canon_manage/Canon_manage.kicad_prl b/F1:F103/Canon_managing_device/kicad/Canon_manage/Canon_manage.kicad_prl new file mode 100644 index 0000000..d423084 --- /dev/null +++ b/F1:F103/Canon_managing_device/kicad/Canon_manage/Canon_manage.kicad_prl @@ -0,0 +1,75 @@ +{ + "board": { + "active_layer": 31, + "active_layer_preset": "", + "auto_track_width": false, + "hidden_nets": [], + "high_contrast_mode": 0, + "net_color_mode": 1, + "opacity": { + "pads": 1.0, + "tracks": 1.0, + "vias": 1.0, + "zones": 0.6 + }, + "ratsnest_display_mode": 0, + "selection_filter": { + "dimensions": true, + "footprints": true, + "graphics": true, + "keepouts": true, + "lockedItems": true, + "otherItems": true, + "pads": true, + "text": true, + "tracks": true, + "vias": true, + "zones": true + }, + "visible_items": [ + 0, + 1, + 2, + 3, + 4, + 5, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 32, + 33, + 34, + 35, + 36 + ], + "visible_layers": "7fffeff_80000001", + "zone_display_mode": 1 + }, + "meta": { + "filename": "Canon_manage.kicad_prl", + "version": 3 + }, + "project": { + "files": [] + } +} diff --git a/F1:F103/Canon_managing_device/kicad/Canon_manage/Canon_manage.kicad_pro b/F1:F103/Canon_managing_device/kicad/Canon_manage/Canon_manage.kicad_pro new file mode 100644 index 0000000..09c4088 --- /dev/null +++ b/F1:F103/Canon_managing_device/kicad/Canon_manage/Canon_manage.kicad_pro @@ -0,0 +1,445 @@ +{ + "board": { + "design_settings": { + "defaults": { + "board_outline_line_width": 0.09999999999999999, + "copper_line_width": 0.19999999999999998, + "copper_text_italic": false, + "copper_text_size_h": 1.5, + "copper_text_size_v": 1.5, + "copper_text_thickness": 0.3, + "copper_text_upright": false, + "courtyard_line_width": 0.049999999999999996, + "dimension_precision": 4, + "dimension_units": 3, + "dimensions": { + "arrow_length": 1270000, + "extension_offset": 500000, + "keep_text_aligned": true, + "suppress_zeroes": false, + "text_position": 0, + "units_format": 1 + }, + "fab_line_width": 0.09999999999999999, + "fab_text_italic": false, + "fab_text_size_h": 1.0, + "fab_text_size_v": 1.0, + "fab_text_thickness": 0.15, + "fab_text_upright": false, + "other_line_width": 0.15, + "other_text_italic": false, + "other_text_size_h": 1.0, + "other_text_size_v": 1.0, + "other_text_thickness": 0.15, + "other_text_upright": false, + "pads": { + "drill": 0.762, + "height": 1.524, + "width": 1.524 + }, + "silk_line_width": 0.15, + "silk_text_italic": false, + "silk_text_size_h": 1.0, + "silk_text_size_v": 1.0, + "silk_text_thickness": 0.15, + "silk_text_upright": false, + "zones": { + "45_degree_only": false, + "min_clearance": 0.508 + } + }, + "diff_pair_dimensions": [ + { + "gap": 0.0, + "via_gap": 0.0, + "width": 0.0 + } + ], + "drc_exclusions": [], + "meta": { + "version": 2 + }, + "rule_severities": { + "annular_width": "error", + "clearance": "error", + "copper_edge_clearance": "error", + "courtyards_overlap": "warning", + "diff_pair_gap_out_of_range": "error", + "diff_pair_uncoupled_length_too_long": "error", + "drill_out_of_range": "error", + "duplicate_footprints": "warning", + "extra_footprint": "warning", + "footprint_type_mismatch": "error", + "hole_clearance": "error", + "hole_near_hole": "error", + "invalid_outline": "error", + "item_on_disabled_layer": "error", + "items_not_allowed": "error", + "length_out_of_range": "error", + "malformed_courtyard": "error", + "microvia_drill_out_of_range": "error", + "missing_courtyard": "ignore", + "missing_footprint": "warning", + "net_conflict": "warning", + "npth_inside_courtyard": "ignore", + "padstack": "error", + "pth_inside_courtyard": "ignore", + "shorting_items": "error", + "silk_over_copper": "warning", + "silk_overlap": "warning", + "skew_out_of_range": "error", + "through_hole_pad_without_hole": "error", + "too_many_vias": "error", + "track_dangling": "warning", + "track_width": "error", + "tracks_crossing": "error", + "unconnected_items": "error", + "unresolved_variable": "error", + "via_dangling": "warning", + "zone_has_empty_net": "error", + "zones_intersect": "error" + }, + "rules": { + "allow_blind_buried_vias": false, + "allow_microvias": false, + "max_error": 0.005, + "min_clearance": 0.0, + "min_copper_edge_clearance": 0.19999999999999998, + "min_hole_clearance": 0.25, + "min_hole_to_hole": 0.25, + "min_microvia_diameter": 0.19999999999999998, + "min_microvia_drill": 0.09999999999999999, + "min_silk_clearance": 0.0, + "min_through_hole_diameter": 0.3, + "min_track_width": 0.19999999999999998, + "min_via_annular_width": 0.049999999999999996, + "min_via_diameter": 0.39999999999999997, + "solder_mask_clearance": 0.0, + "solder_mask_min_width": 0.0, + "use_height_for_length_calcs": true + }, + "track_widths": [ + 0.0, + 0.2, + 0.25, + 0.5, + 1.0 + ], + "via_dimensions": [ + { + "diameter": 0.0, + "drill": 0.0 + }, + { + "diameter": 0.8, + "drill": 0.5 + }, + { + "diameter": 1.2, + "drill": 0.8 + } + ], + "zones_allow_external_fillets": false, + "zones_use_no_outline": true + }, + "layer_presets": [] + }, + "boards": [], + "cvpcb": { + "equivalence_files": [] + }, + "erc": { + "erc_exclusions": [], + "meta": { + "version": 0 + }, + "pin_map": [ + [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 2 + ], + [ + 0, + 2, + 0, + 1, + 0, + 0, + 1, + 0, + 2, + 2, + 2, + 2 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 1, + 0, + 1, + 2 + ], + [ + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 1, + 2, + 1, + 1, + 2 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 2 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 2 + ], + [ + 1, + 1, + 1, + 1, + 1, + 0, + 1, + 1, + 1, + 1, + 1, + 2 + ], + [ + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 2 + ], + [ + 0, + 2, + 1, + 2, + 0, + 0, + 1, + 0, + 2, + 2, + 2, + 2 + ], + [ + 0, + 2, + 0, + 1, + 0, + 0, + 1, + 0, + 2, + 0, + 0, + 2 + ], + [ + 0, + 2, + 1, + 1, + 0, + 0, + 1, + 0, + 2, + 0, + 0, + 2 + ], + [ + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2 + ] + ], + "rule_severities": { + "bus_definition_conflict": "error", + "bus_entry_needed": "error", + "bus_label_syntax": "error", + "bus_to_bus_conflict": "error", + "bus_to_net_conflict": "error", + "different_unit_footprint": "error", + "different_unit_net": "error", + "duplicate_reference": "error", + "duplicate_sheet_names": "error", + "extra_units": "error", + "global_label_dangling": "warning", + "hier_label_mismatch": "error", + "label_dangling": "error", + "lib_symbol_issues": "warning", + "multiple_net_names": "warning", + "net_not_bus_member": "warning", + "no_connect_connected": "warning", + "no_connect_dangling": "warning", + "pin_not_connected": "error", + "pin_not_driven": "error", + "pin_to_pin": "warning", + "power_pin_not_driven": "error", + "similar_labels": "warning", + "unannotated": "error", + "unit_value_mismatch": "error", + "unresolved_variable": "error", + "wire_dangling": "error" + } + }, + "libraries": { + "pinned_footprint_libs": [], + "pinned_symbol_libs": [] + }, + "meta": { + "filename": "Canon_manage.kicad_pro", + "version": 1 + }, + "net_settings": { + "classes": [ + { + "bus_width": 12.0, + "clearance": 0.1, + "diff_pair_gap": 0.25, + "diff_pair_via_gap": 0.25, + "diff_pair_width": 0.2, + "line_style": 0, + "microvia_diameter": 0.3, + "microvia_drill": 0.1, + "name": "Default", + "pcb_color": "rgba(0, 0, 0, 0.000)", + "schematic_color": "rgba(0, 0, 0, 0.000)", + "track_width": 0.2, + "via_diameter": 0.8, + "via_drill": 0.5, + "wire_width": 6.0 + } + ], + "meta": { + "version": 2 + }, + "net_colors": null + }, + "pcbnew": { + "last_paths": { + "gencad": "", + "idf": "", + "netlist": "", + "specctra_dsn": "", + "step": "", + "vrml": "" + }, + "page_layout_descr_file": "" + }, + "schematic": { + "annotate_start_num": 0, + "drawing": { + "default_line_thickness": 6.0, + "default_text_size": 50.0, + "field_names": [], + "intersheets_ref_own_page": false, + "intersheets_ref_prefix": "", + "intersheets_ref_short": false, + "intersheets_ref_show": false, + "intersheets_ref_suffix": "", + "junction_size_choice": 3, + "label_size_ratio": 0.375, + "pin_symbol_size": 25.0, + "text_offset_ratio": 0.15 + }, + "legacy_lib_dir": "", + "legacy_lib_list": [], + "meta": { + "version": 1 + }, + "net_format_name": "", + "ngspice": { + "fix_include_paths": true, + "fix_passive_vals": false, + "meta": { + "version": 0 + }, + "model_mode": 0, + "workbook_filename": "" + }, + "page_layout_descr_file": "", + "plot_directory": "", + "spice_adjust_passive_values": false, + "spice_external_command": "spice \"%I\"", + "subpart_first_id": 65, + "subpart_id_separator": 0 + }, + "sheets": [ + [ + "56438dee-19cd-4574-afb4-194a39bf2855", + "" + ] + ], + "text_variables": {} +} diff --git a/F1:F103/Canon_managing_device/kicad/Canon_manage/Canon_manage.kicad_sch b/F1:F103/Canon_managing_device/kicad/Canon_manage/Canon_manage.kicad_sch new file mode 100644 index 0000000..c593921 --- /dev/null +++ b/F1:F103/Canon_managing_device/kicad/Canon_manage/Canon_manage.kicad_sch @@ -0,0 +1,3176 @@ +(kicad_sch (version 20211123) (generator eeschema) + + (uuid 56438dee-19cd-4574-afb4-194a39bf2855) + + (paper "A4") + + (lib_symbols + (symbol "Connector:Conn_01x01_Male" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes) + (property "Reference" "J" (id 0) (at 0 2.54 0) + (effects (font (size 1.27 1.27))) + ) + (property "Value" "Conn_01x01_Male" (id 1) (at 0 -2.54 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_keywords" "connector" (id 4) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_description" "Generic connector, single row, 01x01, script generated (kicad-library-utils/schlib/autogen/connector/)" (id 5) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_fp_filters" "Connector*:*" (id 6) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "Conn_01x01_Male_1_1" + (polyline + (pts + (xy 1.27 0) + (xy 0.8636 0) + ) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (rectangle (start 0.8636 0.127) (end 0 -0.127) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (pin passive line (at 5.08 0 180) (length 3.81) + (name "Pin_1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "Connector:Conn_01x06_Female" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes) + (property "Reference" "J" (id 0) (at 0 7.62 0) + (effects (font (size 1.27 1.27))) + ) + (property "Value" "Conn_01x06_Female" (id 1) (at 0 -10.16 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_keywords" "connector" (id 4) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_description" "Generic connector, single row, 01x06, script generated (kicad-library-utils/schlib/autogen/connector/)" (id 5) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_fp_filters" "Connector*:*_1x??_*" (id 6) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "Conn_01x06_Female_1_1" + (arc (start 0 -7.112) (mid -0.508 -7.62) (end 0 -8.128) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 0 -4.572) (mid -0.508 -5.08) (end 0 -5.588) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 0 -2.032) (mid -0.508 -2.54) (end 0 -3.048) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -1.27 -7.62) + (xy -0.508 -7.62) + ) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -1.27 -5.08) + (xy -0.508 -5.08) + ) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -1.27 -2.54) + (xy -0.508 -2.54) + ) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -1.27 0) + (xy -0.508 0) + ) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -1.27 2.54) + (xy -0.508 2.54) + ) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -1.27 5.08) + (xy -0.508 5.08) + ) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 0 0.508) (mid -0.508 0) (end 0 -0.508) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 0 3.048) (mid -0.508 2.54) (end 0 2.032) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 0 5.588) (mid -0.508 5.08) (end 0 4.572) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (pin passive line (at -5.08 5.08 0) (length 3.81) + (name "Pin_1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -5.08 2.54 0) (length 3.81) + (name "Pin_2" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -5.08 0 0) (length 3.81) + (name "Pin_3" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -5.08 -2.54 0) (length 3.81) + (name "Pin_4" (effects (font (size 1.27 1.27)))) + (number "4" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -5.08 -5.08 0) (length 3.81) + (name "Pin_5" (effects (font (size 1.27 1.27)))) + (number "5" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -5.08 -7.62 0) (length 3.81) + (name "Pin_6" (effects (font (size 1.27 1.27)))) + (number "6" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "Connector:USB_C_Receptacle" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "J" (id 0) (at -10.16 29.21 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "USB_C_Receptacle" (id 1) (at 10.16 29.21 0) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 3.81 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "https://www.usb.org/sites/default/files/documents/usb_type-c.zip" (id 3) (at 3.81 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_keywords" "usb universal serial bus type-C full-featured" (id 4) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_description" "USB Full-Featured Type-C Receptacle connector" (id 5) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_fp_filters" "USB*C*Receptacle*" (id 6) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "USB_C_Receptacle_0_0" + (rectangle (start -0.254 -35.56) (end 0.254 -34.544) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (rectangle (start 10.16 -32.766) (end 9.144 -33.274) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (rectangle (start 10.16 -30.226) (end 9.144 -30.734) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (rectangle (start 10.16 -25.146) (end 9.144 -25.654) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (rectangle (start 10.16 -22.606) (end 9.144 -23.114) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (rectangle (start 10.16 -17.526) (end 9.144 -18.034) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (rectangle (start 10.16 -14.986) (end 9.144 -15.494) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (rectangle (start 10.16 -9.906) (end 9.144 -10.414) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (rectangle (start 10.16 -7.366) (end 9.144 -7.874) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (rectangle (start 10.16 -2.286) (end 9.144 -2.794) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (rectangle (start 10.16 0.254) (end 9.144 -0.254) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (rectangle (start 10.16 5.334) (end 9.144 4.826) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (rectangle (start 10.16 7.874) (end 9.144 7.366) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (rectangle (start 10.16 10.414) (end 9.144 9.906) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (rectangle (start 10.16 12.954) (end 9.144 12.446) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (rectangle (start 10.16 18.034) (end 9.144 17.526) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (rectangle (start 10.16 20.574) (end 9.144 20.066) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (rectangle (start 10.16 25.654) (end 9.144 25.146) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "USB_C_Receptacle_0_1" + (rectangle (start -10.16 27.94) (end 10.16 -35.56) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type background)) + ) + (arc (start -8.89 -3.81) (mid -6.985 -5.715) (end -5.08 -3.81) + (stroke (width 0.508) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start -7.62 -3.81) (mid -6.985 -4.445) (end -6.35 -3.81) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start -7.62 -3.81) (mid -6.985 -4.445) (end -6.35 -3.81) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start -7.62 -3.81) (end -6.35 3.81) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (arc (start -6.35 3.81) (mid -6.985 4.445) (end -7.62 3.81) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start -6.35 3.81) (mid -6.985 4.445) (end -7.62 3.81) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (arc (start -5.08 3.81) (mid -6.985 5.715) (end -8.89 3.81) + (stroke (width 0.508) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -8.89 -3.81) + (xy -8.89 3.81) + ) + (stroke (width 0.508) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -5.08 3.81) + (xy -5.08 -3.81) + ) + (stroke (width 0.508) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "USB_C_Receptacle_1_1" + (circle (center -2.54 1.143) (radius 0.635) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (circle (center 0 -5.842) (radius 1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (polyline + (pts + (xy 0 -5.842) + (xy 0 4.318) + ) + (stroke (width 0.508) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 0 -3.302) + (xy -2.54 -0.762) + (xy -2.54 0.508) + ) + (stroke (width 0.508) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 0 -2.032) + (xy 2.54 0.508) + (xy 2.54 1.778) + ) + (stroke (width 0.508) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -1.27 4.318) + (xy 0 6.858) + (xy 1.27 4.318) + (xy -1.27 4.318) + ) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start 1.905 1.778) (end 3.175 3.048) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (pin passive line (at 0 -40.64 90) (length 5.08) + (name "GND" (effects (font (size 1.27 1.27)))) + (number "A1" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 15.24 -15.24 180) (length 5.08) + (name "RX2-" (effects (font (size 1.27 1.27)))) + (number "A10" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 15.24 -17.78 180) (length 5.08) + (name "RX2+" (effects (font (size 1.27 1.27)))) + (number "A11" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 0 -40.64 90) (length 5.08) hide + (name "GND" (effects (font (size 1.27 1.27)))) + (number "A12" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 15.24 -10.16 180) (length 5.08) + (name "TX1+" (effects (font (size 1.27 1.27)))) + (number "A2" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 15.24 -7.62 180) (length 5.08) + (name "TX1-" (effects (font (size 1.27 1.27)))) + (number "A3" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 15.24 25.4 180) (length 5.08) + (name "VBUS" (effects (font (size 1.27 1.27)))) + (number "A4" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 15.24 20.32 180) (length 5.08) + (name "CC1" (effects (font (size 1.27 1.27)))) + (number "A5" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 15.24 7.62 180) (length 5.08) + (name "D+" (effects (font (size 1.27 1.27)))) + (number "A6" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 15.24 12.7 180) (length 5.08) + (name "D-" (effects (font (size 1.27 1.27)))) + (number "A7" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 15.24 -30.48 180) (length 5.08) + (name "SBU1" (effects (font (size 1.27 1.27)))) + (number "A8" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 15.24 25.4 180) (length 5.08) hide + (name "VBUS" (effects (font (size 1.27 1.27)))) + (number "A9" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 0 -40.64 90) (length 5.08) hide + (name "GND" (effects (font (size 1.27 1.27)))) + (number "B1" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 15.24 0 180) (length 5.08) + (name "RX1-" (effects (font (size 1.27 1.27)))) + (number "B10" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 15.24 -2.54 180) (length 5.08) + (name "RX1+" (effects (font (size 1.27 1.27)))) + (number "B11" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 0 -40.64 90) (length 5.08) hide + (name "GND" (effects (font (size 1.27 1.27)))) + (number "B12" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 15.24 -25.4 180) (length 5.08) + (name "TX2+" (effects (font (size 1.27 1.27)))) + (number "B2" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 15.24 -22.86 180) (length 5.08) + (name "TX2-" (effects (font (size 1.27 1.27)))) + (number "B3" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 15.24 25.4 180) (length 5.08) hide + (name "VBUS" (effects (font (size 1.27 1.27)))) + (number "B4" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 15.24 17.78 180) (length 5.08) + (name "CC2" (effects (font (size 1.27 1.27)))) + (number "B5" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 15.24 5.08 180) (length 5.08) + (name "D+" (effects (font (size 1.27 1.27)))) + (number "B6" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 15.24 10.16 180) (length 5.08) + (name "D-" (effects (font (size 1.27 1.27)))) + (number "B7" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 15.24 -33.02 180) (length 5.08) + (name "SBU2" (effects (font (size 1.27 1.27)))) + (number "B8" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 15.24 25.4 180) (length 5.08) hide + (name "VBUS" (effects (font (size 1.27 1.27)))) + (number "B9" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -7.62 -40.64 90) (length 5.08) + (name "SHIELD" (effects (font (size 1.27 1.27)))) + (number "S1" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "Connector_Generic:Conn_01x01" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes) + (property "Reference" "J" (id 0) (at 0 2.54 0) + (effects (font (size 1.27 1.27))) + ) + (property "Value" "Conn_01x01" (id 1) (at 0 -2.54 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_keywords" "connector" (id 4) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_description" "Generic connector, single row, 01x01, script generated (kicad-library-utils/schlib/autogen/connector/)" (id 5) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_fp_filters" "Connector*:*_1x??_*" (id 6) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "Conn_01x01_1_1" + (rectangle (start -1.27 0.127) (end 0 -0.127) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (rectangle (start -1.27 1.27) (end 1.27 -1.27) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type background)) + ) + (pin passive line (at -5.08 0 0) (length 3.81) + (name "Pin_1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "Device:C" (pin_numbers hide) (pin_names (offset 0.254)) (in_bom yes) (on_board yes) + (property "Reference" "C" (id 0) (at 0.635 2.54 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "C" (id 1) (at 0.635 -2.54 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 0.9652 -3.81 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_keywords" "cap capacitor" (id 4) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_description" "Unpolarized capacitor" (id 5) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_fp_filters" "C_*" (id 6) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "C_0_1" + (polyline + (pts + (xy -2.032 -0.762) + (xy 2.032 -0.762) + ) + (stroke (width 0.508) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -2.032 0.762) + (xy 2.032 0.762) + ) + (stroke (width 0.508) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "C_1_1" + (pin passive line (at 0 3.81 270) (length 2.794) + (name "~" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 0 -3.81 90) (length 2.794) + (name "~" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "Device:C_Polarized" (pin_numbers hide) (pin_names (offset 0.254)) (in_bom yes) (on_board yes) + (property "Reference" "C" (id 0) (at 0.635 2.54 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "C_Polarized" (id 1) (at 0.635 -2.54 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 0.9652 -3.81 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_keywords" "cap capacitor" (id 4) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_description" "Polarized capacitor" (id 5) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_fp_filters" "CP_*" (id 6) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "C_Polarized_0_1" + (rectangle (start -2.286 0.508) (end 2.286 1.016) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -1.778 2.286) + (xy -0.762 2.286) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -1.27 2.794) + (xy -1.27 1.778) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (rectangle (start 2.286 -0.508) (end -2.286 -1.016) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + ) + (symbol "C_Polarized_1_1" + (pin passive line (at 0 3.81 270) (length 2.794) + (name "~" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 0 -3.81 90) (length 2.794) + (name "~" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "Device:Crystal" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes) + (property "Reference" "Y" (id 0) (at 0 3.81 0) + (effects (font (size 1.27 1.27))) + ) + (property "Value" "Crystal" (id 1) (at 0 -3.81 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_keywords" "quartz ceramic resonator oscillator" (id 4) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_description" "Two pin crystal" (id 5) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_fp_filters" "Crystal*" (id 6) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "Crystal_0_1" + (rectangle (start -1.143 2.54) (end 1.143 -2.54) + (stroke (width 0.3048) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -2.54 0) + (xy -1.905 0) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -1.905 -1.27) + (xy -1.905 1.27) + ) + (stroke (width 0.508) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 1.905 -1.27) + (xy 1.905 1.27) + ) + (stroke (width 0.508) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 2.54 0) + (xy 1.905 0) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "Crystal_1_1" + (pin passive line (at -3.81 0 0) (length 1.27) + (name "1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 3.81 0 180) (length 1.27) + (name "2" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "Device:R" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes) + (property "Reference" "R" (id 0) (at 2.032 0 90) + (effects (font (size 1.27 1.27))) + ) + (property "Value" "R" (id 1) (at 0 0 90) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (id 2) (at -1.778 0 90) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_keywords" "R res resistor" (id 4) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_description" "Resistor" (id 5) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_fp_filters" "R_*" (id 6) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "R_0_1" + (rectangle (start -1.016 -2.54) (end 1.016 2.54) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "R_1_1" + (pin passive line (at 0 3.81 270) (length 1.27) + (name "~" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 0 -3.81 90) (length 1.27) + (name "~" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "MCU_ST_STM32F1:STM32F103C6Tx" (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at -15.24 36.83 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "STM32F103C6Tx" (id 1) (at 7.62 36.83 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "Package_QFP:LQFP-48_7x7mm_P0.5mm" (id 2) (at -15.24 -35.56 0) + (effects (font (size 1.27 1.27)) (justify right) hide) + ) + (property "Datasheet" "http://www.st.com/st-web-ui/static/active/en/resource/technical/document/datasheet/CD00210843.pdf" (id 3) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_keywords" "ARM Cortex-M3 STM32F1 STM32F103" (id 4) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_description" "ARM Cortex-M3 MCU, 32KB flash, 10KB RAM, 72MHz, 2-3.6V, 37 GPIO, LQFP-48" (id 5) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_fp_filters" "LQFP*7x7mm*P0.5mm*" (id 6) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "STM32F103C6Tx_0_1" + (rectangle (start -15.24 -35.56) (end 12.7 35.56) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type background)) + ) + ) + (symbol "STM32F103C6Tx_1_1" + (pin power_in line (at -5.08 38.1 270) (length 2.54) + (name "VBAT" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 15.24 5.08 180) (length 2.54) + (name "PA0" (effects (font (size 1.27 1.27)))) + (number "10" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 15.24 2.54 180) (length 2.54) + (name "PA1" (effects (font (size 1.27 1.27)))) + (number "11" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 15.24 0 180) (length 2.54) + (name "PA2" (effects (font (size 1.27 1.27)))) + (number "12" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 15.24 -2.54 180) (length 2.54) + (name "PA3" (effects (font (size 1.27 1.27)))) + (number "13" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 15.24 -5.08 180) (length 2.54) + (name "PA4" (effects (font (size 1.27 1.27)))) + (number "14" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 15.24 -7.62 180) (length 2.54) + (name "PA5" (effects (font (size 1.27 1.27)))) + (number "15" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 15.24 -10.16 180) (length 2.54) + (name "PA6" (effects (font (size 1.27 1.27)))) + (number "16" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 15.24 -12.7 180) (length 2.54) + (name "PA7" (effects (font (size 1.27 1.27)))) + (number "17" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at -17.78 5.08 0) (length 2.54) + (name "PB0" (effects (font (size 1.27 1.27)))) + (number "18" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at -17.78 2.54 0) (length 2.54) + (name "PB1" (effects (font (size 1.27 1.27)))) + (number "19" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at -17.78 15.24 0) (length 2.54) + (name "PC13" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at -17.78 0 0) (length 2.54) + (name "PB2" (effects (font (size 1.27 1.27)))) + (number "20" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at -17.78 -20.32 0) (length 2.54) + (name "PB10" (effects (font (size 1.27 1.27)))) + (number "21" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at -17.78 -22.86 0) (length 2.54) + (name "PB11" (effects (font (size 1.27 1.27)))) + (number "22" (effects (font (size 1.27 1.27)))) + ) + (pin power_in line (at -5.08 -38.1 90) (length 2.54) + (name "VSS" (effects (font (size 1.27 1.27)))) + (number "23" (effects (font (size 1.27 1.27)))) + ) + (pin power_in line (at -2.54 38.1 270) (length 2.54) + (name "VDD" (effects (font (size 1.27 1.27)))) + (number "24" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at -17.78 -25.4 0) (length 2.54) + (name "PB12" (effects (font (size 1.27 1.27)))) + (number "25" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at -17.78 -27.94 0) (length 2.54) + (name "PB13" (effects (font (size 1.27 1.27)))) + (number "26" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at -17.78 -30.48 0) (length 2.54) + (name "PB14" (effects (font (size 1.27 1.27)))) + (number "27" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at -17.78 -33.02 0) (length 2.54) + (name "PB15" (effects (font (size 1.27 1.27)))) + (number "28" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 15.24 -15.24 180) (length 2.54) + (name "PA8" (effects (font (size 1.27 1.27)))) + (number "29" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at -17.78 12.7 0) (length 2.54) + (name "PC14" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 15.24 -17.78 180) (length 2.54) + (name "PA9" (effects (font (size 1.27 1.27)))) + (number "30" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 15.24 -20.32 180) (length 2.54) + (name "PA10" (effects (font (size 1.27 1.27)))) + (number "31" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 15.24 -22.86 180) (length 2.54) + (name "PA11" (effects (font (size 1.27 1.27)))) + (number "32" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 15.24 -25.4 180) (length 2.54) + (name "PA12" (effects (font (size 1.27 1.27)))) + (number "33" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 15.24 -27.94 180) (length 2.54) + (name "PA13" (effects (font (size 1.27 1.27)))) + (number "34" (effects (font (size 1.27 1.27)))) + ) + (pin power_in line (at -2.54 -38.1 90) (length 2.54) + (name "VSS" (effects (font (size 1.27 1.27)))) + (number "35" (effects (font (size 1.27 1.27)))) + ) + (pin power_in line (at 0 38.1 270) (length 2.54) + (name "VDD" (effects (font (size 1.27 1.27)))) + (number "36" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 15.24 -30.48 180) (length 2.54) + (name "PA14" (effects (font (size 1.27 1.27)))) + (number "37" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 15.24 -33.02 180) (length 2.54) + (name "PA15" (effects (font (size 1.27 1.27)))) + (number "38" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at -17.78 -2.54 0) (length 2.54) + (name "PB3" (effects (font (size 1.27 1.27)))) + (number "39" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at -17.78 10.16 0) (length 2.54) + (name "PC15" (effects (font (size 1.27 1.27)))) + (number "4" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at -17.78 -5.08 0) (length 2.54) + (name "PB4" (effects (font (size 1.27 1.27)))) + (number "40" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at -17.78 -7.62 0) (length 2.54) + (name "PB5" (effects (font (size 1.27 1.27)))) + (number "41" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at -17.78 -10.16 0) (length 2.54) + (name "PB6" (effects (font (size 1.27 1.27)))) + (number "42" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at -17.78 -12.7 0) (length 2.54) + (name "PB7" (effects (font (size 1.27 1.27)))) + (number "43" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -17.78 27.94 0) (length 2.54) + (name "BOOT0" (effects (font (size 1.27 1.27)))) + (number "44" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at -17.78 -15.24 0) (length 2.54) + (name "PB8" (effects (font (size 1.27 1.27)))) + (number "45" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at -17.78 -17.78 0) (length 2.54) + (name "PB9" (effects (font (size 1.27 1.27)))) + (number "46" (effects (font (size 1.27 1.27)))) + ) + (pin power_in line (at 0 -38.1 90) (length 2.54) + (name "VSS" (effects (font (size 1.27 1.27)))) + (number "47" (effects (font (size 1.27 1.27)))) + ) + (pin power_in line (at 2.54 38.1 270) (length 2.54) + (name "VDD" (effects (font (size 1.27 1.27)))) + (number "48" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -17.78 22.86 0) (length 2.54) + (name "PD0" (effects (font (size 1.27 1.27)))) + (number "5" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -17.78 20.32 0) (length 2.54) + (name "PD1" (effects (font (size 1.27 1.27)))) + (number "6" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -17.78 33.02 0) (length 2.54) + (name "NRST" (effects (font (size 1.27 1.27)))) + (number "7" (effects (font (size 1.27 1.27)))) + ) + (pin power_in line (at 2.54 -38.1 90) (length 2.54) + (name "VSSA" (effects (font (size 1.27 1.27)))) + (number "8" (effects (font (size 1.27 1.27)))) + ) + (pin power_in line (at 5.08 38.1 270) (length 2.54) + (name "VDDA" (effects (font (size 1.27 1.27)))) + (number "9" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "Power_Protection:SP0504BAHT" (pin_names hide) (in_bom yes) (on_board yes) + (property "Reference" "D" (id 0) (at 7.62 2.54 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "SP0504BAHT" (id 1) (at 7.62 0.635 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "Package_TO_SOT_SMD:SOT-23-5" (id 2) (at 7.62 -1.27 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Datasheet" "http://www.littelfuse.com/~/media/files/littelfuse/technical%20resources/documents/data%20sheets/sp05xxba.pdf" (id 3) (at 3.175 3.175 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_keywords" "usb esd protection suppression transient" (id 4) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_description" "TVS Diode Array, 5.5V Standoff, 4 Channels, SOT-23-5 package" (id 5) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_fp_filters" "SOT?23*" (id 6) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "SP0504BAHT_0_0" + (pin passive line (at 0 -5.08 90) (length 2.54) + (name "A" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + (symbol "SP0504BAHT_0_1" + (rectangle (start -4.445 2.54) (end 6.985 -2.54) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type background)) + ) + (circle (center 0 -1.27) (radius 0.254) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (polyline + (pts + (xy -2.54 2.54) + (xy -2.54 1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 0 -1.27) + (xy 0 -2.54) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 0 -1.27) + (xy 0 1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 0 2.54) + (xy 0 1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 2.54 2.54) + (xy 2.54 1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 5.08 2.54) + (xy 5.08 1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -3.302 1.016) + (xy -3.302 1.27) + (xy -1.778 1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 0.762 1.27) + (xy -0.762 1.27) + (xy -0.762 1.016) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 5.08 1.27) + (xy 5.08 -1.27) + (xy 2.54 -1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -2.54 1.27) + (xy -2.54 -1.27) + (xy 2.54 -1.27) + (xy 2.54 1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -2.54 1.27) + (xy -1.905 0) + (xy -3.175 0) + (xy -2.54 1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 0.635 0) + (xy -0.635 0) + (xy 0 1.27) + (xy 0.635 0) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 1.778 1.016) + (xy 1.778 1.27) + (xy 3.175 1.27) + (xy 3.302 1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 2.54 1.27) + (xy 1.905 0) + (xy 3.175 0) + (xy 2.54 1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 4.318 1.016) + (xy 4.318 1.27) + (xy 5.715 1.27) + (xy 5.842 1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 5.08 1.27) + (xy 4.445 0) + (xy 5.715 0) + (xy 5.08 1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (circle (center 2.54 -1.27) (radius 0.254) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + ) + (symbol "SP0504BAHT_1_1" + (pin passive line (at -2.54 5.08 270) (length 2.54) + (name "K" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 0 5.08 270) (length 2.54) + (name "K" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 2.54 5.08 270) (length 2.54) + (name "K" (effects (font (size 1.27 1.27)))) + (number "4" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 5.08 5.08 270) (length 2.54) + (name "K" (effects (font (size 1.27 1.27)))) + (number "5" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "Power_Protection:USBLC6-2SC6" (pin_names hide) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 2.54 8.89 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "USBLC6-2SC6" (id 1) (at 2.54 -8.89 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "Package_TO_SOT_SMD:SOT-23-6" (id 2) (at 0 -12.7 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "https://www.st.com/resource/en/datasheet/usblc6-2.pdf" (id 3) (at 5.08 8.89 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_keywords" "usb ethernet video" (id 4) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_description" "Very low capacitance ESD protection diode, 2 data-line, SOT-23-6" (id 5) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_fp_filters" "SOT?23*" (id 6) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "USBLC6-2SC6_0_1" + (rectangle (start -7.62 -7.62) (end 7.62 7.62) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type background)) + ) + (circle (center -5.08 0) (radius 0.254) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (circle (center -2.54 0) (radius 0.254) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start -2.54 6.35) (end 2.54 -6.35) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (circle (center 0 -6.35) (radius 0.254) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (polyline + (pts + (xy -5.08 -2.54) + (xy -7.62 -2.54) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -5.08 0) + (xy -5.08 -2.54) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -5.08 2.54) + (xy -7.62 2.54) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -1.524 -2.794) + (xy -3.556 -2.794) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -1.524 4.826) + (xy -3.556 4.826) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 0 -7.62) + (xy 0 -6.35) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 0 -6.35) + (xy 0 1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 0 1.27) + (xy 0 6.35) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 0 6.35) + (xy 0 7.62) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 1.524 -2.794) + (xy 3.556 -2.794) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 1.524 4.826) + (xy 3.556 4.826) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 5.08 -2.54) + (xy 7.62 -2.54) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 5.08 0) + (xy 5.08 -2.54) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 5.08 2.54) + (xy 7.62 2.54) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -2.54 0) + (xy -5.08 0) + (xy -5.08 2.54) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 2.54 0) + (xy 5.08 0) + (xy 5.08 2.54) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -3.556 -4.826) + (xy -1.524 -4.826) + (xy -2.54 -2.794) + (xy -3.556 -4.826) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -3.556 2.794) + (xy -1.524 2.794) + (xy -2.54 4.826) + (xy -3.556 2.794) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -1.016 -1.016) + (xy 1.016 -1.016) + (xy 0 1.016) + (xy -1.016 -1.016) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 1.016 1.016) + (xy 0.762 1.016) + (xy -1.016 1.016) + (xy -1.016 0.508) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 3.556 -4.826) + (xy 1.524 -4.826) + (xy 2.54 -2.794) + (xy 3.556 -4.826) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 3.556 2.794) + (xy 1.524 2.794) + (xy 2.54 4.826) + (xy 3.556 2.794) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (circle (center 0 6.35) (radius 0.254) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (circle (center 2.54 0) (radius 0.254) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (circle (center 5.08 0) (radius 0.254) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + ) + (symbol "USBLC6-2SC6_1_1" + (pin passive line (at -10.16 -2.54 0) (length 2.54) + (name "I/O1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 0 -10.16 90) (length 2.54) + (name "GND" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 10.16 -2.54 180) (length 2.54) + (name "I/O2" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 10.16 2.54 180) (length 2.54) + (name "I/O2" (effects (font (size 1.27 1.27)))) + (number "4" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 0 10.16 270) (length 2.54) + (name "VBUS" (effects (font (size 1.27 1.27)))) + (number "5" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -10.16 2.54 0) (length 2.54) + (name "I/O1" (effects (font (size 1.27 1.27)))) + (number "6" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "Regulator_Linear:LM1117-3.3" (pin_names (offset 0.254)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at -3.81 3.175 0) + (effects (font (size 1.27 1.27))) + ) + (property "Value" "LM1117-3.3" (id 1) (at 0 3.175 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "http://www.ti.com/lit/ds/symlink/lm1117.pdf" (id 3) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_keywords" "linear regulator ldo fixed positive" (id 4) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_description" "800mA Low-Dropout Linear Regulator, 3.3V fixed output, TO-220/TO-252/TO-263/SOT-223" (id 5) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_fp_filters" "SOT?223* TO?263* TO?252* TO?220*" (id 6) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "LM1117-3.3_0_1" + (rectangle (start -5.08 -5.08) (end 5.08 1.905) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type background)) + ) + ) + (symbol "LM1117-3.3_1_1" + (pin power_in line (at 0 -7.62 90) (length 2.54) + (name "GND" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin power_out line (at 7.62 0 180) (length 2.54) + (name "VO" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin power_in line (at -7.62 0 0) (length 2.54) + (name "VI" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "power:+3V3" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes) + (property "Reference" "#PWR" (id 0) (at 0 -3.81 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "+3V3" (id 1) (at 0 3.556 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_keywords" "power-flag" (id 4) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_description" "Power symbol creates a global label with name \"+3V3\"" (id 5) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "+3V3_0_1" + (polyline + (pts + (xy -0.762 1.27) + (xy 0 2.54) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 0 0) + (xy 0 2.54) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 0 2.54) + (xy 0.762 1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "+3V3_1_1" + (pin power_in line (at 0 0 90) (length 0) hide + (name "+3V3" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "power:GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes) + (property "Reference" "#PWR" (id 0) (at 0 -6.35 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GND" (id 1) (at 0 -3.81 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_keywords" "power-flag" (id 4) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_description" "Power symbol creates a global label with name \"GND\" , ground" (id 5) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "GND_0_1" + (polyline + (pts + (xy 0 0) + (xy 0 -1.27) + (xy 1.27 -1.27) + (xy 0 -2.54) + (xy -1.27 -1.27) + (xy 0 -1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "GND_1_1" + (pin power_in line (at 0 0 270) (length 0) hide + (name "GND" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "power:PWR_FLAG" (power) (pin_numbers hide) (pin_names (offset 0) hide) (in_bom yes) (on_board yes) + (property "Reference" "#FLG" (id 0) (at 0 1.905 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "PWR_FLAG" (id 1) (at 0 3.81 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_keywords" "power-flag" (id 4) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_description" "Special symbol for telling ERC where power comes from" (id 5) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "PWR_FLAG_0_0" + (pin power_out line (at 0 0 90) (length 0) + (name "pwr" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + ) + (symbol "PWR_FLAG_0_1" + (polyline + (pts + (xy 0 0) + (xy 0 1.27) + (xy -1.016 1.905) + (xy 0 2.54) + (xy 1.016 1.905) + (xy 0 1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + ) + ) + + (junction (at 71.374 20.193) (diameter 0) (color 0 0 0 0) + (uuid 132b53f0-c089-4f8f-bf2f-d33a62728721) + ) + (junction (at 143.383 49.149) (diameter 0) (color 0 0 0 0) + (uuid 20ec4793-2a48-4c19-ab14-3b6cebd4bedf) + ) + (junction (at 138.176 56.769) (diameter 0) (color 0 0 0 0) + (uuid 2adb69ca-9e90-44d4-991e-b981f94776cb) + ) + (junction (at 138.176 49.149) (diameter 0) (color 0 0 0 0) + (uuid 2d7a9c2d-056c-4b4d-9a8a-d2fb1cc02aa8) + ) + (junction (at 140.843 56.769) (diameter 0) (color 0 0 0 0) + (uuid 33912956-02c3-4c27-9522-afde9701c8e6) + ) + (junction (at 154.178 37.592) (diameter 0) (color 0 0 0 0) + (uuid 3da809ed-b8cf-40d8-91a5-72de2fa32456) + ) + (junction (at 143.383 56.769) (diameter 0) (color 0 0 0 0) + (uuid 3f6d0027-0adc-458b-a846-f01de19f6dff) + ) + (junction (at 129.794 29.972) (diameter 0) (color 0 0 0 0) + (uuid 410e7e60-9d37-4e29-8477-83d73737ae43) + ) + (junction (at 234.696 89.027) (diameter 0) (color 0 0 0 0) + (uuid 4e06508d-b9a5-4585-b5d3-1450b1f6e37b) + ) + (junction (at 139.192 37.592) (diameter 0) (color 0 0 0 0) + (uuid 6c01eef1-1f11-4728-a10c-bf22297d6e6f) + ) + (junction (at 66.294 20.193) (diameter 0) (color 0 0 0 0) + (uuid 81acf14e-2331-42e5-86b2-c44323e48f88) + ) + (junction (at 154.178 29.972) (diameter 0) (color 0 0 0 0) + (uuid 945d02de-0355-460b-83ef-4365e52d175d) + ) + (junction (at 147.955 37.592) (diameter 0) (color 0 0 0 0) + (uuid ab3fac6d-6e0b-455b-8776-9f645b9b5cda) + ) + (junction (at 63.754 96.393) (diameter 0) (color 0 0 0 0) + (uuid ae947973-1f83-43dd-8c1e-e437446b99fb) + ) + (junction (at 66.294 96.393) (diameter 0) (color 0 0 0 0) + (uuid bb19ecfe-431e-4e2a-911d-907daacc6f1e) + ) + (junction (at 147.955 29.972) (diameter 0) (color 0 0 0 0) + (uuid be19fbd4-b2b5-4d75-a2c0-fd91187eff0d) + ) + (junction (at 63.754 20.193) (diameter 0) (color 0 0 0 0) + (uuid c7add4be-0219-4c77-884f-e6a95f889a34) + ) + (junction (at 68.834 20.193) (diameter 0) (color 0 0 0 0) + (uuid e11d112c-9b7a-43e3-92be-cea7686d2fb0) + ) + (junction (at 98.552 36.576) (diameter 0) (color 0 0 0 0) + (uuid ed691795-fd19-40b2-8a03-31b6211abc13) + ) + (junction (at 140.843 49.149) (diameter 0) (color 0 0 0 0) + (uuid facb6fa9-afe9-4993-aedf-f9bb48874a95) + ) + (junction (at 157.099 29.972) (diameter 0) (color 0 0 0 0) + (uuid fb411bfe-998b-4e5f-9c4e-223e936d9802) + ) + (junction (at 263.017 38.227) (diameter 0) (color 0 0 0 0) + (uuid fc651ab8-a37a-4073-950f-2e729063686e) + ) + + (no_connect (at 249.936 78.867) (uuid 11cbf37a-d9e7-45a9-bfa6-833b40600add)) + (no_connect (at 249.936 81.407) (uuid 11cbf37a-d9e7-45a9-bfa6-833b40600ade)) + (no_connect (at 48.514 76.073) (uuid 229a7230-5578-46a9-a67c-dbf2180986b4)) + (no_connect (at 81.534 91.313) (uuid 318c618a-33f6-4eb6-9885-352ea44ff770)) + (no_connect (at 48.514 53.213) (uuid 318c618a-33f6-4eb6-9885-352ea44ff771)) + (no_connect (at 48.514 63.373) (uuid 318c618a-33f6-4eb6-9885-352ea44ff772)) + (no_connect (at 48.514 73.533) (uuid 318c618a-33f6-4eb6-9885-352ea44ff773)) + (no_connect (at 48.514 65.913) (uuid 318c618a-33f6-4eb6-9885-352ea44ff774)) + (no_connect (at 48.514 68.453) (uuid 318c618a-33f6-4eb6-9885-352ea44ff775)) + (no_connect (at 48.514 70.993) (uuid 318c618a-33f6-4eb6-9885-352ea44ff776)) + (no_connect (at 81.534 53.213) (uuid 318c618a-33f6-4eb6-9885-352ea44ff777)) + (no_connect (at 81.534 55.753) (uuid 318c618a-33f6-4eb6-9885-352ea44ff778)) + (no_connect (at 81.534 58.293) (uuid 318c618a-33f6-4eb6-9885-352ea44ff779)) + (no_connect (at 81.534 60.833) (uuid 318c618a-33f6-4eb6-9885-352ea44ff77a)) + (no_connect (at 81.534 73.533) (uuid 318c618a-33f6-4eb6-9885-352ea44ff77b)) + (no_connect (at 81.534 76.073) (uuid 318c618a-33f6-4eb6-9885-352ea44ff77c)) + (no_connect (at 81.534 78.613) (uuid 318c618a-33f6-4eb6-9885-352ea44ff77d)) + (no_connect (at 48.514 55.753) (uuid 318c618a-33f6-4eb6-9885-352ea44ff77e)) + (no_connect (at 48.514 58.293) (uuid 318c618a-33f6-4eb6-9885-352ea44ff77f)) + (no_connect (at 48.514 60.833) (uuid 318c618a-33f6-4eb6-9885-352ea44ff780)) + (no_connect (at 48.514 78.613) (uuid 318c618a-33f6-4eb6-9885-352ea44ff781)) + (no_connect (at 48.514 81.153) (uuid 318c618a-33f6-4eb6-9885-352ea44ff782)) + (no_connect (at 48.514 83.693) (uuid 318c618a-33f6-4eb6-9885-352ea44ff783)) + (no_connect (at 48.514 86.233) (uuid 318c618a-33f6-4eb6-9885-352ea44ff784)) + (no_connect (at 48.514 88.773) (uuid 318c618a-33f6-4eb6-9885-352ea44ff785)) + (no_connect (at 249.936 66.167) (uuid 7626fd58-91e2-4b7d-b12c-db700216df51)) + (no_connect (at 249.936 71.247) (uuid 7626fd58-91e2-4b7d-b12c-db700216df52)) + (no_connect (at 249.936 58.547) (uuid 7626fd58-91e2-4b7d-b12c-db700216df53)) + (no_connect (at 249.936 56.007) (uuid 7626fd58-91e2-4b7d-b12c-db700216df54)) + (no_connect (at 249.936 63.627) (uuid 7626fd58-91e2-4b7d-b12c-db700216df55)) + (no_connect (at 249.936 50.927) (uuid 7626fd58-91e2-4b7d-b12c-db700216df56)) + (no_connect (at 249.936 73.787) (uuid 7626fd58-91e2-4b7d-b12c-db700216df57)) + (no_connect (at 249.936 48.387) (uuid 8850300e-819b-453a-89c5-14e532bf111a)) + (no_connect (at 48.514 91.313) (uuid a33a2ccf-f53f-48fb-8989-8d296c70fb03)) + (no_connect (at 48.514 48.133) (uuid a61a3c07-40b9-4675-ab21-2300fa388c23)) + (no_connect (at 48.514 43.053) (uuid a61a3c07-40b9-4675-ab21-2300fa388c24)) + (no_connect (at 48.514 45.593) (uuid a61a3c07-40b9-4675-ab21-2300fa388c25)) + + (wire (pts (xy 147.955 37.592) (xy 154.178 37.592)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 04802cf1-9fdd-4937-bf05-8c560c67c367) + ) + (wire (pts (xy 61.214 96.393) (xy 63.754 96.393)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 13d2e704-8c76-42c2-86b7-8da373348c13) + ) + (wire (pts (xy 154.178 29.972) (xy 157.099 29.972)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2924441e-2797-4328-8ecd-c1b769c7574b) + ) + (wire (pts (xy 121.539 91.567) (xy 124.079 91.567)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2a1b4bd2-7e3e-4558-8b4e-e79e522b693f) + ) + (wire (pts (xy 138.176 49.149) (xy 140.843 49.149)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 391910d6-0e9f-4381-8c87-398cca9b238e) + ) + (wire (pts (xy 121.539 94.107) (xy 124.079 94.107)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3b4d03f9-db53-4c05-bddc-1e15f6691bdf) + ) + (wire (pts (xy 140.843 49.149) (xy 143.383 49.149)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3e60efbc-bada-40fc-a24f-c67e68d659f0) + ) + (wire (pts (xy 132.969 56.769) (xy 138.176 56.769)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 42169355-e1cf-4889-97f5-81c01753242a) + ) + (wire (pts (xy 138.176 56.769) (xy 140.843 56.769)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 447e0a8d-3d27-4bb1-8f2b-c02455f75ca4) + ) + (wire (pts (xy 249.936 30.607) (xy 256.413 30.607)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4757e4bd-8545-42df-9221-8173d675bb13) + ) + (wire (pts (xy 249.936 35.687) (xy 249.936 38.227)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4f23e6ee-c5cb-4108-8b2f-d1693271716d) + ) + (wire (pts (xy 121.539 96.647) (xy 124.079 96.647)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 50957eef-99a3-4895-b132-d02497823dd4) + ) + (wire (pts (xy 132.969 49.149) (xy 138.176 49.149)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 57709c7d-5abf-4932-ab08-2d1ed5969a29) + ) + (wire (pts (xy 21.463 62.357) (xy 29.083 62.357)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5b8b75b6-f8b5-4e21-8440-0aefce03e778) + ) + (wire (pts (xy 94.742 36.576) (xy 98.552 36.576)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 604b74e8-1fdf-40d0-9cfa-586e72a425d5) + ) + (wire (pts (xy 129.794 37.592) (xy 139.192 37.592)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6f2e025b-6d76-40cc-9781-105f803e7f39) + ) + (wire (pts (xy 140.843 56.769) (xy 143.383 56.769)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 703c947a-5eb6-4f68-9d59-cc2a0c14d05c) + ) + (wire (pts (xy 263.017 38.227) (xy 263.017 35.687)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 778caf42-b0db-459f-b784-707212d6de5b) + ) + (wire (pts (xy 249.936 28.067) (xy 263.017 28.067)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8378c888-7724-4486-9860-ab8245ae727c) + ) + (wire (pts (xy 63.754 96.393) (xy 66.294 96.393)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8ac07173-315b-4449-ae63-6e9e8563d3fd) + ) + (wire (pts (xy 143.383 56.769) (xy 148.463 56.769)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9366161b-c600-4aef-87ab-41d95b5a8dd1) + ) + (wire (pts (xy 129.794 29.972) (xy 131.572 29.972)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 937325cc-aa06-4b82-a633-9871435992d9) + ) + (wire (pts (xy 121.539 83.947) (xy 124.079 83.947)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9cf63ab9-f9be-49ad-9bf4-e1c7e8db9069) + ) + (wire (pts (xy 63.754 20.193) (xy 66.294 20.193)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9e0da585-daed-4502-a63f-de3f02b4d91f) + ) + (wire (pts (xy 119.761 86.487) (xy 131.699 86.487)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid aa8d8a3e-f7ae-4a1e-ac07-b14aab5e3af2) + ) + (wire (pts (xy 33.528 30.353) (xy 48.514 30.353)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b384a9ff-1a26-4d5d-84b6-35daabe8ae73) + ) + (wire (pts (xy 143.383 49.149) (xy 148.463 49.149)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bfdee0a2-1ee4-441d-8be1-84ded3f0b029) + ) + (wire (pts (xy 227.076 89.027) (xy 234.696 89.027)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c70ad631-0b9f-4711-b14e-2ba2f9c39f51) + ) + (wire (pts (xy 21.463 59.817) (xy 29.083 59.817)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d4311ab0-3c6d-43b1-aaf7-5ebfc44dea88) + ) + (wire (pts (xy 146.812 29.972) (xy 147.955 29.972)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d7459d0d-2a5e-44ec-8a0e-2007ef7385bc) + ) + (wire (pts (xy 68.834 20.193) (xy 71.374 20.193)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d74bf2c0-3014-4fad-b88c-a1b480428a74) + ) + (wire (pts (xy 147.955 29.972) (xy 154.178 29.972)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d9c85cf8-7b6e-4206-b9fb-3447c6c4a90f) + ) + (wire (pts (xy 66.294 96.393) (xy 68.834 96.393)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e3884939-6046-4fe9-8390-380fcd1e552f) + ) + (wire (pts (xy 249.936 40.767) (xy 249.936 43.307)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e42fff48-ac3e-476e-b024-e06177e8afc2) + ) + (wire (pts (xy 98.552 36.576) (xy 102.362 36.576)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid eab16920-8f71-453e-b7e1-698eddc52081) + ) + (wire (pts (xy 139.192 37.592) (xy 147.955 37.592)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ec453885-63ba-493a-8af6-5280a49dfc63) + ) + (wire (pts (xy 66.294 20.193) (xy 68.834 20.193)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f18e1b6e-bc5c-4e44-8078-553cfd15a0c0) + ) + (wire (pts (xy 256.413 38.227) (xy 263.017 38.227)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f2f7b87f-30d1-429c-97bc-9d7416957ec0) + ) + (wire (pts (xy 61.214 20.193) (xy 63.754 20.193)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f92ea254-a8a1-4875-98d6-ae0f9ce59e18) + ) + + (label "L_DETECT" (at 81.534 63.373 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 0480ef88-89ff-46f5-ba91-f2231e323839) + ) + (label "OSC_OUT" (at 102.362 28.956 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 16942ba6-ebc5-4e5c-a689-41eed5cf96a1) + ) + (label "SPI_MISO" (at 125.222 115.951 90) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 2ddecb70-154d-45f7-b042-86c320f53cd5) + ) + (label "SPI_MOSI" (at 121.539 91.567 180) + (effects (font (size 1.27 1.27)) (justify right bottom)) + (uuid 2e9d6e71-da6e-44e2-bde2-1b9b58a5c32f) + ) + (label "SPI_SCK" (at 117.602 115.951 90) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 2fbaac98-6b53-45b2-b870-8e82fb68fa22) + ) + (label "BOOT0" (at 33.528 30.353 180) + (effects (font (size 1.27 1.27)) (justify right bottom)) + (uuid 3091092b-5e11-43c1-b5b6-a3be0ae7ffbc) + ) + (label "DM" (at 249.936 35.687 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 3317b803-2384-4eff-b370-e16d094cf21b) + ) + (label "VBUS" (at 129.794 29.972 180) + (effects (font (size 1.27 1.27)) (justify right bottom)) + (uuid 47d14c70-3d2b-40b8-8203-9dfeecae6484) + ) + (label "DP" (at 255.016 47.498 180) + (effects (font (size 1.27 1.27)) (justify right bottom)) + (uuid 4cc6cd7c-a272-4d3d-8612-3b3e926882de) + ) + (label "OSC_IN" (at 48.514 35.433 180) + (effects (font (size 1.27 1.27)) (justify right bottom)) + (uuid 532e746b-3b3b-4940-b964-f1b8626957a5) + ) + (label "SPI_SCK" (at 81.534 65.913 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 54d99184-5810-4691-a3c5-a540e6cc869b) + ) + (label "L_DETECT" (at 120.142 115.951 90) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 55b7a7b0-9a04-410d-80d3-14a09b079b40) + ) + (label "SWCLK" (at 29.083 54.737 180) + (effects (font (size 1.27 1.27)) (justify right bottom)) + (uuid 576e9821-9472-464b-a727-62a1e75ffe80) + ) + (label "VBUS" (at 131.699 81.407 180) + (effects (font (size 1.27 1.27)) (justify right bottom)) + (uuid 6846f054-78ec-4c82-bd6a-993760f94270) + ) + (label "SPI_MOSI" (at 122.682 115.951 90) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 6f0720a0-ddd7-4fea-8dd6-ddcaaf98509d) + ) + (label "SPI_MISO" (at 81.534 68.453 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 7481ae00-45fc-45d5-814f-292d3161f9f8) + ) + (label "USBDM" (at 81.534 81.153 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 764b1768-f573-4713-986d-ee9d711d58bf) + ) + (label "USBDP" (at 267.716 47.498 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 86ab37f4-85d9-4e72-92c4-a5d690ec7d5b) + ) + (label "USBDM" (at 267.716 67.818 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 885c70e3-d5c5-423a-ab34-00c3129c1c31) + ) + (label "DP" (at 249.936 40.767 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 898069d3-a145-4fd0-8c63-657485f31a09) + ) + (label "NRST" (at 29.083 67.437 180) + (effects (font (size 1.27 1.27)) (justify right bottom)) + (uuid 9f4fc2ef-1b42-4d00-8848-cb7562cb4e3c) + ) + (label "USBDP" (at 81.534 83.693 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 9fa81725-b114-4cb7-a628-437c268f5c9f) + ) + (label "SWDIO" (at 29.083 57.277 180) + (effects (font (size 1.27 1.27)) (justify right bottom)) + (uuid a7687d39-6fcb-4817-bec2-7b3c08ffd30f) + ) + (label "NRST" (at 48.514 25.273 180) + (effects (font (size 1.27 1.27)) (justify right bottom)) + (uuid aae3ade9-a396-4ff8-b2b0-7c1d29ee70c2) + ) + (label "SPI_SCK" (at 121.539 96.647 180) + (effects (font (size 1.27 1.27)) (justify right bottom)) + (uuid b11cb69c-7372-4898-9aca-e8cf02a5da8a) + ) + (label "SPI_MOSI" (at 81.534 70.993 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid b3d7dd2c-e133-4d66-8217-26b899d5c430) + ) + (label "VBUS" (at 275.336 57.658 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid bde61eaf-acb5-4234-b6ca-b51569a830f3) + ) + (label "BOOT0" (at 29.083 64.897 180) + (effects (font (size 1.27 1.27)) (justify right bottom)) + (uuid c3387f93-1844-4723-9c15-45e1dd9ceda9) + ) + (label "SWCLK" (at 81.534 88.773 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid cd98b3b6-96e7-483c-a41e-a8c25a80eea4) + ) + (label "SWDIO" (at 81.534 86.233 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid cf1d9ed3-62c3-4048-887d-8c0b7db91962) + ) + (label "OSC_OUT" (at 48.514 37.973 180) + (effects (font (size 1.27 1.27)) (justify right bottom)) + (uuid d7378a64-ff44-4d1c-a6a8-39d4b1d110c2) + ) + (label "DM" (at 255.016 67.818 180) + (effects (font (size 1.27 1.27)) (justify right bottom)) + (uuid dfa98d0f-231c-4372-a87d-4689cd76e388) + ) + (label "VBUS" (at 131.699 89.027 180) + (effects (font (size 1.27 1.27)) (justify right bottom)) + (uuid e2bc3b08-a2d4-4ca2-b315-84e82e9f0f5d) + ) + (label "OSC_IN" (at 94.742 28.956 180) + (effects (font (size 1.27 1.27)) (justify right bottom)) + (uuid e3c89b24-e9e3-4716-a291-45c16a6a850f) + ) + (label "SPI_MISO" (at 121.539 94.107 180) + (effects (font (size 1.27 1.27)) (justify right bottom)) + (uuid e67e630a-8f41-483b-a829-79478e87e64d) + ) + (label "L_DETECT" (at 121.539 83.947 180) + (effects (font (size 1.27 1.27)) (justify right bottom)) + (uuid f3587180-582e-48e0-bb4f-2d3e2193c2f3) + ) + (label "VBUS" (at 249.936 22.987 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid fdce7bf9-1ff9-428c-a521-a3e1124435bb) + ) + + (symbol (lib_id "power:GND") (at 63.754 96.393 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 00432165-99bf-4e72-9af3-3ab164300e3a) + (property "Reference" "#PWR04" (id 0) (at 63.754 102.743 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GND" (id 1) (at 63.754 100.8364 0)) + (property "Footprint" "" (id 2) (at 63.754 96.393 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 63.754 96.393 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid d7dd0abc-fc86-49a4-97c3-67400d3419cc)) + ) + + (symbol (lib_id "power:GND") (at 139.192 37.592 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 014673ea-60c7-45d0-b1c1-10e3935415b3) + (property "Reference" "#PWR010" (id 0) (at 139.192 43.942 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GND" (id 1) (at 139.192 42.0354 0)) + (property "Footprint" "" (id 2) (at 139.192 37.592 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 139.192 37.592 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 86d1390a-5899-410d-be43-1338bd65739a)) + ) + + (symbol (lib_id "Device:R") (at 263.017 31.877 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 0dfec3b5-9ee1-43b4-8ea0-660a4b8bc85e) + (property "Reference" "R9" (id 0) (at 264.795 31.0423 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "510" (id 1) (at 264.795 33.5792 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (id 2) (at 261.239 31.877 90) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 263.017 31.877 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 90b0ec47-55a6-4bea-9c31-7b8426e7237c)) + (pin "2" (uuid 41c70631-34dd-46df-a691-5f047279322b)) + ) + + (symbol (lib_id "Device:R") (at 127.889 91.567 90) (unit 1) + (in_bom yes) (on_board yes) + (uuid 121a213f-cdfb-4aea-bf52-59d44a0a7800) + (property "Reference" "R3" (id 0) (at 123.825 90.551 90)) + (property "Value" "47" (id 1) (at 128.016 91.567 90)) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (id 2) (at 127.889 93.345 90) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 127.889 91.567 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid b7ce1333-9548-4b92-beba-4f425c9f2273)) + (pin "2" (uuid 3d207d2b-1bc2-4516-a316-3798e3eb8056)) + ) + + (symbol (lib_id "Connector:Conn_01x01_Male") (at 136.779 99.187 180) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 140fc51e-23e5-45dc-b9e0-9fa28189ba46) + (property "Reference" "J9" (id 0) (at 136.144 97.948 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "LGnd" (id 1) (at 136.144 97.948 0)) + (property "Footprint" "Connector_PinHeader_1.00mm:PinHeader_1x01_P1.00mm_Vertical" (id 2) (at 136.779 99.187 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 136.779 99.187 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 1b41a765-9209-408e-8437-334fb35f0231)) + ) + + (symbol (lib_id "power:GND") (at 263.017 38.227 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 153eb370-b202-4674-971f-4d10f8163e7a) + (property "Reference" "#PWR016" (id 0) (at 263.017 44.577 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GND" (id 1) (at 263.017 42.6704 0)) + (property "Footprint" "" (id 2) (at 263.017 38.227 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 263.017 38.227 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 02441760-61d3-4726-b895-f07bc4432c33)) + ) + + (symbol (lib_id "Connector:Conn_01x06_Female") (at 34.163 59.817 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 16579291-b073-4d59-83c6-28649a884cc2) + (property "Reference" "J1" (id 0) (at 31.242 52.197 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "SWD" (id 1) (at 29.718 69.596 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "Connector_PinHeader_1.00mm:PinHeader_1x06_P1.00mm_Vertical" (id 2) (at 34.163 59.817 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 34.163 59.817 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid a05b442b-6b84-4c34-91c3-3d8e49f59861)) + (pin "2" (uuid 7992bfe8-efe6-4289-900c-dbd9d15a2943)) + (pin "3" (uuid 81a2370f-309c-41df-b3b6-6717f222ae12)) + (pin "4" (uuid 3848af61-82c5-42d1-9cab-5a4fa418d748)) + (pin "5" (uuid e025eb38-7e75-4e0f-962b-a6f30434cb6e)) + (pin "6" (uuid dc540b31-b9f9-452e-aac5-d7f1ea677ae6)) + ) + + (symbol (lib_id "Device:C") (at 148.463 52.959 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 180fb451-ff0f-490a-83e3-00f571e06bfc) + (property "Reference" "C8" (id 0) (at 148.717 50.927 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "0.1" (id 1) (at 148.971 55.118 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (id 2) (at 149.4282 56.769 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 148.463 52.959 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 75825e22-7e79-48eb-85cd-a53ac3d9d5bd)) + (pin "2" (uuid 73e2cc1d-babd-4120-8823-e983f18e5c4e)) + ) + + (symbol (lib_id "Connector_Generic:Conn_01x01") (at 154.178 42.672 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 1b977903-0277-42f4-831b-439cc8c4b4b8) + (property "Reference" "J35" (id 0) (at 156.21 41.8373 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "GND" (id 1) (at 156.21 44.3742 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x01_P2.54mm_Vertical" (id 2) (at 154.178 42.672 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 154.178 42.672 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid d9c8298e-f32e-4f3a-b3ed-4810fd1dd7c4)) + ) + + (symbol (lib_id "power:+3V3") (at 140.843 49.149 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 1e998f22-9100-4283-9c02-b92a5d453037) + (property "Reference" "#PWR011" (id 0) (at 140.843 52.959 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "+3V3" (id 1) (at 140.843 45.5732 0)) + (property "Footprint" "" (id 2) (at 140.843 49.149 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 140.843 49.149 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 6b87a3b5-c279-41a6-b3ab-a41ad4c2bc04)) + ) + + (symbol (lib_id "power:+3V3") (at 71.374 20.193 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 21afcbb9-3fcd-4b90-a8fc-7679fcaa7a98) + (property "Reference" "#PWR05" (id 0) (at 71.374 24.003 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "+3V3" (id 1) (at 71.374 16.6172 0)) + (property "Footprint" "" (id 2) (at 71.374 20.193 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 71.374 20.193 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid c37eb11e-eab0-40bf-afe5-3caf8e6c0c6b)) + ) + + (symbol (lib_id "Connector:USB_C_Receptacle") (at 234.696 48.387 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 21ee908d-fe4a-49dd-81b3-865f8d36c64a) + (property "Reference" "J37" (id 0) (at 234.696 16.7472 0)) + (property "Value" "USB_C_Receptacle" (id 1) (at 234.696 19.2841 0)) + (property "Footprint" "Connector_USB:USB_C_Receptacle_HRO_TYPE-C-31-M-12" (id 2) (at 238.506 48.387 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "https://www.usb.org/sites/default/files/documents/usb_type-c.zip" (id 3) (at 238.506 48.387 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "A1" (uuid c2865160-ebe9-4ee9-82e2-a9dda9c0e193)) + (pin "A10" (uuid 01ed637c-46f7-47e5-8c9d-47cf82201839)) + (pin "A11" (uuid 46275395-5f83-4700-b0f4-e707d22775d8)) + (pin "A12" (uuid d7714b43-a878-4d39-91c5-2c450c4776fe)) + (pin "A2" (uuid 23b8a57c-24c2-4654-b107-eb2de59b9711)) + (pin "A3" (uuid 6e02e878-8381-4186-a604-4add4a1f47de)) + (pin "A4" (uuid fdcfcdc3-faa5-4b9e-b8dc-fe3bb97ce8c8)) + (pin "A5" (uuid 767a5a90-01b8-40f4-af50-211efe537071)) + (pin "A6" (uuid 53bda19a-986d-458a-a5eb-26dba3970d6c)) + (pin "A7" (uuid 79ade4a3-1beb-463d-8237-7a1bcedddc51)) + (pin "A8" (uuid a5c505f6-e2f5-406c-8db3-be1c64c5ed4b)) + (pin "A9" (uuid bb5daa4a-1d99-462c-8a5e-3e483a019463)) + (pin "B1" (uuid d6d745b4-a756-426b-ba4e-f2a97f451940)) + (pin "B10" (uuid 78fb032d-5a85-49a0-a846-b134aa5c748f)) + (pin "B11" (uuid fc74ce01-533b-421a-af0b-75d96febc9fa)) + (pin "B12" (uuid de6bd52e-729c-41f4-9dc4-76b2860a179c)) + (pin "B2" (uuid bb750e84-80a8-4abc-a29a-0555d621104a)) + (pin "B3" (uuid 3b5d0ad1-f466-4d5d-b154-66497f6a6668)) + (pin "B4" (uuid e55d6c4d-663d-460e-bd39-95cf596fb5f2)) + (pin "B5" (uuid a9062f17-13e0-4736-a3f4-5ced99dcf0c9)) + (pin "B6" (uuid 1faa2371-b6a6-4533-8f90-e77d97786d47)) + (pin "B7" (uuid c3285d3f-6eb3-4853-9c6b-195b2cc36d4a)) + (pin "B8" (uuid 68bb8189-d4b4-4ea2-a2a7-afea9eadd3fe)) + (pin "B9" (uuid 2c54036f-ba4a-4202-a9e1-ee0ac0dfcfc0)) + (pin "S1" (uuid 44b04770-8139-4713-b429-861982548886)) + ) + + (symbol (lib_id "power:GND") (at 234.696 89.027 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 24725423-b83e-40b7-921c-24a657cf186a) + (property "Reference" "#PWR014" (id 0) (at 234.696 95.377 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GND" (id 1) (at 234.696 93.4704 0)) + (property "Footprint" "" (id 2) (at 234.696 89.027 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 234.696 89.027 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid e8a1a4c1-b649-4ba7-998b-646774223284)) + ) + + (symbol (lib_id "Device:C") (at 102.362 32.766 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 25ca2f10-e30e-4c20-8cbf-700182947489) + (property "Reference" "C2" (id 0) (at 102.743 30.48 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "12" (id 1) (at 102.743 35.052 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (id 2) (at 103.3272 36.576 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 102.362 32.766 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 4c8fe2c9-94e2-40a1-b86e-8a424f3e6a17)) + (pin "2" (uuid 67065c1d-51d6-4bd7-9209-b9562d899fbb)) + ) + + (symbol (lib_id "Device:R") (at 256.413 34.417 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 2b839956-a8c9-479f-9818-2877dd954a12) + (property "Reference" "R6" (id 0) (at 258.191 33.5823 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "510" (id 1) (at 258.191 36.1192 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (id 2) (at 254.635 34.417 90) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 256.413 34.417 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 93472676-2b38-45a1-bc5f-d98c63106a2a)) + (pin "2" (uuid 16688302-9298-427b-b11f-8198b43e4ff9)) + ) + + (symbol (lib_id "Device:C") (at 129.794 33.782 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 2bd94fbe-2228-493f-9a98-9dda0f090f37) + (property "Reference" "C3" (id 0) (at 126.492 31.75 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "1u" (id 1) (at 126.492 35.687 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" (id 2) (at 130.7592 37.592 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 129.794 33.782 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid e3eb0c8b-63bc-4f9a-b1c4-ff80ebd85cbd)) + (pin "2" (uuid 1384b7fd-61b2-4f91-8b0e-2b205b70cd04)) + ) + + (symbol (lib_id "power:GND") (at 119.761 86.487 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 2d4e9afb-8f37-49a6-842f-74d729e09840) + (property "Reference" "#PWR07" (id 0) (at 119.761 92.837 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GND" (id 1) (at 123.063 88.265 0)) + (property "Footprint" "" (id 2) (at 119.761 86.487 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 119.761 86.487 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 86494c41-13a5-40d9-86fa-4bb0c27a09b7)) + ) + + (symbol (lib_id "Connector:Conn_01x01_Male") (at 136.779 83.947 180) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 32d7a2d1-54ff-4a48-a3d0-faa0089969ed) + (property "Reference" "J3" (id 0) (at 136.144 82.708 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "Ldet" (id 1) (at 136.144 82.708 0)) + (property "Footprint" "Connector_PinHeader_1.00mm:PinHeader_1x01_P1.00mm_Vertical" (id 2) (at 136.779 83.947 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 136.779 83.947 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 6dcad2c4-f72d-41aa-8fad-57d6c02010f8)) + ) + + (symbol (lib_id "Device:C") (at 143.383 52.959 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 3515863a-5d5e-40b7-88e1-292875733a09) + (property "Reference" "C6" (id 0) (at 143.637 50.927 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "0.1" (id 1) (at 143.891 55.118 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (id 2) (at 144.3482 56.769 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 143.383 52.959 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 4f1ae2c8-5ecf-423b-bc3b-7a30fea4fae0)) + (pin "2" (uuid 37392900-8e62-45f0-81ac-4bd4b7a2b53b)) + ) + + (symbol (lib_id "power:+3V3") (at 21.463 62.357 180) (unit 1) + (in_bom yes) (on_board yes) + (uuid 3dd2ec4b-ea9e-4d6c-935c-1c930666ff92) + (property "Reference" "#PWR02" (id 0) (at 21.463 58.547 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "+3V3" (id 1) (at 15.113 63.754 0) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 21.463 62.357 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 21.463 62.357 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 8347ff27-baef-4328-a57f-581a4eda2d86)) + ) + + (symbol (lib_id "Connector:Conn_01x01_Male") (at 136.779 96.647 180) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 409c86f7-616a-42f7-8a1a-16e91abd4f8c) + (property "Reference" "J8" (id 0) (at 136.144 95.408 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "SCK" (id 1) (at 136.144 95.408 0)) + (property "Footprint" "Connector_PinHeader_1.00mm:PinHeader_1x01_P1.00mm_Vertical" (id 2) (at 136.779 96.647 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 136.779 96.647 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 0b25b0d0-1ff0-4a76-a43f-a20bbd6f5f72)) + ) + + (symbol (lib_id "Device:C") (at 138.176 52.959 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 466efb6f-3511-4886-aa6b-8ff075074793) + (property "Reference" "C5" (id 0) (at 138.43 50.927 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "0.1" (id 1) (at 138.684 55.118 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (id 2) (at 139.1412 56.769 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 138.176 52.959 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 8f451dfd-bdad-475c-be3a-b87507c7f0fc)) + (pin "2" (uuid e30db2c7-2b75-44a3-bb51-267ca7bff182)) + ) + + (symbol (lib_id "Connector:Conn_01x01_Male") (at 136.779 86.487 180) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 4c06ffc7-8a67-444f-9554-d5e5a37b4824) + (property "Reference" "J4" (id 0) (at 136.144 85.248 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "PGnd" (id 1) (at 136.144 85.248 0)) + (property "Footprint" "Connector_PinHeader_1.00mm:PinHeader_1x01_P1.00mm_Vertical" (id 2) (at 136.779 86.487 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 136.779 86.487 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 9aa3632a-20bc-4a9f-ab4d-841b114f671c)) + ) + + (symbol (lib_id "power:GND") (at 98.552 36.576 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 596dab5f-dc2b-4882-8561-4759bc0e2cf7) + (property "Reference" "#PWR06" (id 0) (at 98.552 42.926 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GND" (id 1) (at 98.552 41.0194 0)) + (property "Footprint" "" (id 2) (at 98.552 36.576 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 98.552 36.576 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 035ac079-f950-49ab-a6ec-6bc609f2db6d)) + ) + + (symbol (lib_id "Connector_Generic:Conn_01x01") (at 129.794 24.892 90) (unit 1) + (in_bom yes) (on_board yes) + (uuid 6349f82f-82b6-43d6-944a-a7afada78839) + (property "Reference" "J26" (id 0) (at 131.826 24.0573 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "5v" (id 1) (at 127.762 22.352 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x01_P2.54mm_Vertical" (id 2) (at 129.794 24.892 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 129.794 24.892 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 61cb3a26-ad56-45a2-a421-30d796b5280b)) + ) + + (symbol (lib_id "Device:C") (at 132.969 52.959 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 67eae42b-90fb-4b31-b425-042b6627da6e) + (property "Reference" "C4" (id 0) (at 133.223 50.927 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "0.1" (id 1) (at 133.477 55.118 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (id 2) (at 133.9342 56.769 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 132.969 52.959 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid c0243daa-5a60-4351-b73a-b5300be9923a)) + (pin "2" (uuid cb1ca2ba-7ec3-4f1b-87e4-4de4ac6e1877)) + ) + + (symbol (lib_id "Connector:Conn_01x01_Male") (at 136.779 94.107 180) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 69811119-25b3-423f-abd3-df6254459d41) + (property "Reference" "J7" (id 0) (at 136.144 92.868 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "MISO" (id 1) (at 136.144 92.868 0)) + (property "Footprint" "Connector_PinHeader_1.00mm:PinHeader_1x01_P1.00mm_Vertical" (id 2) (at 136.779 94.107 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 136.779 94.107 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 5801f440-ac47-4145-9fd1-59641b39d8c0)) + ) + + (symbol (lib_id "Device:C_Polarized") (at 154.178 33.782 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 6bdc4a6d-32b7-493b-a89e-1ce991d959b7) + (property "Reference" "C9" (id 0) (at 154.813 31.623 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "47u" (id 1) (at 154.559 36.322 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "Capacitor_Tantalum_SMD:CP_EIA-6032-28_Kemet-C_Pad2.25x2.35mm_HandSolder" (id 2) (at 155.1432 37.592 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 154.178 33.782 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 43ae0860-8d11-4d86-a9b9-78ad6fa39bfa)) + (pin "2" (uuid d41de998-68a3-4d88-9737-c605cdf1954d)) + ) + + (symbol (lib_id "Device:R") (at 33.528 34.163 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 71029f1b-9e82-43c9-b0c4-8af7065673fe) + (property "Reference" "R1" (id 0) (at 35.306 33.3283 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "10k" (id 1) (at 35.306 35.8652 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (id 2) (at 31.75 34.163 90) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 33.528 34.163 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 1d08b6a4-6f26-4b4c-be33-7faece460654)) + (pin "2" (uuid eacb7c4f-9808-4f44-91f9-3bcaed541351)) + ) + + (symbol (lib_id "Device:C") (at 94.742 32.766 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 78d9bd94-3b9a-4d2a-9c27-c73709b0381f) + (property "Reference" "C1" (id 0) (at 91.948 30.607 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "12" (id 1) (at 91.567 35.052 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (id 2) (at 95.7072 36.576 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 94.742 32.766 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 9383a95b-1f82-4900-98cf-20e419968d6a)) + (pin "2" (uuid 137db42e-a50c-4425-8b11-c685797960f7)) + ) + + (symbol (lib_id "Device:R") (at 258.826 47.498 90) (unit 1) + (in_bom yes) (on_board yes) + (uuid 85dfcd72-2976-4d87-9959-5aebbe7e8fe1) + (property "Reference" "R7" (id 0) (at 258.826 45.466 90)) + (property "Value" "22" (id 1) (at 258.826 47.498 90)) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (id 2) (at 258.826 49.276 90) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 258.826 47.498 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 9b249158-717c-48fc-9150-1eeba69a16d4)) + (pin "2" (uuid 479c62dc-c67a-4a88-acae-319c3c0e464c)) + ) + + (symbol (lib_id "Device:R") (at 127.889 94.107 90) (unit 1) + (in_bom yes) (on_board yes) + (uuid 9217dde9-d89c-4615-8229-7f9ead33abfa) + (property "Reference" "R4" (id 0) (at 123.952 93.218 90)) + (property "Value" "47" (id 1) (at 128.016 94.107 90)) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (id 2) (at 127.889 95.885 90) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 127.889 94.107 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 1e346398-ad79-4997-9149-8be5ab658446)) + (pin "2" (uuid 97a80c4f-2e76-44c1-8832-c98ec5878dd2)) + ) + + (symbol (lib_id "power:GND") (at 33.528 37.973 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 969eee88-c463-471d-831e-c00079670353) + (property "Reference" "#PWR03" (id 0) (at 33.528 44.323 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GND" (id 1) (at 33.528 42.4164 0)) + (property "Footprint" "" (id 2) (at 33.528 37.973 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 33.528 37.973 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 361d278e-c2f6-4985-bed8-62ae1e388aac)) + ) + + (symbol (lib_id "power:+3V3") (at 157.099 29.972 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 99492a53-1252-4482-bd15-fdb637127d00) + (property "Reference" "#PWR013" (id 0) (at 157.099 33.782 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "+3V3" (id 1) (at 157.099 26.3962 0)) + (property "Footprint" "" (id 2) (at 157.099 29.972 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 157.099 29.972 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid f6cf5d9c-0054-4fb4-b8fd-468016267060)) + ) + + (symbol (lib_id "Regulator_Linear:LM1117-3.3") (at 139.192 29.972 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 9e5de5a9-9057-4f24-8b18-5f41b1ffd187) + (property "Reference" "U2" (id 0) (at 139.192 24.3672 0)) + (property "Value" "LM1117-3.3" (id 1) (at 139.192 26.9041 0)) + (property "Footprint" "Package_TO_SOT_SMD:SOT-223-3_TabPin2" (id 2) (at 139.192 29.972 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "http://www.ti.com/lit/ds/symlink/lm1117.pdf" (id 3) (at 139.192 29.972 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid d34365a5-fef1-4961-a77e-aaaa66f88d12)) + (pin "2" (uuid bd0d6dd4-2525-4c27-98e0-56c5098cb09b)) + (pin "3" (uuid 4b3cead8-e778-43f1-bc23-9358845f9193)) + ) + + (symbol (lib_id "Device:R") (at 127.889 96.647 90) (unit 1) + (in_bom yes) (on_board yes) + (uuid a00fd4d5-29d5-49d2-891f-56b660f25b55) + (property "Reference" "R5" (id 0) (at 123.825 95.631 90)) + (property "Value" "47" (id 1) (at 128.016 96.647 90)) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (id 2) (at 127.889 98.425 90) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 127.889 96.647 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid c9f29253-9364-4d57-851f-0bbaa9212675)) + (pin "2" (uuid 639fc6fd-d3b0-4008-b218-9aff71444221)) + ) + + (symbol (lib_id "Connector:Conn_01x01_Male") (at 136.779 81.407 180) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid a5775530-a18e-4f83-8d4f-2a5a128645d7) + (property "Reference" "J2" (id 0) (at 136.144 80.168 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "PV" (id 1) (at 136.144 80.168 0)) + (property "Footprint" "Connector_PinHeader_1.00mm:PinHeader_1x01_P1.00mm_Vertical" (id 2) (at 136.779 81.407 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 136.779 81.407 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 5fa677dd-b828-4178-b074-16f9c89176e9)) + ) + + (symbol (lib_id "MCU_ST_STM32F1:STM32F103C6Tx") (at 66.294 58.293 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid a7aad451-d177-4036-941b-7ff8e9fd7d3a) + (property "Reference" "U1" (id 0) (at 65.024 49.911 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "STM32F103C6Tx" (id 1) (at 58.547 56.769 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "Package_QFP:LQFP-48_7x7mm_P0.5mm" (id 2) (at 51.054 93.853 0) + (effects (font (size 1.27 1.27)) (justify right) hide) + ) + (property "Datasheet" "http://www.st.com/st-web-ui/static/active/en/resource/technical/document/datasheet/CD00210843.pdf" (id 3) (at 66.294 58.293 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 4b0da5c1-54ee-4cb5-affa-cd27859c7169)) + (pin "10" (uuid 762545be-4368-42d6-89f8-21e34540e88e)) + (pin "11" (uuid 0fafcc84-57b1-4558-9eb5-c7012031a415)) + (pin "12" (uuid 08e76854-ffa8-4921-a1bc-2f0928b7c112)) + (pin "13" (uuid e8626566-941a-4bc4-b5b0-7d446b6db8f7)) + (pin "14" (uuid 9a3220ba-a419-4aa9-a70d-1b49601cd381)) + (pin "15" (uuid 892ee0a1-11b4-404d-89d9-4d76947bbdd6)) + (pin "16" (uuid 0f70476b-f233-4c11-af92-640b159d6658)) + (pin "17" (uuid 1991a5c3-c03f-4b7b-ab19-e3e26c05cc2d)) + (pin "18" (uuid 3f49f24f-55bd-4d47-8265-5ccd5e0873cf)) + (pin "19" (uuid d8275366-8326-493f-9979-e9c3fd91bf7b)) + (pin "2" (uuid cbae19e6-071e-4fed-bf39-001567d78558)) + (pin "20" (uuid b7c8afc2-e4f4-4644-b5c3-56196e647600)) + (pin "21" (uuid 61ede6b7-6c6c-4f25-81c6-097590016be7)) + (pin "22" (uuid 43c53061-cb03-421e-9b7a-0f70b5d7e1ca)) + (pin "23" (uuid c3ded964-2175-4516-85fa-6f43095d90ee)) + (pin "24" (uuid b8dc1103-17ad-4624-8237-586ebde3f024)) + (pin "25" (uuid 45212eda-27e6-4be0-9b26-18c0a4ffecc2)) + (pin "26" (uuid 523c4a78-4232-4601-911f-d71724f69c6d)) + (pin "27" (uuid 80066457-2f02-45e9-aa7b-5a61c4234dd7)) + (pin "28" (uuid 25a78ee7-5e7c-4017-9142-02478a55581a)) + (pin "29" (uuid 86c9d277-b683-4ce5-bdc9-6ba98964d836)) + (pin "3" (uuid 4af57e50-aab9-4afe-b449-faa8cc971289)) + (pin "30" (uuid c21f8953-1675-4f36-8177-78ece4556da8)) + (pin "31" (uuid c9a796ef-06ef-479b-82ed-b4b0d12685bf)) + (pin "32" (uuid 6365d80a-f5cb-4d6d-8383-77526cc7fb73)) + (pin "33" (uuid dbff310c-03ef-4fdb-b4d9-cb5b652be8c5)) + (pin "34" (uuid 4d11f75c-4d65-4364-a449-9a7ccee9812f)) + (pin "35" (uuid 298c23ea-50c2-4031-8bbb-5477b521f209)) + (pin "36" (uuid 124adfbb-41cd-4424-add0-7ce840063f61)) + (pin "37" (uuid e01e3f1c-ca43-40b3-8629-817856c20b13)) + (pin "38" (uuid c9ee3f85-f7be-4070-9e22-9b8f779bd7fc)) + (pin "39" (uuid 1668cca7-e2a2-4398-b9e6-8d7a06a0d00b)) + (pin "4" (uuid a615e2ff-254b-417f-88d5-a69164e2b990)) + (pin "40" (uuid 48d4111a-4950-4a1e-832f-fbcdaa3fb8a7)) + (pin "41" (uuid 4bada511-549f-45b9-a752-ff57cc3e91b5)) + (pin "42" (uuid 91dc9600-a669-4099-8e3d-c1fc0734070b)) + (pin "43" (uuid 5ca6a30a-1739-42b7-b3e4-de6cd634b7e6)) + (pin "44" (uuid bfe5b1c3-ce52-4f57-8de2-0827b90cd7cc)) + (pin "45" (uuid 560384f3-9061-44f8-8af9-b845c9495b39)) + (pin "46" (uuid 54aca346-c3a6-435f-aa3a-5d7f12f61933)) + (pin "47" (uuid 054eb9f1-1932-4f6b-bb5a-37891e300ba4)) + (pin "48" (uuid 9f82d3a9-283a-4ed3-a1bc-7479326becf2)) + (pin "5" (uuid 905091ea-e192-475a-93a3-db8c58cbc6dc)) + (pin "6" (uuid c29a93ba-bb31-4f38-833a-74f119a7f7cd)) + (pin "7" (uuid dec0e04a-254e-4dbb-b625-c56204a60113)) + (pin "8" (uuid f4786f4e-4491-4369-9cf1-89d673572d44)) + (pin "9" (uuid 664b84ff-4187-42cb-961d-f29f5281689d)) + ) + + (symbol (lib_id "Connector:Conn_01x01_Male") (at 136.779 91.567 180) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid aae008f9-f910-4c20-a329-804cd75c2034) + (property "Reference" "J6" (id 0) (at 136.144 90.328 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "MOSI" (id 1) (at 136.144 90.328 0)) + (property "Footprint" "Connector_PinHeader_1.00mm:PinHeader_1x01_P1.00mm_Vertical" (id 2) (at 136.779 91.567 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 136.779 91.567 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 636b3a91-a90f-4b11-9a2d-e3d8e2fc418b)) + ) + + (symbol (lib_id "power:PWR_FLAG") (at 263.017 38.227 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid acc23618-aa54-4904-a9f4-185676919394) + (property "Reference" "#FLG0101" (id 0) (at 264.922 38.227 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "PWR_FLAG" (id 1) (at 266.5928 38.227 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Footprint" "" (id 2) (at 263.017 38.227 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 263.017 38.227 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 9a14110c-eb81-4dbc-8f48-8c4900f217e6)) + ) + + (symbol (lib_id "Device:Crystal") (at 98.552 28.956 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid afdd32fa-80f9-46b7-be8f-c9e80564697b) + (property "Reference" "Y1" (id 0) (at 98.552 22.6908 0)) + (property "Value" "8MHz" (id 1) (at 98.552 25.2277 0)) + (property "Footprint" "Crystal:Crystal_HC49-U_Vertical" (id 2) (at 98.552 28.956 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 98.552 28.956 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 16553543-6e17-4db6-88b9-607f4f6a7629)) + (pin "2" (uuid 04a61ffc-7e3c-4f7e-b56e-4a37ddda3f0f)) + ) + + (symbol (lib_id "Connector:Conn_01x01_Male") (at 136.779 89.027 180) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid b4f88c82-2497-4a01-ba33-1e43542836b5) + (property "Reference" "J5" (id 0) (at 136.144 87.788 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "LV" (id 1) (at 136.144 87.788 0)) + (property "Footprint" "Connector_PinHeader_1.00mm:PinHeader_1x01_P1.00mm_Vertical" (id 2) (at 136.779 89.027 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 136.779 89.027 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 0d116518-e526-459d-8eda-dd49f4fa2325)) + ) + + (symbol (lib_id "power:GND") (at 131.699 99.187 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid b75a8be4-9d93-4774-b3ee-7b1fc26dbf38) + (property "Reference" "#PWR09" (id 0) (at 131.699 105.537 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GND" (id 1) (at 131.699 103.6304 0)) + (property "Footprint" "" (id 2) (at 131.699 99.187 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 131.699 99.187 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid b9a0d4d7-37d1-4440-a91b-4f9bce4d6fd3)) + ) + + (symbol (lib_id "Device:R") (at 127.889 83.947 90) (unit 1) + (in_bom yes) (on_board yes) + (uuid b81e87a6-cb9e-44dc-8481-c7c1fb38aaff) + (property "Reference" "R2" (id 0) (at 123.952 82.55 90)) + (property "Value" "47" (id 1) (at 128.016 83.947 90)) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (id 2) (at 127.889 85.725 90) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 127.889 83.947 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 854167cf-a580-48a4-b104-38cce1f55a26)) + (pin "2" (uuid 985529df-6800-482c-9299-a9bb01d155d8)) + ) + + (symbol (lib_id "Connector_Generic:Conn_01x01") (at 162.179 29.972 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid bcf13481-a81d-4e80-9be1-276c076c9541) + (property "Reference" "J36" (id 0) (at 164.211 29.1373 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "3v3" (id 1) (at 164.211 31.6742 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x01_P2.54mm_Vertical" (id 2) (at 162.179 29.972 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 162.179 29.972 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 8a7c6b11-3f99-4323-be81-725a03f6d3a2)) + ) + + (symbol (lib_id "Power_Protection:USBLC6-2SC6") (at 265.176 57.658 270) (unit 1) + (in_bom yes) (on_board yes) + (uuid e1306b3c-a04a-4852-b196-c787de28ca15) + (property "Reference" "U3" (id 0) (at 274.32 51.181 90)) + (property "Value" "USBLC6-2SC6" (id 1) (at 276.098 48.387 90)) + (property "Footprint" "Package_TO_SOT_SMD:SOT-23-6_Handsoldering" (id 2) (at 252.476 57.658 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "https://www.st.com/resource/en/datasheet/usblc6-2.pdf" (id 3) (at 274.066 62.738 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 3ceea69d-abe4-42de-bfa9-c671d2e42396)) + (pin "2" (uuid f73edc6d-521f-41e1-be6d-ee905fc6c496)) + (pin "3" (uuid 1243e09b-1bf5-47c0-9809-11a5aaff063d)) + (pin "4" (uuid df38587b-edf9-47ae-a5ad-fb50ef02af36)) + (pin "5" (uuid a6842aa3-1827-4fc6-a89e-4dd51b35cf13)) + (pin "6" (uuid 8d8708c6-163a-4738-9bc7-2968c15465a4)) + ) + + (symbol (lib_id "power:GND") (at 21.463 59.817 180) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid e15bd5de-9d10-47e7-91cb-528b9058c4e7) + (property "Reference" "#PWR01" (id 0) (at 21.463 53.467 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GND" (id 1) (at 23.368 58.9808 0) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 21.463 59.817 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 21.463 59.817 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid dd34682f-6d74-4499-90a5-92a2bbaef862)) + ) + + (symbol (lib_id "power:GND") (at 120.142 126.111 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid e1c8d233-900c-467a-9ba7-997a27ab6999) + (property "Reference" "#PWR08" (id 0) (at 120.142 132.461 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GND" (id 1) (at 120.142 130.5544 0)) + (property "Footprint" "" (id 2) (at 120.142 126.111 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 120.142 126.111 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid cdad4cf3-5ad9-4676-90b3-262898cb618e)) + ) + + (symbol (lib_id "power:GND") (at 140.843 56.769 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ebf9b254-1406-4490-b041-f017210fc844) + (property "Reference" "#PWR012" (id 0) (at 140.843 63.119 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GND" (id 1) (at 140.843 61.2124 0)) + (property "Footprint" "" (id 2) (at 140.843 56.769 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 140.843 56.769 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 1d48e551-05dd-41ed-90b4-dae7bb628b16)) + ) + + (symbol (lib_id "power:PWR_FLAG") (at 249.936 22.987 180) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ed0c03f2-cadc-4595-aa57-9ed267beb3d4) + (property "Reference" "#FLG0102" (id 0) (at 249.936 24.892 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "PWR_FLAG" (id 1) (at 249.936 26.5628 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Footprint" "" (id 2) (at 249.936 22.987 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 249.936 22.987 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid a07997c4-bb0f-46f6-8aec-d5890f4b0b86)) + ) + + (symbol (lib_id "power:GND") (at 255.016 57.658 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ed33e386-80cb-4c54-8a5f-64c1bcf2f946) + (property "Reference" "#PWR015" (id 0) (at 255.016 64.008 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GND" (id 1) (at 255.016 62.1014 0)) + (property "Footprint" "" (id 2) (at 255.016 57.658 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 255.016 57.658 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid de34b2ac-bfc4-41ee-84c8-5bf509cf8377)) + ) + + (symbol (lib_id "Device:R") (at 258.826 67.818 90) (unit 1) + (in_bom yes) (on_board yes) + (uuid f37e605d-c65e-40ed-8644-00a3f2965639) + (property "Reference" "R8" (id 0) (at 258.826 69.977 90)) + (property "Value" "22" (id 1) (at 258.826 67.818 90)) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (id 2) (at 258.826 69.596 90) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 258.826 67.818 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid a21a84af-89a7-4b06-860d-6623c7b6f3b4)) + (pin "2" (uuid 8b3ada85-02e4-4855-8d25-0d429535748f)) + ) + + (symbol (lib_id "Power_Protection:SP0504BAHT") (at 120.142 121.031 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid f9bf607f-8273-4efa-a9e3-322680fea5e5) + (property "Reference" "D1" (id 0) (at 127.889 120.1963 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "SP0504BAHT" (id 1) (at 127.889 122.7332 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "Package_TO_SOT_SMD:SOT-23-5" (id 2) (at 127.762 122.301 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Datasheet" "http://www.littelfuse.com/~/media/files/littelfuse/technical%20resources/documents/data%20sheets/sp05xxba.pdf" (id 3) (at 123.317 117.856 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "2" (uuid 1d29f5b0-bb4d-4a8b-8514-32e022c5dd8b)) + (pin "1" (uuid 5bd71338-7402-458e-a659-19757f96e943)) + (pin "3" (uuid ded60d65-317d-4de5-85a3-08c84a5370b7)) + (pin "4" (uuid 0cbdd60e-e81e-40f8-899a-864b794bc76d)) + (pin "5" (uuid 92536a2c-68e4-4934-b062-03f388254f2e)) + ) + + (symbol (lib_id "Device:C") (at 147.955 33.782 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid fa43fae7-8849-4384-9c67-967abf4b3ed9) + (property "Reference" "C7" (id 0) (at 148.336 31.75 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "0.1" (id 1) (at 148.463 35.941 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (id 2) (at 148.9202 37.592 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 147.955 33.782 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid af76e81d-16cc-4537-a7ce-fd32627dc353)) + (pin "2" (uuid 276d74d0-438d-4b79-b41d-d0c6fcea4656)) + ) + + (sheet_instances + (path "/" (page "1")) + ) + + (symbol_instances + (path "/acc23618-aa54-4904-a9f4-185676919394" + (reference "#FLG0101") (unit 1) (value "PWR_FLAG") (footprint "") + ) + (path "/ed0c03f2-cadc-4595-aa57-9ed267beb3d4" + (reference "#FLG0102") (unit 1) (value "PWR_FLAG") (footprint "") + ) + (path "/e15bd5de-9d10-47e7-91cb-528b9058c4e7" + (reference "#PWR01") (unit 1) (value "GND") (footprint "") + ) + (path "/3dd2ec4b-ea9e-4d6c-935c-1c930666ff92" + (reference "#PWR02") (unit 1) (value "+3V3") (footprint "") + ) + (path "/969eee88-c463-471d-831e-c00079670353" + (reference "#PWR03") (unit 1) (value "GND") (footprint "") + ) + (path "/00432165-99bf-4e72-9af3-3ab164300e3a" + (reference "#PWR04") (unit 1) (value "GND") (footprint "") + ) + (path "/21afcbb9-3fcd-4b90-a8fc-7679fcaa7a98" + (reference "#PWR05") (unit 1) (value "+3V3") (footprint "") + ) + (path "/596dab5f-dc2b-4882-8561-4759bc0e2cf7" + (reference "#PWR06") (unit 1) (value "GND") (footprint "") + ) + (path "/2d4e9afb-8f37-49a6-842f-74d729e09840" + (reference "#PWR07") (unit 1) (value "GND") (footprint "") + ) + (path "/e1c8d233-900c-467a-9ba7-997a27ab6999" + (reference "#PWR08") (unit 1) (value "GND") (footprint "") + ) + (path "/b75a8be4-9d93-4774-b3ee-7b1fc26dbf38" + (reference "#PWR09") (unit 1) (value "GND") (footprint "") + ) + (path "/014673ea-60c7-45d0-b1c1-10e3935415b3" + (reference "#PWR010") (unit 1) (value "GND") (footprint "") + ) + (path "/1e998f22-9100-4283-9c02-b92a5d453037" + (reference "#PWR011") (unit 1) (value "+3V3") (footprint "") + ) + (path "/ebf9b254-1406-4490-b041-f017210fc844" + (reference "#PWR012") (unit 1) (value "GND") (footprint "") + ) + (path "/99492a53-1252-4482-bd15-fdb637127d00" + (reference "#PWR013") (unit 1) (value "+3V3") (footprint "") + ) + (path "/24725423-b83e-40b7-921c-24a657cf186a" + (reference "#PWR014") (unit 1) (value "GND") (footprint "") + ) + (path "/ed33e386-80cb-4c54-8a5f-64c1bcf2f946" + (reference "#PWR015") (unit 1) (value "GND") (footprint "") + ) + (path "/153eb370-b202-4674-971f-4d10f8163e7a" + (reference "#PWR016") (unit 1) (value "GND") (footprint "") + ) + (path "/78d9bd94-3b9a-4d2a-9c27-c73709b0381f" + (reference "C1") (unit 1) (value "12") (footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder") + ) + (path "/25ca2f10-e30e-4c20-8cbf-700182947489" + (reference "C2") (unit 1) (value "12") (footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder") + ) + (path "/2bd94fbe-2228-493f-9a98-9dda0f090f37" + (reference "C3") (unit 1) (value "1u") (footprint "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder") + ) + (path "/67eae42b-90fb-4b31-b425-042b6627da6e" + (reference "C4") (unit 1) (value "0.1") (footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder") + ) + (path "/466efb6f-3511-4886-aa6b-8ff075074793" + (reference "C5") (unit 1) (value "0.1") (footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder") + ) + (path "/3515863a-5d5e-40b7-88e1-292875733a09" + (reference "C6") (unit 1) (value "0.1") (footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder") + ) + (path "/fa43fae7-8849-4384-9c67-967abf4b3ed9" + (reference "C7") (unit 1) (value "0.1") (footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder") + ) + (path "/180fb451-ff0f-490a-83e3-00f571e06bfc" + (reference "C8") (unit 1) (value "0.1") (footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder") + ) + (path "/6bdc4a6d-32b7-493b-a89e-1ce991d959b7" + (reference "C9") (unit 1) (value "47u") (footprint "Capacitor_Tantalum_SMD:CP_EIA-6032-28_Kemet-C_Pad2.25x2.35mm_HandSolder") + ) + (path "/f9bf607f-8273-4efa-a9e3-322680fea5e5" + (reference "D1") (unit 1) (value "SP0504BAHT") (footprint "Package_TO_SOT_SMD:SOT-23-5") + ) + (path "/16579291-b073-4d59-83c6-28649a884cc2" + (reference "J1") (unit 1) (value "SWD") (footprint "Connector_PinHeader_1.00mm:PinHeader_1x06_P1.00mm_Vertical") + ) + (path "/a5775530-a18e-4f83-8d4f-2a5a128645d7" + (reference "J2") (unit 1) (value "PV") (footprint "Connector_PinHeader_1.00mm:PinHeader_1x01_P1.00mm_Vertical") + ) + (path "/32d7a2d1-54ff-4a48-a3d0-faa0089969ed" + (reference "J3") (unit 1) (value "Ldet") (footprint "Connector_PinHeader_1.00mm:PinHeader_1x01_P1.00mm_Vertical") + ) + (path "/4c06ffc7-8a67-444f-9554-d5e5a37b4824" + (reference "J4") (unit 1) (value "PGnd") (footprint "Connector_PinHeader_1.00mm:PinHeader_1x01_P1.00mm_Vertical") + ) + (path "/b4f88c82-2497-4a01-ba33-1e43542836b5" + (reference "J5") (unit 1) (value "LV") (footprint "Connector_PinHeader_1.00mm:PinHeader_1x01_P1.00mm_Vertical") + ) + (path "/aae008f9-f910-4c20-a329-804cd75c2034" + (reference "J6") (unit 1) (value "MOSI") (footprint "Connector_PinHeader_1.00mm:PinHeader_1x01_P1.00mm_Vertical") + ) + (path "/69811119-25b3-423f-abd3-df6254459d41" + (reference "J7") (unit 1) (value "MISO") (footprint "Connector_PinHeader_1.00mm:PinHeader_1x01_P1.00mm_Vertical") + ) + (path "/409c86f7-616a-42f7-8a1a-16e91abd4f8c" + (reference "J8") (unit 1) (value "SCK") (footprint "Connector_PinHeader_1.00mm:PinHeader_1x01_P1.00mm_Vertical") + ) + (path "/140fc51e-23e5-45dc-b9e0-9fa28189ba46" + (reference "J9") (unit 1) (value "LGnd") (footprint "Connector_PinHeader_1.00mm:PinHeader_1x01_P1.00mm_Vertical") + ) + (path "/6349f82f-82b6-43d6-944a-a7afada78839" + (reference "J26") (unit 1) (value "5v") (footprint "Connector_PinHeader_2.54mm:PinHeader_1x01_P2.54mm_Vertical") + ) + (path "/1b977903-0277-42f4-831b-439cc8c4b4b8" + (reference "J35") (unit 1) (value "GND") (footprint "Connector_PinHeader_2.54mm:PinHeader_1x01_P2.54mm_Vertical") + ) + (path "/bcf13481-a81d-4e80-9be1-276c076c9541" + (reference "J36") (unit 1) (value "3v3") (footprint "Connector_PinHeader_2.54mm:PinHeader_1x01_P2.54mm_Vertical") + ) + (path "/21ee908d-fe4a-49dd-81b3-865f8d36c64a" + (reference "J37") (unit 1) (value "USB_C_Receptacle") (footprint "Connector_USB:USB_C_Receptacle_HRO_TYPE-C-31-M-12") + ) + (path "/71029f1b-9e82-43c9-b0c4-8af7065673fe" + (reference "R1") (unit 1) (value "10k") (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder") + ) + (path "/b81e87a6-cb9e-44dc-8481-c7c1fb38aaff" + (reference "R2") (unit 1) (value "47") (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder") + ) + (path "/121a213f-cdfb-4aea-bf52-59d44a0a7800" + (reference "R3") (unit 1) (value "47") (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder") + ) + (path "/9217dde9-d89c-4615-8229-7f9ead33abfa" + (reference "R4") (unit 1) (value "47") (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder") + ) + (path "/a00fd4d5-29d5-49d2-891f-56b660f25b55" + (reference "R5") (unit 1) (value "47") (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder") + ) + (path "/2b839956-a8c9-479f-9818-2877dd954a12" + (reference "R6") (unit 1) (value "510") (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder") + ) + (path "/85dfcd72-2976-4d87-9959-5aebbe7e8fe1" + (reference "R7") (unit 1) (value "22") (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder") + ) + (path "/f37e605d-c65e-40ed-8644-00a3f2965639" + (reference "R8") (unit 1) (value "22") (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder") + ) + (path "/0dfec3b5-9ee1-43b4-8ea0-660a4b8bc85e" + (reference "R9") (unit 1) (value "510") (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder") + ) + (path "/a7aad451-d177-4036-941b-7ff8e9fd7d3a" + (reference "U1") (unit 1) (value "STM32F103C6Tx") (footprint "Package_QFP:LQFP-48_7x7mm_P0.5mm") + ) + (path "/9e5de5a9-9057-4f24-8b18-5f41b1ffd187" + (reference "U2") (unit 1) (value "LM1117-3.3") (footprint "Package_TO_SOT_SMD:SOT-223-3_TabPin2") + ) + (path "/e1306b3c-a04a-4852-b196-c787de28ca15" + (reference "U3") (unit 1) (value "USBLC6-2SC6") (footprint "Package_TO_SOT_SMD:SOT-23-6_Handsoldering") + ) + (path "/afdd32fa-80f9-46b7-be8f-c9e80564697b" + (reference "Y1") (unit 1) (value "8MHz") (footprint "Crystal:Crystal_HC49-U_Vertical") + ) + ) +) diff --git a/F1:F103/Canon_managing_device/kicad/Canon_manage/fp-info-cache b/F1:F103/Canon_managing_device/kicad/Canon_manage/fp-info-cache new file mode 100644 index 0000000..b8af0d8 --- /dev/null +++ b/F1:F103/Canon_managing_device/kicad/Canon_manage/fp-info-cache @@ -0,0 +1,85989 @@ +20346418735116473 +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_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_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_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_DPDT +E-Switch sub miniature slide switch, EG series, DPDT, http://spec_sheets.e-switch.com/specs/P040047.pdf +switch DPDT +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_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://www.mspindy.com/specifications/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-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 +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_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 +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_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_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), horizontal PCB mount, https://www.neutrik.com/en/product/nc4mafh-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), horizontal PCB mount, https://www.neutrik.com/en/product/nc4mamh-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_NLJ2MD-H_Horizontal +speakON Combo, 2 pole combination of speakON socket and 6.35mm (1/4in) jack receptacle, horizontal pcb mount, https://www.neutrik.com/en/product/nlj2md-h +neutrik speakon combo +0 +2 +2 +Connector_Audio +Jack_speakON-6.35mm_Neutrik_NLJ2MD-V_Vertical +speakON Combo, 2 pole combination of speakON socket and 6.35mm (1/4in) jack receptacle, vertical pcb mount, https://www.neutrik.com/en/product/nlj2md-v +neutrik speakon combo +0 +2 +2 +Connector_Audio +Jack_speakON_Neutrik_NL2MD-H_Horizontal +speakON Chassis Connectors, 2 pole chassis connector, gray D-size flange, countersunk thru holes, horizontal PCB, https://www.neutrik.com/en/product/nl2md-h +neutrik speakon +0 +2 +2 +Connector_Audio +Jack_speakON_Neutrik_NL2MD-V_Vertical +speakON Chassis Connectors, 2 pole chassis connector, black D-size flange, countersunk thru holes, vertical PCB mount, https://www.neutrik.com/en/product/nl2md-v +neutrik speakon +0 +2 +2 +Connector_Audio +Jack_speakON_Neutrik_NL4MD-H-1_Horizontal +speakON Chassis Connectors, 4 pole chassis connector, black D-size flange, countersunk thru holes, horizontal PCB mount, https://www.neutrik.com/en/product/nl4md-h-1 +neutrik speakon +0 +4 +4 +Connector_Audio +Jack_speakON_Neutrik_NL4MD-H-2_Horizontal +speakON Chassis Connectors, 4 pole chassis connector, black D-size flange, mirrored self tapping screw holes (A-screw), horizontal PCB mount, https://www.neutrik.com/en/product/nl4md-h-2 +neutrik speakon +0 +4 +4 +Connector_Audio +Jack_speakON_Neutrik_NL4MD-H-3_Horizontal +speakON Chassis Connectors, 4 pole chassis connector, black D-size flange, self tapping screw holes (A-screw), horizontal PCB mount, https://www.neutrik.com/en/product/nl4md-h-3 +neutrik speakon +0 +4 +4 +Connector_Audio +Jack_speakON_Neutrik_NL4MD-H_Horizontal +speakON Chassis Connectors, 4 pole chassis connector, grey D-size flange, self tapping screw holes (A-screw), horizontal PCB mount, https://www.neutrik.com/en/product/nl4md-h +neutrik speakon +0 +4 +4 +Connector_Audio +Jack_speakON_Neutrik_NL4MD-V-1_Vertical +speakON Chassis Connectors, 4 pole chassis connector, grey D-size flange, self tapping screw holes (A-screw), vertical PCB mount, https://www.neutrik.com/en/product/nl4md-v-1 +neutrik speakon +0 +4 +4 +Connector_Audio +Jack_speakON_Neutrik_NL4MD-V-2_Vertical +speakON Chassis Connectors, 4 pole chassis connector, black D-size flange, mirrored self tapping screw holes (A-screw), vertical PCB mount, https://www.neutrik.com/en/product/nl4md-v-2 +neutrik speakon +0 +4 +4 +Connector_Audio +Jack_speakON_Neutrik_NL4MD-V-R_Vertical +speakON Chassis Connectors, 4 pole chassis connector, red D-size flange, countersunk thru holes, vertical PCB mount, https://www.neutrik.com/en/product/nl4md-v-r +neutrik speakon +0 +4 +4 +Connector_Audio +Jack_speakON_Neutrik_NL4MD-V-S_Vertical +speakON Chassis Connectors, 4 pole chassis connector, black D-size flange, switchable version of NL4MD-V with 8 vertical PCB contacts (4 switching contacts), https://www.neutrik.com/en/product/nl4md-v-s +neutrik speakon +0 +8 +8 +Connector_Audio +Jack_speakON_Neutrik_NL4MD-V_Vertical +speakON Chassis Connectors, 4 pole chassis connector, black D-size flange, countersunk thru holes, vertical PCB mount, https://www.neutrik.com/en/product/nl4md-v +neutrik speakon +0 +4 +4 +Connector_Audio +Jack_speakON_Neutrik_NL8MD-V-1_Vertical +speakON Chassis Connectors, 8 pole chassis connector, nickel metal square G-size flange, self tapping screw holes (A-screw), vertical PCB mount, https://www.neutrik.com/en/product/nl8md-v-1 +neutrik speakon +0 +8 +8 +Connector_Audio +Jack_speakON_Neutrik_NL8MD-V_Vertical +speakON Chassis Connectors, 8 pole chassis connector, nickel metal square G-size flange, countersunk thru holes, vertical PCB mount, https://www.neutrik.com/en/product/nl8md-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_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_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_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-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_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 +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 +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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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, 5mm x 10mm, +MesurementPoint Square SMDPad 5mmx10mm +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-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_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_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_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_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 +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_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_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_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 +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_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_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_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 +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 +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_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_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_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_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_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_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_XAL60xx_6.36x6.56mm +Coilcraft XAL60xx series, https://www.coilcraft.com/pdfs/xal60xx.pdf +L Coilcraft XAL60xx +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL5030 +L_Coilcraft_XAL5030 +L Coilcraft XAL5030 +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_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_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_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_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_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_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_MWSA0518_5.4x5.2mm +Inductor, Sunlord, MWSA0518, 5.4mmx5.2mm +inductor Sunlord smd +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_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_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_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/products/download/product/datasheet/rn-series-common-mode-chokes-new/ +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_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 +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_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-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 +LED PLCC-2 SMD package +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_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_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 +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 +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 +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.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 +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_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_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_SMD-DIL2_4.5x4.0mm +PhotoDiode, plastic SMD DIL, 4.5x4mm² +PhotoDiode plastic SMD DIL +0 +2 +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_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 +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 +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_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 +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 +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_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-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-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_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, 1.36x1.86mm, 10 bump 3x4 (perimeter) array, NSMD pad definition (http://www.ti.com/lit/ds/symlink/txs0104e.pdf, http://www.ti.com/lit/an/snva009ag/snva009ag.pdf) +Texas Instruments DSBGA BGA +0 +20 +10 +Package_BGA +Texas_DSBGA-12_1.36x1.86mm_Layout3x4_P0.5mm +Texas Instruments, DSBGA, 1.36x1.86mm, 12 bump 3x4 (area) array, NSMD pad definition (http://www.ti.com/lit/ds/symlink/txs0104e.pdf, http://www.ti.com/lit/an/snva009ag/snva009ag.pdf) +Texas Instruments DSBGA BGA +0 +24 +12 +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 +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-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.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-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-32_3.0x2.17mm_Layout7x5_P0.4mm_Ball0.27mm_Pad0.25mm +WLCSP-32, 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 +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_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_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-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_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_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_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_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-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-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 +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 +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 +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_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 +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_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-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 +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_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_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.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-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-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_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_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_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-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.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 +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-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 +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 (http://www.st.com/resource/en/datasheet/lsm6ds3.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 +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 +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 +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_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.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-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, with thermal vias (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, with thermal vias (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-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 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) +TSOP I 32 +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, 32 pins, 18.4x8mm body (https://www.micron.com/~/media/documents/products/technical-note/nor-flash/tn1225_land_pad_design.pdf) +TSOP I 32 +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, 32 pins, 18.4x8mm body (https://www.micron.com/~/media/documents/products/technical-note/nor-flash/tn1225_land_pad_design.pdf) +TSOP I 32 +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.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.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_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_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 +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 +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-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_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-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-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_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 +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_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-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 +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-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-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_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-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 +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 +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_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_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_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 +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 +39 +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 +39 +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 +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 +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_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.cn/en/ProductShow.asp?ID=208 +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_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_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 +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_ADPS-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 +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 +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 +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-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 +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_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 +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_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_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 +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 +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 +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 +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 +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 +0 +11 +9 +Valve +Valve_Noval_P +Valve NOVAL P +Valve NOVAL P +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 +0 +2 +2 +Varistor +RV_Disc_D7mm_W3.8mm_P5mm +Varistor, diameter 7mm, width 3.8mm, pitch 5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D7mm_W3.9mm_P5mm +Varistor, diameter 7mm, width 3.9mm, pitch 5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D7mm_W4.2mm_P5mm +Varistor, diameter 7mm, width 4.2mm, pitch 5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D7mm_W4.3mm_P5mm +Varistor, diameter 7mm, width 4.3mm, pitch 5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D7mm_W4.5mm_P5mm +Varistor, diameter 7mm, width 4.5mm, pitch 5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D7mm_W4.8mm_P5mm +Varistor, diameter 7mm, width 4.8mm, pitch 5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D7mm_W4.9mm_P5mm +Varistor, diameter 7mm, width 4.9mm, pitch 5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D7mm_W4mm_P5mm +Varistor, diameter 7mm, width 4mm, pitch 5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D7mm_W5.1mm_P5mm +Varistor, diameter 7mm, width 5.1mm, pitch 5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D7mm_W5.4mm_P5mm +Varistor, diameter 7mm, width 5.4mm, pitch 5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D7mm_W5.5mm_P5mm +Varistor, diameter 7mm, width 5.5mm, pitch 5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D7mm_W5.7mm_P5mm +Varistor, diameter 7mm, width 5.7mm, pitch 5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D9mm_W3.3mm_P5mm +Varistor, diameter 9mm, width 3.3mm, pitch 5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D9mm_W3.4mm_P5mm +Varistor, diameter 9mm, width 3.4mm, pitch 5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D9mm_W3.5mm_P5mm +Varistor, diameter 9mm, width 3.5mm, pitch 5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D9mm_W3.6mm_P5mm +Varistor, diameter 9mm, width 3.6mm, pitch 5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D9mm_W3.7mm_P5mm +Varistor, diameter 9mm, width 3.7mm, pitch 5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D9mm_W3.8mm_P5mm +Varistor, diameter 9mm, width 3.8mm, pitch 5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D9mm_W3.9mm_P5mm +Varistor, diameter 9mm, width 3.9mm, pitch 5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D9mm_W4.1mm_P5mm +Varistor, diameter 9mm, width 4.1mm, pitch 5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D9mm_W4.2mm_P5mm +Varistor, diameter 9mm, width 4.2mm, pitch 5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D9mm_W4.4mm_P5mm +Varistor, diameter 9mm, width 4.4mm, pitch 5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D9mm_W4.5mm_P5mm +Varistor, diameter 9mm, width 4.5mm, pitch 5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D9mm_W4.8mm_P5mm +Varistor, diameter 9mm, width 4.8mm, pitch 5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D9mm_W4mm_P5mm +Varistor, diameter 9mm, width 4mm, pitch 5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D9mm_W5.2mm_P5mm +Varistor, diameter 9mm, width 5.2mm, pitch 5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D9mm_W5.4mm_P5mm +Varistor, diameter 9mm, width 5.4mm, pitch 5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D9mm_W5.5mm_P5mm +Varistor, diameter 9mm, width 5.5mm, pitch 5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D9mm_W5.7mm_P5mm +Varistor, diameter 9mm, width 5.7mm, pitch 5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D9mm_W6.1mm_P5mm +Varistor, diameter 9mm, width 6.1mm, pitch 5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D12mm_W3.9mm_P7.5mm +Varistor, diameter 12mm, width 3.9mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D12mm_W4.2mm_P7.5mm +Varistor, diameter 12mm, width 4.2mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D12mm_W4.3mm_P7.5mm +Varistor, diameter 12mm, width 4.3mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D12mm_W4.4mm_P7.5mm +Varistor, diameter 12mm, width 4.4mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D12mm_W4.5mm_P7.5mm +Varistor, diameter 12mm, width 4.5mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D12mm_W4.6mm_P7.5mm +Varistor, diameter 12mm, width 4.6mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D12mm_W4.7mm_P7.5mm +Varistor, diameter 12mm, width 4.7mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D12mm_W4.8mm_P7.5mm +Varistor, diameter 12mm, width 4.8mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D12mm_W4mm_P7.5mm +Varistor, diameter 12mm, width 4mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D12mm_W5.1mm_P7.5mm +Varistor, diameter 12mm, width 5.1mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D12mm_W5.4mm_P7.5mm +Varistor, diameter 12mm, width 5.4mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D12mm_W5.8mm_P7.5mm +Varistor, diameter 12mm, width 5.8mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D12mm_W5mm_P7.5mm +Varistor, diameter 12mm, width 5mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D12mm_W6.1mm_P7.5mm +Varistor, diameter 12mm, width 6.1mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D12mm_W6.2mm_P7.5mm +Varistor, diameter 12mm, width 6.2mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D12mm_W6.3mm_P7.5mm +Varistor, diameter 12mm, width 6.3mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D12mm_W6.7mm_P7.5mm +Varistor, diameter 12mm, width 6.7mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D12mm_W7.1mm_P7.5mm +Varistor, diameter 12mm, width 7.1mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D12mm_W7.5mm_P7.5mm +Varistor, diameter 12mm, width 7.5mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D12mm_W7.9mm_P7.5mm +Varistor, diameter 12mm, width 7.9mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D15.5mm_W3.9mm_P7.5mm +Varistor, diameter 15.5mm, width 3.9mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D15.5mm_W4.2mm_P7.5mm +Varistor, diameter 15.5mm, width 4.2mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D15.5mm_W4.3mm_P7.5mm +Varistor, diameter 15.5mm, width 4.3mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D15.5mm_W4.4mm_P7.5mm +Varistor, diameter 15.5mm, width 4.4mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D15.5mm_W4.5mm_P7.5mm +Varistor, diameter 15.5mm, width 4.5mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D15.5mm_W4.6mm_P7.5mm +Varistor, diameter 15.5mm, width 4.6mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D15.5mm_W4.7mm_P7.5mm +Varistor, diameter 15.5mm, width 4.7mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D15.5mm_W4.8mm_P7.5mm +Varistor, diameter 15.5mm, width 4.8mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D15.5mm_W4.9mm_P7.5mm +Varistor, diameter 15.5mm, width 4.9mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D15.5mm_W4mm_P7.5mm +Varistor, diameter 15.5mm, width 4mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D15.5mm_W5.2mm_P7.5mm +Varistor, diameter 15.5mm, width 5.2mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D15.5mm_W5.4mm_P7.5mm +Varistor, diameter 15.5mm, width 5.4mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D15.5mm_W5.9mm_P7.5mm +Varistor, diameter 15.5mm, width 5.9mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D15.5mm_W5mm_P7.5mm +Varistor, diameter 15.5mm, width 5mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D15.5mm_W6.1mm_P7.5mm +Varistor, diameter 15.5mm, width 6.1mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D15.5mm_W6.3mm_P7.5mm +Varistor, diameter 15.5mm, width 6.3mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D15.5mm_W6.4mm_P7.5mm +Varistor, diameter 15.5mm, width 6.4mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D15.5mm_W6.8mm_P7.5mm +Varistor, diameter 15.5mm, width 6.8mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D15.5mm_W7.2mm_P7.5mm +Varistor, diameter 15.5mm, width 7.2mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D15.5mm_W7.5mm_P7.5mm +Varistor, diameter 15.5mm, width 7.5mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D15.5mm_W8mm_P7.5mm +Varistor, diameter 15.5mm, width 8mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D15.5mm_W11mm_P7.5mm +Varistor, diameter 15.5mm, width 11mm, pitch 7.5mm +varistor SIOV +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 +0 +2 +2 +Varistor +RV_Disc_D21.5mm_W4.3mm_P10mm +Varistor, diameter 21.5mm, width 4.3mm, pitch 10mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D21.5mm_W4.4mm_P10mm +Varistor, diameter 21.5mm, width 4.4mm, pitch 10mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D21.5mm_W4.5mm_P10mm +Varistor, diameter 21.5mm, width 4.5mm, pitch 10mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D21.5mm_W4.6mm_P10mm +Varistor, diameter 21.5mm, width 4.6mm, pitch 10mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D21.5mm_W4.7mm_P10mm +Varistor, diameter 21.5mm, width 4.7mm, pitch 10mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D21.5mm_W4.8mm_P10mm +Varistor, diameter 21.5mm, width 4.8mm, pitch 10mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D21.5mm_W4.9mm_P10mm +Varistor, diameter 21.5mm, width 4.9mm, pitch 10mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D21.5mm_W5.1mm_P10mm +Varistor, diameter 21.5mm, width 5.1mm, pitch 10mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D21.5mm_W5.3mm_P10mm +Varistor, diameter 21.5mm, width 5.3mm, pitch 10mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D21.5mm_W5.4mm_P10mm +Varistor, diameter 21.5mm, width 5.4mm, pitch 10mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D21.5mm_W5.6mm_P10mm +Varistor, diameter 21.5mm, width 5.6mm, pitch 10mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D21.5mm_W5.8mm_P10mm +Varistor, diameter 21.5mm, width 5.8mm, pitch 10mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D21.5mm_W5mm_P10mm +Varistor, diameter 21.5mm, width 5mm, pitch 10mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D21.5mm_W6.1mm_P7.5mm +varistor +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D21.5mm_W6.3mm_P10mm +Varistor, diameter 21.5mm, width 6.3mm, pitch 10mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D21.5mm_W6.5mm_P10mm +Varistor, diameter 21.5mm, width 6.5mm, pitch 10mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D21.5mm_W6.7mm_P10mm +Varistor, diameter 21.5mm, width 6.7mm, pitch 10mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D21.5mm_W6.8mm_P10mm +Varistor, diameter 21.5mm, width 6.8mm, pitch 10mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D21.5mm_W7.1mm_P10mm +Varistor, diameter 21.5mm, width 7.1mm, pitch 10mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D21.5mm_W7.5mm_P10mm +Varistor, diameter 21.5mm, width 7.5mm, pitch 10mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D21.5mm_W7.9mm_P10mm +Varistor, diameter 21.5mm, width 7.9mm, pitch 10mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D21.5mm_W8.4mm_P10mm +Varistor, diameter 21.5mm, width 8.4mm, pitch 10mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D21.5mm_W11.4mm_P10mm +Varistor, diameter 21.5mm, width 11.4mm, pitch 10mm +varistor SIOV +0 +2 +2 diff --git a/F1:F103/Canon_managing_device/kicad/Canon_manage/gerbers/Canon_manage-B_Cu.gbr b/F1:F103/Canon_managing_device/kicad/Canon_manage/gerbers/Canon_manage-B_Cu.gbr new file mode 100644 index 0000000..2d7bec7 --- /dev/null +++ b/F1:F103/Canon_managing_device/kicad/Canon_manage/gerbers/Canon_manage-B_Cu.gbr @@ -0,0 +1,6829 @@ +%TF.GenerationSoftware,KiCad,Pcbnew,6.0.5*% +%TF.CreationDate,2022-09-23T09:05:14+03:00*% +%TF.ProjectId,Canon_manage,43616e6f-6e5f-46d6-916e-6167652e6b69,rev?*% +%TF.SameCoordinates,Original*% +%TF.FileFunction,Copper,L2,Bot*% +%TF.FilePolarity,Positive*% +%FSLAX46Y46*% +G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)* +G04 Created by KiCad (PCBNEW 6.0.5) date 2022-09-23 09:05:14* +%MOMM*% +%LPD*% +G01* +G04 APERTURE LIST* +G04 Aperture macros list* +%AMRoundRect* +0 Rectangle with rounded corners* +0 $1 Rounding radius* +0 $2 $3 $4 $5 $6 $7 $8 $9 X,Y pos of 4 corners* +0 Add a 4 corners polygon primitive as box body* +4,1,4,$2,$3,$4,$5,$6,$7,$8,$9,$2,$3,0* +0 Add four circle primitives for the rounded corners* +1,1,$1+$1,$2,$3* +1,1,$1+$1,$4,$5* +1,1,$1+$1,$6,$7* +1,1,$1+$1,$8,$9* +0 Add four rect primitives between the rounded corners* +20,1,$1+$1,$2,$3,$4,$5,0* +20,1,$1+$1,$4,$5,$6,$7,0* +20,1,$1+$1,$6,$7,$8,$9,0* +20,1,$1+$1,$8,$9,$2,$3,0*% +G04 Aperture macros list end* +%TA.AperFunction,ComponentPad*% +%ADD10R,0.850000X0.850000*% +%TD*% +%TA.AperFunction,ComponentPad*% +%ADD11O,1.000000X2.100000*% +%TD*% +%TA.AperFunction,ComponentPad*% +%ADD12O,1.000000X1.600000*% +%TD*% +%TA.AperFunction,ComponentPad*% +%ADD13R,1.700000X1.700000*% +%TD*% +%TA.AperFunction,ComponentPad*% +%ADD14O,0.850000X0.850000*% +%TD*% +%TA.AperFunction,SMDPad,CuDef*% +%ADD15RoundRect,0.237500X0.250000X0.237500X-0.250000X0.237500X-0.250000X-0.237500X0.250000X-0.237500X0*% +%TD*% +%TA.AperFunction,SMDPad,CuDef*% +%ADD16RoundRect,0.237500X0.300000X0.237500X-0.300000X0.237500X-0.300000X-0.237500X0.300000X-0.237500X0*% +%TD*% +%TA.AperFunction,SMDPad,CuDef*% +%ADD17RoundRect,0.237500X-0.300000X-0.237500X0.300000X-0.237500X0.300000X0.237500X-0.300000X0.237500X0*% +%TD*% +%TA.AperFunction,SMDPad,CuDef*% +%ADD18R,1.500000X2.000000*% +%TD*% +%TA.AperFunction,SMDPad,CuDef*% +%ADD19R,3.800000X2.000000*% +%TD*% +%TA.AperFunction,ComponentPad*% +%ADD20C,1.500000*% +%TD*% +%TA.AperFunction,SMDPad,CuDef*% +%ADD21RoundRect,0.250000X0.337500X0.475000X-0.337500X0.475000X-0.337500X-0.475000X0.337500X-0.475000X0*% +%TD*% +%TA.AperFunction,SMDPad,CuDef*% +%ADD22RoundRect,0.237500X0.237500X-0.300000X0.237500X0.300000X-0.237500X0.300000X-0.237500X-0.300000X0*% +%TD*% +%TA.AperFunction,SMDPad,CuDef*% +%ADD23RoundRect,0.237500X-0.250000X-0.237500X0.250000X-0.237500X0.250000X0.237500X-0.250000X0.237500X0*% +%TD*% +%TA.AperFunction,SMDPad,CuDef*% +%ADD24RoundRect,0.250000X-0.875000X-0.925000X0.875000X-0.925000X0.875000X0.925000X-0.875000X0.925000X0*% +%TD*% +%TA.AperFunction,SMDPad,CuDef*% +%ADD25RoundRect,0.075000X0.075000X-0.662500X0.075000X0.662500X-0.075000X0.662500X-0.075000X-0.662500X0*% +%TD*% +%TA.AperFunction,SMDPad,CuDef*% +%ADD26RoundRect,0.075000X0.662500X-0.075000X0.662500X0.075000X-0.662500X0.075000X-0.662500X-0.075000X0*% +%TD*% +%TA.AperFunction,ViaPad*% +%ADD27C,1.200000*% +%TD*% +%TA.AperFunction,ViaPad*% +%ADD28C,0.800000*% +%TD*% +%TA.AperFunction,Conductor*% +%ADD29C,0.250000*% +%TD*% +%TA.AperFunction,Conductor*% +%ADD30C,1.000000*% +%TD*% +%TA.AperFunction,Conductor*% +%ADD31C,0.200000*% +%TD*% +%TA.AperFunction,Conductor*% +%ADD32C,0.500000*% +%TD*% +G04 APERTURE END LIST* +D10* +%TO.P,J6,1,Pin_1*% +%TO.N,Net-(R3-Pad2)*% +X103980000Y-64570000D03* +%TD*% +%TO.P,J3,1,Pin_1*% +%TO.N,Net-(R2-Pad2)*% +X111930000Y-65330000D03* +%TD*% +%TO.P,J4,1,Pin_1*% +%TO.N,GND*% +X109640000Y-64820000D03* +%TD*% +%TO.P,J8,1,Pin_1*% +%TO.N,Net-(R5-Pad2)*% +X99500000Y-65500000D03* +%TD*% +%TO.P,J9,1,Pin_1*% +%TO.N,GND*% +X97310000Y-66260000D03* +%TD*% +D11* +%TO.P,J37,S1,SHIELD*% +%TO.N,GND*% +X101290000Y-54600000D03* +X109930000Y-54600000D03* +D12* +X109930000Y-50420000D03* +X101290000Y-50420000D03* +%TD*% +D10* +%TO.P,J2,1,Pin_1*% +%TO.N,/VBUS*% +X114040000Y-66090000D03* +%TD*% +%TO.P,J7,1,Pin_1*% +%TO.N,Net-(R4-Pad2)*% +X101700000Y-64910000D03* +%TD*% +%TO.P,J5,1,Pin_1*% +%TO.N,/VBUS*% +X106270000Y-64490000D03* +%TD*% +D13* +%TO.P,J35,1,Pin_1*% +%TO.N,GND*% +X138633200Y-89560400D03* +%TD*% +%TO.P,J26,1,Pin_1*% +%TO.N,/VBUS*% +X127609600Y-72237600D03* +%TD*% +D10* +%TO.P,J1,1,Pin_1*% +%TO.N,/SWCLK*% +X70586600Y-85188800D03* +D14* +%TO.P,J1,2,Pin_2*% +%TO.N,/SWDIO*% +X70586600Y-86188800D03* +%TO.P,J1,3,Pin_3*% +%TO.N,GND*% +X70586600Y-87188800D03* +%TO.P,J1,4,Pin_4*% +%TO.N,+3V3*% +X70586600Y-88188800D03* +%TO.P,J1,5,Pin_5*% +%TO.N,/BOOT0*% +X70586600Y-89188800D03* +%TO.P,J1,6,Pin_6*% +%TO.N,/NRST*% +X70586600Y-90188800D03* +%TD*% +D13* +%TO.P,J36,1,Pin_1*% +%TO.N,+3V3*% +X133350000Y-89560400D03* +%TD*% +D15* +%TO.P,R6,1*% +%TO.N,Net-(J37-PadB5)*% +X100431600Y-59105800D03* +%TO.P,R6,2*% +%TO.N,GND*% +X98606600Y-59105800D03* +%TD*% +D16* +%TO.P,C5,1*% +%TO.N,+3V3*% +X73784800Y-81965800D03* +%TO.P,C5,2*% +%TO.N,GND*% +X72059800Y-81965800D03* +%TD*% +D17* +%TO.P,C8,1*% +%TO.N,+3V3*% +X75618000Y-92938600D03* +%TO.P,C8,2*% +%TO.N,GND*% +X77343000Y-92938600D03* +%TD*% +D18* +%TO.P,U2,1,GND*% +%TO.N,GND*% +X131227800Y-72135600D03* +%TO.P,U2,2,VO*% +%TO.N,+3V3*% +X133527800Y-72135600D03* +D19* +X133527800Y-78435600D03* +D18* +%TO.P,U2,3,VI*% +%TO.N,/VBUS*% +X135827800Y-72135600D03* +%TD*% +D20* +%TO.P,Y1,1,1*% +%TO.N,/OSC_IN*% +X81647200Y-96600000D03* +%TO.P,Y1,2,2*% +%TO.N,/OSC_OUT*% +X76767200Y-96600000D03* +%TD*% +D21* +%TO.P,C3,1*% +%TO.N,/VBUS*% +X134518400Y-69392800D03* +%TO.P,C3,2*% +%TO.N,GND*% +X132443400Y-69392800D03* +%TD*% +D22* +%TO.P,C4,1*% +%TO.N,+3V3*% +X82677000Y-82522400D03* +%TO.P,C4,2*% +%TO.N,GND*% +X82677000Y-80797400D03* +%TD*% +D23* +%TO.P,R9,1*% +%TO.N,Net-(J37-PadA5)*% +X109096800Y-58470800D03* +%TO.P,R9,2*% +%TO.N,GND*% +X110921800Y-58470800D03* +%TD*% +D17* +%TO.P,C6,1*% +%TO.N,+3V3*% +X82755400Y-91160600D03* +%TO.P,C6,2*% +%TO.N,GND*% +X84480400Y-91160600D03* +%TD*% +%TO.P,C7,1*% +%TO.N,+3V3*% +X133580800Y-81203800D03* +%TO.P,C7,2*% +%TO.N,GND*% +X135305800Y-81203800D03* +%TD*% +D24* +%TO.P,C9,1*% +%TO.N,+3V3*% +X133558600Y-84658200D03* +%TO.P,C9,2*% +%TO.N,GND*% +X138658600Y-84658200D03* +%TD*% +D25* +%TO.P,U1,1,VBAT*% +%TO.N,+3V3*% +X80837500Y-90852500D03* +%TO.P,U1,2,PC13*% +%TO.N,unconnected-(U1-Pad2)*% +X80337500Y-90852500D03* +%TO.P,U1,3,PC14*% +%TO.N,unconnected-(U1-Pad3)*% +X79837500Y-90852500D03* +%TO.P,U1,4,PC15*% +%TO.N,unconnected-(U1-Pad4)*% +X79337500Y-90852500D03* +%TO.P,U1,5,PD0*% +%TO.N,/OSC_IN*% +X78837500Y-90852500D03* +%TO.P,U1,6,PD1*% +%TO.N,/OSC_OUT*% +X78337500Y-90852500D03* +%TO.P,U1,7,NRST*% +%TO.N,/NRST*% +X77837500Y-90852500D03* +%TO.P,U1,8,VSSA*% +%TO.N,GND*% +X77337500Y-90852500D03* +%TO.P,U1,9,VDDA*% +%TO.N,+3V3*% +X76837500Y-90852500D03* +%TO.P,U1,10,PA0*% +%TO.N,unconnected-(U1-Pad10)*% +X76337500Y-90852500D03* +%TO.P,U1,11,PA1*% +%TO.N,unconnected-(U1-Pad11)*% +X75837500Y-90852500D03* +%TO.P,U1,12,PA2*% +%TO.N,unconnected-(U1-Pad12)*% +X75337500Y-90852500D03* +D26* +%TO.P,U1,13,PA3*% +%TO.N,unconnected-(U1-Pad13)*% +X73925000Y-89440000D03* +%TO.P,U1,14,PA4*% +%TO.N,/L_DETECT*% +X73925000Y-88940000D03* +%TO.P,U1,15,PA5*% +%TO.N,/SPI_SCK*% +X73925000Y-88440000D03* +%TO.P,U1,16,PA6*% +%TO.N,/SPI_MISO*% +X73925000Y-87940000D03* +%TO.P,U1,17,PA7*% +%TO.N,/SPI_MOSI*% +X73925000Y-87440000D03* +%TO.P,U1,18,PB0*% +%TO.N,unconnected-(U1-Pad18)*% +X73925000Y-86940000D03* +%TO.P,U1,19,PB1*% +%TO.N,unconnected-(U1-Pad19)*% +X73925000Y-86440000D03* +%TO.P,U1,20,PB2*% +%TO.N,unconnected-(U1-Pad20)*% +X73925000Y-85940000D03* +%TO.P,U1,21,PB10*% +%TO.N,unconnected-(U1-Pad21)*% +X73925000Y-85440000D03* +%TO.P,U1,22,PB11*% +%TO.N,unconnected-(U1-Pad22)*% +X73925000Y-84940000D03* +%TO.P,U1,23,VSS*% +%TO.N,GND*% +X73925000Y-84440000D03* +%TO.P,U1,24,VDD*% +%TO.N,+3V3*% +X73925000Y-83940000D03* +D25* +%TO.P,U1,25,PB12*% +%TO.N,unconnected-(U1-Pad25)*% +X75337500Y-82527500D03* +%TO.P,U1,26,PB13*% +%TO.N,unconnected-(U1-Pad26)*% +X75837500Y-82527500D03* +%TO.P,U1,27,PB14*% +%TO.N,unconnected-(U1-Pad27)*% +X76337500Y-82527500D03* +%TO.P,U1,28,PB15*% +%TO.N,unconnected-(U1-Pad28)*% +X76837500Y-82527500D03* +%TO.P,U1,29,PA8*% +%TO.N,unconnected-(U1-Pad29)*% +X77337500Y-82527500D03* +%TO.P,U1,30,PA9*% +%TO.N,unconnected-(U1-Pad30)*% +X77837500Y-82527500D03* +%TO.P,U1,31,PA10*% +%TO.N,unconnected-(U1-Pad31)*% +X78337500Y-82527500D03* +%TO.P,U1,32,PA11*% +%TO.N,/USBDM*% +X78837500Y-82527500D03* +%TO.P,U1,33,PA12*% +%TO.N,/USBDP*% +X79337500Y-82527500D03* +%TO.P,U1,34,PA13*% +%TO.N,/SWDIO*% +X79837500Y-82527500D03* +%TO.P,U1,35,VSS*% +%TO.N,GND*% +X80337500Y-82527500D03* +%TO.P,U1,36,VDD*% +%TO.N,+3V3*% +X80837500Y-82527500D03* +D26* +%TO.P,U1,37,PA14*% +%TO.N,/SWCLK*% +X82250000Y-83940000D03* +%TO.P,U1,38,PA15*% +%TO.N,unconnected-(U1-Pad38)*% +X82250000Y-84440000D03* +%TO.P,U1,39,PB3*% +%TO.N,unconnected-(U1-Pad39)*% +X82250000Y-84940000D03* +%TO.P,U1,40,PB4*% +%TO.N,unconnected-(U1-Pad40)*% +X82250000Y-85440000D03* +%TO.P,U1,41,PB5*% +%TO.N,unconnected-(U1-Pad41)*% +X82250000Y-85940000D03* +%TO.P,U1,42,PB6*% +%TO.N,unconnected-(U1-Pad42)*% +X82250000Y-86440000D03* +%TO.P,U1,43,PB7*% +%TO.N,unconnected-(U1-Pad43)*% +X82250000Y-86940000D03* +%TO.P,U1,44,BOOT0*% +%TO.N,/BOOT0*% +X82250000Y-87440000D03* +%TO.P,U1,45,PB8*% +%TO.N,unconnected-(U1-Pad45)*% +X82250000Y-87940000D03* +%TO.P,U1,46,PB9*% +%TO.N,unconnected-(U1-Pad46)*% +X82250000Y-88440000D03* +%TO.P,U1,47,VSS*% +%TO.N,GND*% +X82250000Y-88940000D03* +%TO.P,U1,48,VDD*% +%TO.N,+3V3*% +X82250000Y-89440000D03* +%TD*% +D27* +%TO.N,GND*% +X109423200Y-115290600D03* +D28* +X89509600Y-58521600D03* +D27* +X77673200Y-75488800D03* +X112471200Y-62026800D03* +D28* +X84582000Y-80746600D03* +X73888600Y-79095600D03* +D27* +X114300000Y-58521600D03* +D28* +X84582000Y-77063600D03* +D27* +X80848200Y-75260200D03* +D28* +X71831200Y-87426800D03* +D27* +%TO.N,/VBUS*% +X108051600Y-60350400D03* +X101803200Y-57353200D03* +%TO.N,+3V3*% +X131064000Y-84886800D03* +X80162400Y-86842600D03* +D28* +X78435200Y-84150200D03* +%TO.N,/L_DETECT*% +X75184000Y-77927200D03* +%TO.N,/SPI_SCK*% +X77639876Y-84810577D03* +%TO.N,/SPI_MISO*% +X79908400Y-78740000D03* +X81076800Y-72720200D03* +X76640374Y-84810820D03* +%TO.N,/SPI_MOSI*% +X75184000Y-80162400D03* +X79603600Y-72542400D03* +X75641200Y-84785200D03* +%TO.N,/SWCLK*% +X80772000Y-85191600D03* +%TO.N,/SWDIO*% +X78790800Y-86188800D03* +%TO.N,/BOOT0*% +X80445588Y-88464412D03* +%TO.N,/NRST*% +X77825600Y-89408000D03* +%TO.N,Net-(J37-PadA5)*% +X107137200Y-58470800D03* +%TO.N,/DP*% +X104190800Y-58166000D03* +X105511600Y-59309000D03* +X105660500Y-57759600D03* +%TO.N,Net-(J37-PadB5)*% +X103047800Y-58039000D03* +%TO.N,/USBDM*% +X81635600Y-78282800D03* +X84074000Y-69088000D03* +X91160600Y-61772800D03* +%TO.N,/USBDP*% +X94462600Y-59842400D03* +X82778600Y-78282800D03* +X85217000Y-69088000D03* +%TO.N,Net-(R2-Pad2)*% +X76631800Y-69265800D03* +X97993200Y-62128400D03* +%TD*% +D29* +%TO.N,/OSC_IN*% +X78837500Y-93790300D02* +X81647200Y-96600000D01* +X78837500Y-90852500D02* +X78837500Y-93790300D01* +D30* +%TO.N,GND*% +X108432600Y-66802000D02* +X109640000Y-65594600D01* +X109640000Y-64172200D02* +X111785400Y-62026800D01* +D31* +X109423200Y-115290600D02* +X116789200Y-115290600D01* +D29* +X91033600Y-60045600D02* +X91668600Y-60045600D01* +D31* +X82250000Y-88940000D02* +X84012400Y-88940000D01* +D30* +X98018600Y-66802000D02* +X108432600Y-66802000D01* +D31* +X82651600Y-77063600D02* +X80848200Y-75260200D01* +D29* +X92608400Y-59105800D02* +X91668600Y-60045600D01* +X71593200Y-87188800D02* +X71831200Y-87426800D01* +D31* +X77337500Y-90852500D02* +X77337500Y-92933100D01* +X80337500Y-81155700D02* +X80337500Y-82527500D01* +D32* +X138658600Y-84658200D02* +X138658600Y-89535000D01* +D31* +X84582000Y-80797400D02* +X84582000Y-80746600D01* +X84012400Y-88940000D02* +X84480400Y-89408000D01* +X138633200Y-93446600D02* +X138633200Y-89560400D01* +X82677000Y-80797400D02* +X84582000Y-80797400D01* +D30* +X97310000Y-66260000D02* +X97476600Y-66260000D01* +D31* +X80695800Y-80797400D02* +X80337500Y-81155700D01* +D29* +X72059800Y-83616800D02* +X72883000Y-84440000D01* +X98606600Y-59105800D02* +X92608400Y-59105800D01* +D31* +X84582000Y-77063600D02* +X82651600Y-77063600D01* +D29* +X110921800Y-58470800D02* +X114249200Y-58470800D01* +D31* +X116789200Y-115290600D02* +X138633200Y-93446600D01* +D29* +X70586600Y-87188800D02* +X71593200Y-87188800D01* +D32* +X138658600Y-89535000D02* +X138633200Y-89560400D01* +D29* +X72059800Y-80924400D02* +X72059800Y-81965800D01* +X114249200Y-58470800D02* +X114300000Y-58521600D01* +D30* +X109640000Y-65594600D02* +X109640000Y-64820000D01* +D31* +X77337500Y-92933100D02* +X77343000Y-92938600D01* +D30* +X109640000Y-64820000D02* +X109640000Y-64172200D01* +X97476600Y-66260000D02* +X98018600Y-66802000D01* +D29* +X89509600Y-58521600D02* +X91033600Y-60045600D01* +X73888600Y-79095600D02* +X72059800Y-80924400D01* +D31* +X82677000Y-80797400D02* +X80695800Y-80797400D01* +D30* +X111785400Y-62026800D02* +X112471200Y-62026800D01* +D31* +X84480400Y-89408000D02* +X84480400Y-91160600D01* +D29* +X72059800Y-81965800D02* +X72059800Y-83616800D01* +X72883000Y-84440000D02* +X73925000Y-84440000D01* +%TO.N,/OSC_OUT*% +X78337500Y-95029700D02* +X76767200Y-96600000D01* +X78337500Y-90852500D02* +X78337500Y-95029700D01* +D30* +%TO.N,/VBUS*% +X113512600Y-60350400D02* +X108051600Y-60350400D01* +X108051600Y-63169800D02* +X108051600Y-60350400D01* +D32* +X101803200Y-59740800D02* +X102412800Y-60350400D01* +D30* +X114040000Y-66090000D02* +X114040000Y-60877800D01* +X134518400Y-67792600D02* +X134289800Y-67564000D01* +D32* +X101803200Y-57353200D02* +X101803200Y-59740800D01* +D30* +X127609600Y-68961000D02* +X125222000Y-66573400D01* +X127609600Y-68961000D02* +X127609600Y-72237600D01* +D32* +X102412800Y-60350400D02* +X108051600Y-60350400D01* +D30* +X106731400Y-64490000D02* +X108051600Y-63169800D01* +X114040000Y-60877800D02* +X113512600Y-60350400D01* +X135827800Y-72135600D02* +X135827800Y-70702200D01* +X123418600Y-66573400D02* +X122935200Y-66090000D01* +X106270000Y-64490000D02* +X106731400Y-64490000D01* +X135827800Y-70702200D02* +X134518400Y-69392800D01* +X122935200Y-66090000D02* +X114040000Y-66090000D01* +X134289800Y-67564000D02* +X129006600Y-67564000D01* +X129006600Y-67564000D02* +X127609600Y-68961000D01* +X125222000Y-66573400D02* +X123418600Y-66573400D01* +X134518400Y-69392800D02* +X134518400Y-67792600D01* +D32* +%TO.N,+3V3*% +X80162400Y-86842600D02* +X79578200Y-87426800D01* +D30* +X133558600Y-84658200D02* +X133558600Y-81226000D01* +X133330000Y-84886800D02* +X133558600Y-84658200D01* +D32* +X133527800Y-81150800D02* +X133580800Y-81203800D01* +D31* +X80837500Y-83652900D02* +X79756000Y-84734400D01* +D29* +X79578200Y-89179400D02* +X79838800Y-89440000D01* +D31* +X82671900Y-82527500D02* +X82677000Y-82522400D01* +D30* +X131064000Y-84886800D02* +X133330000Y-84886800D01* +D31* +X76837500Y-91767700D02* +X76837500Y-90852500D01* +D30* +X133580800Y-78488600D02* +X133527800Y-78435600D01* +D31* +X75666600Y-92938600D02* +X76837500Y-91767700D01* +X82250000Y-89440000D02* +X81044800Y-89440000D01* +X76837500Y-88795900D02* +X76837500Y-90852500D01* +D30* +X133558600Y-81226000D02* +X133580800Y-81203800D01* +D31* +X80837500Y-82527500D02* +X82671900Y-82527500D01* +D32* +X79578200Y-87426800D02* +X79578200Y-88544400D01* +D31* +X78225000Y-83940000D02* +X78435200Y-84150200D01* +D32* +X133558600Y-84658200D02* +X133558600Y-89351800D01* +X133558600Y-89351800D02* +X133350000Y-89560400D01* +D29* +X77807200Y-83940000D02* +X78225000Y-83940000D01* +D31* +X73784800Y-83799800D02* +X73925000Y-83940000D01* +D32* +X79756000Y-86436200D02* +X79756000Y-84734400D01* +D29* +X73925000Y-83940000D02* +X77807200Y-83940000D01* +D32* +X133527800Y-72135600D02* +X133527800Y-78435600D01* +D31* +X80837500Y-82527500D02* +X80837500Y-83652900D01* +X81044800Y-89440000D02* +X80837500Y-89647300D01* +D29* +X79838800Y-89440000D02* +X81044800Y-89440000D01* +D31* +X80837500Y-89647300D02* +X80837500Y-90852500D01* +X75618000Y-92938600D02* +X75666600Y-92938600D01* +X82250000Y-90655200D02* +X82755400Y-91160600D01* +D32* +X79578200Y-88544400D02* +X79578200Y-89179400D01* +D29* +X77089000Y-88544400D02* +X76837500Y-88795900D01* +D32* +X133580800Y-84636000D02* +X133558600Y-84658200D01* +D30* +X133580800Y-81203800D02* +X133580800Y-78488600D01* +D32* +X80162400Y-86842600D02* +X79756000Y-86436200D01* +D31* +X82250000Y-89440000D02* +X82250000Y-90655200D01* +X73784800Y-81965800D02* +X73784800Y-83799800D01* +D29* +X79578200Y-88544400D02* +X77089000Y-88544400D01* +%TO.N,/L_DETECT*% +X70535800Y-81203800D02* +X73812400Y-77927200D01* +X73812400Y-77927200D02* +X75184000Y-77927200D01* +X73122494Y-88940000D02* +X72567800Y-88385306D01* +X70535800Y-82880200D02* +X72567800Y-84912200D01* +X73925000Y-88940000D02* +X73122494Y-88940000D01* +X72567800Y-88385306D02* +X72567800Y-84912200D01* +X70535800Y-81203800D02* +X70535800Y-82880200D01* +%TO.N,/SPI_SCK*% +X73925000Y-88440000D02* +X75796400Y-88440000D01* +X77639876Y-86596524D02* +X77639876Y-84810577D01* +X75796400Y-88440000D02* +X77639876Y-86596524D01* +%TO.N,/SPI_MISO*% +X75204200Y-87940000D02* +X76640374Y-86503826D01* +X79908400Y-78740000D02* +X79908400Y-73888600D01* +X79908400Y-73888600D02* +X81076800Y-72720200D01* +X73925000Y-87940000D02* +X75204200Y-87940000D01* +X76640374Y-86503826D02* +X76640374Y-84810820D01* +%TO.N,/SPI_MOSI*% +X79603600Y-73329800D02* +X79603600Y-72542400D01* +X77851000Y-80162400D02* +X78892400Y-79121000D01* +X79349600Y-78079600D02* +X79349600Y-73583800D01* +X73925000Y-87440000D02* +X74916800Y-87440000D01* +X78892400Y-79121000D02* +X78892400Y-78536800D01* +X79349600Y-73583800D02* +X79603600Y-73329800D01* +X74916800Y-87440000D02* +X75641200Y-86715600D01* +X75184000Y-80162400D02* +X77851000Y-80162400D01* +X75641200Y-86715600D02* +X75641200Y-84785200D01* +X78892400Y-78536800D02* +X79349600Y-78079600D01* +D31* +%TO.N,/SWCLK*% +X82250000Y-83940000D02* +X81185400Y-83940000D01* +X80772000Y-84353400D02* +X80772000Y-85191600D01* +X81185400Y-83940000D02* +X80772000Y-84353400D01* +%TO.N,/SWDIO*% +X78790800Y-86188800D02* +X78790800Y-85902800D01* +X79837500Y-82527500D02* +X79837500Y-83535300D01* +X79837500Y-83535300D02* +X79184500Y-84188300D01* +X78790800Y-85902800D02* +X79206480Y-85487120D01* +X79206480Y-85487120D02* +X79206480Y-84210280D01* +X79206480Y-84210280D02* +X79184500Y-84188300D01* +%TO.N,/BOOT0*% +X81470000Y-87440000D02* +X80445588Y-88464412D01* +X82250000Y-87440000D02* +X81470000Y-87440000D01* +%TO.N,/NRST*% +X77837500Y-90852500D02* +X77837500Y-89419900D01* +X77837500Y-89419900D02* +X77825600Y-89408000D01* +D29* +%TO.N,Net-(J37-PadA5)*% +X109096800Y-58470800D02* +X107137200Y-58470800D01* +D31* +%TO.N,/DP*% +X105660500Y-57759600D02* +X105660500Y-59160100D01* +X104190800Y-58166000D02* +X105254100Y-58166000D01* +X105660500Y-59160100D02* +X105511600Y-59309000D01* +X105254100Y-58166000D02* +X105660500Y-57759600D01* +D29* +%TO.N,Net-(J37-PadB5)*% +X103047800Y-58039000D02* +X103047800Y-56286400D01* +X101092000Y-56286400D02* +X100431600Y-56946800D01* +X103047800Y-56286400D02* +X101092000Y-56286400D01* +X100431600Y-56946800D02* +X100431600Y-59105800D01* +%TO.N,/USBDM*% +X93802200Y-61823600D02* +X93802200Y-63373000D01* +X89021262Y-65582800D02* +X88376431Y-66227631D01* +D31* +X78837500Y-80903100D02* +X81457800Y-78282800D01* +D29* +X93751400Y-61772800D02* +X93802200Y-61823600D01* +D31* +X81457800Y-78282800D02* +X81635600Y-78282800D01* +D29* +X91592400Y-65582800D02* +X89021262Y-65582800D01* +X93802200Y-63373000D02* +X91592400Y-65582800D01* +X84074000Y-68783200D02* +X84074000Y-69088000D01* +X91160600Y-61772800D02* +X93751400Y-61772800D01* +X86629569Y-66227631D02* +X84074000Y-68783200D01* +X88376431Y-66227631D02* +X86629569Y-66227631D01* +D31* +X78837500Y-82527500D02* +X78837500Y-80903100D01* +%TO.N,/USBDP*% +X81711800Y-79349600D02* +X82778600Y-78282800D01* +D29* +X85217000Y-68351400D02* +X85217000Y-69088000D01* +X91948000Y-66065400D02* +X89174380Y-66065400D01* +X89174380Y-66065400D02* +X88544400Y-66695380D01* +D31* +X79337500Y-81088900D02* +X81076800Y-79349600D01* +D29* +X87007700Y-66695380D02* +X86873020Y-66695380D01* +D31* +X79337500Y-82527500D02* +X79337500Y-81088900D01* +X81635600Y-79349600D02* +X81711800Y-79349600D01* +X81076800Y-79349600D02* +X81635600Y-79349600D01* +D29* +X88544400Y-66695380D02* +X87007700Y-66695380D01* +X86873020Y-66695380D02* +X85217000Y-68351400D01* +X92075000Y-65938400D02* +X91948000Y-66065400D01* +X94462600Y-63550800D02* +X92075000Y-65938400D01* +X94462600Y-59842400D02* +X94462600Y-63550800D01* +%TO.N,Net-(R2-Pad2)*% +X76631800Y-70002400D02* +X78232000Y-71602600D01* +X97383600Y-62128400D02* +X97993200Y-62128400D01* +X87236300Y-67144900D02* +X88811100Y-67144900D01* +X92938600Y-66573400D02* +X97383600Y-62128400D01* +X78232000Y-71602600D02* +X84810600Y-71602600D01* +X89382600Y-66573400D02* +X92938600Y-66573400D01* +X88811100Y-67144900D02* +X89382600Y-66573400D01* +X86067900Y-68313300D02* +X87236300Y-67144900D01* +X86067900Y-70345300D02* +X86067900Y-68313300D01* +X76631800Y-69265800D02* +X76631800Y-70002400D01* +X84810600Y-71602600D02* +X86067900Y-70345300D01* +%TD*% +%TA.AperFunction,Conductor*% +%TO.N,GND*% +G36* +X107231877Y-49029835D02* +G01* +X109069568Y-49115491D01* +X109078558Y-49116233D01* +X109208636Y-49131679D01* +X109273923Y-49159574D01* +X109313765Y-49218338D01* +X109315512Y-49289313D01* +X109278610Y-49349965D01* +X109272731Y-49354996D01* +X109226133Y-49392462D01* +X109217368Y-49401046D01* +X109098222Y-49543039D01* +X109091292Y-49553159D01* +X109001998Y-49715585D01* +X108997166Y-49726858D01* +X108941120Y-49903538D01* +X108938570Y-49915532D01* +X108922393Y-50059761D01* +X108922000Y-50066785D01* +X108922000Y-50147885D01* +X108926475Y-50163124D01* +X108927865Y-50164329D01* +X108935548Y-50166000D01* +X110919885Y-50166000D01* +X110935124Y-50161525D01* +X110936329Y-50160135D01* +X110938000Y-50152452D01* +X110938000Y-50073343D01* +X110937699Y-50067195D01* +X110924188Y-49929397D01* +X110921805Y-49917362D01* +X110868233Y-49739924D01* +X110863559Y-49728584D01* +X110776540Y-49564923D01* +X110769748Y-49554700D01* +X110752115Y-49533080D01* +X110724561Y-49467649D01* +X110736757Y-49397707D01* +X110784829Y-49345462D01* +X110853516Y-49327501D01* +X110864609Y-49328323D01* +X111982887Y-49461118D01* +X112582257Y-49532292D01* +X112592343Y-49533907D01* +X112906559Y-49597368D01* +X112937964Y-49608176D01* +X113800483Y-50039436D01* +X113828371Y-50058433D01* +X113946164Y-50164329D01* +X114529882Y-50689097D01* +X114556272Y-50722486D01* +X114976249Y-51492830D01* +X114980570Y-51503488D01* +X114981200Y-51503212D01* +X114984806Y-51511433D01* +X114987209Y-51520082D01* +X114991943Y-51527709D01* +X114991944Y-51527710D01* +X115017340Y-51568620D01* +X115020908Y-51574746D01* +X115028766Y-51589160D01* +X115033391Y-51595354D01* +X115039474Y-51604276D01* +X115059293Y-51636204D01* +X115059297Y-51636209D01* +X115064030Y-51643833D01* +X115071487Y-51650516D01* +X115088355Y-51668965D01* +X115088472Y-51669121D01* +X115093845Y-51676317D01* +X115129516Y-51703150D01* +X115137867Y-51710012D01* +X115172497Y-51741050D01* +X115180594Y-51744924D01* +X115181519Y-51745367D01* +X115202875Y-51758333D01* +X115210246Y-51763877D01* +X115218642Y-51767042D01* +X115218645Y-51767043D01* +X115252106Y-51779654D01* +X115262044Y-51783895D01* +X115273455Y-51789355D01* +X115290947Y-51794609D01* +X115299121Y-51797374D01* +X115346544Y-51815248D01* +X115355499Y-51815929D01* +X115364261Y-51817872D01* +X115364210Y-51818100D01* +X115377179Y-51820512D01* +X117816233Y-52553154D01* +X117828885Y-52557703D01* +X120992061Y-53889710D01* +X120999491Y-53893127D01* +X124167617Y-55476511D01* +X124178334Y-55482538D01* +X127073014Y-57301810D01* +X127088003Y-57312855D01* +X127197001Y-57406354D01* +X127572001Y-57728031D01* +X127596230Y-57755965D01* +X128088647Y-58528952D01* +X128103913Y-58552916D01* +X128115241Y-58575369D01* +X128452770Y-59452730D01* +X128473148Y-59505699D01* +X128481550Y-59550940D01* +X128481550Y-60564003D01* +X128479799Y-60584935D01* +X128407635Y-61013300D01* +X128406166Y-61022017D01* +X128406069Y-61022585D01* +X128391103Y-61108316D01* +X128392103Y-61117235D01* +X128392103Y-61117237D01* +X128394438Y-61138060D01* +X128395185Y-61155207D01* +X128394468Y-61184271D01* +X128396775Y-61192948D01* +X128396775Y-61192950D01* +X128403093Y-61216714D01* +X128403415Y-61218123D01* +X128403573Y-61219537D01* +X128404583Y-61223241D01* +X128404585Y-61223251D01* +X128414411Y-61259297D01* +X128414617Y-61260062D01* +X128431891Y-61325039D01* +X128432558Y-61326141D01* +X128432905Y-61327140D01* +X128554389Y-61772800D01* +X128650311Y-62124688D01* +X128653239Y-62142508D01* +X128654395Y-62148158D01* +X128654929Y-62157117D01* +X128657956Y-62165566D01* +X128657957Y-62165569D01* +X128670921Y-62201749D01* +X128673871Y-62211118D01* +X128677154Y-62223161D01* +X128678935Y-62227277D01* +X128683910Y-62238776D01* +X128686885Y-62246305D01* +X128692680Y-62262477D01* +X128695003Y-62266745D01* +X128695006Y-62266751D01* +X128697203Y-62270786D01* +X128702176Y-62280989D01* +X128720349Y-62322989D01* +X128726083Y-62329896D01* +X128727819Y-62331987D01* +X128741538Y-62352227D01* +X128897601Y-62638909D01* +X129204221Y-63202159D01* +X129209274Y-63212549D01* +X129227068Y-63253852D01* +X129232789Y-63260766D01* +X129232791Y-63260769D01* +X129264280Y-63298823D01* +X129268199Y-63303811D01* +X129301220Y-63348091D01* +X129308392Y-63353493D01* +X129308393Y-63353494D01* +X129338817Y-63376409D01* +X129346573Y-63382749D01* +X129556785Y-63569013D01* +X130054897Y-64010378D01* +X130074747Y-64027967D01* +X130080548Y-64033445D01* +X130118024Y-64071150D01* +X130157593Y-64092971D01* +X130159752Y-64094161D01* +X130168253Y-64099296D01* +X130170289Y-64100638D01* +X130208262Y-64125670D01* +X130263264Y-64142584D01* +X130269360Y-64144631D01* +X130788310Y-64333760D01* +X131156323Y-64467881D01* +X131166727Y-64472209D01* +X131189552Y-64482925D01* +X131207350Y-64491281D01* +X131237886Y-64496036D01* +X131262758Y-64499909D01* +X131269296Y-64501105D01* +X131315397Y-64510798D01* +X131315399Y-64510798D01* +X131324183Y-64512645D01* +X131372875Y-64508876D01* +X131382598Y-64508500D01* +X133066913Y-64508500D01* +X133093304Y-64511295D01* +X134120832Y-64731398D01* +X134154753Y-64743976D01* +X134802247Y-65096979D01* +X134909978Y-65155712D01* +X134924037Y-65163377D01* +X134952820Y-65184908D01* +X135213232Y-65445316D01* +X135506292Y-65738372D01* +X135686610Y-65918688D01* +X135703395Y-65939480D01* +X137264047Y-68358672D01* +X137340606Y-68477348D01* +X137346813Y-68488099D01* +X138917108Y-71546546D01* +X138926529Y-71564895D01* +X138931013Y-71574625D01* +X140247906Y-74785054D01* +X140262768Y-74821287D01* +X140266882Y-74832904D01* +X141254211Y-78124920D01* +X141262925Y-78153976D01* +X141265905Y-78166046D01* +X141396270Y-78834328D01* +X141931909Y-81580131D01* +X141933355Y-81589351D01* +X142349265Y-85080550D01* +X142350150Y-85095455D01* +X142350150Y-88495170D01* +X142349585Y-88507091D01* +X142017767Y-91998590D01* +X142015999Y-92010803D01* +X141909676Y-92555630D01* +X141351629Y-95415205D01* +X141350009Y-95423506D01* +X141347836Y-95432764D01* +X140966590Y-96819371D01* +X140434019Y-98756349D01* +X140429095Y-98770780D01* +X139100953Y-102007270D01* +X139096475Y-102016985D01* +X137514804Y-105097590D01* +X137509396Y-105107084D01* +X136725521Y-106354326D01* +X135688267Y-108004722D01* +X135677206Y-108019730D01* +X135247683Y-108520254D01* +X135226184Y-108540092D01* +X134441848Y-109110630D01* +X134404752Y-109129173D01* +X133498552Y-109407738D01* +X133461530Y-109413300D01* +X131935625Y-109413300D01* +X131929582Y-109412948D01* +X131924324Y-109411556D01* +X131915355Y-109411787D01* +X131915353Y-109411787D01* +X131858296Y-109413258D01* +X131855049Y-109413300D01* +X131828137Y-109413300D01* +X131823703Y-109413935D01* +X131821837Y-109414068D01* +X131817796Y-109414264D01* +X131817305Y-109414315D01* +X131812442Y-109414440D01* +X131807658Y-109415312D01* +X131807655Y-109415312D01* +X131786395Y-109419186D01* +X131781672Y-109419954D01* +X131729349Y-109427447D01* +X131729346Y-109427448D01* +X131720463Y-109428720D01* +X131713318Y-109431969D01* +X131703526Y-109434286D01* +X131218647Y-109522641D01* +X130881242Y-109584123D01* +X130866242Y-109585934D01* +X130850922Y-109586857D01* +X130840200Y-109587503D01* +X130840198Y-109587503D01* +X130831241Y-109588043D01* +X130769587Y-109610178D01* +X130766990Y-109611077D01* +X130735226Y-109621691D01* +X130704206Y-109632056D01* +X130696833Y-109637176D01* +X130672044Y-109654390D01* +X130660494Y-109661520D01* +X129891902Y-110080544D01* +X129770376Y-110146798D01* +X129767134Y-110148505D01* +X129709038Y-110178020D01* +X129702497Y-110184169D01* +X129702496Y-110184170D01* +X129682085Y-110203359D01* +X129671167Y-110212517D01* +X129641732Y-110234496D01* +X129636337Y-110241668D01* +X129636335Y-110241670D01* +X129600569Y-110289218D01* +X129599276Y-110290906D01* +X129487620Y-110434242D01* +X129207831Y-110793417D01* +X129050367Y-110995558D01* +X129033973Y-111012697D01* +X129033128Y-111013656D01* +X129026303Y-111019478D01* +X129000351Y-111059083D01* +X128994364Y-111067452D01* +X128988160Y-111075416D01* +X128981606Y-111086876D01* +X128979848Y-111089949D01* +X128975866Y-111096447D01* +X128964961Y-111113088D01* +X128962954Y-111117515D01* +X128961090Y-111121626D01* +X128955706Y-111132156D01* +X128934155Y-111169835D01* +X128931269Y-111181884D01* +X128923496Y-111204554D01* +X128614745Y-111885614D01* +X128529932Y-112072698D01* +X128529229Y-112074221D01* +X128502583Y-112130974D01* +X128502581Y-112130981D01* +X128498769Y-112139100D01* +X128497389Y-112147964D01* +X128497388Y-112147967D01* +X128493866Y-112170589D01* +X128490340Y-112186435D01* +X128483939Y-112208413D01* +X128483938Y-112208418D01* +X128481429Y-112217034D01* +X128481439Y-112226010D01* +X128481550Y-112325687D01* +X128481550Y-114078531D01* +X128478287Y-114107021D01* +X128256745Y-115061443D01* +X128246737Y-115089240D01* +X128087863Y-115407426D01* +X127838046Y-115907750D01* +X127826873Y-115930126D01* +X127798462Y-115967469D01* +X127080750Y-116613755D01* +X127064772Y-116625979D01* +X124505799Y-118277283D01* +X124497398Y-118282253D01* +X121956632Y-119655009D01* +X121425557Y-119941944D01* +X121410878Y-119948697D01* +X118173652Y-121193256D01* +X118164666Y-121196327D01* +X116521278Y-121689680D01* +X114918130Y-122170953D01* +X114827152Y-122198265D01* +X114817929Y-122200658D01* +X111411279Y-122948063D01* +X111396550Y-122950390D01* +X108045200Y-123278070D01* +X107997560Y-123282728D01* +X107985299Y-123283326D01* +X104493876Y-123283326D01* +X104481902Y-123282756D01* +X100984128Y-122948854D01* +X100974932Y-122947633D01* +X97567924Y-122366937D01* +X97552852Y-122363403D01* +X94231032Y-121365782D01* +X94222075Y-121362721D01* +X90983858Y-120118291D01* +X90969125Y-120111511D01* +X90655538Y-119941944D01* +X87894182Y-118448788D01* +X87887060Y-118444630D01* +X86278531Y-117433213D01* +X84985005Y-116619865D01* +X84970153Y-116608932D01* +X84469807Y-116180731D01* +X84449851Y-116159133D01* +X83932445Y-115447834D01* +X83879186Y-115374616D01* +X83860671Y-115337615D01* +X83770477Y-115045035D01* +X83580941Y-114430197D01* +X83575350Y-114393080D01* +X83575350Y-112954028D01* +X83575497Y-112951820D01* +X83576100Y-112949679D01* +X83575356Y-112873778D01* +X83575350Y-112872543D01* +X83575350Y-112845387D01* +X83575103Y-112843658D01* +X83575070Y-112842853D01* +X83575051Y-112842635D01* +X83575003Y-112837766D01* +X83569754Y-112806099D01* +X83569331Y-112803357D01* +X83561203Y-112746600D01* +X83561202Y-112746598D01* +X83559930Y-112737713D01* +X83558016Y-112733504D01* +X83556936Y-112728772D01* +X83551409Y-112695425D01* +X83405771Y-111816818D01* +X83404298Y-111803716D01* +X83402504Y-111773639D01* +X83401970Y-111764679D01* +X83382264Y-111709680D01* +X83380766Y-111705238D01* +X83364322Y-111653277D01* +X83364321Y-111653276D01* +X83361614Y-111644721D01* +X83356615Y-111637271D01* +X83356612Y-111637265D01* +X83336564Y-111607388D01* +X83330527Y-111597426D01* +X82895174Y-110797703D01* +X83940743Y-110797703D01* +X83978268Y-111082734D01* +X84054129Y-111360036D01* +X84055813Y-111363984D01* +X84161696Y-111612221D01* +X84166923Y-111624476D01* +X84180882Y-111647799D01* +X84282039Y-111816820D01* +X84314561Y-111871161D01* +X84494313Y-112095528D01* +X84702851Y-112293423D01* +X84936317Y-112461186D01* +X84940112Y-112463195D01* +X84940113Y-112463196D01* +X84961869Y-112474715D01* +X85190392Y-112595712D01* +X85460373Y-112694511D01* +X85741264Y-112755755D01* +X85769841Y-112758004D01* +X85964282Y-112773307D01* +X85964291Y-112773307D01* +X85966739Y-112773500D01* +X86122271Y-112773500D01* +X86124407Y-112773354D01* +X86124418Y-112773354D01* +X86332548Y-112759165D01* +X86332554Y-112759164D01* +X86336825Y-112758873D01* +X86341020Y-112758004D01* +X86341022Y-112758004D01* +X86482178Y-112728772D01* +X86618342Y-112700574D01* +X86889343Y-112604607D01* +X87144812Y-112472750D01* +X87148313Y-112470289D01* +X87148317Y-112470287D01* +X87353862Y-112325827D01* +X87380023Y-112307441D01* +X87590622Y-112111740D01* +X87772713Y-111889268D01* +X87922927Y-111644142D01* +X87925787Y-111637628D01* +X88036757Y-111384830D01* +X88038483Y-111380898D01* +X88117244Y-111104406D01* +X88157751Y-110819784D01* +X88157845Y-110801951D01* +X88157867Y-110797703D01* +X123770743Y-110797703D01* +X123808268Y-111082734D01* +X123884129Y-111360036D01* +X123885813Y-111363984D01* +X123991696Y-111612221D01* +X123996923Y-111624476D01* +X124010882Y-111647799D01* +X124112039Y-111816820D01* +X124144561Y-111871161D01* +X124324313Y-112095528D01* +X124532851Y-112293423D01* +X124766317Y-112461186D01* +X124770112Y-112463195D01* +X124770113Y-112463196D01* +X124791869Y-112474715D01* +X125020392Y-112595712D01* +X125290373Y-112694511D01* +X125571264Y-112755755D01* +X125599841Y-112758004D01* +X125794282Y-112773307D01* +X125794291Y-112773307D01* +X125796739Y-112773500D01* +X125952271Y-112773500D01* +X125954407Y-112773354D01* +X125954418Y-112773354D01* +X126162548Y-112759165D01* +X126162554Y-112759164D01* +X126166825Y-112758873D01* +X126171020Y-112758004D01* +X126171022Y-112758004D01* +X126312178Y-112728772D01* +X126448342Y-112700574D01* +X126719343Y-112604607D01* +X126974812Y-112472750D01* +X126978313Y-112470289D01* +X126978317Y-112470287D01* +X127183862Y-112325827D01* +X127210023Y-112307441D01* +X127420622Y-112111740D01* +X127602713Y-111889268D01* +X127752927Y-111644142D01* +X127755787Y-111637628D01* +X127866757Y-111384830D01* +X127868483Y-111380898D01* +X127947244Y-111104406D01* +X127987751Y-110819784D01* +X127987845Y-110801951D01* +X127989235Y-110536583D01* +X127989235Y-110536576D01* +X127989257Y-110532297D01* +X127976178Y-110432948D01* +X127952292Y-110251522D01* +X127951732Y-110247266D01* +X127939721Y-110203359D01* +X127915989Y-110116611D01* +X127875871Y-109969964D01* +X127860139Y-109933081D01* +X127764763Y-109709476D01* +X127764761Y-109709472D01* +X127763077Y-109705524D01* +X127680691Y-109567867D01* +X127617643Y-109462521D01* +X127617640Y-109462517D01* +X127615439Y-109458839D01* +X127435687Y-109234472D01* +X127227149Y-109036577D01* +X126993683Y-108868814D01* +X126971843Y-108857250D01* +X126948654Y-108844972D01* +X126739608Y-108734288D01* +X126469627Y-108635489D01* +X126188736Y-108574245D01* +X126157685Y-108571801D01* +X125965718Y-108556693D01* +X125965709Y-108556693D01* +X125963261Y-108556500D01* +X125807729Y-108556500D01* +X125805593Y-108556646D01* +X125805582Y-108556646D01* +X125597452Y-108570835D01* +X125597446Y-108570836D01* +X125593175Y-108571127D01* +X125588980Y-108571996D01* +X125588978Y-108571996D01* +X125474047Y-108595797D01* +X125311658Y-108629426D01* +X125040657Y-108725393D01* +X124785188Y-108857250D01* +X124781687Y-108859711D01* +X124781683Y-108859713D01* +X124771594Y-108866804D01* +X124549977Y-109022559D01* +X124534892Y-109036577D01* +X124344295Y-109213691D01* +X124339378Y-109218260D01* +X124157287Y-109440732D01* +X124007073Y-109685858D01* +X124005347Y-109689791D01* +X124005346Y-109689792D01* +X123904939Y-109918526D01* +X123891517Y-109949102D01* +X123890342Y-109953229D01* +X123890341Y-109953230D01* +X123872187Y-110016960D01* +X123812756Y-110225594D01* +X123772249Y-110510216D01* +X123772227Y-110514505D01* +X123772226Y-110514512D01* +X123770772Y-110792094D01* +X123770743Y-110797703D01* +X88157867Y-110797703D01* +X88159235Y-110536583D01* +X88159235Y-110536576D01* +X88159257Y-110532297D01* +X88146178Y-110432948D01* +X88122292Y-110251522D01* +X88121732Y-110247266D01* +X88109721Y-110203359D01* +X88085989Y-110116611D01* +X88045871Y-109969964D01* +X88030139Y-109933081D01* +X87934763Y-109709476D01* +X87934761Y-109709472D01* +X87933077Y-109705524D01* +X87850691Y-109567867D01* +X87787643Y-109462521D01* +X87787640Y-109462517D01* +X87785439Y-109458839D01* +X87605687Y-109234472D01* +X87397149Y-109036577D01* +X87163683Y-108868814D01* +X87141843Y-108857250D01* +X87118654Y-108844972D01* +X86909608Y-108734288D01* +X86639627Y-108635489D01* +X86358736Y-108574245D01* +X86327685Y-108571801D01* +X86135718Y-108556693D01* +X86135709Y-108556693D01* +X86133261Y-108556500D01* +X85977729Y-108556500D01* +X85975593Y-108556646D01* +X85975582Y-108556646D01* +X85767452Y-108570835D01* +X85767446Y-108570836D01* +X85763175Y-108571127D01* +X85758980Y-108571996D01* +X85758978Y-108571996D01* +X85644047Y-108595797D01* +X85481658Y-108629426D01* +X85210657Y-108725393D01* +X84955188Y-108857250D01* +X84951687Y-108859711D01* +X84951683Y-108859713D01* +X84941594Y-108866804D01* +X84719977Y-109022559D01* +X84704892Y-109036577D01* +X84514295Y-109213691D01* +X84509378Y-109218260D01* +X84327287Y-109440732D01* +X84177073Y-109685858D01* +X84175347Y-109689791D01* +X84175346Y-109689792D01* +X84074939Y-109918526D01* +X84061517Y-109949102D01* +X84060342Y-109953229D01* +X84060341Y-109953230D01* +X84042187Y-110016960D01* +X83982756Y-110225594D01* +X83942249Y-110510216D01* +X83942227Y-110514505D01* +X83942226Y-110514512D01* +X83940772Y-110792094D01* +X83940743Y-110797703D01* +X82895174Y-110797703D01* +X82843938Y-110703585D01* +X82842382Y-110700634D01* +X82815496Y-110647972D01* +X82815495Y-110647971D01* +X82811416Y-110639981D01* +X82805260Y-110633459D01* +X82805258Y-110633456D01* +X82786342Y-110613416D01* +X82776966Y-110602253D01* +X82761048Y-110580908D01* +X82755679Y-110573708D01* +X82720060Y-110546880D01* +X82701419Y-110532839D01* +X82699993Y-110531749D01* +X81993268Y-109983488D01* +X81978261Y-109969145D01* +X81975460Y-109966670D01* +X81969645Y-109959837D01* +X81962144Y-109954909D01* +X81962140Y-109954905D01* +X81928925Y-109933081D01* +X81920883Y-109927334D01* +X81918069Y-109925151D01* +X81912388Y-109920744D01* +X81908498Y-109918529D01* +X81908493Y-109918526D01* +X81903044Y-109915424D01* +X81899090Y-109913173D01* +X81892256Y-109908989D01* +X81876110Y-109898380D01* +X81871679Y-109896365D01* +X81871674Y-109896362D01* +X81866373Y-109893951D01* +X81856202Y-109888756D01* +X81825662Y-109871369D01* +X81825660Y-109871368D01* +X81817861Y-109866928D01* +X81806967Y-109864342D01* +X81783905Y-109856445D01* +X80916332Y-109461863D01* +X80914961Y-109461229D01* +X80909871Y-109458839D01* +X80849550Y-109430519D01* +X80818448Y-109425676D01* +X80802458Y-109422108D01* +X80780851Y-109415787D01* +X80780850Y-109415787D01* +X80772236Y-109413267D01* +X80763259Y-109413266D01* +X80763258Y-109413266D01* +X80626930Y-109413252D01* +X80626579Y-109413252D01* +X80626466Y-109413285D01* +X80626257Y-109413300D01* +X78910929Y-109413300D01* +X78882619Y-109410078D01* +X78872471Y-109407738D01* +X77927143Y-109189766D01* +X77899111Y-109179688D01* +X77060006Y-108760137D01* +X77022731Y-108731763D01* +X76374995Y-108012581D01* +X76362723Y-107996536D01* +X74712638Y-105437363D01* +X74707691Y-105428998D01* +X73048141Y-102358775D01* +X73041386Y-102344102D01* +X71924977Y-99442169D01* +X71795362Y-99105255D01* +X71792274Y-99096219D01* +X71791242Y-99092776D01* +X70878940Y-96050954D01* +X70791778Y-95760335D01* +X70789402Y-95751176D01* +X70414208Y-94043467D01* +X70040624Y-92343085D01* +X70038283Y-92328264D01* +X70029867Y-92241828D01* +X69920365Y-91117310D01* +X69933671Y-91047572D01* +X69982568Y-90996098D01* +X70051532Y-90979231D01* +X70108772Y-90995980D01* +X70111941Y-90997810D01* +X70117279Y-91001688D01* +X70123306Y-91004371D01* +X70123307Y-91004372D01* +X70123310Y-91004373D01* +X70296544Y-91081502D01* +X70392515Y-91101901D01* +X70482028Y-91120928D01* +X70482032Y-91120928D01* +X70488485Y-91122300D01* +X70684715Y-91122300D01* +X70691168Y-91120928D01* +X70691172Y-91120928D01* +X70780685Y-91101901D01* +X70876656Y-91081502D01* +X70952864Y-91047572D01* +X71049891Y-91004373D01* +X71049893Y-91004372D01* +X71055921Y-91001688D01* +X71063615Y-90996098D01* +X71209330Y-90890230D01* +X71209332Y-90890228D01* +X71214674Y-90886347D01* +X71242333Y-90855629D01* +X71341558Y-90745428D01* +X71341559Y-90745427D01* +X71345977Y-90740520D01* +X71444092Y-90570580D01* +X71504730Y-90383955D01* +X71509472Y-90338844D01* +X71524552Y-90195365D01* +X71525242Y-90188800D01* +X71513840Y-90080321D01* +X71505420Y-90000209D01* +X71505420Y-90000208D01* +X71504730Y-89993645D01* +X71484427Y-89931157D01* +X71450892Y-89827948D01* +X71444092Y-89807020D01* +X71412211Y-89751800D01* +X71395473Y-89682804D01* +X71412211Y-89625800D01* +X71440788Y-89576303D01* +X71440789Y-89576302D01* +X71444092Y-89570580D01* +X71484215Y-89447093D01* +X71502690Y-89390234D01* +X71502690Y-89390233D01* +X71504730Y-89383955D01* +X71514306Y-89292852D01* +X71524552Y-89195365D01* +X71525242Y-89188800D01* +X71512232Y-89065022D01* +X71505420Y-89000209D01* +X71505420Y-89000208D01* +X71504730Y-88993645D01* +X71494674Y-88962694D01* +X71446134Y-88813305D01* +X71444092Y-88807020D01* +X71412211Y-88751800D01* +X71395473Y-88682804D01* +X71412211Y-88625800D01* +X71440788Y-88576303D01* +X71440789Y-88576302D01* +X71444092Y-88570580D01* +X71500410Y-88397251D01* +X71502690Y-88390234D01* +X71502690Y-88390233D01* +X71504730Y-88383955D01* +X71522733Y-88212676D01* +X71524552Y-88195365D01* +X71525242Y-88188800D01* +X71504730Y-87993645D01* +X71444092Y-87807020D01* +X71411922Y-87751300D01* +X71395184Y-87682305D01* +X71411922Y-87625299D01* +X71440334Y-87576088D01* +X71445673Y-87564096D01* +X71479485Y-87460032D01* +X71479888Y-87445932D01* +X71473517Y-87442800D01* +X71188924Y-87442800D01* +X71120803Y-87422798D01* +X71114863Y-87418736D01* +X71061263Y-87379793D01* +X71061262Y-87379792D01* +X71055921Y-87375912D01* +X71049893Y-87373228D01* +X71049891Y-87373227D01* +X70894195Y-87303907D01* +X70840099Y-87257927D01* +X70819450Y-87190000D01* +X70838802Y-87121691D01* +X70894195Y-87073693D01* +X71049891Y-87004373D01* +X71049893Y-87004372D01* +X71055921Y-87001688D01* +X71114863Y-86958864D01* +X71181731Y-86935006D01* +X71188924Y-86934800D01* +X71466969Y-86934800D01* +X71480500Y-86930827D01* +X71481510Y-86923800D01* +X71445673Y-86813504D01* +X71440334Y-86801512D01* +X71411922Y-86752301D01* +X71395184Y-86683306D01* +X71411922Y-86626300D01* +X71440788Y-86576303D01* +X71440789Y-86576302D01* +X71444092Y-86570580D01* +X71494527Y-86415358D01* +X71502690Y-86390234D01* +X71502690Y-86390233D01* +X71504730Y-86383955D01* +X71515965Y-86277068D01* +X71524552Y-86195365D01* +X71525242Y-86188800D01* +X71504730Y-85993645D01* +X71489522Y-85946838D01* +X71475433Y-85903475D01* +X71473406Y-85832508D01* +X71477284Y-85820311D01* +X71510571Y-85731518D01* +X71510573Y-85731512D01* +X71513345Y-85724116D01* +X71520100Y-85661934D01* +X71520100Y-85064595D01* +X71540102Y-84996474D01* +X71593758Y-84949981D01* +X71664032Y-84939877D01* +X71728612Y-84969371D01* +X71735195Y-84975500D01* +X71897395Y-85137700D01* +X71931421Y-85200012D01* +X71934300Y-85226795D01* +X71934300Y-88306539D01* +X71933773Y-88317722D01* +X71932098Y-88325215D01* +X71932347Y-88333141D01* +X71932347Y-88333142D01* +X71934238Y-88393292D01* +X71934300Y-88397251D01* +X71934300Y-88425162D01* +X71934797Y-88429096D01* +X71934797Y-88429097D01* +X71934805Y-88429162D01* +X71935738Y-88440999D01* +X71937127Y-88485195D01* +X71942778Y-88504645D01* +X71946787Y-88524006D01* +X71949326Y-88544103D01* +X71952245Y-88551474D01* +X71952245Y-88551476D01* +X71965604Y-88585218D01* +X71969449Y-88596448D01* +X71981782Y-88638899D01* +X71985815Y-88645718D01* +X71985817Y-88645723D01* +X71992093Y-88656334D01* +X72000788Y-88674082D01* +X72008248Y-88692923D01* +X72012910Y-88699339D01* +X72012910Y-88699340D01* +X72034236Y-88728693D01* +X72040752Y-88738613D01* +X72063258Y-88776668D01* +X72077579Y-88790989D01* +X72090419Y-88806022D01* +X72102328Y-88822413D01* +X72134213Y-88848790D01* +X72136393Y-88850594D01* +X72145174Y-88858584D01* +X72618847Y-89332258D01* +X72626381Y-89340537D01* +X72630494Y-89347018D01* +X72639081Y-89355081D01* +X72639252Y-89355242D01* +X72640881Y-89358014D01* +X72641325Y-89358551D01* +X72641238Y-89358623D01* +X72675218Y-89416454D01* +X72679000Y-89447093D01* +X72679000Y-89553244D01* +X72694019Y-89667324D01* +X72697178Y-89674951D01* +X72697179Y-89674954D01* +X72723416Y-89738296D01* +X72752814Y-89809268D01* +X72846343Y-89931157D01* +X72852893Y-89936183D01* +X72852894Y-89936184D01* +X72907288Y-89977922D01* +X72968233Y-90024686D01* +X73110176Y-90083481D01* +X73162928Y-90090426D01* +X73220169Y-90097962D01* +X73220170Y-90097962D01* +X73224256Y-90098500D01* +X74553000Y-90098500D01* +X74621121Y-90118502D01* +X74667614Y-90172158D01* +X74679000Y-90224500D01* +X74679000Y-91553244D01* +X74694019Y-91667324D01* +X74752814Y-91809268D01* +X74846343Y-91931157D01* +X74851598Y-91935190D01* +X74885262Y-91996838D01* +X74880197Y-92067653D01* +X74851314Y-92112638D01* +X74733746Y-92230412D01* +X74733742Y-92230417D01* +X74728571Y-92235597D01* +X74637291Y-92383680D01* +X74582526Y-92548791D01* +X74572000Y-92651528D01* +X74572000Y-93225672D01* +X74582793Y-93329693D01* +X74637846Y-93494707D01* +X74729384Y-93642631D01* +X74734566Y-93647804D01* +X74847316Y-93760358D01* +X74847321Y-93760362D01* +X74852497Y-93765529D01* +X75000580Y-93856809D01* +X75165691Y-93911574D01* +X75172527Y-93912274D01* +X75172530Y-93912275D01* +X75219870Y-93917125D01* +X75268428Y-93922100D01* +X75967572Y-93922100D01* +X75970818Y-93921763D01* +X75970822Y-93921763D01* +X76064735Y-93912019D01* +X76064739Y-93912018D01* +X76071593Y-93911307D01* +X76078129Y-93909126D01* +X76078131Y-93909126D01* +X76210895Y-93864832D01* +X76236607Y-93856254D01* +X76384531Y-93764716D01* +X76391774Y-93757461D01* +X76393538Y-93756495D01* +X76395441Y-93754987D01* +X76395699Y-93755313D01* +X76454054Y-93723381D01* +X76524875Y-93728382D01* +X76569970Y-93757308D01* +X76572631Y-93759964D01* +X76584040Y-93768975D01* +X76719563Y-93852512D01* +X76732741Y-93858656D01* +X76884266Y-93908915D01* +X76897632Y-93911781D01* +X76990270Y-93921272D01* +X76996685Y-93921600D01* +X77070885Y-93921600D01* +X77086124Y-93917125D01* +X77087329Y-93915735D01* +X77089000Y-93908052D01* +X77089000Y-92428939D01* +X77109002Y-92360818D01* +X77125905Y-92339844D01* +X77233734Y-92232015D01* +X77246125Y-92221148D01* +X77264937Y-92206713D01* +X77271487Y-92201687D01* +X77295974Y-92169775D01* +X77295978Y-92169771D01* +X77363143Y-92082240D01* +X77420481Y-92040373D01* +X77491352Y-92036151D01* +X77511320Y-92042534D01* +X77519215Y-92045804D01* +X77574497Y-92090351D01* +X77597000Y-92162214D01* +X77597000Y-93903485D01* +X77601475Y-93918724D01* +X77602865Y-93919929D01* +X77604783Y-93920346D01* +X77667095Y-93954371D01* +X77701120Y-94016683D01* +X77704000Y-94043467D01* +X77704000Y-94715105D01* +X77683998Y-94783226D01* +X77667095Y-94804201D01* +X77139622Y-95331673D01* +X77077310Y-95365698D01* +X77017916Y-95364284D01* +X76986571Y-95355885D01* +X76767200Y-95336693D01* +X76547829Y-95355885D01* +X76335124Y-95412880D01* +X76250647Y-95452272D01* +X76140534Y-95503618D01* +X76140529Y-95503621D01* +X76135547Y-95505944D01* +X76131040Y-95509100D01* +X76131038Y-95509101D01* +X75959673Y-95629092D01* +X75959670Y-95629094D01* +X75955162Y-95632251D01* +X75799451Y-95787962D01* +X75673144Y-95968347D01* +X75670821Y-95973329D01* +X75670818Y-95973334D01* +X75638362Y-96042937D01* +X75580080Y-96167924D01* +X75523085Y-96380629D01* +X75503893Y-96600000D01* +X75523085Y-96819371D01* +X75580080Y-97032076D01* +X75582405Y-97037061D01* +X75670818Y-97226666D01* +X75670821Y-97226671D01* +X75673144Y-97231653D01* +X75799451Y-97412038D01* +X75955162Y-97567749D01* +X76135546Y-97694056D01* +X76335124Y-97787120D01* +X76547829Y-97844115D01* +X76767200Y-97863307D01* +X76986571Y-97844115D01* +X77199276Y-97787120D01* +X77398854Y-97694056D01* +X77579238Y-97567749D01* +X77734949Y-97412038D01* +X77861256Y-97231653D01* +X77863579Y-97226671D01* +X77863582Y-97226666D01* +X77951995Y-97037061D01* +X77954320Y-97032076D01* +X78011315Y-96819371D01* +X78030507Y-96600000D01* +X78011315Y-96380629D01* +X78009892Y-96375319D01* +X78009891Y-96375312D01* +X78002916Y-96349281D01* +X78004606Y-96278304D01* +X78035528Y-96227576D01* +X78729747Y-95533357D01* +X78738037Y-95525813D01* +X78744518Y-95521700D01* +X78791159Y-95472032D01* +X78793913Y-95469191D01* +X78813635Y-95449469D01* +X78816112Y-95446276D01* +X78823817Y-95437255D01* +X78848659Y-95410800D01* +X78854086Y-95405021D01* +X78857907Y-95398071D01* +X78863846Y-95387268D01* +X78874702Y-95370741D01* +X78882257Y-95361002D01* +X78882258Y-95361000D01* +X78887114Y-95354740D01* +X78904674Y-95314160D01* +X78909891Y-95303512D01* +X78927375Y-95271709D01* +X78927376Y-95271707D01* +X78931195Y-95264760D01* +X78936233Y-95245137D01* +X78942637Y-95226434D01* +X78947533Y-95215120D01* +X78947533Y-95215119D01* +X78950681Y-95207845D01* +X78951920Y-95200022D01* +X78951923Y-95200012D01* +X78957599Y-95164176D01* +X78960005Y-95152556D01* +X78969029Y-95117409D01* +X78969030Y-95117405D01* +X78971000Y-95109730D01* +X78971000Y-95105152D01* +X78998784Y-95041441D01* +X79057842Y-95002037D01* +X79128828Y-95000818D01* +X79184506Y-95033211D01* +X80378872Y-96227577D01* +X80412898Y-96289889D01* +X80411484Y-96349283D01* +X80403085Y-96380629D01* +X80383893Y-96600000D01* +X80403085Y-96819371D01* +X80460080Y-97032076D01* +X80462405Y-97037061D01* +X80550818Y-97226666D01* +X80550821Y-97226671D01* +X80553144Y-97231653D01* +X80679451Y-97412038D01* +X80835162Y-97567749D01* +X81015546Y-97694056D01* +X81215124Y-97787120D01* +X81427829Y-97844115D01* +X81647200Y-97863307D01* +X81866571Y-97844115D01* +X82079276Y-97787120D01* +X82278854Y-97694056D01* +X82459238Y-97567749D01* +X82614949Y-97412038D01* +X82741256Y-97231653D01* +X82743579Y-97226671D01* +X82743582Y-97226666D01* +X82831995Y-97037061D01* +X82834320Y-97032076D01* +X82891315Y-96819371D01* +X82910507Y-96600000D01* +X82891315Y-96380629D01* +X82834320Y-96167924D01* +X82776038Y-96042937D01* +X82743582Y-95973334D01* +X82743579Y-95973329D01* +X82741256Y-95968347D01* +X82614949Y-95787962D01* +X82459238Y-95632251D01* +X82449139Y-95625179D01* +X82379959Y-95576739D01* +X82278854Y-95505944D01* +X82079276Y-95412880D01* +X81866571Y-95355885D01* +X81647200Y-95336693D01* +X81427829Y-95355885D01* +X81422514Y-95357309D01* +X81422515Y-95357309D01* +X81396483Y-95364284D01* +X81325506Y-95362594D01* +X81274777Y-95331672D01* +X79507905Y-93564800D01* +X79473879Y-93502488D01* +X79471000Y-93475705D01* +X79471000Y-92208834D01* +X79491002Y-92140713D01* +X79544658Y-92094220D01* +X79613446Y-92083912D01* +X79720169Y-92097962D01* +X79720170Y-92097962D01* +X79724256Y-92098500D01* +X79950744Y-92098500D01* +X79954830Y-92097962D01* +X79954831Y-92097962D01* +X80064824Y-92083481D01* +X80065027Y-92085026D01* +X80109973Y-92085026D01* +X80110176Y-92083481D01* +X80220169Y-92097962D01* +X80220170Y-92097962D01* +X80224256Y-92098500D01* +X80450744Y-92098500D01* +X80454830Y-92097962D01* +X80454831Y-92097962D01* +X80564824Y-92083481D01* +X80565027Y-92085026D01* +X80609973Y-92085026D01* +X80610176Y-92083481D01* +X80720169Y-92097962D01* +X80720170Y-92097962D01* +X80724256Y-92098500D01* +X80950744Y-92098500D01* +X80954830Y-92097962D01* +X80954831Y-92097962D01* +X81012641Y-92090351D01* +X81064824Y-92083481D01* +X81072451Y-92080322D01* +X81072454Y-92080321D01* +X81135796Y-92054084D01* +X81206768Y-92024686D01* +X81328657Y-91931157D01* +X81422186Y-91809267D01* +X81480981Y-91667324D01* +X81488204Y-91612460D01* +X81516927Y-91547533D01* +X81576192Y-91508442D01* +X81647183Y-91507597D01* +X81707362Y-91545267D01* +X81732650Y-91589031D01* +X81775246Y-91716707D01* +X81866784Y-91864631D01* +X81871966Y-91869804D01* +X81984716Y-91982358D01* +X81984721Y-91982362D01* +X81989897Y-91987529D01* +X81996127Y-91991369D01* +X81996128Y-91991370D01* +X82131113Y-92074576D01* +X82137980Y-92078809D01* +X82303091Y-92133574D01* +X82309927Y-92134274D01* +X82309930Y-92134275D01* +X82357026Y-92139100D01* +X82405828Y-92144100D01* +X83104972Y-92144100D01* +X83108218Y-92143763D01* +X83108222Y-92143763D01* +X83202135Y-92134019D01* +X83202139Y-92134018D01* +X83208993Y-92133307D01* +X83215529Y-92131126D01* +X83215531Y-92131126D01* +X83362059Y-92082240D01* +X83374007Y-92078254D01* +X83521931Y-91986716D01* +X83529174Y-91979461D01* +X83530938Y-91978495D01* +X83532841Y-91976987D01* +X83533099Y-91977313D01* +X83591454Y-91945381D01* +X83662275Y-91950382D01* +X83707370Y-91979308D01* +X83710031Y-91981964D01* +X83721440Y-91990975D01* +X83856963Y-92074512D01* +X83870141Y-92080656D01* +X84021666Y-92130915D01* +X84035032Y-92133781D01* +X84127670Y-92143272D01* +X84134085Y-92143600D01* +X84208285Y-92143600D01* +X84223524Y-92139125D01* +X84224729Y-92137735D01* +X84226400Y-92130052D01* +X84226400Y-92125485D01* +X84734400Y-92125485D01* +X84738875Y-92140724D01* +X84740265Y-92141929D01* +X84747948Y-92143600D01* +X84826666Y-92143600D01* +X84833182Y-92143263D01* +X84927032Y-92133525D01* +X84940428Y-92130632D01* +X85091853Y-92080112D01* +X85105015Y-92073947D01* +X85240392Y-91990174D01* +X85251790Y-91981140D01* +X85364263Y-91868471D01* +X85373275Y-91857060D01* +X85456812Y-91721537D01* +X85462956Y-91708359D01* +X85513215Y-91556834D01* +X85516081Y-91543468D01* +X85525572Y-91450830D01* +X85525900Y-91444415D01* +X85525900Y-91432715D01* +X85521425Y-91417476D01* +X85520035Y-91416271D01* +X85512352Y-91414600D01* +X84752515Y-91414600D01* +X84737276Y-91419075D01* +X84736071Y-91420465D01* +X84734400Y-91428148D01* +X84734400Y-92125485D01* +X84226400Y-92125485D01* +X84226400Y-90888485D01* +X84734400Y-90888485D01* +X84738875Y-90903724D01* +X84740265Y-90904929D01* +X84747948Y-90906600D01* +X85507785Y-90906600D01* +X85523024Y-90902125D01* +X85524229Y-90900735D01* +X85525900Y-90893052D01* +X85525900Y-90876834D01* +X85525563Y-90870318D01* +X85515825Y-90776468D01* +X85512932Y-90763072D01* +X85462412Y-90611647D01* +X85456247Y-90598485D01* +X85372474Y-90463108D01* +X85363440Y-90451710D01* +X85250771Y-90339237D01* +X85239360Y-90330225D01* +X85103837Y-90246688D01* +X85090659Y-90240544D01* +X84939134Y-90190285D01* +X84925768Y-90187419D01* +X84833130Y-90177928D01* +X84826715Y-90177600D01* +X84752515Y-90177600D01* +X84737276Y-90182075D01* +X84736071Y-90183465D01* +X84734400Y-90191148D01* +X84734400Y-90888485D01* +X84226400Y-90888485D01* +X84226400Y-90195715D01* +X84221925Y-90180476D01* +X84220535Y-90179271D01* +X84212852Y-90177600D01* +X84134134Y-90177600D01* +X84127618Y-90177937D01* +X84033768Y-90187675D01* +X84020372Y-90190568D01* +X83868947Y-90241088D01* +X83855785Y-90247253D01* +X83720408Y-90331026D01* +X83709006Y-90340064D01* +X83707333Y-90341739D01* +X83705907Y-90342519D01* +X83703273Y-90344607D01* +X83702916Y-90344156D01* +X83645051Y-90375819D01* +X83574231Y-90370816D01* +X83529146Y-90341899D01* +X83526085Y-90338844D01* +X83520903Y-90333671D01* +X83372820Y-90242391D01* +X83284424Y-90213071D01* +X83226065Y-90172642D01* +X83198828Y-90107078D01* +X83211361Y-90037196D01* +X83247388Y-89993517D01* +X83322104Y-89936185D01* +X83328657Y-89931157D01* +X83333686Y-89924604D01* +X83404347Y-89832515D01* +X83422186Y-89809267D01* +X83480981Y-89667324D01* +X83496000Y-89553244D01* +X83496000Y-89326756D01* +X83480981Y-89212676D01* +X83482266Y-89212507D01* +X83482265Y-89167427D01* +X83480494Y-89167194D01* +X83488292Y-89107960D01* +X83486081Y-89093778D01* +X83466716Y-89088217D01* +X83406763Y-89050189D01* +X83401533Y-89043816D01* +X83380729Y-89016704D01* +X83355128Y-88950484D01* +X83369392Y-88880935D01* +X83380729Y-88863295D01* +X83401603Y-88836092D01* +X83458942Y-88794225D01* +X83466067Y-88791901D01* +X83486313Y-88785956D01* +X83488342Y-88772417D01* +X83480494Y-88712806D01* +X83482265Y-88712573D01* +X83482266Y-88667493D01* +X83480981Y-88667324D01* +X83495462Y-88557331D01* +X83495462Y-88557330D01* +X83496000Y-88553244D01* +X83496000Y-88326756D01* +X83480981Y-88212676D01* +X83482526Y-88212473D01* +X83482526Y-88167527D01* +X83480981Y-88167324D01* +X83495462Y-88057331D01* +X83495462Y-88057330D01* +X83496000Y-88053244D01* +X83496000Y-87826756D01* +X83480981Y-87712676D01* +X83482526Y-87712473D01* +X83482526Y-87667527D01* +X83480981Y-87667324D01* +X83495462Y-87557331D01* +X83495462Y-87557330D01* +X83496000Y-87553244D01* +X83496000Y-87326756D01* +X83484741Y-87241232D01* +X83480981Y-87212676D01* +X83482526Y-87212473D01* +X83482526Y-87167527D01* +X83480981Y-87167324D01* +X83495462Y-87057331D01* +X83495462Y-87057330D01* +X83496000Y-87053244D01* +X83496000Y-86826756D01* +X83480981Y-86712676D01* +X83482526Y-86712473D01* +X83482526Y-86667527D01* +X83480981Y-86667324D01* +X83495462Y-86557331D01* +X83495462Y-86557330D01* +X83496000Y-86553244D01* +X83496000Y-86326756D01* +X83480981Y-86212676D01* +X83482526Y-86212473D01* +X83482526Y-86167527D01* +X83480981Y-86167324D01* +X83495462Y-86057331D01* +X83495462Y-86057330D01* +X83496000Y-86053244D01* +X83496000Y-85826756D01* +X83495152Y-85820311D01* +X83480981Y-85712676D01* +X83482526Y-85712473D01* +X83482526Y-85667527D01* +X83480981Y-85667324D01* +X83495462Y-85557331D01* +X83495462Y-85557330D01* +X83496000Y-85553244D01* +X83496000Y-85326756D01* +X83480981Y-85212676D01* +X83482526Y-85212473D01* +X83482526Y-85167527D01* +X83480981Y-85167324D01* +X83495462Y-85057331D01* +X83495462Y-85057330D01* +X83496000Y-85053244D01* +X83496000Y-84826756D01* +X83480981Y-84712676D01* +X83482526Y-84712473D01* +X83482526Y-84667527D01* +X83480981Y-84667324D01* +X83495462Y-84557331D01* +X83495462Y-84557330D01* +X83496000Y-84553244D01* +X83496000Y-84326756D01* +X83480981Y-84212676D01* +X83482526Y-84212473D01* +X83482526Y-84167527D01* +X83480981Y-84167324D01* +X83495462Y-84057331D01* +X83495462Y-84057330D01* +X83496000Y-84053244D01* +X83496000Y-83826756D01* +X83480981Y-83712676D01* +X83469955Y-83686055D01* +X83428214Y-83585286D01* +X83422186Y-83570732D01* +X83402215Y-83544705D01* +X83376616Y-83478485D01* +X83390882Y-83408936D01* +X83413006Y-83378985D01* +X83431616Y-83360343D01* +X83503929Y-83287903D01* +X83517159Y-83266440D01* +X83591369Y-83146050D01* +X83591370Y-83146048D01* +X83595209Y-83139820D01* +X83649974Y-82974709D01* +X83653230Y-82942935D01* +X83657530Y-82900958D01* +X83660500Y-82871972D01* +X83660500Y-82172828D01* +X83656700Y-82136204D01* +X83650419Y-82075665D01* +X83650418Y-82075661D01* +X83649707Y-82068807D01* +X83594654Y-81903793D01* +X83503116Y-81755869D01* +X83495861Y-81748626D01* +X83494895Y-81746862D01* +X83493387Y-81744959D01* +X83493713Y-81744701D01* +X83461781Y-81686346D01* +X83466782Y-81615525D01* +X83495708Y-81570430D01* +X83498364Y-81567769D01* +X83507375Y-81556360D01* +X83590912Y-81420837D01* +X83597056Y-81407659D01* +X83647315Y-81256134D01* +X83650181Y-81242768D01* +X83659672Y-81150130D01* +X83660000Y-81143715D01* +X83660000Y-81069515D01* +X83655525Y-81054276D01* +X83654135Y-81053071D01* +X83646452Y-81051400D01* +X81712115Y-81051400D01* +X81696876Y-81055875D01* +X81695671Y-81057265D01* +X81694000Y-81064948D01* +X81694000Y-81143666D01* +X81694337Y-81150182D01* +X81704075Y-81244032D01* +X81706968Y-81257428D01* +X81757488Y-81408853D01* +X81763653Y-81422015D01* +X81847426Y-81557392D01* +X81856464Y-81568794D01* +X81858139Y-81570467D01* +X81858919Y-81571893D01* +X81861007Y-81574527D01* +X81860556Y-81574884D01* +X81892219Y-81632749D01* +X81887216Y-81703569D01* +X81858299Y-81748654D01* +X81856260Y-81750697D01* +X81850071Y-81756897D01* +X81846231Y-81763127D01* +X81846230Y-81763128D01* +X81787062Y-81859116D01* +X81734290Y-81906609D01* +X81679802Y-81919000D01* +X81618643Y-81919000D01* +X81550522Y-81898998D01* +X81504029Y-81845342D01* +X81493721Y-81809446D01* +X81482059Y-81720864D01* +X81480981Y-81712676D01* +X81466920Y-81678728D01* +X81433915Y-81599049D01* +X81422186Y-81570732D01* +X81328657Y-81448843D01* +X81278272Y-81410181D01* +X81249616Y-81388193D01* +X81206767Y-81355314D01* +X81064824Y-81296519D01* +X80977261Y-81284991D01* +X80954831Y-81282038D01* +X80954830Y-81282038D01* +X80950744Y-81281500D01* +X80724256Y-81281500D01* +X80720170Y-81282038D01* +X80720169Y-81282038D01* +X80610176Y-81296519D01* +X80610007Y-81295234D01* +X80564927Y-81295235D01* +X80564694Y-81297006D01* +X80505460Y-81289208D01* +X80491278Y-81291419D01* +X80485717Y-81310784D01* +X80447689Y-81370737D01* +X80441316Y-81375967D01* +X80414204Y-81396771D01* +X80347984Y-81422372D01* +X80278435Y-81408108D01* +X80260795Y-81396771D01* +X80233592Y-81375897D01* +X80191725Y-81318558D01* +X80189401Y-81311433D01* +X80182005Y-81286245D01* +X80147378Y-81232363D01* +X80147378Y-81161366D01* +X80179179Y-81107770D01* +X81291944Y-79995005D01* +X81354256Y-79960979D01* +X81381039Y-79958100D01* +X81663664Y-79958100D01* +X81680096Y-79959176D01* +X81686400Y-79960006D01* +X81751325Y-79988726D01* +X81790419Y-80047989D01* +X81791266Y-80118981D01* +X81777216Y-80151042D01* +X81763089Y-80173961D01* +X81756944Y-80187141D01* +X81706685Y-80338666D01* +X81703819Y-80352032D01* +X81694328Y-80444670D01* +X81694000Y-80451085D01* +X81694000Y-80525285D01* +X81698475Y-80540524D01* +X81699865Y-80541729D01* +X81707548Y-80543400D01* +X82404885Y-80543400D01* +X82420124Y-80538925D01* +X82421329Y-80537535D01* +X82423000Y-80529852D01* +X82423000Y-80525285D01* +X82931000Y-80525285D01* +X82935475Y-80540524D01* +X82936865Y-80541729D01* +X82944548Y-80543400D01* +X83641885Y-80543400D01* +X83657124Y-80538925D01* +X83658329Y-80537535D01* +X83660000Y-80529852D01* +X83660000Y-80451134D01* +X83659663Y-80444618D01* +X83649925Y-80350768D01* +X83647032Y-80337372D01* +X83596512Y-80185947D01* +X83590347Y-80172785D01* +X83506574Y-80037408D01* +X83497540Y-80026010D01* +X83384871Y-79913537D01* +X83373460Y-79904525D01* +X83237937Y-79820988D01* +X83224759Y-79814844D01* +X83073234Y-79764585D01* +X83059868Y-79761719D01* +X82967230Y-79752228D01* +X82960815Y-79751900D01* +X82949115Y-79751900D01* +X82933876Y-79756375D01* +X82932671Y-79757765D01* +X82931000Y-79765448D01* +X82931000Y-80525285D01* +X82423000Y-80525285D01* +X82423000Y-79770015D01* +X82418525Y-79754776D01* +X82395441Y-79734773D01* +X82375993Y-79724155D01* +X82341965Y-79661844D01* +X82347026Y-79591028D01* +X82375989Y-79545960D01* +X82693744Y-79228205D01* +X82756056Y-79194179D01* +X82782839Y-79191300D01* +X82874087Y-79191300D01* +X82880539Y-79189928D01* +X82880544Y-79189928D01* +X82967487Y-79171447D01* +X83060888Y-79151594D01* +X83066919Y-79148909D01* +X83229322Y-79076603D01* +X83229324Y-79076602D01* +X83235352Y-79073918D01* +X83389853Y-78961666D01* +X83517640Y-78819744D01* +X83613127Y-78654356D01* +X83672142Y-78472728D01* +X83678321Y-78413944D01* +X83691414Y-78289365D01* +X83692104Y-78282800D01* +X83684637Y-78211759D01* +X83672832Y-78099435D01* +X83672832Y-78099433D01* +X83672142Y-78092872D01* +X83613127Y-77911244D01* +X83517640Y-77745856D01* +X83389853Y-77603934D01* +X83247306Y-77500367D01* +X83240694Y-77495563D01* +X83240693Y-77495562D01* +X83235352Y-77491682D01* +X83229324Y-77488998D01* +X83229322Y-77488997D01* +X83066919Y-77416691D01* +X83066918Y-77416691D01* +X83060888Y-77414006D01* +X82965013Y-77393627D01* +X82880544Y-77375672D01* +X82880539Y-77375672D01* +X82874087Y-77374300D01* +X82683113Y-77374300D01* +X82676661Y-77375672D01* +X82676656Y-77375672D01* +X82592187Y-77393627D01* +X82496312Y-77414006D01* +X82490282Y-77416691D01* +X82490281Y-77416691D01* +X82327878Y-77488997D01* +X82327876Y-77488998D01* +X82321848Y-77491682D01* +X82316507Y-77495562D01* +X82316506Y-77495563D01* +X82281161Y-77521243D01* +X82214294Y-77545101D01* +X82145142Y-77529021D01* +X82133039Y-77521243D01* +X82097694Y-77495563D01* +X82097693Y-77495562D01* +X82092352Y-77491682D01* +X82086324Y-77488998D01* +X82086322Y-77488997D01* +X81923919Y-77416691D01* +X81923918Y-77416691D01* +X81917888Y-77414006D01* +X81822013Y-77393627D01* +X81737544Y-77375672D01* +X81737539Y-77375672D01* +X81731087Y-77374300D01* +X81540113Y-77374300D01* +X81533661Y-77375672D01* +X81533656Y-77375672D01* +X81449187Y-77393627D01* +X81353312Y-77414006D01* +X81347282Y-77416691D01* +X81347281Y-77416691D01* +X81184878Y-77488997D01* +X81184876Y-77488998D01* +X81178848Y-77491682D01* +X81173507Y-77495562D01* +X81173506Y-77495563D01* +X81166894Y-77500367D01* +X81024347Y-77603934D01* +X80896560Y-77745856D01* +X80801073Y-77911244D01* +X80793424Y-77934786D01* +X80787733Y-77952300D01* +X80747659Y-78010906D01* +X80682263Y-78038543D01* +X80612306Y-78026436D01* +X80560000Y-77978430D01* +X80541900Y-77913364D01* +X80541900Y-74203195D01* +X80561902Y-74135074D01* +X80578805Y-74114099D01* +X81027301Y-73665604D01* +X81089613Y-73631579D01* +X81116396Y-73628700D01* +X81172287Y-73628700D01* +X81178739Y-73627328D01* +X81178744Y-73627328D01* +X81270797Y-73607761D01* +X81359088Y-73588994D01* +X81378422Y-73580386D01* +X81527522Y-73514003D01* +X81527524Y-73514002D01* +X81533552Y-73511318D01* +X81545278Y-73502799D01* +X81610807Y-73455189D01* +X81688053Y-73399066D01* +X81733367Y-73348740D01* +X81811421Y-73262052D01* +X81811422Y-73262051D01* +X81815840Y-73257144D01* +X81911327Y-73091756D01* +X81970342Y-72910128D01* +X81990304Y-72720200D01* +X81970342Y-72530272D01* +X81928350Y-72401035D01* +X81926322Y-72330069D01* +X81962985Y-72269271D01* +X82026697Y-72237946D01* +X82048183Y-72236100D01* +X84731833Y-72236100D01* +X84743016Y-72236627D01* +X84750509Y-72238302D01* +X84758435Y-72238053D01* +X84758436Y-72238053D01* +X84818586Y-72236162D01* +X84822545Y-72236100D01* +X84850456Y-72236100D01* +X84854391Y-72235603D01* +X84854456Y-72235595D01* +X84866293Y-72234662D01* +X84898551Y-72233648D01* +X84902570Y-72233522D01* +X84910489Y-72233273D01* +X84929943Y-72227621D01* +X84949300Y-72223613D01* +X84961530Y-72222068D01* +X84961531Y-72222068D01* +X84969397Y-72221074D01* +X84976768Y-72218155D01* +X84976770Y-72218155D01* +X85010512Y-72204796D01* +X85021742Y-72200951D01* +X85056583Y-72190829D01* +X85056584Y-72190829D01* +X85064193Y-72188618D01* +X85071012Y-72184585D01* +X85071017Y-72184583D01* +X85081628Y-72178307D01* +X85099376Y-72169612D01* +X85118217Y-72162152D01* +X85153987Y-72136164D01* +X85163907Y-72129648D01* +X85195135Y-72111180D01* +X85195138Y-72111178D01* +X85201962Y-72107142D01* +X85216283Y-72092821D01* +X85231317Y-72079980D01* +X85233031Y-72078735D01* +X85247707Y-72068072D01* +X85275898Y-72033995D01* +X85283888Y-72025216D01* +X86065355Y-71243749D01* +X86127667Y-71209723D01* +X86198482Y-71214788D01* +X86255318Y-71257335D01* +X86280129Y-71323855D01* +X86280450Y-71332844D01* +X86280450Y-105134274D01* +X86278834Y-105154387D01* +X86275306Y-105176204D01* +X86276417Y-105185108D01* +X86276417Y-105185109D01* +X86280019Y-105213971D01* +X86280450Y-105218366D01* +X86280450Y-105222013D01* +X86283616Y-105244114D01* +X86284738Y-105251950D01* +X86285024Y-105254081D01* +X86289164Y-105287261D01* +X86290169Y-105290775D01* +X86290903Y-105295005D01* +X86295870Y-105329687D01* +X86299586Y-105337859D01* +X86306644Y-105353383D01* +X86313084Y-105370883D01* +X86460141Y-105884982D01* +X86463136Y-105898041D01* +X86469912Y-105936996D01* +X86473870Y-105945052D01* +X86473871Y-105945054D01* +X86497240Y-105992614D01* +X86499159Y-105996703D01* +X86524037Y-106052284D01* +X86529547Y-106058755D01* +X86530307Y-106059912D01* +X86534146Y-106067725D01* +X86540204Y-106074344D01* +X86576219Y-106113694D01* +X86579206Y-106117078D01* +X86612646Y-106156351D01* +X86618466Y-106163186D01* +X86625965Y-106168110D01* +X86625968Y-106168112D01* +X86654374Y-106186761D01* +X86663969Y-106193728D01* +X86854289Y-106346110D01* +X87007057Y-106468426D01* +X87014117Y-106474717D01* +X87018683Y-106480747D01* +X87025890Y-106486093D01* +X87025893Y-106486096D01* +X87067978Y-106517313D01* +X87071662Y-106520154D01* +X87090817Y-106535490D01* +X87094676Y-106537766D01* +X87098365Y-106540312D01* +X87098362Y-106540317D01* +X87104277Y-106544239D01* +X87135669Y-106567525D01* +X87144092Y-106570635D01* +X87144095Y-106570637D01* +X87150358Y-106572950D01* +X87170720Y-106582618D01* +X87184507Y-106590750D01* +X87193208Y-106592957D01* +X87222957Y-106600503D01* +X87235614Y-106604432D01* +X87240658Y-106606295D01* +X87262851Y-106610777D01* +X87268832Y-106612139D01* +X87299338Y-106619877D01* +X87316988Y-106624354D01* +X87316990Y-106624354D01* +X87325694Y-106626562D01* +X87334670Y-106626238D01* +X87338865Y-106626685D01* +X87350448Y-106628468D01* +X87632580Y-106685446D01* +X87644473Y-106688458D01* +X87644821Y-106688565D01* +X87652950Y-106692381D01* +X87711184Y-106701448D01* +X87716688Y-106702432D01* +X87738336Y-106706804D01* +X87743650Y-106707107D01* +X87755831Y-106708401D01* +X87758715Y-106708850D01* +X87758723Y-106708851D01* +X87763536Y-106709600D01* +X87783718Y-106709600D01* +X87790899Y-106709805D01* +X87846932Y-106713004D01* +X87855682Y-106710979D01* +X87864621Y-106710215D01* +X87864679Y-106710896D01* +X87876029Y-106709600D01* +X124216438Y-106709600D01* +X124231069Y-106710452D01* +X124258121Y-106713615D01* +X124258123Y-106713615D01* +X124267036Y-106714657D01* +X124330757Y-106703843D01* +X124333977Y-106703340D01* +X124389050Y-106695453D01* +X124389052Y-106695453D01* +X124397937Y-106694180D01* +X124434486Y-106677562D01* +X124446691Y-106672763D01* +X124642671Y-106607258D01* +X124854657Y-106536403D01* +X124859982Y-106534968D01* +X124865029Y-106534654D01* +X124927808Y-106511991D01* +X124930647Y-106511004D01* +X124952452Y-106503716D01* +X124952457Y-106503714D01* +X124956699Y-106502296D01* +X124960702Y-106500289D01* +X124961130Y-106500111D01* +X124966678Y-106497959D01* +X124993590Y-106488243D01* +X124993592Y-106488242D01* +X125002032Y-106485195D01* +X125009273Y-106479905D01* +X125009279Y-106479902D01* +X125018146Y-106473424D01* +X125035994Y-106462534D01* +X125045903Y-106457565D01* +X125045907Y-106457562D01* +X125053932Y-106453538D01* +X125079794Y-106429478D01* +X125084849Y-106425304D01* +X125084773Y-106425215D01* +X125088480Y-106422040D01* +X125092404Y-106419174D01* +X125111267Y-106400310D01* +X125114541Y-106397152D01* +X125154006Y-106360438D01* +X125160576Y-106354326D01* +X125164422Y-106347867D01* +X125170755Y-106340823D01* +X125512719Y-105998855D01* +X125525442Y-105987735D01* +X125550124Y-105968925D01* +X125597011Y-105905303D01* +X125597582Y-105904536D01* +X125629756Y-105861605D01* +X125629757Y-105861603D01* +X125634522Y-105855245D01* +X125635164Y-105853532D01* +X125636537Y-105851669D01* +X125663363Y-105778318D01* +X125663643Y-105777563D01* +X125685650Y-105718856D01* +X125688168Y-105684976D01* +X125690235Y-105669777D01* +X125694620Y-105647714D01* +X125753005Y-105353886D01* +X125755675Y-105343276D01* +X125759231Y-105335700D01* +X125761595Y-105320517D01* +X125768288Y-105277533D01* +X125769204Y-105272361D01* +X125773007Y-105253224D01* +X125773879Y-105248837D01* +X125774120Y-105244368D01* +X125774122Y-105244355D01* +X125774135Y-105244114D01* +X125775450Y-105231538D01* +X125775701Y-105229924D01* +X125776450Y-105225114D01* +X125776450Y-105204590D01* +X125776633Y-105197801D01* +X125778276Y-105167347D01* +X125779740Y-105140223D01* +X125777688Y-105131481D01* +X125776941Y-105123051D01* +X125776450Y-105111934D01* +X125776450Y-68858274D01* +X125796452Y-68790153D01* +X125850108Y-68743660D01* +X125920382Y-68733556D01* +X125984962Y-68763050D01* +X125991545Y-68769179D01* +X126564195Y-69341829D01* +X126598221Y-69404141D01* +X126601100Y-69430924D01* +X126601100Y-70816591D01* +X126581098Y-70884712D01* +X126527442Y-70931205D01* +X126521906Y-70933503D01* +X126521304Y-70933832D01* +X126512895Y-70936985D01* +X126396339Y-71024339D01* +X126308985Y-71140895D01* +X126257855Y-71277284D01* +X126251100Y-71339466D01* +X126251100Y-73135734D01* +X126257855Y-73197916D01* +X126308985Y-73334305D01* +X126396339Y-73450861D01* +X126512895Y-73538215D01* +X126649284Y-73589345D01* +X126711466Y-73596100D01* +X128507734Y-73596100D01* +X128569916Y-73589345D01* +X128706305Y-73538215D01* +X128822861Y-73450861D01* +X128910215Y-73334305D01* +X128961345Y-73197916D01* +X128963262Y-73180269D01* +X129969801Y-73180269D01* +X129970171Y-73187090D01* +X129975695Y-73237952D01* +X129979321Y-73253204D01* +X130024476Y-73373654D01* +X130033014Y-73389249D01* +X130109515Y-73491324D01* +X130122076Y-73503885D01* +X130224151Y-73580386D01* +X130239746Y-73588924D01* +X130360194Y-73634078D01* +X130375449Y-73637705D01* +X130426314Y-73643231D01* +X130433128Y-73643600D01* +X130955685Y-73643600D01* +X130970924Y-73639125D01* +X130972129Y-73637735D01* +X130973800Y-73630052D01* +X130973800Y-72407715D01* +X130969325Y-72392476D01* +X130967935Y-72391271D01* +X130960252Y-72389600D01* +X129987916Y-72389600D01* +X129972677Y-72394075D01* +X129971472Y-72395465D01* +X129969801Y-72403148D01* +X129969801Y-73180269D01* +X128963262Y-73180269D01* +X128968100Y-73135734D01* +X128968100Y-71863485D01* +X129969800Y-71863485D01* +X129974275Y-71878724D01* +X129975665Y-71879929D01* +X129983348Y-71881600D01* +X130955685Y-71881600D01* +X130970924Y-71877125D01* +X130972129Y-71875735D01* +X130973800Y-71868052D01* +X130973800Y-70645716D01* +X130969325Y-70630477D01* +X130967935Y-70629272D01* +X130960252Y-70627601D01* +X130433131Y-70627601D01* +X130426310Y-70627971D01* +X130375448Y-70633495D01* +X130360196Y-70637121D01* +X130239746Y-70682276D01* +X130224151Y-70690814D01* +X130122076Y-70767315D01* +X130109515Y-70779876D01* +X130033014Y-70881951D01* +X130024476Y-70897546D01* +X129979322Y-71017994D01* +X129975695Y-71033249D01* +X129970169Y-71084114D01* +X129969800Y-71090928D01* +X129969800Y-71863485D01* +X128968100Y-71863485D01* +X128968100Y-71339466D01* +X128961345Y-71277284D01* +X128910215Y-71140895D01* +X128822861Y-71024339D01* +X128706305Y-70936985D01* +X128697896Y-70933833D01* +X128690025Y-70929523D01* +X128690936Y-70927859D01* +X128643110Y-70891937D01* +X128618407Y-70825376D01* +X128618100Y-70816591D01* +X128618100Y-69430926D01* +X128638102Y-69362805D01* +X128655004Y-69341831D01* +X129387429Y-68609405D01* +X129449742Y-68575380D01* +X129476525Y-68572500D01* +X131247253Y-68572500D01* +X131315374Y-68592502D01* +X131361867Y-68646158D01* +X131371971Y-68716432D01* +X131366846Y-68738167D01* +X131360763Y-68756507D01* +X131357895Y-68769886D01* +X131348228Y-68864238D01* +X131347900Y-68870655D01* +X131347900Y-69120685D01* +X131352375Y-69135924D01* +X131353765Y-69137129D01* +X131361448Y-69138800D01* +X132571400Y-69138800D01* +X132639521Y-69158802D01* +X132686014Y-69212458D01* +X132697400Y-69264800D01* +X132697400Y-69520800D01* +X132677398Y-69588921D01* +X132623742Y-69635414D01* +X132571400Y-69646800D01* +X131366016Y-69646800D01* +X131350777Y-69651275D01* +X131349572Y-69652665D01* +X131347901Y-69660348D01* +X131347901Y-69914895D01* +X131348238Y-69921414D01* +X131358157Y-70017006D01* +X131361049Y-70030400D01* +X131412488Y-70184584D01* +X131418661Y-70197762D01* +X131503963Y-70335607D01* +X131512999Y-70347008D01* +X131578532Y-70412427D01* +X131612611Y-70474710D01* +X131607608Y-70545530D01* +X131565111Y-70602402D01* +X131516712Y-70620502D01* +X131517298Y-70622496D01* +X131484676Y-70632075D01* +X131483471Y-70633465D01* +X131481800Y-70641148D01* +X131481800Y-73625484D01* +X131486275Y-73640723D01* +X131487665Y-73641928D01* +X131495348Y-73643599D01* +X132022469Y-73643599D01* +X132029290Y-73643229D01* +X132080152Y-73637705D01* +X132095404Y-73634079D01* +X132215854Y-73588924D01* +X132231448Y-73580386D01* +X132301818Y-73527647D01* +X132368324Y-73502799D01* +X132437707Y-73517852D01* +X132452948Y-73527647D01* +X132531095Y-73586215D01* +X132539503Y-73589367D01* +X132660086Y-73634572D01* +X132660089Y-73634573D01* +X132667484Y-73637345D01* +X132673253Y-73637972D01* +X132734091Y-73672726D01* +X132766913Y-73735681D01* +X132769300Y-73760093D01* +X132769300Y-76801100D01* +X132749298Y-76869221D01* +X132695642Y-76915714D01* +X132643300Y-76927100D01* +X131579666Y-76927100D01* +X131517484Y-76933855D01* +X131381095Y-76984985D01* +X131264539Y-77072339D01* +X131177185Y-77188895D01* +X131126055Y-77325284D01* +X131119300Y-77387466D01* +X131119300Y-79483734D01* +X131126055Y-79545916D01* +X131177185Y-79682305D01* +X131264539Y-79798861D01* +X131381095Y-79886215D01* +X131517484Y-79937345D01* +X131579666Y-79944100D01* +X132446300Y-79944100D01* +X132514421Y-79964102D01* +X132560914Y-80017758D01* +X132572300Y-80070100D01* +X132572300Y-80712316D01* +X132565893Y-80751983D01* +X132562982Y-80760761D01* +X132545326Y-80813991D01* +X132544626Y-80820827D01* +X132544625Y-80820830D01* +X132542134Y-80845145D01* +X132534800Y-80916728D01* +X132534800Y-81490872D01* +X132535137Y-81494118D01* +X132535137Y-81494122D01* +X132538735Y-81528799D01* +X132545593Y-81594893D01* +X132547392Y-81600285D01* +X132550100Y-81625649D01* +X132550100Y-82887321D01* +X132530098Y-82955442D01* +X132476442Y-83001935D01* +X132463977Y-83006844D01* +X132366607Y-83039330D01* +X132366605Y-83039331D01* +X132359654Y-83041650D01* +X132209252Y-83134722D01* +X132084295Y-83259897D01* +X132080455Y-83266127D01* +X132080454Y-83266128D01* +X132032849Y-83343358D01* +X131991485Y-83410462D01* +X131978755Y-83448843D01* +X131940499Y-83564182D01* +X131935803Y-83578339D01* +X131925100Y-83682800D01* +X131925100Y-83752300D01* +X131905098Y-83820421D01* +X131851442Y-83866914D01* +X131799100Y-83878300D01* +X131552033Y-83878300D01* +X131505343Y-83869330D01* +X131385549Y-83821537D01* +X131380180Y-83819395D01* +X131180366Y-83779649D01* +X131174592Y-83779573D01* +X131174588Y-83779573D01* +X131071452Y-83778224D01* +X130976655Y-83776983D01* +X130970958Y-83777962D01* +X130970957Y-83777962D01* +X130781567Y-83810505D01* +X130775870Y-83811484D01* +X130584734Y-83881998D01* +X130409649Y-83986163D01* +X130256478Y-84120490D01* +X130252911Y-84125015D01* +X130252906Y-84125020D01* +X130200546Y-84191439D01* +X130130351Y-84280481D01* +X130127662Y-84285592D01* +X130127660Y-84285595D01* +X130103836Y-84330878D01* +X130035492Y-84460778D01* +X129975078Y-84655343D01* +X129951132Y-84857659D01* +X129964457Y-85060951D01* +X130014605Y-85258410D01* +X130099898Y-85443424D01* +X130217479Y-85609797D01* +X130245159Y-85636762D01* +X130355847Y-85744589D01* +X130363410Y-85751957D01* +X130368206Y-85755162D01* +X130368209Y-85755164D01* +X130465709Y-85820311D01* +X130532803Y-85865142D01* +X130538106Y-85867420D01* +X130538109Y-85867422D01* +X130630569Y-85907146D01* +X130719987Y-85945563D01* +X130761680Y-85954997D01* +X130913055Y-85989250D01* +X130913060Y-85989251D01* +X130918692Y-85990525D01* +X130924463Y-85990752D01* +X130924465Y-85990752D01* +X130987470Y-85993227D01* +X131122263Y-85998523D01* +X131323883Y-85969290D01* +X131329347Y-85967435D01* +X131329352Y-85967434D01* +X131516799Y-85903804D01* +X131517107Y-85904711D01* +X131561381Y-85895300D01* +X131914517Y-85895300D01* +X131982638Y-85915302D01* +X132021661Y-85954997D01* +X132048596Y-85998523D01* +X132085122Y-86057548D01* +X132210297Y-86182505D01* +X132216527Y-86186345D01* +X132216528Y-86186346D01* +X132353888Y-86271016D01* +X132360862Y-86275315D01* +X132440605Y-86301764D01* +X132522211Y-86328832D01* +X132522213Y-86328832D01* +X132528739Y-86330997D01* +X132535575Y-86331697D01* +X132535578Y-86331698D01* +X132578631Y-86336109D01* +X132633200Y-86341700D01* +X132674100Y-86341700D01* +X132742221Y-86361702D01* +X132788714Y-86415358D01* +X132800100Y-86467700D01* +X132800100Y-88075900D01* +X132780098Y-88144021D01* +X132726442Y-88190514D01* +X132674100Y-88201900D01* +X132451866Y-88201900D01* +X132389684Y-88208655D01* +X132253295Y-88259785D01* +X132136739Y-88347139D01* +X132049385Y-88463695D01* +X131998255Y-88600084D01* +X131991500Y-88662266D01* +X131991500Y-90458534D01* +X131998255Y-90520716D01* +X132049385Y-90657105D01* +X132136739Y-90773661D01* +X132253295Y-90861015D01* +X132389684Y-90912145D01* +X132451866Y-90918900D01* +X134248134Y-90918900D01* +X134310316Y-90912145D01* +X134446705Y-90861015D01* +X134563261Y-90773661D01* +X134650615Y-90657105D01* +X134701745Y-90520716D01* +X134708500Y-90458534D01* +X134708500Y-90455069D01* +X137275201Y-90455069D01* +X137275571Y-90461890D01* +X137281095Y-90512752D01* +X137284721Y-90528004D01* +X137329876Y-90648454D01* +X137338414Y-90664049D01* +X137414915Y-90766124D01* +X137427476Y-90778685D01* +X137529551Y-90855186D01* +X137545146Y-90863724D01* +X137665594Y-90908878D01* +X137680849Y-90912505D01* +X137731714Y-90918031D01* +X137738528Y-90918400D01* +X138361085Y-90918400D01* +X138376324Y-90913925D01* +X138377529Y-90912535D01* +X138379200Y-90904852D01* +X138379200Y-90900284D01* +X138887200Y-90900284D01* +X138891675Y-90915523D01* +X138893065Y-90916728D01* +X138900748Y-90918399D01* +X139527869Y-90918399D01* +X139534690Y-90918029D01* +X139585552Y-90912505D01* +X139600804Y-90908879D01* +X139721254Y-90863724D01* +X139736849Y-90855186D01* +X139838924Y-90778685D01* +X139851485Y-90766124D01* +X139927986Y-90664049D01* +X139936524Y-90648454D01* +X139981678Y-90528006D01* +X139985305Y-90512751D01* +X139990831Y-90461886D01* +X139991200Y-90455072D01* +X139991200Y-89832515D01* +X139986725Y-89817276D01* +X139985335Y-89816071D01* +X139977652Y-89814400D01* +X138905315Y-89814400D01* +X138890076Y-89818875D01* +X138888871Y-89820265D01* +X138887200Y-89827948D01* +X138887200Y-90900284D01* +X138379200Y-90900284D01* +X138379200Y-89832515D01* +X138374725Y-89817276D01* +X138373335Y-89816071D01* +X138365652Y-89814400D01* +X137293316Y-89814400D01* +X137278077Y-89818875D01* +X137276872Y-89820265D01* +X137275201Y-89827948D01* +X137275201Y-90455069D01* +X134708500Y-90455069D01* +X134708500Y-89288285D01* +X137275200Y-89288285D01* +X137279675Y-89303524D01* +X137281065Y-89304729D01* +X137288748Y-89306400D01* +X138361085Y-89306400D01* +X138376324Y-89301925D01* +X138377529Y-89300535D01* +X138379200Y-89292852D01* +X138379200Y-89288285D01* +X138887200Y-89288285D01* +X138891675Y-89303524D01* +X138893065Y-89304729D01* +X138900748Y-89306400D01* +X139973084Y-89306400D01* +X139988323Y-89301925D01* +X139989528Y-89300535D01* +X139991199Y-89292852D01* +X139991199Y-88665731D01* +X139990829Y-88658910D01* +X139985305Y-88608048D01* +X139981679Y-88592796D01* +X139936524Y-88472346D01* +X139927986Y-88456751D01* +X139851485Y-88354676D01* +X139838924Y-88342115D01* +X139736849Y-88265614D01* +X139721254Y-88257076D01* +X139600806Y-88211922D01* +X139585551Y-88208295D01* +X139534686Y-88202769D01* +X139527872Y-88202400D01* +X138905315Y-88202400D01* +X138890076Y-88206875D01* +X138888871Y-88208265D01* +X138887200Y-88215948D01* +X138887200Y-89288285D01* +X138379200Y-89288285D01* +X138379200Y-88220516D01* +X138374725Y-88205277D01* +X138373335Y-88204072D01* +X138365652Y-88202401D01* +X137738531Y-88202401D01* +X137731710Y-88202771D01* +X137680848Y-88208295D01* +X137665596Y-88211921D01* +X137545146Y-88257076D01* +X137529551Y-88265614D01* +X137427476Y-88342115D01* +X137414915Y-88354676D01* +X137338414Y-88456751D01* +X137329876Y-88472346D01* +X137284722Y-88592794D01* +X137281095Y-88608049D01* +X137275569Y-88658914D01* +X137275200Y-88665728D01* +X137275200Y-89288285D01* +X134708500Y-89288285D01* +X134708500Y-88662266D01* +X134701745Y-88600084D01* +X134650615Y-88463695D01* +X134563261Y-88347139D01* +X134446705Y-88259785D01* +X134434848Y-88255340D01* +X134398870Y-88241852D01* +X134342105Y-88199210D01* +X134317406Y-88132648D01* +X134317100Y-88123870D01* +X134317100Y-86467700D01* +X134337102Y-86399579D01* +X134390758Y-86353086D01* +X134443100Y-86341700D01* +X134484000Y-86341700D01* +X134487246Y-86341363D01* +X134487250Y-86341363D01* +X134582908Y-86331438D01* +X134582912Y-86331437D01* +X134589766Y-86330726D01* +X134596302Y-86328545D01* +X134596304Y-86328545D01* +X134728406Y-86284472D01* +X134757546Y-86274750D01* +X134907948Y-86181678D01* +X135032905Y-86056503D01* +X135068645Y-85998523D01* +X135121875Y-85912168D01* +X135121876Y-85912166D01* +X135125715Y-85905938D01* +X135181397Y-85738061D01* +X135192100Y-85633600D01* +X135192100Y-85630295D01* +X137025601Y-85630295D01* +X137025938Y-85636814D01* +X137035857Y-85732406D01* +X137038749Y-85745800D01* +X137090188Y-85899984D01* +X137096361Y-85913162D01* +X137181663Y-86051007D01* +X137190699Y-86062408D01* +X137305429Y-86176939D01* +X137316840Y-86185951D01* +X137454843Y-86271016D01* +X137468024Y-86277163D01* +X137622310Y-86328338D01* +X137635686Y-86331205D01* +X137730038Y-86340872D01* +X137736454Y-86341200D01* +X138386485Y-86341200D01* +X138401724Y-86336725D01* +X138402929Y-86335335D01* +X138404600Y-86327652D01* +X138404600Y-86323084D01* +X138912600Y-86323084D01* +X138917075Y-86338323D01* +X138918465Y-86339528D01* +X138926148Y-86341199D01* +X139580695Y-86341199D01* +X139587214Y-86340862D01* +X139682806Y-86330943D01* +X139696200Y-86328051D01* +X139850384Y-86276612D01* +X139863562Y-86270439D01* +X140001407Y-86185137D01* +X140012808Y-86176101D01* +X140127339Y-86061371D01* +X140136351Y-86049960D01* +X140221416Y-85911957D01* +X140227563Y-85898776D01* +X140278738Y-85744490D01* +X140281605Y-85731114D01* +X140291272Y-85636762D01* +X140291600Y-85630346D01* +X140291600Y-84930315D01* +X140287125Y-84915076D01* +X140285735Y-84913871D01* +X140278052Y-84912200D01* +X138930715Y-84912200D01* +X138915476Y-84916675D01* +X138914271Y-84918065D01* +X138912600Y-84925748D01* +X138912600Y-86323084D01* +X138404600Y-86323084D01* +X138404600Y-84930315D01* +X138400125Y-84915076D01* +X138398735Y-84913871D01* +X138391052Y-84912200D01* +X137043716Y-84912200D01* +X137028477Y-84916675D01* +X137027272Y-84918065D01* +X137025601Y-84925748D01* +X137025601Y-85630295D01* +X135192100Y-85630295D01* +X135192100Y-84386085D01* +X137025600Y-84386085D01* +X137030075Y-84401324D01* +X137031465Y-84402529D01* +X137039148Y-84404200D01* +X138386485Y-84404200D01* +X138401724Y-84399725D01* +X138402929Y-84398335D01* +X138404600Y-84390652D01* +X138404600Y-84386085D01* +X138912600Y-84386085D01* +X138917075Y-84401324D01* +X138918465Y-84402529D01* +X138926148Y-84404200D01* +X140273484Y-84404200D01* +X140288723Y-84399725D01* +X140289928Y-84398335D01* +X140291599Y-84390652D01* +X140291599Y-83686105D01* +X140291262Y-83679586D01* +X140281343Y-83583994D01* +X140278451Y-83570600D01* +X140227012Y-83416416D01* +X140220839Y-83403238D01* +X140135537Y-83265393D01* +X140126501Y-83253992D01* +X140011771Y-83139461D01* +X140000360Y-83130449D01* +X139862357Y-83045384D01* +X139849176Y-83039237D01* +X139694890Y-82988062D01* +X139681514Y-82985195D01* +X139587162Y-82975528D01* +X139580745Y-82975200D01* +X138930715Y-82975200D01* +X138915476Y-82979675D01* +X138914271Y-82981065D01* +X138912600Y-82988748D01* +X138912600Y-84386085D01* +X138404600Y-84386085D01* +X138404600Y-82993316D01* +X138400125Y-82978077D01* +X138398735Y-82976872D01* +X138391052Y-82975201D01* +X137736505Y-82975201D01* +X137729986Y-82975538D01* +X137634394Y-82985457D01* +X137621000Y-82988349D01* +X137466816Y-83039788D01* +X137453638Y-83045961D01* +X137315793Y-83131263D01* +X137304392Y-83140299D01* +X137189861Y-83255029D01* +X137180849Y-83266440D01* +X137095784Y-83404443D01* +X137089637Y-83417624D01* +X137038462Y-83571910D01* +X137035595Y-83585286D01* +X137025928Y-83679638D01* +X137025600Y-83686055D01* +X137025600Y-84386085D01* +X135192100Y-84386085D01* +X135192100Y-83682800D01* +X135191763Y-83679550D01* +X135181838Y-83583892D01* +X135181837Y-83583888D01* +X135181126Y-83577034D01* +X135136681Y-83443815D01* +X135127468Y-83416202D01* +X135125150Y-83409254D01* +X135032078Y-83258852D01* +X134906903Y-83133895D01* +X134900672Y-83130054D01* +X134762568Y-83044925D01* +X134762566Y-83044924D01* +X134756338Y-83041085D01* +X134653433Y-83006953D01* +X134595073Y-82966522D01* +X134567836Y-82900958D01* +X134567100Y-82887360D01* +X134567100Y-82255797D01* +X134587102Y-82187676D01* +X134640758Y-82141183D01* +X134711032Y-82131079D01* +X134732767Y-82136204D01* +X134847065Y-82174115D01* +X134860432Y-82176981D01* +X134953070Y-82186472D01* +X134959485Y-82186800D01* +X135033685Y-82186800D01* +X135048924Y-82182325D01* +X135050129Y-82180935D01* +X135051800Y-82173252D01* +X135051800Y-82168685D01* +X135559800Y-82168685D01* +X135564275Y-82183924D01* +X135565665Y-82185129D01* +X135573348Y-82186800D01* +X135652066Y-82186800D01* +X135658582Y-82186463D01* +X135752432Y-82176725D01* +X135765828Y-82173832D01* +X135917253Y-82123312D01* +X135930415Y-82117147D01* +X136065792Y-82033374D01* +X136077190Y-82024340D01* +X136189663Y-81911671D01* +X136198675Y-81900260D01* +X136282212Y-81764737D01* +X136288356Y-81751559D01* +X136338615Y-81600034D01* +X136341481Y-81586668D01* +X136350972Y-81494030D01* +X136351300Y-81487615D01* +X136351300Y-81475915D01* +X136346825Y-81460676D01* +X136345435Y-81459471D01* +X136337752Y-81457800D01* +X135577915Y-81457800D01* +X135562676Y-81462275D01* +X135561471Y-81463665D01* +X135559800Y-81471348D01* +X135559800Y-82168685D01* +X135051800Y-82168685D01* +X135051800Y-80931685D01* +X135559800Y-80931685D01* +X135564275Y-80946924D01* +X135565665Y-80948129D01* +X135573348Y-80949800D01* +X136333185Y-80949800D01* +X136348424Y-80945325D01* +X136349629Y-80943935D01* +X136351300Y-80936252D01* +X136351300Y-80920034D01* +X136350963Y-80913518D01* +X136341225Y-80819668D01* +X136338332Y-80806272D01* +X136287812Y-80654847D01* +X136281647Y-80641685D01* +X136197874Y-80506308D01* +X136188840Y-80494910D01* +X136076171Y-80382437D01* +X136064760Y-80373425D01* +X135929237Y-80289888D01* +X135916059Y-80283744D01* +X135764534Y-80233485D01* +X135751168Y-80230619D01* +X135658530Y-80221128D01* +X135652115Y-80220800D01* +X135577915Y-80220800D01* +X135562676Y-80225275D01* +X135561471Y-80226665D01* +X135559800Y-80234348D01* +X135559800Y-80931685D01* +X135051800Y-80931685D01* +X135051800Y-80238915D01* +X135047325Y-80223676D01* +X135045935Y-80222471D01* +X135038252Y-80220800D01* +X134959534Y-80220800D01* +X134953018Y-80221137D01* +X134859168Y-80230875D01* +X134845771Y-80233768D01* +X134755176Y-80263993D01* +X134684226Y-80266577D01* +X134623142Y-80230393D01* +X134591318Y-80166929D01* +X134589300Y-80144469D01* +X134589300Y-80070100D01* +X134609302Y-80001979D01* +X134662958Y-79955486D01* +X134715300Y-79944100D01* +X135475934Y-79944100D01* +X135538116Y-79937345D01* +X135674505Y-79886215D01* +X135791061Y-79798861D01* +X135878415Y-79682305D01* +X135929545Y-79545916D01* +X135936300Y-79483734D01* +X135936300Y-77387466D01* +X135929545Y-77325284D01* +X135878415Y-77188895D01* +X135791061Y-77072339D01* +X135674505Y-76984985D01* +X135538116Y-76933855D01* +X135475934Y-76927100D01* +X134412300Y-76927100D01* +X134344179Y-76907098D01* +X134297686Y-76853442D01* +X134286300Y-76801100D01* +X134286300Y-73760093D01* +X134306302Y-73691972D01* +X134359958Y-73645479D01* +X134381563Y-73638057D01* +X134388116Y-73637345D01* +X134395511Y-73634573D01* +X134395514Y-73634572D01* +X134516097Y-73589367D01* +X134524505Y-73586215D01* +X134532283Y-73580386D01* +X134602235Y-73527960D01* +X134668742Y-73503112D01* +X134738124Y-73518165D01* +X134753365Y-73527960D01* +X134823317Y-73580386D01* +X134831095Y-73586215D01* +X134967484Y-73637345D01* +X135029666Y-73644100D01* +X136625934Y-73644100D01* +X136688116Y-73637345D01* +X136824505Y-73586215D01* +X136941061Y-73498861D01* +X137028415Y-73382305D01* +X137079545Y-73245916D01* +X137086300Y-73183734D01* +X137086300Y-71087466D01* +X137079545Y-71025284D01* +X137028415Y-70888895D01* +X136941061Y-70772339D01* +X136885098Y-70730397D01* +X136842583Y-70673538D01* +X136835264Y-70641866D01* +X136832109Y-70609688D01* +X136831987Y-70608374D01* +X136824423Y-70521919D01* +X136823887Y-70515787D01* +X136822400Y-70510668D01* +X136821880Y-70505367D01* +X136795018Y-70416394D01* +X136794662Y-70415194D01* +X136792596Y-70408083D01* +X136768709Y-70325863D01* +X136766255Y-70321129D01* +X136764716Y-70316031D01* +X136721116Y-70234031D01* +X136720502Y-70232863D01* +X136680526Y-70155741D01* +X136680525Y-70155740D01* +X136677692Y-70150274D01* +X136674369Y-70146111D01* +X136671866Y-70141404D01* +X136613045Y-70069282D01* +X136612354Y-70068426D01* +X136581062Y-70029227D01* +X136578558Y-70026723D01* +X136577916Y-70026005D01* +X136574215Y-70021672D01* +X136546865Y-69988138D01* +X136511533Y-69958909D01* +X136502763Y-69950928D01* +X136140756Y-69588921D01* +X135651305Y-69099471D01* +X135617280Y-69037158D01* +X135614400Y-69010375D01* +X135614400Y-68867400D01* +X135609128Y-68816587D01* +X135604138Y-68768492D01* +X135604137Y-68768488D01* +X135603426Y-68761634D01* +X135597430Y-68743660D01* +X135549765Y-68600794D01* +X135547450Y-68593854D01* +X135543599Y-68587632D01* +X135540493Y-68581000D01* +X135542601Y-68580013D01* +X135526900Y-68524813D01* +X135526900Y-67854442D01* +X135527637Y-67840835D01* +X135531059Y-67809337D01* +X135531059Y-67809332D01* +X135531724Y-67803211D01* +X135527350Y-67753209D01* +X135527021Y-67748384D01* +X135526900Y-67745913D01* +X135526900Y-67742831D01* +X135522709Y-67700089D01* +X135522587Y-67698774D01* +X135515023Y-67612319D01* +X135514487Y-67606187D01* +X135513000Y-67601068D01* +X135512480Y-67595767D01* +X135485618Y-67506794D01* +X135485262Y-67505594D01* +X135477738Y-67479696D01* +X135459309Y-67416263D01* +X135456855Y-67411529D01* +X135455316Y-67406431D01* +X135411716Y-67324431D01* +X135411102Y-67323263D01* +X135371126Y-67246141D01* +X135371125Y-67246140D01* +X135368292Y-67240674D01* +X135364969Y-67236511D01* +X135362466Y-67231804D01* +X135303645Y-67159682D01* +X135302954Y-67158826D01* +X135271662Y-67119627D01* +X135269158Y-67117123D01* +X135268516Y-67116405D01* +X135264815Y-67112072D01* +X135237465Y-67078538D01* +X135202142Y-67049316D01* +X135193363Y-67041328D01* +X135046650Y-66894616D01* +X135037548Y-66884472D01* +X135017697Y-66859782D01* +X135017696Y-66859781D01* +X135013832Y-66854975D01* +X134975378Y-66822708D01* +X134971731Y-66819528D01* +X134969919Y-66817885D01* +X134967725Y-66815691D01* +X134934451Y-66788358D01* +X134933653Y-66787696D01* +X134862326Y-66727846D01* +X134857656Y-66725278D01* +X134853539Y-66721897D01* +X134771714Y-66678023D01* +X134770555Y-66677394D01* +X134694419Y-66635538D01* +X134694411Y-66635535D01* +X134689013Y-66632567D01* +X134683931Y-66630955D01* +X134679237Y-66628438D01* +X134590269Y-66601238D01* +X134589241Y-66600918D01* +X134500494Y-66572765D01* +X134495198Y-66572171D01* +X134490102Y-66570613D01* +X134397543Y-66561210D01* +X134396407Y-66561089D01* +X134362792Y-66557319D01* +X134350070Y-66555892D01* +X134350066Y-66555892D01* +X134346573Y-66555500D01* +X134343046Y-66555500D01* +X134342061Y-66555445D01* +X134336381Y-66554998D01* +X134306975Y-66552011D01* +X134299463Y-66551248D01* +X134299461Y-66551248D01* +X134293338Y-66550626D01* +X134251059Y-66554623D01* +X134247691Y-66554941D01* +X134235833Y-66555500D01* +X129068442Y-66555500D01* +X129054835Y-66554763D01* +X129023337Y-66551341D01* +X129023332Y-66551341D01* +X129017211Y-66550676D01* +X128999211Y-66552251D01* +X128967209Y-66555050D01* +X128962384Y-66555379D01* +X128959913Y-66555500D01* +X128956831Y-66555500D01* +X128934363Y-66557703D01* +X128914089Y-66559691D01* +X128912774Y-66559813D01* +X128880513Y-66562636D01* +X128820187Y-66567913D01* +X128815068Y-66569400D01* +X128809767Y-66569920D01* +X128803862Y-66571703D01* +X128803861Y-66571703D01* +X128784507Y-66577546D01* +X128720794Y-66596782D01* +X128719654Y-66597120D01* +X128630263Y-66623091D01* +X128625529Y-66625545D01* +X128620431Y-66627084D01* +X128614987Y-66629978D01* +X128614986Y-66629979D01* +X128538431Y-66670684D01* +X128537263Y-66671298D01* +X128454674Y-66714108D01* +X128450511Y-66717431D01* +X128445804Y-66719934D01* +X128373682Y-66778755D01* +X128372826Y-66779446D01* +X128333627Y-66810738D01* +X128331123Y-66813242D01* +X128330405Y-66813884D01* +X128326072Y-66817585D01* +X128292538Y-66844935D01* +X128288611Y-66849682D01* +X128288609Y-66849684D01* +X128263313Y-66880262D01* +X128255323Y-66889042D01* +X127698695Y-67445670D01* +X127636383Y-67479696D01* +X127565568Y-67474631D01* +X127520505Y-67445670D01* +X125978855Y-65904021D01* +X125969753Y-65893878D01* +X125949897Y-65869182D01* +X125946032Y-65864375D01* +X125907578Y-65832108D01* +X125903931Y-65828928D01* +X125902119Y-65827285D01* +X125899925Y-65825091D01* +X125866651Y-65797758D01* +X125865853Y-65797096D01* +X125794526Y-65737246D01* +X125789856Y-65734678D01* +X125785739Y-65731297D01* +X125703914Y-65687423D01* +X125702755Y-65686794D01* +X125626619Y-65644938D01* +X125626611Y-65644935D01* +X125621213Y-65641967D01* +X125616131Y-65640355D01* +X125611437Y-65637838D01* +X125522469Y-65610638D01* +X125521441Y-65610318D01* +X125432694Y-65582165D01* +X125427398Y-65581571D01* +X125422302Y-65580013D01* +X125329743Y-65570610D01* +X125328607Y-65570489D01* +X125294992Y-65566719D01* +X125282270Y-65565292D01* +X125282266Y-65565292D01* +X125278773Y-65564900D01* +X125275246Y-65564900D01* +X125274261Y-65564845D01* +X125268581Y-65564398D01* +X125239175Y-65561411D01* +X125231663Y-65560648D01* +X125231661Y-65560648D01* +X125225538Y-65560026D01* +X125183259Y-65564023D01* +X125179891Y-65564341D01* +X125168033Y-65564900D01* +X123888524Y-65564900D01* +X123820403Y-65544898D01* +X123799429Y-65527995D01* +X123692055Y-65420621D01* +X123682953Y-65410478D01* +X123663097Y-65385782D01* +X123659232Y-65380975D01* +X123620778Y-65348708D01* +X123617131Y-65345528D01* +X123615319Y-65343885D01* +X123613125Y-65341691D01* +X123579851Y-65314358D01* +X123579053Y-65313696D01* +X123507726Y-65253846D01* +X123503056Y-65251278D01* +X123498939Y-65247897D01* +X123441055Y-65216860D01* +X123417114Y-65204023D01* +X123415955Y-65203394D01* +X123339819Y-65161538D01* +X123339811Y-65161535D01* +X123334413Y-65158567D01* +X123329331Y-65156955D01* +X123324637Y-65154438D01* +X123235669Y-65127238D01* +X123234641Y-65126918D01* +X123145894Y-65098765D01* +X123140598Y-65098171D01* +X123135502Y-65096613D01* +X123042943Y-65087210D01* +X123041807Y-65087089D01* +X123008192Y-65083319D01* +X122995470Y-65081892D01* +X122995466Y-65081892D01* +X122991973Y-65081500D01* +X122988446Y-65081500D01* +X122987461Y-65081445D01* +X122981781Y-65080998D01* +X122952375Y-65078011D01* +X122944863Y-65077248D01* +X122944861Y-65077248D01* +X122938738Y-65076626D01* +X122896459Y-65080623D01* +X122893091Y-65080941D01* +X122881233Y-65081500D01* +X115174500Y-65081500D01* +X115106379Y-65061498D01* +X115059886Y-65007842D01* +X115048500Y-64955500D01* +X115048500Y-63357703D01* +X123770743Y-63357703D01* +X123771302Y-63361947D01* +X123771302Y-63361951D01* +X123785405Y-63469072D01* +X123808268Y-63642734D01* +X123809401Y-63646874D01* +X123809401Y-63646876D01* +X123824410Y-63701739D01* +X123884129Y-63920036D01* +X123885813Y-63923984D01* +X123981471Y-64148249D01* +X123996923Y-64184476D01* +X124029133Y-64238295D01* +X124138534Y-64421090D01* +X124144561Y-64431161D01* +X124324313Y-64655528D01* +X124408297Y-64735226D01* +X124515232Y-64836703D01* +X124532851Y-64853423D01* +X124690257Y-64966531D01* +X124753730Y-65012141D01* +X124766317Y-65021186D01* +X124770112Y-65023195D01* +X124770113Y-65023196D01* +X124791869Y-65034715D01* +X125020392Y-65155712D01* +X125100174Y-65184908D01* +X125275016Y-65248891D01* +X125290373Y-65254511D01* +X125571264Y-65315755D01* +X125599841Y-65318004D01* +X125794282Y-65333307D01* +X125794291Y-65333307D01* +X125796739Y-65333500D01* +X125952271Y-65333500D01* +X125954407Y-65333354D01* +X125954418Y-65333354D01* +X126162548Y-65319165D01* +X126162554Y-65319164D01* +X126166825Y-65318873D01* +X126171020Y-65318004D01* +X126171022Y-65318004D01* +X126336950Y-65283642D01* +X126448342Y-65260574D01* +X126719343Y-65164607D01* +X126869553Y-65087078D01* +X126971005Y-65034715D01* +X126971006Y-65034715D01* +X126974812Y-65032750D01* +X126978313Y-65030289D01* +X126978317Y-65030287D01* +X127096328Y-64947347D01* +X127210023Y-64867441D01* +X127352303Y-64735226D01* +X127417479Y-64674661D01* +X127417481Y-64674658D01* +X127420622Y-64671740D01* +X127602713Y-64449268D01* +X127752927Y-64204142D01* +X127789542Y-64120731D01* +X127866758Y-63944828D01* +X127866759Y-63944826D01* +X127868483Y-63940898D01* +X127947244Y-63664406D01* +X127987751Y-63379784D01* +X127987809Y-63368875D01* +X127989235Y-63096583D01* +X127989235Y-63096576D01* +X127989257Y-63092297D01* +X127976737Y-62997194D01* +X127964246Y-62902320D01* +X127951732Y-62807266D01* +X127949776Y-62800114D01* +X127927115Y-62717281D01* +X127875871Y-62529964D01* +X127866607Y-62508246D01* +X127764763Y-62269476D01* +X127764761Y-62269472D01* +X127763077Y-62265524D01* +X127615439Y-62018839D01* +X127435687Y-61794472D01* +X127255897Y-61623858D01* +X127230258Y-61599527D01* +X127230255Y-61599525D01* +X127227149Y-61596577D01* +X126993683Y-61428814D01* +X126971843Y-61417250D01* +X126941612Y-61401244D01* +X126739608Y-61294288D01* +X126545490Y-61223251D01* +X126473658Y-61196964D01* +X126473656Y-61196963D01* +X126469627Y-61195489D01* +X126188736Y-61134245D01* +X126157685Y-61131801D01* +X125965718Y-61116693D01* +X125965709Y-61116693D01* +X125963261Y-61116500D01* +X125807729Y-61116500D01* +X125805593Y-61116646D01* +X125805582Y-61116646D01* +X125597452Y-61130835D01* +X125597446Y-61130836D01* +X125593175Y-61131127D01* +X125588980Y-61131996D01* +X125588978Y-61131996D01* +X125518395Y-61146613D01* +X125311658Y-61189426D01* +X125040657Y-61285393D01* +X124785188Y-61417250D01* +X124781687Y-61419711D01* +X124781683Y-61419713D01* +X124729112Y-61456661D01* +X124549977Y-61582559D01* +X124533011Y-61598325D01* +X124344140Y-61773835D01* +X124339378Y-61778260D01* +X124157287Y-62000732D01* +X124007073Y-62245858D01* +X124005347Y-62249791D01* +X124005346Y-62249792D01* +X123975261Y-62318328D01* +X123891517Y-62509102D01* +X123812756Y-62785594D01* +X123772249Y-63070216D01* +X123772227Y-63074505D01* +X123772226Y-63074512D01* +X123770841Y-63338926D01* +X123770743Y-63357703D01* +X115048500Y-63357703D01* +X115048500Y-60939642D01* +X115049237Y-60926035D01* +X115052659Y-60894537D01* +X115052659Y-60894532D01* +X115053324Y-60888411D01* +X115051215Y-60864300D01* +X115048950Y-60838409D01* +X115048621Y-60833584D01* +X115048500Y-60831113D01* +X115048500Y-60828031D01* +X115044309Y-60785289D01* +X115044187Y-60783974D01* +X115041364Y-60751713D01* +X115036087Y-60691387D01* +X115034600Y-60686268D01* +X115034080Y-60680967D01* +X115028355Y-60662003D01* +X115007237Y-60592059D01* +X115006862Y-60590794D01* +X114999538Y-60565585D01* +X114980909Y-60501463D01* +X114978455Y-60496729D01* +X114976916Y-60491631D01* +X114969032Y-60476803D01* +X114933316Y-60409631D01* +X114932702Y-60408463D01* +X114892726Y-60331341D01* +X114892725Y-60331340D01* +X114889892Y-60325874D01* +X114886569Y-60321711D01* +X114884066Y-60317004D01* +X114825245Y-60244882D01* +X114824554Y-60244026D01* +X114793262Y-60204827D01* +X114790758Y-60202323D01* +X114790116Y-60201605D01* +X114786415Y-60197272D01* +X114759065Y-60163738D01* +X114723730Y-60134506D01* +X114714964Y-60126529D01* +X114269451Y-59681017D01* +X114260349Y-59670873D01* +X114240497Y-59646182D01* +X114236632Y-59641375D01* +X114198178Y-59609108D01* +X114194531Y-59605928D01* +X114192719Y-59604285D01* +X114190525Y-59602091D01* +X114157251Y-59574758D01* +X114156453Y-59574096D01* +X114085126Y-59514246D01* +X114080456Y-59511678D01* +X114076339Y-59508297D01* +X114006489Y-59470844D01* +X113994514Y-59464423D01* +X113993355Y-59463794D01* +X113917219Y-59421938D01* +X113917211Y-59421935D01* +X113911813Y-59418967D01* +X113906731Y-59417355D01* +X113902037Y-59414838D01* +X113813069Y-59387638D01* +X113812041Y-59387318D01* +X113723294Y-59359165D01* +X113717998Y-59358571D01* +X113712902Y-59357013D01* +X113620343Y-59347610D01* +X113619207Y-59347489D01* +X113581392Y-59343248D01* +X113572870Y-59342292D01* +X113572866Y-59342292D01* +X113569373Y-59341900D01* +X113565846Y-59341900D01* +X113564861Y-59341845D01* +X113559181Y-59341398D01* +X113529775Y-59338411D01* +X113522263Y-59337648D01* +X113522261Y-59337648D01* +X113516138Y-59337026D01* +X113474427Y-59340969D01* +X113470491Y-59341341D01* +X113458633Y-59341900D01* +X111882707Y-59341900D01* +X111814586Y-59321898D01* +X111768093Y-59268242D01* +X111757989Y-59197968D01* +X111775447Y-59149784D01* +X111848212Y-59031737D01* +X111854356Y-59018559D01* +X111904615Y-58867034D01* +X111907481Y-58853668D01* +X111916972Y-58761030D01* +X111917300Y-58754615D01* +X111917300Y-58742915D01* +X111912825Y-58727676D01* +X111911435Y-58726471D01* +X111903752Y-58724800D01* +X110793800Y-58724800D01* +X110725679Y-58704798D01* +X110679186Y-58651142D01* +X110667800Y-58598800D01* +X110667800Y-58198685D01* +X111175800Y-58198685D01* +X111180275Y-58213924D01* +X111181665Y-58215129D01* +X111189348Y-58216800D01* +X111899185Y-58216800D01* +X111914424Y-58212325D01* +X111915629Y-58210935D01* +X111917300Y-58203252D01* +X111917300Y-58187034D01* +X111916963Y-58180518D01* +X111907225Y-58086668D01* +X111904332Y-58073272D01* +X111853812Y-57921847D01* +X111847647Y-57908685D01* +X111763874Y-57773308D01* +X111754840Y-57761910D01* +X111642171Y-57649437D01* +X111630760Y-57640425D01* +X111495237Y-57556888D01* +X111482059Y-57550744D01* +X111330534Y-57500485D01* +X111317168Y-57497619D01* +X111224530Y-57488128D01* +X111218115Y-57487800D01* +X111193915Y-57487800D01* +X111178676Y-57492275D01* +X111177471Y-57493665D01* +X111175800Y-57501348D01* +X111175800Y-58198685D01* +X110667800Y-58198685D01* +X110667800Y-57505915D01* +X110663325Y-57490676D01* +X110661935Y-57489471D01* +X110654252Y-57487800D01* +X110625534Y-57487800D01* +X110619018Y-57488137D01* +X110525168Y-57497875D01* +X110511772Y-57500768D01* +X110360347Y-57551288D01* +X110347185Y-57557453D01* +X110211808Y-57641226D01* +X110200410Y-57650260D01* +X110098907Y-57751940D01* +X110036624Y-57786019D01* +X109965804Y-57781016D01* +X109920716Y-57752095D01* +X109908802Y-57740201D01* +X109812303Y-57643871D01* +X109806072Y-57640030D01* +X109670450Y-57556431D01* +X109670448Y-57556430D01* +X109664220Y-57552591D01* +X109499109Y-57497826D01* +X109492273Y-57497126D01* +X109492270Y-57497125D01* +X109440774Y-57491849D01* +X109396372Y-57487300D01* +X108797228Y-57487300D01* +X108793982Y-57487637D01* +X108793978Y-57487637D01* +X108700065Y-57497381D01* +X108700061Y-57497382D01* +X108693207Y-57498093D01* +X108686671Y-57500274D01* +X108686669Y-57500274D01* +X108622340Y-57521736D01* +X108528193Y-57553146D01* +X108380269Y-57644684D01* +X108375096Y-57649866D01* +X108262542Y-57762616D01* +X108262538Y-57762621D01* +X108257371Y-57767797D01* +X108253531Y-57774027D01* +X108253530Y-57774028D01* +X108251443Y-57777414D01* +X108249414Y-57779241D01* +X108248993Y-57779773D01* +X108248902Y-57779701D01* +X108198672Y-57824908D01* +X108144182Y-57837300D01* +X107845400Y-57837300D01* +X107777279Y-57817298D01* +X107758053Y-57800957D01* +X107757780Y-57801260D01* +X107752868Y-57796837D01* +X107748453Y-57791934D01* +X107715231Y-57767797D01* +X107599294Y-57683563D01* +X107599293Y-57683562D01* +X107593952Y-57679682D01* +X107587924Y-57676998D01* +X107587922Y-57676997D01* +X107425519Y-57604691D01* +X107425518Y-57604691D01* +X107419488Y-57602006D01* +X107326088Y-57582153D01* +X107239144Y-57563672D01* +X107239139Y-57563672D01* +X107232687Y-57562300D01* +X107041713Y-57562300D01* +X107035261Y-57563672D01* +X107035256Y-57563672D01* +X106948312Y-57582153D01* +X106854912Y-57602006D01* +X106848882Y-57604691D01* +X106848881Y-57604691D01* +X106727833Y-57658585D01* +X106657466Y-57668019D01* +X106593169Y-57637913D01* +X106555355Y-57577824D01* +X106554562Y-57574621D01* +X106554042Y-57569672D01* +X106495027Y-57388044D01* +X106487649Y-57375264D01* +X106455425Y-57319451D01* +X106399540Y-57222656D01* +X106351089Y-57168845D01* +X106276175Y-57085645D01* +X106276174Y-57085644D01* +X106271753Y-57080734D01* +X106117252Y-56968482D01* +X106111224Y-56965798D01* +X106111222Y-56965797D01* +X105948819Y-56893491D01* +X105948818Y-56893491D01* +X105942788Y-56890806D01* +X105849387Y-56870953D01* +X105762444Y-56852472D01* +X105762439Y-56852472D01* +X105755987Y-56851100D01* +X105565013Y-56851100D01* +X105558561Y-56852472D01* +X105558556Y-56852472D01* +X105471613Y-56870953D01* +X105378212Y-56890806D01* +X105372182Y-56893491D01* +X105372181Y-56893491D01* +X105209778Y-56965797D01* +X105209776Y-56965798D01* +X105203748Y-56968482D01* +X105049247Y-57080734D01* +X105044826Y-57085644D01* +X105044825Y-57085645D01* +X104969912Y-57168845D01* +X104921460Y-57222656D01* +X104848569Y-57348907D01* +X104797188Y-57397899D01* +X104727474Y-57411335D01* +X104665390Y-57387842D01* +X104652894Y-57378763D01* +X104652893Y-57378762D01* +X104647552Y-57374882D01* +X104641524Y-57372198D01* +X104641522Y-57372197D01* +X104479119Y-57299891D01* +X104479118Y-57299891D01* +X104473088Y-57297206D01* +X104379687Y-57277353D01* +X104292744Y-57258872D01* +X104292739Y-57258872D01* +X104286287Y-57257500D01* +X104095313Y-57257500D01* +X104088861Y-57258872D01* +X104088856Y-57258872D01* +X104001913Y-57277353D01* +X103908512Y-57297206D01* +X103902482Y-57299891D01* +X103902481Y-57299891D01* +X103858549Y-57319451D01* +X103788182Y-57328885D01* +X103723885Y-57298779D01* +X103686071Y-57238690D01* +X103681300Y-57204344D01* +X103681300Y-56358193D01* +X103683532Y-56334584D01* +X103683590Y-56334281D01* +X103683590Y-56334277D01* +X103685075Y-56326494D01* +X103681549Y-56270449D01* +X103681300Y-56262538D01* +X103681300Y-56246544D01* +X103679294Y-56230670D01* +X103678551Y-56222802D01* +X103675523Y-56174663D01* +X103675523Y-56174662D01* +X103675025Y-56166750D01* +X103672479Y-56158913D01* +X103667306Y-56135769D01* +X103667268Y-56135465D01* +X103667267Y-56135460D01* +X103666274Y-56127603D01* +X103663358Y-56120238D01* +X103663357Y-56120234D01* +X103645601Y-56075389D01* +X103642929Y-56067970D01* +X103625564Y-56014525D01* +X103621314Y-56007828D01* +X103621150Y-56007569D01* +X103610385Y-55986442D01* +X103610271Y-55986154D01* +X103610268Y-55986149D01* +X103607352Y-55978783D01* +X103602696Y-55972375D01* +X103602693Y-55972369D01* +X103574342Y-55933348D01* +X103569892Y-55926801D01* +X103539800Y-55879382D01* +X103533793Y-55873741D01* +X103518112Y-55855954D01* +X103517934Y-55855709D01* +X103517932Y-55855707D01* +X103513272Y-55849293D01* +X103507162Y-55844238D01* +X103470004Y-55813497D01* +X103464070Y-55808266D01* +X103428902Y-55775242D01* +X103428899Y-55775240D01* +X103423121Y-55769814D01* +X103415897Y-55765842D01* +X103396294Y-55752519D01* +X103396054Y-55752320D01* +X103396047Y-55752316D01* +X103389944Y-55747267D01* +X103339124Y-55723353D01* +X103332092Y-55719771D01* +X103282860Y-55692705D01* +X103275185Y-55690735D01* +X103275179Y-55690732D01* +X103274881Y-55690656D01* +X103252572Y-55682624D01* +X103252297Y-55682494D01* +X103252289Y-55682491D01* +X103245118Y-55679117D01* +X103189951Y-55668594D01* +X103182242Y-55666871D01* +X103148249Y-55658143D01* +X103135507Y-55654871D01* +X103135506Y-55654871D01* +X103127830Y-55652900D01* +X103119593Y-55652900D01* +X103095984Y-55650668D01* +X103095681Y-55650610D01* +X103095677Y-55650610D01* +X103087894Y-55649125D01* +X103031849Y-55652651D01* +X103023938Y-55652900D01* +X102360174Y-55652900D01* +X102292053Y-55632898D01* +X102245560Y-55579242D01* +X102235456Y-55508968D01* +X102240072Y-55488802D01* +X102278880Y-55366462D01* +X102281430Y-55354468D01* +X102297607Y-55210239D01* +X102298000Y-55203215D01* +X102298000Y-54987026D01* +X102318002Y-54918905D01* +X102371658Y-54872412D01* +X102441932Y-54862308D01* +X102451486Y-54864061D01* +X102621494Y-54902062D01* +X102621501Y-54902063D01* +X102626543Y-54903190D01* +X102632088Y-54903500D01* +X102765244Y-54903500D01* +X102900037Y-54888857D01* +X103018190Y-54849094D01* +X103065204Y-54833272D01* +X103065206Y-54833271D01* +X103071675Y-54831094D01* +X103226905Y-54737823D01* +X103231862Y-54733135D01* +X103231865Y-54733133D01* +X103353527Y-54618082D01* +X103353529Y-54618080D01* +X103358485Y-54613393D01* +X103362317Y-54607755D01* +X103362320Y-54607751D01* +X103456442Y-54469255D01* +X103460277Y-54463612D01* +X103527530Y-54295466D01* +X103528644Y-54288738D01* +X103528645Y-54288734D01* +X103555993Y-54123539D01* +X103555993Y-54123536D01* +X103557108Y-54116802D01* +X103552203Y-54023198D01* +X107662892Y-54023198D01* +X107663249Y-54030015D01* +X107663249Y-54030019D01* +X107668151Y-54123539D01* +X107672370Y-54204047D01* +X107674181Y-54210620D01* +X107674181Y-54210623D01* +X107707738Y-54332452D01* +X107720461Y-54378641D01* +X107804922Y-54538836D01* +X107809327Y-54544049D01* +X107809330Y-54544053D01* +X107917406Y-54671943D01* +X107917410Y-54671947D01* +X107921813Y-54677157D01* +X107927237Y-54681304D01* +X107927238Y-54681305D01* +X108060257Y-54783006D01* +X108060261Y-54783009D01* +X108065678Y-54787150D01* +X108152372Y-54827576D01* +X108223631Y-54860805D01* +X108223634Y-54860806D01* +X108229808Y-54863685D01* +X108236456Y-54865171D01* +X108236459Y-54865172D01* +X108332686Y-54886681D01* +X108406543Y-54903190D01* +X108412088Y-54903500D01* +X108545244Y-54903500D01* +X108680037Y-54888857D01* +X108686501Y-54886682D01* +X108686504Y-54886681D01* +X108753716Y-54864061D01* +X108755811Y-54863356D01* +X108826753Y-54860586D01* +X108887932Y-54896609D01* +X108919923Y-54959990D01* +X108922000Y-54982775D01* +X108922000Y-55196657D01* +X108922301Y-55202805D01* +X108935812Y-55340603D01* +X108938195Y-55352638D01* +X108991767Y-55530076D01* +X108996441Y-55541416D01* +X109083460Y-55705077D01* +X109090249Y-55715294D01* +X109207397Y-55858933D01* +X109216041Y-55867637D01* +X109358856Y-55985784D01* +X109369027Y-55992644D01* +X109532076Y-56080804D01* +X109543381Y-56085556D01* +X109658692Y-56121250D01* +X109672795Y-56121456D01* +X109676000Y-56114701D01* +X109676000Y-56107924D01* +X110184000Y-56107924D01* +X110187973Y-56121455D01* +X110195768Y-56122575D01* +X110303521Y-56090862D01* +X110314889Y-56086269D01* +X110479154Y-56000393D01* +X110489415Y-55993679D01* +X110633873Y-55877532D01* +X110642632Y-55868954D01* +X110761778Y-55726961D01* +X110768708Y-55716841D01* +X110858002Y-55554415D01* +X110862834Y-55543142D01* +X110918880Y-55366462D01* +X110921430Y-55354468D01* +X110937607Y-55210239D01* +X110938000Y-55203215D01* +X110938000Y-54872115D01* +X110933525Y-54856876D01* +X110932135Y-54855671D01* +X110924452Y-54854000D01* +X110202115Y-54854000D01* +X110186876Y-54858475D01* +X110185671Y-54859865D01* +X110184000Y-54867548D01* +X110184000Y-56107924D01* +X109676000Y-56107924D01* +X109676000Y-54327885D01* +X110184000Y-54327885D01* +X110188475Y-54343124D01* +X110189865Y-54344329D01* +X110197548Y-54346000D01* +X110919885Y-54346000D01* +X110935124Y-54341525D01* +X110936329Y-54340135D01* +X110938000Y-54332452D01* +X110938000Y-54003343D01* +X110937699Y-53997195D01* +X110924188Y-53859397D01* +X110921805Y-53847362D01* +X110868233Y-53669924D01* +X110863559Y-53658584D01* +X110776540Y-53494923D01* +X110769751Y-53484706D01* +X110652603Y-53341067D01* +X110643959Y-53332363D01* +X110501144Y-53214216D01* +X110490973Y-53207356D01* +X110327924Y-53119196D01* +X110316619Y-53114444D01* +X110201308Y-53078750D01* +X110187205Y-53078544D01* +X110184000Y-53085299D01* +X110184000Y-54327885D01* +X109676000Y-54327885D01* +X109676000Y-53092076D01* +X109672027Y-53078545D01* +X109664232Y-53077425D01* +X109556479Y-53109138D01* +X109545111Y-53113731D01* +X109380846Y-53199607D01* +X109370585Y-53206321D01* +X109226127Y-53322468D01* +X109217368Y-53331046D01* +X109173000Y-53383921D01* +X109113890Y-53423248D01* +X109042902Y-53424374D01* +X108999952Y-53403028D01* +X108934322Y-53352850D01* +X108803162Y-53291689D01* +X108776369Y-53279195D01* +X108776366Y-53279194D01* +X108770192Y-53276315D01* +X108763544Y-53274829D01* +X108763541Y-53274828D01* +X108598494Y-53237936D01* +X108598495Y-53237936D01* +X108593457Y-53236810D01* +X108587912Y-53236500D01* +X108454756Y-53236500D01* +X108319963Y-53251143D01* +X108236609Y-53279195D01* +X108154796Y-53306728D01* +X108154794Y-53306729D01* +X108148325Y-53308906D01* +X107993095Y-53402177D01* +X107988138Y-53406865D01* +X107988135Y-53406867D01* +X107866473Y-53521918D01* +X107861515Y-53526607D01* +X107857683Y-53532245D01* +X107857680Y-53532249D01* +X107806740Y-53607205D01* +X107759723Y-53676388D01* +X107692470Y-53844534D01* +X107691356Y-53851262D01* +X107691355Y-53851266D01* +X107666179Y-54003343D01* +X107662892Y-54023198D01* +X103552203Y-54023198D01* +X103547987Y-53942766D01* +X103547630Y-53935953D01* +X103535330Y-53891296D01* +X103501352Y-53767941D01* +X103499539Y-53761359D01* +X103415078Y-53601164D01* +X103410673Y-53595951D01* +X103410670Y-53595947D01* +X103302594Y-53468057D01* +X103302590Y-53468053D01* +X103298187Y-53462843D01* +X103292762Y-53458695D01* +X103159743Y-53356994D01* +X103159739Y-53356991D01* +X103154322Y-53352850D01* +X103023162Y-53291689D01* +X102996369Y-53279195D01* +X102996366Y-53279194D01* +X102990192Y-53276315D01* +X102983544Y-53274829D01* +X102983541Y-53274828D01* +X102818494Y-53237936D01* +X102818495Y-53237936D01* +X102813457Y-53236810D01* +X102807912Y-53236500D01* +X102674756Y-53236500D01* +X102539963Y-53251143D01* +X102456609Y-53279195D01* +X102374796Y-53306728D01* +X102374794Y-53306729D01* +X102368325Y-53308906D01* +X102216349Y-53400222D01* +X102216346Y-53400223D01* +X102213095Y-53402177D01* +X102212745Y-53401594D01* +X102151083Y-53425065D01* +X102081609Y-53410439D01* +X102043609Y-53379085D01* +X102012603Y-53341067D01* +X102003959Y-53332363D01* +X101861144Y-53214216D01* +X101850973Y-53207356D01* +X101687924Y-53119196D01* +X101676619Y-53114444D01* +X101561308Y-53078750D01* +X101547205Y-53078544D01* +X101544000Y-53085299D01* +X101544000Y-54728000D01* +X101523998Y-54796121D01* +X101470342Y-54842614D01* +X101418000Y-54854000D01* +X100300115Y-54854000D01* +X100284876Y-54858475D01* +X100283671Y-54859865D01* +X100282000Y-54867548D01* +X100282000Y-55196657D01* +X100282301Y-55202805D01* +X100295812Y-55340603D01* +X100298195Y-55352638D01* +X100351767Y-55530076D01* +X100356441Y-55541416D01* +X100443460Y-55705077D01* +X100450249Y-55715294D01* +X100520671Y-55801641D01* +X100548225Y-55867073D01* +X100536030Y-55937014D01* +X100512123Y-55970372D01* +X100039342Y-56443153D01* +X100031063Y-56450687D01* +X100024582Y-56454800D01* +X99991576Y-56489948D01* +X99977957Y-56504451D01* +X99975202Y-56507293D01* +X99955465Y-56527030D01* +X99952985Y-56530227D01* +X99945282Y-56539247D01* +X99915014Y-56571479D01* +X99911195Y-56578425D01* +X99911193Y-56578428D01* +X99905252Y-56589234D01* +X99894401Y-56605753D01* +X99881986Y-56621759D01* +X99878841Y-56629028D01* +X99878838Y-56629032D01* +X99864426Y-56662337D01* +X99859209Y-56672987D01* +X99837905Y-56711740D01* +X99835934Y-56719415D01* +X99835934Y-56719416D01* +X99832867Y-56731362D01* +X99826463Y-56750066D01* +X99818419Y-56768655D01* +X99817180Y-56776478D01* +X99817177Y-56776488D01* +X99811501Y-56812324D01* +X99809095Y-56823944D01* +X99798100Y-56866770D01* +X99798100Y-56887024D01* +X99796549Y-56906734D01* +X99793380Y-56926743D01* +X99794126Y-56934635D01* +X99797541Y-56970761D01* +X99798100Y-56982619D01* +X99798100Y-58158101D01* +X99778098Y-58226222D01* +X99738402Y-58265245D01* +X99715069Y-58279684D01* +X99607999Y-58386941D01* +X99545718Y-58421020D01* +X99474898Y-58416017D01* +X99429809Y-58387096D01* +X99326971Y-58284437D01* +X99315560Y-58275425D01* +X99180037Y-58191888D01* +X99166859Y-58185744D01* +X99015334Y-58135485D01* +X99001968Y-58132619D01* +X98909330Y-58123128D01* +X98902915Y-58122800D01* +X98878715Y-58122800D01* +X98863476Y-58127275D01* +X98862271Y-58128665D01* +X98860600Y-58136348D01* +X98860600Y-60070685D01* +X98865075Y-60085924D01* +X98866465Y-60087129D01* +X98874148Y-60088800D01* +X98902866Y-60088800D01* +X98909382Y-60088463D01* +X99003232Y-60078725D01* +X99016628Y-60075832D01* +X99168053Y-60025312D01* +X99181215Y-60019147D01* +X99316592Y-59935374D01* +X99327990Y-59926340D01* +X99429493Y-59824660D01* +X99491776Y-59790581D01* +X99562596Y-59795584D01* +X99607683Y-59824504D01* +X99716097Y-59932729D01* +X99864180Y-60024009D01* +X100029291Y-60078774D01* +X100036127Y-60079474D01* +X100036130Y-60079475D01* +X100083470Y-60084325D01* +X100132028Y-60089300D01* +X100731172Y-60089300D01* +X100734418Y-60088963D01* +X100734422Y-60088963D01* +X100828335Y-60079219D01* +X100828339Y-60079218D01* +X100835193Y-60078507D01* +X100841729Y-60076326D01* +X100841731Y-60076326D01* +X100974916Y-60031892D01* +X101045866Y-60029308D01* +X101106949Y-60065492D01* +X101119377Y-60083386D01* +X101120367Y-60082737D01* +X101160386Y-60143776D01* +X101162723Y-60147480D01* +X101200605Y-60209907D01* +X101204321Y-60214115D01* +X101204322Y-60214116D01* +X101208003Y-60218284D01* +X101207976Y-60218308D01* +X101210629Y-60221300D01* +X101213332Y-60224533D01* +X101217344Y-60230652D01* +X101222656Y-60235684D01* +X101273583Y-60283928D01* +X101276025Y-60286306D01* +X101829030Y-60839311D01* +X101841416Y-60853723D01* +X101849949Y-60865318D01* +X101849954Y-60865323D01* +X101854292Y-60871218D01* +X101859870Y-60875957D01* +X101859873Y-60875960D01* +X101894568Y-60905435D01* +X101902084Y-60912365D01* +X101907780Y-60918061D01* +X101910641Y-60920324D01* +X101910646Y-60920329D01* +X101930056Y-60935685D01* +X101933458Y-60938474D01* +X101989085Y-60985733D01* +X101995602Y-60989061D01* +X102000650Y-60992427D01* +X102005772Y-60995590D01* +X102011516Y-61000135D01* +X102077695Y-61031064D01* +X102081579Y-61032963D01* +X102146608Y-61066169D01* +X102153723Y-61067910D01* +X102159378Y-61070013D01* +X102165117Y-61071922D01* +X102171750Y-61075022D01* +X102243235Y-61089891D01* +X102247501Y-61090857D01* +X102318410Y-61108208D01* +X102324012Y-61108556D01* +X102324015Y-61108556D01* +X102329564Y-61108900D01* +X102329562Y-61108935D01* +X102333534Y-61109175D01* +X102337755Y-61109552D01* +X102344915Y-61111041D01* +X102422342Y-61108946D01* +X102425750Y-61108900D01* +X106917100Y-61108900D01* +X106985221Y-61128902D01* +X107031714Y-61182558D01* +X107043100Y-61234900D01* +X107043100Y-62699876D01* +X107023098Y-62767997D01* +X107006195Y-62788971D01* +X106350571Y-63444595D01* +X106288259Y-63478621D01* +X106261476Y-63481500D01* +X106220231Y-63481500D01* +X106217175Y-63481800D01* +X106217168Y-63481800D01* +X106158660Y-63487537D01* +X106073167Y-63495920D01* +X106067266Y-63497702D01* +X106067264Y-63497702D01* +X105890329Y-63551122D01* +X105853911Y-63556500D01* +X105796866Y-63556500D01* +X105793469Y-63556869D01* +X105790560Y-63557185D01* +X105734684Y-63563255D01* +X105598295Y-63614385D01* +X105481739Y-63701739D01* +X105394385Y-63818295D01* +X105343255Y-63954684D01* +X105336500Y-64016866D01* +X105336500Y-64075989D01* +X105330865Y-64113248D01* +X105277318Y-64286232D01* +X105276674Y-64292357D01* +X105276674Y-64292358D01* +X105259079Y-64459771D01* +X105256645Y-64482925D01* +X105262557Y-64547885D01* +X105272491Y-64657039D01* +X105274570Y-64679888D01* +X105276308Y-64685794D01* +X105276309Y-64685798D01* +X105330410Y-64869619D01* +X105329191Y-64869978D01* +X105336500Y-64907580D01* +X105336500Y-64963134D01* +X105343255Y-65025316D01* +X105394385Y-65161705D01* +X105481739Y-65278261D01* +X105598295Y-65365615D01* +X105734684Y-65416745D01* +X105796866Y-65423500D01* +X105857797Y-65423500D01* +X105895896Y-65429398D01* +X106059306Y-65481235D01* +X106213227Y-65498500D01* +X106669557Y-65498500D01* +X106683164Y-65499237D01* +X106714662Y-65502659D01* +X106714667Y-65502659D01* +X106720788Y-65503324D01* +X106747038Y-65501027D01* +X106770788Y-65498950D01* +X106775614Y-65498621D01* +X106778086Y-65498500D01* +X106781169Y-65498500D01* +X106793138Y-65497326D01* +X106823906Y-65494310D01* +X106825219Y-65494188D01* +X106869484Y-65490315D01* +X106917813Y-65486087D01* +X106922932Y-65484600D01* +X106928233Y-65484080D01* +X107017234Y-65457209D01* +X107018367Y-65456874D01* +X107101814Y-65432630D01* +X107101818Y-65432628D01* +X107107736Y-65430909D01* +X107112468Y-65428456D01* +X107117569Y-65426916D01* +X107124688Y-65423131D01* +X107199660Y-65383269D01* +X107200826Y-65382657D01* +X107277853Y-65342729D01* +X107283326Y-65339892D01* +X107287489Y-65336569D01* +X107292196Y-65334066D01* +X107300859Y-65327001D01* +X107317226Y-65313652D01* +X107346632Y-65289669D01* +X108707001Y-65289669D01* +X108707371Y-65296490D01* +X108712895Y-65347352D01* +X108716521Y-65362604D01* +X108761676Y-65483054D01* +X108770214Y-65498649D01* +X108846715Y-65600724D01* +X108859276Y-65613285D01* +X108961351Y-65689786D01* +X108976946Y-65698324D01* +X109097394Y-65743478D01* +X109112649Y-65747105D01* +X109163514Y-65752631D01* +X109170328Y-65753000D01* +X109367885Y-65753000D01* +X109383124Y-65748525D01* +X109384329Y-65747135D01* +X109386000Y-65739452D01* +X109386000Y-65734884D01* +X109894000Y-65734884D01* +X109898475Y-65750123D01* +X109899865Y-65751328D01* +X109907548Y-65752999D01* +X110109669Y-65752999D01* +X110116490Y-65752629D01* +X110167352Y-65747105D01* +X110182604Y-65743479D01* +X110303054Y-65698324D01* +X110318649Y-65689786D01* +X110420724Y-65613285D01* +X110433285Y-65600724D01* +X110509786Y-65498649D01* +X110518324Y-65483054D01* +X110563478Y-65362606D01* +X110567105Y-65347351D01* +X110572631Y-65296486D01* +X110573000Y-65289672D01* +X110573000Y-65092115D01* +X110568525Y-65076876D01* +X110567135Y-65075671D01* +X110559452Y-65074000D01* +X109912115Y-65074000D01* +X109896876Y-65078475D01* +X109895671Y-65079865D01* +X109894000Y-65087548D01* +X109894000Y-65734884D01* +X109386000Y-65734884D01* +X109386000Y-65092115D01* +X109381525Y-65076876D01* +X109380135Y-65075671D01* +X109372452Y-65074000D01* +X108725116Y-65074000D01* +X108709877Y-65078475D01* +X108708672Y-65079865D01* +X108707001Y-65087548D01* +X108707001Y-65289669D01* +X107346632Y-65289669D01* +X107364318Y-65275245D01* +X107365174Y-65274554D01* +X107404373Y-65243262D01* +X107406877Y-65240758D01* +X107407595Y-65240116D01* +X107411928Y-65236415D01* +X107445462Y-65209065D01* +X107450154Y-65203394D01* +X107474687Y-65173738D01* +X107482677Y-65164958D01* +X107996526Y-64651109D01* +X108512971Y-64134663D01* +X108575283Y-64100638D01* +X108646098Y-64105702D01* +X108702934Y-64148249D01* +X108727745Y-64214769D01* +X108720048Y-64267988D01* +X108716522Y-64277394D01* +X108712895Y-64292649D01* +X108707369Y-64343514D01* +X108707000Y-64350328D01* +X108707000Y-64547885D01* +X108711475Y-64563124D01* +X108712865Y-64564329D01* +X108720548Y-64566000D01* +X109367885Y-64566000D01* +X109383124Y-64561525D01* +X109384329Y-64560135D01* +X109386000Y-64552452D01* +X109386000Y-64547885D01* +X109894000Y-64547885D01* +X109898475Y-64563124D01* +X109899865Y-64564329D01* +X109907548Y-64566000D01* +X110554884Y-64566000D01* +X110570123Y-64561525D01* +X110571328Y-64560135D01* +X110572999Y-64552452D01* +X110572999Y-64350331D01* +X110572629Y-64343510D01* +X110567105Y-64292648D01* +X110563479Y-64277396D01* +X110518324Y-64156946D01* +X110509786Y-64141351D01* +X110433285Y-64039276D01* +X110420724Y-64026715D01* +X110318649Y-63950214D01* +X110303054Y-63941676D01* +X110182606Y-63896522D01* +X110167351Y-63892895D01* +X110116486Y-63887369D01* +X110109672Y-63887000D01* +X109912115Y-63887000D01* +X109896876Y-63891475D01* +X109895671Y-63892865D01* +X109894000Y-63900548D01* +X109894000Y-64547885D01* +X109386000Y-64547885D01* +X109386000Y-63905116D01* +X109381525Y-63889877D01* +X109380135Y-63888672D01* +X109372452Y-63887001D01* +X109170331Y-63887001D01* +X109163510Y-63887371D01* +X109112648Y-63892895D01* +X109097396Y-63896521D01* +X109045751Y-63915882D01* +X108974944Y-63921065D01* +X108912575Y-63887144D01* +X108878445Y-63824889D01* +X108883392Y-63754065D01* +X108893846Y-63733616D01* +X108893703Y-63733539D01* +X108937615Y-63651642D01* +X108938224Y-63650520D01* +X108940228Y-63646876D01* +X108958090Y-63614385D01* +X108980066Y-63574411D01* +X108980068Y-63574406D01* +X108983033Y-63569013D01* +X108984644Y-63563935D01* +X108987163Y-63559237D01* +X109014353Y-63470302D01* +X109014736Y-63469072D01* +X109040971Y-63386370D01* +X109042835Y-63380494D01* +X109043428Y-63375203D01* +X109044988Y-63370102D01* +X109054395Y-63277489D01* +X109054515Y-63276369D01* +X109060100Y-63226573D01* +X109060100Y-63223044D01* +X109060155Y-63222061D01* +X109060604Y-63216356D01* +X109060609Y-63216314D01* +X109064974Y-63173337D01* +X109060659Y-63127688D01* +X109060100Y-63115831D01* +X109060100Y-61484900D01* +X109080102Y-61416779D01* +X109133758Y-61370286D01* +X109186100Y-61358900D01* +X112905500Y-61358900D01* +X112973621Y-61378902D01* +X113020114Y-61432558D01* +X113031500Y-61484900D01* +X113031500Y-64581474D01* +X113011498Y-64649595D01* +X112957842Y-64696088D01* +X112887568Y-64706192D01* +X112822988Y-64676698D01* +X112804674Y-64657039D01* +X112723643Y-64548920D01* +X112723642Y-64548919D01* +X112718261Y-64541739D01* +X112601705Y-64454385D01* +X112465316Y-64403255D01* +X112403134Y-64396500D01* +X111456866Y-64396500D01* +X111394684Y-64403255D01* +X111258295Y-64454385D01* +X111141739Y-64541739D01* +X111054385Y-64658295D01* +X111003255Y-64794684D01* +X110996500Y-64856866D01* +X110996500Y-65803134D01* +X111003255Y-65865316D01* +X111054385Y-66001705D01* +X111141739Y-66118261D01* +X111258295Y-66205615D01* +X111394684Y-66256745D01* +X111456866Y-66263500D01* +X112403134Y-66263500D01* +X112465316Y-66256745D01* +X112601705Y-66205615D01* +X112718261Y-66118261D01* +X112800409Y-66008651D01* +X112857267Y-65966137D01* +X112928085Y-65961111D01* +X112990379Y-65995171D01* +X113024369Y-66057502D01* +X113026827Y-66081194D01* +X113026645Y-66082925D01* +X113031218Y-66133173D01* +X113031500Y-66137207D01* +X113031500Y-66139769D01* +X113031800Y-66142827D01* +X113031800Y-66142831D01* +X113035895Y-66184596D01* +X113035977Y-66185471D01* +X113044570Y-66279888D01* +X113045573Y-66283297D01* +X113045920Y-66286833D01* +X113073334Y-66377630D01* +X113073561Y-66378390D01* +X113087792Y-66426745D01* +X113100410Y-66469619D01* +X113099191Y-66469978D01* +X113106500Y-66507579D01* +X113106500Y-66563134D01* +X113113255Y-66625316D01* +X113164385Y-66761705D01* +X113251739Y-66878261D01* +X113368295Y-66965615D01* +X113376703Y-66968767D01* +X113384575Y-66973077D01* +X113383739Y-66974604D01* +X113432004Y-67010862D01* +X113456702Y-67077424D01* +X113441493Y-67146772D01* +X113391206Y-67196890D01* +X113331008Y-67212200D01* +X98226661Y-67212200D01* +X98158540Y-67192198D01* +X98112047Y-67138542D01* +X98101943Y-67068268D01* +X98125835Y-67010635D01* +X98179786Y-66938648D01* +X98188324Y-66923054D01* +X98233478Y-66802606D01* +X98237105Y-66787351D01* +X98242631Y-66736486D01* +X98243000Y-66729672D01* +X98243000Y-66532115D01* +X98238525Y-66516876D01* +X98237135Y-66515671D01* +X98229452Y-66514000D01* +X96395116Y-66514000D01* +X96379877Y-66518475D01* +X96378672Y-66519865D01* +X96377001Y-66527548D01* +X96377001Y-66729669D01* +X96377371Y-66736490D01* +X96382895Y-66787352D01* +X96386521Y-66802604D01* +X96431676Y-66923054D01* +X96440214Y-66938648D01* +X96494165Y-67010635D01* +X96519013Y-67077141D01* +X96503960Y-67146524D01* +X96453786Y-67196754D01* +X96393339Y-67212200D01* +X93500082Y-67212200D01* +X93431961Y-67192198D01* +X93385468Y-67138542D01* +X93375364Y-67068268D01* +X93403002Y-67005879D01* +X93403903Y-67004790D01* +X93411888Y-66996016D01* +X94420019Y-65987885D01* +X96377000Y-65987885D01* +X96381475Y-66003124D01* +X96382865Y-66004329D01* +X96390548Y-66006000D01* +X97037885Y-66006000D01* +X97053124Y-66001525D01* +X97054329Y-66000135D01* +X97056000Y-65992452D01* +X97056000Y-65987885D01* +X97564000Y-65987885D01* +X97568475Y-66003124D01* +X97569865Y-66004329D01* +X97577548Y-66006000D01* +X98224884Y-66006000D01* +X98240123Y-66001525D01* +X98241328Y-66000135D01* +X98242999Y-65992452D01* +X98242999Y-65973134D01* +X98566500Y-65973134D01* +X98573255Y-66035316D01* +X98624385Y-66171705D01* +X98711739Y-66288261D01* +X98828295Y-66375615D01* +X98964684Y-66426745D01* +X99026866Y-66433500D01* +X99973134Y-66433500D01* +X100035316Y-66426745D01* +X100171705Y-66375615D01* +X100288261Y-66288261D01* +X100375615Y-66171705D01* +X100426745Y-66035316D01* +X100433500Y-65973134D01* +X100433500Y-65383134D01* +X100766500Y-65383134D01* +X100773255Y-65445316D01* +X100824385Y-65581705D01* +X100911739Y-65698261D01* +X101028295Y-65785615D01* +X101164684Y-65836745D01* +X101226866Y-65843500D01* +X102173134Y-65843500D01* +X102235316Y-65836745D01* +X102371705Y-65785615D01* +X102488261Y-65698261D01* +X102575615Y-65581705D01* +X102626745Y-65445316D01* +X102633500Y-65383134D01* +X102633500Y-65043134D01* +X103046500Y-65043134D01* +X103053255Y-65105316D01* +X103104385Y-65241705D01* +X103191739Y-65358261D01* +X103308295Y-65445615D01* +X103444684Y-65496745D01* +X103506866Y-65503500D01* +X104453134Y-65503500D01* +X104515316Y-65496745D01* +X104651705Y-65445615D01* +X104768261Y-65358261D01* +X104855615Y-65241705D01* +X104906745Y-65105316D01* +X104913500Y-65043134D01* +X104913500Y-64096866D01* +X104906745Y-64034684D01* +X104855615Y-63898295D01* +X104768261Y-63781739D01* +X104651705Y-63694385D01* +X104515316Y-63643255D01* +X104453134Y-63636500D01* +X103506866Y-63636500D01* +X103444684Y-63643255D01* +X103308295Y-63694385D01* +X103191739Y-63781739D01* +X103104385Y-63898295D01* +X103053255Y-64034684D01* +X103046500Y-64096866D01* +X103046500Y-65043134D01* +X102633500Y-65043134D01* +X102633500Y-64436866D01* +X102626745Y-64374684D01* +X102575615Y-64238295D01* +X102488261Y-64121739D01* +X102371705Y-64034385D01* +X102235316Y-63983255D01* +X102173134Y-63976500D01* +X101226866Y-63976500D01* +X101164684Y-63983255D01* +X101028295Y-64034385D01* +X100911739Y-64121739D01* +X100824385Y-64238295D01* +X100773255Y-64374684D01* +X100766500Y-64436866D01* +X100766500Y-65383134D01* +X100433500Y-65383134D01* +X100433500Y-65026866D01* +X100426745Y-64964684D01* +X100375615Y-64828295D01* +X100288261Y-64711739D01* +X100171705Y-64624385D01* +X100035316Y-64573255D01* +X99973134Y-64566500D01* +X99026866Y-64566500D01* +X98964684Y-64573255D01* +X98828295Y-64624385D01* +X98711739Y-64711739D01* +X98624385Y-64828295D01* +X98573255Y-64964684D01* +X98566500Y-65026866D01* +X98566500Y-65973134D01* +X98242999Y-65973134D01* +X98242999Y-65790331D01* +X98242629Y-65783510D01* +X98237105Y-65732648D01* +X98233479Y-65717396D01* +X98188324Y-65596946D01* +X98179786Y-65581351D01* +X98103285Y-65479276D01* +X98090724Y-65466715D01* +X97988649Y-65390214D01* +X97973054Y-65381676D01* +X97852606Y-65336522D01* +X97837351Y-65332895D01* +X97786486Y-65327369D01* +X97779672Y-65327000D01* +X97582115Y-65327000D01* +X97566876Y-65331475D01* +X97565671Y-65332865D01* +X97564000Y-65340548D01* +X97564000Y-65987885D01* +X97056000Y-65987885D01* +X97056000Y-65345116D01* +X97051525Y-65329877D01* +X97050135Y-65328672D01* +X97042452Y-65327001D01* +X96840331Y-65327001D01* +X96833510Y-65327371D01* +X96782648Y-65332895D01* +X96767396Y-65336521D01* +X96646946Y-65381676D01* +X96631351Y-65390214D01* +X96529276Y-65466715D01* +X96516715Y-65479276D01* +X96440214Y-65581351D01* +X96431676Y-65596946D01* +X96386522Y-65717394D01* +X96382895Y-65732649D01* +X96377369Y-65783514D01* +X96377000Y-65790328D01* +X96377000Y-65987885D01* +X94420019Y-65987885D01* +X97441958Y-62965946D01* +X97504270Y-62931920D01* +X97575085Y-62936985D01* +X97582301Y-62939934D01* +X97704877Y-62994508D01* +X97704885Y-62994511D01* +X97710912Y-62997194D01* +X97804313Y-63017047D01* +X97891256Y-63035528D01* +X97891261Y-63035528D01* +X97897713Y-63036900D01* +X98088687Y-63036900D01* +X98095139Y-63035528D01* +X98095144Y-63035528D01* +X98182087Y-63017047D01* +X98275488Y-62997194D01* +X98281521Y-62994508D01* +X98443922Y-62922203D01* +X98443924Y-62922202D01* +X98449952Y-62919518D01* +X98467394Y-62906846D01* +X98505357Y-62879264D01* +X98604453Y-62807266D01* +X98623967Y-62785594D01* +X98727821Y-62670252D01* +X98727822Y-62670251D01* +X98732240Y-62665344D01* +X98827727Y-62499956D01* +X98886742Y-62318328D01* +X98890667Y-62280990D01* +X98906014Y-62134965D01* +X98906704Y-62128400D01* +X98889951Y-61969006D01* +X98887432Y-61945035D01* +X98887432Y-61945033D01* +X98886742Y-61938472D01* +X98827727Y-61756844D01* +X98732240Y-61591456D01* +X98726858Y-61585478D01* +X98608875Y-61454445D01* +X98608873Y-61454443D01* +X98604453Y-61449534D01* +X98449952Y-61337282D01* +X98443924Y-61334598D01* +X98443922Y-61334597D01* +X98281519Y-61262291D01* +X98281518Y-61262291D01* +X98275488Y-61259606D01* +X98163754Y-61235856D01* +X98095144Y-61221272D01* +X98095139Y-61221272D01* +X98088687Y-61219900D01* +X97897713Y-61219900D01* +X97891261Y-61221272D01* +X97891256Y-61221272D01* +X97822646Y-61235856D01* +X97710912Y-61259606D01* +X97704882Y-61262291D01* +X97704881Y-61262291D01* +X97542478Y-61334597D01* +X97542476Y-61334598D01* +X97536448Y-61337282D01* +X97381947Y-61449534D01* +X97376111Y-61456016D01* +X97375064Y-61456661D01* +X97372623Y-61458859D01* +X97372221Y-61458412D01* +X97315664Y-61493254D01* +X97299379Y-61495699D01* +X97299464Y-61496237D01* +X97291630Y-61497478D01* +X97283710Y-61497727D01* +X97266054Y-61502856D01* +X97264258Y-61503378D01* +X97244906Y-61507386D01* +X97237835Y-61508280D01* +X97224803Y-61509926D01* +X97217434Y-61512843D01* +X97217432Y-61512844D01* +X97183697Y-61526200D01* +X97172469Y-61530045D01* +X97130007Y-61542382D01* +X97123185Y-61546416D01* +X97123179Y-61546419D01* +X97112568Y-61552694D01* +X97094818Y-61561390D01* +X97083356Y-61565928D01* +X97083351Y-61565931D01* +X97075983Y-61568848D01* +X97060501Y-61580096D01* +X97040225Y-61594827D01* +X97030307Y-61601343D01* +X97011619Y-61612395D01* +X96992237Y-61623858D01* +X96977913Y-61638182D01* +X96962881Y-61651021D01* +X96946493Y-61662928D01* +X96919306Y-61695791D01* +X96918312Y-61696993D01* +X96910322Y-61705773D01* +X95311195Y-63304900D01* +X95248883Y-63338926D01* +X95178068Y-63333861D01* +X95121232Y-63291314D01* +X95096421Y-63224794D01* +X95096100Y-63215805D01* +X95096100Y-60544924D01* +X95116102Y-60476803D01* +X95128458Y-60460621D01* +X95201640Y-60379344D01* +X95287488Y-60230652D01* +X95293823Y-60219679D01* +X95293824Y-60219678D01* +X95297127Y-60213956D01* +X95356142Y-60032328D01* +X95356880Y-60025312D01* +X95375414Y-59848965D01* +X95376104Y-59842400D01* +X95371611Y-59799653D01* +X95356832Y-59659035D01* +X95356832Y-59659033D01* +X95356142Y-59652472D01* +X95297127Y-59470844D01* +X95286185Y-59451891D01* +X95250201Y-59389566D01* +X97611100Y-59389566D01* +X97611437Y-59396082D01* +X97621175Y-59489932D01* +X97624068Y-59503328D01* +X97674588Y-59654753D01* +X97680753Y-59667915D01* +X97764526Y-59803292D01* +X97773560Y-59814690D01* +X97886229Y-59927163D01* +X97897640Y-59936175D01* +X98033163Y-60019712D01* +X98046341Y-60025856D01* +X98197866Y-60076115D01* +X98211232Y-60078981D01* +X98303870Y-60088472D01* +X98310285Y-60088800D01* +X98334485Y-60088800D01* +X98349724Y-60084325D01* +X98350929Y-60082935D01* +X98352600Y-60075252D01* +X98352600Y-59377915D01* +X98348125Y-59362676D01* +X98346735Y-59361471D01* +X98339052Y-59359800D01* +X97629215Y-59359800D01* +X97613976Y-59364275D01* +X97612771Y-59365665D01* +X97611100Y-59373348D01* +X97611100Y-59389566D01* +X95250201Y-59389566D01* +X95241462Y-59374429D01* +X95201640Y-59305456D01* +X95168133Y-59268242D01* +X95078275Y-59168445D01* +X95078274Y-59168444D01* +X95073853Y-59163534D01* +X94919352Y-59051282D01* +X94913324Y-59048598D01* +X94913322Y-59048597D01* +X94750919Y-58976291D01* +X94750918Y-58976291D01* +X94744888Y-58973606D01* +X94622070Y-58947500D01* +X94564544Y-58935272D01* +X94564539Y-58935272D01* +X94558087Y-58933900D01* +X94367113Y-58933900D01* +X94360661Y-58935272D01* +X94360656Y-58935272D01* +X94303130Y-58947500D01* +X94180312Y-58973606D01* +X94174282Y-58976291D01* +X94174281Y-58976291D01* +X94011878Y-59048597D01* +X94011876Y-59048598D01* +X94005848Y-59051282D01* +X93851347Y-59163534D01* +X93846926Y-59168444D01* +X93846925Y-59168445D01* +X93757068Y-59268242D01* +X93723560Y-59305456D01* +X93683738Y-59374429D01* +X93639016Y-59451891D01* +X93628073Y-59470844D01* +X93569058Y-59652472D01* +X93568368Y-59659033D01* +X93568368Y-59659035D01* +X93553589Y-59799653D01* +X93549096Y-59842400D01* +X93549786Y-59848965D01* +X93568321Y-60025312D01* +X93569058Y-60032328D01* +X93628073Y-60213956D01* +X93631376Y-60219678D01* +X93631377Y-60219679D01* +X93637712Y-60230652D01* +X93723560Y-60379344D01* +X93796737Y-60460615D01* +X93827453Y-60524621D01* +X93829100Y-60544924D01* +X93829100Y-61013300D01* +X93809098Y-61081421D01* +X93755442Y-61127914D01* +X93703100Y-61139300D01* +X91868800Y-61139300D01* +X91800679Y-61119298D01* +X91781453Y-61102957D01* +X91781180Y-61103260D01* +X91776268Y-61098837D01* +X91771853Y-61093934D01* +X91660870Y-61013300D01* +X91622694Y-60985563D01* +X91622693Y-60985562D01* +X91617352Y-60981682D01* +X91611324Y-60978998D01* +X91611322Y-60978997D01* +X91448919Y-60906691D01* +X91448918Y-60906691D01* +X91442888Y-60904006D01* +X91340652Y-60882275D01* +X91262544Y-60865672D01* +X91262539Y-60865672D01* +X91256087Y-60864300D01* +X91065113Y-60864300D01* +X91058661Y-60865672D01* +X91058656Y-60865672D01* +X90980548Y-60882275D01* +X90878312Y-60904006D01* +X90872282Y-60906691D01* +X90872281Y-60906691D01* +X90709878Y-60978997D01* +X90709876Y-60978998D01* +X90703848Y-60981682D01* +X90698507Y-60985562D01* +X90698506Y-60985563D01* +X90660330Y-61013300D01* +X90549347Y-61093934D01* +X90544926Y-61098844D01* +X90544925Y-61098845D01* +X90432910Y-61223251D01* +X90421560Y-61235856D01* +X90326073Y-61401244D01* +X90267058Y-61582872D01* +X90266368Y-61589433D01* +X90266368Y-61589435D01* +X90251031Y-61735362D01* +X90247096Y-61772800D01* +X90247786Y-61779365D01* +X90264509Y-61938472D01* +X90267058Y-61962728D01* +X90326073Y-62144356D01* +X90329376Y-62150078D01* +X90329377Y-62150079D01* +X90338320Y-62165569D01* +X90421560Y-62309744D01* +X90425978Y-62314651D01* +X90425979Y-62314652D01* +X90450097Y-62341438D01* +X90549347Y-62451666D01* +X90607162Y-62493671D01* +X90657115Y-62529964D01* +X90703848Y-62563918D01* +X90709876Y-62566602D01* +X90709878Y-62566603D01* +X90872281Y-62638909D01* +X90878312Y-62641594D01* +X90971712Y-62661447D01* +X91058656Y-62679928D01* +X91058661Y-62679928D01* +X91065113Y-62681300D01* +X91256087Y-62681300D01* +X91262539Y-62679928D01* +X91262544Y-62679928D01* +X91349488Y-62661447D01* +X91442888Y-62641594D01* +X91448919Y-62638909D01* +X91611322Y-62566603D01* +X91611324Y-62566602D01* +X91617352Y-62563918D01* +X91664086Y-62529964D01* +X91750271Y-62467346D01* +X91771853Y-62451666D01* +X91776268Y-62446763D01* +X91781180Y-62442340D01* +X91782305Y-62443589D01* +X91835614Y-62410749D01* +X91868800Y-62406300D01* +X93042700Y-62406300D01* +X93110821Y-62426302D01* +X93157314Y-62479958D01* +X93168700Y-62532300D01* +X93168700Y-63058406D01* +X93148698Y-63126527D01* +X93131795Y-63147501D01* +X91366900Y-64912395D01* +X91304588Y-64946421D01* +X91277805Y-64949300D01* +X89100030Y-64949300D01* +X89088847Y-64948773D01* +X89081354Y-64947098D01* +X89073428Y-64947347D01* +X89073427Y-64947347D01* +X89013264Y-64949238D01* +X89009306Y-64949300D01* +X88981406Y-64949300D01* +X88977416Y-64949804D01* +X88965582Y-64950736D01* +X88921373Y-64952126D01* +X88913759Y-64954338D01* +X88913754Y-64954339D01* +X88901921Y-64957777D01* +X88882558Y-64961788D01* +X88862465Y-64964326D01* +X88855098Y-64967243D01* +X88855093Y-64967244D01* +X88821354Y-64980602D01* +X88810127Y-64984446D01* +X88767669Y-64996782D01* +X88760843Y-65000819D01* +X88750234Y-65007093D01* +X88732486Y-65015788D01* +X88713645Y-65023248D01* +X88707229Y-65027910D01* +X88707228Y-65027910D01* +X88677875Y-65049236D01* +X88667955Y-65055752D01* +X88636727Y-65074220D01* +X88636724Y-65074222D01* +X88629900Y-65078258D01* +X88615579Y-65092579D01* +X88600546Y-65105419D01* +X88584155Y-65117328D01* +X88557778Y-65149213D01* +X88555974Y-65151393D01* +X88547984Y-65160174D01* +X88150930Y-65557227D01* +X88088618Y-65591252D01* +X88061835Y-65594131D01* +X86708332Y-65594131D01* +X86697148Y-65593604D01* +X86689660Y-65591930D01* +X86681737Y-65592179D01* +X86621602Y-65594069D01* +X86617644Y-65594131D01* +X86589713Y-65594131D01* +X86585798Y-65594626D01* +X86585794Y-65594626D01* +X86585736Y-65594634D01* +X86585707Y-65594637D01* +X86573865Y-65595570D01* +X86529679Y-65596958D01* +X86516716Y-65600724D01* +X86510227Y-65602609D01* +X86490875Y-65606617D01* +X86483804Y-65607511D01* +X86470772Y-65609157D01* +X86463403Y-65612074D01* +X86463401Y-65612075D01* +X86429666Y-65625431D01* +X86418438Y-65629276D01* +X86375976Y-65641613D01* +X86369154Y-65645647D01* +X86369148Y-65645650D01* +X86358537Y-65651925D01* +X86340787Y-65660621D01* +X86329325Y-65665159D01* +X86329320Y-65665162D01* +X86321952Y-65668079D01* +X86315537Y-65672740D01* +X86286194Y-65694058D01* +X86276276Y-65700574D01* +X86271089Y-65703642D01* +X86238206Y-65723089D01* +X86223882Y-65737413D01* +X86208850Y-65750252D01* +X86192462Y-65762159D01* +X86170450Y-65788767D01* +X86164281Y-65796224D01* +X86156291Y-65805004D01* +X83718780Y-68242515D01* +X83680934Y-68268527D01* +X83623278Y-68294197D01* +X83623276Y-68294198D01* +X83617248Y-68296882D01* +X83611907Y-68300762D01* +X83611906Y-68300763D01* +X83575560Y-68327170D01* +X83462747Y-68409134D01* +X83458326Y-68414044D01* +X83458325Y-68414045D01* +X83350071Y-68534274D01* +X83334960Y-68551056D01* +X83239473Y-68716444D01* +X83180458Y-68898072D01* +X83160496Y-69088000D01* +X83161186Y-69094565D01* +X83167938Y-69158802D01* +X83180458Y-69277928D01* +X83239473Y-69459556D01* +X83334960Y-69624944D01* +X83339378Y-69629851D01* +X83339379Y-69629852D01* +X83359920Y-69652665D01* +X83462747Y-69766866D01* +X83617248Y-69879118D01* +X83623276Y-69881802D01* +X83623278Y-69881803D01* +X83785681Y-69954109D01* +X83791712Y-69956794D01* +X83885112Y-69976647D01* +X83972056Y-69995128D01* +X83972061Y-69995128D01* +X83978513Y-69996500D01* +X84169487Y-69996500D01* +X84175939Y-69995128D01* +X84175944Y-69995128D01* +X84262888Y-69976647D01* +X84356288Y-69956794D01* +X84362319Y-69954109D01* +X84524722Y-69881803D01* +X84524724Y-69881802D01* +X84530752Y-69879118D01* +X84571439Y-69849557D01* +X84638306Y-69825699D01* +X84707458Y-69841779D01* +X84719561Y-69849557D01* +X84760248Y-69879118D01* +X84766276Y-69881802D01* +X84766278Y-69881803D01* +X84928681Y-69954109D01* +X84934712Y-69956794D01* +X85028112Y-69976647D01* +X85115056Y-69995128D01* +X85115061Y-69995128D01* +X85121513Y-69996500D01* +X85216605Y-69996500D01* +X85284726Y-70016502D01* +X85331219Y-70070158D01* +X85341323Y-70140432D01* +X85311829Y-70205012D01* +X85305702Y-70211594D01* +X84915393Y-70601902D01* +X84585099Y-70932196D01* +X84522787Y-70966221D01* +X84496004Y-70969100D01* +X78546594Y-70969100D01* +X78478473Y-70949098D01* +X78457499Y-70932195D01* +X77423543Y-69898238D01* +X77389517Y-69835926D01* +X77394582Y-69765110D01* +X77403519Y-69746143D01* +X77463023Y-69643079D01* +X77463024Y-69643078D01* +X77466327Y-69637356D01* +X77525342Y-69455728D01* +X77535109Y-69362805D01* +X77544614Y-69272365D01* +X77545304Y-69265800D01* +X77530052Y-69120685D01* +X77526032Y-69082435D01* +X77526032Y-69082433D01* +X77525342Y-69075872D01* +X77466327Y-68894244D01* +X77370840Y-68728856D01* +X77359654Y-68716432D01* +X77247475Y-68591845D01* +X77247474Y-68591844D01* +X77243053Y-68586934D01* +X77107023Y-68488102D01* +X77093894Y-68478563D01* +X77093893Y-68478562D01* +X77088552Y-68474682D01* +X77082524Y-68471998D01* +X77082522Y-68471997D01* +X76920119Y-68399691D01* +X76920118Y-68399691D01* +X76914088Y-68397006D01* +X76820687Y-68377153D01* +X76733744Y-68358672D01* +X76733739Y-68358672D01* +X76727287Y-68357300D01* +X76536313Y-68357300D01* +X76529861Y-68358672D01* +X76529856Y-68358672D01* +X76442913Y-68377153D01* +X76349512Y-68397006D01* +X76343482Y-68399691D01* +X76343481Y-68399691D01* +X76181078Y-68471997D01* +X76181076Y-68471998D01* +X76175048Y-68474682D01* +X76169707Y-68478562D01* +X76169706Y-68478563D01* +X76156577Y-68488102D01* +X76020547Y-68586934D01* +X76016126Y-68591844D01* +X76016125Y-68591845D01* +X75903947Y-68716432D01* +X75892760Y-68728856D01* +X75797273Y-68894244D01* +X75738258Y-69075872D01* +X75737568Y-69082433D01* +X75737568Y-69082435D01* +X75733548Y-69120685D01* +X75718296Y-69265800D01* +X75718986Y-69272365D01* +X75728492Y-69362805D01* +X75738258Y-69455728D01* +X75797273Y-69637356D01* +X75800576Y-69643078D01* +X75800577Y-69643079D01* +X75805309Y-69651275D01* +X75892760Y-69802744D01* +X75964438Y-69882351D01* +X75995154Y-69946356D01* +X75996739Y-69962700D01* +X75998238Y-70010386D01* +X75998300Y-70014345D01* +X75998300Y-70042256D01* +X75998797Y-70046190D01* +X75998797Y-70046191D01* +X75998805Y-70046256D01* +X75999738Y-70058093D01* +X76001127Y-70102289D01* +X76006778Y-70121739D01* +X76010787Y-70141100D01* +X76013326Y-70161197D01* +X76016245Y-70168568D01* +X76016245Y-70168570D01* +X76029604Y-70202312D01* +X76033449Y-70213542D01* +X76043571Y-70248383D01* +X76045782Y-70255993D01* +X76049815Y-70262812D01* +X76049817Y-70262817D01* +X76056093Y-70273428D01* +X76064788Y-70291176D01* +X76072248Y-70310017D01* +X76076910Y-70316433D01* +X76076910Y-70316434D01* +X76098236Y-70345787D01* +X76104752Y-70355707D01* +X76127258Y-70393762D01* +X76141579Y-70408083D01* +X76154419Y-70423116D01* +X76166328Y-70439507D01* +X76172434Y-70444558D01* +X76200405Y-70467698D01* +X76209184Y-70475688D01* +X77728343Y-71994847D01* +X77735887Y-72003137D01* +X77740000Y-72009618D01* +X77745777Y-72015043D01* +X77789667Y-72056258D01* +X77792509Y-72059013D01* +X77812231Y-72078735D01* +X77815355Y-72081158D01* +X77815359Y-72081162D01* +X77815424Y-72081212D01* +X77824445Y-72088917D01* +X77856679Y-72119186D01* +X77863627Y-72123005D01* +X77863629Y-72123007D01* +X77874432Y-72128946D01* +X77890959Y-72139802D01* +X77900698Y-72147357D01* +X77900700Y-72147358D01* +X77906960Y-72152214D01* +X77947540Y-72169774D01* +X77958188Y-72174991D01* +X77982976Y-72188618D01* +X77996940Y-72196295D01* +X78004616Y-72198266D01* +X78004619Y-72198267D01* +X78016562Y-72201333D01* +X78035267Y-72207737D01* +X78053855Y-72215781D01* +X78061678Y-72217020D01* +X78061688Y-72217023D01* +X78097524Y-72222699D01* +X78109144Y-72225105D01* +X78140959Y-72233273D01* +X78151970Y-72236100D01* +X78172224Y-72236100D01* +X78191934Y-72237651D01* +X78211943Y-72240820D01* +X78219835Y-72240074D01* +X78238580Y-72238302D01* +X78255962Y-72236659D01* +X78267819Y-72236100D01* +X78582352Y-72236100D01* +X78650473Y-72256102D01* +X78696966Y-72309758D01* +X78707662Y-72375270D01* +X78690096Y-72542400D01* +X78710058Y-72732328D01* +X78769073Y-72913956D01* +X78772376Y-72919678D01* +X78772377Y-72919679D01* +X78851931Y-73057471D01* +X78868669Y-73126467D01* +X78845448Y-73193558D01* +X78842225Y-73197492D01* +X78838441Y-73202699D01* +X78833014Y-73208479D01* +X78829195Y-73215425D01* +X78829193Y-73215428D01* +X78823252Y-73226234D01* +X78812401Y-73242753D01* +X78799986Y-73258759D01* +X78796841Y-73266028D01* +X78796838Y-73266032D01* +X78782426Y-73299337D01* +X78777209Y-73309987D01* +X78755905Y-73348740D01* +X78753934Y-73356415D01* +X78753934Y-73356416D01* +X78750867Y-73368362D01* +X78744463Y-73387066D01* +X78736419Y-73405655D01* +X78735180Y-73413478D01* +X78735177Y-73413488D01* +X78729501Y-73449324D01* +X78727095Y-73460944D01* +X78716100Y-73503770D01* +X78716100Y-73524024D01* +X78714549Y-73543734D01* +X78711380Y-73563743D01* +X78712126Y-73571635D01* +X78715541Y-73607761D01* +X78716100Y-73619619D01* +X78716100Y-77765005D01* +X78696098Y-77833126D01* +X78679195Y-77854100D01* +X78500147Y-78033148D01* +X78491861Y-78040688D01* +X78485382Y-78044800D01* +X78479957Y-78050577D01* +X78438757Y-78094451D01* +X78436002Y-78097293D01* +X78416265Y-78117030D01* +X78413785Y-78120227D01* +X78406082Y-78129247D01* +X78375814Y-78161479D01* +X78371995Y-78168425D01* +X78371993Y-78168428D01* +X78366052Y-78179234D01* +X78355201Y-78195753D01* +X78342786Y-78211759D01* +X78339641Y-78219028D01* +X78339638Y-78219032D01* +X78325226Y-78252337D01* +X78320009Y-78262987D01* +X78298705Y-78301740D01* +X78296734Y-78309415D01* +X78296734Y-78309416D01* +X78293667Y-78321362D01* +X78287263Y-78340066D01* +X78279219Y-78358655D01* +X78277980Y-78366478D01* +X78277977Y-78366488D01* +X78272301Y-78402324D01* +X78269895Y-78413944D01* +X78258900Y-78456770D01* +X78258900Y-78477024D01* +X78257349Y-78496734D01* +X78254180Y-78516743D01* +X78254926Y-78524635D01* +X78258341Y-78560761D01* +X78258900Y-78572619D01* +X78258900Y-78806405D01* +X78238898Y-78874526D01* +X78221995Y-78895501D01* +X77625499Y-79491996D01* +X77563187Y-79526021D01* +X77536404Y-79528900D01* +X75892200Y-79528900D01* +X75824079Y-79508898D01* +X75804853Y-79492557D01* +X75804580Y-79492860D01* +X75799668Y-79488437D01* +X75795253Y-79483534D01* +X75640752Y-79371282D01* +X75634724Y-79368598D01* +X75634722Y-79368597D01* +X75472319Y-79296291D01* +X75472318Y-79296291D01* +X75466288Y-79293606D01* +X75372888Y-79273753D01* +X75285944Y-79255272D01* +X75285939Y-79255272D01* +X75279487Y-79253900D01* +X75088513Y-79253900D01* +X75082061Y-79255272D01* +X75082056Y-79255272D01* +X74995112Y-79273753D01* +X74901712Y-79293606D01* +X74895682Y-79296291D01* +X74895681Y-79296291D01* +X74733278Y-79368597D01* +X74733276Y-79368598D01* +X74727248Y-79371282D01* +X74572747Y-79483534D01* +X74568326Y-79488444D01* +X74568325Y-79488445D01* +X74523652Y-79538060D01* +X74444960Y-79625456D01* +X74349473Y-79790844D01* +X74290458Y-79972472D01* +X74289768Y-79979033D01* +X74289768Y-79979035D01* +X74288090Y-79995005D01* +X74270496Y-80162400D01* +X74271186Y-80168965D01* +X74288016Y-80329090D01* +X74290458Y-80352328D01* +X74349473Y-80533956D01* +X74352776Y-80539678D01* +X74352777Y-80539679D01* +X74373208Y-80575067D01* +X74444960Y-80699344D01* +X74449378Y-80704251D01* +X74449379Y-80704252D01* +X74553284Y-80819650D01* +X74572747Y-80841266D01* +X74657854Y-80903100D01* +X74719831Y-80948129D01* +X74727248Y-80953518D01* +X74733276Y-80956202D01* +X74733278Y-80956203D01* +X74895681Y-81028509D01* +X74901712Y-81031194D01* +X75065882Y-81066090D01* +X75128354Y-81099817D01* +X75162676Y-81161967D01* +X75157948Y-81232806D01* +X75115672Y-81289844D01* +X75087902Y-81305745D01* +X74968232Y-81355314D01* +X74918118Y-81393768D01* +X74851898Y-81419369D01* +X74782349Y-81405104D01* +X74734271Y-81360110D01* +X74673416Y-81261769D01* +X74667771Y-81256134D01* +X74555484Y-81144042D01* +X74555479Y-81144038D01* +X74550303Y-81138871D01* +X74440034Y-81070900D01* +X74408450Y-81051431D01* +X74408448Y-81051430D01* +X74402220Y-81047591D01* +X74237109Y-80992826D01* +X74230273Y-80992126D01* +X74230270Y-80992125D01* +X74178774Y-80986849D01* +X74134372Y-80982300D01* +X73435228Y-80982300D01* +X73431982Y-80982637D01* +X73431978Y-80982637D01* +X73338065Y-80992381D01* +X73338061Y-80992382D01* +X73331207Y-80993093D01* +X73324671Y-80995274D01* +X73324669Y-80995274D01* +X73225052Y-81028509D01* +X73166193Y-81048146D01* +X73018269Y-81139684D01* +X73013097Y-81144865D01* +X73011027Y-81146939D01* +X73009262Y-81147905D01* +X73007359Y-81149413D01* +X73007101Y-81149087D01* +X72948746Y-81181019D01* +X72877925Y-81176018D01* +X72832830Y-81147092D01* +X72830169Y-81144436D01* +X72818760Y-81135425D01* +X72683237Y-81051888D01* +X72670059Y-81045744D01* +X72518534Y-80995485D01* +X72505168Y-80992619D01* +X72412530Y-80983128D01* +X72406115Y-80982800D01* +X72331915Y-80982800D01* +X72316676Y-80987275D01* +X72315471Y-80988665D01* +X72313800Y-80996348D01* +X72313800Y-82930685D01* +X72318275Y-82945924D01* +X72319665Y-82947129D01* +X72327348Y-82948800D01* +X72406066Y-82948800D01* +X72412582Y-82948463D01* +X72506432Y-82938725D01* +X72519828Y-82935832D01* +X72671253Y-82885312D01* +X72684415Y-82879147D01* +X72819792Y-82795374D01* +X72831194Y-82786336D01* +X72832867Y-82784661D01* +X72834293Y-82783881D01* +X72836927Y-82781793D01* +X72837284Y-82782244D01* +X72895149Y-82750581D01* +X72965969Y-82755584D01* +X73011054Y-82784501D01* +X73012893Y-82786336D01* +X73019297Y-82792729D01* +X73025527Y-82796569D01* +X73025528Y-82796570D01* +X73116416Y-82852594D01* +X73163909Y-82905366D01* +X73176300Y-82959854D01* +X73176300Y-83184939D01* +X73156298Y-83253060D01* +X73098518Y-83301348D01* +X72968232Y-83355314D01* +X72846343Y-83448843D01* +X72752814Y-83570733D01* +X72694019Y-83712676D01* +X72692941Y-83720865D01* +X72681011Y-83811484D01* +X72679000Y-83826756D01* +X72679000Y-83830876D01* +X72678942Y-83831761D01* +X72654526Y-83898427D01* +X72597943Y-83941310D01* +X72527158Y-83946794D01* +X72464117Y-83912612D01* +X71715400Y-83163895D01* +X71681374Y-83101583D01* +X71686439Y-83030768D01* +X71728986Y-82973932D01* +X71771524Y-82958066D01* +X71770302Y-82953904D01* +X71802924Y-82944325D01* +X71804129Y-82942935D01* +X71805800Y-82935252D01* +X71805800Y-81000915D01* +X71793457Y-80958878D01* +X71784055Y-80944250D01* +X71784051Y-80873254D01* +X71815854Y-80819650D01* +X74037899Y-78597605D01* +X74100211Y-78563579D01* +X74126994Y-78560700D01* +X74475800Y-78560700D01* +X74543921Y-78580702D01* +X74563147Y-78597043D01* +X74563420Y-78596740D01* +X74568332Y-78601163D01* +X74572747Y-78606066D01* +X74727248Y-78718318D01* +X74733276Y-78721002D01* +X74733278Y-78721003D01* +X74895681Y-78793309D01* +X74901712Y-78795994D01* +X74995112Y-78815847D01* +X75082056Y-78834328D01* +X75082061Y-78834328D01* +X75088513Y-78835700D01* +X75279487Y-78835700D01* +X75285939Y-78834328D01* +X75285944Y-78834328D01* +X75372888Y-78815847D01* +X75466288Y-78795994D01* +X75472319Y-78793309D01* +X75634722Y-78721003D01* +X75634724Y-78721002D01* +X75640752Y-78718318D01* +X75795253Y-78606066D01* +X75830721Y-78566675D01* +X75918621Y-78469052D01* +X75918622Y-78469051D01* +X75923040Y-78464144D01* +X75999931Y-78330966D01* +X76015223Y-78304479D01* +X76015224Y-78304478D01* +X76018527Y-78298756D01* +X76077542Y-78117128D01* +X76079776Y-78095879D01* +X76096814Y-77933765D01* +X76097504Y-77927200D01* +X76077542Y-77737272D01* +X76018527Y-77555644D01* +X75923040Y-77390256D01* +X75906881Y-77372309D01* +X75799675Y-77253245D01* +X75799674Y-77253244D01* +X75795253Y-77248334D01* +X75640752Y-77136082D01* +X75634724Y-77133398D01* +X75634722Y-77133397D01* +X75472319Y-77061091D01* +X75472318Y-77061091D01* +X75466288Y-77058406D01* +X75372888Y-77038553D01* +X75285944Y-77020072D01* +X75285939Y-77020072D01* +X75279487Y-77018700D01* +X75088513Y-77018700D01* +X75082061Y-77020072D01* +X75082056Y-77020072D01* +X74995112Y-77038553D01* +X74901712Y-77058406D01* +X74895682Y-77061091D01* +X74895681Y-77061091D01* +X74733278Y-77133397D01* +X74733276Y-77133398D01* +X74727248Y-77136082D01* +X74572747Y-77248334D01* +X74568332Y-77253237D01* +X74563420Y-77257660D01* +X74562295Y-77256411D01* +X74508986Y-77289251D01* +X74475800Y-77293700D01* +X73891167Y-77293700D01* +X73879984Y-77293173D01* +X73872491Y-77291498D01* +X73864565Y-77291747D01* +X73864564Y-77291747D01* +X73804414Y-77293638D01* +X73800455Y-77293700D01* +X73772544Y-77293700D01* +X73768610Y-77294197D01* +X73768609Y-77294197D01* +X73768544Y-77294205D01* +X73756707Y-77295138D01* +X73724890Y-77296138D01* +X73720429Y-77296278D01* +X73712510Y-77296527D01* +X73694854Y-77301656D01* +X73693058Y-77302178D01* +X73673706Y-77306186D01* +X73666635Y-77307080D01* +X73653603Y-77308726D01* +X73646234Y-77311643D01* +X73646232Y-77311644D01* +X73612497Y-77325000D01* +X73601269Y-77328845D01* +X73558807Y-77341182D01* +X73551985Y-77345216D01* +X73551979Y-77345219D01* +X73541368Y-77351494D01* +X73523618Y-77360190D01* +X73512156Y-77364728D01* +X73512151Y-77364731D01* +X73504783Y-77367648D01* +X73493739Y-77375672D01* +X73469025Y-77393627D01* +X73459107Y-77400143D01* +X73440419Y-77411195D01* +X73421037Y-77422658D01* +X73406713Y-77436982D01* +X73391681Y-77449821D01* +X73375293Y-77461728D01* +X73352734Y-77488997D01* +X73347112Y-77495793D01* +X73339122Y-77504573D01* +X70548631Y-80295064D01* +X70486319Y-80329090D01* +X70415504Y-80324025D01* +X70358668Y-80281478D01* +X70333857Y-80214958D01* +X70335337Y-80184743D01* +X70568623Y-78819744D01* +X70623110Y-78500935D01* +X70626615Y-78485981D01* +X70635373Y-78456770D01* +X71619971Y-75172549D01* +X71624540Y-75159832D01* +X72956498Y-71996781D01* +X72959924Y-71989332D01* +X74543551Y-68822078D01* +X74549559Y-68811397D01* +X76368618Y-65917070D01* +X76379676Y-65902068D01* +X76514955Y-65744427D01* +X76795979Y-65416949D01* +X76824012Y-65392665D01* +X76825479Y-65391733D01* +X77517164Y-64952126D01* +X77620907Y-64886191D01* +X77643202Y-64874952D01* +X78367384Y-64596003D01* +X78572689Y-64516921D01* +X78617979Y-64508500D01* +X79633279Y-64508500D01* +X79653884Y-64510196D01* +X80095550Y-64583409D01* +X80096613Y-64583590D01* +X80176566Y-64597547D01* +X80207172Y-64594116D01* +X80223974Y-64593363D01* +X80235783Y-64593623D01* +X80253860Y-64594021D01* +X80262531Y-64591691D01* +X80262534Y-64591691D01* +X80286035Y-64585377D01* +X80286920Y-64585174D01* +X80287787Y-64585077D01* +X80290146Y-64584434D01* +X80290159Y-64584431D01* +X80331089Y-64573274D01* +X80331532Y-64573154D01* +X80346797Y-64569053D01* +X80394529Y-64556229D01* +X80395152Y-64555850D01* +X80395672Y-64555668D01* +X81030789Y-64382540D01* +X81192653Y-64338417D01* +X81212808Y-64335098D01* +X81216694Y-64334300D01* +X81225657Y-64333760D01* +X81258633Y-64321921D01* +X81271222Y-64317402D01* +X81280654Y-64314429D01* +X81287083Y-64312676D01* +X81287087Y-64312675D01* +X81291411Y-64311496D01* +X81305952Y-64305205D01* +X81313388Y-64302265D01* +X81330993Y-64295944D01* +X81339972Y-64291048D01* +X81350247Y-64286038D01* +X81383000Y-64271866D01* +X81383001Y-64271866D01* +X81391239Y-64268301D01* +X81400081Y-64260961D01* +X81420242Y-64247287D01* +X82286675Y-63774919D01* +X82289919Y-63773211D01* +X82306914Y-63764577D01* +X82347855Y-63743778D01* +X82374779Y-63718467D01* +X82385695Y-63709311D01* +X82403041Y-63696358D01* +X82415168Y-63687303D01* +X82420563Y-63680131D01* +X82420565Y-63680129D01* +X82456501Y-63632355D01* +X82457794Y-63630667D01* +X82670429Y-63357703D01* +X83940743Y-63357703D01* +X83941302Y-63361947D01* +X83941302Y-63361951D01* +X83955405Y-63469072D01* +X83978268Y-63642734D01* +X83979401Y-63646874D01* +X83979401Y-63646876D01* +X83994410Y-63701739D01* +X84054129Y-63920036D01* +X84055813Y-63923984D01* +X84151471Y-64148249D01* +X84166923Y-64184476D01* +X84199133Y-64238295D01* +X84308534Y-64421090D01* +X84314561Y-64431161D01* +X84494313Y-64655528D01* +X84578297Y-64735226D01* +X84685232Y-64836703D01* +X84702851Y-64853423D01* +X84860257Y-64966531D01* +X84923730Y-65012141D01* +X84936317Y-65021186D01* +X84940112Y-65023195D01* +X84940113Y-65023196D01* +X84961869Y-65034715D01* +X85190392Y-65155712D01* +X85270174Y-65184908D01* +X85445016Y-65248891D01* +X85460373Y-65254511D01* +X85741264Y-65315755D01* +X85769841Y-65318004D01* +X85964282Y-65333307D01* +X85964291Y-65333307D01* +X85966739Y-65333500D01* +X86122271Y-65333500D01* +X86124407Y-65333354D01* +X86124418Y-65333354D01* +X86332548Y-65319165D01* +X86332554Y-65319164D01* +X86336825Y-65318873D01* +X86341020Y-65318004D01* +X86341022Y-65318004D01* +X86506950Y-65283642D01* +X86618342Y-65260574D01* +X86889343Y-65164607D01* +X87039553Y-65087078D01* +X87141005Y-65034715D01* +X87141006Y-65034715D01* +X87144812Y-65032750D01* +X87148313Y-65030289D01* +X87148317Y-65030287D01* +X87266328Y-64947347D01* +X87380023Y-64867441D01* +X87522303Y-64735226D01* +X87587479Y-64674661D01* +X87587481Y-64674658D01* +X87590622Y-64671740D01* +X87772713Y-64449268D01* +X87922927Y-64204142D01* +X87959542Y-64120731D01* +X88036758Y-63944828D01* +X88036759Y-63944826D01* +X88038483Y-63940898D01* +X88117244Y-63664406D01* +X88157751Y-63379784D01* +X88157809Y-63368875D01* +X88159235Y-63096583D01* +X88159235Y-63096576D01* +X88159257Y-63092297D01* +X88146737Y-62997194D01* +X88134246Y-62902320D01* +X88121732Y-62807266D01* +X88119776Y-62800114D01* +X88097115Y-62717281D01* +X88045871Y-62529964D01* +X88036607Y-62508246D01* +X87934763Y-62269476D01* +X87934761Y-62269472D01* +X87933077Y-62265524D01* +X87785439Y-62018839D01* +X87605687Y-61794472D01* +X87425897Y-61623858D01* +X87400258Y-61599527D01* +X87400255Y-61599525D01* +X87397149Y-61596577D01* +X87163683Y-61428814D01* +X87141843Y-61417250D01* +X87111612Y-61401244D01* +X86909608Y-61294288D01* +X86715490Y-61223251D01* +X86643658Y-61196964D01* +X86643656Y-61196963D01* +X86639627Y-61195489D01* +X86358736Y-61134245D01* +X86327685Y-61131801D01* +X86135718Y-61116693D01* +X86135709Y-61116693D01* +X86133261Y-61116500D01* +X85977729Y-61116500D01* +X85975593Y-61116646D01* +X85975582Y-61116646D01* +X85767452Y-61130835D01* +X85767446Y-61130836D01* +X85763175Y-61131127D01* +X85758980Y-61131996D01* +X85758978Y-61131996D01* +X85688395Y-61146613D01* +X85481658Y-61189426D01* +X85210657Y-61285393D01* +X84955188Y-61417250D01* +X84951687Y-61419711D01* +X84951683Y-61419713D01* +X84899112Y-61456661D01* +X84719977Y-61582559D01* +X84703011Y-61598325D01* +X84514140Y-61773835D01* +X84509378Y-61778260D01* +X84327287Y-62000732D01* +X84177073Y-62245858D01* +X84175347Y-62249791D01* +X84175346Y-62249792D01* +X84145261Y-62318328D01* +X84061517Y-62509102D01* +X83982756Y-62785594D01* +X83942249Y-63070216D01* +X83942227Y-63074505D01* +X83942226Y-63074512D01* +X83940841Y-63338926D01* +X83940743Y-63357703D01* +X82670429Y-63357703D01* +X83006518Y-62926260D01* +X83022982Y-62909047D01* +X83023780Y-62908141D01* +X83030605Y-62902320D01* +X83035520Y-62894820D01* +X83035525Y-62894814D01* +X83056592Y-62862664D01* +X83062582Y-62854290D01* +X83065982Y-62849925D01* +X83068739Y-62846386D01* +X83077008Y-62831929D01* +X83080992Y-62825429D01* +X83089277Y-62812787D01* +X83089280Y-62812781D01* +X83091948Y-62808710D01* +X83095845Y-62800114D01* +X83101230Y-62789581D01* +X83118286Y-62759762D01* +X83118287Y-62759759D01* +X83122744Y-62751967D01* +X83124835Y-62743236D01* +X83124837Y-62743231D01* +X83125621Y-62739957D01* +X83133396Y-62717281D01* +X83403330Y-62121835D01* +X83527021Y-61848987D01* +X83527713Y-61847489D01* +X83552604Y-61794472D01* +X83558131Y-61782700D01* +X83563035Y-61751204D01* +X83566558Y-61735371D01* +X83575471Y-61704764D01* +X83575350Y-61595970D01* +X83575350Y-59923613D01* +X83578174Y-59897085D01* +X83664362Y-59496893D01* +X83799571Y-58869091D01* +X83812119Y-58835309D01* +X83812194Y-58835173D01* +X83813005Y-58833685D01* +X97611100Y-58833685D01* +X97615575Y-58848924D01* +X97616965Y-58850129D01* +X97624648Y-58851800D01* +X98334485Y-58851800D01* +X98349724Y-58847325D01* +X98350929Y-58845935D01* +X98352600Y-58838252D01* +X98352600Y-58140915D01* +X98348125Y-58125676D01* +X98346735Y-58124471D01* +X98339052Y-58122800D01* +X98310334Y-58122800D01* +X98303818Y-58123137D01* +X98209968Y-58132875D01* +X98196572Y-58135768D01* +X98045147Y-58186288D01* +X98031985Y-58192453D01* +X97896608Y-58276226D01* +X97885210Y-58285260D01* +X97772737Y-58397929D01* +X97763725Y-58409340D01* +X97680188Y-58544863D01* +X97674044Y-58558041D01* +X97623785Y-58709566D01* +X97620919Y-58722932D01* +X97611428Y-58815570D01* +X97611100Y-58821985D01* +X97611100Y-58833685D01* +X83813005Y-58833685D01* +X84231415Y-58066217D01* +X84252946Y-58037434D01* +X84988326Y-57302051D01* +X85008463Y-57285691D01* +X85104859Y-57222656D01* +X87132752Y-55896580D01* +X87140487Y-55891910D01* +X87166351Y-55877532D01* +X89953936Y-54327885D01* +X100282000Y-54327885D01* +X100286475Y-54343124D01* +X100287865Y-54344329D01* +X100295548Y-54346000D01* +X101017885Y-54346000D01* +X101033124Y-54341525D01* +X101034329Y-54340135D01* +X101036000Y-54332452D01* +X101036000Y-53092076D01* +X101032027Y-53078545D01* +X101024232Y-53077425D01* +X100916479Y-53109138D01* +X100905111Y-53113731D01* +X100740846Y-53199607D01* +X100730585Y-53206321D01* +X100586127Y-53322468D01* +X100577368Y-53331046D01* +X100458222Y-53473039D01* +X100451292Y-53483159D01* +X100361998Y-53645585D01* +X100357166Y-53656858D01* +X100301120Y-53833538D01* +X100298570Y-53845532D01* +X100282393Y-53989761D01* +X100282000Y-53996785D01* +X100282000Y-54327885D01* +X89953936Y-54327885D01* +X90130927Y-54229494D01* +X90144328Y-54223048D01* +X93387316Y-52892806D01* +X93396183Y-52889552D01* +X96282522Y-51951342D01* +X96691530Y-51818393D01* +X96705272Y-51815499D01* +X96705250Y-51815411D01* +X96713966Y-51813250D01* +X96722894Y-51812346D01* +X96731208Y-51808973D01* +X96731214Y-51808972D01* +X96770212Y-51793153D01* +X96778618Y-51790086D01* +X96786897Y-51787395D01* +X96786905Y-51787392D01* +X96791168Y-51786006D01* +X96795195Y-51784028D01* +X96795198Y-51784027D01* +X96799367Y-51781979D01* +X96802984Y-51780203D01* +X96811165Y-51776540D01* +X96849548Y-51760971D01* +X96849552Y-51760969D01* +X96857869Y-51757595D01* +X96864908Y-51752021D01* +X96872660Y-51747503D01* +X96872716Y-51747599D01* +X96873394Y-51747171D01* +X96873327Y-51747073D01* +X96880741Y-51742014D01* +X96888801Y-51738056D01* +X96895425Y-51731996D01* +X96895427Y-51731994D01* +X96925810Y-51704194D01* +X96932617Y-51698396D01* +X96972054Y-51667163D01* +X96977246Y-51659836D01* +X96983421Y-51653322D01* +X96983504Y-51653401D01* +X96984032Y-51652804D01* +X96983943Y-51652731D01* +X96989641Y-51645792D01* +X96996265Y-51639732D01* +X97022342Y-51596746D01* +X97027263Y-51589250D01* +X97033943Y-51579823D01* +X97033944Y-51579822D01* +X97036761Y-51575846D01* +X97038936Y-51571479D01* +X97042390Y-51564543D01* +X97047452Y-51555356D01* +X97067156Y-51522876D01* +X97067156Y-51522875D01* +X97071813Y-51515199D01* +X97074138Y-51506489D01* +X97083085Y-51482817D01* +X97198962Y-51250110D01* +X97209856Y-51232158D01* +X97305934Y-51100076D01* +X97365845Y-51017713D01* +X97548465Y-50766657D01* +X100282000Y-50766657D01* +X100282301Y-50772805D01* +X100295812Y-50910603D01* +X100298195Y-50922638D01* +X100351767Y-51100076D01* +X100356441Y-51111416D01* +X100443460Y-51275077D01* +X100450249Y-51285294D01* +X100567397Y-51428933D01* +X100576041Y-51437637D01* +X100718856Y-51555784D01* +X100729027Y-51562644D01* +X100892076Y-51650804D01* +X100903381Y-51655556D01* +X101018692Y-51691250D01* +X101032795Y-51691456D01* +X101036000Y-51684701D01* +X101036000Y-51677924D01* +X101544000Y-51677924D01* +X101547973Y-51691455D01* +X101555768Y-51692575D01* +X101663521Y-51660862D01* +X101674889Y-51656269D01* +X101839154Y-51570393D01* +X101849415Y-51563679D01* +X101993873Y-51447532D01* +X102002632Y-51438954D01* +X102121778Y-51296961D01* +X102128708Y-51286841D01* +X102218002Y-51124415D01* +X102222834Y-51113142D01* +X102278880Y-50936462D01* +X102281430Y-50924468D01* +X102297607Y-50780239D01* +X102298000Y-50773215D01* +X102298000Y-50766657D01* +X108922000Y-50766657D01* +X108922301Y-50772805D01* +X108935812Y-50910603D01* +X108938195Y-50922638D01* +X108991767Y-51100076D01* +X108996441Y-51111416D01* +X109083460Y-51275077D01* +X109090249Y-51285294D01* +X109207397Y-51428933D01* +X109216041Y-51437637D01* +X109358856Y-51555784D01* +X109369027Y-51562644D01* +X109532076Y-51650804D01* +X109543381Y-51655556D01* +X109658692Y-51691250D01* +X109672795Y-51691456D01* +X109676000Y-51684701D01* +X109676000Y-51677924D01* +X110184000Y-51677924D01* +X110187973Y-51691455D01* +X110195768Y-51692575D01* +X110303521Y-51660862D01* +X110314889Y-51656269D01* +X110479154Y-51570393D01* +X110489415Y-51563679D01* +X110633873Y-51447532D01* +X110642632Y-51438954D01* +X110761778Y-51296961D01* +X110768708Y-51286841D01* +X110858002Y-51124415D01* +X110862834Y-51113142D01* +X110918880Y-50936462D01* +X110921430Y-50924468D01* +X110937607Y-50780239D01* +X110938000Y-50773215D01* +X110938000Y-50692115D01* +X110933525Y-50676876D01* +X110932135Y-50675671D01* +X110924452Y-50674000D01* +X110202115Y-50674000D01* +X110186876Y-50678475D01* +X110185671Y-50679865D01* +X110184000Y-50687548D01* +X110184000Y-51677924D01* +X109676000Y-51677924D01* +X109676000Y-50692115D01* +X109671525Y-50676876D01* +X109670135Y-50675671D01* +X109662452Y-50674000D01* +X108940115Y-50674000D01* +X108924876Y-50678475D01* +X108923671Y-50679865D01* +X108922000Y-50687548D01* +X108922000Y-50766657D01* +X102298000Y-50766657D01* +X102298000Y-50692115D01* +X102293525Y-50676876D01* +X102292135Y-50675671D01* +X102284452Y-50674000D01* +X101562115Y-50674000D01* +X101546876Y-50678475D01* +X101545671Y-50679865D01* +X101544000Y-50687548D01* +X101544000Y-51677924D01* +X101036000Y-51677924D01* +X101036000Y-50692115D01* +X101031525Y-50676876D01* +X101030135Y-50675671D01* +X101022452Y-50674000D01* +X100300115Y-50674000D01* +X100284876Y-50678475D01* +X100283671Y-50679865D01* +X100282000Y-50687548D01* +X100282000Y-50766657D01* +X97548465Y-50766657D01* +X97804965Y-50414035D01* +X97828167Y-50389749D01* +X98231524Y-50067195D01* +X98513458Y-49841740D01* +X98555026Y-49819739D01* +X99490137Y-49531467D01* +X99510067Y-49527054D01* +X100295490Y-49418947D01* +X100365700Y-49429473D01* +X100419075Y-49476288D01* +X100438667Y-49544528D01* +X100423084Y-49604471D01* +X100361994Y-49715593D01* +X100357166Y-49726858D01* +X100301120Y-49903538D01* +X100298570Y-49915532D01* +X100282393Y-50059761D01* +X100282000Y-50066785D01* +X100282000Y-50147885D01* +X100286475Y-50163124D01* +X100287865Y-50164329D01* +X100295548Y-50166000D01* +X102279885Y-50166000D01* +X102295124Y-50161525D01* +X102296329Y-50160135D01* +X102298000Y-50152452D01* +X102298000Y-50073343D01* +X102297699Y-50067195D01* +X102284188Y-49929397D01* +X102281805Y-49917362D01* +X102228233Y-49739924D01* +X102223559Y-49728584D01* +X102136540Y-49564923D01* +X102129751Y-49554706D01* +X102012603Y-49411067D01* +X102001771Y-49400160D01* +X101967963Y-49337730D01* +X101973274Y-49266932D01* +X102016019Y-49210245D01* +X102082412Y-49185680D01* +X103309780Y-49100104D01* +X105477951Y-48948932D01* +X105492568Y-48948764D01* +X107231877Y-49029835D01* +G37* +%TD.AperFunction*% +%TD*% +M02* diff --git a/F1:F103/Canon_managing_device/kicad/Canon_manage/gerbers/Canon_manage-B_Mask.gbr b/F1:F103/Canon_managing_device/kicad/Canon_manage/gerbers/Canon_manage-B_Mask.gbr new file mode 100644 index 0000000..46e87ef --- /dev/null +++ b/F1:F103/Canon_managing_device/kicad/Canon_manage/gerbers/Canon_manage-B_Mask.gbr @@ -0,0 +1,239 @@ +%TF.GenerationSoftware,KiCad,Pcbnew,6.0.5*% +%TF.CreationDate,2022-09-23T09:05:14+03:00*% +%TF.ProjectId,Canon_manage,43616e6f-6e5f-46d6-916e-6167652e6b69,rev?*% +%TF.SameCoordinates,Original*% +%TF.FileFunction,Soldermask,Bot*% +%TF.FilePolarity,Negative*% +%FSLAX46Y46*% +G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)* +G04 Created by KiCad (PCBNEW 6.0.5) date 2022-09-23 09:05:14* +%MOMM*% +%LPD*% +G01* +G04 APERTURE LIST* +G04 Aperture macros list* +%AMRoundRect* +0 Rectangle with rounded corners* +0 $1 Rounding radius* +0 $2 $3 $4 $5 $6 $7 $8 $9 X,Y pos of 4 corners* +0 Add a 4 corners polygon primitive as box body* +4,1,4,$2,$3,$4,$5,$6,$7,$8,$9,$2,$3,0* +0 Add four circle primitives for the rounded corners* +1,1,$1+$1,$2,$3* +1,1,$1+$1,$4,$5* +1,1,$1+$1,$6,$7* +1,1,$1+$1,$8,$9* +0 Add four rect primitives between the rounded corners* +20,1,$1+$1,$2,$3,$4,$5,0* +20,1,$1+$1,$4,$5,$6,$7,0* +20,1,$1+$1,$6,$7,$8,$9,0* +20,1,$1+$1,$8,$9,$2,$3,0*% +G04 Aperture macros list end* +%ADD10R,0.850000X0.850000*% +%ADD11C,3.200000*% +%ADD12C,0.650000*% +%ADD13O,1.000000X2.100000*% +%ADD14O,1.000000X1.600000*% +%ADD15R,1.700000X1.700000*% +%ADD16O,0.850000X0.850000*% +%ADD17RoundRect,0.237500X0.250000X0.237500X-0.250000X0.237500X-0.250000X-0.237500X0.250000X-0.237500X0*% +%ADD18RoundRect,0.237500X0.300000X0.237500X-0.300000X0.237500X-0.300000X-0.237500X0.300000X-0.237500X0*% +%ADD19RoundRect,0.237500X-0.300000X-0.237500X0.300000X-0.237500X0.300000X0.237500X-0.300000X0.237500X0*% +%ADD20R,1.500000X2.000000*% +%ADD21R,3.800000X2.000000*% +%ADD22C,1.500000*% +%ADD23RoundRect,0.250000X0.337500X0.475000X-0.337500X0.475000X-0.337500X-0.475000X0.337500X-0.475000X0*% +%ADD24RoundRect,0.237500X0.237500X-0.300000X0.237500X0.300000X-0.237500X0.300000X-0.237500X-0.300000X0*% +%ADD25RoundRect,0.237500X-0.250000X-0.237500X0.250000X-0.237500X0.250000X0.237500X-0.250000X0.237500X0*% +%ADD26RoundRect,0.250000X-0.875000X-0.925000X0.875000X-0.925000X0.875000X0.925000X-0.875000X0.925000X0*% +%ADD27RoundRect,0.075000X0.075000X-0.662500X0.075000X0.662500X-0.075000X0.662500X-0.075000X-0.662500X0*% +%ADD28RoundRect,0.075000X0.662500X-0.075000X0.662500X0.075000X-0.662500X0.075000X-0.662500X-0.075000X0*% +G04 APERTURE END LIST* +D10* +%TO.C,J6*% +X103980000Y-64570000D03* +%TD*% +D11* +%TO.C,REF\u002A\u002A1*% +X125880000Y-63225000D03* +%TD*% +%TO.C,REF\u002A\u002A2*% +X86050000Y-110665000D03* +%TD*% +D10* +%TO.C,J3*% +X111930000Y-65330000D03* +%TD*% +%TO.C,J4*% +X109640000Y-64820000D03* +%TD*% +%TO.C,J8*% +X99500000Y-65500000D03* +%TD*% +%TO.C,J9*% +X97310000Y-66260000D03* +%TD*% +D12* +%TO.C,J37*% +X102720000Y-54070000D03* +X108500000Y-54070000D03* +D13* +X101290000Y-54600000D03* +X109930000Y-54600000D03* +D14* +X109930000Y-50420000D03* +X101290000Y-50420000D03* +%TD*% +D11* +%TO.C,REF\u002A\u002A*% +X86050000Y-63225000D03* +%TD*% +D10* +%TO.C,J2*% +X114040000Y-66090000D03* +%TD*% +D11* +%TO.C,REF\u002A\u002A3*% +X125880000Y-110665000D03* +%TD*% +D10* +%TO.C,J7*% +X101700000Y-64910000D03* +%TD*% +%TO.C,J5*% +X106270000Y-64490000D03* +%TD*% +D15* +%TO.C,J35*% +X138633200Y-89560400D03* +%TD*% +%TO.C,J26*% +X127609600Y-72237600D03* +%TD*% +D10* +%TO.C,J1*% +X70586600Y-85188800D03* +D16* +X70586600Y-86188800D03* +X70586600Y-87188800D03* +X70586600Y-88188800D03* +X70586600Y-89188800D03* +X70586600Y-90188800D03* +%TD*% +D15* +%TO.C,J36*% +X133350000Y-89560400D03* +%TD*% +D17* +%TO.C,R6*% +X100431600Y-59105800D03* +X98606600Y-59105800D03* +%TD*% +D18* +%TO.C,C5*% +X73784800Y-81965800D03* +X72059800Y-81965800D03* +%TD*% +D19* +%TO.C,C8*% +X75618000Y-92938600D03* +X77343000Y-92938600D03* +%TD*% +D20* +%TO.C,U2*% +X131227800Y-72135600D03* +X133527800Y-72135600D03* +D21* +X133527800Y-78435600D03* +D20* +X135827800Y-72135600D03* +%TD*% +D22* +%TO.C,Y1*% +X81647200Y-96600000D03* +X76767200Y-96600000D03* +%TD*% +D23* +%TO.C,C3*% +X134518400Y-69392800D03* +X132443400Y-69392800D03* +%TD*% +D24* +%TO.C,C4*% +X82677000Y-82522400D03* +X82677000Y-80797400D03* +%TD*% +D25* +%TO.C,R9*% +X109096800Y-58470800D03* +X110921800Y-58470800D03* +%TD*% +D19* +%TO.C,C6*% +X82755400Y-91160600D03* +X84480400Y-91160600D03* +%TD*% +%TO.C,C7*% +X133580800Y-81203800D03* +X135305800Y-81203800D03* +%TD*% +D26* +%TO.C,C9*% +X133558600Y-84658200D03* +X138658600Y-84658200D03* +%TD*% +D27* +%TO.C,U1*% +X80837500Y-90852500D03* +X80337500Y-90852500D03* +X79837500Y-90852500D03* +X79337500Y-90852500D03* +X78837500Y-90852500D03* +X78337500Y-90852500D03* +X77837500Y-90852500D03* +X77337500Y-90852500D03* +X76837500Y-90852500D03* +X76337500Y-90852500D03* +X75837500Y-90852500D03* +X75337500Y-90852500D03* +D28* +X73925000Y-89440000D03* +X73925000Y-88940000D03* +X73925000Y-88440000D03* +X73925000Y-87940000D03* +X73925000Y-87440000D03* +X73925000Y-86940000D03* +X73925000Y-86440000D03* +X73925000Y-85940000D03* +X73925000Y-85440000D03* +X73925000Y-84940000D03* +X73925000Y-84440000D03* +X73925000Y-83940000D03* +D27* +X75337500Y-82527500D03* +X75837500Y-82527500D03* +X76337500Y-82527500D03* +X76837500Y-82527500D03* +X77337500Y-82527500D03* +X77837500Y-82527500D03* +X78337500Y-82527500D03* +X78837500Y-82527500D03* +X79337500Y-82527500D03* +X79837500Y-82527500D03* +X80337500Y-82527500D03* +X80837500Y-82527500D03* +D28* +X82250000Y-83940000D03* +X82250000Y-84440000D03* +X82250000Y-84940000D03* +X82250000Y-85440000D03* +X82250000Y-85940000D03* +X82250000Y-86440000D03* +X82250000Y-86940000D03* +X82250000Y-87440000D03* +X82250000Y-87940000D03* +X82250000Y-88440000D03* +X82250000Y-88940000D03* +X82250000Y-89440000D03* +%TD*% +M02* diff --git a/F1:F103/Canon_managing_device/kicad/Canon_manage/gerbers/Canon_manage-B_Paste.gbr b/F1:F103/Canon_managing_device/kicad/Canon_manage/gerbers/Canon_manage-B_Paste.gbr new file mode 100644 index 0000000..80d7393 --- /dev/null +++ b/F1:F103/Canon_managing_device/kicad/Canon_manage/gerbers/Canon_manage-B_Paste.gbr @@ -0,0 +1,151 @@ +%TF.GenerationSoftware,KiCad,Pcbnew,6.0.5*% +%TF.CreationDate,2022-09-23T09:05:14+03:00*% +%TF.ProjectId,Canon_manage,43616e6f-6e5f-46d6-916e-6167652e6b69,rev?*% +%TF.SameCoordinates,Original*% +%TF.FileFunction,Paste,Bot*% +%TF.FilePolarity,Positive*% +%FSLAX46Y46*% +G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)* +G04 Created by KiCad (PCBNEW 6.0.5) date 2022-09-23 09:05:14* +%MOMM*% +%LPD*% +G01* +G04 APERTURE LIST* +G04 Aperture macros list* +%AMRoundRect* +0 Rectangle with rounded corners* +0 $1 Rounding radius* +0 $2 $3 $4 $5 $6 $7 $8 $9 X,Y pos of 4 corners* +0 Add a 4 corners polygon primitive as box body* +4,1,4,$2,$3,$4,$5,$6,$7,$8,$9,$2,$3,0* +0 Add four circle primitives for the rounded corners* +1,1,$1+$1,$2,$3* +1,1,$1+$1,$4,$5* +1,1,$1+$1,$6,$7* +1,1,$1+$1,$8,$9* +0 Add four rect primitives between the rounded corners* +20,1,$1+$1,$2,$3,$4,$5,0* +20,1,$1+$1,$4,$5,$6,$7,0* +20,1,$1+$1,$6,$7,$8,$9,0* +20,1,$1+$1,$8,$9,$2,$3,0*% +G04 Aperture macros list end* +%ADD10RoundRect,0.237500X0.250000X0.237500X-0.250000X0.237500X-0.250000X-0.237500X0.250000X-0.237500X0*% +%ADD11RoundRect,0.237500X0.300000X0.237500X-0.300000X0.237500X-0.300000X-0.237500X0.300000X-0.237500X0*% +%ADD12RoundRect,0.237500X-0.300000X-0.237500X0.300000X-0.237500X0.300000X0.237500X-0.300000X0.237500X0*% +%ADD13R,1.500000X2.000000*% +%ADD14R,3.800000X2.000000*% +%ADD15RoundRect,0.250000X0.337500X0.475000X-0.337500X0.475000X-0.337500X-0.475000X0.337500X-0.475000X0*% +%ADD16RoundRect,0.237500X0.237500X-0.300000X0.237500X0.300000X-0.237500X0.300000X-0.237500X-0.300000X0*% +%ADD17RoundRect,0.237500X-0.250000X-0.237500X0.250000X-0.237500X0.250000X0.237500X-0.250000X0.237500X0*% +%ADD18RoundRect,0.250000X-0.875000X-0.925000X0.875000X-0.925000X0.875000X0.925000X-0.875000X0.925000X0*% +%ADD19RoundRect,0.075000X0.075000X-0.662500X0.075000X0.662500X-0.075000X0.662500X-0.075000X-0.662500X0*% +%ADD20RoundRect,0.075000X0.662500X-0.075000X0.662500X0.075000X-0.662500X0.075000X-0.662500X-0.075000X0*% +G04 APERTURE END LIST* +D10* +%TO.C,R6*% +X100431600Y-59105800D03* +X98606600Y-59105800D03* +%TD*% +D11* +%TO.C,C5*% +X73784800Y-81965800D03* +X72059800Y-81965800D03* +%TD*% +D12* +%TO.C,C8*% +X75618000Y-92938600D03* +X77343000Y-92938600D03* +%TD*% +D13* +%TO.C,U2*% +X131227800Y-72135600D03* +X133527800Y-72135600D03* +D14* +X133527800Y-78435600D03* +D13* +X135827800Y-72135600D03* +%TD*% +D15* +%TO.C,C3*% +X134518400Y-69392800D03* +X132443400Y-69392800D03* +%TD*% +D16* +%TO.C,C4*% +X82677000Y-82522400D03* +X82677000Y-80797400D03* +%TD*% +D17* +%TO.C,R9*% +X109096800Y-58470800D03* +X110921800Y-58470800D03* +%TD*% +D12* +%TO.C,C6*% +X82755400Y-91160600D03* +X84480400Y-91160600D03* +%TD*% +%TO.C,C7*% +X133580800Y-81203800D03* +X135305800Y-81203800D03* +%TD*% +D18* +%TO.C,C9*% +X133558600Y-84658200D03* +X138658600Y-84658200D03* +%TD*% +D19* +%TO.C,U1*% +X80837500Y-90852500D03* +X80337500Y-90852500D03* +X79837500Y-90852500D03* +X79337500Y-90852500D03* +X78837500Y-90852500D03* +X78337500Y-90852500D03* +X77837500Y-90852500D03* +X77337500Y-90852500D03* +X76837500Y-90852500D03* +X76337500Y-90852500D03* +X75837500Y-90852500D03* +X75337500Y-90852500D03* +D20* +X73925000Y-89440000D03* +X73925000Y-88940000D03* +X73925000Y-88440000D03* +X73925000Y-87940000D03* +X73925000Y-87440000D03* +X73925000Y-86940000D03* +X73925000Y-86440000D03* +X73925000Y-85940000D03* +X73925000Y-85440000D03* +X73925000Y-84940000D03* +X73925000Y-84440000D03* +X73925000Y-83940000D03* +D19* +X75337500Y-82527500D03* +X75837500Y-82527500D03* +X76337500Y-82527500D03* +X76837500Y-82527500D03* +X77337500Y-82527500D03* +X77837500Y-82527500D03* +X78337500Y-82527500D03* +X78837500Y-82527500D03* +X79337500Y-82527500D03* +X79837500Y-82527500D03* +X80337500Y-82527500D03* +X80837500Y-82527500D03* +D20* +X82250000Y-83940000D03* +X82250000Y-84440000D03* +X82250000Y-84940000D03* +X82250000Y-85440000D03* +X82250000Y-85940000D03* +X82250000Y-86440000D03* +X82250000Y-86940000D03* +X82250000Y-87440000D03* +X82250000Y-87940000D03* +X82250000Y-88440000D03* +X82250000Y-88940000D03* +X82250000Y-89440000D03* +%TD*% +M02* diff --git a/F1:F103/Canon_managing_device/kicad/Canon_manage/gerbers/Canon_manage-B_Silkscreen.gbr b/F1:F103/Canon_managing_device/kicad/Canon_manage/gerbers/Canon_manage-B_Silkscreen.gbr new file mode 100644 index 0000000..671fc22 --- /dev/null +++ b/F1:F103/Canon_managing_device/kicad/Canon_manage/gerbers/Canon_manage-B_Silkscreen.gbr @@ -0,0 +1,468 @@ +%TF.GenerationSoftware,KiCad,Pcbnew,6.0.5*% +%TF.CreationDate,2022-09-23T09:05:14+03:00*% +%TF.ProjectId,Canon_manage,43616e6f-6e5f-46d6-916e-6167652e6b69,rev?*% +%TF.SameCoordinates,Original*% +%TF.FileFunction,Legend,Bot*% +%TF.FilePolarity,Positive*% +%FSLAX46Y46*% +G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)* +G04 Created by KiCad (PCBNEW 6.0.5) date 2022-09-23 09:05:14* +%MOMM*% +%LPD*% +G01* +G04 APERTURE LIST* +%ADD10C,0.150000*% +%ADD11C,0.120000*% +G04 APERTURE END LIST* +D10* +%TO.C,R6*% +X99734666Y-61005980D02* +X100068000Y-60529790D01* +X100306095Y-61005980D02* +X100306095Y-60005980D01* +X99925142Y-60005980D01* +X99829904Y-60053600D01* +X99782285Y-60101219D01* +X99734666Y-60196457D01* +X99734666Y-60339314D01* +X99782285Y-60434552D01* +X99829904Y-60482171D01* +X99925142Y-60529790D01* +X100306095Y-60529790D01* +X98877523Y-60005980D02* +X99068000Y-60005980D01* +X99163238Y-60053600D01* +X99210857Y-60101219D01* +X99306095Y-60244076D01* +X99353714Y-60434552D01* +X99353714Y-60815504D01* +X99306095Y-60910742D01* +X99258476Y-60958361D01* +X99163238Y-61005980D01* +X98972761Y-61005980D01* +X98877523Y-60958361D01* +X98829904Y-60910742D01* +X98782285Y-60815504D01* +X98782285Y-60577409D01* +X98829904Y-60482171D01* +X98877523Y-60434552D01* +X98972761Y-60386933D01* +X99163238Y-60386933D01* +X99258476Y-60434552D01* +X99306095Y-60482171D01* +X99353714Y-60577409D01* +%TO.C,C5*% +X73088966Y-80892942D02* +X73136585Y-80940561D01* +X73279442Y-80988180D01* +X73374680Y-80988180D01* +X73517538Y-80940561D01* +X73612776Y-80845323D01* +X73660395Y-80750085D01* +X73708014Y-80559609D01* +X73708014Y-80416752D01* +X73660395Y-80226276D01* +X73612776Y-80131038D01* +X73517538Y-80035800D01* +X73374680Y-79988180D01* +X73279442Y-79988180D01* +X73136585Y-80035800D01* +X73088966Y-80083419D01* +X72184204Y-79988180D02* +X72660395Y-79988180D01* +X72708014Y-80464371D01* +X72660395Y-80416752D01* +X72565157Y-80369133D01* +X72327061Y-80369133D01* +X72231823Y-80416752D01* +X72184204Y-80464371D01* +X72136585Y-80559609D01* +X72136585Y-80797704D01* +X72184204Y-80892942D01* +X72231823Y-80940561D01* +X72327061Y-80988180D01* +X72565157Y-80988180D01* +X72660395Y-80940561D01* +X72708014Y-80892942D01* +%TO.C,C8*% +X79313066Y-93295742D02* +X79360685Y-93343361D01* +X79503542Y-93390980D01* +X79598780Y-93390980D01* +X79741638Y-93343361D01* +X79836876Y-93248123D01* +X79884495Y-93152885D01* +X79932114Y-92962409D01* +X79932114Y-92819552D01* +X79884495Y-92629076D01* +X79836876Y-92533838D01* +X79741638Y-92438600D01* +X79598780Y-92390980D01* +X79503542Y-92390980D01* +X79360685Y-92438600D01* +X79313066Y-92486219D01* +X78741638Y-92819552D02* +X78836876Y-92771933D01* +X78884495Y-92724314D01* +X78932114Y-92629076D01* +X78932114Y-92581457D01* +X78884495Y-92486219D01* +X78836876Y-92438600D01* +X78741638Y-92390980D01* +X78551161Y-92390980D01* +X78455923Y-92438600D01* +X78408304Y-92486219D01* +X78360685Y-92581457D01* +X78360685Y-92629076D01* +X78408304Y-92724314D01* +X78455923Y-92771933D01* +X78551161Y-92819552D01* +X78741638Y-92819552D01* +X78836876Y-92867171D01* +X78884495Y-92914790D01* +X78932114Y-93010028D01* +X78932114Y-93200504D01* +X78884495Y-93295742D01* +X78836876Y-93343361D01* +X78741638Y-93390980D01* +X78551161Y-93390980D01* +X78455923Y-93343361D01* +X78408304Y-93295742D01* +X78360685Y-93200504D01* +X78360685Y-93010028D01* +X78408304Y-92914790D01* +X78455923Y-92867171D01* +X78551161Y-92819552D01* +%TO.C,U2*% +X129627504Y-75524980D02* +X129627504Y-76334504D01* +X129579885Y-76429742D01* +X129532266Y-76477361D01* +X129437028Y-76524980D01* +X129246552Y-76524980D01* +X129151314Y-76477361D01* +X129103695Y-76429742D01* +X129056076Y-76334504D01* +X129056076Y-75524980D01* +X128627504Y-75620219D02* +X128579885Y-75572600D01* +X128484647Y-75524980D01* +X128246552Y-75524980D01* +X128151314Y-75572600D01* +X128103695Y-75620219D01* +X128056076Y-75715457D01* +X128056076Y-75810695D01* +X128103695Y-75953552D01* +X128675123Y-76524980D01* +X128056076Y-76524980D01* +%TO.C,Y1*% +X79749590Y-100229990D02* +X79749590Y-100706180D01* +X80082923Y-99706180D02* +X79749590Y-100229990D01* +X79416257Y-99706180D01* +X78559114Y-100706180D02* +X79130542Y-100706180D01* +X78844828Y-100706180D02* +X78844828Y-99706180D01* +X78940066Y-99849038D01* +X79035304Y-99944276D01* +X79130542Y-99991895D01* +%TO.C,C3*% +X133647566Y-68069942D02* +X133695185Y-68117561D01* +X133838042Y-68165180D01* +X133933280Y-68165180D01* +X134076138Y-68117561D01* +X134171376Y-68022323D01* +X134218995Y-67927085D01* +X134266614Y-67736609D01* +X134266614Y-67593752D01* +X134218995Y-67403276D01* +X134171376Y-67308038D01* +X134076138Y-67212800D01* +X133933280Y-67165180D01* +X133838042Y-67165180D01* +X133695185Y-67212800D01* +X133647566Y-67260419D01* +X133314233Y-67165180D02* +X132695185Y-67165180D01* +X133028519Y-67546133D01* +X132885661Y-67546133D01* +X132790423Y-67593752D01* +X132742804Y-67641371D01* +X132695185Y-67736609D01* +X132695185Y-67974704D01* +X132742804Y-68069942D01* +X132790423Y-68117561D01* +X132885661Y-68165180D01* +X133171376Y-68165180D01* +X133266614Y-68117561D01* +X133314233Y-68069942D01* +%TO.C,C4*% +X84570866Y-82018142D02* +X84618485Y-82065761D01* +X84761342Y-82113380D01* +X84856580Y-82113380D01* +X84999438Y-82065761D01* +X85094676Y-81970523D01* +X85142295Y-81875285D01* +X85189914Y-81684809D01* +X85189914Y-81541952D01* +X85142295Y-81351476D01* +X85094676Y-81256238D01* +X84999438Y-81161000D01* +X84856580Y-81113380D01* +X84761342Y-81113380D01* +X84618485Y-81161000D01* +X84570866Y-81208619D01* +X83713723Y-81446714D02* +X83713723Y-82113380D01* +X83951819Y-81065761D02* +X84189914Y-81780047D01* +X83570866Y-81780047D01* +%TO.C,R9*% +X110174066Y-60396380D02* +X110507400Y-59920190D01* +X110745495Y-60396380D02* +X110745495Y-59396380D01* +X110364542Y-59396380D01* +X110269304Y-59444000D01* +X110221685Y-59491619D01* +X110174066Y-59586857D01* +X110174066Y-59729714D01* +X110221685Y-59824952D01* +X110269304Y-59872571D01* +X110364542Y-59920190D01* +X110745495Y-59920190D01* +X109697876Y-60396380D02* +X109507400Y-60396380D01* +X109412161Y-60348761D01* +X109364542Y-60301142D01* +X109269304Y-60158285D01* +X109221685Y-59967809D01* +X109221685Y-59586857D01* +X109269304Y-59491619D01* +X109316923Y-59444000D01* +X109412161Y-59396380D01* +X109602638Y-59396380D01* +X109697876Y-59444000D01* +X109745495Y-59491619D01* +X109793114Y-59586857D01* +X109793114Y-59824952D01* +X109745495Y-59920190D01* +X109697876Y-59967809D01* +X109602638Y-60015428D01* +X109412161Y-60015428D01* +X109316923Y-59967809D01* +X109269304Y-59920190D01* +X109221685Y-59824952D01* +%TO.C,C6*% +X83784566Y-92947742D02* +X83832185Y-92995361D01* +X83975042Y-93042980D01* +X84070280Y-93042980D01* +X84213138Y-92995361D01* +X84308376Y-92900123D01* +X84355995Y-92804885D01* +X84403614Y-92614409D01* +X84403614Y-92471552D01* +X84355995Y-92281076D01* +X84308376Y-92185838D01* +X84213138Y-92090600D01* +X84070280Y-92042980D01* +X83975042Y-92042980D01* +X83832185Y-92090600D01* +X83784566Y-92138219D01* +X82927423Y-92042980D02* +X83117900Y-92042980D01* +X83213138Y-92090600D01* +X83260757Y-92138219D01* +X83355995Y-92281076D01* +X83403614Y-92471552D01* +X83403614Y-92852504D01* +X83355995Y-92947742D01* +X83308376Y-92995361D01* +X83213138Y-93042980D01* +X83022661Y-93042980D01* +X82927423Y-92995361D01* +X82879804Y-92947742D01* +X82832185Y-92852504D01* +X82832185Y-92614409D01* +X82879804Y-92519171D01* +X82927423Y-92471552D01* +X83022661Y-92423933D01* +X83213138Y-92423933D01* +X83308376Y-92471552D01* +X83355995Y-92519171D01* +X83403614Y-92614409D01* +%TO.C,C7*% +X137301266Y-81484742D02* +X137348885Y-81532361D01* +X137491742Y-81579980D01* +X137586980Y-81579980D01* +X137729838Y-81532361D01* +X137825076Y-81437123D01* +X137872695Y-81341885D01* +X137920314Y-81151409D01* +X137920314Y-81008552D01* +X137872695Y-80818076D01* +X137825076Y-80722838D01* +X137729838Y-80627600D01* +X137586980Y-80579980D01* +X137491742Y-80579980D01* +X137348885Y-80627600D01* +X137301266Y-80675219D01* +X136967933Y-80579980D02* +X136301266Y-80579980D01* +X136729838Y-81579980D01* +%TO.C,C9*% +X136107466Y-87555342D02* +X136155085Y-87602961D01* +X136297942Y-87650580D01* +X136393180Y-87650580D01* +X136536038Y-87602961D01* +X136631276Y-87507723D01* +X136678895Y-87412485D01* +X136726514Y-87222009D01* +X136726514Y-87079152D01* +X136678895Y-86888676D01* +X136631276Y-86793438D01* +X136536038Y-86698200D01* +X136393180Y-86650580D01* +X136297942Y-86650580D01* +X136155085Y-86698200D01* +X136107466Y-86745819D01* +X135631276Y-87650580D02* +X135440800Y-87650580D01* +X135345561Y-87602961D01* +X135297942Y-87555342D01* +X135202704Y-87412485D01* +X135155085Y-87222009D01* +X135155085Y-86841057D01* +X135202704Y-86745819D01* +X135250323Y-86698200D01* +X135345561Y-86650580D01* +X135536038Y-86650580D01* +X135631276Y-86698200D01* +X135678895Y-86745819D01* +X135726514Y-86841057D01* +X135726514Y-87079152D01* +X135678895Y-87174390D01* +X135631276Y-87222009D01* +X135536038Y-87269628D01* +X135345561Y-87269628D01* +X135250323Y-87222009D01* +X135202704Y-87174390D01* +X135155085Y-87079152D01* +%TO.C,U1*% +X84988304Y-86142580D02* +X84988304Y-86952104D01* +X84940685Y-87047342D01* +X84893066Y-87094961D01* +X84797828Y-87142580D01* +X84607352Y-87142580D01* +X84512114Y-87094961D01* +X84464495Y-87047342D01* +X84416876Y-86952104D01* +X84416876Y-86142580D01* +X83416876Y-87142580D02* +X83988304Y-87142580D01* +X83702590Y-87142580D02* +X83702590Y-86142580D01* +X83797828Y-86285438D01* +X83893066Y-86380676D01* +X83988304Y-86428295D01* +D11* +%TO.C,R6*% +X99773824Y-59628300D02* +X99264376Y-59628300D01* +X99773824Y-58583300D02* +X99264376Y-58583300D01* +%TO.C,C5*% +X73068567Y-81455800D02* +X72776033Y-81455800D01* +X73068567Y-82475800D02* +X72776033Y-82475800D01* +%TO.C,C8*% +X76334233Y-92428600D02* +X76626767Y-92428600D01* +X76334233Y-93448600D02* +X76626767Y-93448600D01* +%TO.C,U2*% +X130117800Y-77195600D02* +X131377800Y-77195600D01* +X130117800Y-71185600D02* +X130117800Y-77195600D01* +X136937800Y-77195600D02* +X135677800Y-77195600D01* +X136937800Y-73435600D02* +X136937800Y-77195600D01* +%TO.C,Y1*% +X82332200Y-99125000D02* +X76082200Y-99125000D01* +X82332200Y-94075000D02* +X76082200Y-94075000D01* +X82332200Y-99125000D02* +G75* +G03* +X82332200Y-94075000I0J2525000D01* +G01* +X76082200Y-94075000D02* +G75* +G03* +X76082200Y-99125000I0J-2525000D01* +G01* +%TO.C,C3*% +X133742152Y-70127800D02* +X133219648Y-70127800D01* +X133742152Y-68657800D02* +X133219648Y-68657800D01* +%TO.C,C4*% +X83187000Y-81806167D02* +X83187000Y-81513633D01* +X82167000Y-81806167D02* +X82167000Y-81513633D01* +%TO.C,R9*% +X109754576Y-57948300D02* +X110264024Y-57948300D01* +X109754576Y-58993300D02* +X110264024Y-58993300D01* +%TO.C,C6*% +X83471633Y-91670600D02* +X83764167Y-91670600D01* +X83471633Y-90650600D02* +X83764167Y-90650600D01* +%TO.C,C7*% +X134297033Y-80693800D02* +X134589567Y-80693800D01* +X134297033Y-81713800D02* +X134589567Y-81713800D01* +%TO.C,C9*% +X139108600Y-86368200D02* +X132173600Y-86368200D01* +X132173600Y-86368200D02* +X132173600Y-82948200D01* +X132173600Y-82948200D02* +X139108600Y-82948200D01* +%TO.C,U1*% +X81697500Y-83530000D02* +X81697500Y-83080000D01* +X74477500Y-83080000D02* +X74927500Y-83080000D01* +X81697500Y-89850000D02* +X81697500Y-90300000D01* +X81697500Y-90300000D02* +X81247500Y-90300000D01* +X74477500Y-90300000D02* +X74927500Y-90300000D01* +X74477500Y-83530000D02* +X74477500Y-83080000D01* +X74477500Y-89850000D02* +X74477500Y-90300000D01* +X81247500Y-90300000D02* +X81247500Y-91590000D01* +X81697500Y-83080000D02* +X81247500Y-83080000D01* +%TD*% +M02* diff --git a/F1:F103/Canon_managing_device/kicad/Canon_manage/gerbers/Canon_manage-Edge_Cuts.gbr b/F1:F103/Canon_managing_device/kicad/Canon_manage/gerbers/Canon_manage-Edge_Cuts.gbr new file mode 100644 index 0000000..8830a1c --- /dev/null +++ b/F1:F103/Canon_managing_device/kicad/Canon_manage/gerbers/Canon_manage-Edge_Cuts.gbr @@ -0,0 +1,542 @@ +%TF.GenerationSoftware,KiCad,Pcbnew,6.0.5*% +%TF.CreationDate,2022-09-23T09:05:14+03:00*% +%TF.ProjectId,Canon_manage,43616e6f-6e5f-46d6-916e-6167652e6b69,rev?*% +%TF.SameCoordinates,Original*% +%TF.FileFunction,Profile,NP*% +%FSLAX46Y46*% +G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)* +G04 Created by KiCad (PCBNEW 6.0.5) date 2022-09-23 09:05:14* +%MOMM*% +%LPD*% +G01* +G04 APERTURE LIST* +%TA.AperFunction,Profile*% +%ADD10C,0.200000*% +%TD*% +G04 APERTURE END LIST* +D10* +X142521050Y-92077600D02* +X142858673Y-88525010D01* +X97443930Y-50045918D02* +X98290050Y-49369300D01* +X137784760Y-68227770D02* +X139391550Y-71357300D01* +X83828850Y-57742300D02* +X83321732Y-58672477D01* +X83405850Y-115588340D02* +X84082471Y-116518517D01* +X83405848Y-115588340D02* +X83066850Y-114488660D01* +X127383250Y-56896200D02* +X124423210Y-55035850D01* +X117994650Y-52075760D02* +X121208250Y-53429000D01* +X135585427Y-108907575D02* +X134655250Y-109584200D01* +X131357550Y-64000000D02* +X130427366Y-63660998D01* +X127383250Y-117025640D02* +X128227995Y-116264962D01* +X71142630Y-74993990D02* +X72495870Y-71780400D01* +X124760880Y-118717870D02* +X121631350Y-120408730D01* +X84675008Y-117025638D02* +X84082450Y-116518520D01* +X127383260Y-117025640D02* +X124760850Y-118717880D01* +X81629550Y-110344900D02* +X82391607Y-110936085D01* +X69535840Y-92415160D02* +X69198221Y-88948000D01* +X87211950Y-67890200D02* +X86872952Y-68313258D01* +X140744750Y-74656400D02* +X139391510Y-71357360D01* +X136093848Y-108315046D02* +X135585350Y-108907600D01* +X134317550Y-64253500D02* +X133133810Y-63999937D01* +X139391550Y-71357300D02* +X137784760Y-68227770D01* +X96767350Y-50976100D02* +X96599230Y-51313723D01* +X128990050Y-114151040D02* +X128990050Y-113304900D01* +X81629530Y-110344855D02* +X80699350Y-109921800D01* +X69198221Y-85396790D02* +X69535840Y-81844200D01* +X130004304Y-110598419D02* +X129411750Y-111359100D01* +X77739330Y-109668318D02* +X76725090Y-109161200D01* +X70297900Y-95883700D02* +X71312140Y-99265410D01* +X77739320Y-109668300D02* +X78839000Y-109921863D01* +X100912450Y-123452824D02* +X104463660Y-123791826D01* +X78500000Y-64000000D02* +X79685150Y-64000000D01* +X124423250Y-55035800D02* +X121208290Y-53429010D01* +X139561050Y-102225500D02* +X140914290Y-98927850D01* +X87803150Y-67720700D02* +X87211972Y-67890206D01* +X87380150Y-106115700D02* +X87803208Y-106201139D01* +X124253750Y-106201100D02* +X87803150Y-106201100D01* +X130004350Y-110598400D02* +X130934527Y-110091282D01* +X105479350Y-48439100D02* +X101842700Y-48692659D01* +X133133850Y-64000000D02* +X132371750Y-64000000D01* +X81122370Y-63830522D02* +X82052550Y-63323400D01* +X128735161Y-115249340D02* +X128228050Y-116264960D01* +X114104426Y-49622829D02* +X114950550Y-50383500D01* +X75963032Y-65606754D02* +X76471530Y-65014200D01* +X83321732Y-58672477D02* +X83828850Y-57742300D01* +X111483410Y-123452823D02* +X108016250Y-123791826D01* +X125267950Y-68736300D02* +X125267950Y-105185500D01* +X135247726Y-64760687D02* +X136093850Y-65606800D01* +X83066850Y-61632500D02* +X83066850Y-60616900D01* +X101842700Y-48692659D02* +X105479350Y-48439100D01* +X142521068Y-92077540D02* +X141844450Y-95544700D01* +X69535840Y-81844200D02* +X69198221Y-85396790D01* +X83066850Y-114488660D02* +X83066850Y-113304900D01* +X86872950Y-68313200D02* +X86788887Y-68736255D01* +X135585350Y-108907600D02* +X136093848Y-108315046D01* +X121631350Y-120408730D02* +X124760880Y-118717870D01* +X89917120Y-53766630D02* +X93216150Y-52413400D01* +X71312140Y-99265400D02* +X72581320Y-102564440D01* +X69535842Y-81844260D02* +X70128400Y-78377100D01* +X108016250Y-123791826D02* +X111483410Y-123452823D01* +X134317573Y-64253582D02* +X135247750Y-64760700D01* +X114950632Y-50383516D02* +X115457750Y-51313700D01* +X83066850Y-112881900D02* +X83066850Y-113304900D01* +X109115950Y-48608600D02* +X112667150Y-49030300D01* +X84674970Y-56896200D02* +X86872950Y-55458900D01* +X82645171Y-62562677D02* +X83066850Y-61632500D01* +X125268014Y-105185545D02* +X125183950Y-105608600D01* +X87803150Y-67720700D02* +X124253750Y-67720700D01* +X128567050Y-58333500D02* +X127974499Y-57403323D01* +X74102670Y-68566800D02* +X72495870Y-71780400D01* +X124676785Y-67806121D02* +X125099850Y-68227800D01* +X105479300Y-48439094D02* +X109115950Y-48608600D01* +X139391510Y-71357360D02* +X140744750Y-74656400D01* +X84675050Y-117025640D02* +X87633700Y-118885990D01* +X78839000Y-109921800D02* +X79685150Y-109921800D01* +X83066850Y-113304900D02* +X83066850Y-114488660D01* +X115457750Y-51313700D02* +X114950632Y-50383516D01* +X128990050Y-113304900D02* +X128990050Y-112289300D01* +X99389750Y-49030300D02* +X98290080Y-49369302D01* +X83321750Y-58672500D02* +X83066811Y-59856240D01* +X72495870Y-71780400D02* +X71142630Y-74993990D01* +X142858650Y-85057800D02* +X142435592Y-81506590D01* +X124423210Y-55035850D02* +X127383250Y-56896200D01* +X127974450Y-57403300D02* +X127383265Y-56896178D01* +X142858650Y-85057800D02* +X142858650Y-88525000D01* +X82898668Y-111867653D02* +X82391550Y-110936100D01* +X140744820Y-74656390D02* +X141759050Y-78038100D01* +X94062250Y-121846030D02* +X97443970Y-122861640D01* +X132371750Y-64000000D02* +X133133850Y-64000000D01* +X90763180Y-120578230D02* +X87633650Y-118885990D01* +X128990050Y-59433100D02* +X128566992Y-58333420D01* +X134655150Y-109584184D02* +X133556850Y-109921800D01* +X128990089Y-114151040D02* +X128735150Y-115249340D01* +X129665297Y-62985762D02* +X130427350Y-63661000D01* +X128990050Y-59433100D02* +X128990050Y-60616900D01* +X84675050Y-56896200D02* +X83828930Y-57742324D01* +X83066850Y-59856200D02* +X83066850Y-60616900D01* +X125267950Y-105185500D02* +X125267950Y-68736300D01* +X130934450Y-110091300D02* +X131864627Y-109921804D01* +X86788950Y-105185500D02* +X86788950Y-68736300D01* +X87633700Y-118885990D02* +X84675050Y-117025640D01* +X124760872Y-106031597D02* +X124253750Y-106201100D01* +X74272170Y-105692650D02* +X72581310Y-102564500D01* +X76725090Y-109161200D02* +X77739330Y-109668318D01* +X130427366Y-63660998D02* +X131357550Y-64000000D01* +X87803208Y-106201139D02* +X87380150Y-106115700D01* +X136093890Y-65606770D02* +X137784750Y-68227800D01* +X72581320Y-102564440D02* +X71312140Y-99265400D01* +X132371750Y-64000000D02* +X131357550Y-64000000D01* +X135247750Y-64760700D02* +X134317573Y-64253582D01* +X83066850Y-114488660D02* +X83405848Y-115588340D01* +X141844427Y-95544710D02* +X140914250Y-98927800D01* +X128227995Y-116264962D02* +X127383250Y-117025640D01* +X124676750Y-67806100D02* +X124253692Y-67720657D01* +X129158232Y-62054144D02* +X129665350Y-62985700D01* +X98290080Y-49369302D02* +X99389750Y-49030300D01* +X108016250Y-123791826D02* +X104463650Y-123791826D01* +X93216160Y-52413380D02* +X96599250Y-51313700D01* +X121208250Y-53429000D02* +X117994650Y-52075760D01* +X86788887Y-68736255D02* +X86872950Y-68313200D01* +X89917050Y-53766600D02* +X86872960Y-55458840D01* +X109115950Y-48608600D02* +X105479300Y-48439094D01* +X86788950Y-105185500D02* +X86958449Y-105778051D01* +X137954250Y-105355000D02* +X139561040Y-102225470D01* +X137954200Y-105354960D02* +X136093850Y-108315000D01* +X81122450Y-63830500D02* +X80192273Y-64084059D01* +X114950550Y-122692140D02* +X118333640Y-121676520D01* +X75963030Y-65606800D02* +X74102670Y-68566840D01* +X83828930Y-57742324D02* +X84675050Y-56896200D01* +X131864627Y-109921804D02* +X130934450Y-110091300D01* +X128566992Y-58333420D02* +X128990050Y-59433100D01* +X113090210Y-49115778D02* +X114104450Y-49622900D01* +X79685132Y-63999937D02* +X80192250Y-64084000D01* +X142858650Y-88525000D02* +X142858650Y-85057800D01* +X90763150Y-120578230D02* +X94062180Y-121846030D01* +X94062180Y-121846030D02* +X90763150Y-120578230D01* +X132371750Y-109921800D02* +X131864650Y-109921800D01* +X125183950Y-105608600D02* +X125268014Y-105185545D01* +X78500000Y-64000000D02* +X77401700Y-64423058D01* +X83066850Y-113304900D02* +X83066850Y-112881900D01* +X83066850Y-60616900D02* +X83066850Y-61632500D01* +X139561040Y-102225470D02* +X137954250Y-105355000D01* +X80192250Y-64084000D02* +X79685132Y-63999937D01* +X87211972Y-67890206D02* +X87803150Y-67720700D01* +X80192273Y-64084059D02* +X81122450Y-63830500D01* +X83066850Y-60616900D02* +X83066850Y-59856200D01* +X74102670Y-68566840D02* +X75963030Y-65606800D01* +X113090250Y-49115700D02* +X112667195Y-49030257D01* +X70128400Y-78377100D02* +X69535842Y-81844260D01* +X142435592Y-81506590D02* +X142858650Y-85057800D01* +X124253750Y-106201100D02* +X124760872Y-106031597D01* +X118333650Y-121676530D02* +X121631300Y-120408740D01* +X83066870Y-112881840D02* +X82898750Y-111867600D01* +X96599250Y-51313700D02* +X93216160Y-52413380D01* +X128990050Y-113304900D02* +X128990050Y-114151040D01* +X86872950Y-55458900D02* +X84674970Y-56896200D01* +X82391550Y-110936100D02* +X82898668Y-111867653D01* +X83066850Y-61632500D02* +X82645171Y-62562677D01* +X82052592Y-63323378D02* +X82645150Y-62562700D01* +X79685150Y-109921800D02* +X78839000Y-109921800D01* +X86788950Y-68736300D02* +X86788950Y-105185500D01* +X97443970Y-122861640D02* +X94062250Y-121846030D01* +X124760850Y-106031600D02* +X125183905Y-105608542D01* +X128735150Y-115249340D02* +X128990089Y-114151040D01* +X99389730Y-49030323D02* +X101842650Y-48692700D01* +X86958450Y-105778100D02* +X87380133Y-106115726D01* +X129411736Y-111359123D02* +X128990050Y-112289300D01* +X77401700Y-64423058D02* +X78500000Y-64000000D01* +X82898750Y-111867600D02* +X83066870Y-112881840D01* +X69198221Y-88948000D02* +X69198221Y-85396800D01* +X77401700Y-64423000D02* +X76471523Y-65014182D01* +X133556850Y-109921800D02* +X134655150Y-109584184D01* +X87380133Y-106115726D02* +X86958450Y-105778100D01* +X76725087Y-109161113D02* +X75963030Y-108315000D01* +X96599230Y-51313723D02* +X96767350Y-50976100D01* +X83066811Y-59856240D02* +X83321750Y-58672500D01* +X71312140Y-99265410D02* +X70297900Y-95883700D01* +X125267950Y-68736300D02* +X125099834Y-68227802D01* +X127383265Y-56896178D02* +X127974450Y-57403300D01* +X79685150Y-64000000D02* +X78500000Y-64000000D01* +X72581310Y-102564500D02* +X74272170Y-105692650D01* +X133556850Y-109921800D02* +X132371750Y-109921800D01* +X82391607Y-110936085D02* +X81629550Y-110344900D01* +X84082471Y-116518517D02* +X83405850Y-115588340D01* +X71142640Y-74994000D02* +X70128400Y-78377090D01* +X114950550Y-50383500D02* +X114104426Y-49622829D01* +X70297897Y-95883730D02* +X69535840Y-92415200D01* +X75963030Y-108315000D02* +X76725087Y-109161113D01* +X130427350Y-63661000D02* +X129665297Y-62985762D01* +X76471523Y-65014182D02* +X77401700Y-64423000D01* +X101842650Y-48692700D02* +X99389730Y-49030323D01* +X87633650Y-118885990D02* +X90763180Y-120578230D01* +X142858673Y-88525010D02* +X142521050Y-92077600D01* +X141759050Y-78038100D02* +X140744820Y-74656390D01* +X141844450Y-95544700D02* +X142521068Y-92077540D01* +X104463660Y-123791826D02* +X100912450Y-123452824D01* +X76471530Y-65014200D02* +X75963032Y-65606754D01* +X140914290Y-98927850D02* +X139561050Y-102225500D01* +X128990050Y-112289300D02* +X129411736Y-111359123D01* +X130934527Y-110091282D02* +X130004350Y-110598400D01* +X79685150Y-109921800D02* +X80699350Y-109921800D01* +X134655250Y-109584200D02* +X135585427Y-108907575D01* +X111483450Y-123452824D02* +X114950610Y-122692143D01* +X133133810Y-63999937D02* +X134317550Y-64253500D01* +X128990050Y-60616900D02* +X128990050Y-59433100D01* +X82052550Y-63323400D02* +X81122370Y-63830522D01* +X115457680Y-51313747D02* +X117994650Y-52075800D01* +X129158150Y-62054200D02* +X128904591Y-61124023D01* +X112667195Y-49030257D02* +X113090250Y-49115700D01* +X86872952Y-68313258D02* +X87211950Y-67890200D01* +X96767332Y-50976077D02* +X97443950Y-50045900D01* +X100912480Y-123452822D02* +X97443950Y-122861640D01* +X69535840Y-92415200D02* +X70297897Y-95883730D01* +X137784750Y-68227800D02* +X136093890Y-65606770D01* +X124253750Y-67720700D02* +X87803150Y-67720700D01* +X78839000Y-109921863D02* +X77739320Y-109668300D01* +X129411750Y-111359100D02* +X130004304Y-110598419D01* +X118333640Y-121676520D02* +X114950550Y-122692140D01* +X93216150Y-52413400D02* +X89917120Y-53766630D01* +X128228050Y-116264960D02* +X128735161Y-115249340D01* +X80699350Y-109921800D02* +X79685150Y-109921800D01* +X131864650Y-109921800D02* +X132371750Y-109921800D01* +X70128400Y-78377090D02* +X71142640Y-74994000D01* +X114950610Y-122692143D02* +X111483450Y-123452824D01* +X128904650Y-61124000D02* +X128990082Y-60616882D01* +X127974499Y-57403323D02* +X128567050Y-58333500D01* +X69198221Y-85396800D02* +X69198221Y-88948000D01* +X97443950Y-50045900D02* +X96767332Y-50976077D01* +X131357550Y-64000000D02* +X132371750Y-64000000D01* +X129665350Y-62985700D02* +X129158232Y-62054144D01* +X124253692Y-67720657D02* +X124676750Y-67806100D01* +X128904591Y-61124023D02* +X129158150Y-62054200D01* +X80699350Y-109921800D02* +X81629530Y-110344855D01* +X112667150Y-49030300D02* +X109115950Y-48608600D01* +X128990050Y-112289300D02* +X128990050Y-113304900D01* +X136093850Y-108315000D02* +X137954200Y-105354960D01* +X141759025Y-78038070D02* +X142435650Y-81506600D01* +X142435650Y-81506600D02* +X141759025Y-78038070D01* +X74272170Y-105692600D02* +X75963030Y-108315010D01* +X125099834Y-68227802D02* +X125267950Y-68736300D01* +X125099850Y-68227800D02* +X124676785Y-67806121D01* +X125183905Y-105608542D02* +X124760850Y-106031600D01* +X121208290Y-53429010D02* +X124423250Y-55035800D01* +X104463650Y-123791826D02* +X108016250Y-123791826D01* +X87803150Y-106201100D02* +X124253750Y-106201100D01* +X136093850Y-65606800D02* +X135247726Y-64760687D01* +X121631300Y-120408740D02* +X118333650Y-121676530D01* +X114104450Y-49622900D02* +X113090210Y-49115778D01* +X75963030Y-108315010D02* +X74272170Y-105692600D01* +X72495870Y-71780400D02* +X74102670Y-68566800D01* +X98290050Y-49369300D02* +X97443930Y-50045918D01* +X86958449Y-105778051D02* +X86788950Y-105185500D01* +X140914250Y-98927800D02* +X141844427Y-95544710D01* +X82645150Y-62562700D02* +X82052592Y-63323378D01* +X84082450Y-116518520D02* +X84675008Y-117025638D01* +X69198221Y-88948000D02* +X69535840Y-92415160D01* +X132371750Y-109921800D02* +X133556850Y-109921800D01* +X86872960Y-55458840D02* +X89917050Y-53766600D01* +X117994650Y-52075800D02* +X115457680Y-51313747D01* +X97443950Y-122861640D02* +X100912480Y-123452822D01* +X124760850Y-118717880D02* +X127383260Y-117025640D01* +X128990082Y-60616882D02* +X128904650Y-61124000D01* +M02* diff --git a/F1:F103/Canon_managing_device/kicad/Canon_manage/gerbers/Canon_manage-F_Cu.gbr b/F1:F103/Canon_managing_device/kicad/Canon_manage/gerbers/Canon_manage-F_Cu.gbr new file mode 100644 index 0000000..a41a306 --- /dev/null +++ b/F1:F103/Canon_managing_device/kicad/Canon_manage/gerbers/Canon_manage-F_Cu.gbr @@ -0,0 +1,10597 @@ +%TF.GenerationSoftware,KiCad,Pcbnew,6.0.5*% +%TF.CreationDate,2022-09-23T09:05:14+03:00*% +%TF.ProjectId,Canon_manage,43616e6f-6e5f-46d6-916e-6167652e6b69,rev?*% +%TF.SameCoordinates,Original*% +%TF.FileFunction,Copper,L1,Top*% +%TF.FilePolarity,Positive*% +%FSLAX46Y46*% +G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)* +G04 Created by KiCad (PCBNEW 6.0.5) date 2022-09-23 09:05:14* +%MOMM*% +%LPD*% +G01* +G04 APERTURE LIST* +G04 Aperture macros list* +%AMRoundRect* +0 Rectangle with rounded corners* +0 $1 Rounding radius* +0 $2 $3 $4 $5 $6 $7 $8 $9 X,Y pos of 4 corners* +0 Add a 4 corners polygon primitive as box body* +4,1,4,$2,$3,$4,$5,$6,$7,$8,$9,$2,$3,0* +0 Add four circle primitives for the rounded corners* +1,1,$1+$1,$2,$3* +1,1,$1+$1,$4,$5* +1,1,$1+$1,$6,$7* +1,1,$1+$1,$8,$9* +0 Add four rect primitives between the rounded corners* +20,1,$1+$1,$2,$3,$4,$5,0* +20,1,$1+$1,$4,$5,$6,$7,0* +20,1,$1+$1,$6,$7,$8,$9,0* +20,1,$1+$1,$8,$9,$2,$3,0*% +G04 Aperture macros list end* +%TA.AperFunction,ComponentPad*% +%ADD10R,0.850000X0.850000*% +%TD*% +%TA.AperFunction,SMDPad,CuDef*% +%ADD11RoundRect,0.237500X-0.237500X0.300000X-0.237500X-0.300000X0.237500X-0.300000X0.237500X0.300000X0*% +%TD*% +%TA.AperFunction,SMDPad,CuDef*% +%ADD12RoundRect,0.237500X0.250000X0.237500X-0.250000X0.237500X-0.250000X-0.237500X0.250000X-0.237500X0*% +%TD*% +%TA.AperFunction,SMDPad,CuDef*% +%ADD13RoundRect,0.150000X-0.150000X0.512500X-0.150000X-0.512500X0.150000X-0.512500X0.150000X0.512500X0*% +%TD*% +%TA.AperFunction,SMDPad,CuDef*% +%ADD14RoundRect,0.237500X0.237500X-0.250000X0.237500X0.250000X-0.237500X0.250000X-0.237500X-0.250000X0*% +%TD*% +%TA.AperFunction,SMDPad,CuDef*% +%ADD15R,0.600000X1.450000*% +%TD*% +%TA.AperFunction,SMDPad,CuDef*% +%ADD16R,0.300000X1.450000*% +%TD*% +%TA.AperFunction,ComponentPad*% +%ADD17O,1.000000X2.100000*% +%TD*% +%TA.AperFunction,ComponentPad*% +%ADD18O,1.000000X1.600000*% +%TD*% +%TA.AperFunction,SMDPad,CuDef*% +%ADD19RoundRect,0.237500X0.300000X0.237500X-0.300000X0.237500X-0.300000X-0.237500X0.300000X-0.237500X0*% +%TD*% +%TA.AperFunction,SMDPad,CuDef*% +%ADD20R,0.650000X1.560000*% +%TD*% +%TA.AperFunction,ComponentPad*% +%ADD21R,1.700000X1.700000*% +%TD*% +%TA.AperFunction,ComponentPad*% +%ADD22O,0.850000X0.850000*% +%TD*% +%TA.AperFunction,ComponentPad*% +%ADD23C,1.500000*% +%TD*% +%TA.AperFunction,ViaPad*% +%ADD24C,1.200000*% +%TD*% +%TA.AperFunction,ViaPad*% +%ADD25C,0.800000*% +%TD*% +%TA.AperFunction,Conductor*% +%ADD26C,0.250000*% +%TD*% +%TA.AperFunction,Conductor*% +%ADD27C,0.200000*% +%TD*% +%TA.AperFunction,Conductor*% +%ADD28C,1.000000*% +%TD*% +%TA.AperFunction,Conductor*% +%ADD29C,0.500000*% +%TD*% +G04 APERTURE END LIST* +D10* +%TO.P,J6,1,Pin_1*% +%TO.N,Net-(R3-Pad2)*% +X103980000Y-64570000D03* +%TD*% +%TO.P,J3,1,Pin_1*% +%TO.N,Net-(R2-Pad2)*% +X111930000Y-65330000D03* +%TD*% +%TO.P,J4,1,Pin_1*% +%TO.N,GND*% +X109640000Y-64820000D03* +%TD*% +%TO.P,J8,1,Pin_1*% +%TO.N,Net-(R5-Pad2)*% +X99500000Y-65500000D03* +%TD*% +D11* +%TO.P,C1,1*% +%TO.N,/OSC_IN*% +X81661000Y-98478000D03* +%TO.P,C1,2*% +%TO.N,GND*% +X81661000Y-100203000D03* +%TD*% +D12* +%TO.P,R7,1*% +%TO.N,/DP*% +X97663000Y-57150000D03* +%TO.P,R7,2*% +%TO.N,Net-(R7-Pad2)*% +X95838000Y-57150000D03* +%TD*% +D13* +%TO.P,D1,1,K*% +%TO.N,/SPI_SCK*% +X78547000Y-77901800D03* +%TO.P,D1,2,A*% +%TO.N,GND*% +X77597000Y-77901800D03* +%TO.P,D1,3,K*% +%TO.N,/L_DETECT*% +X76647000Y-77901800D03* +%TO.P,D1,4,K*% +%TO.N,/SPI_MOSI*% +X76647000Y-80176800D03* +%TO.P,D1,5,K*% +%TO.N,/SPI_MISO*% +X78547000Y-80176800D03* +%TD*% +D10* +%TO.P,J9,1,Pin_1*% +%TO.N,GND*% +X97310000Y-66260000D03* +%TD*% +D14* +%TO.P,R3,1*% +%TO.N,/SPI_MOSI*% +X79612066Y-71094600D03* +%TO.P,R3,2*% +%TO.N,Net-(R3-Pad2)*% +X79612066Y-69269600D03* +%TD*% +D15* +%TO.P,J37,A1,GND*% +%TO.N,GND*% +X108860000Y-55515000D03* +%TO.P,J37,A4,VBUS*% +%TO.N,/VBUS*% +X108060000Y-55515000D03* +D16* +%TO.P,J37,A5,CC1*% +%TO.N,Net-(J37-PadA5)*% +X106860000Y-55515000D03* +%TO.P,J37,A6,D+*% +%TO.N,/DP*% +X105860000Y-55515000D03* +%TO.P,J37,A7,D-*% +%TO.N,/DM*% +X105360000Y-55515000D03* +%TO.P,J37,A8,SBU1*% +%TO.N,unconnected-(J37-PadA8)*% +X104360000Y-55515000D03* +D15* +%TO.P,J37,A9,VBUS*% +%TO.N,/VBUS*% +X103160000Y-55515000D03* +%TO.P,J37,A12,GND*% +%TO.N,GND*% +X102360000Y-55515000D03* +%TO.P,J37,B1,GND*% +X102360000Y-55515000D03* +%TO.P,J37,B4,VBUS*% +%TO.N,/VBUS*% +X103160000Y-55515000D03* +D16* +%TO.P,J37,B5,CC2*% +%TO.N,Net-(J37-PadB5)*% +X103860000Y-55515000D03* +%TO.P,J37,B6,D+*% +%TO.N,/DP*% +X104860000Y-55515000D03* +%TO.P,J37,B7,D-*% +%TO.N,/DM*% +X106360000Y-55515000D03* +%TO.P,J37,B8,SBU2*% +%TO.N,unconnected-(J37-PadB8)*% +X107360000Y-55515000D03* +D15* +%TO.P,J37,B9,VBUS*% +%TO.N,/VBUS*% +X108060000Y-55515000D03* +%TO.P,J37,B12,GND*% +%TO.N,GND*% +X108860000Y-55515000D03* +D17* +%TO.P,J37,S1,SHIELD*% +X101290000Y-54600000D03* +X109930000Y-54600000D03* +D18* +X109930000Y-50420000D03* +X101290000Y-50420000D03* +%TD*% +D19* +%TO.P,C2,1*% +%TO.N,/OSC_OUT*% +X74902400Y-96610000D03* +%TO.P,C2,2*% +%TO.N,GND*% +X73177400Y-96610000D03* +%TD*% +D20* +%TO.P,U3,1,I/O1*% +%TO.N,Net-(R7-Pad2)*% +X93050400Y-57142400D03* +%TO.P,U3,2,GND*% +%TO.N,GND*% +X92100400Y-57142400D03* +%TO.P,U3,3,I/O2*% +%TO.N,Net-(R8-Pad2)*% +X91150400Y-57142400D03* +%TO.P,U3,4,I/O2*% +%TO.N,/USBDM*% +X91150400Y-59842400D03* +%TO.P,U3,5,VBUS*% +%TO.N,/VBUS*% +X92100400Y-59842400D03* +%TO.P,U3,6,I/O1*% +%TO.N,/USBDP*% +X93050400Y-59842400D03* +%TD*% +D12* +%TO.P,R8,1*% +%TO.N,/DM*% +X97661100Y-55549800D03* +%TO.P,R8,2*% +%TO.N,Net-(R8-Pad2)*% +X95836100Y-55549800D03* +%TD*% +D10* +%TO.P,J2,1,Pin_1*% +%TO.N,/VBUS*% +X114040000Y-66090000D03* +%TD*% +%TO.P,J7,1,Pin_1*% +%TO.N,Net-(R4-Pad2)*% +X101700000Y-64910000D03* +%TD*% +D14* +%TO.P,R4,1*% +%TO.N,/SPI_MISO*% +X81169932Y-71094600D03* +%TO.P,R4,2*% +%TO.N,Net-(R4-Pad2)*% +X81169932Y-69269600D03* +%TD*% +D10* +%TO.P,J5,1,Pin_1*% +%TO.N,/VBUS*% +X106270000Y-64490000D03* +%TD*% +D21* +%TO.P,J35,1,Pin_1*% +%TO.N,GND*% +X138633200Y-89560400D03* +%TD*% +D14* +%TO.P,R2,1*% +%TO.N,/L_DETECT*% +X78054200Y-71094600D03* +%TO.P,R2,2*% +%TO.N,Net-(R2-Pad2)*% +X78054200Y-69269600D03* +%TD*% +%TO.P,R5,1*% +%TO.N,/SPI_SCK*% +X82727800Y-71094600D03* +%TO.P,R5,2*% +%TO.N,Net-(R5-Pad2)*% +X82727800Y-69269600D03* +%TD*% +D21* +%TO.P,J26,1,Pin_1*% +%TO.N,/VBUS*% +X127609600Y-72237600D03* +%TD*% +D10* +%TO.P,J1,1,Pin_1*% +%TO.N,/SWCLK*% +X70586600Y-85188800D03* +D22* +%TO.P,J1,2,Pin_2*% +%TO.N,/SWDIO*% +X70586600Y-86188800D03* +%TO.P,J1,3,Pin_3*% +%TO.N,GND*% +X70586600Y-87188800D03* +%TO.P,J1,4,Pin_4*% +%TO.N,+3V3*% +X70586600Y-88188800D03* +%TO.P,J1,5,Pin_5*% +%TO.N,/BOOT0*% +X70586600Y-89188800D03* +%TO.P,J1,6,Pin_6*% +%TO.N,/NRST*% +X70586600Y-90188800D03* +%TD*% +D12* +%TO.P,R1,1*% +%TO.N,/BOOT0*% +X80387200Y-90906600D03* +%TO.P,R1,2*% +%TO.N,GND*% +X78562200Y-90906600D03* +%TD*% +D21* +%TO.P,J36,1,Pin_1*% +%TO.N,+3V3*% +X133350000Y-89560400D03* +%TD*% +D23* +%TO.P,Y1,1,1*% +%TO.N,/OSC_IN*% +X81647200Y-96600000D03* +%TO.P,Y1,2,2*% +%TO.N,/OSC_OUT*% +X76767200Y-96600000D03* +%TD*% +D24* +%TO.N,GND*% +X109423200Y-115290600D03* +D25* +X89509600Y-58521600D03* +D24* +X77673200Y-75488800D03* +X112471200Y-62026800D03* +D25* +X84582000Y-80746600D03* +X73888600Y-79095600D03* +D24* +X114300000Y-58521600D03* +D25* +X84582000Y-77063600D03* +D24* +X80848200Y-75260200D03* +D25* +X71831200Y-87426800D03* +D24* +%TO.N,/VBUS*% +X108051600Y-60350400D03* +X101803200Y-57353200D03* +%TO.N,+3V3*% +X131064000Y-84886800D03* +X80162400Y-86842600D03* +D25* +X78435200Y-84150200D03* +%TO.N,/L_DETECT*% +X75184000Y-77927200D03* +%TO.N,/SPI_SCK*% +X77639876Y-84810577D03* +%TO.N,/SPI_MISO*% +X79908400Y-78740000D03* +X81076800Y-72720200D03* +X76640374Y-84810820D03* +%TO.N,/SPI_MOSI*% +X75184000Y-80162400D03* +X79603600Y-72542400D03* +X75641200Y-84785200D03* +%TO.N,/SWCLK*% +X80772000Y-85191600D03* +%TO.N,/SWDIO*% +X78790800Y-86188800D03* +%TO.N,/BOOT0*% +X80445588Y-88464412D03* +%TO.N,/NRST*% +X77825600Y-89408000D03* +%TO.N,Net-(J37-PadA5)*% +X107137200Y-58470800D03* +%TO.N,/DP*% +X104190800Y-58166000D03* +X105511600Y-59309000D03* +X105660500Y-57759600D03* +%TO.N,Net-(J37-PadB5)*% +X103047800Y-58039000D03* +%TO.N,/USBDM*% +X81635600Y-78282800D03* +X84074000Y-69088000D03* +X91160600Y-61772800D03* +%TO.N,/USBDP*% +X94462600Y-59842400D03* +X82778600Y-78282800D03* +X85217000Y-69088000D03* +%TO.N,Net-(R2-Pad2)*% +X76631800Y-69265800D03* +X97993200Y-62128400D03* +%TD*% +D26* +%TO.N,/OSC_IN*% +X81647200Y-96600000D02* +X81647200Y-98464200D01* +X81647200Y-98464200D02* +X81661000Y-98478000D01* +D27* +%TO.N,GND*% +X91846400Y-58521600D02* +X89509600Y-58521600D01* +X84582000Y-80746600D02* +X84582000Y-77063600D01* +X80619600Y-75488800D02* +X77673200Y-75488800D01* +D28* +X112471200Y-62026800D02* +X115874800Y-62026800D01* +D27* +X92100400Y-58267600D02* +X91871800Y-58496200D01* +D26* +X77597000Y-78816200D02* +X77317600Y-79095600D01* +D27* +X84074000Y-113334800D02* +X85547200Y-114808000D01* +D26* +X77597000Y-77901800D02* +X77597000Y-78816200D01* +D27* +X81661000Y-108762800D02* +X81661000Y-109448600D01* +X77597000Y-75565000D02* +X77597000Y-77901800D01* +X86029800Y-115290600D02* +X109423200Y-115290600D01* +X85547200Y-114808000D02* +X86029800Y-115290600D01* +D26* +X77317600Y-79095600D02* +X73888600Y-79095600D01* +D28* +X115468400Y-58521600D02* +X114300000Y-58521600D01* +X115874800Y-62026800D02* +X115874800Y-58928000D01* +D27* +X91871800Y-58496200D02* +X91846400Y-58521600D01* +D28* +X115874800Y-58928000D02* +X115468400Y-58521600D01* +D27* +X84074000Y-111861600D02* +X84074000Y-113334800D01* +X81661000Y-109448600D02* +X84074000Y-111861600D01* +X81661000Y-107924600D02* +X81661000Y-108762800D01* +X92100400Y-57142400D02* +X92100400Y-58267600D01* +X77673200Y-75488800D02* +X77597000Y-75565000D01* +X81661000Y-100203000D02* +X81661000Y-107924600D01* +X80848200Y-75260200D02* +X80619600Y-75488800D01* +D26* +%TO.N,/OSC_OUT*% +X76767200Y-96600000D02* +X74912400Y-96600000D01* +X74912400Y-96600000D02* +X74902400Y-96610000D01* +D29* +%TO.N,/VBUS*% +X108060000Y-55515000D02* +X108060000Y-60342000D01* +D26* +X102514400Y-57353200D02* +X101803200Y-57353200D01* +X103160000Y-56707600D02* +X102514400Y-57353200D01* +X108051600Y-60350400D02* +X95783400Y-60350400D01* +X95783400Y-60350400D02* +X94208600Y-61925200D01* +X92557600Y-61925200D02* +X92100400Y-61468000D01* +X103160000Y-55515000D02* +X103160000Y-56707600D01* +X92100400Y-61468000D02* +X92100400Y-59842400D01* +D29* +X108051600Y-60350400D02* +X108060000Y-60342000D01* +D26* +X94208600Y-61925200D02* +X92557600Y-61925200D01* +D28* +%TO.N,+3V3*% +X85496400Y-88315800D02* +X85496400Y-106273600D01* +D26* +X78435200Y-84150200D02* +X81508600Y-84150200D01* +D28* +X124968000Y-107670600D02* +X128676400Y-103962200D01* +X80162400Y-86842600D02* +X81635600Y-86842600D01* +D26* +X81635600Y-84277200D02* +X81635600Y-86842600D01* +D28* +X81635600Y-86842600D02* +X84023200Y-86842600D01* +D26* +X81508600Y-84150200D02* +X81635600Y-84277200D01* +D28* +X128676400Y-88188800D02* +X128676400Y-87274400D01* +D26* +X80162400Y-86842600D02* +X80162400Y-87274400D01* +D28* +X85496400Y-106273600D02* +X86893400Y-107670600D01* +D26* +X79527400Y-87909400D02* +X72974200Y-87909400D01* +X71831200Y-88595200D02* +X71424800Y-88188800D01* +D28* +X86893400Y-107670600D02* +X124968000Y-107670600D01* +D26* +X72288400Y-88595200D02* +X71831200Y-88595200D01* +D28* +X128676400Y-87274400D02* +X131064000Y-84886800D01* +X84023200Y-86842600D02* +X85496400Y-88315800D01* +X128676400Y-103962200D02* +X128676400Y-88188800D01* +D26* +X80162400Y-87274400D02* +X79527400Y-87909400D01* +X72974200Y-87909400D02* +X72288400Y-88595200D01* +X71424800Y-88188800D02* +X70586600Y-88188800D01* +%TO.N,/L_DETECT*% +X78054200Y-71094600D02* +X75184000Y-73964800D01* +X75184000Y-73964800D02* +X75184000Y-77927200D01* +X76647000Y-77901800D02* +X76647000Y-77937400D01* +X75184000Y-77927200D02* +X76621600Y-77927200D01* +X76621600Y-77927200D02* +X76647000Y-77901800D01* +%TO.N,/SPI_SCK*% +X82727800Y-75387200D02* +X81330800Y-76784200D01* +X78547000Y-77901800D02* +X80213200Y-77901800D01* +X82727800Y-71094600D02* +X82727800Y-75387200D01* +X81330800Y-76784200D02* +X80772000Y-77343000D01* +X77639876Y-83624724D02* +X77639876Y-84810577D01* +X80772000Y-77343000D02* +X80772000Y-81584800D01* +X80213200Y-77901800D02* +X81330800Y-76784200D01* +X80772000Y-81584800D02* +X79222600Y-83134200D01* +X79222600Y-83134200D02* +X78130400Y-83134200D01* +X78130400Y-83134200D02* +X77639876Y-83624724D01* +%TO.N,/SPI_MISO*% +X78547000Y-80101400D02* +X79908400Y-78740000D01* +X78547000Y-81777800D02* +X78547000Y-80176800D01* +X76640374Y-83684426D02* +X78547000Y-81777800D01* +X78547000Y-80176800D02* +X78547000Y-80101400D01* +X81076800Y-72720200D02* +X81076800Y-71187732D01* +X81076800Y-71187732D02* +X81169932Y-71094600D01* +X76640374Y-84810820D02* +X76640374Y-83684426D01* +%TO.N,/SPI_MOSI*% +X75198400Y-80176800D02* +X75184000Y-80162400D01* +X79603600Y-72542400D02* +X79603600Y-71103066D01* +X76647000Y-80176800D02* +X75198400Y-80176800D01* +X75641200Y-81182600D02* +X76647000Y-80176800D01* +X75641200Y-84785200D02* +X75641200Y-81182600D01* +X79603600Y-71103066D02* +X79612066Y-71094600D01* +%TO.N,/SWCLK*% +X80769200Y-85188800D02* +X78615800Y-85188800D01* +X73126600Y-86690200D02* +X71625200Y-85188800D01* +X77114400Y-86690200D02* +X73126600Y-86690200D01* +X71625200Y-85188800D02* +X70586600Y-85188800D01* +X79804000Y-85188800D02* +X78615800Y-85188800D01* +D27* +X80769200Y-85188800D02* +X80772000Y-85191600D01* +D26* +X79804000Y-85188800D02* +X80769200Y-85188800D01* +X78615800Y-85188800D02* +X77114400Y-86690200D01* +D27* +X79806800Y-85191600D02* +X79804000Y-85188800D01* +D26* +%TO.N,/SWDIO*% +X71736200Y-86188800D02* +X70586600Y-86188800D01* +X78790800Y-86188800D02* +X78790800Y-86410800D01* +X72821800Y-87274400D02* +X71736200Y-86188800D01* +X77927200Y-87274400D02* +X72821800Y-87274400D01* +X78790800Y-86410800D02* +X77927200Y-87274400D01* +%TO.N,/BOOT0*% +X73606388Y-88464412D02* +X72882000Y-89188800D01* +X80445588Y-88464412D02* +X80445588Y-90848212D01* +X80445588Y-88464412D02* +X73606388Y-88464412D01* +X80445588Y-90848212D02* +X80387200Y-90906600D01* +X72882000Y-89188800D02* +X70586600Y-89188800D01* +%TO.N,/NRST*% +X77825600Y-89408000D02* +X77044800Y-90188800D01* +X77044800Y-90188800D02* +X70586600Y-90188800D01* +%TO.N,Net-(J37-PadA5)*% +X106860000Y-58193600D02* +X107137200Y-58470800D01* +X106860000Y-55515000D02* +X106860000Y-58193600D01* +D27* +%TO.N,/DP*% +X104190800Y-57649635D02* +X104190800Y-58166000D01* +X105511600Y-59309000D02* +X101777800Y-59309000D01* +X104190800Y-58166000D02* +X104216200Y-57624235D01* +X104860000Y-56980435D02* +X104190800Y-57649635D01* +X105860000Y-57560100D02* +X105660500Y-57759600D01* +X104860000Y-56980435D02* +X104860000Y-55515000D01* +X104216200Y-57624235D02* +X104860000Y-56980435D01* +X101777800Y-59309000D02* +X99618800Y-57150000D01* +X105860000Y-55515000D02* +X105860000Y-57560100D01* +X99618800Y-57150000D02* +X97663000Y-57150000D01* +%TO.N,/DM*% +X97659200Y-55549800D02* +X98653600Y-55549800D01* +X98653600Y-55549800D02* +X101981000Y-58877200D01* +X105360000Y-55515000D02* +X105360000Y-57045441D01* +X105360000Y-57070841D02* +X104927400Y-57503441D01* +X106217800Y-58470800D02* +X104927400Y-58470800D01* +X105360000Y-57045441D02* +X104927400Y-57478041D01* +X104927400Y-57503441D02* +X104927400Y-58470800D01* +X106360000Y-58328600D02* +X106217800Y-58470800D01* +X105360000Y-55515000D02* +X105360000Y-57070841D01* +X104927400Y-57478041D02* +X104927400Y-58470800D01* +X101981000Y-58877200D02* +X104521000Y-58877200D01* +X106360000Y-55515000D02* +X106360000Y-58328600D01* +X104521000Y-58877200D02* +X104927400Y-58470800D01* +%TO.N,Net-(J37-PadB5)*% +X103860000Y-55515000D02* +X103860000Y-57023600D01* +X103860000Y-57226800D02* +X103047800Y-58039000D01* +X103860000Y-57023600D02* +X103860000Y-57226800D01* +D26* +%TO.N,Net-(R7-Pad2)*% +X95838000Y-57150000D02* +X95830400Y-57142400D01* +X95830400Y-57142400D02* +X93050400Y-57142400D01* +%TO.N,Net-(R8-Pad2)*% +X91150400Y-55839400D02* +X91150400Y-57142400D01* +X95834200Y-55549800D02* +X91440000Y-55549800D01* +X91440000Y-55549800D02* +X91150400Y-55839400D01* +D27* +%TO.N,/USBDM*% +X84074000Y-72288400D02* +X83286600Y-73075800D01* +D26* +X91150400Y-59842400D02* +X91150400Y-61762600D01* +D27* +X83286600Y-73075800D02* +X83286600Y-75844400D01* +D26* +X91150400Y-61762600D02* +X91160600Y-61772800D01* +D27* +X81635600Y-77495400D02* +X81635600Y-78282800D01* +X84074000Y-69088000D02* +X84074000Y-72288400D01* +X83286600Y-75844400D02* +X81635600Y-77495400D01* +%TO.N,/USBDP*% +X85217000Y-69088000D02* +X85217000Y-71729600D01* +X82778600Y-77038200D02* +X82778600Y-78282800D01* +X83845400Y-73101200D02* +X83845400Y-75971400D01* +D26* +X93050400Y-59842400D02* +X94462600Y-59842400D01* +D27* +X83845400Y-75971400D02* +X82778600Y-77038200D01* +X85217000Y-71729600D02* +X83845400Y-73101200D01* +D26* +%TO.N,Net-(R2-Pad2)*% +X97967800Y-62153800D02* +X97993200Y-62128400D01* +X97967800Y-62169100D02* +X97967800Y-62153800D01* +X111937800Y-63576200D02* +X110530700Y-62169100D01* +X76631800Y-69265800D02* +X78050400Y-69265800D01* +X111930000Y-65330000D02* +X111930000Y-63838000D01* +X111930000Y-63838000D02* +X111937800Y-63830200D01* +X78050400Y-69265800D02* +X78054200Y-69269600D01* +X110530700Y-62169100D02* +X97967800Y-62169100D01* +X111937800Y-63830200D02* +X111937800Y-63576200D01* +%TO.N,Net-(R3-Pad2)*% +X102743000Y-63093600D02* +X95580200Y-63093600D01* +X79612066Y-69269600D02* +X79612066Y-67987334D01* +X79612066Y-67987334D02* +X80619600Y-66979800D01* +X95580200Y-63093600D02* +X92989400Y-65684400D01* +X103980000Y-64330600D02* +X102743000Y-63093600D01* +X92989400Y-65684400D02* +X88265000Y-65684400D01* +X87323766Y-65684400D02* +X88265000Y-65684400D01* +X86028364Y-66979800D02* +X87323766Y-65684400D01* +X80619600Y-66979800D02* +X86028364Y-66979800D01* +X103980000Y-64570000D02* +X103980000Y-64330600D01* +%TO.N,Net-(R4-Pad2)*% +X96062800Y-63652400D02* +X93395800Y-66319400D01* +X100939600Y-63652400D02* +X96062800Y-63652400D01* +X81169932Y-68512268D02* +X82118200Y-67564000D01* +X87324483Y-66319400D02* +X88061800Y-66319400D01* +X101700000Y-64412800D02* +X100939600Y-63652400D01* +X86079882Y-67564000D02* +X87324483Y-66319400D01* +X81169932Y-69269600D02* +X81169932Y-68512268D01* +X101700000Y-64910000D02* +X101700000Y-64412800D01* +X93395800Y-66319400D02* +X88061800Y-66319400D01* +X82118200Y-67564000D02* +X86079882Y-67564000D01* +%TO.N,Net-(R5-Pad2)*% +X99500000Y-64473400D02* +X99500000Y-65500000D01* +X96393000Y-64211200D02* +X99237800Y-64211200D01* +X93675200Y-66929000D02* +X96393000Y-64211200D01* +X86131400Y-68148200D02* +X87350600Y-66929000D01* +X83849200Y-68148200D02* +X86131400Y-68148200D01* +X99237800Y-64211200D02* +X99500000Y-64473400D01* +X82727800Y-69269600D02* +X83849200Y-68148200D01* +X87350600Y-66929000D02* +X93675200Y-66929000D01* +%TD*% +%TA.AperFunction,Conductor*% +%TO.N,GND*% +G36* +X107231877Y-49029835D02* +G01* +X109069568Y-49115491D01* +X109078558Y-49116233D01* +X109208636Y-49131679D01* +X109273923Y-49159574D01* +X109313765Y-49218338D01* +X109315512Y-49289313D01* +X109278610Y-49349965D01* +X109272731Y-49354996D01* +X109226133Y-49392462D01* +X109217368Y-49401046D01* +X109098222Y-49543039D01* +X109091292Y-49553159D01* +X109001998Y-49715585D01* +X108997166Y-49726858D01* +X108941120Y-49903538D01* +X108938570Y-49915532D01* +X108922393Y-50059761D01* +X108922000Y-50066785D01* +X108922000Y-50147885D01* +X108926475Y-50163124D01* +X108927865Y-50164329D01* +X108935548Y-50166000D01* +X110919885Y-50166000D01* +X110935124Y-50161525D01* +X110936329Y-50160135D01* +X110938000Y-50152452D01* +X110938000Y-50073343D01* +X110937699Y-50067195D01* +X110924188Y-49929397D01* +X110921805Y-49917362D01* +X110868233Y-49739924D01* +X110863559Y-49728584D01* +X110776540Y-49564923D01* +X110769748Y-49554700D01* +X110752115Y-49533080D01* +X110724561Y-49467649D01* +X110736757Y-49397707D01* +X110784829Y-49345462D01* +X110853516Y-49327501D01* +X110864609Y-49328323D01* +X111982887Y-49461118D01* +X112582257Y-49532292D01* +X112592343Y-49533907D01* +X112906559Y-49597368D01* +X112937964Y-49608176D01* +X113800483Y-50039436D01* +X113828371Y-50058433D01* +X113946164Y-50164329D01* +X114529882Y-50689097D01* +X114556272Y-50722486D01* +X114976249Y-51492830D01* +X114980570Y-51503488D01* +X114981200Y-51503212D01* +X114984806Y-51511433D01* +X114987209Y-51520082D01* +X114991943Y-51527709D01* +X114991944Y-51527710D01* +X115017340Y-51568620D01* +X115020908Y-51574746D01* +X115028766Y-51589160D01* +X115033391Y-51595354D01* +X115039474Y-51604276D01* +X115059293Y-51636204D01* +X115059297Y-51636209D01* +X115064030Y-51643833D01* +X115071487Y-51650516D01* +X115088355Y-51668965D01* +X115088472Y-51669121D01* +X115093845Y-51676317D01* +X115129516Y-51703150D01* +X115137867Y-51710012D01* +X115172497Y-51741050D01* +X115180594Y-51744924D01* +X115181519Y-51745367D01* +X115202875Y-51758333D01* +X115210246Y-51763877D01* +X115218642Y-51767042D01* +X115218645Y-51767043D01* +X115252106Y-51779654D01* +X115262044Y-51783895D01* +X115273455Y-51789355D01* +X115290947Y-51794609D01* +X115299121Y-51797374D01* +X115346544Y-51815248D01* +X115355499Y-51815929D01* +X115364261Y-51817872D01* +X115364210Y-51818100D01* +X115377179Y-51820512D01* +X117816233Y-52553154D01* +X117828885Y-52557703D01* +X120992061Y-53889710D01* +X120999491Y-53893127D01* +X124167617Y-55476511D01* +X124178334Y-55482538D01* +X127073014Y-57301810D01* +X127088003Y-57312855D01* +X127169066Y-57382391D01* +X127572001Y-57728031D01* +X127596230Y-57755965D01* +X128088647Y-58528952D01* +X128103913Y-58552916D01* +X128115241Y-58575369D01* +X128452858Y-59452958D01* +X128473148Y-59505699D01* +X128481550Y-59550940D01* +X128481550Y-60564003D01* +X128479799Y-60584935D01* +X128408293Y-61009392D01* +X128406166Y-61022017D01* +X128406069Y-61022585D01* +X128391103Y-61108316D01* +X128392103Y-61117235D01* +X128392103Y-61117237D01* +X128394438Y-61138060D01* +X128395185Y-61155207D01* +X128394468Y-61184271D01* +X128396775Y-61192948D01* +X128396775Y-61192950D01* +X128403093Y-61216714D01* +X128403415Y-61218123D01* +X128403573Y-61219537D01* +X128404583Y-61223241D01* +X128404585Y-61223251D01* +X128414411Y-61259297D01* +X128414617Y-61260062D01* +X128420577Y-61282479D01* +X128431891Y-61325039D01* +X128432558Y-61326141D01* +X128432905Y-61327140D01* +X128553099Y-61768068D01* +X128650311Y-62124688D01* +X128653239Y-62142508D01* +X128654395Y-62148158D01* +X128654929Y-62157117D01* +X128657956Y-62165566D01* +X128657957Y-62165569D01* +X128670921Y-62201749D01* +X128673871Y-62211118D01* +X128677154Y-62223161D01* +X128678935Y-62227277D01* +X128683910Y-62238776D01* +X128686885Y-62246305D01* +X128692680Y-62262477D01* +X128695003Y-62266745D01* +X128695006Y-62266751D01* +X128697203Y-62270786D01* +X128702176Y-62280989D01* +X128720349Y-62322989D01* +X128726083Y-62329896D01* +X128727819Y-62331987D01* +X128741538Y-62352227D01* +X128873515Y-62594664D01* +X129204221Y-63202159D01* +X129209274Y-63212549D01* +X129227068Y-63253852D01* +X129232789Y-63260766D01* +X129232791Y-63260769D01* +X129264280Y-63298823D01* +X129268199Y-63303811D01* +X129301220Y-63348091D01* +X129308392Y-63353493D01* +X129308393Y-63353494D01* +X129338817Y-63376409D01* +X129346573Y-63382749D01* +X129488739Y-63508719D01* +X130054897Y-64010378D01* +X130074747Y-64027967D01* +X130080548Y-64033445D01* +X130118024Y-64071150D01* +X130157593Y-64092971D01* +X130159752Y-64094161D01* +X130168253Y-64099296D01* +X130186279Y-64111178D01* +X130208262Y-64125670D01* +X130263264Y-64142584D01* +X130269360Y-64144631D01* +X130788310Y-64333760D01* +X131156323Y-64467881D01* +X131166727Y-64472209D01* +X131199222Y-64487465D01* +X131207350Y-64491281D01* +X131237886Y-64496036D01* +X131262758Y-64499909D01* +X131269296Y-64501105D01* +X131315397Y-64510798D01* +X131315399Y-64510798D01* +X131324183Y-64512645D01* +X131372875Y-64508876D01* +X131382598Y-64508500D01* +X133066913Y-64508500D01* +X133093304Y-64511295D01* +X134120832Y-64731398D01* +X134154753Y-64743976D01* +X134722910Y-65053726D01* +X134909978Y-65155712D01* +X134924037Y-65163377D01* +X134952820Y-65184908D01* +X135213232Y-65445316D01* +X135653188Y-65885266D01* +X135686610Y-65918688D01* +X135703395Y-65939480D01* +X137318363Y-68442868D01* +X137340606Y-68477348D01* +X137346813Y-68488099D01* +X138917108Y-71546546D01* +X138926529Y-71564895D01* +X138931013Y-71574625D01* +X140247906Y-74785054D01* +X140262768Y-74821287D01* +X140266882Y-74832904D01* +X141262925Y-78153976D01* +X141265905Y-78166046D01* +X141394785Y-78826716D01* +X141931909Y-81580131D01* +X141933355Y-81589351D01* +X142349265Y-85080550D01* +X142350150Y-85095455D01* +X142350150Y-88495170D01* +X142349585Y-88507091D01* +X142017767Y-91998590D01* +X142015999Y-92010803D01* +X141799914Y-93118077D01* +X141351629Y-95415205D01* +X141350009Y-95423506D01* +X141347836Y-95432764D01* +X140952706Y-96869865D01* +X140434019Y-98756349D01* +X140429095Y-98770780D01* +X139100953Y-102007270D01* +X139096475Y-102016985D01* +X138304043Y-103560397D01* +X137803795Y-104534726D01* +X137514804Y-105097590D01* +X137509396Y-105107084D01* +X136718117Y-106366106D01* +X135688267Y-108004722D01* +X135677206Y-108019730D01* +X135254164Y-108512702D01* +X135247683Y-108520254D01* +X135226184Y-108540092D01* +X134441848Y-109110630D01* +X134404752Y-109129173D01* +X133498552Y-109407738D01* +X133461530Y-109413300D01* +X131935625Y-109413300D01* +X131929582Y-109412948D01* +X131924324Y-109411556D01* +X131915355Y-109411787D01* +X131915353Y-109411787D01* +X131858296Y-109413258D01* +X131855049Y-109413300D01* +X131828137Y-109413300D01* +X131823703Y-109413935D01* +X131821837Y-109414068D01* +X131817796Y-109414264D01* +X131817305Y-109414315D01* +X131812442Y-109414440D01* +X131807658Y-109415312D01* +X131807655Y-109415312D01* +X131786395Y-109419186D01* +X131781672Y-109419954D01* +X131729349Y-109427447D01* +X131729346Y-109427448D01* +X131720463Y-109428720D01* +X131713318Y-109431969D01* +X131703526Y-109434286D01* +X131218647Y-109522641D01* +X130881242Y-109584123D01* +X130866242Y-109585934D01* +X130850922Y-109586857D01* +X130840200Y-109587503D01* +X130840198Y-109587503D01* +X130831241Y-109588043D01* +X130769587Y-109610178D01* +X130766990Y-109611077D01* +X130735226Y-109621691D01* +X130704206Y-109632056D01* +X130696833Y-109637176D01* +X130672044Y-109654390D01* +X130660494Y-109661520D01* +X129891902Y-110080544D01* +X129770376Y-110146798D01* +X129767134Y-110148505D01* +X129709038Y-110178020D01* +X129702497Y-110184169D01* +X129702496Y-110184170D01* +X129682085Y-110203359D01* +X129671167Y-110212517D01* +X129641732Y-110234496D01* +X129636337Y-110241668D01* +X129636335Y-110241670D01* +X129600569Y-110289218D01* +X129599276Y-110290906D01* +X129487620Y-110434242D01* +X129207831Y-110793417D01* +X129050367Y-110995558D01* +X129033973Y-111012697D01* +X129033128Y-111013656D01* +X129026303Y-111019478D01* +X129000351Y-111059083D01* +X128994364Y-111067452D01* +X128988160Y-111075416D01* +X128981606Y-111086876D01* +X128979848Y-111089949D01* +X128975866Y-111096447D01* +X128964961Y-111113088D01* +X128962954Y-111117515D01* +X128961090Y-111121626D01* +X128955706Y-111132156D01* +X128934155Y-111169835D01* +X128931269Y-111181884D01* +X128923496Y-111204554D01* +X128614745Y-111885614D01* +X128529932Y-112072698D01* +X128529229Y-112074221D01* +X128502583Y-112130974D01* +X128502581Y-112130981D01* +X128498769Y-112139100D01* +X128497389Y-112147964D01* +X128497388Y-112147967D01* +X128493866Y-112170589D01* +X128490340Y-112186435D01* +X128483939Y-112208413D01* +X128483938Y-112208418D01* +X128481429Y-112217034D01* +X128481439Y-112226010D01* +X128481550Y-112325687D01* +X128481550Y-114078531D01* +X128478287Y-114107021D01* +X128256745Y-115061443D01* +X128246737Y-115089240D01* +X128087863Y-115407426D01* +X127838046Y-115907750D01* +X127826873Y-115930126D01* +X127798462Y-115967469D01* +X127080750Y-116613755D01* +X127064772Y-116625979D01* +X124505799Y-118277283D01* +X124497398Y-118282253D01* +X121956632Y-119655009D01* +X121425557Y-119941944D01* +X121410878Y-119948697D01* +X118173652Y-121193256D01* +X118164666Y-121196327D01* +X116521278Y-121689680D01* +X114918130Y-122170953D01* +X114827152Y-122198265D01* +X114817929Y-122200658D01* +X111411279Y-122948063D01* +X111396550Y-122950390D01* +X108045200Y-123278070D01* +X107997560Y-123282728D01* +X107985299Y-123283326D01* +X104493876Y-123283326D01* +X104481902Y-123282756D01* +X100984128Y-122948854D01* +X100974932Y-122947633D01* +X97567924Y-122366937D01* +X97552852Y-122363403D01* +X94231032Y-121365782D01* +X94222075Y-121362721D01* +X90983858Y-120118291D01* +X90969125Y-120111511D01* +X90655538Y-119941944D01* +X87894182Y-118448788D01* +X87887060Y-118444630D01* +X86278531Y-117433213D01* +X84985005Y-116619865D01* +X84970153Y-116608932D01* +X84469807Y-116180731D01* +X84449851Y-116159133D01* +X83932445Y-115447834D01* +X83879186Y-115374616D01* +X83860671Y-115337615D01* +X83770477Y-115045035D01* +X83580941Y-114430197D01* +X83575350Y-114393080D01* +X83575350Y-112954028D01* +X83575497Y-112951820D01* +X83576100Y-112949679D01* +X83575356Y-112873778D01* +X83575350Y-112872543D01* +X83575350Y-112845387D01* +X83575103Y-112843658D01* +X83575070Y-112842853D01* +X83575051Y-112842635D01* +X83575003Y-112837766D01* +X83569754Y-112806099D01* +X83569331Y-112803357D01* +X83561203Y-112746600D01* +X83561202Y-112746598D01* +X83559930Y-112737713D01* +X83558016Y-112733504D01* +X83556936Y-112728772D01* +X83551409Y-112695425D01* +X83405771Y-111816818D01* +X83404298Y-111803716D01* +X83402504Y-111773639D01* +X83401970Y-111764679D01* +X83382264Y-111709680D01* +X83380766Y-111705238D01* +X83364322Y-111653277D01* +X83364321Y-111653276D01* +X83361614Y-111644721D01* +X83356615Y-111637271D01* +X83356612Y-111637265D01* +X83336564Y-111607388D01* +X83330527Y-111597426D01* +X82843938Y-110703585D01* +X82842382Y-110700634D01* +X82815496Y-110647972D01* +X82815495Y-110647971D01* +X82811416Y-110639981D01* +X82805260Y-110633459D01* +X82805258Y-110633456D01* +X82786342Y-110613416D01* +X82776966Y-110602253D01* +X82761048Y-110580908D01* +X82755679Y-110573708D01* +X82720060Y-110546880D01* +X82701419Y-110532839D01* +X82699993Y-110531749D01* +X81993268Y-109983488D01* +X81978261Y-109969145D01* +X81975460Y-109966670D01* +X81969645Y-109959837D01* +X81962144Y-109954909D01* +X81962140Y-109954905D01* +X81928925Y-109933081D01* +X81920883Y-109927334D01* +X81918069Y-109925151D01* +X81912388Y-109920744D01* +X81908498Y-109918529D01* +X81908493Y-109918526D01* +X81903044Y-109915424D01* +X81899090Y-109913173D01* +X81892256Y-109908989D01* +X81876110Y-109898380D01* +X81871679Y-109896365D01* +X81871674Y-109896362D01* +X81866373Y-109893951D01* +X81856202Y-109888756D01* +X81825662Y-109871369D01* +X81825660Y-109871368D01* +X81817861Y-109866928D01* +X81806967Y-109864342D01* +X81783905Y-109856445D01* +X80916332Y-109461863D01* +X80914961Y-109461229D01* +X80909871Y-109458839D01* +X80849550Y-109430519D01* +X80818448Y-109425676D01* +X80802458Y-109422108D01* +X80780851Y-109415787D01* +X80780850Y-109415787D01* +X80772236Y-109413267D01* +X80763259Y-109413266D01* +X80763258Y-109413266D01* +X80626930Y-109413252D01* +X80626579Y-109413252D01* +X80626466Y-109413285D01* +X80626257Y-109413300D01* +X78910929Y-109413300D01* +X78882619Y-109410078D01* +X78872471Y-109407738D01* +X77927143Y-109189766D01* +X77899111Y-109179688D01* +X77060006Y-108760137D01* +X77022731Y-108731763D01* +X76374995Y-108012581D01* +X76362723Y-107996536D01* +X74712638Y-105437363D01* +X74707691Y-105428998D01* +X73048141Y-102358775D01* +X73041386Y-102344102D01* +X72394656Y-100663028D01* +X72350890Y-100549266D01* +X80678000Y-100549266D01* +X80678337Y-100555782D01* +X80688075Y-100649632D01* +X80690968Y-100663028D01* +X80741488Y-100814453D01* +X80747653Y-100827615D01* +X80831426Y-100962992D01* +X80840460Y-100974390D01* +X80953129Y-101086863D01* +X80964540Y-101095875D01* +X81100063Y-101179412D01* +X81113241Y-101185556D01* +X81264766Y-101235815D01* +X81278132Y-101238681D01* +X81370770Y-101248172D01* +X81377185Y-101248500D01* +X81388885Y-101248500D01* +X81404124Y-101244025D01* +X81405329Y-101242635D01* +X81407000Y-101234952D01* +X81407000Y-101230385D01* +X81915000Y-101230385D01* +X81919475Y-101245624D01* +X81920865Y-101246829D01* +X81928548Y-101248500D01* +X81944766Y-101248500D01* +X81951282Y-101248163D01* +X82045132Y-101238425D01* +X82058528Y-101235532D01* +X82209953Y-101185012D01* +X82223115Y-101178847D01* +X82358492Y-101095074D01* +X82369890Y-101086040D01* +X82482363Y-100973371D01* +X82491375Y-100961960D01* +X82574912Y-100826437D01* +X82581056Y-100813259D01* +X82631315Y-100661734D01* +X82634181Y-100648368D01* +X82643672Y-100555730D01* +X82644000Y-100549315D01* +X82644000Y-100475115D01* +X82639525Y-100459876D01* +X82638135Y-100458671D01* +X82630452Y-100457000D01* +X81933115Y-100457000D01* +X81917876Y-100461475D01* +X81916671Y-100462865D01* +X81915000Y-100470548D01* +X81915000Y-101230385D01* +X81407000Y-101230385D01* +X81407000Y-100475115D01* +X81402525Y-100459876D01* +X81401135Y-100458671D01* +X81393452Y-100457000D01* +X80696115Y-100457000D01* +X80680876Y-100461475D01* +X80679671Y-100462865D01* +X80678000Y-100470548D01* +X80678000Y-100549266D01* +X72350890Y-100549266D01* +X71795362Y-99105255D01* +X71792274Y-99096219D01* +X71792035Y-99095420D01* +X71131716Y-96893766D01* +X72131900Y-96893766D01* +X72132237Y-96900282D01* +X72141975Y-96994132D01* +X72144868Y-97007528D01* +X72195388Y-97158953D01* +X72201553Y-97172115D01* +X72285326Y-97307492D01* +X72294360Y-97318890D01* +X72407029Y-97431363D01* +X72418440Y-97440375D01* +X72553963Y-97523912D01* +X72567141Y-97530056D01* +X72718666Y-97580315D01* +X72732032Y-97583181D01* +X72824670Y-97592672D01* +X72831085Y-97593000D01* +X72905285Y-97593000D01* +X72920524Y-97588525D01* +X72921729Y-97587135D01* +X72923400Y-97579452D01* +X72923400Y-97574885D01* +X73431400Y-97574885D01* +X73435875Y-97590124D01* +X73437265Y-97591329D01* +X73444948Y-97593000D01* +X73523666Y-97593000D01* +X73530182Y-97592663D01* +X73624032Y-97582925D01* +X73637428Y-97580032D01* +X73788853Y-97529512D01* +X73802015Y-97523347D01* +X73937392Y-97439574D01* +X73948794Y-97430536D01* +X73950467Y-97428861D01* +X73951893Y-97428081D01* +X73954527Y-97425993D01* +X73954884Y-97426444D01* +X74012749Y-97394781D01* +X74083569Y-97399784D01* +X74128654Y-97428701D01* +X74130493Y-97430536D01* +X74136897Y-97436929D01* +X74284980Y-97528209D01* +X74450091Y-97582974D01* +X74456927Y-97583674D01* +X74456930Y-97583675D01* +X74504270Y-97588525D01* +X74552828Y-97593500D01* +X75251972Y-97593500D01* +X75255218Y-97593163D01* +X75255222Y-97593163D01* +X75349135Y-97583419D01* +X75349139Y-97583418D01* +X75355993Y-97582707D01* +X75362529Y-97580526D01* +X75362531Y-97580526D01* +X75495295Y-97536232D01* +X75521007Y-97527654D01* +X75668931Y-97436116D01* +X75669227Y-97435819D01* +X75732411Y-97410250D01* +X75802175Y-97423426D01* +X75833952Y-97446539D01* +X75955162Y-97567749D01* +X75959671Y-97570906D01* +X75959673Y-97570908D01* +X75991938Y-97593500D01* +X76135546Y-97694056D01* +X76335124Y-97787120D01* +X76547829Y-97844115D01* +X76767200Y-97863307D01* +X76986571Y-97844115D01* +X77199276Y-97787120D01* +X77398854Y-97694056D01* +X77542462Y-97593500D01* +X77574727Y-97570908D01* +X77574729Y-97570906D01* +X77579238Y-97567749D01* +X77734949Y-97412038D01* +X77743530Y-97399784D01* +X77858099Y-97236162D01* +X77858100Y-97236160D01* +X77861256Y-97231653D01* +X77863579Y-97226671D01* +X77863582Y-97226666D01* +X77951995Y-97037061D01* +X77954320Y-97032076D01* +X78011315Y-96819371D01* +X78030507Y-96600000D01* +X80383893Y-96600000D01* +X80403085Y-96819371D01* +X80460080Y-97032076D01* +X80462405Y-97037061D01* +X80550818Y-97226666D01* +X80550821Y-97226671D01* +X80553144Y-97231653D01* +X80556300Y-97236160D01* +X80556301Y-97236162D01* +X80670871Y-97399784D01* +X80679451Y-97412038D01* +X80819786Y-97552373D01* +X80853812Y-97614685D01* +X80848747Y-97685500D01* +X80833683Y-97712258D01* +X80834071Y-97712497D01* +X80747364Y-97853162D01* +X80742791Y-97860580D01* +X80688026Y-98025691D01* +X80677500Y-98128428D01* +X80677500Y-98827572D01* +X80688293Y-98931593D01* +X80743346Y-99096607D01* +X80834884Y-99244531D01* +X80840065Y-99249703D01* +X80842139Y-99251773D01* +X80843105Y-99253538D01* +X80844613Y-99255441D01* +X80844287Y-99255699D01* +X80876219Y-99314054D01* +X80871218Y-99384875D01* +X80842292Y-99429970D01* +X80839636Y-99432631D01* +X80830625Y-99444040D01* +X80747088Y-99579563D01* +X80740944Y-99592741D01* +X80690685Y-99744266D01* +X80687819Y-99757632D01* +X80678328Y-99850270D01* +X80678000Y-99856685D01* +X80678000Y-99930885D01* +X80682475Y-99946124D01* +X80683865Y-99947329D01* +X80691548Y-99949000D01* +X82625885Y-99949000D01* +X82641124Y-99944525D01* +X82642329Y-99943135D01* +X82644000Y-99935452D01* +X82644000Y-99856734D01* +X82643663Y-99850218D01* +X82633925Y-99756368D01* +X82631032Y-99742972D01* +X82580512Y-99591547D01* +X82574347Y-99578385D01* +X82490574Y-99443008D01* +X82481536Y-99431606D01* +X82479861Y-99429933D01* +X82479081Y-99428507D01* +X82476993Y-99425873D01* +X82477444Y-99425516D01* +X82445781Y-99367651D01* +X82450784Y-99296831D01* +X82479701Y-99251746D01* +X82482756Y-99248685D01* +X82487929Y-99243503D01* +X82558948Y-99128290D01* +X82575369Y-99101650D01* +X82575370Y-99101648D01* +X82579209Y-99095420D01* +X82633974Y-98930309D01* +X82644500Y-98827572D01* +X82644500Y-98128428D01* +X82633707Y-98024407D01* +X82578654Y-97859393D01* +X82487116Y-97711469D01* +X82481934Y-97706296D01* +X82480371Y-97704324D01* +X82453734Y-97638514D01* +X82466905Y-97568750D01* +X82490022Y-97536965D01* +X82614949Y-97412038D01* +X82623530Y-97399784D01* +X82738099Y-97236162D01* +X82738100Y-97236160D01* +X82741256Y-97231653D01* +X82743579Y-97226671D01* +X82743582Y-97226666D01* +X82831995Y-97037061D01* +X82834320Y-97032076D01* +X82891315Y-96819371D01* +X82910507Y-96600000D01* +X82891315Y-96380629D01* +X82834320Y-96167924D01* +X82779776Y-96050954D01* +X82743582Y-95973334D01* +X82743579Y-95973329D01* +X82741256Y-95968347D01* +X82702880Y-95913540D01* +X82618108Y-95792473D01* +X82618106Y-95792470D01* +X82614949Y-95787962D01* +X82459238Y-95632251D01* +X82454126Y-95628671D01* +X82379959Y-95576739D01* +X82278854Y-95505944D01* +X82079276Y-95412880D01* +X81866571Y-95355885D01* +X81647200Y-95336693D01* +X81427829Y-95355885D01* +X81215124Y-95412880D01* +X81172457Y-95432776D01* +X81020534Y-95503618D01* +X81020529Y-95503621D01* +X81015547Y-95505944D01* +X81011040Y-95509100D01* +X81011038Y-95509101D01* +X80839673Y-95629092D01* +X80839670Y-95629094D01* +X80835162Y-95632251D01* +X80679451Y-95787962D01* +X80676294Y-95792470D01* +X80676292Y-95792473D01* +X80591520Y-95913540D01* +X80553144Y-95968347D01* +X80550821Y-95973329D01* +X80550818Y-95973334D01* +X80514624Y-96050954D01* +X80460080Y-96167924D01* +X80403085Y-96380629D01* +X80383893Y-96600000D01* +X78030507Y-96600000D01* +X78011315Y-96380629D01* +X77954320Y-96167924D01* +X77899776Y-96050954D01* +X77863582Y-95973334D01* +X77863579Y-95973329D01* +X77861256Y-95968347D01* +X77822880Y-95913540D01* +X77738108Y-95792473D01* +X77738106Y-95792470D01* +X77734949Y-95787962D01* +X77579238Y-95632251D01* +X77574126Y-95628671D01* +X77499959Y-95576739D01* +X77398854Y-95505944D01* +X77199276Y-95412880D01* +X76986571Y-95355885D01* +X76767200Y-95336693D01* +X76547829Y-95355885D01* +X76335124Y-95412880D01* +X76292457Y-95432776D01* +X76140534Y-95503618D01* +X76140529Y-95503621D01* +X76135547Y-95505944D01* +X76131040Y-95509100D01* +X76131038Y-95509101D01* +X75959673Y-95629092D01* +X75959670Y-95629094D01* +X75955162Y-95632251D01* +X75822738Y-95764675D01* +X75760426Y-95798701D01* +X75689611Y-95793636D01* +X75667537Y-95782845D01* +X75519820Y-95691791D01* +X75354709Y-95637026D01* +X75347873Y-95636326D01* +X75347870Y-95636325D01* +X75296374Y-95631049D01* +X75251972Y-95626500D01* +X74552828Y-95626500D01* +X74549582Y-95626837D01* +X74549578Y-95626837D01* +X74455665Y-95636581D01* +X74455661Y-95636582D01* +X74448807Y-95637293D01* +X74442271Y-95639474D01* +X74442269Y-95639474D01* +X74364617Y-95665381D01* +X74283793Y-95692346D01* +X74135869Y-95783884D01* +X74130697Y-95789065D01* +X74128627Y-95791139D01* +X74126862Y-95792105D01* +X74124959Y-95793613D01* +X74124701Y-95793287D01* +X74066346Y-95825219D01* +X73995525Y-95820218D01* +X73950430Y-95791292D01* +X73947769Y-95788636D01* +X73936360Y-95779625D01* +X73800837Y-95696088D01* +X73787659Y-95689944D01* +X73636134Y-95639685D01* +X73622768Y-95636819D01* +X73530130Y-95627328D01* +X73523715Y-95627000D01* +X73449515Y-95627000D01* +X73434276Y-95631475D01* +X73433071Y-95632865D01* +X73431400Y-95640548D01* +X73431400Y-97574885D01* +X72923400Y-97574885D01* +X72923400Y-96882115D01* +X72918925Y-96866876D01* +X72917535Y-96865671D01* +X72909852Y-96864000D01* +X72150015Y-96864000D01* +X72134776Y-96868475D01* +X72133571Y-96869865D01* +X72131900Y-96877548D01* +X72131900Y-96893766D01* +X71131716Y-96893766D01* +X70964996Y-96337885D01* +X72131900Y-96337885D01* +X72136375Y-96353124D01* +X72137765Y-96354329D01* +X72145448Y-96356000D01* +X72905285Y-96356000D01* +X72920524Y-96351525D01* +X72921729Y-96350135D01* +X72923400Y-96342452D01* +X72923400Y-95645115D01* +X72918925Y-95629876D01* +X72917535Y-95628671D01* +X72909852Y-95627000D01* +X72831134Y-95627000D01* +X72824618Y-95627337D01* +X72730768Y-95637075D01* +X72717372Y-95639968D01* +X72565947Y-95690488D01* +X72552785Y-95696653D01* +X72417408Y-95780426D01* +X72406010Y-95789460D01* +X72293537Y-95902129D01* +X72284525Y-95913540D01* +X72200988Y-96049063D01* +X72194844Y-96062241D01* +X72144585Y-96213766D01* +X72141719Y-96227132D01* +X72132228Y-96319770D01* +X72131900Y-96326185D01* +X72131900Y-96337885D01* +X70964996Y-96337885D01* +X70878373Y-96049063D01* +X70791778Y-95760335D01* +X70789402Y-95751176D01* +X70076229Y-92505142D01* +X70040624Y-92343085D01* +X70038283Y-92328264D01* +X70024453Y-92186231D01* +X69927479Y-91190366D01* +X77566700Y-91190366D01* +X77567037Y-91196882D01* +X77576775Y-91290732D01* +X77579668Y-91304128D01* +X77630188Y-91455553D01* +X77636353Y-91468715D01* +X77720126Y-91604092D01* +X77729160Y-91615490D01* +X77841829Y-91727963D01* +X77853240Y-91736975D01* +X77988763Y-91820512D01* +X78001941Y-91826656D01* +X78153466Y-91876915D01* +X78166832Y-91879781D01* +X78259470Y-91889272D01* +X78265885Y-91889600D01* +X78290085Y-91889600D01* +X78305324Y-91885125D01* +X78306529Y-91883735D01* +X78308200Y-91876052D01* +X78308200Y-91178715D01* +X78303725Y-91163476D01* +X78302335Y-91162271D01* +X78294652Y-91160600D01* +X77584815Y-91160600D01* +X77569576Y-91165075D01* +X77568371Y-91166465D01* +X77566700Y-91174148D01* +X77566700Y-91190366D01* +X69927479Y-91190366D01* +X69920365Y-91117310D01* +X69933671Y-91047572D01* +X69982568Y-90996098D01* +X70051532Y-90979231D01* +X70108772Y-90995980D01* +X70111941Y-90997810D01* +X70117279Y-91001688D01* +X70123306Y-91004371D01* +X70123307Y-91004372D01* +X70123310Y-91004373D01* +X70296544Y-91081502D01* +X70392515Y-91101901D01* +X70482028Y-91120928D01* +X70482032Y-91120928D01* +X70488485Y-91122300D01* +X70684715Y-91122300D01* +X70691168Y-91120928D01* +X70691172Y-91120928D01* +X70780685Y-91101901D01* +X70876656Y-91081502D01* +X70952864Y-91047572D01* +X71049891Y-91004373D01* +X71049893Y-91004372D01* +X71055921Y-91001688D01* +X71063615Y-90996098D01* +X71209330Y-90890230D01* +X71209332Y-90890228D01* +X71214674Y-90886347D01* +X71234806Y-90863988D01* +X71295249Y-90826750D01* +X71328440Y-90822300D01* +X76966033Y-90822300D01* +X76977216Y-90822827D01* +X76984709Y-90824502D01* +X76992635Y-90824253D01* +X76992636Y-90824253D01* +X77052786Y-90822362D01* +X77056745Y-90822300D01* +X77084656Y-90822300D01* +X77088591Y-90821803D01* +X77088656Y-90821795D01* +X77100493Y-90820862D01* +X77132751Y-90819848D01* +X77136770Y-90819722D01* +X77144689Y-90819473D01* +X77164143Y-90813821D01* +X77183500Y-90809813D01* +X77195730Y-90808268D01* +X77195731Y-90808268D01* +X77203597Y-90807274D01* +X77210968Y-90804355D01* +X77210970Y-90804355D01* +X77244712Y-90790996D01* +X77255942Y-90787151D01* +X77290783Y-90777029D01* +X77290784Y-90777029D01* +X77298393Y-90774818D01* +X77305212Y-90770785D01* +X77305217Y-90770783D01* +X77315828Y-90764507D01* +X77333576Y-90755812D01* +X77352417Y-90748352D01* +X77388187Y-90722364D01* +X77398107Y-90715848D01* +X77429335Y-90697380D01* +X77429338Y-90697378D01* +X77436162Y-90693342D01* +X77446718Y-90682786D01* +X77509030Y-90648760D01* +X77562596Y-90648760D01* +X77580248Y-90652600D01* +X78690200Y-90652600D01* +X78758321Y-90672602D01* +X78804814Y-90726258D01* +X78816200Y-90778600D01* +X78816200Y-91871485D01* +X78820675Y-91886724D01* +X78822065Y-91887929D01* +X78829748Y-91889600D01* +X78858466Y-91889600D01* +X78864982Y-91889263D01* +X78958832Y-91879525D01* +X78972228Y-91876632D01* +X79123653Y-91826112D01* +X79136815Y-91819947D01* +X79272192Y-91736174D01* +X79283590Y-91727140D01* +X79385093Y-91625460D01* +X79447376Y-91591381D01* +X79518196Y-91596384D01* +X79563283Y-91625304D01* +X79671697Y-91733529D01* +X79819780Y-91824809D01* +X79984891Y-91879574D01* +X79991727Y-91880274D01* +X79991730Y-91880275D01* +X80039070Y-91885125D01* +X80087628Y-91890100D01* +X80686772Y-91890100D01* +X80690018Y-91889763D01* +X80690022Y-91889763D01* +X80783935Y-91880019D01* +X80783939Y-91880018D01* +X80790793Y-91879307D01* +X80797329Y-91877126D01* +X80797331Y-91877126D01* +X80930095Y-91832832D01* +X80955807Y-91824254D01* +X81103731Y-91732716D01* +X81109297Y-91727140D01* +X81221458Y-91614784D01* +X81221462Y-91614779D01* +X81226629Y-91609603D01* +X81317909Y-91461520D01* +X81372674Y-91296409D01* +X81383200Y-91193672D01* +X81383200Y-90619528D01* +X81382863Y-90616278D01* +X81373119Y-90522365D01* +X81373118Y-90522361D01* +X81372407Y-90515507D01* +X81317354Y-90350493D01* +X81225816Y-90202569D01* +X81220634Y-90197396D01* +X81220630Y-90197391D01* +X81116071Y-90093015D01* +X81081991Y-90030733D01* +X81079088Y-90003842D01* +X81079088Y-89166936D01* +X81099090Y-89098815D01* +X81111446Y-89082633D01* +X81184628Y-89001356D01* +X81280115Y-88835968D01* +X81339130Y-88654340D01* +X81343996Y-88608048D01* +X81358402Y-88470977D01* +X81359092Y-88464412D01* +X81358261Y-88456509D01* +X81339820Y-88281047D01* +X81339820Y-88281045D01* +X81339130Y-88274484D01* +X81280115Y-88092856D01* +X81249656Y-88040099D01* +X81232918Y-87971105D01* +X81256138Y-87904013D01* +X81311945Y-87860126D01* +X81358775Y-87851100D01* +X83553274Y-87851100D01* +X83621395Y-87871102D01* +X83642369Y-87888004D01* +X84450995Y-88696629D01* +X84485020Y-88758942D01* +X84487900Y-88785725D01* +X84487900Y-106211757D01* +X84487163Y-106225364D01* +X84483076Y-106262988D01* +X84483613Y-106269123D01* +X84487450Y-106312988D01* +X84487779Y-106317814D01* +X84487900Y-106320286D01* +X84487900Y-106323369D01* +X84488201Y-106326437D01* +X84492090Y-106366106D01* +X84492212Y-106367419D01* +X84500313Y-106460013D01* +X84501800Y-106465132D01* +X84502320Y-106470433D01* +X84529191Y-106559434D01* +X84529526Y-106560567D01* +X84548571Y-106626117D01* +X84555491Y-106649936D01* +X84557944Y-106654668D01* +X84559484Y-106659769D01* +X84562378Y-106665212D01* +X84603131Y-106741860D01* +X84603743Y-106743026D01* +X84646508Y-106825526D01* +X84649831Y-106829689D01* +X84652334Y-106834396D01* +X84711155Y-106906518D01* +X84711846Y-106907374D01* +X84743138Y-106946573D01* +X84745642Y-106949077D01* +X84746284Y-106949795D01* +X84749985Y-106954128D01* +X84777335Y-106987662D01* +X84782082Y-106991589D01* +X84782084Y-106991591D01* +X84812662Y-107016887D01* +X84821442Y-107024877D01* +X86136545Y-108339979D01* +X86145665Y-108350144D01* +X86146811Y-108351570D01* +X86173892Y-108417199D01* +X86161193Y-108487050D01* +X86112745Y-108538948D01* +X86048596Y-108556500D01* +X85977729Y-108556500D01* +X85975593Y-108556646D01* +X85975582Y-108556646D01* +X85767452Y-108570835D01* +X85767446Y-108570836D01* +X85763175Y-108571127D01* +X85758980Y-108571996D01* +X85758978Y-108571996D01* +X85622417Y-108600276D01* +X85481658Y-108629426D01* +X85210657Y-108725393D01* +X84955188Y-108857250D01* +X84951687Y-108859711D01* +X84951683Y-108859713D01* +X84941594Y-108866804D01* +X84719977Y-109022559D01* +X84707580Y-109034079D01* +X84514295Y-109213691D01* +X84509378Y-109218260D01* +X84327287Y-109440732D01* +X84177073Y-109685858D01* +X84175347Y-109689791D01* +X84175346Y-109689792D01* +X84074939Y-109918526D01* +X84061517Y-109949102D01* +X84060342Y-109953229D01* +X84060341Y-109953230D01* +X84042187Y-110016960D01* +X83982756Y-110225594D01* +X83942249Y-110510216D01* +X83942227Y-110514505D01* +X83942226Y-110514512D01* +X83940772Y-110792094D01* +X83940743Y-110797703D01* +X83978268Y-111082734D01* +X84054129Y-111360036D01* +X84055813Y-111363984D01* +X84161696Y-111612221D01* +X84166923Y-111624476D01* +X84180882Y-111647799D01* +X84282039Y-111816820D01* +X84314561Y-111871161D01* +X84494313Y-112095528D01* +X84702851Y-112293423D01* +X84936317Y-112461186D01* +X84940112Y-112463195D01* +X84940113Y-112463196D01* +X84961869Y-112474715D01* +X85190392Y-112595712D01* +X85460373Y-112694511D01* +X85741264Y-112755755D01* +X85769841Y-112758004D01* +X85964282Y-112773307D01* +X85964291Y-112773307D01* +X85966739Y-112773500D01* +X86122271Y-112773500D01* +X86124407Y-112773354D01* +X86124418Y-112773354D01* +X86332548Y-112759165D01* +X86332554Y-112759164D01* +X86336825Y-112758873D01* +X86341020Y-112758004D01* +X86341022Y-112758004D01* +X86482178Y-112728772D01* +X86618342Y-112700574D01* +X86889343Y-112604607D01* +X87144812Y-112472750D01* +X87148313Y-112470289D01* +X87148317Y-112470287D01* +X87353862Y-112325827D01* +X87380023Y-112307441D01* +X87590622Y-112111740D01* +X87772713Y-111889268D01* +X87922927Y-111644142D01* +X87925787Y-111637628D01* +X88036757Y-111384830D01* +X88038483Y-111380898D01* +X88117244Y-111104406D01* +X88157751Y-110819784D01* +X88157845Y-110801951D01* +X88159235Y-110536583D01* +X88159235Y-110536576D01* +X88159257Y-110532297D01* +X88146178Y-110432948D01* +X88122292Y-110251522D01* +X88121732Y-110247266D01* +X88109721Y-110203359D01* +X88085989Y-110116611D01* +X88045871Y-109969964D01* +X88030139Y-109933081D01* +X87934763Y-109709476D01* +X87934761Y-109709472D01* +X87933077Y-109705524D01* +X87850691Y-109567867D01* +X87787643Y-109462521D01* +X87787640Y-109462517D01* +X87785439Y-109458839D01* +X87605687Y-109234472D01* +X87397149Y-109036577D01* +X87217410Y-108907421D01* +X87173764Y-108851428D01* +X87167318Y-108780724D01* +X87200121Y-108717760D01* +X87261758Y-108682526D01* +X87290938Y-108679100D01* +X124640261Y-108679100D01* +X124708382Y-108699102D01* +X124754875Y-108752758D01* +X124764979Y-108823032D01* +X124735485Y-108887612D01* +X124712712Y-108908187D01* +X124549977Y-109022559D01* +X124537580Y-109034079D01* +X124344295Y-109213691D01* +X124339378Y-109218260D01* +X124157287Y-109440732D01* +X124007073Y-109685858D01* +X124005347Y-109689791D01* +X124005346Y-109689792D01* +X123904939Y-109918526D01* +X123891517Y-109949102D01* +X123890342Y-109953229D01* +X123890341Y-109953230D01* +X123872187Y-110016960D01* +X123812756Y-110225594D01* +X123772249Y-110510216D01* +X123772227Y-110514505D01* +X123772226Y-110514512D01* +X123770772Y-110792094D01* +X123770743Y-110797703D01* +X123808268Y-111082734D01* +X123884129Y-111360036D01* +X123885813Y-111363984D01* +X123991696Y-111612221D01* +X123996923Y-111624476D01* +X124010882Y-111647799D01* +X124112039Y-111816820D01* +X124144561Y-111871161D01* +X124324313Y-112095528D01* +X124532851Y-112293423D01* +X124766317Y-112461186D01* +X124770112Y-112463195D01* +X124770113Y-112463196D01* +X124791869Y-112474715D01* +X125020392Y-112595712D01* +X125290373Y-112694511D01* +X125571264Y-112755755D01* +X125599841Y-112758004D01* +X125794282Y-112773307D01* +X125794291Y-112773307D01* +X125796739Y-112773500D01* +X125952271Y-112773500D01* +X125954407Y-112773354D01* +X125954418Y-112773354D01* +X126162548Y-112759165D01* +X126162554Y-112759164D01* +X126166825Y-112758873D01* +X126171020Y-112758004D01* +X126171022Y-112758004D01* +X126312178Y-112728772D01* +X126448342Y-112700574D01* +X126719343Y-112604607D01* +X126974812Y-112472750D01* +X126978313Y-112470289D01* +X126978317Y-112470287D01* +X127183862Y-112325827D01* +X127210023Y-112307441D01* +X127420622Y-112111740D01* +X127602713Y-111889268D01* +X127752927Y-111644142D01* +X127755787Y-111637628D01* +X127866757Y-111384830D01* +X127868483Y-111380898D01* +X127947244Y-111104406D01* +X127987751Y-110819784D01* +X127987845Y-110801951D01* +X127989235Y-110536583D01* +X127989235Y-110536576D01* +X127989257Y-110532297D01* +X127976178Y-110432948D01* +X127952292Y-110251522D01* +X127951732Y-110247266D01* +X127939721Y-110203359D01* +X127915989Y-110116611D01* +X127875871Y-109969964D01* +X127860139Y-109933081D01* +X127764763Y-109709476D01* +X127764761Y-109709472D01* +X127763077Y-109705524D01* +X127680691Y-109567867D01* +X127617643Y-109462521D01* +X127617640Y-109462517D01* +X127615439Y-109458839D01* +X127435687Y-109234472D01* +X127227149Y-109036577D01* +X126993683Y-108868814D01* +X126971843Y-108857250D01* +X126827310Y-108780724D01* +X126739608Y-108734288D01* +X126505239Y-108648521D01* +X126473658Y-108636964D01* +X126473656Y-108636963D01* +X126469627Y-108635489D01* +X126188736Y-108574245D01* +X126157685Y-108571801D01* +X125965718Y-108556693D01* +X125965709Y-108556693D01* +X125963261Y-108556500D01* +X125812525Y-108556500D01* +X125744404Y-108536498D01* +X125697911Y-108482842D01* +X125687807Y-108412568D01* +X125717301Y-108347988D01* +X125723430Y-108341405D01* +X129345779Y-104719055D01* +X129355922Y-104709953D01* +X129380618Y-104690097D01* +X129385425Y-104686232D01* +X129417692Y-104647778D01* +X129420873Y-104644130D01* +X129422517Y-104642317D01* +X129424709Y-104640125D01* +X129451980Y-104606924D01* +X129452762Y-104605982D01* +X129508593Y-104539447D01* +X129508595Y-104539444D01* +X129512554Y-104534726D01* +X129515123Y-104530053D01* +X129518503Y-104525938D01* +X129562428Y-104444020D01* +X129563057Y-104442862D01* +X129604865Y-104366812D01* +X129604865Y-104366811D01* +X129607833Y-104361413D01* +X129609444Y-104356335D01* +X129611963Y-104351637D01* +X129639153Y-104262702D01* +X129639536Y-104261472D01* +X129665771Y-104178770D01* +X129667635Y-104172894D01* +X129668228Y-104167603D01* +X129669788Y-104162502D01* +X129679195Y-104069889D01* +X129679315Y-104068769D01* +X129684900Y-104018973D01* +X129684900Y-104015444D01* +X129684955Y-104014461D01* +X129685404Y-104008756D01* +X129689152Y-103971864D01* +X129689152Y-103971861D01* +X129689774Y-103965737D01* +X129685459Y-103920088D01* +X129684900Y-103908231D01* +X129684900Y-90458534D01* +X131991500Y-90458534D01* +X131998255Y-90520716D01* +X132049385Y-90657105D01* +X132136739Y-90773661D01* +X132253295Y-90861015D01* +X132389684Y-90912145D01* +X132451866Y-90918900D01* +X134248134Y-90918900D01* +X134310316Y-90912145D01* +X134446705Y-90861015D01* +X134563261Y-90773661D01* +X134650615Y-90657105D01* +X134701745Y-90520716D01* +X134708500Y-90458534D01* +X134708500Y-90455069D01* +X137275201Y-90455069D01* +X137275571Y-90461890D01* +X137281095Y-90512752D01* +X137284721Y-90528004D01* +X137329876Y-90648454D01* +X137338414Y-90664049D01* +X137414915Y-90766124D01* +X137427476Y-90778685D01* +X137529551Y-90855186D01* +X137545146Y-90863724D01* +X137665594Y-90908878D01* +X137680849Y-90912505D01* +X137731714Y-90918031D01* +X137738528Y-90918400D01* +X138361085Y-90918400D01* +X138376324Y-90913925D01* +X138377529Y-90912535D01* +X138379200Y-90904852D01* +X138379200Y-90900284D01* +X138887200Y-90900284D01* +X138891675Y-90915523D01* +X138893065Y-90916728D01* +X138900748Y-90918399D01* +X139527869Y-90918399D01* +X139534690Y-90918029D01* +X139585552Y-90912505D01* +X139600804Y-90908879D01* +X139721254Y-90863724D01* +X139736849Y-90855186D01* +X139838924Y-90778685D01* +X139851485Y-90766124D01* +X139927986Y-90664049D01* +X139936524Y-90648454D01* +X139981678Y-90528006D01* +X139985305Y-90512751D01* +X139990831Y-90461886D01* +X139991200Y-90455072D01* +X139991200Y-89832515D01* +X139986725Y-89817276D01* +X139985335Y-89816071D01* +X139977652Y-89814400D01* +X138905315Y-89814400D01* +X138890076Y-89818875D01* +X138888871Y-89820265D01* +X138887200Y-89827948D01* +X138887200Y-90900284D01* +X138379200Y-90900284D01* +X138379200Y-89832515D01* +X138374725Y-89817276D01* +X138373335Y-89816071D01* +X138365652Y-89814400D01* +X137293316Y-89814400D01* +X137278077Y-89818875D01* +X137276872Y-89820265D01* +X137275201Y-89827948D01* +X137275201Y-90455069D01* +X134708500Y-90455069D01* +X134708500Y-89288285D01* +X137275200Y-89288285D01* +X137279675Y-89303524D01* +X137281065Y-89304729D01* +X137288748Y-89306400D01* +X138361085Y-89306400D01* +X138376324Y-89301925D01* +X138377529Y-89300535D01* +X138379200Y-89292852D01* +X138379200Y-89288285D01* +X138887200Y-89288285D01* +X138891675Y-89303524D01* +X138893065Y-89304729D01* +X138900748Y-89306400D01* +X139973084Y-89306400D01* +X139988323Y-89301925D01* +X139989528Y-89300535D01* +X139991199Y-89292852D01* +X139991199Y-88665731D01* +X139990829Y-88658910D01* +X139985305Y-88608048D01* +X139981679Y-88592796D01* +X139936524Y-88472346D01* +X139927986Y-88456751D01* +X139851485Y-88354676D01* +X139838924Y-88342115D01* +X139736849Y-88265614D01* +X139721254Y-88257076D01* +X139600806Y-88211922D01* +X139585551Y-88208295D01* +X139534686Y-88202769D01* +X139527872Y-88202400D01* +X138905315Y-88202400D01* +X138890076Y-88206875D01* +X138888871Y-88208265D01* +X138887200Y-88215948D01* +X138887200Y-89288285D01* +X138379200Y-89288285D01* +X138379200Y-88220516D01* +X138374725Y-88205277D01* +X138373335Y-88204072D01* +X138365652Y-88202401D01* +X137738531Y-88202401D01* +X137731710Y-88202771D01* +X137680848Y-88208295D01* +X137665596Y-88211921D01* +X137545146Y-88257076D01* +X137529551Y-88265614D01* +X137427476Y-88342115D01* +X137414915Y-88354676D01* +X137338414Y-88456751D01* +X137329876Y-88472346D01* +X137284722Y-88592794D01* +X137281095Y-88608049D01* +X137275569Y-88658914D01* +X137275200Y-88665728D01* +X137275200Y-89288285D01* +X134708500Y-89288285D01* +X134708500Y-88662266D01* +X134701745Y-88600084D01* +X134650615Y-88463695D01* +X134563261Y-88347139D01* +X134446705Y-88259785D01* +X134310316Y-88208655D01* +X134248134Y-88201900D01* +X132451866Y-88201900D01* +X132389684Y-88208655D01* +X132253295Y-88259785D01* +X132136739Y-88347139D01* +X132049385Y-88463695D01* +X131998255Y-88600084D01* +X131991500Y-88662266D01* +X131991500Y-90458534D01* +X129684900Y-90458534D01* +X129684900Y-87744325D01* +X129704902Y-87676204D01* +X129721805Y-87655230D01* +X131430065Y-85946969D01* +X131478658Y-85916751D01* +X131516799Y-85903804D01* +X131559510Y-85879885D01* +X131594115Y-85860505D01* +X131694551Y-85804258D01* +X131851186Y-85673986D01* +X131981458Y-85517351D01* +X132058060Y-85380569D01* +X132078180Y-85344642D01* +X132078181Y-85344640D01* +X132081004Y-85339599D01* +X132082860Y-85334132D01* +X132082862Y-85334127D01* +X132144634Y-85152152D01* +X132144635Y-85152147D01* +X132146490Y-85146683D01* +X132175723Y-84945063D01* +X132177249Y-84886800D01* +X132163062Y-84732402D01* +X132159137Y-84689680D01* +X132159136Y-84689677D01* +X132158608Y-84683926D01* +X132157040Y-84678366D01* +X132104875Y-84493406D01* +X132104874Y-84493404D01* +X132103307Y-84487847D01* +X132089959Y-84460778D01* +X132015756Y-84310310D01* +X132013201Y-84305129D01* +X132000124Y-84287616D01* +X131894758Y-84146515D01* +X131894758Y-84146514D01* +X131891305Y-84141891D01* +X131771578Y-84031216D01* +X131745943Y-84007519D01* +X131745940Y-84007517D01* +X131741703Y-84003600D01* +X131631097Y-83933813D01* +X131574288Y-83897969D01* +X131574283Y-83897967D01* +X131569404Y-83894888D01* +X131380180Y-83819395D01* +X131180366Y-83779649D01* +X131174592Y-83779573D01* +X131174588Y-83779573D01* +X131071452Y-83778224D01* +X130976655Y-83776983D01* +X130970958Y-83777962D01* +X130970957Y-83777962D01* +X130795418Y-83808125D01* +X130775870Y-83811484D01* +X130584734Y-83881998D01* +X130579773Y-83884950D01* +X130579772Y-83884950D01* +X130505718Y-83929008D01* +X130409649Y-83986163D01* +X130256478Y-84120490D01* +X130252911Y-84125015D01* +X130252906Y-84125020D01* +X130200546Y-84191439D01* +X130130351Y-84280481D01* +X130127662Y-84285592D01* +X130127660Y-84285595D01* +X130095279Y-84347142D01* +X130035492Y-84460778D01* +X130031978Y-84472096D01* +X130000741Y-84523824D01* +X128007021Y-86517545D01* +X127996878Y-86526647D01* +X127967375Y-86550368D01* +X127963408Y-86555096D01* +X127935109Y-86588821D01* +X127931928Y-86592469D01* +X127930285Y-86594281D01* +X127928091Y-86596475D01* +X127900758Y-86629749D01* +X127900096Y-86630547D01* +X127840246Y-86701874D01* +X127837678Y-86706544D01* +X127834297Y-86710661D01* +X127818287Y-86740520D01* +X127790423Y-86792486D01* +X127789794Y-86793645D01* +X127747938Y-86869781D01* +X127747935Y-86869789D01* +X127744967Y-86875187D01* +X127743355Y-86880269D01* +X127740838Y-86884963D01* +X127713638Y-86973931D01* +X127713318Y-86974959D01* +X127685165Y-87063706D01* +X127684571Y-87069002D01* +X127683013Y-87074098D01* +X127678117Y-87122300D01* +X127673618Y-87166587D01* +X127673489Y-87167793D01* +X127667900Y-87217627D01* +X127667900Y-87221154D01* +X127667845Y-87222139D01* +X127667398Y-87227819D01* +X127663026Y-87270862D01* +X127663606Y-87276993D01* +X127667341Y-87316509D01* +X127667900Y-87328367D01* +X127667900Y-103492276D01* +X127647898Y-103560397D01* +X127630995Y-103581371D01* +X125993155Y-105219211D01* +X125930843Y-105253237D01* +X125860028Y-105248172D01* +X125803192Y-105205625D01* +X125779545Y-105143829D01* +X125779740Y-105140223D01* +X125777688Y-105131481D01* +X125776941Y-105123048D01* +X125776450Y-105111934D01* +X125776450Y-73135734D01* +X126251100Y-73135734D01* +X126257855Y-73197916D01* +X126308985Y-73334305D01* +X126396339Y-73450861D01* +X126512895Y-73538215D01* +X126649284Y-73589345D01* +X126711466Y-73596100D01* +X128507734Y-73596100D01* +X128569916Y-73589345D01* +X128706305Y-73538215D01* +X128822861Y-73450861D01* +X128910215Y-73334305D01* +X128961345Y-73197916D01* +X128968100Y-73135734D01* +X128968100Y-71339466D01* +X128961345Y-71277284D01* +X128910215Y-71140895D01* +X128822861Y-71024339D01* +X128706305Y-70936985D01* +X128569916Y-70885855D01* +X128507734Y-70879100D01* +X126711466Y-70879100D01* +X126649284Y-70885855D01* +X126512895Y-70936985D01* +X126396339Y-71024339D01* +X126308985Y-71140895D01* +X126257855Y-71277284D01* +X126251100Y-71339466D01* +X126251100Y-73135734D01* +X125776450Y-73135734D01* +X125776450Y-68774636D01* +X125777351Y-68759596D01* +X125780475Y-68733608D01* +X125781547Y-68724694D01* +X125770772Y-68659917D01* +X125770343Y-68657149D01* +X125762303Y-68601000D01* +X125762302Y-68600998D01* +X125761030Y-68592113D01* +X125744849Y-68556525D01* +X125739920Y-68543928D01* +X125717027Y-68474682D01* +X125604957Y-68135706D01* +X125603120Y-68128874D01* +X125602733Y-68122797D01* +X125599672Y-68114360D01* +X125599671Y-68114357D01* +X125580352Y-68061116D01* +X125579164Y-68057689D01* +X125572580Y-68037773D01* +X125572574Y-68037758D01* +X125571171Y-68033515D01* +X125569177Y-68029505D01* +X125567696Y-68025908D01* +X125565770Y-68020932D01* +X125556109Y-67994309D01* +X125553049Y-67985875D01* +X125542098Y-67970936D01* +X125530904Y-67952557D01* +X125526728Y-67944161D01* +X125522731Y-67936124D01* +X125497849Y-67909202D01* +X125492820Y-67903101D01* +X125489760Y-67899539D01* +X125486881Y-67895612D01* +X125468499Y-67877290D01* +X125464917Y-67873570D01* +X125429962Y-67835749D01* +X125429960Y-67835747D01* +X125423868Y-67829156D01* +X125416672Y-67824840D01* +X125408421Y-67817410D01* +X125392875Y-67801914D01* +X125246514Y-67656033D01* +X125067162Y-67477269D01* +X125055658Y-67464088D01* +X125055498Y-67463877D01* +X125038220Y-67441057D01* +X125031012Y-67435710D01* +X125031010Y-67435708D01* +X124981473Y-67398962D01* +X124981141Y-67398714D01* +X124929780Y-67360352D01* +X124922750Y-67355101D01* +X124921937Y-67354798D01* +X124921235Y-67354277D01* +X124851796Y-67328634D01* +X124851411Y-67328491D01* +X124794686Y-67307332D01* +X124794682Y-67307331D01* +X124786277Y-67304196D01* +X124760309Y-67302309D01* +X124753590Y-67301821D01* +X124737777Y-67299658D01* +X124424308Y-67236348D01* +X124412415Y-67233337D01* +X124412072Y-67233232D01* +X124403950Y-67229419D01* +X124395085Y-67228039D01* +X124395083Y-67228038D01* +X124368344Y-67223875D01* +X124345794Y-67220364D01* +X124340283Y-67219379D01* +X124318568Y-67214993D01* +X124314092Y-67214738D01* +X124314088Y-67214737D01* +X124313478Y-67214702D01* +X124313219Y-67214688D01* +X124301026Y-67213393D01* +X124298177Y-67212949D01* +X124298170Y-67212948D01* +X124293364Y-67212200D01* +X124273258Y-67212200D01* +X124266074Y-67211995D01* +X124261134Y-67211713D01* +X124209973Y-67208791D01* +X124201229Y-67210815D01* +X124192281Y-67211579D01* +X124192223Y-67210902D01* +X124180851Y-67212200D01* +X114748992Y-67212200D01* +X114680871Y-67192198D01* +X114634378Y-67138542D01* +X114624274Y-67068268D01* +X114653768Y-67003688D01* +X114696073Y-66974261D01* +X114695425Y-66973077D01* +X114703297Y-66968767D01* +X114711705Y-66965615D01* +X114828261Y-66878261D01* +X114915615Y-66761705D01* +X114966745Y-66625316D01* +X114973500Y-66563134D01* +X114973500Y-65616866D01* +X114966745Y-65554684D01* +X114915615Y-65418295D01* +X114828261Y-65301739D01* +X114711705Y-65214385D01* +X114575316Y-65163255D01* +X114513134Y-65156500D01* +X113566866Y-65156500D01* +X113504684Y-65163255D01* +X113368295Y-65214385D01* +X113251739Y-65301739D01* +X113164385Y-65418295D01* +X113113255Y-65554684D01* +X113112402Y-65562540D01* +X113112083Y-65563880D01* +X113076865Y-65625527D01* +X113013910Y-65658347D01* +X112943205Y-65651921D01* +X112887198Y-65608289D01* +X112863500Y-65534734D01* +X112863500Y-64856866D01* +X112856745Y-64794684D01* +X112805615Y-64658295D01* +X112718261Y-64541739D01* +X112613935Y-64463551D01* +X112571420Y-64406692D01* +X112563500Y-64362725D01* +X112563500Y-63956525D01* +X112567457Y-63925196D01* +X112571300Y-63910230D01* +X112571300Y-63889976D01* +X112572851Y-63870265D01* +X112574780Y-63858086D01* +X112576020Y-63850257D01* +X112571859Y-63806238D01* +X112571300Y-63794381D01* +X112571300Y-63654967D01* +X112571827Y-63643784D01* +X112573502Y-63636291D01* +X112572715Y-63611233D01* +X112571362Y-63568201D01* +X112571300Y-63564243D01* +X112571300Y-63536344D01* +X112570796Y-63532353D01* +X112569863Y-63520511D01* +X112569533Y-63509994D01* +X112568474Y-63476311D01* +X112566262Y-63468697D01* +X112566261Y-63468692D01* +X112562823Y-63456859D01* +X112558812Y-63437495D01* +X112557267Y-63425264D01* +X112556274Y-63417403D01* +X112553357Y-63410036D01* +X112553356Y-63410031D01* +X112539998Y-63376292D01* +X112536154Y-63365065D01* +X112534015Y-63357703D01* +X123770743Y-63357703D01* +X123771302Y-63361947D01* +X123771302Y-63361951D01* +X123781248Y-63437495D01* +X123808268Y-63642734D01* +X123809401Y-63646874D01* +X123809401Y-63646876D01* +X123824410Y-63701739D01* +X123884129Y-63920036D01* +X123885813Y-63923984D01* +X123978529Y-64141351D01* +X123996923Y-64184476D01* +X124029133Y-64238295D01* +X124138534Y-64421090D01* +X124144561Y-64431161D01* +X124324313Y-64655528D01* +X124408297Y-64735226D01* +X124526693Y-64847579D01* +X124532851Y-64853423D01* +X124766317Y-65021186D01* +X124770112Y-65023195D01* +X124770113Y-65023196D01* +X124791869Y-65034715D01* +X125020392Y-65155712D01* +X125086374Y-65179858D01* +X125275016Y-65248891D01* +X125290373Y-65254511D01* +X125571264Y-65315755D01* +X125599841Y-65318004D01* +X125794282Y-65333307D01* +X125794291Y-65333307D01* +X125796739Y-65333500D01* +X125952271Y-65333500D01* +X125954407Y-65333354D01* +X125954418Y-65333354D01* +X126162548Y-65319165D01* +X126162554Y-65319164D01* +X126166825Y-65318873D01* +X126171020Y-65318004D01* +X126171022Y-65318004D01* +X126336950Y-65283642D01* +X126448342Y-65260574D01* +X126719343Y-65164607D01* +X126894891Y-65074000D01* +X126971005Y-65034715D01* +X126971006Y-65034715D01* +X126974812Y-65032750D01* +X126978313Y-65030289D01* +X126978317Y-65030287D01* +X127137575Y-64918358D01* +X127210023Y-64867441D01* +X127352303Y-64735226D01* +X127417479Y-64674661D01* +X127417481Y-64674658D01* +X127420622Y-64671740D01* +X127602713Y-64449268D01* +X127752927Y-64204142D01* +X127789542Y-64120731D01* +X127866758Y-63944828D01* +X127866759Y-63944826D01* +X127868483Y-63940898D01* +X127892607Y-63856212D01* +X127946068Y-63668534D01* +X127947244Y-63664406D01* +X127987751Y-63379784D01* +X127987799Y-63370772D01* +X127989235Y-63096583D01* +X127989235Y-63096576D01* +X127989257Y-63092297D01* +X127979436Y-63017695D01* +X127955976Y-62839505D01* +X127951732Y-62807266D01* +X127949776Y-62800114D01* +X127916674Y-62679115D01* +X127875871Y-62529964D01* +X127852347Y-62474813D01* +X127764763Y-62269476D01* +X127764761Y-62269472D01* +X127763077Y-62265524D01* +X127615439Y-62018839D01* +X127435687Y-61794472D01* +X127227149Y-61596577D01* +X126993683Y-61428814D01* +X126971843Y-61417250D01* +X126941612Y-61401244D01* +X126739608Y-61294288D01* +X126527627Y-61216714D01* +X126473658Y-61196964D01* +X126473656Y-61196963D01* +X126469627Y-61195489D01* +X126188736Y-61134245D01* +X126157685Y-61131801D01* +X125965718Y-61116693D01* +X125965709Y-61116693D01* +X125963261Y-61116500D01* +X125807729Y-61116500D01* +X125805593Y-61116646D01* +X125805582Y-61116646D01* +X125597452Y-61130835D01* +X125597446Y-61130836D01* +X125593175Y-61131127D01* +X125588980Y-61131996D01* +X125588978Y-61131996D01* +X125544162Y-61141277D01* +X125311658Y-61189426D01* +X125040657Y-61285393D01* +X124785188Y-61417250D01* +X124781687Y-61419711D01* +X124781683Y-61419713D01* +X124721340Y-61462123D01* +X124549977Y-61582559D01* +X124531717Y-61599527D01* +X124344140Y-61773835D01* +X124339378Y-61778260D01* +X124157287Y-62000732D01* +X124007073Y-62245858D01* +X124005347Y-62249791D01* +X124005346Y-62249792D01* +X123904252Y-62480090D01* +X123891517Y-62509102D01* +X123890342Y-62513229D01* +X123890341Y-62513230D01* +X123880521Y-62547704D01* +X123812756Y-62785594D01* +X123772249Y-63070216D01* +X123772227Y-63074505D01* +X123772226Y-63074512D01* +X123770887Y-63330222D01* +X123770743Y-63357703D01* +X112534015Y-63357703D01* +X112526030Y-63330222D01* +X112523818Y-63322607D01* +X112513507Y-63305172D01* +X112504812Y-63287424D01* +X112497352Y-63268583D01* +X112486650Y-63253852D01* +X112471364Y-63232813D01* +X112464848Y-63222893D01* +X112446380Y-63191665D01* +X112446378Y-63191662D01* +X112442342Y-63184838D01* +X112428021Y-63170517D01* +X112415180Y-63155483D01* +X112407931Y-63145506D01* +X112403272Y-63139093D01* +X112369195Y-63110902D01* +X112360416Y-63102912D01* +X111034352Y-61776847D01* +X111026812Y-61768561D01* +X111022700Y-61762082D01* +X110973048Y-61715456D01* +X110970207Y-61712702D01* +X110950470Y-61692965D01* +X110947273Y-61690485D01* +X110938251Y-61682780D01* +X110911800Y-61657941D01* +X110906021Y-61652514D01* +X110899075Y-61648695D01* +X110899072Y-61648693D01* +X110888266Y-61642752D01* +X110871747Y-61631901D01* +X110871283Y-61631541D01* +X110855741Y-61619486D01* +X110848472Y-61616341D01* +X110848468Y-61616338D01* +X110815163Y-61601926D01* +X110804513Y-61596709D01* +X110765760Y-61575405D01* +X110746137Y-61570367D01* +X110727434Y-61563963D01* +X110716120Y-61559067D01* +X110716119Y-61559067D01* +X110708845Y-61555919D01* +X110701022Y-61554680D01* +X110701012Y-61554677D01* +X110665176Y-61549001D01* +X110653556Y-61546595D01* +X110618411Y-61537572D01* +X110618410Y-61537572D01* +X110610730Y-61535600D01* +X110590476Y-61535600D01* +X110570765Y-61534049D01* +X110558586Y-61532120D01* +X110550757Y-61530880D01* +X110542865Y-61531626D01* +X110506739Y-61535041D01* +X110494881Y-61535600D01* +X108686920Y-61535600D01* +X108618799Y-61515598D01* +X108572306Y-61461942D01* +X108562202Y-61391668D01* +X108591696Y-61327088D01* +X108625354Y-61299666D01* +X108677104Y-61270685D01* +X108677108Y-61270682D01* +X108682151Y-61267858D01* +X108838786Y-61137586D01* +X108969058Y-60980951D01* +X109036404Y-60860697D01* +X109065780Y-60808242D01* +X109065781Y-60808240D01* +X109068604Y-60803199D01* +X109070460Y-60797732D01* +X109070462Y-60797727D01* +X109132234Y-60615752D01* +X109132235Y-60615747D01* +X109134090Y-60610283D01* +X109163323Y-60408663D01* +X109164849Y-60350400D01* +X109146208Y-60147526D01* +X109090907Y-59951447D01* +X109071015Y-59911108D01* +X109003356Y-59773910D01* +X109000801Y-59768729D01* +X108995903Y-59762169D01* +X108934959Y-59680556D01* +X108878905Y-59605491D01* +X108858971Y-59587064D01* +X108822526Y-59526136D01* +X108818500Y-59494540D01* +X108818500Y-56488513D01* +X108826518Y-56444284D01* +X108858973Y-56357711D01* +X108858973Y-56357709D01* +X108861745Y-56350316D01* +X108862737Y-56341185D01* +X108863123Y-56340255D01* +X108864426Y-56334777D01* +X108865312Y-56334988D01* +X108889979Y-56275623D01* +X108948341Y-56235196D01* +X109019296Y-56232740D01* +X109080314Y-56269035D01* +X109112023Y-56332557D01* +X109114000Y-56354792D01* +X109114000Y-56729884D01* +X109118475Y-56745123D01* +X109119865Y-56746328D01* +X109127548Y-56747999D01* +X109204669Y-56747999D01* +X109211490Y-56747629D01* +X109262352Y-56742105D01* +X109277604Y-56738479D01* +X109398054Y-56693324D01* +X109413649Y-56684786D01* +X109515724Y-56608285D01* +X109528285Y-56595724D01* +X109604786Y-56493649D01* +X109613324Y-56478054D01* +X109658478Y-56357606D01* +X109662105Y-56342351D01* +X109667631Y-56291486D01* +X109668000Y-56284672D01* +X109668000Y-56159934D01* +X109675665Y-56125892D01* +X109676000Y-56121648D01* +X109676000Y-56107924D01* +X110184000Y-56107924D01* +X110187973Y-56121455D01* +X110195768Y-56122575D01* +X110303521Y-56090862D01* +X110314889Y-56086269D01* +X110479154Y-56000393D01* +X110489415Y-55993679D01* +X110633873Y-55877532D01* +X110642632Y-55868954D01* +X110761778Y-55726961D01* +X110768708Y-55716841D01* +X110858002Y-55554415D01* +X110862834Y-55543142D01* +X110918880Y-55366462D01* +X110921430Y-55354468D01* +X110937607Y-55210239D01* +X110938000Y-55203215D01* +X110938000Y-54872115D01* +X110933525Y-54856876D01* +X110932135Y-54855671D01* +X110924452Y-54854000D01* +X110202115Y-54854000D01* +X110186876Y-54858475D01* +X110185671Y-54859865D01* +X110184000Y-54867548D01* +X110184000Y-56107924D01* +X109676000Y-56107924D01* +X109676000Y-55787115D01* +X109671525Y-55771876D01* +X109670135Y-55770671D01* +X109662452Y-55769000D01* +X109132115Y-55769000D01* +X109116876Y-55773475D01* +X109107710Y-55784053D01* +X109083596Y-55828214D01* +X109021284Y-55862239D01* +X108950468Y-55857175D01* +X108893632Y-55814628D01* +X108868821Y-55748108D01* +X108868500Y-55739119D01* +X108868500Y-55283137D01* +X108888502Y-55215016D01* +X108942158Y-55168523D01* +X109012432Y-55158419D01* +X109077012Y-55187913D01* +X109115396Y-55247639D01* +X109118475Y-55258124D01* +X109119865Y-55259329D01* +X109127548Y-55261000D01* +X109657885Y-55261000D01* +X109673124Y-55256525D01* +X109674329Y-55255135D01* +X109676000Y-55247452D01* +X109676000Y-54872115D01* +X109671525Y-54856876D01* +X109670135Y-54855671D01* +X109662452Y-54854000D01* +X109200674Y-54854000D01* +X109132553Y-54833998D01* +X109086060Y-54780342D01* +X109075956Y-54710068D01* +X109105450Y-54645488D01* +X109114101Y-54636452D01* +X109133527Y-54618082D01* +X109133529Y-54618080D01* +X109138485Y-54613393D01* +X109142317Y-54607755D01* +X109142320Y-54607751D01* +X109236442Y-54469255D01* +X109240277Y-54463612D01* +X109255638Y-54425206D01* +X109299505Y-54369387D01* +X109372626Y-54346000D01* +X109657885Y-54346000D01* +X109673124Y-54341525D01* +X109674329Y-54340135D01* +X109676000Y-54332452D01* +X109676000Y-54327885D01* +X110184000Y-54327885D01* +X110188475Y-54343124D01* +X110189865Y-54344329D01* +X110197548Y-54346000D01* +X110919885Y-54346000D01* +X110935124Y-54341525D01* +X110936329Y-54340135D01* +X110938000Y-54332452D01* +X110938000Y-54003343D01* +X110937699Y-53997195D01* +X110924188Y-53859397D01* +X110921805Y-53847362D01* +X110868233Y-53669924D01* +X110863559Y-53658584D01* +X110776540Y-53494923D01* +X110769751Y-53484706D01* +X110652603Y-53341067D01* +X110643959Y-53332363D01* +X110501144Y-53214216D01* +X110490973Y-53207356D01* +X110327924Y-53119196D01* +X110316619Y-53114444D01* +X110201308Y-53078750D01* +X110187205Y-53078544D01* +X110184000Y-53085299D01* +X110184000Y-54327885D01* +X109676000Y-54327885D01* +X109676000Y-53092076D01* +X109672027Y-53078545D01* +X109664232Y-53077425D01* +X109556479Y-53109138D01* +X109545111Y-53113731D01* +X109380846Y-53199607D01* +X109370585Y-53206321D01* +X109226127Y-53322468D01* +X109217368Y-53331046D01* +X109173000Y-53383921D01* +X109113890Y-53423248D01* +X109042902Y-53424374D01* +X108999952Y-53403028D01* +X108934322Y-53352850D01* +X108803162Y-53291689D01* +X108776369Y-53279195D01* +X108776366Y-53279194D01* +X108770192Y-53276315D01* +X108763544Y-53274829D01* +X108763541Y-53274828D01* +X108598494Y-53237936D01* +X108598495Y-53237936D01* +X108593457Y-53236810D01* +X108587912Y-53236500D01* +X108454756Y-53236500D01* +X108319963Y-53251143D01* +X108236609Y-53279195D01* +X108154796Y-53306728D01* +X108154794Y-53306729D01* +X108148325Y-53308906D01* +X107993095Y-53402177D01* +X107988138Y-53406865D01* +X107988135Y-53406867D01* +X107866473Y-53521918D01* +X107861515Y-53526607D01* +X107857683Y-53532245D01* +X107857680Y-53532249D01* +X107806740Y-53607205D01* +X107759723Y-53676388D01* +X107692470Y-53844534D01* +X107691356Y-53851262D01* +X107691355Y-53851266D01* +X107666179Y-54003343D01* +X107662892Y-54023198D01* +X107663249Y-54030015D01* +X107663249Y-54030019D01* +X107669480Y-54148906D01* +X107653071Y-54217980D01* +X107601922Y-54267217D01* +X107543653Y-54281500D01* +X107161866Y-54281500D01* +X107158471Y-54281869D01* +X107158467Y-54281869D01* +X107132469Y-54284693D01* +X107123606Y-54285656D01* +X107096394Y-54285656D01* +X107087531Y-54284693D01* +X107061533Y-54281869D01* +X107061529Y-54281869D01* +X107058134Y-54281500D01* +X106661866Y-54281500D01* +X106658471Y-54281869D01* +X106658467Y-54281869D01* +X106632469Y-54284693D01* +X106623606Y-54285656D01* +X106596394Y-54285656D01* +X106587531Y-54284693D01* +X106561533Y-54281869D01* +X106561529Y-54281869D01* +X106558134Y-54281500D01* +X106161866Y-54281500D01* +X106158471Y-54281869D01* +X106158467Y-54281869D01* +X106132469Y-54284693D01* +X106123606Y-54285656D01* +X106096394Y-54285656D01* +X106087531Y-54284693D01* +X106061533Y-54281869D01* +X106061529Y-54281869D01* +X106058134Y-54281500D01* +X105661866Y-54281500D01* +X105658471Y-54281869D01* +X105658467Y-54281869D01* +X105632469Y-54284693D01* +X105623606Y-54285656D01* +X105596394Y-54285656D01* +X105587531Y-54284693D01* +X105561533Y-54281869D01* +X105561529Y-54281869D01* +X105558134Y-54281500D01* +X105161866Y-54281500D01* +X105158471Y-54281869D01* +X105158467Y-54281869D01* +X105132469Y-54284693D01* +X105123606Y-54285656D01* +X105096394Y-54285656D01* +X105087531Y-54284693D01* +X105061533Y-54281869D01* +X105061529Y-54281869D01* +X105058134Y-54281500D01* +X104661866Y-54281500D01* +X104658471Y-54281869D01* +X104658467Y-54281869D01* +X104632469Y-54284693D01* +X104623606Y-54285656D01* +X104596394Y-54285656D01* +X104587531Y-54284693D01* +X104561533Y-54281869D01* +X104561529Y-54281869D01* +X104558134Y-54281500D01* +X104161866Y-54281500D01* +X104158471Y-54281869D01* +X104158467Y-54281869D01* +X104132469Y-54284693D01* +X104123606Y-54285656D01* +X104096394Y-54285656D01* +X104087531Y-54284693D01* +X104061533Y-54281869D01* +X104061529Y-54281869D01* +X104058134Y-54281500D01* +X103678416Y-54281500D01* +X103610295Y-54261498D01* +X103563802Y-54207842D01* +X103554108Y-54134921D01* +X103557108Y-54116802D01* +X103552203Y-54023198D01* +X103547987Y-53942766D01* +X103547630Y-53935953D01* +X103535330Y-53891296D01* +X103501352Y-53767941D01* +X103499539Y-53761359D01* +X103415078Y-53601164D01* +X103410673Y-53595951D01* +X103410670Y-53595947D01* +X103302594Y-53468057D01* +X103302590Y-53468053D01* +X103298187Y-53462843D01* +X103292762Y-53458695D01* +X103159743Y-53356994D01* +X103159739Y-53356991D01* +X103154322Y-53352850D01* +X103023162Y-53291689D01* +X102996369Y-53279195D01* +X102996366Y-53279194D01* +X102990192Y-53276315D01* +X102983544Y-53274829D01* +X102983541Y-53274828D01* +X102818494Y-53237936D01* +X102818495Y-53237936D01* +X102813457Y-53236810D01* +X102807912Y-53236500D01* +X102674756Y-53236500D01* +X102539963Y-53251143D01* +X102456609Y-53279195D01* +X102374796Y-53306728D01* +X102374794Y-53306729D01* +X102368325Y-53308906D01* +X102216349Y-53400222D01* +X102216346Y-53400223D01* +X102213095Y-53402177D01* +X102212745Y-53401594D01* +X102151083Y-53425065D01* +X102081609Y-53410439D01* +X102043609Y-53379085D01* +X102012603Y-53341067D01* +X102003959Y-53332363D01* +X101861144Y-53214216D01* +X101850973Y-53207356D01* +X101687924Y-53119196D01* +X101676619Y-53114444D01* +X101561308Y-53078750D01* +X101547205Y-53078544D01* +X101544000Y-53085299D01* +X101544000Y-54327885D01* +X101548475Y-54343124D01* +X101549865Y-54344329D01* +X101557548Y-54346000D01* +X101847243Y-54346000D01* +X101915364Y-54366002D01* +X101958700Y-54413235D01* +X102024922Y-54538836D01* +X102029327Y-54544049D01* +X102029330Y-54544053D01* +X102116051Y-54646672D01* +X102144743Y-54711613D01* +X102133770Y-54781756D01* +X102086617Y-54834833D01* +X102019813Y-54854000D01* +X101562115Y-54854000D01* +X101546876Y-54858475D01* +X101545671Y-54859865D01* +X101544000Y-54867548D01* +X101544000Y-55242885D01* +X101548475Y-55258124D01* +X101549865Y-55259329D01* +X101557548Y-55261000D01* +X102087885Y-55261000D01* +X102103124Y-55256525D01* +X102112290Y-55245947D01* +X102136404Y-55201786D01* +X102198716Y-55167761D01* +X102269532Y-55172825D01* +X102326368Y-55215372D01* +X102351179Y-55281892D01* +X102351500Y-55290881D01* +X102351500Y-55643000D01* +X102331498Y-55711121D01* +X102277842Y-55757614D01* +X102225500Y-55769000D01* +X101562115Y-55769000D01* +X101546876Y-55773475D01* +X101545671Y-55774865D01* +X101544000Y-55782548D01* +X101544000Y-56107924D01* +X101546897Y-56117790D01* +X101552001Y-56153288D01* +X101552001Y-56176442D01* +X101531999Y-56244563D01* +X101478343Y-56291056D01* +X101469612Y-56294654D01* +X101366873Y-56332557D01* +X101323934Y-56348398D01* +X101318973Y-56351350D01* +X101318972Y-56351350D01* +X101158205Y-56446997D01* +X101148849Y-56452563D01* +X100995678Y-56586890D01* +X100992106Y-56591421D01* +X100887542Y-56724059D01* +X100829660Y-56765172D01* +X100758740Y-56768466D01* +X100699497Y-56735148D01* +X99161006Y-55196657D01* +X100282000Y-55196657D01* +X100282301Y-55202805D01* +X100295812Y-55340603D01* +X100298195Y-55352638D01* +X100351767Y-55530076D01* +X100356441Y-55541416D01* +X100443460Y-55705077D01* +X100450249Y-55715294D01* +X100567397Y-55858933D01* +X100576041Y-55867637D01* +X100718856Y-55985784D01* +X100729027Y-55992644D01* +X100892076Y-56080804D01* +X100903381Y-56085556D01* +X101018692Y-56121250D01* +X101032795Y-56121456D01* +X101036000Y-56114701D01* +X101036000Y-54872115D01* +X101031525Y-54856876D01* +X101030135Y-54855671D01* +X101022452Y-54854000D01* +X100300115Y-54854000D01* +X100284876Y-54858475D01* +X100283671Y-54859865D01* +X100282000Y-54867548D01* +X100282000Y-55196657D01* +X99161006Y-55196657D01* +X99117915Y-55153566D01* +X99107048Y-55141175D01* +X99092613Y-55122363D01* +X99087587Y-55115813D01* +X99055675Y-55091326D01* +X99055672Y-55091323D01* +X99031043Y-55072424D01* +X98967029Y-55023304D01* +X98967027Y-55023303D01* +X98960476Y-55018276D01* +X98812451Y-54956962D01* +X98804264Y-54955884D01* +X98804263Y-54955884D01* +X98793058Y-54954409D01* +X98757965Y-54949789D01* +X98693485Y-54941300D01* +X98693482Y-54941300D01* +X98693474Y-54941299D01* +X98661789Y-54937128D01* +X98653600Y-54936050D01* +X98643706Y-54937352D01* +X98642267Y-54937128D01* +X98637155Y-54937128D01* +X98637155Y-54936331D01* +X98573561Y-54926415D01* +X98520115Y-54878733D01* +X98503568Y-54851992D01* +X98503563Y-54851986D01* +X98499716Y-54845769D01* +X98488761Y-54834833D01* +X98381784Y-54728042D01* +X98381779Y-54728038D01* +X98376603Y-54722871D01* +X98355833Y-54710068D01* +X98234750Y-54635431D01* +X98234748Y-54635430D01* +X98228520Y-54631591D01* +X98063409Y-54576826D01* +X98056573Y-54576126D01* +X98056570Y-54576125D01* +X98005074Y-54570849D01* +X97960672Y-54566300D01* +X97361528Y-54566300D01* +X97358282Y-54566637D01* +X97358278Y-54566637D01* +X97264365Y-54576381D01* +X97264361Y-54576382D01* +X97257507Y-54577093D01* +X97250971Y-54579274D01* +X97250969Y-54579274D01* +X97146919Y-54613988D01* +X97092493Y-54632146D01* +X96944569Y-54723684D01* +X96939396Y-54728866D01* +X96837853Y-54830586D01* +X96775570Y-54864665D01* +X96704750Y-54859662D01* +X96659663Y-54830741D01* +X96556788Y-54728046D01* +X96556783Y-54728042D01* +X96551603Y-54722871D01* +X96530833Y-54710068D01* +X96409750Y-54635431D01* +X96409748Y-54635430D01* +X96403520Y-54631591D01* +X96238409Y-54576826D01* +X96231573Y-54576126D01* +X96231570Y-54576125D01* +X96180074Y-54570849D01* +X96135672Y-54566300D01* +X95536528Y-54566300D01* +X95533282Y-54566637D01* +X95533278Y-54566637D01* +X95439365Y-54576381D01* +X95439361Y-54576382D01* +X95432507Y-54577093D01* +X95425971Y-54579274D01* +X95425969Y-54579274D01* +X95321919Y-54613988D01* +X95267493Y-54632146D01* +X95119569Y-54723684D01* +X95114396Y-54728866D01* +X95001842Y-54841616D01* +X95001838Y-54841621D01* +X94996671Y-54846797D01* +X94992831Y-54853027D01* +X94992830Y-54853028D01* +X94990743Y-54856414D01* +X94988714Y-54858241D01* +X94988293Y-54858773D01* +X94988202Y-54858701D01* +X94937972Y-54903908D01* +X94883482Y-54916300D01* +X91518767Y-54916300D01* +X91507584Y-54915773D01* +X91500091Y-54914098D01* +X91492165Y-54914347D01* +X91492164Y-54914347D01* +X91432014Y-54916238D01* +X91428055Y-54916300D01* +X91400144Y-54916300D01* +X91396210Y-54916797D01* +X91396209Y-54916797D01* +X91396144Y-54916805D01* +X91384307Y-54917738D01* +X91352490Y-54918738D01* +X91348029Y-54918878D01* +X91340110Y-54919127D01* +X91322454Y-54924256D01* +X91320658Y-54924778D01* +X91301306Y-54928786D01* +X91294235Y-54929680D01* +X91281203Y-54931326D01* +X91273834Y-54934243D01* +X91273832Y-54934244D01* +X91240097Y-54947600D01* +X91228869Y-54951445D01* +X91186407Y-54963782D01* +X91179585Y-54967816D01* +X91179579Y-54967819D01* +X91168968Y-54974094D01* +X91151218Y-54982790D01* +X91139756Y-54987328D01* +X91139751Y-54987331D01* +X91132383Y-54990248D01* +X91125968Y-54994909D01* +X91096625Y-55016227D01* +X91086707Y-55022743D01* +X91074499Y-55029963D01* +X91048637Y-55045258D01* +X91034313Y-55059582D01* +X91019281Y-55072421D01* +X91002893Y-55084328D01* +X90981004Y-55110787D01* +X90974712Y-55118393D01* +X90966722Y-55127173D01* +X90758147Y-55335748D01* +X90749861Y-55343288D01* +X90743382Y-55347400D01* +X90737957Y-55353177D01* +X90696757Y-55397051D01* +X90694002Y-55399893D01* +X90674265Y-55419630D01* +X90671785Y-55422827D01* +X90664082Y-55431847D01* +X90633814Y-55464079D01* +X90629995Y-55471025D01* +X90629993Y-55471028D01* +X90624052Y-55481834D01* +X90613201Y-55498353D01* +X90600786Y-55514359D01* +X90597641Y-55521628D01* +X90597638Y-55521632D01* +X90583226Y-55554937D01* +X90578009Y-55565587D01* +X90556705Y-55604340D01* +X90554734Y-55612015D01* +X90554734Y-55612016D01* +X90551667Y-55623962D01* +X90545263Y-55642666D01* +X90545119Y-55643000D01* +X90537219Y-55661255D01* +X90535980Y-55669078D01* +X90535977Y-55669088D01* +X90530301Y-55704924D01* +X90527895Y-55716544D01* +X90516900Y-55759370D01* +X90516900Y-55779624D01* +X90515349Y-55799334D01* +X90512180Y-55819343D01* +X90512926Y-55827235D01* +X90516341Y-55863361D01* +X90516900Y-55875219D01* +X90516900Y-55895071D01* +X90496898Y-55963192D01* +X90474993Y-55986732D01* +X90475669Y-55987408D01* +X90469319Y-55993758D01* +X90462139Y-55999139D01* +X90374785Y-56115695D01* +X90323655Y-56252084D01* +X90316900Y-56314266D01* +X90316900Y-57970534D01* +X90323655Y-58032716D01* +X90374785Y-58169105D01* +X90462139Y-58285661D01* +X90578695Y-58373015D01* +X90587103Y-58376167D01* +X90594975Y-58380477D01* +X90593672Y-58382857D01* +X90639204Y-58417064D01* +X90663901Y-58483627D01* +X90648691Y-58552975D01* +X90598403Y-58603091D01* +X90591303Y-58606333D01* +X90587101Y-58608634D01* +X90578695Y-58611785D01* +X90462139Y-58699139D01* +X90374785Y-58815695D01* +X90323655Y-58952084D01* +X90316900Y-59014266D01* +X90316900Y-60670534D01* +X90323655Y-60732716D01* +X90374785Y-60869105D01* +X90462139Y-60985661D01* +X90469319Y-60991042D01* +X90475632Y-60997355D01* +X90509658Y-61059667D01* +X90504593Y-61130482D01* +X90480176Y-61170757D01* +X90421560Y-61235856D01* +X90368887Y-61327088D01* +X90345611Y-61367404D01* +X90326073Y-61401244D01* +X90267058Y-61582872D01* +X90266368Y-61589433D01* +X90266368Y-61589435D01* +X90253264Y-61714116D01* +X90247096Y-61772800D01* +X90247786Y-61779365D01* +X90264509Y-61938472D01* +X90267058Y-61962728D01* +X90326073Y-62144356D01* +X90329376Y-62150078D01* +X90329377Y-62150079D01* +X90338320Y-62165569D01* +X90421560Y-62309744D01* +X90425978Y-62314651D01* +X90425979Y-62314652D01* +X90544925Y-62446755D01* +X90549347Y-62451666D01* +X90628401Y-62509102D01* +X90675985Y-62543674D01* +X90703848Y-62563918D01* +X90709876Y-62566602D01* +X90709878Y-62566603D01* +X90872281Y-62638909D01* +X90878312Y-62641594D01* +X90971712Y-62661447D01* +X91058656Y-62679928D01* +X91058661Y-62679928D01* +X91065113Y-62681300D01* +X91256087Y-62681300D01* +X91262539Y-62679928D01* +X91262544Y-62679928D01* +X91349488Y-62661447D01* +X91442888Y-62641594D01* +X91448919Y-62638909D01* +X91611322Y-62566603D01* +X91611324Y-62566602D01* +X91617352Y-62563918D01* +X91645216Y-62543674D01* +X91692799Y-62509102D01* +X91771853Y-62451666D01* +X91777310Y-62445606D01* +X91808002Y-62411518D01* +X91879441Y-62332178D01* +X91939886Y-62294938D01* +X92010869Y-62296290D01* +X92065090Y-62332761D01* +X92065600Y-62332218D01* +X92071378Y-62337644D01* +X92071379Y-62337645D01* +X92115267Y-62378858D01* +X92118109Y-62381613D01* +X92137830Y-62401334D01* +X92141025Y-62403812D01* +X92150047Y-62411518D01* +X92182279Y-62441786D01* +X92189228Y-62445606D01* +X92200032Y-62451546D01* +X92216556Y-62462399D01* +X92232559Y-62474813D01* +X92273143Y-62492376D01* +X92283773Y-62497583D01* +X92322540Y-62518895D01* +X92330217Y-62520866D01* +X92330222Y-62520868D01* +X92342158Y-62523932D01* +X92360866Y-62530337D01* +X92379455Y-62538381D01* +X92387280Y-62539620D01* +X92387282Y-62539621D01* +X92423119Y-62545297D01* +X92434740Y-62547704D01* +X92466559Y-62555873D01* +X92477570Y-62558700D01* +X92497831Y-62558700D01* +X92517540Y-62560251D01* +X92537543Y-62563419D01* +X92545435Y-62562673D01* +X92550662Y-62562179D01* +X92581554Y-62559259D01* +X92593411Y-62558700D01* +X94129833Y-62558700D01* +X94141016Y-62559227D01* +X94148509Y-62560902D01* +X94156435Y-62560653D01* +X94156436Y-62560653D01* +X94216586Y-62558762D01* +X94220545Y-62558700D01* +X94248456Y-62558700D01* +X94252391Y-62558203D01* +X94252456Y-62558195D01* +X94264293Y-62557262D01* +X94296551Y-62556248D01* +X94300570Y-62556122D01* +X94308489Y-62555873D01* +X94327943Y-62550221D01* +X94347300Y-62546213D01* +X94359530Y-62544668D01* +X94359531Y-62544668D01* +X94367397Y-62543674D01* +X94374768Y-62540755D01* +X94374770Y-62540755D01* +X94408512Y-62527396D01* +X94419742Y-62523551D01* +X94454583Y-62513429D01* +X94454584Y-62513429D01* +X94462193Y-62511218D01* +X94469012Y-62507185D01* +X94469017Y-62507183D01* +X94479628Y-62500907D01* +X94497376Y-62492212D01* +X94516217Y-62484752D01* +X94530835Y-62474132D01* +X94551987Y-62458764D01* +X94561907Y-62452248D01* +X94593135Y-62433780D01* +X94593138Y-62433778D01* +X94599962Y-62429742D01* +X94614283Y-62415421D01* +X94629317Y-62402580D01* +X94631032Y-62401334D01* +X94645707Y-62390672D01* +X94673898Y-62356595D01* +X94681888Y-62347816D01* +X96008899Y-61020805D01* +X96071211Y-60986779D01* +X96097994Y-60983900D01* +X97809194Y-60983900D01* +X97877315Y-61003902D01* +X97923808Y-61057558D01* +X97933912Y-61127832D01* +X97904418Y-61192412D01* +X97844692Y-61230796D01* +X97835390Y-61233147D01* +X97710912Y-61259606D01* +X97704882Y-61262291D01* +X97704881Y-61262291D01* +X97542478Y-61334597D01* +X97542476Y-61334598D01* +X97536448Y-61337282D01* +X97381947Y-61449534D01* +X97377526Y-61454444D01* +X97377525Y-61454445D01* +X97259543Y-61585478D01* +X97254160Y-61591456D01* +X97158673Y-61756844D01* +X97099658Y-61938472D01* +X97098968Y-61945033D01* +X97098968Y-61945035D01* +X97096449Y-61969006D01* +X97079696Y-62128400D01* +X97080386Y-62134965D01* +X97099658Y-62318328D01* +X97097334Y-62318572D01* +X97092745Y-62378697D01* +X97049926Y-62435328D01* +X96983288Y-62459821D01* +X96974901Y-62460100D01* +X95658963Y-62460100D01* +X95647779Y-62459573D01* +X95640291Y-62457899D01* +X95632368Y-62458148D01* +X95572233Y-62460038D01* +X95568275Y-62460100D01* +X95540344Y-62460100D01* +X95536429Y-62460595D01* +X95536425Y-62460595D01* +X95536367Y-62460603D01* +X95536338Y-62460606D01* +X95524496Y-62461539D01* +X95480310Y-62462927D01* +X95462944Y-62467972D01* +X95460858Y-62468578D01* +X95441506Y-62472586D01* +X95429268Y-62474132D01* +X95429266Y-62474133D01* +X95421403Y-62475126D01* +X95380286Y-62491406D01* +X95369085Y-62495241D01* +X95326606Y-62507582D01* +X95319787Y-62511615D01* +X95319782Y-62511617D01* +X95309171Y-62517893D01* +X95291421Y-62526590D01* +X95272583Y-62534048D01* +X95266167Y-62538709D01* +X95266166Y-62538710D01* +X95247484Y-62552284D01* +X95240375Y-62557449D01* +X95236825Y-62560028D01* +X95226901Y-62566547D01* +X95195660Y-62585022D01* +X95195655Y-62585026D01* +X95188837Y-62589058D01* +X95174513Y-62603382D01* +X95159481Y-62616221D01* +X95143093Y-62628128D01* +X95114912Y-62662193D01* +X95106922Y-62670973D01* +X92763900Y-65013995D01* +X92701588Y-65048021D01* +X92674805Y-65050900D01* +X87503287Y-65050900D01* +X87435166Y-65030898D01* +X87388673Y-64977242D01* +X87378569Y-64906968D01* +X87408063Y-64842388D01* +X87417516Y-64832600D01* +X87449865Y-64802540D01* +X87522303Y-64735226D01* +X87587479Y-64674661D01* +X87587481Y-64674658D01* +X87590622Y-64671740D01* +X87772713Y-64449268D01* +X87922927Y-64204142D01* +X87959542Y-64120731D01* +X88036758Y-63944828D01* +X88036759Y-63944826D01* +X88038483Y-63940898D01* +X88062607Y-63856212D01* +X88116068Y-63668534D01* +X88117244Y-63664406D01* +X88157751Y-63379784D01* +X88157799Y-63370772D01* +X88159235Y-63096583D01* +X88159235Y-63096576D01* +X88159257Y-63092297D01* +X88149436Y-63017695D01* +X88125976Y-62839505D01* +X88121732Y-62807266D01* +X88119776Y-62800114D01* +X88086674Y-62679115D01* +X88045871Y-62529964D01* +X88022347Y-62474813D01* +X87934763Y-62269476D01* +X87934761Y-62269472D01* +X87933077Y-62265524D01* +X87785439Y-62018839D01* +X87605687Y-61794472D01* +X87397149Y-61596577D01* +X87163683Y-61428814D01* +X87141843Y-61417250D01* +X87111612Y-61401244D01* +X86909608Y-61294288D01* +X86697627Y-61216714D01* +X86643658Y-61196964D01* +X86643656Y-61196963D01* +X86639627Y-61195489D01* +X86358736Y-61134245D01* +X86327685Y-61131801D01* +X86135718Y-61116693D01* +X86135709Y-61116693D01* +X86133261Y-61116500D01* +X85977729Y-61116500D01* +X85975593Y-61116646D01* +X85975582Y-61116646D01* +X85767452Y-61130835D01* +X85767446Y-61130836D01* +X85763175Y-61131127D01* +X85758980Y-61131996D01* +X85758978Y-61131996D01* +X85714162Y-61141277D01* +X85481658Y-61189426D01* +X85210657Y-61285393D01* +X84955188Y-61417250D01* +X84951687Y-61419711D01* +X84951683Y-61419713D01* +X84891340Y-61462123D01* +X84719977Y-61582559D01* +X84701717Y-61599527D01* +X84514140Y-61773835D01* +X84509378Y-61778260D01* +X84327287Y-62000732D01* +X84177073Y-62245858D01* +X84175347Y-62249791D01* +X84175346Y-62249792D01* +X84074252Y-62480090D01* +X84061517Y-62509102D01* +X84060342Y-62513229D01* +X84060341Y-62513230D01* +X84050521Y-62547704D01* +X83982756Y-62785594D01* +X83942249Y-63070216D01* +X83942227Y-63074505D01* +X83942226Y-63074512D01* +X83940887Y-63330222D01* +X83940743Y-63357703D01* +X83941302Y-63361947D01* +X83941302Y-63361951D01* +X83951248Y-63437495D01* +X83978268Y-63642734D01* +X83979401Y-63646874D01* +X83979401Y-63646876D01* +X83994410Y-63701739D01* +X84054129Y-63920036D01* +X84055813Y-63923984D01* +X84148529Y-64141351D01* +X84166923Y-64184476D01* +X84199133Y-64238295D01* +X84308534Y-64421090D01* +X84314561Y-64431161D01* +X84494313Y-64655528D01* +X84578297Y-64735226D01* +X84696693Y-64847579D01* +X84702851Y-64853423D01* +X84936317Y-65021186D01* +X84940112Y-65023195D01* +X84940113Y-65023196D01* +X84961869Y-65034715D01* +X85190392Y-65155712D01* +X85256374Y-65179858D01* +X85445016Y-65248891D01* +X85460373Y-65254511D01* +X85741264Y-65315755D01* +X85769841Y-65318004D01* +X85964282Y-65333307D01* +X85964291Y-65333307D01* +X85966739Y-65333500D01* +X86122271Y-65333500D01* +X86124407Y-65333354D01* +X86124418Y-65333354D01* +X86332548Y-65319165D01* +X86332554Y-65319164D01* +X86336825Y-65318873D01* +X86341020Y-65318004D01* +X86341022Y-65318004D01* +X86500071Y-65285067D01* +X86570833Y-65290840D01* +X86627240Y-65333952D01* +X86651385Y-65400717D01* +X86635600Y-65469937D01* +X86614718Y-65497543D01* +X86408619Y-65703642D01* +X85802864Y-66309396D01* +X85740552Y-66343421D01* +X85713769Y-66346300D01* +X80698367Y-66346300D01* +X80687184Y-66345773D01* +X80679691Y-66344098D01* +X80671765Y-66344347D01* +X80671764Y-66344347D01* +X80611614Y-66346238D01* +X80607655Y-66346300D01* +X80579744Y-66346300D01* +X80575810Y-66346797D01* +X80575809Y-66346797D01* +X80575744Y-66346805D01* +X80563907Y-66347738D01* +X80532090Y-66348738D01* +X80527629Y-66348878D01* +X80519710Y-66349127D01* +X80502054Y-66354256D01* +X80500258Y-66354778D01* +X80480906Y-66358786D01* +X80473835Y-66359680D01* +X80460803Y-66361326D01* +X80453434Y-66364243D01* +X80453432Y-66364244D01* +X80419697Y-66377600D01* +X80408469Y-66381445D01* +X80366007Y-66393782D01* +X80359185Y-66397816D01* +X80359179Y-66397819D01* +X80348568Y-66404094D01* +X80330818Y-66412790D01* +X80319356Y-66417328D01* +X80319351Y-66417331D01* +X80311983Y-66420248D01* +X80294570Y-66432899D01* +X80276225Y-66446227D01* +X80266307Y-66452743D01* +X80247619Y-66463795D01* +X80228237Y-66475258D01* +X80213913Y-66489582D01* +X80198881Y-66502421D01* +X80182493Y-66514328D01* +X80154312Y-66548393D01* +X80146322Y-66557173D01* +X79219813Y-67483682D01* +X79211527Y-67491222D01* +X79205048Y-67495334D01* +X79199623Y-67501111D01* +X79158423Y-67544985D01* +X79155668Y-67547827D01* +X79135931Y-67567564D01* +X79133451Y-67570761D01* +X79125748Y-67579781D01* +X79095480Y-67612013D01* +X79091661Y-67618959D01* +X79091659Y-67618962D01* +X79085718Y-67629768D01* +X79074867Y-67646287D01* +X79062452Y-67662293D01* +X79059307Y-67669562D01* +X79059304Y-67669566D01* +X79044892Y-67702871D01* +X79039675Y-67713521D01* +X79018371Y-67752274D01* +X79016400Y-67759949D01* +X79016400Y-67759950D01* +X79013333Y-67771896D01* +X79006929Y-67790600D01* +X78998885Y-67809189D01* +X78997646Y-67817012D01* +X78997643Y-67817022D01* +X78991967Y-67852858D01* +X78989561Y-67864478D01* +X78981568Y-67895612D01* +X78978566Y-67907304D01* +X78978566Y-67927558D01* +X78977015Y-67947268D01* +X78973846Y-67967277D01* +X78974592Y-67975169D01* +X78978007Y-68011295D01* +X78978566Y-68023153D01* +X78978566Y-68317136D01* +X78958564Y-68385257D01* +X78918870Y-68424279D01* +X78908035Y-68430984D01* +X78908033Y-68430986D01* +X78907924Y-68430809D01* +X78845578Y-68456042D01* +X78775814Y-68442868D01* +X78759329Y-68432293D01* +X78757203Y-68430171D01* +X78750980Y-68426335D01* +X78750976Y-68426332D01* +X78615350Y-68342731D01* +X78615348Y-68342730D01* +X78609120Y-68338891D01* +X78444009Y-68284126D01* +X78437173Y-68283426D01* +X78437170Y-68283425D01* +X78376487Y-68277208D01* +X78341272Y-68273600D01* +X77767128Y-68273600D01* +X77763882Y-68273937D01* +X77763878Y-68273937D01* +X77669965Y-68283681D01* +X77669961Y-68283682D01* +X77663107Y-68284393D01* +X77656571Y-68286574D01* +X77656569Y-68286574D01* +X77597042Y-68306434D01* +X77498093Y-68339446D01* +X77350169Y-68430984D01* +X77344996Y-68436166D01* +X77291001Y-68490255D01* +X77228718Y-68524334D01* +X77157898Y-68519331D01* +X77127768Y-68503174D01* +X77107023Y-68488102D01* +X77088552Y-68474682D01* +X77082524Y-68471998D01* +X77082522Y-68471997D01* +X76920119Y-68399691D01* +X76920118Y-68399691D01* +X76914088Y-68397006D01* +X76793961Y-68371472D01* +X76733744Y-68358672D01* +X76733739Y-68358672D01* +X76727287Y-68357300D01* +X76536313Y-68357300D01* +X76529861Y-68358672D01* +X76529856Y-68358672D01* +X76469639Y-68371472D01* +X76349512Y-68397006D01* +X76343482Y-68399691D01* +X76343481Y-68399691D01* +X76181078Y-68471997D01* +X76181076Y-68471998D01* +X76175048Y-68474682D01* +X76169707Y-68478562D01* +X76169706Y-68478563D01* +X76136885Y-68502409D01* +X76020547Y-68586934D01* +X76016126Y-68591844D01* +X76016125Y-68591845D01* +X75904481Y-68715839D01* +X75892760Y-68728856D01* +X75797273Y-68894244D01* +X75738258Y-69075872D01* +X75718296Y-69265800D01* +X75738258Y-69455728D01* +X75797273Y-69637356D01* +X75892760Y-69802744D01* +X75897178Y-69807651D01* +X75897179Y-69807652D01* +X76016125Y-69939755D01* +X76020547Y-69944666D01* +X76175048Y-70056918D01* +X76181076Y-70059602D01* +X76181078Y-70059603D01* +X76343481Y-70131909D01* +X76349512Y-70134594D01* +X76442913Y-70154447D01* +X76529856Y-70172928D01* +X76529861Y-70172928D01* +X76536313Y-70174300D01* +X76727287Y-70174300D01* +X76733739Y-70172928D01* +X76733744Y-70172928D01* +X76820687Y-70154447D01* +X76914088Y-70134594D01* +X76920119Y-70131909D01* +X77082522Y-70059603D01* +X77082524Y-70059602D01* +X77088552Y-70056918D01* +X77123364Y-70031626D01* +X77190230Y-70007767D01* +X77259382Y-70023846D01* +X77286443Y-70044388D01* +X77334986Y-70092847D01* +X77369065Y-70155130D01* +X77364062Y-70225950D01* +X77335141Y-70271037D01* +X77232446Y-70373912D01* +X77232442Y-70373917D01* +X77227271Y-70379097D01* +X77135991Y-70527180D01* +X77081226Y-70692291D01* +X77070700Y-70795028D01* +X77070700Y-71130006D01* +X77050698Y-71198127D01* +X77033795Y-71219101D01* +X74791747Y-73461148D01* +X74783461Y-73468688D01* +X74776982Y-73472800D01* +X74771557Y-73478577D01* +X74730357Y-73522451D01* +X74727602Y-73525293D01* +X74707865Y-73545030D01* +X74705385Y-73548227D01* +X74697682Y-73557247D01* +X74667414Y-73589479D01* +X74663595Y-73596425D01* +X74663593Y-73596428D01* +X74657652Y-73607234D01* +X74646801Y-73623753D01* +X74634386Y-73639759D01* +X74631241Y-73647028D01* +X74631238Y-73647032D01* +X74616826Y-73680337D01* +X74611609Y-73690987D01* +X74590305Y-73729740D01* +X74588334Y-73737415D01* +X74588334Y-73737416D01* +X74585267Y-73749362D01* +X74578863Y-73768066D01* +X74570819Y-73786655D01* +X74569580Y-73794478D01* +X74569577Y-73794488D01* +X74563901Y-73830324D01* +X74561495Y-73841944D01* +X74550500Y-73884770D01* +X74550500Y-73905024D01* +X74548949Y-73924734D01* +X74545780Y-73944743D01* +X74546526Y-73952635D01* +X74549941Y-73988761D01* +X74550500Y-74000619D01* +X74550500Y-77224676D01* +X74530498Y-77292797D01* +X74518142Y-77308979D01* +X74444960Y-77390256D01* +X74349473Y-77555644D01* +X74290458Y-77737272D01* +X74270496Y-77927200D01* +X74271186Y-77933765D01* +X74287909Y-78092872D01* +X74290458Y-78117128D01* +X74349473Y-78298756D01* +X74444960Y-78464144D01* +X74572747Y-78606066D01* +X74616879Y-78638130D01* +X74701740Y-78699785D01* +X74727248Y-78718318D01* +X74733276Y-78721002D01* +X74733278Y-78721003D01* +X74809644Y-78755003D01* +X74901712Y-78795994D01* +X74995112Y-78815847D01* +X75082056Y-78834328D01* +X75082061Y-78834328D01* +X75088513Y-78835700D01* +X75279487Y-78835700D01* +X75285939Y-78834328D01* +X75285944Y-78834328D01* +X75372888Y-78815847D01* +X75466288Y-78795994D01* +X75558356Y-78755003D01* +X75634722Y-78721003D01* +X75634724Y-78721002D01* +X75640752Y-78718318D01* +X75666261Y-78699785D01* +X75718283Y-78661988D01* +X75785150Y-78638130D01* +X75854302Y-78654210D01* +X75900797Y-78699785D01* +X75968509Y-78814280D01* +X75968511Y-78814283D01* +X75972547Y-78821107D01* +X76090193Y-78938753D01* +X76094002Y-78941006D01* +X76134655Y-78997296D01* +X76138506Y-79068188D01* +X76103418Y-79129909D01* +X76095724Y-79136576D01* +X76090193Y-79139847D01* +X75972547Y-79257493D01* +X75968511Y-79264317D01* +X75968509Y-79264320D01* +X75896247Y-79386509D01* +X75844355Y-79434962D01* +X75774504Y-79447667D01* +X75713733Y-79424306D01* +X75646094Y-79375163D01* +X75646093Y-79375162D01* +X75640752Y-79371282D01* +X75634724Y-79368598D01* +X75634722Y-79368597D01* +X75472319Y-79296291D01* +X75472318Y-79296291D01* +X75466288Y-79293606D01* +X75372888Y-79273753D01* +X75285944Y-79255272D01* +X75285939Y-79255272D01* +X75279487Y-79253900D01* +X75088513Y-79253900D01* +X75082061Y-79255272D01* +X75082056Y-79255272D01* +X74995112Y-79273753D01* +X74901712Y-79293606D01* +X74895682Y-79296291D01* +X74895681Y-79296291D01* +X74733278Y-79368597D01* +X74733276Y-79368598D01* +X74727248Y-79371282D01* +X74572747Y-79483534D01* +X74444960Y-79625456D01* +X74349473Y-79790844D01* +X74290458Y-79972472D01* +X74270496Y-80162400D01* +X74290458Y-80352328D01* +X74349473Y-80533956D01* +X74444960Y-80699344D01* +X74449378Y-80704251D01* +X74449379Y-80704252D01* +X74529406Y-80793131D01* +X74572747Y-80841266D01* +X74727248Y-80953518D01* +X74733276Y-80956202D01* +X74733278Y-80956203D01* +X74865453Y-81015051D01* +X74901712Y-81031194D01* +X74908165Y-81032566D01* +X74914451Y-81034608D01* +X74913733Y-81036819D01* +X74966830Y-81065493D01* +X75001144Y-81127647D01* +X75003886Y-81156823D01* +X75002980Y-81162543D01* +X75003726Y-81170435D01* +X75003726Y-81170437D01* +X75007141Y-81206561D01* +X75007700Y-81218419D01* +X75007700Y-84082676D01* +X74987698Y-84150797D01* +X74975342Y-84166979D01* +X74902160Y-84248256D01* +X74806673Y-84413644D01* +X74747658Y-84595272D01* +X74746968Y-84601833D01* +X74746968Y-84601835D01* +X74735574Y-84710241D01* +X74727696Y-84785200D01* +X74747658Y-84975128D01* +X74806673Y-85156756D01* +X74902160Y-85322144D01* +X74906578Y-85327051D01* +X74906579Y-85327052D01* +X74983720Y-85412726D01* +X75029947Y-85464066D01* +X75184448Y-85576318D01* +X75190476Y-85579002D01* +X75190478Y-85579003D01* +X75352879Y-85651308D01* +X75358912Y-85653994D01* +X75452312Y-85673847D01* +X75539256Y-85692328D01* +X75539261Y-85692328D01* +X75545713Y-85693700D01* +X75736687Y-85693700D01* +X75743139Y-85692328D01* +X75743144Y-85692328D01* +X75830088Y-85673847D01* +X75923488Y-85653994D01* +X75929515Y-85651311D01* +X75929523Y-85651308D01* +X76063398Y-85591703D01* +X76133765Y-85582269D01* +X76177647Y-85597692D01* +X76178285Y-85598060D01* +X76183622Y-85601938D01* +X76189648Y-85604621D01* +X76294512Y-85651309D01* +X76358086Y-85679614D01* +X76451486Y-85699467D01* +X76538430Y-85717948D01* +X76538435Y-85717948D01* +X76544887Y-85719320D01* +X76735861Y-85719320D01* +X76742313Y-85717948D01* +X76742318Y-85717948D01* +X76895720Y-85685341D01* +X76966511Y-85690743D01* +X77023144Y-85733560D01* +X77047637Y-85800198D01* +X77032216Y-85869499D01* +X77011012Y-85897683D01* +X76888900Y-86019795D01* +X76826588Y-86053821D01* +X76799805Y-86056700D01* +X73441195Y-86056700D01* +X73373074Y-86036698D01* +X73352100Y-86019795D01* +X72128852Y-84796547D01* +X72121312Y-84788261D01* +X72117200Y-84781782D01* +X72067548Y-84735156D01* +X72064707Y-84732402D01* +X72044970Y-84712665D01* +X72041773Y-84710185D01* +X72032751Y-84702480D01* +X72000521Y-84672214D01* +X71993575Y-84668395D01* +X71993572Y-84668393D01* +X71982766Y-84662452D01* +X71966247Y-84651601D01* +X71965783Y-84651241D01* +X71950241Y-84639186D01* +X71942972Y-84636041D01* +X71942968Y-84636038D01* +X71909663Y-84621626D01* +X71899013Y-84616409D01* +X71860260Y-84595105D01* +X71840637Y-84590067D01* +X71821934Y-84583663D01* +X71810620Y-84578767D01* +X71810619Y-84578767D01* +X71803345Y-84575619D01* +X71795522Y-84574380D01* +X71795512Y-84574377D01* +X71759676Y-84568701D01* +X71748056Y-84566295D01* +X71712911Y-84557272D01* +X71712910Y-84557272D01* +X71705230Y-84555300D01* +X71684976Y-84555300D01* +X71665265Y-84553749D01* +X71653086Y-84551820D01* +X71645257Y-84550580D01* +X71637365Y-84551326D01* +X71601239Y-84554741D01* +X71589381Y-84555300D01* +X71553875Y-84555300D01* +X71485754Y-84535298D01* +X71453049Y-84504865D01* +X71440295Y-84487847D01* +X71374861Y-84400539D01* +X71258305Y-84313185D01* +X71121916Y-84262055D01* +X71059734Y-84255300D01* +X70113466Y-84255300D01* +X70051284Y-84262055D01* +X70043888Y-84264827D01* +X70043882Y-84264829D01* +X69996924Y-84282433D01* +X69926117Y-84287616D01* +X69863748Y-84253695D01* +X69829619Y-84191439D01* +X69827260Y-84152530D01* +X69827425Y-84150797D01* +X70039808Y-81915996D01* +X70041043Y-81906699D01* +X70047440Y-81869273D01* +X70623110Y-78500935D01* +X70626615Y-78485981D01* +X70627432Y-78483258D01* +X71619971Y-75172549D01* +X71624540Y-75159832D01* +X72956498Y-71996781D01* +X72959924Y-71989332D01* +X74543551Y-68822078D01* +X74549559Y-68811397D01* +X76368618Y-65917070D01* +X76379676Y-65902068D01* +X76512657Y-65747105D01* +X76795979Y-65416949D01* +X76824012Y-65392665D01* +X76825479Y-65391733D01* +X77620907Y-64886191D01* +X77643202Y-64874952D01* +X78367384Y-64596003D01* +X78572689Y-64516921D01* +X78617979Y-64508500D01* +X79633279Y-64508500D01* +X79653884Y-64510196D01* +X80095550Y-64583409D01* +X80096613Y-64583590D01* +X80176566Y-64597547D01* +X80207172Y-64594116D01* +X80223974Y-64593363D01* +X80235783Y-64593623D01* +X80253860Y-64594021D01* +X80262531Y-64591691D01* +X80262534Y-64591691D01* +X80286035Y-64585377D01* +X80286920Y-64585174D01* +X80287787Y-64585077D01* +X80290146Y-64584434D01* +X80290159Y-64584431D01* +X80331089Y-64573274D01* +X80331532Y-64573154D01* +X80346797Y-64569053D01* +X80394529Y-64556229D01* +X80395152Y-64555850D01* +X80395672Y-64555668D01* +X81035536Y-64381246D01* +X81192653Y-64338417D01* +X81212808Y-64335098D01* +X81216694Y-64334300D01* +X81225657Y-64333760D01* +X81258633Y-64321921D01* +X81271222Y-64317402D01* +X81280654Y-64314429D01* +X81287083Y-64312676D01* +X81287087Y-64312675D01* +X81291411Y-64311496D01* +X81305952Y-64305205D01* +X81313388Y-64302265D01* +X81330993Y-64295944D01* +X81339972Y-64291048D01* +X81350247Y-64286038D01* +X81383000Y-64271866D01* +X81383001Y-64271866D01* +X81391239Y-64268301D01* +X81400081Y-64260961D01* +X81420242Y-64247287D01* +X82286675Y-63774919D01* +X82289919Y-63773211D01* +X82306914Y-63764577D01* +X82347855Y-63743778D01* +X82374779Y-63718467D01* +X82385695Y-63709311D01* +X82403041Y-63696358D01* +X82415168Y-63687303D01* +X82420563Y-63680131D01* +X82420565Y-63680129D01* +X82456501Y-63632355D01* +X82457794Y-63630667D01* +X83006518Y-62926260D01* +X83022982Y-62909047D01* +X83023780Y-62908141D01* +X83030605Y-62902320D01* +X83035520Y-62894820D01* +X83035525Y-62894814D01* +X83056592Y-62862664D01* +X83062582Y-62854290D01* +X83065982Y-62849925D01* +X83068739Y-62846386D01* +X83077008Y-62831929D01* +X83080992Y-62825429D01* +X83089277Y-62812787D01* +X83089280Y-62812781D01* +X83091948Y-62808710D01* +X83095845Y-62800114D01* +X83101230Y-62789581D01* +X83118286Y-62759762D01* +X83118287Y-62759759D01* +X83122744Y-62751967D01* +X83124835Y-62743236D01* +X83124837Y-62743231D01* +X83125621Y-62739957D01* +X83133396Y-62717281D01* +X83403330Y-62121835D01* +X83527021Y-61848987D01* +X83527713Y-61847489D01* +X83552604Y-61794472D01* +X83558131Y-61782700D01* +X83563035Y-61751204D01* +X83566558Y-61735371D01* +X83575471Y-61704764D01* +X83575350Y-61595970D01* +X83575350Y-59923613D01* +X83578174Y-59897085D01* +X83647978Y-59572968D01* +X83799571Y-58869091D01* +X83812119Y-58835309D01* +X83818229Y-58824103D01* +X84231415Y-58066217D01* +X84252946Y-58037434D01* +X84988326Y-57302051D01* +X85008463Y-57285691D01* +X85187149Y-57168845D01* +X87132752Y-55896580D01* +X87140487Y-55891910D01* +X87181204Y-55869275D01* +X89953936Y-54327885D01* +X100282000Y-54327885D01* +X100286475Y-54343124D01* +X100287865Y-54344329D01* +X100295548Y-54346000D01* +X101017885Y-54346000D01* +X101033124Y-54341525D01* +X101034329Y-54340135D01* +X101036000Y-54332452D01* +X101036000Y-53092076D01* +X101032027Y-53078545D01* +X101024232Y-53077425D01* +X100916479Y-53109138D01* +X100905111Y-53113731D01* +X100740846Y-53199607D01* +X100730585Y-53206321D01* +X100586127Y-53322468D01* +X100577368Y-53331046D01* +X100458222Y-53473039D01* +X100451292Y-53483159D01* +X100361998Y-53645585D01* +X100357166Y-53656858D01* +X100301120Y-53833538D01* +X100298570Y-53845532D01* +X100282393Y-53989761D01* +X100282000Y-53996785D01* +X100282000Y-54327885D01* +X89953936Y-54327885D01* +X90130927Y-54229494D01* +X90144328Y-54223048D01* +X93387316Y-52892806D01* +X93396183Y-52889552D01* +X96282522Y-51951342D01* +X96691530Y-51818393D01* +X96705272Y-51815499D01* +X96705250Y-51815411D01* +X96713966Y-51813250D01* +X96722894Y-51812346D01* +X96731208Y-51808973D01* +X96731214Y-51808972D01* +X96770212Y-51793153D01* +X96778618Y-51790086D01* +X96786897Y-51787395D01* +X96786905Y-51787392D01* +X96791168Y-51786006D01* +X96795195Y-51784028D01* +X96795198Y-51784027D01* +X96799367Y-51781979D01* +X96802984Y-51780203D01* +X96811165Y-51776540D01* +X96849548Y-51760971D01* +X96849552Y-51760969D01* +X96857869Y-51757595D01* +X96864908Y-51752021D01* +X96872660Y-51747503D01* +X96872716Y-51747599D01* +X96873394Y-51747171D01* +X96873327Y-51747073D01* +X96880741Y-51742014D01* +X96888801Y-51738056D01* +X96895425Y-51731996D01* +X96895427Y-51731994D01* +X96925810Y-51704194D01* +X96932617Y-51698396D01* +X96972054Y-51667163D01* +X96977246Y-51659836D01* +X96983421Y-51653322D01* +X96983504Y-51653401D01* +X96984032Y-51652804D01* +X96983943Y-51652731D01* +X96989641Y-51645792D01* +X96996265Y-51639732D01* +X97022342Y-51596746D01* +X97027263Y-51589250D01* +X97033943Y-51579823D01* +X97033944Y-51579822D01* +X97036761Y-51575846D01* +X97038936Y-51571479D01* +X97042390Y-51564543D01* +X97047452Y-51555356D01* +X97067156Y-51522876D01* +X97067156Y-51522875D01* +X97071813Y-51515199D01* +X97074138Y-51506489D01* +X97083085Y-51482817D01* +X97198962Y-51250110D01* +X97209856Y-51232158D01* +X97305934Y-51100076D01* +X97365845Y-51017713D01* +X97548465Y-50766657D01* +X100282000Y-50766657D01* +X100282301Y-50772805D01* +X100295812Y-50910603D01* +X100298195Y-50922638D01* +X100351767Y-51100076D01* +X100356441Y-51111416D01* +X100443460Y-51275077D01* +X100450249Y-51285294D01* +X100567397Y-51428933D01* +X100576041Y-51437637D01* +X100718856Y-51555784D01* +X100729027Y-51562644D01* +X100892076Y-51650804D01* +X100903381Y-51655556D01* +X101018692Y-51691250D01* +X101032795Y-51691456D01* +X101036000Y-51684701D01* +X101036000Y-51677924D01* +X101544000Y-51677924D01* +X101547973Y-51691455D01* +X101555768Y-51692575D01* +X101663521Y-51660862D01* +X101674889Y-51656269D01* +X101839154Y-51570393D01* +X101849415Y-51563679D01* +X101993873Y-51447532D01* +X102002632Y-51438954D01* +X102121778Y-51296961D01* +X102128708Y-51286841D01* +X102218002Y-51124415D01* +X102222834Y-51113142D01* +X102278880Y-50936462D01* +X102281430Y-50924468D01* +X102297607Y-50780239D01* +X102298000Y-50773215D01* +X102298000Y-50766657D01* +X108922000Y-50766657D01* +X108922301Y-50772805D01* +X108935812Y-50910603D01* +X108938195Y-50922638D01* +X108991767Y-51100076D01* +X108996441Y-51111416D01* +X109083460Y-51275077D01* +X109090249Y-51285294D01* +X109207397Y-51428933D01* +X109216041Y-51437637D01* +X109358856Y-51555784D01* +X109369027Y-51562644D01* +X109532076Y-51650804D01* +X109543381Y-51655556D01* +X109658692Y-51691250D01* +X109672795Y-51691456D01* +X109676000Y-51684701D01* +X109676000Y-51677924D01* +X110184000Y-51677924D01* +X110187973Y-51691455D01* +X110195768Y-51692575D01* +X110303521Y-51660862D01* +X110314889Y-51656269D01* +X110479154Y-51570393D01* +X110489415Y-51563679D01* +X110633873Y-51447532D01* +X110642632Y-51438954D01* +X110761778Y-51296961D01* +X110768708Y-51286841D01* +X110858002Y-51124415D01* +X110862834Y-51113142D01* +X110918880Y-50936462D01* +X110921430Y-50924468D01* +X110937607Y-50780239D01* +X110938000Y-50773215D01* +X110938000Y-50692115D01* +X110933525Y-50676876D01* +X110932135Y-50675671D01* +X110924452Y-50674000D01* +X110202115Y-50674000D01* +X110186876Y-50678475D01* +X110185671Y-50679865D01* +X110184000Y-50687548D01* +X110184000Y-51677924D01* +X109676000Y-51677924D01* +X109676000Y-50692115D01* +X109671525Y-50676876D01* +X109670135Y-50675671D01* +X109662452Y-50674000D01* +X108940115Y-50674000D01* +X108924876Y-50678475D01* +X108923671Y-50679865D01* +X108922000Y-50687548D01* +X108922000Y-50766657D01* +X102298000Y-50766657D01* +X102298000Y-50692115D01* +X102293525Y-50676876D01* +X102292135Y-50675671D01* +X102284452Y-50674000D01* +X101562115Y-50674000D01* +X101546876Y-50678475D01* +X101545671Y-50679865D01* +X101544000Y-50687548D01* +X101544000Y-51677924D01* +X101036000Y-51677924D01* +X101036000Y-50692115D01* +X101031525Y-50676876D01* +X101030135Y-50675671D01* +X101022452Y-50674000D01* +X100300115Y-50674000D01* +X100284876Y-50678475D01* +X100283671Y-50679865D01* +X100282000Y-50687548D01* +X100282000Y-50766657D01* +X97548465Y-50766657D01* +X97804965Y-50414035D01* +X97828167Y-50389749D01* +X98231524Y-50067195D01* +X98513458Y-49841740D01* +X98555026Y-49819739D01* +X99490137Y-49531467D01* +X99510067Y-49527054D01* +X100295490Y-49418947D01* +X100365700Y-49429473D01* +X100419075Y-49476288D01* +X100438667Y-49544528D01* +X100423084Y-49604471D01* +X100361994Y-49715593D01* +X100357166Y-49726858D01* +X100301120Y-49903538D01* +X100298570Y-49915532D01* +X100282393Y-50059761D01* +X100282000Y-50066785D01* +X100282000Y-50147885D01* +X100286475Y-50163124D01* +X100287865Y-50164329D01* +X100295548Y-50166000D01* +X102279885Y-50166000D01* +X102295124Y-50161525D01* +X102296329Y-50160135D01* +X102298000Y-50152452D01* +X102298000Y-50073343D01* +X102297699Y-50067195D01* +X102284188Y-49929397D01* +X102281805Y-49917362D01* +X102228233Y-49739924D01* +X102223559Y-49728584D01* +X102136540Y-49564923D01* +X102129751Y-49554706D01* +X102012603Y-49411067D01* +X102001771Y-49400160D01* +X101967963Y-49337730D01* +X101973274Y-49266932D01* +X102016019Y-49210245D01* +X102082412Y-49185680D01* +X103309780Y-49100104D01* +X105477951Y-48948932D01* +X105492568Y-48948764D01* +X107231877Y-49029835D01* +G37* +%TD.AperFunction*% +%TA.AperFunction,Conductor*% +G36* +X71612074Y-86960578D02* +G01* +X72230500Y-87579004D01* +X72264526Y-87641316D01* +X72259461Y-87712131D01* +X72230501Y-87757194D01* +X72189698Y-87797997D01* +X72148895Y-87838801D01* +X72086584Y-87872825D01* +X72015768Y-87867761D01* +X71970705Y-87838800D01* +X71928452Y-87796547D01* +X71920912Y-87788261D01* +X71916800Y-87781782D01* +X71867148Y-87735156D01* +X71864307Y-87732402D01* +X71844570Y-87712665D01* +X71841373Y-87710185D01* +X71832351Y-87702480D01* +X71805900Y-87677641D01* +X71800121Y-87672214D01* +X71793175Y-87668395D01* +X71793172Y-87668393D01* +X71782366Y-87662452D01* +X71765847Y-87651601D01* +X71765383Y-87651241D01* +X71749841Y-87639186D01* +X71742572Y-87636041D01* +X71742568Y-87636038D01* +X71709263Y-87621626D01* +X71698613Y-87616409D01* +X71659860Y-87595105D01* +X71640237Y-87590067D01* +X71621534Y-87583663D01* +X71610220Y-87578767D01* +X71610219Y-87578767D01* +X71602945Y-87575619D01* +X71595116Y-87574379D01* +X71595113Y-87574378D01* +X71586151Y-87572958D01* +X71521999Y-87542544D01* +X71484474Y-87482274D01* +X71480051Y-87446013D01* +X71473516Y-87442800D01* +X71188924Y-87442800D01* +X71120803Y-87422798D01* +X71114863Y-87418736D01* +X71061263Y-87379793D01* +X71061262Y-87379792D01* +X71055921Y-87375912D01* +X71049893Y-87373228D01* +X71049891Y-87373227D01* +X70894195Y-87303907D01* +X70840099Y-87257927D01* +X70819450Y-87190000D01* +X70838802Y-87121691D01* +X70894195Y-87073693D01* +X70903319Y-87069631D01* +X70944020Y-87051510D01* +X71049891Y-87004373D01* +X71049893Y-87004372D01* +X71055921Y-87001688D01* +X71093410Y-86974451D01* +X71114863Y-86958864D01* +X71181731Y-86935006D01* +X71188924Y-86934800D01* +X71466969Y-86934800D01* +X71487481Y-86928777D01* +X71558477Y-86928777D01* +X71612074Y-86960578D01* +G37* +%TD.AperFunction*% +%TA.AperFunction,Conductor*% +G36* +X86232338Y-69434245D02* +G01* +X86273520Y-69492078D01* +X86280450Y-69533288D01* +X86280450Y-87369426D01* +X86260448Y-87437547D01* +X86206792Y-87484040D01* +X86136518Y-87494144D01* +X86071938Y-87464650D01* +X86065355Y-87458521D01* +X84780055Y-86173221D01* +X84770953Y-86163078D01* +X84751097Y-86138382D01* +X84747232Y-86133575D01* +X84708778Y-86101308D01* +X84705131Y-86098128D01* +X84703319Y-86096485D01* +X84701125Y-86094291D01* +X84667851Y-86066958D01* +X84667053Y-86066296D01* +X84595726Y-86006446D01* +X84591056Y-86003878D01* +X84586939Y-86000497D01* +X84505114Y-85956623D01* +X84503955Y-85955994D01* +X84427819Y-85914138D01* +X84427811Y-85914135D01* +X84422413Y-85911167D01* +X84417331Y-85909555D01* +X84412637Y-85907038D01* +X84323669Y-85879838D01* +X84322641Y-85879518D01* +X84233894Y-85851365D01* +X84228598Y-85850771D01* +X84223502Y-85849213D01* +X84130943Y-85839810D01* +X84129807Y-85839689D01* +X84096192Y-85835919D01* +X84083470Y-85834492D01* +X84083466Y-85834492D01* +X84079973Y-85834100D01* +X84076446Y-85834100D01* +X84075461Y-85834045D01* +X84069781Y-85833598D01* +X84040375Y-85830611D01* +X84032863Y-85829848D01* +X84032861Y-85829848D01* +X84026738Y-85829226D01* +X83984459Y-85833223D01* +X83981091Y-85833541D01* +X83969233Y-85834100D01* +X82395100Y-85834100D01* +X82326979Y-85814098D01* +X82280486Y-85760442D01* +X82269100Y-85708100D01* +X82269100Y-84355967D01* +X82269627Y-84344784D01* +X82271302Y-84337291D01* +X82269741Y-84287616D01* +X82269162Y-84269214D01* +X82269100Y-84265255D01* +X82269100Y-84237344D01* +X82268595Y-84233344D01* +X82267662Y-84221501D01* +X82266522Y-84185229D01* +X82266273Y-84177310D01* +X82260622Y-84157858D01* +X82256614Y-84138506D01* +X82255067Y-84126263D01* +X82254074Y-84118403D01* +X82251156Y-84111032D01* +X82237800Y-84077297D01* +X82233955Y-84066070D01* +X82233321Y-84063887D01* +X82221618Y-84023607D01* +X82212104Y-84007519D01* +X82211307Y-84006172D01* +X82202612Y-83988424D01* +X82195152Y-83969583D01* +X82169164Y-83933813D01* +X82162648Y-83923893D01* +X82144180Y-83892665D01* +X82144178Y-83892662D01* +X82140142Y-83885838D01* +X82125818Y-83871514D01* +X82112983Y-83856487D01* +X82101072Y-83840093D01* +X82078642Y-83821537D01* +X82067002Y-83811908D01* +X82058222Y-83803918D01* +X82012253Y-83757949D01* +X82004713Y-83749663D01* +X82000600Y-83743182D01* +X81950947Y-83696555D01* +X81948106Y-83693801D01* +X81928370Y-83674065D01* +X81925173Y-83671585D01* +X81916151Y-83663880D01* +X81889700Y-83639041D01* +X81883921Y-83633614D01* +X81876975Y-83629795D01* +X81876972Y-83629793D01* +X81866166Y-83623852D01* +X81849647Y-83613001D01* +X81849183Y-83612641D01* +X81833641Y-83600586D01* +X81826372Y-83597441D01* +X81826368Y-83597438D01* +X81793063Y-83583026D01* +X81782413Y-83577809D01* +X81743660Y-83556505D01* +X81724037Y-83551467D01* +X81705334Y-83545063D01* +X81694020Y-83540167D01* +X81694019Y-83540167D01* +X81686745Y-83537019D01* +X81678922Y-83535780D01* +X81678912Y-83535777D01* +X81643076Y-83530101D01* +X81631456Y-83527695D01* +X81596311Y-83518672D01* +X81596310Y-83518672D01* +X81588630Y-83516700D01* +X81568376Y-83516700D01* +X81548665Y-83515149D01* +X81536486Y-83513220D01* +X81528657Y-83511980D01* +X81520765Y-83512726D01* +X81484639Y-83516141D01* +X81472781Y-83516700D01* +X80040194Y-83516700D01* +X79972073Y-83496698D01* +X79925580Y-83443042D01* +X79915476Y-83372768D01* +X79944970Y-83308188D01* +X79951099Y-83301605D01* +X81164247Y-82088457D01* +X81172537Y-82080913D01* +X81179018Y-82076800D01* +X81225659Y-82027132D01* +X81228413Y-82024291D01* +X81248134Y-82004570D01* +X81250612Y-82001375D01* +X81258318Y-81992353D01* +X81283158Y-81965901D01* +X81288586Y-81960121D01* +X81298346Y-81942368D01* +X81309199Y-81925845D01* +X81316753Y-81916106D01* +X81321613Y-81909841D01* +X81339176Y-81869257D01* +X81344383Y-81858627D01* +X81365695Y-81819860D01* +X81367666Y-81812183D01* +X81367668Y-81812178D01* +X81370732Y-81800242D01* +X81377138Y-81781530D01* +X81382034Y-81770217D01* +X81385181Y-81762945D01* +X81388383Y-81742732D01* +X81392097Y-81719281D01* +X81394504Y-81707660D01* +X81403528Y-81672511D01* +X81403528Y-81672510D01* +X81405500Y-81664830D01* +X81405500Y-81644569D01* +X81407051Y-81624858D01* +X81408979Y-81612685D01* +X81410219Y-81604857D01* +X81406059Y-81560846D01* +X81405500Y-81548989D01* +X81405500Y-79316395D01* +X81425502Y-79248274D01* +X81479158Y-79201781D01* +X81540113Y-79191829D01* +X81540113Y-79191300D01* +X81731087Y-79191300D01* +X81737539Y-79189928D01* +X81737544Y-79189928D01* +X81824487Y-79171447D01* +X81917888Y-79151594D01* +X81931672Y-79145457D01* +X82086322Y-79076603D01* +X82086324Y-79076602D01* +X82092352Y-79073918D01* +X82133039Y-79044357D01* +X82199906Y-79020499D01* +X82269058Y-79036579D01* +X82281161Y-79044357D01* +X82321848Y-79073918D01* +X82327876Y-79076602D01* +X82327878Y-79076603D01* +X82482528Y-79145457D01* +X82496312Y-79151594D01* +X82589713Y-79171447D01* +X82676656Y-79189928D01* +X82676661Y-79189928D01* +X82683113Y-79191300D01* +X82874087Y-79191300D01* +X82880539Y-79189928D01* +X82880544Y-79189928D01* +X82967487Y-79171447D01* +X83060888Y-79151594D01* +X83074672Y-79145457D01* +X83229322Y-79076603D01* +X83229324Y-79076602D01* +X83235352Y-79073918D01* +X83389853Y-78961666D01* +X83504509Y-78834328D01* +X83513221Y-78824652D01* +X83513222Y-78824651D01* +X83517640Y-78819744D01* +X83613127Y-78654356D01* +X83672142Y-78472728D01* +X83692104Y-78282800D01* +X83675351Y-78123406D01* +X83672832Y-78099435D01* +X83672832Y-78099433D01* +X83672142Y-78092872D01* +X83613127Y-77911244D01* +X83517640Y-77745856D01* +X83419464Y-77636820D01* +X83388746Y-77572813D01* +X83387100Y-77552510D01* +X83387100Y-77342439D01* +X83407102Y-77274318D01* +X83424005Y-77253344D01* +X84241634Y-76435715D01* +X84254025Y-76424848D01* +X84272837Y-76410413D01* +X84279387Y-76405387D01* +X84303874Y-76373475D01* +X84303880Y-76373469D01* +X84371896Y-76284829D01* +X84371897Y-76284827D01* +X84376924Y-76278276D01* +X84438238Y-76130251D01* +X84440791Y-76110857D01* +X84453900Y-76011285D01* +X84453900Y-76011280D01* +X84459150Y-75971400D01* +X84454978Y-75939707D01* +X84453900Y-75923264D01* +X84453900Y-73405439D01* +X84473902Y-73337318D01* +X84490805Y-73316344D01* +X85613234Y-72193915D01* +X85625625Y-72183048D01* +X85644437Y-72168613D01* +X85650987Y-72163587D01* +X85675474Y-72131675D01* +X85675477Y-72131672D01* +X85743333Y-72043240D01* +X85748524Y-72036475D01* +X85809838Y-71888450D01* +X85825500Y-71769485D01* +X85825500Y-71769478D01* +X85830750Y-71729600D01* +X85826578Y-71697907D01* +X85825500Y-71681464D01* +X85825500Y-69818290D01* +X85845502Y-69750169D01* +X85857864Y-69733980D01* +X85951621Y-69629852D01* +X85951622Y-69629851D01* +X85956040Y-69624944D01* +X86045331Y-69470288D01* +X86096714Y-69421295D01* +X86166427Y-69407859D01* +X86232338Y-69434245D01* +G37* +%TD.AperFunction*% +%TA.AperFunction,Conductor*% +G36* +X78736774Y-72060210D02* +G01* +X78768599Y-72123675D01* +X78764450Y-72185071D01* +X78730178Y-72290549D01* +X78710058Y-72352472D01* +X78690096Y-72542400D01* +X78710058Y-72732328D01* +X78769073Y-72913956D01* +X78864560Y-73079344D01* +X78868978Y-73084251D01* +X78868979Y-73084252D01* +X78976678Y-73203864D01* +X78992347Y-73221266D01* +X79029359Y-73248157D01* +X79136359Y-73325897D01* +X79146848Y-73333518D01* +X79152876Y-73336202D01* +X79152878Y-73336203D01* +X79294072Y-73399066D01* +X79321312Y-73411194D01* +X79414712Y-73431047D01* +X79501656Y-73449528D01* +X79501661Y-73449528D01* +X79508113Y-73450900D01* +X79699087Y-73450900D01* +X79705539Y-73449528D01* +X79705544Y-73449528D01* +X79792488Y-73431047D01* +X79885888Y-73411194D01* +X79913128Y-73399066D01* +X80054322Y-73336203D01* +X80054324Y-73336202D01* +X80060352Y-73333518D01* +X80070842Y-73325897D01* +X80177841Y-73248157D01* +X80244709Y-73224299D01* +X80313860Y-73240379D01* +X80345537Y-73265781D01* +X80465547Y-73399066D01* +X80620048Y-73511318D01* +X80626076Y-73514002D01* +X80626078Y-73514003D01* +X80702929Y-73548219D01* +X80794512Y-73588994D01* +X80880324Y-73607234D01* +X80974856Y-73627328D01* +X80974861Y-73627328D01* +X80981313Y-73628700D01* +X81172287Y-73628700D01* +X81178739Y-73627328D01* +X81178744Y-73627328D01* +X81273276Y-73607234D01* +X81359088Y-73588994D01* +X81450671Y-73548219D01* +X81527522Y-73514003D01* +X81527524Y-73514002D01* +X81533552Y-73511318D01* +X81688053Y-73399066D01* +X81815840Y-73257144D01* +X81859181Y-73182075D01* +X81910563Y-73133082D01* +X81980277Y-73119646D01* +X82046188Y-73146032D01* +X82087370Y-73203864D01* +X82094300Y-73245075D01* +X82094300Y-75072605D01* +X82074298Y-75140726D01* +X82057395Y-75161700D01* +X80379741Y-76839354D01* +X80371463Y-76846887D01* +X80364982Y-76851000D01* +X80359555Y-76856780D01* +X80359553Y-76856781D01* +X80318365Y-76900643D01* +X80315609Y-76903487D01* +X79987699Y-77231396D01* +X79925387Y-77265421D01* +X79898604Y-77268300D01* +X79442178Y-77268300D01* +X79374057Y-77248298D01* +X79327564Y-77194642D01* +X79321181Y-77177453D01* +X79308357Y-77133312D01* +X79308356Y-77133310D01* +X79306145Y-77125699D01* +X79260547Y-77048597D01* +X79225491Y-76989320D01* +X79225489Y-76989317D01* +X79221453Y-76982493D01* +X79103807Y-76864847D01* +X79096983Y-76860811D01* +X79096980Y-76860809D01* +X78967427Y-76784192D01* +X78967428Y-76784192D01* +X78960601Y-76780155D01* +X78952990Y-76777944D01* +X78952988Y-76777943D01* +X78865142Y-76752422D01* +X78800831Y-76733738D01* +X78794426Y-76733234D01* +X78794421Y-76733233D01* +X78765958Y-76730993D01* +X78765950Y-76730993D01* +X78763502Y-76730800D01* +X78330498Y-76730800D01* +X78328050Y-76730993D01* +X78328042Y-76730993D01* +X78299579Y-76733233D01* +X78299574Y-76733234D01* +X78293169Y-76733738D01* +X78228858Y-76752422D01* +X78141012Y-76777943D01* +X78141010Y-76777944D01* +X78133399Y-76780155D01* +X78126577Y-76784189D01* +X78121404Y-76786428D01* +X78050942Y-76795124D01* +X78021326Y-76786428D01* +X78002790Y-76778407D01* +X77868395Y-76739361D01* +X77854294Y-76739401D01* +X77851000Y-76746670D01* +X77851000Y-76984458D01* +X77833453Y-77048597D01* +X77787855Y-77125699D01* +X77741438Y-77285469D01* +X77738500Y-77322798D01* +X77738500Y-78480802D01* +X77738693Y-78483250D01* +X77738693Y-78483258D01* +X77740085Y-78500938D01* +X77741438Y-78518131D01* +X77766985Y-78606066D01* +X77781015Y-78654356D01* +X77787855Y-78677901D01* +X77791892Y-78684727D01* +X77833453Y-78755003D01* +X77851000Y-78819142D01* +X77851000Y-79051178D01* +X77855474Y-79066416D01* +X77864882Y-79074568D01* +X77903266Y-79134294D01* +X77903266Y-79205290D01* +X77881929Y-79247020D01* +X77878156Y-79251884D01* +X77872547Y-79257493D01* +X77868511Y-79264317D01* +X77868509Y-79264320D01* +X77849602Y-79296291D01* +X77787855Y-79400699D01* +X77785644Y-79408310D01* +X77785643Y-79408312D01* +X77777901Y-79434962D01* +X77741438Y-79560469D01* +X77738500Y-79597798D01* +X77738500Y-80755802D01* +X77741438Y-80793131D01* +X77787855Y-80952901D01* +X77791892Y-80959727D01* +X77868509Y-81089280D01* +X77868511Y-81089283D01* +X77872547Y-81096107D01* +X77878155Y-81101715D01* +X77883011Y-81107975D01* +X77881504Y-81109144D01* +X77910621Y-81162467D01* +X77913500Y-81189250D01* +X77913500Y-81463205D01* +X77893498Y-81531326D01* +X77876595Y-81552300D01* +X76489795Y-82939100D01* +X76427483Y-82973126D01* +X76356668Y-82968061D01* +X76299832Y-82925514D01* +X76275021Y-82858994D01* +X76274700Y-82850005D01* +X76274700Y-81497194D01* +X76294702Y-81429073D01* +X76311605Y-81408099D01* +X76335241Y-81384463D01* +X76397553Y-81350437D01* +X76428985Y-81347681D01* +X76430498Y-81347800D01* +X76863502Y-81347800D01* +X76865950Y-81347607D01* +X76865958Y-81347607D01* +X76894421Y-81345367D01* +X76894426Y-81345366D01* +X76900831Y-81344862D01* +X77000769Y-81315828D01* +X77052988Y-81300657D01* +X77052990Y-81300656D01* +X77060601Y-81298445D01* +X77108352Y-81270205D01* +X77196980Y-81217791D01* +X77196983Y-81217789D01* +X77203807Y-81213753D01* +X77321453Y-81096107D01* +X77325489Y-81089283D01* +X77325491Y-81089280D01* +X77402108Y-80959727D01* +X77406145Y-80952901D01* +X77452562Y-80793131D01* +X77455500Y-80755802D01* +X77455500Y-79597798D01* +X77452562Y-79560469D01* +X77416099Y-79434962D01* +X77408357Y-79408312D01* +X77408356Y-79408310D01* +X77406145Y-79400699D01* +X77321453Y-79257493D01* +X77315844Y-79251884D01* +X77311601Y-79246414D01* +X77285654Y-79180329D01* +X77299555Y-79110706D01* +X77337446Y-79069184D01* +X77343000Y-79056930D01* +X77343000Y-78819142D01* +X77360547Y-78755003D01* +X77402108Y-78684727D01* +X77406145Y-78677901D01* +X77412986Y-78654356D01* +X77427015Y-78606066D01* +X77452562Y-78518131D01* +X77453916Y-78500938D01* +X77455307Y-78483258D01* +X77455307Y-78483250D01* +X77455500Y-78480802D01* +X77455500Y-77322798D01* +X77452562Y-77285469D01* +X77406145Y-77125699D01* +X77360547Y-77048597D01* +X77343000Y-76984458D01* +X77343000Y-76752422D01* +X77339027Y-76738891D01* +X77331129Y-76737756D01* +X77191210Y-76778407D01* +X77172674Y-76786428D01* +X77102212Y-76795124D01* +X77072596Y-76786428D01* +X77067423Y-76784189D01* +X77060601Y-76780155D01* +X77052990Y-76777944D01* +X77052988Y-76777943D01* +X76965142Y-76752422D01* +X76900831Y-76733738D01* +X76894426Y-76733234D01* +X76894421Y-76733233D01* +X76865958Y-76730993D01* +X76865950Y-76730993D01* +X76863502Y-76730800D01* +X76430498Y-76730800D01* +X76428050Y-76730993D01* +X76428042Y-76730993D01* +X76399579Y-76733233D01* +X76399574Y-76733234D01* +X76393169Y-76733738D01* +X76328858Y-76752422D01* +X76241012Y-76777943D01* +X76241010Y-76777944D01* +X76233399Y-76780155D01* +X76226572Y-76784192D01* +X76226573Y-76784192D01* +X76097020Y-76860809D01* +X76097017Y-76860811D01* +X76090193Y-76864847D01* +X76032595Y-76922445D01* +X75970283Y-76956471D01* +X75899468Y-76951406D01* +X75842632Y-76908859D01* +X75817821Y-76842339D01* +X75817500Y-76833350D01* +X75817500Y-74279394D01* +X75837502Y-74211273D01* +X75854405Y-74190299D01* +X77917200Y-72127505D01* +X77979512Y-72093479D01* +X78006295Y-72090600D01* +X78341272Y-72090600D01* +X78344518Y-72090263D01* +X78344522Y-72090263D01* +X78438435Y-72080519D01* +X78438439Y-72080518D01* +X78445293Y-72079807D01* +X78451829Y-72077626D01* +X78451831Y-72077626D01* +X78604741Y-72026611D01* +X78675690Y-72024027D01* +X78736774Y-72060210D01* +G37* +%TD.AperFunction*% +%TA.AperFunction,Conductor*% +G36* +X110284227Y-62822602D02* +G01* +X110305197Y-62839501D01* +X111259597Y-63793902D01* +X111293621Y-63856212D01* +X111296500Y-63882995D01* +X111296500Y-64362725D01* +X111276498Y-64430846D01* +X111246065Y-64463551D01* +X111141739Y-64541739D01* +X111054385Y-64658295D01* +X111003255Y-64794684D01* +X110996500Y-64856866D01* +X110996500Y-65803134D01* +X111003255Y-65865316D01* +X111054385Y-66001705D01* +X111141739Y-66118261D01* +X111258295Y-66205615D01* +X111394684Y-66256745D01* +X111456866Y-66263500D01* +X112403134Y-66263500D01* +X112465316Y-66256745D01* +X112601705Y-66205615D01* +X112718261Y-66118261D01* +X112805615Y-66001705D01* +X112856745Y-65865316D01* +X112857598Y-65857460D01* +X112857917Y-65856120D01* +X112893135Y-65794473D01* +X112956090Y-65761653D01* +X113026795Y-65768079D01* +X113082802Y-65811711D01* +X113106500Y-65885266D01* +X113106500Y-66563134D01* +X113113255Y-66625316D01* +X113164385Y-66761705D01* +X113251739Y-66878261D01* +X113368295Y-66965615D01* +X113376703Y-66968767D01* +X113384575Y-66973077D01* +X113383739Y-66974604D01* +X113432004Y-67010862D01* +X113456702Y-67077424D01* +X113441493Y-67146772D01* +X113391206Y-67196890D01* +X113331008Y-67212200D01* +X98226661Y-67212200D01* +X98158540Y-67192198D01* +X98112047Y-67138542D01* +X98101943Y-67068268D01* +X98125835Y-67010635D01* +X98179786Y-66938648D01* +X98188324Y-66923054D01* +X98233478Y-66802606D01* +X98237105Y-66787351D01* +X98242631Y-66736486D01* +X98243000Y-66729672D01* +X98243000Y-66532115D01* +X98238525Y-66516876D01* +X98237135Y-66515671D01* +X98229452Y-66514000D01* +X96395116Y-66514000D01* +X96379877Y-66518475D01* +X96378672Y-66519865D01* +X96377001Y-66527548D01* +X96377001Y-66729669D01* +X96377371Y-66736490D01* +X96382895Y-66787352D01* +X96386521Y-66802604D01* +X96431676Y-66923054D01* +X96440214Y-66938648D01* +X96494165Y-67010635D01* +X96519013Y-67077141D01* +X96503960Y-67146524D01* +X96453786Y-67196754D01* +X96393339Y-67212200D01* +X94592094Y-67212200D01* +X94523973Y-67192198D01* +X94477480Y-67138542D01* +X94467376Y-67068268D01* +X94496870Y-67003688D01* +X94502999Y-66997105D01* +X95512219Y-65987885D01* +X96377000Y-65987885D01* +X96381475Y-66003124D01* +X96382865Y-66004329D01* +X96390548Y-66006000D01* +X97037885Y-66006000D01* +X97053124Y-66001525D01* +X97054329Y-66000135D01* +X97056000Y-65992452D01* +X97056000Y-65987885D01* +X97564000Y-65987885D01* +X97568475Y-66003124D01* +X97569865Y-66004329D01* +X97577548Y-66006000D01* +X98224884Y-66006000D01* +X98240123Y-66001525D01* +X98241328Y-66000135D01* +X98242999Y-65992452D01* +X98242999Y-65790331D01* +X98242629Y-65783510D01* +X98237105Y-65732648D01* +X98233479Y-65717396D01* +X98188324Y-65596946D01* +X98179786Y-65581351D01* +X98103285Y-65479276D01* +X98090724Y-65466715D01* +X97988649Y-65390214D01* +X97973054Y-65381676D01* +X97852606Y-65336522D01* +X97837351Y-65332895D01* +X97786486Y-65327369D01* +X97779672Y-65327000D01* +X97582115Y-65327000D01* +X97566876Y-65331475D01* +X97565671Y-65332865D01* +X97564000Y-65340548D01* +X97564000Y-65987885D01* +X97056000Y-65987885D01* +X97056000Y-65345116D01* +X97051525Y-65329877D01* +X97050135Y-65328672D01* +X97042452Y-65327001D01* +X96840331Y-65327001D01* +X96833510Y-65327371D01* +X96782648Y-65332895D01* +X96767396Y-65336521D01* +X96646946Y-65381676D01* +X96631351Y-65390214D01* +X96529276Y-65466715D01* +X96516715Y-65479276D01* +X96440214Y-65581351D01* +X96431676Y-65596946D01* +X96386522Y-65717394D01* +X96382895Y-65732649D01* +X96377369Y-65783514D01* +X96377000Y-65790328D01* +X96377000Y-65987885D01* +X95512219Y-65987885D01* +X96618499Y-64881605D01* +X96680811Y-64847579D01* +X96707594Y-64844700D01* +X98445860Y-64844700D01* +X98513981Y-64864702D01* +X98560474Y-64918358D01* +X98571123Y-64984307D01* +X98566869Y-65023467D01* +X98566500Y-65026866D01* +X98566500Y-65973134D01* +X98573255Y-66035316D01* +X98624385Y-66171705D01* +X98711739Y-66288261D01* +X98828295Y-66375615D01* +X98964684Y-66426745D01* +X99026866Y-66433500D01* +X99973134Y-66433500D01* +X100035316Y-66426745D01* +X100171705Y-66375615D01* +X100288261Y-66288261D01* +X100375615Y-66171705D01* +X100426745Y-66035316D01* +X100433500Y-65973134D01* +X100433500Y-65026866D01* +X100426745Y-64964684D01* +X100375615Y-64828295D01* +X100288261Y-64711739D01* +X100185651Y-64634837D01* +X100143137Y-64577977D01* +X100137263Y-64533442D01* +X100135702Y-64533491D01* +X100133562Y-64465401D01* +X100133500Y-64461443D01* +X100133500Y-64433544D01* +X100132996Y-64429553D01* +X100132063Y-64417695D01* +X100132005Y-64415842D01* +X100149866Y-64347129D01* +X100202041Y-64298980D01* +X100257943Y-64285900D01* +X100625006Y-64285900D01* +X100693127Y-64305902D01* +X100714101Y-64322805D01* +X100730082Y-64338786D01* +X100764108Y-64401098D01* +X100766774Y-64434347D01* +X100766500Y-64436866D01* +X100766500Y-65383134D01* +X100773255Y-65445316D01* +X100824385Y-65581705D01* +X100911739Y-65698261D01* +X101028295Y-65785615D01* +X101164684Y-65836745D01* +X101226866Y-65843500D01* +X102173134Y-65843500D01* +X102235316Y-65836745D01* +X102371705Y-65785615D01* +X102488261Y-65698261D01* +X102575615Y-65581705D01* +X102626745Y-65445316D01* +X102633500Y-65383134D01* +X102633500Y-64436866D01* +X102626745Y-64374684D01* +X102575615Y-64238295D01* +X102488261Y-64121739D01* +X102371705Y-64034385D01* +X102235316Y-63983255D01* +X102211440Y-63980661D01* +X102203016Y-63979746D01* +X102136316Y-63951573D01* +X102134644Y-63950190D01* +X102094902Y-63891359D01* +X102093275Y-63820382D01* +X102130280Y-63759791D01* +X102194168Y-63728826D01* +X102214953Y-63727100D01* +X102428406Y-63727100D01* +X102496527Y-63747102D01* +X102517501Y-63764005D01* +X103009595Y-64256099D01* +X103043621Y-64318411D01* +X103046500Y-64345194D01* +X103046500Y-65043134D01* +X103053255Y-65105316D01* +X103104385Y-65241705D01* +X103191739Y-65358261D01* +X103308295Y-65445615D01* +X103444684Y-65496745D01* +X103506866Y-65503500D01* +X104453134Y-65503500D01* +X104515316Y-65496745D01* +X104651705Y-65445615D01* +X104768261Y-65358261D01* +X104855615Y-65241705D01* +X104906745Y-65105316D01* +X104913500Y-65043134D01* +X104913500Y-64963134D01* +X105336500Y-64963134D01* +X105343255Y-65025316D01* +X105394385Y-65161705D01* +X105481739Y-65278261D01* +X105598295Y-65365615D01* +X105734684Y-65416745D01* +X105796866Y-65423500D01* +X106743134Y-65423500D01* +X106805316Y-65416745D01* +X106941705Y-65365615D01* +X107043039Y-65289669D01* +X108707001Y-65289669D01* +X108707371Y-65296490D01* +X108712895Y-65347352D01* +X108716521Y-65362604D01* +X108761676Y-65483054D01* +X108770214Y-65498649D01* +X108846715Y-65600724D01* +X108859276Y-65613285D01* +X108961351Y-65689786D01* +X108976946Y-65698324D01* +X109097394Y-65743478D01* +X109112649Y-65747105D01* +X109163514Y-65752631D01* +X109170328Y-65753000D01* +X109367885Y-65753000D01* +X109383124Y-65748525D01* +X109384329Y-65747135D01* +X109386000Y-65739452D01* +X109386000Y-65734884D01* +X109894000Y-65734884D01* +X109898475Y-65750123D01* +X109899865Y-65751328D01* +X109907548Y-65752999D01* +X110109669Y-65752999D01* +X110116490Y-65752629D01* +X110167352Y-65747105D01* +X110182604Y-65743479D01* +X110303054Y-65698324D01* +X110318649Y-65689786D01* +X110420724Y-65613285D01* +X110433285Y-65600724D01* +X110509786Y-65498649D01* +X110518324Y-65483054D01* +X110563478Y-65362606D01* +X110567105Y-65347351D01* +X110572631Y-65296486D01* +X110573000Y-65289672D01* +X110573000Y-65092115D01* +X110568525Y-65076876D01* +X110567135Y-65075671D01* +X110559452Y-65074000D01* +X109912115Y-65074000D01* +X109896876Y-65078475D01* +X109895671Y-65079865D01* +X109894000Y-65087548D01* +X109894000Y-65734884D01* +X109386000Y-65734884D01* +X109386000Y-65092115D01* +X109381525Y-65076876D01* +X109380135Y-65075671D01* +X109372452Y-65074000D01* +X108725116Y-65074000D01* +X108709877Y-65078475D01* +X108708672Y-65079865D01* +X108707001Y-65087548D01* +X108707001Y-65289669D01* +X107043039Y-65289669D01* +X107058261Y-65278261D01* +X107145615Y-65161705D01* +X107196745Y-65025316D01* +X107203500Y-64963134D01* +X107203500Y-64547885D01* +X108707000Y-64547885D01* +X108711475Y-64563124D01* +X108712865Y-64564329D01* +X108720548Y-64566000D01* +X109367885Y-64566000D01* +X109383124Y-64561525D01* +X109384329Y-64560135D01* +X109386000Y-64552452D01* +X109386000Y-64547885D01* +X109894000Y-64547885D01* +X109898475Y-64563124D01* +X109899865Y-64564329D01* +X109907548Y-64566000D01* +X110554884Y-64566000D01* +X110570123Y-64561525D01* +X110571328Y-64560135D01* +X110572999Y-64552452D01* +X110572999Y-64350331D01* +X110572629Y-64343510D01* +X110567105Y-64292648D01* +X110563479Y-64277396D01* +X110518324Y-64156946D01* +X110509786Y-64141351D01* +X110433285Y-64039276D01* +X110420724Y-64026715D01* +X110318649Y-63950214D01* +X110303054Y-63941676D01* +X110182606Y-63896522D01* +X110167351Y-63892895D01* +X110116486Y-63887369D01* +X110109672Y-63887000D01* +X109912115Y-63887000D01* +X109896876Y-63891475D01* +X109895671Y-63892865D01* +X109894000Y-63900548D01* +X109894000Y-64547885D01* +X109386000Y-64547885D01* +X109386000Y-63905116D01* +X109381525Y-63889877D01* +X109380135Y-63888672D01* +X109372452Y-63887001D01* +X109170331Y-63887001D01* +X109163510Y-63887371D01* +X109112648Y-63892895D01* +X109097396Y-63896521D01* +X108976946Y-63941676D01* +X108961351Y-63950214D01* +X108859276Y-64026715D01* +X108846715Y-64039276D01* +X108770214Y-64141351D01* +X108761676Y-64156946D01* +X108716522Y-64277394D01* +X108712895Y-64292649D01* +X108707369Y-64343514D01* +X108707000Y-64350328D01* +X108707000Y-64547885D01* +X107203500Y-64547885D01* +X107203500Y-64016866D01* +X107196745Y-63954684D01* +X107145615Y-63818295D01* +X107058261Y-63701739D01* +X106941705Y-63614385D01* +X106805316Y-63563255D01* +X106749440Y-63557185D01* +X106746531Y-63556869D01* +X106743134Y-63556500D01* +X105796866Y-63556500D01* +X105793469Y-63556869D01* +X105790560Y-63557185D01* +X105734684Y-63563255D01* +X105598295Y-63614385D01* +X105481739Y-63701739D01* +X105394385Y-63818295D01* +X105343255Y-63954684D01* +X105336500Y-64016866D01* +X105336500Y-64963134D01* +X104913500Y-64963134D01* +X104913500Y-64096866D01* +X104906745Y-64034684D01* +X104855615Y-63898295D01* +X104768261Y-63781739D01* +X104651705Y-63694385D01* +X104515316Y-63643255D01* +X104453134Y-63636500D01* +X104233995Y-63636500D01* +X104165874Y-63616498D01* +X104144900Y-63599595D01* +X103563000Y-63017695D01* +X103528974Y-62955383D01* +X103534039Y-62884568D01* +X103576586Y-62827732D01* +X103643106Y-62802921D01* +X103652095Y-62802600D01* +X110216106Y-62802600D01* +X110284227Y-62822602D01* +G37* +%TD.AperFunction*% +%TD*% +%TA.AperFunction,Conductor*% +%TO.N,GND*% +G36* +X107231877Y-49029835D02* +G01* +X109069568Y-49115491D01* +X109078558Y-49116233D01* +X109208636Y-49131679D01* +X109273923Y-49159574D01* +X109313765Y-49218338D01* +X109315512Y-49289313D01* +X109278610Y-49349965D01* +X109272731Y-49354996D01* +X109226133Y-49392462D01* +X109217368Y-49401046D01* +X109098222Y-49543039D01* +X109091292Y-49553159D01* +X109001998Y-49715585D01* +X108997166Y-49726858D01* +X108941120Y-49903538D01* +X108938570Y-49915532D01* +X108922393Y-50059761D01* +X108922000Y-50066785D01* +X108922000Y-50147885D01* +X108926475Y-50163124D01* +X108927865Y-50164329D01* +X108935548Y-50166000D01* +X110919885Y-50166000D01* +X110935124Y-50161525D01* +X110936329Y-50160135D01* +X110938000Y-50152452D01* +X110938000Y-50073343D01* +X110937699Y-50067195D01* +X110924188Y-49929397D01* +X110921805Y-49917362D01* +X110868233Y-49739924D01* +X110863559Y-49728584D01* +X110776540Y-49564923D01* +X110769748Y-49554700D01* +X110752115Y-49533080D01* +X110724561Y-49467649D01* +X110736757Y-49397707D01* +X110784829Y-49345462D01* +X110853516Y-49327501D01* +X110864609Y-49328323D01* +X111982887Y-49461118D01* +X112582257Y-49532292D01* +X112592343Y-49533907D01* +X112906559Y-49597368D01* +X112937964Y-49608176D01* +X113800483Y-50039436D01* +X113828371Y-50058433D01* +X113946164Y-50164329D01* +X114529882Y-50689097D01* +X114556272Y-50722486D01* +X114976249Y-51492830D01* +X114980570Y-51503488D01* +X114981200Y-51503212D01* +X114984806Y-51511433D01* +X114987209Y-51520082D01* +X114991943Y-51527709D01* +X114991944Y-51527710D01* +X115017340Y-51568620D01* +X115020908Y-51574746D01* +X115028766Y-51589160D01* +X115033391Y-51595354D01* +X115039474Y-51604276D01* +X115059293Y-51636204D01* +X115059297Y-51636209D01* +X115064030Y-51643833D01* +X115071487Y-51650516D01* +X115088355Y-51668965D01* +X115088472Y-51669121D01* +X115093845Y-51676317D01* +X115129516Y-51703150D01* +X115137867Y-51710012D01* +X115172497Y-51741050D01* +X115180594Y-51744924D01* +X115181519Y-51745367D01* +X115202875Y-51758333D01* +X115210246Y-51763877D01* +X115218642Y-51767042D01* +X115218645Y-51767043D01* +X115252106Y-51779654D01* +X115262044Y-51783895D01* +X115273455Y-51789355D01* +X115290947Y-51794609D01* +X115299121Y-51797374D01* +X115346544Y-51815248D01* +X115355499Y-51815929D01* +X115364261Y-51817872D01* +X115364210Y-51818100D01* +X115377179Y-51820512D01* +X117816233Y-52553154D01* +X117828885Y-52557703D01* +X120992061Y-53889710D01* +X120999491Y-53893127D01* +X124167617Y-55476511D01* +X124178334Y-55482538D01* +X127073014Y-57301810D01* +X127088003Y-57312855D01* +X127169066Y-57382391D01* +X127572001Y-57728031D01* +X127596230Y-57755965D01* +X128088647Y-58528952D01* +X128103913Y-58552916D01* +X128115241Y-58575369D01* +X128452858Y-59452958D01* +X128473148Y-59505699D01* +X128481550Y-59550940D01* +X128481550Y-60564003D01* +X128479799Y-60584935D01* +X128408293Y-61009392D01* +X128406166Y-61022017D01* +X128406069Y-61022585D01* +X128391103Y-61108316D01* +X128392103Y-61117235D01* +X128392103Y-61117237D01* +X128394438Y-61138060D01* +X128395185Y-61155207D01* +X128394468Y-61184271D01* +X128396775Y-61192948D01* +X128396775Y-61192950D01* +X128403093Y-61216714D01* +X128403415Y-61218123D01* +X128403573Y-61219537D01* +X128404583Y-61223241D01* +X128404585Y-61223251D01* +X128414411Y-61259297D01* +X128414617Y-61260062D01* +X128420577Y-61282479D01* +X128431891Y-61325039D01* +X128432558Y-61326141D01* +X128432905Y-61327140D01* +X128553099Y-61768068D01* +X128650311Y-62124688D01* +X128653239Y-62142508D01* +X128654395Y-62148158D01* +X128654929Y-62157117D01* +X128657956Y-62165566D01* +X128657957Y-62165569D01* +X128670921Y-62201749D01* +X128673871Y-62211118D01* +X128677154Y-62223161D01* +X128678935Y-62227277D01* +X128683910Y-62238776D01* +X128686885Y-62246305D01* +X128692680Y-62262477D01* +X128695003Y-62266745D01* +X128695006Y-62266751D01* +X128697203Y-62270786D01* +X128702176Y-62280989D01* +X128720349Y-62322989D01* +X128726083Y-62329896D01* +X128727819Y-62331987D01* +X128741538Y-62352227D01* +X128873515Y-62594664D01* +X129204221Y-63202159D01* +X129209274Y-63212549D01* +X129227068Y-63253852D01* +X129232789Y-63260766D01* +X129232791Y-63260769D01* +X129264280Y-63298823D01* +X129268199Y-63303811D01* +X129301220Y-63348091D01* +X129308392Y-63353493D01* +X129308393Y-63353494D01* +X129338817Y-63376409D01* +X129346573Y-63382749D01* +X129488739Y-63508719D01* +X130054897Y-64010378D01* +X130074747Y-64027967D01* +X130080548Y-64033445D01* +X130118024Y-64071150D01* +X130157593Y-64092971D01* +X130159752Y-64094161D01* +X130168253Y-64099296D01* +X130186279Y-64111178D01* +X130208262Y-64125670D01* +X130263264Y-64142584D01* +X130269360Y-64144631D01* +X130788310Y-64333760D01* +X131156323Y-64467881D01* +X131166727Y-64472209D01* +X131199222Y-64487465D01* +X131207350Y-64491281D01* +X131237886Y-64496036D01* +X131262758Y-64499909D01* +X131269296Y-64501105D01* +X131315397Y-64510798D01* +X131315399Y-64510798D01* +X131324183Y-64512645D01* +X131372875Y-64508876D01* +X131382598Y-64508500D01* +X133066913Y-64508500D01* +X133093304Y-64511295D01* +X134120832Y-64731398D01* +X134154753Y-64743976D01* +X134722910Y-65053726D01* +X134909978Y-65155712D01* +X134924037Y-65163377D01* +X134952820Y-65184908D01* +X135213232Y-65445316D01* +X135653188Y-65885266D01* +X135686610Y-65918688D01* +X135703395Y-65939480D01* +X137318363Y-68442868D01* +X137340606Y-68477348D01* +X137346813Y-68488099D01* +X138917108Y-71546546D01* +X138926529Y-71564895D01* +X138931013Y-71574625D01* +X140247906Y-74785054D01* +X140262768Y-74821287D01* +X140266882Y-74832904D01* +X141262925Y-78153976D01* +X141265905Y-78166046D01* +X141394785Y-78826716D01* +X141931909Y-81580131D01* +X141933355Y-81589351D01* +X142349265Y-85080550D01* +X142350150Y-85095455D01* +X142350150Y-88495170D01* +X142349585Y-88507091D01* +X142017767Y-91998590D01* +X142015999Y-92010803D01* +X141799914Y-93118077D01* +X141351629Y-95415205D01* +X141350009Y-95423506D01* +X141347836Y-95432764D01* +X140952706Y-96869865D01* +X140434019Y-98756349D01* +X140429095Y-98770780D01* +X139100953Y-102007270D01* +X139096475Y-102016985D01* +X138304043Y-103560397D01* +X137803795Y-104534726D01* +X137514804Y-105097590D01* +X137509396Y-105107084D01* +X136718117Y-106366106D01* +X135688267Y-108004722D01* +X135677206Y-108019730D01* +X135254164Y-108512702D01* +X135247683Y-108520254D01* +X135226184Y-108540092D01* +X134441848Y-109110630D01* +X134404752Y-109129173D01* +X133498552Y-109407738D01* +X133461530Y-109413300D01* +X131935625Y-109413300D01* +X131929582Y-109412948D01* +X131924324Y-109411556D01* +X131915355Y-109411787D01* +X131915353Y-109411787D01* +X131858296Y-109413258D01* +X131855049Y-109413300D01* +X131828137Y-109413300D01* +X131823703Y-109413935D01* +X131821837Y-109414068D01* +X131817796Y-109414264D01* +X131817305Y-109414315D01* +X131812442Y-109414440D01* +X131807658Y-109415312D01* +X131807655Y-109415312D01* +X131786395Y-109419186D01* +X131781672Y-109419954D01* +X131729349Y-109427447D01* +X131729346Y-109427448D01* +X131720463Y-109428720D01* +X131713318Y-109431969D01* +X131703526Y-109434286D01* +X131218647Y-109522641D01* +X130881242Y-109584123D01* +X130866242Y-109585934D01* +X130850922Y-109586857D01* +X130840200Y-109587503D01* +X130840198Y-109587503D01* +X130831241Y-109588043D01* +X130769587Y-109610178D01* +X130766990Y-109611077D01* +X130735226Y-109621691D01* +X130704206Y-109632056D01* +X130696833Y-109637176D01* +X130672044Y-109654390D01* +X130660494Y-109661520D01* +X129891902Y-110080544D01* +X129770376Y-110146798D01* +X129767134Y-110148505D01* +X129709038Y-110178020D01* +X129702497Y-110184169D01* +X129702496Y-110184170D01* +X129682085Y-110203359D01* +X129671167Y-110212517D01* +X129641732Y-110234496D01* +X129636337Y-110241668D01* +X129636335Y-110241670D01* +X129600569Y-110289218D01* +X129599276Y-110290906D01* +X129487620Y-110434242D01* +X129207831Y-110793417D01* +X129050367Y-110995558D01* +X129033973Y-111012697D01* +X129033128Y-111013656D01* +X129026303Y-111019478D01* +X129000351Y-111059083D01* +X128994364Y-111067452D01* +X128988160Y-111075416D01* +X128981606Y-111086876D01* +X128979848Y-111089949D01* +X128975866Y-111096447D01* +X128964961Y-111113088D01* +X128962954Y-111117515D01* +X128961090Y-111121626D01* +X128955706Y-111132156D01* +X128934155Y-111169835D01* +X128931269Y-111181884D01* +X128923496Y-111204554D01* +X128614745Y-111885614D01* +X128529932Y-112072698D01* +X128529229Y-112074221D01* +X128502583Y-112130974D01* +X128502581Y-112130981D01* +X128498769Y-112139100D01* +X128497389Y-112147964D01* +X128497388Y-112147967D01* +X128493866Y-112170589D01* +X128490340Y-112186435D01* +X128483939Y-112208413D01* +X128483938Y-112208418D01* +X128481429Y-112217034D01* +X128481439Y-112226010D01* +X128481550Y-112325687D01* +X128481550Y-114078531D01* +X128478287Y-114107021D01* +X128256745Y-115061443D01* +X128246737Y-115089240D01* +X128087863Y-115407426D01* +X127838046Y-115907750D01* +X127826873Y-115930126D01* +X127798462Y-115967469D01* +X127080750Y-116613755D01* +X127064772Y-116625979D01* +X124505799Y-118277283D01* +X124497398Y-118282253D01* +X121956632Y-119655009D01* +X121425557Y-119941944D01* +X121410878Y-119948697D01* +X118173652Y-121193256D01* +X118164666Y-121196327D01* +X116521278Y-121689680D01* +X114918130Y-122170953D01* +X114827152Y-122198265D01* +X114817929Y-122200658D01* +X111411279Y-122948063D01* +X111396550Y-122950390D01* +X108045200Y-123278070D01* +X107997560Y-123282728D01* +X107985299Y-123283326D01* +X104493876Y-123283326D01* +X104481902Y-123282756D01* +X100984128Y-122948854D01* +X100974932Y-122947633D01* +X97567924Y-122366937D01* +X97552852Y-122363403D01* +X94231032Y-121365782D01* +X94222075Y-121362721D01* +X90983858Y-120118291D01* +X90969125Y-120111511D01* +X90655538Y-119941944D01* +X87894182Y-118448788D01* +X87887060Y-118444630D01* +X86278531Y-117433213D01* +X84985005Y-116619865D01* +X84970153Y-116608932D01* +X84469807Y-116180731D01* +X84449851Y-116159133D01* +X83932445Y-115447834D01* +X83879186Y-115374616D01* +X83860671Y-115337615D01* +X83770477Y-115045035D01* +X83580941Y-114430197D01* +X83575350Y-114393080D01* +X83575350Y-112954028D01* +X83575497Y-112951820D01* +X83576100Y-112949679D01* +X83575356Y-112873778D01* +X83575350Y-112872543D01* +X83575350Y-112845387D01* +X83575103Y-112843658D01* +X83575070Y-112842853D01* +X83575051Y-112842635D01* +X83575003Y-112837766D01* +X83569754Y-112806099D01* +X83569331Y-112803357D01* +X83561203Y-112746600D01* +X83561202Y-112746598D01* +X83559930Y-112737713D01* +X83558016Y-112733504D01* +X83556936Y-112728772D01* +X83551409Y-112695425D01* +X83405771Y-111816818D01* +X83404298Y-111803716D01* +X83402504Y-111773639D01* +X83401970Y-111764679D01* +X83382264Y-111709680D01* +X83380766Y-111705238D01* +X83364322Y-111653277D01* +X83364321Y-111653276D01* +X83361614Y-111644721D01* +X83356615Y-111637271D01* +X83356612Y-111637265D01* +X83336564Y-111607388D01* +X83330527Y-111597426D01* +X82843938Y-110703585D01* +X82842382Y-110700634D01* +X82815496Y-110647972D01* +X82815495Y-110647971D01* +X82811416Y-110639981D01* +X82805260Y-110633459D01* +X82805258Y-110633456D01* +X82786342Y-110613416D01* +X82776966Y-110602253D01* +X82761048Y-110580908D01* +X82755679Y-110573708D01* +X82720060Y-110546880D01* +X82701419Y-110532839D01* +X82699993Y-110531749D01* +X81993268Y-109983488D01* +X81978261Y-109969145D01* +X81975460Y-109966670D01* +X81969645Y-109959837D01* +X81962144Y-109954909D01* +X81962140Y-109954905D01* +X81928925Y-109933081D01* +X81920883Y-109927334D01* +X81918069Y-109925151D01* +X81912388Y-109920744D01* +X81908498Y-109918529D01* +X81908493Y-109918526D01* +X81903044Y-109915424D01* +X81899090Y-109913173D01* +X81892256Y-109908989D01* +X81876110Y-109898380D01* +X81871679Y-109896365D01* +X81871674Y-109896362D01* +X81866373Y-109893951D01* +X81856202Y-109888756D01* +X81825662Y-109871369D01* +X81825660Y-109871368D01* +X81817861Y-109866928D01* +X81806967Y-109864342D01* +X81783905Y-109856445D01* +X80916332Y-109461863D01* +X80914961Y-109461229D01* +X80909871Y-109458839D01* +X80849550Y-109430519D01* +X80818448Y-109425676D01* +X80802458Y-109422108D01* +X80780851Y-109415787D01* +X80780850Y-109415787D01* +X80772236Y-109413267D01* +X80763259Y-109413266D01* +X80763258Y-109413266D01* +X80626930Y-109413252D01* +X80626579Y-109413252D01* +X80626466Y-109413285D01* +X80626257Y-109413300D01* +X78910929Y-109413300D01* +X78882619Y-109410078D01* +X78872471Y-109407738D01* +X77927143Y-109189766D01* +X77899111Y-109179688D01* +X77060006Y-108760137D01* +X77022731Y-108731763D01* +X76374995Y-108012581D01* +X76362723Y-107996536D01* +X74712638Y-105437363D01* +X74707691Y-105428998D01* +X73048141Y-102358775D01* +X73041386Y-102344102D01* +X72394656Y-100663028D01* +X72350890Y-100549266D01* +X80678000Y-100549266D01* +X80678337Y-100555782D01* +X80688075Y-100649632D01* +X80690968Y-100663028D01* +X80741488Y-100814453D01* +X80747653Y-100827615D01* +X80831426Y-100962992D01* +X80840460Y-100974390D01* +X80953129Y-101086863D01* +X80964540Y-101095875D01* +X81100063Y-101179412D01* +X81113241Y-101185556D01* +X81264766Y-101235815D01* +X81278132Y-101238681D01* +X81370770Y-101248172D01* +X81377185Y-101248500D01* +X81388885Y-101248500D01* +X81404124Y-101244025D01* +X81405329Y-101242635D01* +X81407000Y-101234952D01* +X81407000Y-101230385D01* +X81915000Y-101230385D01* +X81919475Y-101245624D01* +X81920865Y-101246829D01* +X81928548Y-101248500D01* +X81944766Y-101248500D01* +X81951282Y-101248163D01* +X82045132Y-101238425D01* +X82058528Y-101235532D01* +X82209953Y-101185012D01* +X82223115Y-101178847D01* +X82358492Y-101095074D01* +X82369890Y-101086040D01* +X82482363Y-100973371D01* +X82491375Y-100961960D01* +X82574912Y-100826437D01* +X82581056Y-100813259D01* +X82631315Y-100661734D01* +X82634181Y-100648368D01* +X82643672Y-100555730D01* +X82644000Y-100549315D01* +X82644000Y-100475115D01* +X82639525Y-100459876D01* +X82638135Y-100458671D01* +X82630452Y-100457000D01* +X81933115Y-100457000D01* +X81917876Y-100461475D01* +X81916671Y-100462865D01* +X81915000Y-100470548D01* +X81915000Y-101230385D01* +X81407000Y-101230385D01* +X81407000Y-100475115D01* +X81402525Y-100459876D01* +X81401135Y-100458671D01* +X81393452Y-100457000D01* +X80696115Y-100457000D01* +X80680876Y-100461475D01* +X80679671Y-100462865D01* +X80678000Y-100470548D01* +X80678000Y-100549266D01* +X72350890Y-100549266D01* +X71795362Y-99105255D01* +X71792274Y-99096219D01* +X71792035Y-99095420D01* +X71131716Y-96893766D01* +X72131900Y-96893766D01* +X72132237Y-96900282D01* +X72141975Y-96994132D01* +X72144868Y-97007528D01* +X72195388Y-97158953D01* +X72201553Y-97172115D01* +X72285326Y-97307492D01* +X72294360Y-97318890D01* +X72407029Y-97431363D01* +X72418440Y-97440375D01* +X72553963Y-97523912D01* +X72567141Y-97530056D01* +X72718666Y-97580315D01* +X72732032Y-97583181D01* +X72824670Y-97592672D01* +X72831085Y-97593000D01* +X72905285Y-97593000D01* +X72920524Y-97588525D01* +X72921729Y-97587135D01* +X72923400Y-97579452D01* +X72923400Y-97574885D01* +X73431400Y-97574885D01* +X73435875Y-97590124D01* +X73437265Y-97591329D01* +X73444948Y-97593000D01* +X73523666Y-97593000D01* +X73530182Y-97592663D01* +X73624032Y-97582925D01* +X73637428Y-97580032D01* +X73788853Y-97529512D01* +X73802015Y-97523347D01* +X73937392Y-97439574D01* +X73948794Y-97430536D01* +X73950467Y-97428861D01* +X73951893Y-97428081D01* +X73954527Y-97425993D01* +X73954884Y-97426444D01* +X74012749Y-97394781D01* +X74083569Y-97399784D01* +X74128654Y-97428701D01* +X74130493Y-97430536D01* +X74136897Y-97436929D01* +X74284980Y-97528209D01* +X74450091Y-97582974D01* +X74456927Y-97583674D01* +X74456930Y-97583675D01* +X74504270Y-97588525D01* +X74552828Y-97593500D01* +X75251972Y-97593500D01* +X75255218Y-97593163D01* +X75255222Y-97593163D01* +X75349135Y-97583419D01* +X75349139Y-97583418D01* +X75355993Y-97582707D01* +X75362529Y-97580526D01* +X75362531Y-97580526D01* +X75495295Y-97536232D01* +X75521007Y-97527654D01* +X75668931Y-97436116D01* +X75669227Y-97435819D01* +X75732411Y-97410250D01* +X75802175Y-97423426D01* +X75833952Y-97446539D01* +X75955162Y-97567749D01* +X75959671Y-97570906D01* +X75959673Y-97570908D01* +X75991938Y-97593500D01* +X76135546Y-97694056D01* +X76335124Y-97787120D01* +X76547829Y-97844115D01* +X76767200Y-97863307D01* +X76986571Y-97844115D01* +X77199276Y-97787120D01* +X77398854Y-97694056D01* +X77542462Y-97593500D01* +X77574727Y-97570908D01* +X77574729Y-97570906D01* +X77579238Y-97567749D01* +X77734949Y-97412038D01* +X77743530Y-97399784D01* +X77858099Y-97236162D01* +X77858100Y-97236160D01* +X77861256Y-97231653D01* +X77863579Y-97226671D01* +X77863582Y-97226666D01* +X77951995Y-97037061D01* +X77954320Y-97032076D01* +X78011315Y-96819371D01* +X78030507Y-96600000D01* +X80383893Y-96600000D01* +X80403085Y-96819371D01* +X80460080Y-97032076D01* +X80462405Y-97037061D01* +X80550818Y-97226666D01* +X80550821Y-97226671D01* +X80553144Y-97231653D01* +X80556300Y-97236160D01* +X80556301Y-97236162D01* +X80670871Y-97399784D01* +X80679451Y-97412038D01* +X80819786Y-97552373D01* +X80853812Y-97614685D01* +X80848747Y-97685500D01* +X80833683Y-97712258D01* +X80834071Y-97712497D01* +X80747364Y-97853162D01* +X80742791Y-97860580D01* +X80688026Y-98025691D01* +X80677500Y-98128428D01* +X80677500Y-98827572D01* +X80688293Y-98931593D01* +X80743346Y-99096607D01* +X80834884Y-99244531D01* +X80840065Y-99249703D01* +X80842139Y-99251773D01* +X80843105Y-99253538D01* +X80844613Y-99255441D01* +X80844287Y-99255699D01* +X80876219Y-99314054D01* +X80871218Y-99384875D01* +X80842292Y-99429970D01* +X80839636Y-99432631D01* +X80830625Y-99444040D01* +X80747088Y-99579563D01* +X80740944Y-99592741D01* +X80690685Y-99744266D01* +X80687819Y-99757632D01* +X80678328Y-99850270D01* +X80678000Y-99856685D01* +X80678000Y-99930885D01* +X80682475Y-99946124D01* +X80683865Y-99947329D01* +X80691548Y-99949000D01* +X82625885Y-99949000D01* +X82641124Y-99944525D01* +X82642329Y-99943135D01* +X82644000Y-99935452D01* +X82644000Y-99856734D01* +X82643663Y-99850218D01* +X82633925Y-99756368D01* +X82631032Y-99742972D01* +X82580512Y-99591547D01* +X82574347Y-99578385D01* +X82490574Y-99443008D01* +X82481536Y-99431606D01* +X82479861Y-99429933D01* +X82479081Y-99428507D01* +X82476993Y-99425873D01* +X82477444Y-99425516D01* +X82445781Y-99367651D01* +X82450784Y-99296831D01* +X82479701Y-99251746D01* +X82482756Y-99248685D01* +X82487929Y-99243503D01* +X82558948Y-99128290D01* +X82575369Y-99101650D01* +X82575370Y-99101648D01* +X82579209Y-99095420D01* +X82633974Y-98930309D01* +X82644500Y-98827572D01* +X82644500Y-98128428D01* +X82633707Y-98024407D01* +X82578654Y-97859393D01* +X82487116Y-97711469D01* +X82481934Y-97706296D01* +X82480371Y-97704324D01* +X82453734Y-97638514D01* +X82466905Y-97568750D01* +X82490022Y-97536965D01* +X82614949Y-97412038D01* +X82623530Y-97399784D01* +X82738099Y-97236162D01* +X82738100Y-97236160D01* +X82741256Y-97231653D01* +X82743579Y-97226671D01* +X82743582Y-97226666D01* +X82831995Y-97037061D01* +X82834320Y-97032076D01* +X82891315Y-96819371D01* +X82910507Y-96600000D01* +X82891315Y-96380629D01* +X82834320Y-96167924D01* +X82779776Y-96050954D01* +X82743582Y-95973334D01* +X82743579Y-95973329D01* +X82741256Y-95968347D01* +X82702880Y-95913540D01* +X82618108Y-95792473D01* +X82618106Y-95792470D01* +X82614949Y-95787962D01* +X82459238Y-95632251D01* +X82454126Y-95628671D01* +X82379959Y-95576739D01* +X82278854Y-95505944D01* +X82079276Y-95412880D01* +X81866571Y-95355885D01* +X81647200Y-95336693D01* +X81427829Y-95355885D01* +X81215124Y-95412880D01* +X81172457Y-95432776D01* +X81020534Y-95503618D01* +X81020529Y-95503621D01* +X81015547Y-95505944D01* +X81011040Y-95509100D01* +X81011038Y-95509101D01* +X80839673Y-95629092D01* +X80839670Y-95629094D01* +X80835162Y-95632251D01* +X80679451Y-95787962D01* +X80676294Y-95792470D01* +X80676292Y-95792473D01* +X80591520Y-95913540D01* +X80553144Y-95968347D01* +X80550821Y-95973329D01* +X80550818Y-95973334D01* +X80514624Y-96050954D01* +X80460080Y-96167924D01* +X80403085Y-96380629D01* +X80383893Y-96600000D01* +X78030507Y-96600000D01* +X78011315Y-96380629D01* +X77954320Y-96167924D01* +X77899776Y-96050954D01* +X77863582Y-95973334D01* +X77863579Y-95973329D01* +X77861256Y-95968347D01* +X77822880Y-95913540D01* +X77738108Y-95792473D01* +X77738106Y-95792470D01* +X77734949Y-95787962D01* +X77579238Y-95632251D01* +X77574126Y-95628671D01* +X77499959Y-95576739D01* +X77398854Y-95505944D01* +X77199276Y-95412880D01* +X76986571Y-95355885D01* +X76767200Y-95336693D01* +X76547829Y-95355885D01* +X76335124Y-95412880D01* +X76292457Y-95432776D01* +X76140534Y-95503618D01* +X76140529Y-95503621D01* +X76135547Y-95505944D01* +X76131040Y-95509100D01* +X76131038Y-95509101D01* +X75959673Y-95629092D01* +X75959670Y-95629094D01* +X75955162Y-95632251D01* +X75822738Y-95764675D01* +X75760426Y-95798701D01* +X75689611Y-95793636D01* +X75667537Y-95782845D01* +X75519820Y-95691791D01* +X75354709Y-95637026D01* +X75347873Y-95636326D01* +X75347870Y-95636325D01* +X75296374Y-95631049D01* +X75251972Y-95626500D01* +X74552828Y-95626500D01* +X74549582Y-95626837D01* +X74549578Y-95626837D01* +X74455665Y-95636581D01* +X74455661Y-95636582D01* +X74448807Y-95637293D01* +X74442271Y-95639474D01* +X74442269Y-95639474D01* +X74364617Y-95665381D01* +X74283793Y-95692346D01* +X74135869Y-95783884D01* +X74130697Y-95789065D01* +X74128627Y-95791139D01* +X74126862Y-95792105D01* +X74124959Y-95793613D01* +X74124701Y-95793287D01* +X74066346Y-95825219D01* +X73995525Y-95820218D01* +X73950430Y-95791292D01* +X73947769Y-95788636D01* +X73936360Y-95779625D01* +X73800837Y-95696088D01* +X73787659Y-95689944D01* +X73636134Y-95639685D01* +X73622768Y-95636819D01* +X73530130Y-95627328D01* +X73523715Y-95627000D01* +X73449515Y-95627000D01* +X73434276Y-95631475D01* +X73433071Y-95632865D01* +X73431400Y-95640548D01* +X73431400Y-97574885D01* +X72923400Y-97574885D01* +X72923400Y-96882115D01* +X72918925Y-96866876D01* +X72917535Y-96865671D01* +X72909852Y-96864000D01* +X72150015Y-96864000D01* +X72134776Y-96868475D01* +X72133571Y-96869865D01* +X72131900Y-96877548D01* +X72131900Y-96893766D01* +X71131716Y-96893766D01* +X70964996Y-96337885D01* +X72131900Y-96337885D01* +X72136375Y-96353124D01* +X72137765Y-96354329D01* +X72145448Y-96356000D01* +X72905285Y-96356000D01* +X72920524Y-96351525D01* +X72921729Y-96350135D01* +X72923400Y-96342452D01* +X72923400Y-95645115D01* +X72918925Y-95629876D01* +X72917535Y-95628671D01* +X72909852Y-95627000D01* +X72831134Y-95627000D01* +X72824618Y-95627337D01* +X72730768Y-95637075D01* +X72717372Y-95639968D01* +X72565947Y-95690488D01* +X72552785Y-95696653D01* +X72417408Y-95780426D01* +X72406010Y-95789460D01* +X72293537Y-95902129D01* +X72284525Y-95913540D01* +X72200988Y-96049063D01* +X72194844Y-96062241D01* +X72144585Y-96213766D01* +X72141719Y-96227132D01* +X72132228Y-96319770D01* +X72131900Y-96326185D01* +X72131900Y-96337885D01* +X70964996Y-96337885D01* +X70878373Y-96049063D01* +X70791778Y-95760335D01* +X70789402Y-95751176D01* +X70076229Y-92505142D01* +X70040624Y-92343085D01* +X70038283Y-92328264D01* +X70024453Y-92186231D01* +X69927479Y-91190366D01* +X77566700Y-91190366D01* +X77567037Y-91196882D01* +X77576775Y-91290732D01* +X77579668Y-91304128D01* +X77630188Y-91455553D01* +X77636353Y-91468715D01* +X77720126Y-91604092D01* +X77729160Y-91615490D01* +X77841829Y-91727963D01* +X77853240Y-91736975D01* +X77988763Y-91820512D01* +X78001941Y-91826656D01* +X78153466Y-91876915D01* +X78166832Y-91879781D01* +X78259470Y-91889272D01* +X78265885Y-91889600D01* +X78290085Y-91889600D01* +X78305324Y-91885125D01* +X78306529Y-91883735D01* +X78308200Y-91876052D01* +X78308200Y-91178715D01* +X78303725Y-91163476D01* +X78302335Y-91162271D01* +X78294652Y-91160600D01* +X77584815Y-91160600D01* +X77569576Y-91165075D01* +X77568371Y-91166465D01* +X77566700Y-91174148D01* +X77566700Y-91190366D01* +X69927479Y-91190366D01* +X69920365Y-91117310D01* +X69933671Y-91047572D01* +X69982568Y-90996098D01* +X70051532Y-90979231D01* +X70108772Y-90995980D01* +X70111941Y-90997810D01* +X70117279Y-91001688D01* +X70123306Y-91004371D01* +X70123307Y-91004372D01* +X70123310Y-91004373D01* +X70296544Y-91081502D01* +X70392515Y-91101901D01* +X70482028Y-91120928D01* +X70482032Y-91120928D01* +X70488485Y-91122300D01* +X70684715Y-91122300D01* +X70691168Y-91120928D01* +X70691172Y-91120928D01* +X70780685Y-91101901D01* +X70876656Y-91081502D01* +X70952864Y-91047572D01* +X71049891Y-91004373D01* +X71049893Y-91004372D01* +X71055921Y-91001688D01* +X71063615Y-90996098D01* +X71209330Y-90890230D01* +X71209332Y-90890228D01* +X71214674Y-90886347D01* +X71234806Y-90863988D01* +X71295249Y-90826750D01* +X71328440Y-90822300D01* +X76966033Y-90822300D01* +X76977216Y-90822827D01* +X76984709Y-90824502D01* +X76992635Y-90824253D01* +X76992636Y-90824253D01* +X77052786Y-90822362D01* +X77056745Y-90822300D01* +X77084656Y-90822300D01* +X77088591Y-90821803D01* +X77088656Y-90821795D01* +X77100493Y-90820862D01* +X77132751Y-90819848D01* +X77136770Y-90819722D01* +X77144689Y-90819473D01* +X77164143Y-90813821D01* +X77183500Y-90809813D01* +X77195730Y-90808268D01* +X77195731Y-90808268D01* +X77203597Y-90807274D01* +X77210968Y-90804355D01* +X77210970Y-90804355D01* +X77244712Y-90790996D01* +X77255942Y-90787151D01* +X77290783Y-90777029D01* +X77290784Y-90777029D01* +X77298393Y-90774818D01* +X77305212Y-90770785D01* +X77305217Y-90770783D01* +X77315828Y-90764507D01* +X77333576Y-90755812D01* +X77352417Y-90748352D01* +X77388187Y-90722364D01* +X77398107Y-90715848D01* +X77429335Y-90697380D01* +X77429338Y-90697378D01* +X77436162Y-90693342D01* +X77446718Y-90682786D01* +X77509030Y-90648760D01* +X77562596Y-90648760D01* +X77580248Y-90652600D01* +X78690200Y-90652600D01* +X78758321Y-90672602D01* +X78804814Y-90726258D01* +X78816200Y-90778600D01* +X78816200Y-91871485D01* +X78820675Y-91886724D01* +X78822065Y-91887929D01* +X78829748Y-91889600D01* +X78858466Y-91889600D01* +X78864982Y-91889263D01* +X78958832Y-91879525D01* +X78972228Y-91876632D01* +X79123653Y-91826112D01* +X79136815Y-91819947D01* +X79272192Y-91736174D01* +X79283590Y-91727140D01* +X79385093Y-91625460D01* +X79447376Y-91591381D01* +X79518196Y-91596384D01* +X79563283Y-91625304D01* +X79671697Y-91733529D01* +X79819780Y-91824809D01* +X79984891Y-91879574D01* +X79991727Y-91880274D01* +X79991730Y-91880275D01* +X80039070Y-91885125D01* +X80087628Y-91890100D01* +X80686772Y-91890100D01* +X80690018Y-91889763D01* +X80690022Y-91889763D01* +X80783935Y-91880019D01* +X80783939Y-91880018D01* +X80790793Y-91879307D01* +X80797329Y-91877126D01* +X80797331Y-91877126D01* +X80930095Y-91832832D01* +X80955807Y-91824254D01* +X81103731Y-91732716D01* +X81109297Y-91727140D01* +X81221458Y-91614784D01* +X81221462Y-91614779D01* +X81226629Y-91609603D01* +X81317909Y-91461520D01* +X81372674Y-91296409D01* +X81383200Y-91193672D01* +X81383200Y-90619528D01* +X81382863Y-90616278D01* +X81373119Y-90522365D01* +X81373118Y-90522361D01* +X81372407Y-90515507D01* +X81317354Y-90350493D01* +X81225816Y-90202569D01* +X81220634Y-90197396D01* +X81220630Y-90197391D01* +X81116071Y-90093015D01* +X81081991Y-90030733D01* +X81079088Y-90003842D01* +X81079088Y-89166936D01* +X81099090Y-89098815D01* +X81111446Y-89082633D01* +X81184628Y-89001356D01* +X81280115Y-88835968D01* +X81339130Y-88654340D01* +X81343996Y-88608048D01* +X81358402Y-88470977D01* +X81359092Y-88464412D01* +X81358261Y-88456509D01* +X81339820Y-88281047D01* +X81339820Y-88281045D01* +X81339130Y-88274484D01* +X81280115Y-88092856D01* +X81249656Y-88040099D01* +X81232918Y-87971105D01* +X81256138Y-87904013D01* +X81311945Y-87860126D01* +X81358775Y-87851100D01* +X83553274Y-87851100D01* +X83621395Y-87871102D01* +X83642369Y-87888004D01* +X84450995Y-88696629D01* +X84485020Y-88758942D01* +X84487900Y-88785725D01* +X84487900Y-106211757D01* +X84487163Y-106225364D01* +X84483076Y-106262988D01* +X84483613Y-106269123D01* +X84487450Y-106312988D01* +X84487779Y-106317814D01* +X84487900Y-106320286D01* +X84487900Y-106323369D01* +X84488201Y-106326437D01* +X84492090Y-106366106D01* +X84492212Y-106367419D01* +X84500313Y-106460013D01* +X84501800Y-106465132D01* +X84502320Y-106470433D01* +X84529191Y-106559434D01* +X84529526Y-106560567D01* +X84548571Y-106626117D01* +X84555491Y-106649936D01* +X84557944Y-106654668D01* +X84559484Y-106659769D01* +X84562378Y-106665212D01* +X84603131Y-106741860D01* +X84603743Y-106743026D01* +X84646508Y-106825526D01* +X84649831Y-106829689D01* +X84652334Y-106834396D01* +X84711155Y-106906518D01* +X84711846Y-106907374D01* +X84743138Y-106946573D01* +X84745642Y-106949077D01* +X84746284Y-106949795D01* +X84749985Y-106954128D01* +X84777335Y-106987662D01* +X84782082Y-106991589D01* +X84782084Y-106991591D01* +X84812662Y-107016887D01* +X84821442Y-107024877D01* +X86136545Y-108339979D01* +X86145665Y-108350144D01* +X86146811Y-108351570D01* +X86173892Y-108417199D01* +X86161193Y-108487050D01* +X86112745Y-108538948D01* +X86048596Y-108556500D01* +X85977729Y-108556500D01* +X85975593Y-108556646D01* +X85975582Y-108556646D01* +X85767452Y-108570835D01* +X85767446Y-108570836D01* +X85763175Y-108571127D01* +X85758980Y-108571996D01* +X85758978Y-108571996D01* +X85622417Y-108600276D01* +X85481658Y-108629426D01* +X85210657Y-108725393D01* +X84955188Y-108857250D01* +X84951687Y-108859711D01* +X84951683Y-108859713D01* +X84941594Y-108866804D01* +X84719977Y-109022559D01* +X84707580Y-109034079D01* +X84514295Y-109213691D01* +X84509378Y-109218260D01* +X84327287Y-109440732D01* +X84177073Y-109685858D01* +X84175347Y-109689791D01* +X84175346Y-109689792D01* +X84074939Y-109918526D01* +X84061517Y-109949102D01* +X84060342Y-109953229D01* +X84060341Y-109953230D01* +X84042187Y-110016960D01* +X83982756Y-110225594D01* +X83942249Y-110510216D01* +X83942227Y-110514505D01* +X83942226Y-110514512D01* +X83940772Y-110792094D01* +X83940743Y-110797703D01* +X83978268Y-111082734D01* +X84054129Y-111360036D01* +X84055813Y-111363984D01* +X84161696Y-111612221D01* +X84166923Y-111624476D01* +X84180882Y-111647799D01* +X84282039Y-111816820D01* +X84314561Y-111871161D01* +X84494313Y-112095528D01* +X84702851Y-112293423D01* +X84936317Y-112461186D01* +X84940112Y-112463195D01* +X84940113Y-112463196D01* +X84961869Y-112474715D01* +X85190392Y-112595712D01* +X85460373Y-112694511D01* +X85741264Y-112755755D01* +X85769841Y-112758004D01* +X85964282Y-112773307D01* +X85964291Y-112773307D01* +X85966739Y-112773500D01* +X86122271Y-112773500D01* +X86124407Y-112773354D01* +X86124418Y-112773354D01* +X86332548Y-112759165D01* +X86332554Y-112759164D01* +X86336825Y-112758873D01* +X86341020Y-112758004D01* +X86341022Y-112758004D01* +X86482178Y-112728772D01* +X86618342Y-112700574D01* +X86889343Y-112604607D01* +X87144812Y-112472750D01* +X87148313Y-112470289D01* +X87148317Y-112470287D01* +X87353862Y-112325827D01* +X87380023Y-112307441D01* +X87590622Y-112111740D01* +X87772713Y-111889268D01* +X87922927Y-111644142D01* +X87925787Y-111637628D01* +X88036757Y-111384830D01* +X88038483Y-111380898D01* +X88117244Y-111104406D01* +X88157751Y-110819784D01* +X88157845Y-110801951D01* +X88159235Y-110536583D01* +X88159235Y-110536576D01* +X88159257Y-110532297D01* +X88146178Y-110432948D01* +X88122292Y-110251522D01* +X88121732Y-110247266D01* +X88109721Y-110203359D01* +X88085989Y-110116611D01* +X88045871Y-109969964D01* +X88030139Y-109933081D01* +X87934763Y-109709476D01* +X87934761Y-109709472D01* +X87933077Y-109705524D01* +X87850691Y-109567867D01* +X87787643Y-109462521D01* +X87787640Y-109462517D01* +X87785439Y-109458839D01* +X87605687Y-109234472D01* +X87397149Y-109036577D01* +X87217410Y-108907421D01* +X87173764Y-108851428D01* +X87167318Y-108780724D01* +X87200121Y-108717760D01* +X87261758Y-108682526D01* +X87290938Y-108679100D01* +X124640261Y-108679100D01* +X124708382Y-108699102D01* +X124754875Y-108752758D01* +X124764979Y-108823032D01* +X124735485Y-108887612D01* +X124712712Y-108908187D01* +X124549977Y-109022559D01* +X124537580Y-109034079D01* +X124344295Y-109213691D01* +X124339378Y-109218260D01* +X124157287Y-109440732D01* +X124007073Y-109685858D01* +X124005347Y-109689791D01* +X124005346Y-109689792D01* +X123904939Y-109918526D01* +X123891517Y-109949102D01* +X123890342Y-109953229D01* +X123890341Y-109953230D01* +X123872187Y-110016960D01* +X123812756Y-110225594D01* +X123772249Y-110510216D01* +X123772227Y-110514505D01* +X123772226Y-110514512D01* +X123770772Y-110792094D01* +X123770743Y-110797703D01* +X123808268Y-111082734D01* +X123884129Y-111360036D01* +X123885813Y-111363984D01* +X123991696Y-111612221D01* +X123996923Y-111624476D01* +X124010882Y-111647799D01* +X124112039Y-111816820D01* +X124144561Y-111871161D01* +X124324313Y-112095528D01* +X124532851Y-112293423D01* +X124766317Y-112461186D01* +X124770112Y-112463195D01* +X124770113Y-112463196D01* +X124791869Y-112474715D01* +X125020392Y-112595712D01* +X125290373Y-112694511D01* +X125571264Y-112755755D01* +X125599841Y-112758004D01* +X125794282Y-112773307D01* +X125794291Y-112773307D01* +X125796739Y-112773500D01* +X125952271Y-112773500D01* +X125954407Y-112773354D01* +X125954418Y-112773354D01* +X126162548Y-112759165D01* +X126162554Y-112759164D01* +X126166825Y-112758873D01* +X126171020Y-112758004D01* +X126171022Y-112758004D01* +X126312178Y-112728772D01* +X126448342Y-112700574D01* +X126719343Y-112604607D01* +X126974812Y-112472750D01* +X126978313Y-112470289D01* +X126978317Y-112470287D01* +X127183862Y-112325827D01* +X127210023Y-112307441D01* +X127420622Y-112111740D01* +X127602713Y-111889268D01* +X127752927Y-111644142D01* +X127755787Y-111637628D01* +X127866757Y-111384830D01* +X127868483Y-111380898D01* +X127947244Y-111104406D01* +X127987751Y-110819784D01* +X127987845Y-110801951D01* +X127989235Y-110536583D01* +X127989235Y-110536576D01* +X127989257Y-110532297D01* +X127976178Y-110432948D01* +X127952292Y-110251522D01* +X127951732Y-110247266D01* +X127939721Y-110203359D01* +X127915989Y-110116611D01* +X127875871Y-109969964D01* +X127860139Y-109933081D01* +X127764763Y-109709476D01* +X127764761Y-109709472D01* +X127763077Y-109705524D01* +X127680691Y-109567867D01* +X127617643Y-109462521D01* +X127617640Y-109462517D01* +X127615439Y-109458839D01* +X127435687Y-109234472D01* +X127227149Y-109036577D01* +X126993683Y-108868814D01* +X126971843Y-108857250D01* +X126827310Y-108780724D01* +X126739608Y-108734288D01* +X126505239Y-108648521D01* +X126473658Y-108636964D01* +X126473656Y-108636963D01* +X126469627Y-108635489D01* +X126188736Y-108574245D01* +X126157685Y-108571801D01* +X125965718Y-108556693D01* +X125965709Y-108556693D01* +X125963261Y-108556500D01* +X125812525Y-108556500D01* +X125744404Y-108536498D01* +X125697911Y-108482842D01* +X125687807Y-108412568D01* +X125717301Y-108347988D01* +X125723430Y-108341405D01* +X129345779Y-104719055D01* +X129355922Y-104709953D01* +X129380618Y-104690097D01* +X129385425Y-104686232D01* +X129417692Y-104647778D01* +X129420873Y-104644130D01* +X129422517Y-104642317D01* +X129424709Y-104640125D01* +X129451980Y-104606924D01* +X129452762Y-104605982D01* +X129508593Y-104539447D01* +X129508595Y-104539444D01* +X129512554Y-104534726D01* +X129515123Y-104530053D01* +X129518503Y-104525938D01* +X129562428Y-104444020D01* +X129563057Y-104442862D01* +X129604865Y-104366812D01* +X129604865Y-104366811D01* +X129607833Y-104361413D01* +X129609444Y-104356335D01* +X129611963Y-104351637D01* +X129639153Y-104262702D01* +X129639536Y-104261472D01* +X129665771Y-104178770D01* +X129667635Y-104172894D01* +X129668228Y-104167603D01* +X129669788Y-104162502D01* +X129679195Y-104069889D01* +X129679315Y-104068769D01* +X129684900Y-104018973D01* +X129684900Y-104015444D01* +X129684955Y-104014461D01* +X129685404Y-104008756D01* +X129689152Y-103971864D01* +X129689152Y-103971861D01* +X129689774Y-103965737D01* +X129685459Y-103920088D01* +X129684900Y-103908231D01* +X129684900Y-90458534D01* +X131991500Y-90458534D01* +X131998255Y-90520716D01* +X132049385Y-90657105D01* +X132136739Y-90773661D01* +X132253295Y-90861015D01* +X132389684Y-90912145D01* +X132451866Y-90918900D01* +X134248134Y-90918900D01* +X134310316Y-90912145D01* +X134446705Y-90861015D01* +X134563261Y-90773661D01* +X134650615Y-90657105D01* +X134701745Y-90520716D01* +X134708500Y-90458534D01* +X134708500Y-90455069D01* +X137275201Y-90455069D01* +X137275571Y-90461890D01* +X137281095Y-90512752D01* +X137284721Y-90528004D01* +X137329876Y-90648454D01* +X137338414Y-90664049D01* +X137414915Y-90766124D01* +X137427476Y-90778685D01* +X137529551Y-90855186D01* +X137545146Y-90863724D01* +X137665594Y-90908878D01* +X137680849Y-90912505D01* +X137731714Y-90918031D01* +X137738528Y-90918400D01* +X138361085Y-90918400D01* +X138376324Y-90913925D01* +X138377529Y-90912535D01* +X138379200Y-90904852D01* +X138379200Y-90900284D01* +X138887200Y-90900284D01* +X138891675Y-90915523D01* +X138893065Y-90916728D01* +X138900748Y-90918399D01* +X139527869Y-90918399D01* +X139534690Y-90918029D01* +X139585552Y-90912505D01* +X139600804Y-90908879D01* +X139721254Y-90863724D01* +X139736849Y-90855186D01* +X139838924Y-90778685D01* +X139851485Y-90766124D01* +X139927986Y-90664049D01* +X139936524Y-90648454D01* +X139981678Y-90528006D01* +X139985305Y-90512751D01* +X139990831Y-90461886D01* +X139991200Y-90455072D01* +X139991200Y-89832515D01* +X139986725Y-89817276D01* +X139985335Y-89816071D01* +X139977652Y-89814400D01* +X138905315Y-89814400D01* +X138890076Y-89818875D01* +X138888871Y-89820265D01* +X138887200Y-89827948D01* +X138887200Y-90900284D01* +X138379200Y-90900284D01* +X138379200Y-89832515D01* +X138374725Y-89817276D01* +X138373335Y-89816071D01* +X138365652Y-89814400D01* +X137293316Y-89814400D01* +X137278077Y-89818875D01* +X137276872Y-89820265D01* +X137275201Y-89827948D01* +X137275201Y-90455069D01* +X134708500Y-90455069D01* +X134708500Y-89288285D01* +X137275200Y-89288285D01* +X137279675Y-89303524D01* +X137281065Y-89304729D01* +X137288748Y-89306400D01* +X138361085Y-89306400D01* +X138376324Y-89301925D01* +X138377529Y-89300535D01* +X138379200Y-89292852D01* +X138379200Y-89288285D01* +X138887200Y-89288285D01* +X138891675Y-89303524D01* +X138893065Y-89304729D01* +X138900748Y-89306400D01* +X139973084Y-89306400D01* +X139988323Y-89301925D01* +X139989528Y-89300535D01* +X139991199Y-89292852D01* +X139991199Y-88665731D01* +X139990829Y-88658910D01* +X139985305Y-88608048D01* +X139981679Y-88592796D01* +X139936524Y-88472346D01* +X139927986Y-88456751D01* +X139851485Y-88354676D01* +X139838924Y-88342115D01* +X139736849Y-88265614D01* +X139721254Y-88257076D01* +X139600806Y-88211922D01* +X139585551Y-88208295D01* +X139534686Y-88202769D01* +X139527872Y-88202400D01* +X138905315Y-88202400D01* +X138890076Y-88206875D01* +X138888871Y-88208265D01* +X138887200Y-88215948D01* +X138887200Y-89288285D01* +X138379200Y-89288285D01* +X138379200Y-88220516D01* +X138374725Y-88205277D01* +X138373335Y-88204072D01* +X138365652Y-88202401D01* +X137738531Y-88202401D01* +X137731710Y-88202771D01* +X137680848Y-88208295D01* +X137665596Y-88211921D01* +X137545146Y-88257076D01* +X137529551Y-88265614D01* +X137427476Y-88342115D01* +X137414915Y-88354676D01* +X137338414Y-88456751D01* +X137329876Y-88472346D01* +X137284722Y-88592794D01* +X137281095Y-88608049D01* +X137275569Y-88658914D01* +X137275200Y-88665728D01* +X137275200Y-89288285D01* +X134708500Y-89288285D01* +X134708500Y-88662266D01* +X134701745Y-88600084D01* +X134650615Y-88463695D01* +X134563261Y-88347139D01* +X134446705Y-88259785D01* +X134310316Y-88208655D01* +X134248134Y-88201900D01* +X132451866Y-88201900D01* +X132389684Y-88208655D01* +X132253295Y-88259785D01* +X132136739Y-88347139D01* +X132049385Y-88463695D01* +X131998255Y-88600084D01* +X131991500Y-88662266D01* +X131991500Y-90458534D01* +X129684900Y-90458534D01* +X129684900Y-87744325D01* +X129704902Y-87676204D01* +X129721805Y-87655230D01* +X131430065Y-85946969D01* +X131478658Y-85916751D01* +X131516799Y-85903804D01* +X131559510Y-85879885D01* +X131594115Y-85860505D01* +X131694551Y-85804258D01* +X131851186Y-85673986D01* +X131981458Y-85517351D01* +X132058060Y-85380569D01* +X132078180Y-85344642D01* +X132078181Y-85344640D01* +X132081004Y-85339599D01* +X132082860Y-85334132D01* +X132082862Y-85334127D01* +X132144634Y-85152152D01* +X132144635Y-85152147D01* +X132146490Y-85146683D01* +X132175723Y-84945063D01* +X132177249Y-84886800D01* +X132163062Y-84732402D01* +X132159137Y-84689680D01* +X132159136Y-84689677D01* +X132158608Y-84683926D01* +X132157040Y-84678366D01* +X132104875Y-84493406D01* +X132104874Y-84493404D01* +X132103307Y-84487847D01* +X132089959Y-84460778D01* +X132015756Y-84310310D01* +X132013201Y-84305129D01* +X132000124Y-84287616D01* +X131894758Y-84146515D01* +X131894758Y-84146514D01* +X131891305Y-84141891D01* +X131771578Y-84031216D01* +X131745943Y-84007519D01* +X131745940Y-84007517D01* +X131741703Y-84003600D01* +X131631097Y-83933813D01* +X131574288Y-83897969D01* +X131574283Y-83897967D01* +X131569404Y-83894888D01* +X131380180Y-83819395D01* +X131180366Y-83779649D01* +X131174592Y-83779573D01* +X131174588Y-83779573D01* +X131071452Y-83778224D01* +X130976655Y-83776983D01* +X130970958Y-83777962D01* +X130970957Y-83777962D01* +X130795418Y-83808125D01* +X130775870Y-83811484D01* +X130584734Y-83881998D01* +X130579773Y-83884950D01* +X130579772Y-83884950D01* +X130505718Y-83929008D01* +X130409649Y-83986163D01* +X130256478Y-84120490D01* +X130252911Y-84125015D01* +X130252906Y-84125020D01* +X130200546Y-84191439D01* +X130130351Y-84280481D01* +X130127662Y-84285592D01* +X130127660Y-84285595D01* +X130095279Y-84347142D01* +X130035492Y-84460778D01* +X130031978Y-84472096D01* +X130000741Y-84523824D01* +X128007021Y-86517545D01* +X127996878Y-86526647D01* +X127967375Y-86550368D01* +X127963408Y-86555096D01* +X127935109Y-86588821D01* +X127931928Y-86592469D01* +X127930285Y-86594281D01* +X127928091Y-86596475D01* +X127900758Y-86629749D01* +X127900096Y-86630547D01* +X127840246Y-86701874D01* +X127837678Y-86706544D01* +X127834297Y-86710661D01* +X127818287Y-86740520D01* +X127790423Y-86792486D01* +X127789794Y-86793645D01* +X127747938Y-86869781D01* +X127747935Y-86869789D01* +X127744967Y-86875187D01* +X127743355Y-86880269D01* +X127740838Y-86884963D01* +X127713638Y-86973931D01* +X127713318Y-86974959D01* +X127685165Y-87063706D01* +X127684571Y-87069002D01* +X127683013Y-87074098D01* +X127678117Y-87122300D01* +X127673618Y-87166587D01* +X127673489Y-87167793D01* +X127667900Y-87217627D01* +X127667900Y-87221154D01* +X127667845Y-87222139D01* +X127667398Y-87227819D01* +X127663026Y-87270862D01* +X127663606Y-87276993D01* +X127667341Y-87316509D01* +X127667900Y-87328367D01* +X127667900Y-103492276D01* +X127647898Y-103560397D01* +X127630995Y-103581371D01* +X125993155Y-105219211D01* +X125930843Y-105253237D01* +X125860028Y-105248172D01* +X125803192Y-105205625D01* +X125779545Y-105143829D01* +X125779740Y-105140223D01* +X125777688Y-105131481D01* +X125776941Y-105123048D01* +X125776450Y-105111934D01* +X125776450Y-73135734D01* +X126251100Y-73135734D01* +X126257855Y-73197916D01* +X126308985Y-73334305D01* +X126396339Y-73450861D01* +X126512895Y-73538215D01* +X126649284Y-73589345D01* +X126711466Y-73596100D01* +X128507734Y-73596100D01* +X128569916Y-73589345D01* +X128706305Y-73538215D01* +X128822861Y-73450861D01* +X128910215Y-73334305D01* +X128961345Y-73197916D01* +X128968100Y-73135734D01* +X128968100Y-71339466D01* +X128961345Y-71277284D01* +X128910215Y-71140895D01* +X128822861Y-71024339D01* +X128706305Y-70936985D01* +X128569916Y-70885855D01* +X128507734Y-70879100D01* +X126711466Y-70879100D01* +X126649284Y-70885855D01* +X126512895Y-70936985D01* +X126396339Y-71024339D01* +X126308985Y-71140895D01* +X126257855Y-71277284D01* +X126251100Y-71339466D01* +X126251100Y-73135734D01* +X125776450Y-73135734D01* +X125776450Y-68774636D01* +X125777351Y-68759596D01* +X125780475Y-68733608D01* +X125781547Y-68724694D01* +X125770772Y-68659917D01* +X125770343Y-68657149D01* +X125762303Y-68601000D01* +X125762302Y-68600998D01* +X125761030Y-68592113D01* +X125744849Y-68556525D01* +X125739920Y-68543928D01* +X125717027Y-68474682D01* +X125604957Y-68135706D01* +X125603120Y-68128874D01* +X125602733Y-68122797D01* +X125599672Y-68114360D01* +X125599671Y-68114357D01* +X125580352Y-68061116D01* +X125579164Y-68057689D01* +X125572580Y-68037773D01* +X125572574Y-68037758D01* +X125571171Y-68033515D01* +X125569177Y-68029505D01* +X125567696Y-68025908D01* +X125565770Y-68020932D01* +X125556109Y-67994309D01* +X125553049Y-67985875D01* +X125542098Y-67970936D01* +X125530904Y-67952557D01* +X125526728Y-67944161D01* +X125522731Y-67936124D01* +X125497849Y-67909202D01* +X125492820Y-67903101D01* +X125489760Y-67899539D01* +X125486881Y-67895612D01* +X125468499Y-67877290D01* +X125464917Y-67873570D01* +X125429962Y-67835749D01* +X125429960Y-67835747D01* +X125423868Y-67829156D01* +X125416672Y-67824840D01* +X125408421Y-67817410D01* +X125392875Y-67801914D01* +X125246514Y-67656033D01* +X125067162Y-67477269D01* +X125055658Y-67464088D01* +X125055498Y-67463877D01* +X125038220Y-67441057D01* +X125031012Y-67435710D01* +X125031010Y-67435708D01* +X124981473Y-67398962D01* +X124981141Y-67398714D01* +X124929780Y-67360352D01* +X124922750Y-67355101D01* +X124921937Y-67354798D01* +X124921235Y-67354277D01* +X124851796Y-67328634D01* +X124851411Y-67328491D01* +X124794686Y-67307332D01* +X124794682Y-67307331D01* +X124786277Y-67304196D01* +X124760309Y-67302309D01* +X124753590Y-67301821D01* +X124737777Y-67299658D01* +X124424308Y-67236348D01* +X124412415Y-67233337D01* +X124412072Y-67233232D01* +X124403950Y-67229419D01* +X124395085Y-67228039D01* +X124395083Y-67228038D01* +X124368344Y-67223875D01* +X124345794Y-67220364D01* +X124340283Y-67219379D01* +X124318568Y-67214993D01* +X124314092Y-67214738D01* +X124314088Y-67214737D01* +X124313478Y-67214702D01* +X124313219Y-67214688D01* +X124301026Y-67213393D01* +X124298177Y-67212949D01* +X124298170Y-67212948D01* +X124293364Y-67212200D01* +X124273258Y-67212200D01* +X124266074Y-67211995D01* +X124261134Y-67211713D01* +X124209973Y-67208791D01* +X124201229Y-67210815D01* +X124192281Y-67211579D01* +X124192223Y-67210902D01* +X124180851Y-67212200D01* +X114748992Y-67212200D01* +X114680871Y-67192198D01* +X114634378Y-67138542D01* +X114624274Y-67068268D01* +X114653768Y-67003688D01* +X114696073Y-66974261D01* +X114695425Y-66973077D01* +X114703297Y-66968767D01* +X114711705Y-66965615D01* +X114828261Y-66878261D01* +X114915615Y-66761705D01* +X114966745Y-66625316D01* +X114973500Y-66563134D01* +X114973500Y-65616866D01* +X114966745Y-65554684D01* +X114915615Y-65418295D01* +X114828261Y-65301739D01* +X114711705Y-65214385D01* +X114575316Y-65163255D01* +X114513134Y-65156500D01* +X113566866Y-65156500D01* +X113504684Y-65163255D01* +X113368295Y-65214385D01* +X113251739Y-65301739D01* +X113164385Y-65418295D01* +X113113255Y-65554684D01* +X113112402Y-65562540D01* +X113112083Y-65563880D01* +X113076865Y-65625527D01* +X113013910Y-65658347D01* +X112943205Y-65651921D01* +X112887198Y-65608289D01* +X112863500Y-65534734D01* +X112863500Y-64856866D01* +X112856745Y-64794684D01* +X112805615Y-64658295D01* +X112718261Y-64541739D01* +X112613935Y-64463551D01* +X112571420Y-64406692D01* +X112563500Y-64362725D01* +X112563500Y-63956525D01* +X112567457Y-63925196D01* +X112571300Y-63910230D01* +X112571300Y-63889976D01* +X112572851Y-63870265D01* +X112574780Y-63858086D01* +X112576020Y-63850257D01* +X112571859Y-63806238D01* +X112571300Y-63794381D01* +X112571300Y-63654967D01* +X112571827Y-63643784D01* +X112573502Y-63636291D01* +X112572715Y-63611233D01* +X112571362Y-63568201D01* +X112571300Y-63564243D01* +X112571300Y-63536344D01* +X112570796Y-63532353D01* +X112569863Y-63520511D01* +X112569533Y-63509994D01* +X112568474Y-63476311D01* +X112566262Y-63468697D01* +X112566261Y-63468692D01* +X112562823Y-63456859D01* +X112558812Y-63437495D01* +X112557267Y-63425264D01* +X112556274Y-63417403D01* +X112553357Y-63410036D01* +X112553356Y-63410031D01* +X112539998Y-63376292D01* +X112536154Y-63365065D01* +X112534015Y-63357703D01* +X123770743Y-63357703D01* +X123771302Y-63361947D01* +X123771302Y-63361951D01* +X123781248Y-63437495D01* +X123808268Y-63642734D01* +X123809401Y-63646874D01* +X123809401Y-63646876D01* +X123824410Y-63701739D01* +X123884129Y-63920036D01* +X123885813Y-63923984D01* +X123978529Y-64141351D01* +X123996923Y-64184476D01* +X124029133Y-64238295D01* +X124138534Y-64421090D01* +X124144561Y-64431161D01* +X124324313Y-64655528D01* +X124408297Y-64735226D01* +X124526693Y-64847579D01* +X124532851Y-64853423D01* +X124766317Y-65021186D01* +X124770112Y-65023195D01* +X124770113Y-65023196D01* +X124791869Y-65034715D01* +X125020392Y-65155712D01* +X125086374Y-65179858D01* +X125275016Y-65248891D01* +X125290373Y-65254511D01* +X125571264Y-65315755D01* +X125599841Y-65318004D01* +X125794282Y-65333307D01* +X125794291Y-65333307D01* +X125796739Y-65333500D01* +X125952271Y-65333500D01* +X125954407Y-65333354D01* +X125954418Y-65333354D01* +X126162548Y-65319165D01* +X126162554Y-65319164D01* +X126166825Y-65318873D01* +X126171020Y-65318004D01* +X126171022Y-65318004D01* +X126336950Y-65283642D01* +X126448342Y-65260574D01* +X126719343Y-65164607D01* +X126894891Y-65074000D01* +X126971005Y-65034715D01* +X126971006Y-65034715D01* +X126974812Y-65032750D01* +X126978313Y-65030289D01* +X126978317Y-65030287D01* +X127137575Y-64918358D01* +X127210023Y-64867441D01* +X127352303Y-64735226D01* +X127417479Y-64674661D01* +X127417481Y-64674658D01* +X127420622Y-64671740D01* +X127602713Y-64449268D01* +X127752927Y-64204142D01* +X127789542Y-64120731D01* +X127866758Y-63944828D01* +X127866759Y-63944826D01* +X127868483Y-63940898D01* +X127892607Y-63856212D01* +X127946068Y-63668534D01* +X127947244Y-63664406D01* +X127987751Y-63379784D01* +X127987799Y-63370772D01* +X127989235Y-63096583D01* +X127989235Y-63096576D01* +X127989257Y-63092297D01* +X127979436Y-63017695D01* +X127955976Y-62839505D01* +X127951732Y-62807266D01* +X127949776Y-62800114D01* +X127916674Y-62679115D01* +X127875871Y-62529964D01* +X127852347Y-62474813D01* +X127764763Y-62269476D01* +X127764761Y-62269472D01* +X127763077Y-62265524D01* +X127615439Y-62018839D01* +X127435687Y-61794472D01* +X127227149Y-61596577D01* +X126993683Y-61428814D01* +X126971843Y-61417250D01* +X126941612Y-61401244D01* +X126739608Y-61294288D01* +X126527627Y-61216714D01* +X126473658Y-61196964D01* +X126473656Y-61196963D01* +X126469627Y-61195489D01* +X126188736Y-61134245D01* +X126157685Y-61131801D01* +X125965718Y-61116693D01* +X125965709Y-61116693D01* +X125963261Y-61116500D01* +X125807729Y-61116500D01* +X125805593Y-61116646D01* +X125805582Y-61116646D01* +X125597452Y-61130835D01* +X125597446Y-61130836D01* +X125593175Y-61131127D01* +X125588980Y-61131996D01* +X125588978Y-61131996D01* +X125544162Y-61141277D01* +X125311658Y-61189426D01* +X125040657Y-61285393D01* +X124785188Y-61417250D01* +X124781687Y-61419711D01* +X124781683Y-61419713D01* +X124721340Y-61462123D01* +X124549977Y-61582559D01* +X124531717Y-61599527D01* +X124344140Y-61773835D01* +X124339378Y-61778260D01* +X124157287Y-62000732D01* +X124007073Y-62245858D01* +X124005347Y-62249791D01* +X124005346Y-62249792D01* +X123904252Y-62480090D01* +X123891517Y-62509102D01* +X123890342Y-62513229D01* +X123890341Y-62513230D01* +X123880521Y-62547704D01* +X123812756Y-62785594D01* +X123772249Y-63070216D01* +X123772227Y-63074505D01* +X123772226Y-63074512D01* +X123770887Y-63330222D01* +X123770743Y-63357703D01* +X112534015Y-63357703D01* +X112526030Y-63330222D01* +X112523818Y-63322607D01* +X112513507Y-63305172D01* +X112504812Y-63287424D01* +X112497352Y-63268583D01* +X112486650Y-63253852D01* +X112471364Y-63232813D01* +X112464848Y-63222893D01* +X112446380Y-63191665D01* +X112446378Y-63191662D01* +X112442342Y-63184838D01* +X112428021Y-63170517D01* +X112415180Y-63155483D01* +X112407931Y-63145506D01* +X112403272Y-63139093D01* +X112369195Y-63110902D01* +X112360416Y-63102912D01* +X111034352Y-61776847D01* +X111026812Y-61768561D01* +X111022700Y-61762082D01* +X110973048Y-61715456D01* +X110970207Y-61712702D01* +X110950470Y-61692965D01* +X110947273Y-61690485D01* +X110938251Y-61682780D01* +X110911800Y-61657941D01* +X110906021Y-61652514D01* +X110899075Y-61648695D01* +X110899072Y-61648693D01* +X110888266Y-61642752D01* +X110871747Y-61631901D01* +X110871283Y-61631541D01* +X110855741Y-61619486D01* +X110848472Y-61616341D01* +X110848468Y-61616338D01* +X110815163Y-61601926D01* +X110804513Y-61596709D01* +X110765760Y-61575405D01* +X110746137Y-61570367D01* +X110727434Y-61563963D01* +X110716120Y-61559067D01* +X110716119Y-61559067D01* +X110708845Y-61555919D01* +X110701022Y-61554680D01* +X110701012Y-61554677D01* +X110665176Y-61549001D01* +X110653556Y-61546595D01* +X110618411Y-61537572D01* +X110618410Y-61537572D01* +X110610730Y-61535600D01* +X110590476Y-61535600D01* +X110570765Y-61534049D01* +X110558586Y-61532120D01* +X110550757Y-61530880D01* +X110542865Y-61531626D01* +X110506739Y-61535041D01* +X110494881Y-61535600D01* +X108686920Y-61535600D01* +X108618799Y-61515598D01* +X108572306Y-61461942D01* +X108562202Y-61391668D01* +X108591696Y-61327088D01* +X108625354Y-61299666D01* +X108677104Y-61270685D01* +X108677108Y-61270682D01* +X108682151Y-61267858D01* +X108838786Y-61137586D01* +X108969058Y-60980951D01* +X109036404Y-60860697D01* +X109065780Y-60808242D01* +X109065781Y-60808240D01* +X109068604Y-60803199D01* +X109070460Y-60797732D01* +X109070462Y-60797727D01* +X109132234Y-60615752D01* +X109132235Y-60615747D01* +X109134090Y-60610283D01* +X109163323Y-60408663D01* +X109164849Y-60350400D01* +X109146208Y-60147526D01* +X109090907Y-59951447D01* +X109071015Y-59911108D01* +X109003356Y-59773910D01* +X109000801Y-59768729D01* +X108995903Y-59762169D01* +X108934959Y-59680556D01* +X108878905Y-59605491D01* +X108858971Y-59587064D01* +X108822526Y-59526136D01* +X108818500Y-59494540D01* +X108818500Y-56488513D01* +X108826518Y-56444284D01* +X108858973Y-56357711D01* +X108858973Y-56357709D01* +X108861745Y-56350316D01* +X108862737Y-56341185D01* +X108863123Y-56340255D01* +X108864426Y-56334777D01* +X108865312Y-56334988D01* +X108889979Y-56275623D01* +X108948341Y-56235196D01* +X109019296Y-56232740D01* +X109080314Y-56269035D01* +X109112023Y-56332557D01* +X109114000Y-56354792D01* +X109114000Y-56729884D01* +X109118475Y-56745123D01* +X109119865Y-56746328D01* +X109127548Y-56747999D01* +X109204669Y-56747999D01* +X109211490Y-56747629D01* +X109262352Y-56742105D01* +X109277604Y-56738479D01* +X109398054Y-56693324D01* +X109413649Y-56684786D01* +X109515724Y-56608285D01* +X109528285Y-56595724D01* +X109604786Y-56493649D01* +X109613324Y-56478054D01* +X109658478Y-56357606D01* +X109662105Y-56342351D01* +X109667631Y-56291486D01* +X109668000Y-56284672D01* +X109668000Y-56159934D01* +X109675665Y-56125892D01* +X109676000Y-56121648D01* +X109676000Y-56107924D01* +X110184000Y-56107924D01* +X110187973Y-56121455D01* +X110195768Y-56122575D01* +X110303521Y-56090862D01* +X110314889Y-56086269D01* +X110479154Y-56000393D01* +X110489415Y-55993679D01* +X110633873Y-55877532D01* +X110642632Y-55868954D01* +X110761778Y-55726961D01* +X110768708Y-55716841D01* +X110858002Y-55554415D01* +X110862834Y-55543142D01* +X110918880Y-55366462D01* +X110921430Y-55354468D01* +X110937607Y-55210239D01* +X110938000Y-55203215D01* +X110938000Y-54872115D01* +X110933525Y-54856876D01* +X110932135Y-54855671D01* +X110924452Y-54854000D01* +X110202115Y-54854000D01* +X110186876Y-54858475D01* +X110185671Y-54859865D01* +X110184000Y-54867548D01* +X110184000Y-56107924D01* +X109676000Y-56107924D01* +X109676000Y-55787115D01* +X109671525Y-55771876D01* +X109670135Y-55770671D01* +X109662452Y-55769000D01* +X109132115Y-55769000D01* +X109116876Y-55773475D01* +X109107710Y-55784053D01* +X109083596Y-55828214D01* +X109021284Y-55862239D01* +X108950468Y-55857175D01* +X108893632Y-55814628D01* +X108868821Y-55748108D01* +X108868500Y-55739119D01* +X108868500Y-55283137D01* +X108888502Y-55215016D01* +X108942158Y-55168523D01* +X109012432Y-55158419D01* +X109077012Y-55187913D01* +X109115396Y-55247639D01* +X109118475Y-55258124D01* +X109119865Y-55259329D01* +X109127548Y-55261000D01* +X109657885Y-55261000D01* +X109673124Y-55256525D01* +X109674329Y-55255135D01* +X109676000Y-55247452D01* +X109676000Y-54872115D01* +X109671525Y-54856876D01* +X109670135Y-54855671D01* +X109662452Y-54854000D01* +X109200674Y-54854000D01* +X109132553Y-54833998D01* +X109086060Y-54780342D01* +X109075956Y-54710068D01* +X109105450Y-54645488D01* +X109114101Y-54636452D01* +X109133527Y-54618082D01* +X109133529Y-54618080D01* +X109138485Y-54613393D01* +X109142317Y-54607755D01* +X109142320Y-54607751D01* +X109236442Y-54469255D01* +X109240277Y-54463612D01* +X109255638Y-54425206D01* +X109299505Y-54369387D01* +X109372626Y-54346000D01* +X109657885Y-54346000D01* +X109673124Y-54341525D01* +X109674329Y-54340135D01* +X109676000Y-54332452D01* +X109676000Y-54327885D01* +X110184000Y-54327885D01* +X110188475Y-54343124D01* +X110189865Y-54344329D01* +X110197548Y-54346000D01* +X110919885Y-54346000D01* +X110935124Y-54341525D01* +X110936329Y-54340135D01* +X110938000Y-54332452D01* +X110938000Y-54003343D01* +X110937699Y-53997195D01* +X110924188Y-53859397D01* +X110921805Y-53847362D01* +X110868233Y-53669924D01* +X110863559Y-53658584D01* +X110776540Y-53494923D01* +X110769751Y-53484706D01* +X110652603Y-53341067D01* +X110643959Y-53332363D01* +X110501144Y-53214216D01* +X110490973Y-53207356D01* +X110327924Y-53119196D01* +X110316619Y-53114444D01* +X110201308Y-53078750D01* +X110187205Y-53078544D01* +X110184000Y-53085299D01* +X110184000Y-54327885D01* +X109676000Y-54327885D01* +X109676000Y-53092076D01* +X109672027Y-53078545D01* +X109664232Y-53077425D01* +X109556479Y-53109138D01* +X109545111Y-53113731D01* +X109380846Y-53199607D01* +X109370585Y-53206321D01* +X109226127Y-53322468D01* +X109217368Y-53331046D01* +X109173000Y-53383921D01* +X109113890Y-53423248D01* +X109042902Y-53424374D01* +X108999952Y-53403028D01* +X108934322Y-53352850D01* +X108803162Y-53291689D01* +X108776369Y-53279195D01* +X108776366Y-53279194D01* +X108770192Y-53276315D01* +X108763544Y-53274829D01* +X108763541Y-53274828D01* +X108598494Y-53237936D01* +X108598495Y-53237936D01* +X108593457Y-53236810D01* +X108587912Y-53236500D01* +X108454756Y-53236500D01* +X108319963Y-53251143D01* +X108236609Y-53279195D01* +X108154796Y-53306728D01* +X108154794Y-53306729D01* +X108148325Y-53308906D01* +X107993095Y-53402177D01* +X107988138Y-53406865D01* +X107988135Y-53406867D01* +X107866473Y-53521918D01* +X107861515Y-53526607D01* +X107857683Y-53532245D01* +X107857680Y-53532249D01* +X107806740Y-53607205D01* +X107759723Y-53676388D01* +X107692470Y-53844534D01* +X107691356Y-53851262D01* +X107691355Y-53851266D01* +X107666179Y-54003343D01* +X107662892Y-54023198D01* +X107663249Y-54030015D01* +X107663249Y-54030019D01* +X107669480Y-54148906D01* +X107653071Y-54217980D01* +X107601922Y-54267217D01* +X107543653Y-54281500D01* +X107161866Y-54281500D01* +X107158471Y-54281869D01* +X107158467Y-54281869D01* +X107132469Y-54284693D01* +X107123606Y-54285656D01* +X107096394Y-54285656D01* +X107087531Y-54284693D01* +X107061533Y-54281869D01* +X107061529Y-54281869D01* +X107058134Y-54281500D01* +X106661866Y-54281500D01* +X106658471Y-54281869D01* +X106658467Y-54281869D01* +X106632469Y-54284693D01* +X106623606Y-54285656D01* +X106596394Y-54285656D01* +X106587531Y-54284693D01* +X106561533Y-54281869D01* +X106561529Y-54281869D01* +X106558134Y-54281500D01* +X106161866Y-54281500D01* +X106158471Y-54281869D01* +X106158467Y-54281869D01* +X106132469Y-54284693D01* +X106123606Y-54285656D01* +X106096394Y-54285656D01* +X106087531Y-54284693D01* +X106061533Y-54281869D01* +X106061529Y-54281869D01* +X106058134Y-54281500D01* +X105661866Y-54281500D01* +X105658471Y-54281869D01* +X105658467Y-54281869D01* +X105632469Y-54284693D01* +X105623606Y-54285656D01* +X105596394Y-54285656D01* +X105587531Y-54284693D01* +X105561533Y-54281869D01* +X105561529Y-54281869D01* +X105558134Y-54281500D01* +X105161866Y-54281500D01* +X105158471Y-54281869D01* +X105158467Y-54281869D01* +X105132469Y-54284693D01* +X105123606Y-54285656D01* +X105096394Y-54285656D01* +X105087531Y-54284693D01* +X105061533Y-54281869D01* +X105061529Y-54281869D01* +X105058134Y-54281500D01* +X104661866Y-54281500D01* +X104658471Y-54281869D01* +X104658467Y-54281869D01* +X104632469Y-54284693D01* +X104623606Y-54285656D01* +X104596394Y-54285656D01* +X104587531Y-54284693D01* +X104561533Y-54281869D01* +X104561529Y-54281869D01* +X104558134Y-54281500D01* +X104161866Y-54281500D01* +X104158471Y-54281869D01* +X104158467Y-54281869D01* +X104132469Y-54284693D01* +X104123606Y-54285656D01* +X104096394Y-54285656D01* +X104087531Y-54284693D01* +X104061533Y-54281869D01* +X104061529Y-54281869D01* +X104058134Y-54281500D01* +X103678416Y-54281500D01* +X103610295Y-54261498D01* +X103563802Y-54207842D01* +X103554108Y-54134921D01* +X103557108Y-54116802D01* +X103552203Y-54023198D01* +X103547987Y-53942766D01* +X103547630Y-53935953D01* +X103535330Y-53891296D01* +X103501352Y-53767941D01* +X103499539Y-53761359D01* +X103415078Y-53601164D01* +X103410673Y-53595951D01* +X103410670Y-53595947D01* +X103302594Y-53468057D01* +X103302590Y-53468053D01* +X103298187Y-53462843D01* +X103292762Y-53458695D01* +X103159743Y-53356994D01* +X103159739Y-53356991D01* +X103154322Y-53352850D01* +X103023162Y-53291689D01* +X102996369Y-53279195D01* +X102996366Y-53279194D01* +X102990192Y-53276315D01* +X102983544Y-53274829D01* +X102983541Y-53274828D01* +X102818494Y-53237936D01* +X102818495Y-53237936D01* +X102813457Y-53236810D01* +X102807912Y-53236500D01* +X102674756Y-53236500D01* +X102539963Y-53251143D01* +X102456609Y-53279195D01* +X102374796Y-53306728D01* +X102374794Y-53306729D01* +X102368325Y-53308906D01* +X102216349Y-53400222D01* +X102216346Y-53400223D01* +X102213095Y-53402177D01* +X102212745Y-53401594D01* +X102151083Y-53425065D01* +X102081609Y-53410439D01* +X102043609Y-53379085D01* +X102012603Y-53341067D01* +X102003959Y-53332363D01* +X101861144Y-53214216D01* +X101850973Y-53207356D01* +X101687924Y-53119196D01* +X101676619Y-53114444D01* +X101561308Y-53078750D01* +X101547205Y-53078544D01* +X101544000Y-53085299D01* +X101544000Y-54327885D01* +X101548475Y-54343124D01* +X101549865Y-54344329D01* +X101557548Y-54346000D01* +X101847243Y-54346000D01* +X101915364Y-54366002D01* +X101958700Y-54413235D01* +X102024922Y-54538836D01* +X102029327Y-54544049D01* +X102029330Y-54544053D01* +X102116051Y-54646672D01* +X102144743Y-54711613D01* +X102133770Y-54781756D01* +X102086617Y-54834833D01* +X102019813Y-54854000D01* +X101562115Y-54854000D01* +X101546876Y-54858475D01* +X101545671Y-54859865D01* +X101544000Y-54867548D01* +X101544000Y-55242885D01* +X101548475Y-55258124D01* +X101549865Y-55259329D01* +X101557548Y-55261000D01* +X102087885Y-55261000D01* +X102103124Y-55256525D01* +X102112290Y-55245947D01* +X102136404Y-55201786D01* +X102198716Y-55167761D01* +X102269532Y-55172825D01* +X102326368Y-55215372D01* +X102351179Y-55281892D01* +X102351500Y-55290881D01* +X102351500Y-55643000D01* +X102331498Y-55711121D01* +X102277842Y-55757614D01* +X102225500Y-55769000D01* +X101562115Y-55769000D01* +X101546876Y-55773475D01* +X101545671Y-55774865D01* +X101544000Y-55782548D01* +X101544000Y-56107924D01* +X101546897Y-56117790D01* +X101552001Y-56153288D01* +X101552001Y-56176442D01* +X101531999Y-56244563D01* +X101478343Y-56291056D01* +X101469612Y-56294654D01* +X101366873Y-56332557D01* +X101323934Y-56348398D01* +X101318973Y-56351350D01* +X101318972Y-56351350D01* +X101158205Y-56446997D01* +X101148849Y-56452563D01* +X100995678Y-56586890D01* +X100992106Y-56591421D01* +X100887542Y-56724059D01* +X100829660Y-56765172D01* +X100758740Y-56768466D01* +X100699497Y-56735148D01* +X99161006Y-55196657D01* +X100282000Y-55196657D01* +X100282301Y-55202805D01* +X100295812Y-55340603D01* +X100298195Y-55352638D01* +X100351767Y-55530076D01* +X100356441Y-55541416D01* +X100443460Y-55705077D01* +X100450249Y-55715294D01* +X100567397Y-55858933D01* +X100576041Y-55867637D01* +X100718856Y-55985784D01* +X100729027Y-55992644D01* +X100892076Y-56080804D01* +X100903381Y-56085556D01* +X101018692Y-56121250D01* +X101032795Y-56121456D01* +X101036000Y-56114701D01* +X101036000Y-54872115D01* +X101031525Y-54856876D01* +X101030135Y-54855671D01* +X101022452Y-54854000D01* +X100300115Y-54854000D01* +X100284876Y-54858475D01* +X100283671Y-54859865D01* +X100282000Y-54867548D01* +X100282000Y-55196657D01* +X99161006Y-55196657D01* +X99117915Y-55153566D01* +X99107048Y-55141175D01* +X99092613Y-55122363D01* +X99087587Y-55115813D01* +X99055675Y-55091326D01* +X99055672Y-55091323D01* +X99031043Y-55072424D01* +X98967029Y-55023304D01* +X98967027Y-55023303D01* +X98960476Y-55018276D01* +X98812451Y-54956962D01* +X98804264Y-54955884D01* +X98804263Y-54955884D01* +X98793058Y-54954409D01* +X98757965Y-54949789D01* +X98693485Y-54941300D01* +X98693482Y-54941300D01* +X98693474Y-54941299D01* +X98661789Y-54937128D01* +X98653600Y-54936050D01* +X98643706Y-54937352D01* +X98642267Y-54937128D01* +X98637155Y-54937128D01* +X98637155Y-54936331D01* +X98573561Y-54926415D01* +X98520115Y-54878733D01* +X98503568Y-54851992D01* +X98503563Y-54851986D01* +X98499716Y-54845769D01* +X98488761Y-54834833D01* +X98381784Y-54728042D01* +X98381779Y-54728038D01* +X98376603Y-54722871D01* +X98355833Y-54710068D01* +X98234750Y-54635431D01* +X98234748Y-54635430D01* +X98228520Y-54631591D01* +X98063409Y-54576826D01* +X98056573Y-54576126D01* +X98056570Y-54576125D01* +X98005074Y-54570849D01* +X97960672Y-54566300D01* +X97361528Y-54566300D01* +X97358282Y-54566637D01* +X97358278Y-54566637D01* +X97264365Y-54576381D01* +X97264361Y-54576382D01* +X97257507Y-54577093D01* +X97250971Y-54579274D01* +X97250969Y-54579274D01* +X97146919Y-54613988D01* +X97092493Y-54632146D01* +X96944569Y-54723684D01* +X96939396Y-54728866D01* +X96837853Y-54830586D01* +X96775570Y-54864665D01* +X96704750Y-54859662D01* +X96659663Y-54830741D01* +X96556788Y-54728046D01* +X96556783Y-54728042D01* +X96551603Y-54722871D01* +X96530833Y-54710068D01* +X96409750Y-54635431D01* +X96409748Y-54635430D01* +X96403520Y-54631591D01* +X96238409Y-54576826D01* +X96231573Y-54576126D01* +X96231570Y-54576125D01* +X96180074Y-54570849D01* +X96135672Y-54566300D01* +X95536528Y-54566300D01* +X95533282Y-54566637D01* +X95533278Y-54566637D01* +X95439365Y-54576381D01* +X95439361Y-54576382D01* +X95432507Y-54577093D01* +X95425971Y-54579274D01* +X95425969Y-54579274D01* +X95321919Y-54613988D01* +X95267493Y-54632146D01* +X95119569Y-54723684D01* +X95114396Y-54728866D01* +X95001842Y-54841616D01* +X95001838Y-54841621D01* +X94996671Y-54846797D01* +X94992831Y-54853027D01* +X94992830Y-54853028D01* +X94990743Y-54856414D01* +X94988714Y-54858241D01* +X94988293Y-54858773D01* +X94988202Y-54858701D01* +X94937972Y-54903908D01* +X94883482Y-54916300D01* +X91518767Y-54916300D01* +X91507584Y-54915773D01* +X91500091Y-54914098D01* +X91492165Y-54914347D01* +X91492164Y-54914347D01* +X91432014Y-54916238D01* +X91428055Y-54916300D01* +X91400144Y-54916300D01* +X91396210Y-54916797D01* +X91396209Y-54916797D01* +X91396144Y-54916805D01* +X91384307Y-54917738D01* +X91352490Y-54918738D01* +X91348029Y-54918878D01* +X91340110Y-54919127D01* +X91322454Y-54924256D01* +X91320658Y-54924778D01* +X91301306Y-54928786D01* +X91294235Y-54929680D01* +X91281203Y-54931326D01* +X91273834Y-54934243D01* +X91273832Y-54934244D01* +X91240097Y-54947600D01* +X91228869Y-54951445D01* +X91186407Y-54963782D01* +X91179585Y-54967816D01* +X91179579Y-54967819D01* +X91168968Y-54974094D01* +X91151218Y-54982790D01* +X91139756Y-54987328D01* +X91139751Y-54987331D01* +X91132383Y-54990248D01* +X91125968Y-54994909D01* +X91096625Y-55016227D01* +X91086707Y-55022743D01* +X91074499Y-55029963D01* +X91048637Y-55045258D01* +X91034313Y-55059582D01* +X91019281Y-55072421D01* +X91002893Y-55084328D01* +X90981004Y-55110787D01* +X90974712Y-55118393D01* +X90966722Y-55127173D01* +X90758147Y-55335748D01* +X90749861Y-55343288D01* +X90743382Y-55347400D01* +X90737957Y-55353177D01* +X90696757Y-55397051D01* +X90694002Y-55399893D01* +X90674265Y-55419630D01* +X90671785Y-55422827D01* +X90664082Y-55431847D01* +X90633814Y-55464079D01* +X90629995Y-55471025D01* +X90629993Y-55471028D01* +X90624052Y-55481834D01* +X90613201Y-55498353D01* +X90600786Y-55514359D01* +X90597641Y-55521628D01* +X90597638Y-55521632D01* +X90583226Y-55554937D01* +X90578009Y-55565587D01* +X90556705Y-55604340D01* +X90554734Y-55612015D01* +X90554734Y-55612016D01* +X90551667Y-55623962D01* +X90545263Y-55642666D01* +X90545119Y-55643000D01* +X90537219Y-55661255D01* +X90535980Y-55669078D01* +X90535977Y-55669088D01* +X90530301Y-55704924D01* +X90527895Y-55716544D01* +X90516900Y-55759370D01* +X90516900Y-55779624D01* +X90515349Y-55799334D01* +X90512180Y-55819343D01* +X90512926Y-55827235D01* +X90516341Y-55863361D01* +X90516900Y-55875219D01* +X90516900Y-55895071D01* +X90496898Y-55963192D01* +X90474993Y-55986732D01* +X90475669Y-55987408D01* +X90469319Y-55993758D01* +X90462139Y-55999139D01* +X90374785Y-56115695D01* +X90323655Y-56252084D01* +X90316900Y-56314266D01* +X90316900Y-57970534D01* +X90323655Y-58032716D01* +X90374785Y-58169105D01* +X90462139Y-58285661D01* +X90578695Y-58373015D01* +X90587103Y-58376167D01* +X90594975Y-58380477D01* +X90593672Y-58382857D01* +X90639204Y-58417064D01* +X90663901Y-58483627D01* +X90648691Y-58552975D01* +X90598403Y-58603091D01* +X90591303Y-58606333D01* +X90587101Y-58608634D01* +X90578695Y-58611785D01* +X90462139Y-58699139D01* +X90374785Y-58815695D01* +X90323655Y-58952084D01* +X90316900Y-59014266D01* +X90316900Y-60670534D01* +X90323655Y-60732716D01* +X90374785Y-60869105D01* +X90462139Y-60985661D01* +X90469319Y-60991042D01* +X90475632Y-60997355D01* +X90509658Y-61059667D01* +X90504593Y-61130482D01* +X90480176Y-61170757D01* +X90421560Y-61235856D01* +X90368887Y-61327088D01* +X90345611Y-61367404D01* +X90326073Y-61401244D01* +X90267058Y-61582872D01* +X90266368Y-61589433D01* +X90266368Y-61589435D01* +X90253264Y-61714116D01* +X90247096Y-61772800D01* +X90247786Y-61779365D01* +X90264509Y-61938472D01* +X90267058Y-61962728D01* +X90326073Y-62144356D01* +X90329376Y-62150078D01* +X90329377Y-62150079D01* +X90338320Y-62165569D01* +X90421560Y-62309744D01* +X90425978Y-62314651D01* +X90425979Y-62314652D01* +X90544925Y-62446755D01* +X90549347Y-62451666D01* +X90628401Y-62509102D01* +X90675985Y-62543674D01* +X90703848Y-62563918D01* +X90709876Y-62566602D01* +X90709878Y-62566603D01* +X90872281Y-62638909D01* +X90878312Y-62641594D01* +X90971712Y-62661447D01* +X91058656Y-62679928D01* +X91058661Y-62679928D01* +X91065113Y-62681300D01* +X91256087Y-62681300D01* +X91262539Y-62679928D01* +X91262544Y-62679928D01* +X91349488Y-62661447D01* +X91442888Y-62641594D01* +X91448919Y-62638909D01* +X91611322Y-62566603D01* +X91611324Y-62566602D01* +X91617352Y-62563918D01* +X91645216Y-62543674D01* +X91692799Y-62509102D01* +X91771853Y-62451666D01* +X91777310Y-62445606D01* +X91808002Y-62411518D01* +X91879441Y-62332178D01* +X91939886Y-62294938D01* +X92010869Y-62296290D01* +X92065090Y-62332761D01* +X92065600Y-62332218D01* +X92071378Y-62337644D01* +X92071379Y-62337645D01* +X92115267Y-62378858D01* +X92118109Y-62381613D01* +X92137830Y-62401334D01* +X92141025Y-62403812D01* +X92150047Y-62411518D01* +X92182279Y-62441786D01* +X92189228Y-62445606D01* +X92200032Y-62451546D01* +X92216556Y-62462399D01* +X92232559Y-62474813D01* +X92273143Y-62492376D01* +X92283773Y-62497583D01* +X92322540Y-62518895D01* +X92330217Y-62520866D01* +X92330222Y-62520868D01* +X92342158Y-62523932D01* +X92360866Y-62530337D01* +X92379455Y-62538381D01* +X92387280Y-62539620D01* +X92387282Y-62539621D01* +X92423119Y-62545297D01* +X92434740Y-62547704D01* +X92466559Y-62555873D01* +X92477570Y-62558700D01* +X92497831Y-62558700D01* +X92517540Y-62560251D01* +X92537543Y-62563419D01* +X92545435Y-62562673D01* +X92550662Y-62562179D01* +X92581554Y-62559259D01* +X92593411Y-62558700D01* +X94129833Y-62558700D01* +X94141016Y-62559227D01* +X94148509Y-62560902D01* +X94156435Y-62560653D01* +X94156436Y-62560653D01* +X94216586Y-62558762D01* +X94220545Y-62558700D01* +X94248456Y-62558700D01* +X94252391Y-62558203D01* +X94252456Y-62558195D01* +X94264293Y-62557262D01* +X94296551Y-62556248D01* +X94300570Y-62556122D01* +X94308489Y-62555873D01* +X94327943Y-62550221D01* +X94347300Y-62546213D01* +X94359530Y-62544668D01* +X94359531Y-62544668D01* +X94367397Y-62543674D01* +X94374768Y-62540755D01* +X94374770Y-62540755D01* +X94408512Y-62527396D01* +X94419742Y-62523551D01* +X94454583Y-62513429D01* +X94454584Y-62513429D01* +X94462193Y-62511218D01* +X94469012Y-62507185D01* +X94469017Y-62507183D01* +X94479628Y-62500907D01* +X94497376Y-62492212D01* +X94516217Y-62484752D01* +X94530835Y-62474132D01* +X94551987Y-62458764D01* +X94561907Y-62452248D01* +X94593135Y-62433780D01* +X94593138Y-62433778D01* +X94599962Y-62429742D01* +X94614283Y-62415421D01* +X94629317Y-62402580D01* +X94631032Y-62401334D01* +X94645707Y-62390672D01* +X94673898Y-62356595D01* +X94681888Y-62347816D01* +X96008899Y-61020805D01* +X96071211Y-60986779D01* +X96097994Y-60983900D01* +X97809194Y-60983900D01* +X97877315Y-61003902D01* +X97923808Y-61057558D01* +X97933912Y-61127832D01* +X97904418Y-61192412D01* +X97844692Y-61230796D01* +X97835390Y-61233147D01* +X97710912Y-61259606D01* +X97704882Y-61262291D01* +X97704881Y-61262291D01* +X97542478Y-61334597D01* +X97542476Y-61334598D01* +X97536448Y-61337282D01* +X97381947Y-61449534D01* +X97377526Y-61454444D01* +X97377525Y-61454445D01* +X97259543Y-61585478D01* +X97254160Y-61591456D01* +X97158673Y-61756844D01* +X97099658Y-61938472D01* +X97098968Y-61945033D01* +X97098968Y-61945035D01* +X97096449Y-61969006D01* +X97079696Y-62128400D01* +X97080386Y-62134965D01* +X97099658Y-62318328D01* +X97097334Y-62318572D01* +X97092745Y-62378697D01* +X97049926Y-62435328D01* +X96983288Y-62459821D01* +X96974901Y-62460100D01* +X95658963Y-62460100D01* +X95647779Y-62459573D01* +X95640291Y-62457899D01* +X95632368Y-62458148D01* +X95572233Y-62460038D01* +X95568275Y-62460100D01* +X95540344Y-62460100D01* +X95536429Y-62460595D01* +X95536425Y-62460595D01* +X95536367Y-62460603D01* +X95536338Y-62460606D01* +X95524496Y-62461539D01* +X95480310Y-62462927D01* +X95462944Y-62467972D01* +X95460858Y-62468578D01* +X95441506Y-62472586D01* +X95429268Y-62474132D01* +X95429266Y-62474133D01* +X95421403Y-62475126D01* +X95380286Y-62491406D01* +X95369085Y-62495241D01* +X95326606Y-62507582D01* +X95319787Y-62511615D01* +X95319782Y-62511617D01* +X95309171Y-62517893D01* +X95291421Y-62526590D01* +X95272583Y-62534048D01* +X95266167Y-62538709D01* +X95266166Y-62538710D01* +X95247484Y-62552284D01* +X95240375Y-62557449D01* +X95236825Y-62560028D01* +X95226901Y-62566547D01* +X95195660Y-62585022D01* +X95195655Y-62585026D01* +X95188837Y-62589058D01* +X95174513Y-62603382D01* +X95159481Y-62616221D01* +X95143093Y-62628128D01* +X95114912Y-62662193D01* +X95106922Y-62670973D01* +X92763900Y-65013995D01* +X92701588Y-65048021D01* +X92674805Y-65050900D01* +X87503287Y-65050900D01* +X87435166Y-65030898D01* +X87388673Y-64977242D01* +X87378569Y-64906968D01* +X87408063Y-64842388D01* +X87417516Y-64832600D01* +X87449865Y-64802540D01* +X87522303Y-64735226D01* +X87587479Y-64674661D01* +X87587481Y-64674658D01* +X87590622Y-64671740D01* +X87772713Y-64449268D01* +X87922927Y-64204142D01* +X87959542Y-64120731D01* +X88036758Y-63944828D01* +X88036759Y-63944826D01* +X88038483Y-63940898D01* +X88062607Y-63856212D01* +X88116068Y-63668534D01* +X88117244Y-63664406D01* +X88157751Y-63379784D01* +X88157799Y-63370772D01* +X88159235Y-63096583D01* +X88159235Y-63096576D01* +X88159257Y-63092297D01* +X88149436Y-63017695D01* +X88125976Y-62839505D01* +X88121732Y-62807266D01* +X88119776Y-62800114D01* +X88086674Y-62679115D01* +X88045871Y-62529964D01* +X88022347Y-62474813D01* +X87934763Y-62269476D01* +X87934761Y-62269472D01* +X87933077Y-62265524D01* +X87785439Y-62018839D01* +X87605687Y-61794472D01* +X87397149Y-61596577D01* +X87163683Y-61428814D01* +X87141843Y-61417250D01* +X87111612Y-61401244D01* +X86909608Y-61294288D01* +X86697627Y-61216714D01* +X86643658Y-61196964D01* +X86643656Y-61196963D01* +X86639627Y-61195489D01* +X86358736Y-61134245D01* +X86327685Y-61131801D01* +X86135718Y-61116693D01* +X86135709Y-61116693D01* +X86133261Y-61116500D01* +X85977729Y-61116500D01* +X85975593Y-61116646D01* +X85975582Y-61116646D01* +X85767452Y-61130835D01* +X85767446Y-61130836D01* +X85763175Y-61131127D01* +X85758980Y-61131996D01* +X85758978Y-61131996D01* +X85714162Y-61141277D01* +X85481658Y-61189426D01* +X85210657Y-61285393D01* +X84955188Y-61417250D01* +X84951687Y-61419711D01* +X84951683Y-61419713D01* +X84891340Y-61462123D01* +X84719977Y-61582559D01* +X84701717Y-61599527D01* +X84514140Y-61773835D01* +X84509378Y-61778260D01* +X84327287Y-62000732D01* +X84177073Y-62245858D01* +X84175347Y-62249791D01* +X84175346Y-62249792D01* +X84074252Y-62480090D01* +X84061517Y-62509102D01* +X84060342Y-62513229D01* +X84060341Y-62513230D01* +X84050521Y-62547704D01* +X83982756Y-62785594D01* +X83942249Y-63070216D01* +X83942227Y-63074505D01* +X83942226Y-63074512D01* +X83940887Y-63330222D01* +X83940743Y-63357703D01* +X83941302Y-63361947D01* +X83941302Y-63361951D01* +X83951248Y-63437495D01* +X83978268Y-63642734D01* +X83979401Y-63646874D01* +X83979401Y-63646876D01* +X83994410Y-63701739D01* +X84054129Y-63920036D01* +X84055813Y-63923984D01* +X84148529Y-64141351D01* +X84166923Y-64184476D01* +X84199133Y-64238295D01* +X84308534Y-64421090D01* +X84314561Y-64431161D01* +X84494313Y-64655528D01* +X84578297Y-64735226D01* +X84696693Y-64847579D01* +X84702851Y-64853423D01* +X84936317Y-65021186D01* +X84940112Y-65023195D01* +X84940113Y-65023196D01* +X84961869Y-65034715D01* +X85190392Y-65155712D01* +X85256374Y-65179858D01* +X85445016Y-65248891D01* +X85460373Y-65254511D01* +X85741264Y-65315755D01* +X85769841Y-65318004D01* +X85964282Y-65333307D01* +X85964291Y-65333307D01* +X85966739Y-65333500D01* +X86122271Y-65333500D01* +X86124407Y-65333354D01* +X86124418Y-65333354D01* +X86332548Y-65319165D01* +X86332554Y-65319164D01* +X86336825Y-65318873D01* +X86341020Y-65318004D01* +X86341022Y-65318004D01* +X86500071Y-65285067D01* +X86570833Y-65290840D01* +X86627240Y-65333952D01* +X86651385Y-65400717D01* +X86635600Y-65469937D01* +X86614718Y-65497543D01* +X86408619Y-65703642D01* +X85802864Y-66309396D01* +X85740552Y-66343421D01* +X85713769Y-66346300D01* +X80698367Y-66346300D01* +X80687184Y-66345773D01* +X80679691Y-66344098D01* +X80671765Y-66344347D01* +X80671764Y-66344347D01* +X80611614Y-66346238D01* +X80607655Y-66346300D01* +X80579744Y-66346300D01* +X80575810Y-66346797D01* +X80575809Y-66346797D01* +X80575744Y-66346805D01* +X80563907Y-66347738D01* +X80532090Y-66348738D01* +X80527629Y-66348878D01* +X80519710Y-66349127D01* +X80502054Y-66354256D01* +X80500258Y-66354778D01* +X80480906Y-66358786D01* +X80473835Y-66359680D01* +X80460803Y-66361326D01* +X80453434Y-66364243D01* +X80453432Y-66364244D01* +X80419697Y-66377600D01* +X80408469Y-66381445D01* +X80366007Y-66393782D01* +X80359185Y-66397816D01* +X80359179Y-66397819D01* +X80348568Y-66404094D01* +X80330818Y-66412790D01* +X80319356Y-66417328D01* +X80319351Y-66417331D01* +X80311983Y-66420248D01* +X80294570Y-66432899D01* +X80276225Y-66446227D01* +X80266307Y-66452743D01* +X80247619Y-66463795D01* +X80228237Y-66475258D01* +X80213913Y-66489582D01* +X80198881Y-66502421D01* +X80182493Y-66514328D01* +X80154312Y-66548393D01* +X80146322Y-66557173D01* +X79219813Y-67483682D01* +X79211527Y-67491222D01* +X79205048Y-67495334D01* +X79199623Y-67501111D01* +X79158423Y-67544985D01* +X79155668Y-67547827D01* +X79135931Y-67567564D01* +X79133451Y-67570761D01* +X79125748Y-67579781D01* +X79095480Y-67612013D01* +X79091661Y-67618959D01* +X79091659Y-67618962D01* +X79085718Y-67629768D01* +X79074867Y-67646287D01* +X79062452Y-67662293D01* +X79059307Y-67669562D01* +X79059304Y-67669566D01* +X79044892Y-67702871D01* +X79039675Y-67713521D01* +X79018371Y-67752274D01* +X79016400Y-67759949D01* +X79016400Y-67759950D01* +X79013333Y-67771896D01* +X79006929Y-67790600D01* +X78998885Y-67809189D01* +X78997646Y-67817012D01* +X78997643Y-67817022D01* +X78991967Y-67852858D01* +X78989561Y-67864478D01* +X78981568Y-67895612D01* +X78978566Y-67907304D01* +X78978566Y-67927558D01* +X78977015Y-67947268D01* +X78973846Y-67967277D01* +X78974592Y-67975169D01* +X78978007Y-68011295D01* +X78978566Y-68023153D01* +X78978566Y-68317136D01* +X78958564Y-68385257D01* +X78918870Y-68424279D01* +X78908035Y-68430984D01* +X78908033Y-68430986D01* +X78907924Y-68430809D01* +X78845578Y-68456042D01* +X78775814Y-68442868D01* +X78759329Y-68432293D01* +X78757203Y-68430171D01* +X78750980Y-68426335D01* +X78750976Y-68426332D01* +X78615350Y-68342731D01* +X78615348Y-68342730D01* +X78609120Y-68338891D01* +X78444009Y-68284126D01* +X78437173Y-68283426D01* +X78437170Y-68283425D01* +X78376487Y-68277208D01* +X78341272Y-68273600D01* +X77767128Y-68273600D01* +X77763882Y-68273937D01* +X77763878Y-68273937D01* +X77669965Y-68283681D01* +X77669961Y-68283682D01* +X77663107Y-68284393D01* +X77656571Y-68286574D01* +X77656569Y-68286574D01* +X77597042Y-68306434D01* +X77498093Y-68339446D01* +X77350169Y-68430984D01* +X77344996Y-68436166D01* +X77291001Y-68490255D01* +X77228718Y-68524334D01* +X77157898Y-68519331D01* +X77127768Y-68503174D01* +X77107023Y-68488102D01* +X77088552Y-68474682D01* +X77082524Y-68471998D01* +X77082522Y-68471997D01* +X76920119Y-68399691D01* +X76920118Y-68399691D01* +X76914088Y-68397006D01* +X76793961Y-68371472D01* +X76733744Y-68358672D01* +X76733739Y-68358672D01* +X76727287Y-68357300D01* +X76536313Y-68357300D01* +X76529861Y-68358672D01* +X76529856Y-68358672D01* +X76469639Y-68371472D01* +X76349512Y-68397006D01* +X76343482Y-68399691D01* +X76343481Y-68399691D01* +X76181078Y-68471997D01* +X76181076Y-68471998D01* +X76175048Y-68474682D01* +X76169707Y-68478562D01* +X76169706Y-68478563D01* +X76136885Y-68502409D01* +X76020547Y-68586934D01* +X76016126Y-68591844D01* +X76016125Y-68591845D01* +X75904481Y-68715839D01* +X75892760Y-68728856D01* +X75797273Y-68894244D01* +X75738258Y-69075872D01* +X75718296Y-69265800D01* +X75738258Y-69455728D01* +X75797273Y-69637356D01* +X75892760Y-69802744D01* +X75897178Y-69807651D01* +X75897179Y-69807652D01* +X76016125Y-69939755D01* +X76020547Y-69944666D01* +X76175048Y-70056918D01* +X76181076Y-70059602D01* +X76181078Y-70059603D01* +X76343481Y-70131909D01* +X76349512Y-70134594D01* +X76442913Y-70154447D01* +X76529856Y-70172928D01* +X76529861Y-70172928D01* +X76536313Y-70174300D01* +X76727287Y-70174300D01* +X76733739Y-70172928D01* +X76733744Y-70172928D01* +X76820687Y-70154447D01* +X76914088Y-70134594D01* +X76920119Y-70131909D01* +X77082522Y-70059603D01* +X77082524Y-70059602D01* +X77088552Y-70056918D01* +X77123364Y-70031626D01* +X77190230Y-70007767D01* +X77259382Y-70023846D01* +X77286443Y-70044388D01* +X77334986Y-70092847D01* +X77369065Y-70155130D01* +X77364062Y-70225950D01* +X77335141Y-70271037D01* +X77232446Y-70373912D01* +X77232442Y-70373917D01* +X77227271Y-70379097D01* +X77135991Y-70527180D01* +X77081226Y-70692291D01* +X77070700Y-70795028D01* +X77070700Y-71130006D01* +X77050698Y-71198127D01* +X77033795Y-71219101D01* +X74791747Y-73461148D01* +X74783461Y-73468688D01* +X74776982Y-73472800D01* +X74771557Y-73478577D01* +X74730357Y-73522451D01* +X74727602Y-73525293D01* +X74707865Y-73545030D01* +X74705385Y-73548227D01* +X74697682Y-73557247D01* +X74667414Y-73589479D01* +X74663595Y-73596425D01* +X74663593Y-73596428D01* +X74657652Y-73607234D01* +X74646801Y-73623753D01* +X74634386Y-73639759D01* +X74631241Y-73647028D01* +X74631238Y-73647032D01* +X74616826Y-73680337D01* +X74611609Y-73690987D01* +X74590305Y-73729740D01* +X74588334Y-73737415D01* +X74588334Y-73737416D01* +X74585267Y-73749362D01* +X74578863Y-73768066D01* +X74570819Y-73786655D01* +X74569580Y-73794478D01* +X74569577Y-73794488D01* +X74563901Y-73830324D01* +X74561495Y-73841944D01* +X74550500Y-73884770D01* +X74550500Y-73905024D01* +X74548949Y-73924734D01* +X74545780Y-73944743D01* +X74546526Y-73952635D01* +X74549941Y-73988761D01* +X74550500Y-74000619D01* +X74550500Y-77224676D01* +X74530498Y-77292797D01* +X74518142Y-77308979D01* +X74444960Y-77390256D01* +X74349473Y-77555644D01* +X74290458Y-77737272D01* +X74270496Y-77927200D01* +X74271186Y-77933765D01* +X74287909Y-78092872D01* +X74290458Y-78117128D01* +X74349473Y-78298756D01* +X74444960Y-78464144D01* +X74572747Y-78606066D01* +X74616879Y-78638130D01* +X74701740Y-78699785D01* +X74727248Y-78718318D01* +X74733276Y-78721002D01* +X74733278Y-78721003D01* +X74809644Y-78755003D01* +X74901712Y-78795994D01* +X74995112Y-78815847D01* +X75082056Y-78834328D01* +X75082061Y-78834328D01* +X75088513Y-78835700D01* +X75279487Y-78835700D01* +X75285939Y-78834328D01* +X75285944Y-78834328D01* +X75372888Y-78815847D01* +X75466288Y-78795994D01* +X75558356Y-78755003D01* +X75634722Y-78721003D01* +X75634724Y-78721002D01* +X75640752Y-78718318D01* +X75666261Y-78699785D01* +X75718283Y-78661988D01* +X75785150Y-78638130D01* +X75854302Y-78654210D01* +X75900797Y-78699785D01* +X75968509Y-78814280D01* +X75968511Y-78814283D01* +X75972547Y-78821107D01* +X76090193Y-78938753D01* +X76094002Y-78941006D01* +X76134655Y-78997296D01* +X76138506Y-79068188D01* +X76103418Y-79129909D01* +X76095724Y-79136576D01* +X76090193Y-79139847D01* +X75972547Y-79257493D01* +X75968511Y-79264317D01* +X75968509Y-79264320D01* +X75896247Y-79386509D01* +X75844355Y-79434962D01* +X75774504Y-79447667D01* +X75713733Y-79424306D01* +X75646094Y-79375163D01* +X75646093Y-79375162D01* +X75640752Y-79371282D01* +X75634724Y-79368598D01* +X75634722Y-79368597D01* +X75472319Y-79296291D01* +X75472318Y-79296291D01* +X75466288Y-79293606D01* +X75372888Y-79273753D01* +X75285944Y-79255272D01* +X75285939Y-79255272D01* +X75279487Y-79253900D01* +X75088513Y-79253900D01* +X75082061Y-79255272D01* +X75082056Y-79255272D01* +X74995112Y-79273753D01* +X74901712Y-79293606D01* +X74895682Y-79296291D01* +X74895681Y-79296291D01* +X74733278Y-79368597D01* +X74733276Y-79368598D01* +X74727248Y-79371282D01* +X74572747Y-79483534D01* +X74444960Y-79625456D01* +X74349473Y-79790844D01* +X74290458Y-79972472D01* +X74270496Y-80162400D01* +X74290458Y-80352328D01* +X74349473Y-80533956D01* +X74444960Y-80699344D01* +X74449378Y-80704251D01* +X74449379Y-80704252D01* +X74529406Y-80793131D01* +X74572747Y-80841266D01* +X74727248Y-80953518D01* +X74733276Y-80956202D01* +X74733278Y-80956203D01* +X74865453Y-81015051D01* +X74901712Y-81031194D01* +X74908165Y-81032566D01* +X74914451Y-81034608D01* +X74913733Y-81036819D01* +X74966830Y-81065493D01* +X75001144Y-81127647D01* +X75003886Y-81156823D01* +X75002980Y-81162543D01* +X75003726Y-81170435D01* +X75003726Y-81170437D01* +X75007141Y-81206561D01* +X75007700Y-81218419D01* +X75007700Y-84082676D01* +X74987698Y-84150797D01* +X74975342Y-84166979D01* +X74902160Y-84248256D01* +X74806673Y-84413644D01* +X74747658Y-84595272D01* +X74746968Y-84601833D01* +X74746968Y-84601835D01* +X74735574Y-84710241D01* +X74727696Y-84785200D01* +X74747658Y-84975128D01* +X74806673Y-85156756D01* +X74902160Y-85322144D01* +X74906578Y-85327051D01* +X74906579Y-85327052D01* +X74983720Y-85412726D01* +X75029947Y-85464066D01* +X75184448Y-85576318D01* +X75190476Y-85579002D01* +X75190478Y-85579003D01* +X75352879Y-85651308D01* +X75358912Y-85653994D01* +X75452312Y-85673847D01* +X75539256Y-85692328D01* +X75539261Y-85692328D01* +X75545713Y-85693700D01* +X75736687Y-85693700D01* +X75743139Y-85692328D01* +X75743144Y-85692328D01* +X75830088Y-85673847D01* +X75923488Y-85653994D01* +X75929515Y-85651311D01* +X75929523Y-85651308D01* +X76063398Y-85591703D01* +X76133765Y-85582269D01* +X76177647Y-85597692D01* +X76178285Y-85598060D01* +X76183622Y-85601938D01* +X76189648Y-85604621D01* +X76294512Y-85651309D01* +X76358086Y-85679614D01* +X76451486Y-85699467D01* +X76538430Y-85717948D01* +X76538435Y-85717948D01* +X76544887Y-85719320D01* +X76735861Y-85719320D01* +X76742313Y-85717948D01* +X76742318Y-85717948D01* +X76895720Y-85685341D01* +X76966511Y-85690743D01* +X77023144Y-85733560D01* +X77047637Y-85800198D01* +X77032216Y-85869499D01* +X77011012Y-85897683D01* +X76888900Y-86019795D01* +X76826588Y-86053821D01* +X76799805Y-86056700D01* +X73441195Y-86056700D01* +X73373074Y-86036698D01* +X73352100Y-86019795D01* +X72128852Y-84796547D01* +X72121312Y-84788261D01* +X72117200Y-84781782D01* +X72067548Y-84735156D01* +X72064707Y-84732402D01* +X72044970Y-84712665D01* +X72041773Y-84710185D01* +X72032751Y-84702480D01* +X72000521Y-84672214D01* +X71993575Y-84668395D01* +X71993572Y-84668393D01* +X71982766Y-84662452D01* +X71966247Y-84651601D01* +X71965783Y-84651241D01* +X71950241Y-84639186D01* +X71942972Y-84636041D01* +X71942968Y-84636038D01* +X71909663Y-84621626D01* +X71899013Y-84616409D01* +X71860260Y-84595105D01* +X71840637Y-84590067D01* +X71821934Y-84583663D01* +X71810620Y-84578767D01* +X71810619Y-84578767D01* +X71803345Y-84575619D01* +X71795522Y-84574380D01* +X71795512Y-84574377D01* +X71759676Y-84568701D01* +X71748056Y-84566295D01* +X71712911Y-84557272D01* +X71712910Y-84557272D01* +X71705230Y-84555300D01* +X71684976Y-84555300D01* +X71665265Y-84553749D01* +X71653086Y-84551820D01* +X71645257Y-84550580D01* +X71637365Y-84551326D01* +X71601239Y-84554741D01* +X71589381Y-84555300D01* +X71553875Y-84555300D01* +X71485754Y-84535298D01* +X71453049Y-84504865D01* +X71440295Y-84487847D01* +X71374861Y-84400539D01* +X71258305Y-84313185D01* +X71121916Y-84262055D01* +X71059734Y-84255300D01* +X70113466Y-84255300D01* +X70051284Y-84262055D01* +X70043888Y-84264827D01* +X70043882Y-84264829D01* +X69996924Y-84282433D01* +X69926117Y-84287616D01* +X69863748Y-84253695D01* +X69829619Y-84191439D01* +X69827260Y-84152530D01* +X69827425Y-84150797D01* +X70039808Y-81915996D01* +X70041043Y-81906699D01* +X70047440Y-81869273D01* +X70623110Y-78500935D01* +X70626615Y-78485981D01* +X70627432Y-78483258D01* +X71619971Y-75172549D01* +X71624540Y-75159832D01* +X72956498Y-71996781D01* +X72959924Y-71989332D01* +X74543551Y-68822078D01* +X74549559Y-68811397D01* +X76368618Y-65917070D01* +X76379676Y-65902068D01* +X76512657Y-65747105D01* +X76795979Y-65416949D01* +X76824012Y-65392665D01* +X76825479Y-65391733D01* +X77620907Y-64886191D01* +X77643202Y-64874952D01* +X78367384Y-64596003D01* +X78572689Y-64516921D01* +X78617979Y-64508500D01* +X79633279Y-64508500D01* +X79653884Y-64510196D01* +X80095550Y-64583409D01* +X80096613Y-64583590D01* +X80176566Y-64597547D01* +X80207172Y-64594116D01* +X80223974Y-64593363D01* +X80235783Y-64593623D01* +X80253860Y-64594021D01* +X80262531Y-64591691D01* +X80262534Y-64591691D01* +X80286035Y-64585377D01* +X80286920Y-64585174D01* +X80287787Y-64585077D01* +X80290146Y-64584434D01* +X80290159Y-64584431D01* +X80331089Y-64573274D01* +X80331532Y-64573154D01* +X80346797Y-64569053D01* +X80394529Y-64556229D01* +X80395152Y-64555850D01* +X80395672Y-64555668D01* +X81035536Y-64381246D01* +X81192653Y-64338417D01* +X81212808Y-64335098D01* +X81216694Y-64334300D01* +X81225657Y-64333760D01* +X81258633Y-64321921D01* +X81271222Y-64317402D01* +X81280654Y-64314429D01* +X81287083Y-64312676D01* +X81287087Y-64312675D01* +X81291411Y-64311496D01* +X81305952Y-64305205D01* +X81313388Y-64302265D01* +X81330993Y-64295944D01* +X81339972Y-64291048D01* +X81350247Y-64286038D01* +X81383000Y-64271866D01* +X81383001Y-64271866D01* +X81391239Y-64268301D01* +X81400081Y-64260961D01* +X81420242Y-64247287D01* +X82286675Y-63774919D01* +X82289919Y-63773211D01* +X82306914Y-63764577D01* +X82347855Y-63743778D01* +X82374779Y-63718467D01* +X82385695Y-63709311D01* +X82403041Y-63696358D01* +X82415168Y-63687303D01* +X82420563Y-63680131D01* +X82420565Y-63680129D01* +X82456501Y-63632355D01* +X82457794Y-63630667D01* +X83006518Y-62926260D01* +X83022982Y-62909047D01* +X83023780Y-62908141D01* +X83030605Y-62902320D01* +X83035520Y-62894820D01* +X83035525Y-62894814D01* +X83056592Y-62862664D01* +X83062582Y-62854290D01* +X83065982Y-62849925D01* +X83068739Y-62846386D01* +X83077008Y-62831929D01* +X83080992Y-62825429D01* +X83089277Y-62812787D01* +X83089280Y-62812781D01* +X83091948Y-62808710D01* +X83095845Y-62800114D01* +X83101230Y-62789581D01* +X83118286Y-62759762D01* +X83118287Y-62759759D01* +X83122744Y-62751967D01* +X83124835Y-62743236D01* +X83124837Y-62743231D01* +X83125621Y-62739957D01* +X83133396Y-62717281D01* +X83403330Y-62121835D01* +X83527021Y-61848987D01* +X83527713Y-61847489D01* +X83552604Y-61794472D01* +X83558131Y-61782700D01* +X83563035Y-61751204D01* +X83566558Y-61735371D01* +X83575471Y-61704764D01* +X83575350Y-61595970D01* +X83575350Y-59923613D01* +X83578174Y-59897085D01* +X83647978Y-59572968D01* +X83799571Y-58869091D01* +X83812119Y-58835309D01* +X83818229Y-58824103D01* +X84231415Y-58066217D01* +X84252946Y-58037434D01* +X84988326Y-57302051D01* +X85008463Y-57285691D01* +X85187149Y-57168845D01* +X87132752Y-55896580D01* +X87140487Y-55891910D01* +X87181204Y-55869275D01* +X89953936Y-54327885D01* +X100282000Y-54327885D01* +X100286475Y-54343124D01* +X100287865Y-54344329D01* +X100295548Y-54346000D01* +X101017885Y-54346000D01* +X101033124Y-54341525D01* +X101034329Y-54340135D01* +X101036000Y-54332452D01* +X101036000Y-53092076D01* +X101032027Y-53078545D01* +X101024232Y-53077425D01* +X100916479Y-53109138D01* +X100905111Y-53113731D01* +X100740846Y-53199607D01* +X100730585Y-53206321D01* +X100586127Y-53322468D01* +X100577368Y-53331046D01* +X100458222Y-53473039D01* +X100451292Y-53483159D01* +X100361998Y-53645585D01* +X100357166Y-53656858D01* +X100301120Y-53833538D01* +X100298570Y-53845532D01* +X100282393Y-53989761D01* +X100282000Y-53996785D01* +X100282000Y-54327885D01* +X89953936Y-54327885D01* +X90130927Y-54229494D01* +X90144328Y-54223048D01* +X93387316Y-52892806D01* +X93396183Y-52889552D01* +X96282522Y-51951342D01* +X96691530Y-51818393D01* +X96705272Y-51815499D01* +X96705250Y-51815411D01* +X96713966Y-51813250D01* +X96722894Y-51812346D01* +X96731208Y-51808973D01* +X96731214Y-51808972D01* +X96770212Y-51793153D01* +X96778618Y-51790086D01* +X96786897Y-51787395D01* +X96786905Y-51787392D01* +X96791168Y-51786006D01* +X96795195Y-51784028D01* +X96795198Y-51784027D01* +X96799367Y-51781979D01* +X96802984Y-51780203D01* +X96811165Y-51776540D01* +X96849548Y-51760971D01* +X96849552Y-51760969D01* +X96857869Y-51757595D01* +X96864908Y-51752021D01* +X96872660Y-51747503D01* +X96872716Y-51747599D01* +X96873394Y-51747171D01* +X96873327Y-51747073D01* +X96880741Y-51742014D01* +X96888801Y-51738056D01* +X96895425Y-51731996D01* +X96895427Y-51731994D01* +X96925810Y-51704194D01* +X96932617Y-51698396D01* +X96972054Y-51667163D01* +X96977246Y-51659836D01* +X96983421Y-51653322D01* +X96983504Y-51653401D01* +X96984032Y-51652804D01* +X96983943Y-51652731D01* +X96989641Y-51645792D01* +X96996265Y-51639732D01* +X97022342Y-51596746D01* +X97027263Y-51589250D01* +X97033943Y-51579823D01* +X97033944Y-51579822D01* +X97036761Y-51575846D01* +X97038936Y-51571479D01* +X97042390Y-51564543D01* +X97047452Y-51555356D01* +X97067156Y-51522876D01* +X97067156Y-51522875D01* +X97071813Y-51515199D01* +X97074138Y-51506489D01* +X97083085Y-51482817D01* +X97198962Y-51250110D01* +X97209856Y-51232158D01* +X97305934Y-51100076D01* +X97365845Y-51017713D01* +X97548465Y-50766657D01* +X100282000Y-50766657D01* +X100282301Y-50772805D01* +X100295812Y-50910603D01* +X100298195Y-50922638D01* +X100351767Y-51100076D01* +X100356441Y-51111416D01* +X100443460Y-51275077D01* +X100450249Y-51285294D01* +X100567397Y-51428933D01* +X100576041Y-51437637D01* +X100718856Y-51555784D01* +X100729027Y-51562644D01* +X100892076Y-51650804D01* +X100903381Y-51655556D01* +X101018692Y-51691250D01* +X101032795Y-51691456D01* +X101036000Y-51684701D01* +X101036000Y-51677924D01* +X101544000Y-51677924D01* +X101547973Y-51691455D01* +X101555768Y-51692575D01* +X101663521Y-51660862D01* +X101674889Y-51656269D01* +X101839154Y-51570393D01* +X101849415Y-51563679D01* +X101993873Y-51447532D01* +X102002632Y-51438954D01* +X102121778Y-51296961D01* +X102128708Y-51286841D01* +X102218002Y-51124415D01* +X102222834Y-51113142D01* +X102278880Y-50936462D01* +X102281430Y-50924468D01* +X102297607Y-50780239D01* +X102298000Y-50773215D01* +X102298000Y-50766657D01* +X108922000Y-50766657D01* +X108922301Y-50772805D01* +X108935812Y-50910603D01* +X108938195Y-50922638D01* +X108991767Y-51100076D01* +X108996441Y-51111416D01* +X109083460Y-51275077D01* +X109090249Y-51285294D01* +X109207397Y-51428933D01* +X109216041Y-51437637D01* +X109358856Y-51555784D01* +X109369027Y-51562644D01* +X109532076Y-51650804D01* +X109543381Y-51655556D01* +X109658692Y-51691250D01* +X109672795Y-51691456D01* +X109676000Y-51684701D01* +X109676000Y-51677924D01* +X110184000Y-51677924D01* +X110187973Y-51691455D01* +X110195768Y-51692575D01* +X110303521Y-51660862D01* +X110314889Y-51656269D01* +X110479154Y-51570393D01* +X110489415Y-51563679D01* +X110633873Y-51447532D01* +X110642632Y-51438954D01* +X110761778Y-51296961D01* +X110768708Y-51286841D01* +X110858002Y-51124415D01* +X110862834Y-51113142D01* +X110918880Y-50936462D01* +X110921430Y-50924468D01* +X110937607Y-50780239D01* +X110938000Y-50773215D01* +X110938000Y-50692115D01* +X110933525Y-50676876D01* +X110932135Y-50675671D01* +X110924452Y-50674000D01* +X110202115Y-50674000D01* +X110186876Y-50678475D01* +X110185671Y-50679865D01* +X110184000Y-50687548D01* +X110184000Y-51677924D01* +X109676000Y-51677924D01* +X109676000Y-50692115D01* +X109671525Y-50676876D01* +X109670135Y-50675671D01* +X109662452Y-50674000D01* +X108940115Y-50674000D01* +X108924876Y-50678475D01* +X108923671Y-50679865D01* +X108922000Y-50687548D01* +X108922000Y-50766657D01* +X102298000Y-50766657D01* +X102298000Y-50692115D01* +X102293525Y-50676876D01* +X102292135Y-50675671D01* +X102284452Y-50674000D01* +X101562115Y-50674000D01* +X101546876Y-50678475D01* +X101545671Y-50679865D01* +X101544000Y-50687548D01* +X101544000Y-51677924D01* +X101036000Y-51677924D01* +X101036000Y-50692115D01* +X101031525Y-50676876D01* +X101030135Y-50675671D01* +X101022452Y-50674000D01* +X100300115Y-50674000D01* +X100284876Y-50678475D01* +X100283671Y-50679865D01* +X100282000Y-50687548D01* +X100282000Y-50766657D01* +X97548465Y-50766657D01* +X97804965Y-50414035D01* +X97828167Y-50389749D01* +X98231524Y-50067195D01* +X98513458Y-49841740D01* +X98555026Y-49819739D01* +X99490137Y-49531467D01* +X99510067Y-49527054D01* +X100295490Y-49418947D01* +X100365700Y-49429473D01* +X100419075Y-49476288D01* +X100438667Y-49544528D01* +X100423084Y-49604471D01* +X100361994Y-49715593D01* +X100357166Y-49726858D01* +X100301120Y-49903538D01* +X100298570Y-49915532D01* +X100282393Y-50059761D01* +X100282000Y-50066785D01* +X100282000Y-50147885D01* +X100286475Y-50163124D01* +X100287865Y-50164329D01* +X100295548Y-50166000D01* +X102279885Y-50166000D01* +X102295124Y-50161525D01* +X102296329Y-50160135D01* +X102298000Y-50152452D01* +X102298000Y-50073343D01* +X102297699Y-50067195D01* +X102284188Y-49929397D01* +X102281805Y-49917362D01* +X102228233Y-49739924D01* +X102223559Y-49728584D01* +X102136540Y-49564923D01* +X102129751Y-49554706D01* +X102012603Y-49411067D01* +X102001771Y-49400160D01* +X101967963Y-49337730D01* +X101973274Y-49266932D01* +X102016019Y-49210245D01* +X102082412Y-49185680D01* +X103309780Y-49100104D01* +X105477951Y-48948932D01* +X105492568Y-48948764D01* +X107231877Y-49029835D01* +G37* +%TD.AperFunction*% +%TA.AperFunction,Conductor*% +G36* +X71612074Y-86960578D02* +G01* +X72230500Y-87579004D01* +X72264526Y-87641316D01* +X72259461Y-87712131D01* +X72230501Y-87757194D01* +X72189698Y-87797997D01* +X72148895Y-87838801D01* +X72086584Y-87872825D01* +X72015768Y-87867761D01* +X71970705Y-87838800D01* +X71928452Y-87796547D01* +X71920912Y-87788261D01* +X71916800Y-87781782D01* +X71867148Y-87735156D01* +X71864307Y-87732402D01* +X71844570Y-87712665D01* +X71841373Y-87710185D01* +X71832351Y-87702480D01* +X71805900Y-87677641D01* +X71800121Y-87672214D01* +X71793175Y-87668395D01* +X71793172Y-87668393D01* +X71782366Y-87662452D01* +X71765847Y-87651601D01* +X71765383Y-87651241D01* +X71749841Y-87639186D01* +X71742572Y-87636041D01* +X71742568Y-87636038D01* +X71709263Y-87621626D01* +X71698613Y-87616409D01* +X71659860Y-87595105D01* +X71640237Y-87590067D01* +X71621534Y-87583663D01* +X71610220Y-87578767D01* +X71610219Y-87578767D01* +X71602945Y-87575619D01* +X71595116Y-87574379D01* +X71595113Y-87574378D01* +X71586151Y-87572958D01* +X71521999Y-87542544D01* +X71484474Y-87482274D01* +X71480051Y-87446013D01* +X71473516Y-87442800D01* +X71188924Y-87442800D01* +X71120803Y-87422798D01* +X71114863Y-87418736D01* +X71061263Y-87379793D01* +X71061262Y-87379792D01* +X71055921Y-87375912D01* +X71049893Y-87373228D01* +X71049891Y-87373227D01* +X70894195Y-87303907D01* +X70840099Y-87257927D01* +X70819450Y-87190000D01* +X70838802Y-87121691D01* +X70894195Y-87073693D01* +X70903319Y-87069631D01* +X70944020Y-87051510D01* +X71049891Y-87004373D01* +X71049893Y-87004372D01* +X71055921Y-87001688D01* +X71093410Y-86974451D01* +X71114863Y-86958864D01* +X71181731Y-86935006D01* +X71188924Y-86934800D01* +X71466969Y-86934800D01* +X71487481Y-86928777D01* +X71558477Y-86928777D01* +X71612074Y-86960578D01* +G37* +%TD.AperFunction*% +%TA.AperFunction,Conductor*% +G36* +X86232338Y-69434245D02* +G01* +X86273520Y-69492078D01* +X86280450Y-69533288D01* +X86280450Y-87369426D01* +X86260448Y-87437547D01* +X86206792Y-87484040D01* +X86136518Y-87494144D01* +X86071938Y-87464650D01* +X86065355Y-87458521D01* +X84780055Y-86173221D01* +X84770953Y-86163078D01* +X84751097Y-86138382D01* +X84747232Y-86133575D01* +X84708778Y-86101308D01* +X84705131Y-86098128D01* +X84703319Y-86096485D01* +X84701125Y-86094291D01* +X84667851Y-86066958D01* +X84667053Y-86066296D01* +X84595726Y-86006446D01* +X84591056Y-86003878D01* +X84586939Y-86000497D01* +X84505114Y-85956623D01* +X84503955Y-85955994D01* +X84427819Y-85914138D01* +X84427811Y-85914135D01* +X84422413Y-85911167D01* +X84417331Y-85909555D01* +X84412637Y-85907038D01* +X84323669Y-85879838D01* +X84322641Y-85879518D01* +X84233894Y-85851365D01* +X84228598Y-85850771D01* +X84223502Y-85849213D01* +X84130943Y-85839810D01* +X84129807Y-85839689D01* +X84096192Y-85835919D01* +X84083470Y-85834492D01* +X84083466Y-85834492D01* +X84079973Y-85834100D01* +X84076446Y-85834100D01* +X84075461Y-85834045D01* +X84069781Y-85833598D01* +X84040375Y-85830611D01* +X84032863Y-85829848D01* +X84032861Y-85829848D01* +X84026738Y-85829226D01* +X83984459Y-85833223D01* +X83981091Y-85833541D01* +X83969233Y-85834100D01* +X82395100Y-85834100D01* +X82326979Y-85814098D01* +X82280486Y-85760442D01* +X82269100Y-85708100D01* +X82269100Y-84355967D01* +X82269627Y-84344784D01* +X82271302Y-84337291D01* +X82269741Y-84287616D01* +X82269162Y-84269214D01* +X82269100Y-84265255D01* +X82269100Y-84237344D01* +X82268595Y-84233344D01* +X82267662Y-84221501D01* +X82266522Y-84185229D01* +X82266273Y-84177310D01* +X82260622Y-84157858D01* +X82256614Y-84138506D01* +X82255067Y-84126263D01* +X82254074Y-84118403D01* +X82251156Y-84111032D01* +X82237800Y-84077297D01* +X82233955Y-84066070D01* +X82233321Y-84063887D01* +X82221618Y-84023607D01* +X82212104Y-84007519D01* +X82211307Y-84006172D01* +X82202612Y-83988424D01* +X82195152Y-83969583D01* +X82169164Y-83933813D01* +X82162648Y-83923893D01* +X82144180Y-83892665D01* +X82144178Y-83892662D01* +X82140142Y-83885838D01* +X82125818Y-83871514D01* +X82112983Y-83856487D01* +X82101072Y-83840093D01* +X82078642Y-83821537D01* +X82067002Y-83811908D01* +X82058222Y-83803918D01* +X82012253Y-83757949D01* +X82004713Y-83749663D01* +X82000600Y-83743182D01* +X81950947Y-83696555D01* +X81948106Y-83693801D01* +X81928370Y-83674065D01* +X81925173Y-83671585D01* +X81916151Y-83663880D01* +X81889700Y-83639041D01* +X81883921Y-83633614D01* +X81876975Y-83629795D01* +X81876972Y-83629793D01* +X81866166Y-83623852D01* +X81849647Y-83613001D01* +X81849183Y-83612641D01* +X81833641Y-83600586D01* +X81826372Y-83597441D01* +X81826368Y-83597438D01* +X81793063Y-83583026D01* +X81782413Y-83577809D01* +X81743660Y-83556505D01* +X81724037Y-83551467D01* +X81705334Y-83545063D01* +X81694020Y-83540167D01* +X81694019Y-83540167D01* +X81686745Y-83537019D01* +X81678922Y-83535780D01* +X81678912Y-83535777D01* +X81643076Y-83530101D01* +X81631456Y-83527695D01* +X81596311Y-83518672D01* +X81596310Y-83518672D01* +X81588630Y-83516700D01* +X81568376Y-83516700D01* +X81548665Y-83515149D01* +X81536486Y-83513220D01* +X81528657Y-83511980D01* +X81520765Y-83512726D01* +X81484639Y-83516141D01* +X81472781Y-83516700D01* +X80040194Y-83516700D01* +X79972073Y-83496698D01* +X79925580Y-83443042D01* +X79915476Y-83372768D01* +X79944970Y-83308188D01* +X79951099Y-83301605D01* +X81164247Y-82088457D01* +X81172537Y-82080913D01* +X81179018Y-82076800D01* +X81225659Y-82027132D01* +X81228413Y-82024291D01* +X81248134Y-82004570D01* +X81250612Y-82001375D01* +X81258318Y-81992353D01* +X81283158Y-81965901D01* +X81288586Y-81960121D01* +X81298346Y-81942368D01* +X81309199Y-81925845D01* +X81316753Y-81916106D01* +X81321613Y-81909841D01* +X81339176Y-81869257D01* +X81344383Y-81858627D01* +X81365695Y-81819860D01* +X81367666Y-81812183D01* +X81367668Y-81812178D01* +X81370732Y-81800242D01* +X81377138Y-81781530D01* +X81382034Y-81770217D01* +X81385181Y-81762945D01* +X81388383Y-81742732D01* +X81392097Y-81719281D01* +X81394504Y-81707660D01* +X81403528Y-81672511D01* +X81403528Y-81672510D01* +X81405500Y-81664830D01* +X81405500Y-81644569D01* +X81407051Y-81624858D01* +X81408979Y-81612685D01* +X81410219Y-81604857D01* +X81406059Y-81560846D01* +X81405500Y-81548989D01* +X81405500Y-79316395D01* +X81425502Y-79248274D01* +X81479158Y-79201781D01* +X81540113Y-79191829D01* +X81540113Y-79191300D01* +X81731087Y-79191300D01* +X81737539Y-79189928D01* +X81737544Y-79189928D01* +X81824487Y-79171447D01* +X81917888Y-79151594D01* +X81931672Y-79145457D01* +X82086322Y-79076603D01* +X82086324Y-79076602D01* +X82092352Y-79073918D01* +X82133039Y-79044357D01* +X82199906Y-79020499D01* +X82269058Y-79036579D01* +X82281161Y-79044357D01* +X82321848Y-79073918D01* +X82327876Y-79076602D01* +X82327878Y-79076603D01* +X82482528Y-79145457D01* +X82496312Y-79151594D01* +X82589713Y-79171447D01* +X82676656Y-79189928D01* +X82676661Y-79189928D01* +X82683113Y-79191300D01* +X82874087Y-79191300D01* +X82880539Y-79189928D01* +X82880544Y-79189928D01* +X82967487Y-79171447D01* +X83060888Y-79151594D01* +X83074672Y-79145457D01* +X83229322Y-79076603D01* +X83229324Y-79076602D01* +X83235352Y-79073918D01* +X83389853Y-78961666D01* +X83504509Y-78834328D01* +X83513221Y-78824652D01* +X83513222Y-78824651D01* +X83517640Y-78819744D01* +X83613127Y-78654356D01* +X83672142Y-78472728D01* +X83692104Y-78282800D01* +X83675351Y-78123406D01* +X83672832Y-78099435D01* +X83672832Y-78099433D01* +X83672142Y-78092872D01* +X83613127Y-77911244D01* +X83517640Y-77745856D01* +X83419464Y-77636820D01* +X83388746Y-77572813D01* +X83387100Y-77552510D01* +X83387100Y-77342439D01* +X83407102Y-77274318D01* +X83424005Y-77253344D01* +X84241634Y-76435715D01* +X84254025Y-76424848D01* +X84272837Y-76410413D01* +X84279387Y-76405387D01* +X84303874Y-76373475D01* +X84303880Y-76373469D01* +X84371896Y-76284829D01* +X84371897Y-76284827D01* +X84376924Y-76278276D01* +X84438238Y-76130251D01* +X84440791Y-76110857D01* +X84453900Y-76011285D01* +X84453900Y-76011280D01* +X84459150Y-75971400D01* +X84454978Y-75939707D01* +X84453900Y-75923264D01* +X84453900Y-73405439D01* +X84473902Y-73337318D01* +X84490805Y-73316344D01* +X85613234Y-72193915D01* +X85625625Y-72183048D01* +X85644437Y-72168613D01* +X85650987Y-72163587D01* +X85675474Y-72131675D01* +X85675477Y-72131672D01* +X85743333Y-72043240D01* +X85748524Y-72036475D01* +X85809838Y-71888450D01* +X85825500Y-71769485D01* +X85825500Y-71769478D01* +X85830750Y-71729600D01* +X85826578Y-71697907D01* +X85825500Y-71681464D01* +X85825500Y-69818290D01* +X85845502Y-69750169D01* +X85857864Y-69733980D01* +X85951621Y-69629852D01* +X85951622Y-69629851D01* +X85956040Y-69624944D01* +X86045331Y-69470288D01* +X86096714Y-69421295D01* +X86166427Y-69407859D01* +X86232338Y-69434245D01* +G37* +%TD.AperFunction*% +%TA.AperFunction,Conductor*% +G36* +X78736774Y-72060210D02* +G01* +X78768599Y-72123675D01* +X78764450Y-72185071D01* +X78730178Y-72290549D01* +X78710058Y-72352472D01* +X78690096Y-72542400D01* +X78710058Y-72732328D01* +X78769073Y-72913956D01* +X78864560Y-73079344D01* +X78868978Y-73084251D01* +X78868979Y-73084252D01* +X78976678Y-73203864D01* +X78992347Y-73221266D01* +X79029359Y-73248157D01* +X79136359Y-73325897D01* +X79146848Y-73333518D01* +X79152876Y-73336202D01* +X79152878Y-73336203D01* +X79294072Y-73399066D01* +X79321312Y-73411194D01* +X79414712Y-73431047D01* +X79501656Y-73449528D01* +X79501661Y-73449528D01* +X79508113Y-73450900D01* +X79699087Y-73450900D01* +X79705539Y-73449528D01* +X79705544Y-73449528D01* +X79792488Y-73431047D01* +X79885888Y-73411194D01* +X79913128Y-73399066D01* +X80054322Y-73336203D01* +X80054324Y-73336202D01* +X80060352Y-73333518D01* +X80070842Y-73325897D01* +X80177841Y-73248157D01* +X80244709Y-73224299D01* +X80313860Y-73240379D01* +X80345537Y-73265781D01* +X80465547Y-73399066D01* +X80620048Y-73511318D01* +X80626076Y-73514002D01* +X80626078Y-73514003D01* +X80702929Y-73548219D01* +X80794512Y-73588994D01* +X80880324Y-73607234D01* +X80974856Y-73627328D01* +X80974861Y-73627328D01* +X80981313Y-73628700D01* +X81172287Y-73628700D01* +X81178739Y-73627328D01* +X81178744Y-73627328D01* +X81273276Y-73607234D01* +X81359088Y-73588994D01* +X81450671Y-73548219D01* +X81527522Y-73514003D01* +X81527524Y-73514002D01* +X81533552Y-73511318D01* +X81688053Y-73399066D01* +X81815840Y-73257144D01* +X81859181Y-73182075D01* +X81910563Y-73133082D01* +X81980277Y-73119646D01* +X82046188Y-73146032D01* +X82087370Y-73203864D01* +X82094300Y-73245075D01* +X82094300Y-75072605D01* +X82074298Y-75140726D01* +X82057395Y-75161700D01* +X80379741Y-76839354D01* +X80371463Y-76846887D01* +X80364982Y-76851000D01* +X80359555Y-76856780D01* +X80359553Y-76856781D01* +X80318365Y-76900643D01* +X80315609Y-76903487D01* +X79987699Y-77231396D01* +X79925387Y-77265421D01* +X79898604Y-77268300D01* +X79442178Y-77268300D01* +X79374057Y-77248298D01* +X79327564Y-77194642D01* +X79321181Y-77177453D01* +X79308357Y-77133312D01* +X79308356Y-77133310D01* +X79306145Y-77125699D01* +X79260547Y-77048597D01* +X79225491Y-76989320D01* +X79225489Y-76989317D01* +X79221453Y-76982493D01* +X79103807Y-76864847D01* +X79096983Y-76860811D01* +X79096980Y-76860809D01* +X78967427Y-76784192D01* +X78967428Y-76784192D01* +X78960601Y-76780155D01* +X78952990Y-76777944D01* +X78952988Y-76777943D01* +X78865142Y-76752422D01* +X78800831Y-76733738D01* +X78794426Y-76733234D01* +X78794421Y-76733233D01* +X78765958Y-76730993D01* +X78765950Y-76730993D01* +X78763502Y-76730800D01* +X78330498Y-76730800D01* +X78328050Y-76730993D01* +X78328042Y-76730993D01* +X78299579Y-76733233D01* +X78299574Y-76733234D01* +X78293169Y-76733738D01* +X78228858Y-76752422D01* +X78141012Y-76777943D01* +X78141010Y-76777944D01* +X78133399Y-76780155D01* +X78126577Y-76784189D01* +X78121404Y-76786428D01* +X78050942Y-76795124D01* +X78021326Y-76786428D01* +X78002790Y-76778407D01* +X77868395Y-76739361D01* +X77854294Y-76739401D01* +X77851000Y-76746670D01* +X77851000Y-76984458D01* +X77833453Y-77048597D01* +X77787855Y-77125699D01* +X77741438Y-77285469D01* +X77738500Y-77322798D01* +X77738500Y-78480802D01* +X77738693Y-78483250D01* +X77738693Y-78483258D01* +X77740085Y-78500938D01* +X77741438Y-78518131D01* +X77766985Y-78606066D01* +X77781015Y-78654356D01* +X77787855Y-78677901D01* +X77791892Y-78684727D01* +X77833453Y-78755003D01* +X77851000Y-78819142D01* +X77851000Y-79051178D01* +X77855474Y-79066416D01* +X77864882Y-79074568D01* +X77903266Y-79134294D01* +X77903266Y-79205290D01* +X77881929Y-79247020D01* +X77878156Y-79251884D01* +X77872547Y-79257493D01* +X77868511Y-79264317D01* +X77868509Y-79264320D01* +X77849602Y-79296291D01* +X77787855Y-79400699D01* +X77785644Y-79408310D01* +X77785643Y-79408312D01* +X77777901Y-79434962D01* +X77741438Y-79560469D01* +X77738500Y-79597798D01* +X77738500Y-80755802D01* +X77741438Y-80793131D01* +X77787855Y-80952901D01* +X77791892Y-80959727D01* +X77868509Y-81089280D01* +X77868511Y-81089283D01* +X77872547Y-81096107D01* +X77878155Y-81101715D01* +X77883011Y-81107975D01* +X77881504Y-81109144D01* +X77910621Y-81162467D01* +X77913500Y-81189250D01* +X77913500Y-81463205D01* +X77893498Y-81531326D01* +X77876595Y-81552300D01* +X76489795Y-82939100D01* +X76427483Y-82973126D01* +X76356668Y-82968061D01* +X76299832Y-82925514D01* +X76275021Y-82858994D01* +X76274700Y-82850005D01* +X76274700Y-81497194D01* +X76294702Y-81429073D01* +X76311605Y-81408099D01* +X76335241Y-81384463D01* +X76397553Y-81350437D01* +X76428985Y-81347681D01* +X76430498Y-81347800D01* +X76863502Y-81347800D01* +X76865950Y-81347607D01* +X76865958Y-81347607D01* +X76894421Y-81345367D01* +X76894426Y-81345366D01* +X76900831Y-81344862D01* +X77000769Y-81315828D01* +X77052988Y-81300657D01* +X77052990Y-81300656D01* +X77060601Y-81298445D01* +X77108352Y-81270205D01* +X77196980Y-81217791D01* +X77196983Y-81217789D01* +X77203807Y-81213753D01* +X77321453Y-81096107D01* +X77325489Y-81089283D01* +X77325491Y-81089280D01* +X77402108Y-80959727D01* +X77406145Y-80952901D01* +X77452562Y-80793131D01* +X77455500Y-80755802D01* +X77455500Y-79597798D01* +X77452562Y-79560469D01* +X77416099Y-79434962D01* +X77408357Y-79408312D01* +X77408356Y-79408310D01* +X77406145Y-79400699D01* +X77321453Y-79257493D01* +X77315844Y-79251884D01* +X77311601Y-79246414D01* +X77285654Y-79180329D01* +X77299555Y-79110706D01* +X77337446Y-79069184D01* +X77343000Y-79056930D01* +X77343000Y-78819142D01* +X77360547Y-78755003D01* +X77402108Y-78684727D01* +X77406145Y-78677901D01* +X77412986Y-78654356D01* +X77427015Y-78606066D01* +X77452562Y-78518131D01* +X77453916Y-78500938D01* +X77455307Y-78483258D01* +X77455307Y-78483250D01* +X77455500Y-78480802D01* +X77455500Y-77322798D01* +X77452562Y-77285469D01* +X77406145Y-77125699D01* +X77360547Y-77048597D01* +X77343000Y-76984458D01* +X77343000Y-76752422D01* +X77339027Y-76738891D01* +X77331129Y-76737756D01* +X77191210Y-76778407D01* +X77172674Y-76786428D01* +X77102212Y-76795124D01* +X77072596Y-76786428D01* +X77067423Y-76784189D01* +X77060601Y-76780155D01* +X77052990Y-76777944D01* +X77052988Y-76777943D01* +X76965142Y-76752422D01* +X76900831Y-76733738D01* +X76894426Y-76733234D01* +X76894421Y-76733233D01* +X76865958Y-76730993D01* +X76865950Y-76730993D01* +X76863502Y-76730800D01* +X76430498Y-76730800D01* +X76428050Y-76730993D01* +X76428042Y-76730993D01* +X76399579Y-76733233D01* +X76399574Y-76733234D01* +X76393169Y-76733738D01* +X76328858Y-76752422D01* +X76241012Y-76777943D01* +X76241010Y-76777944D01* +X76233399Y-76780155D01* +X76226572Y-76784192D01* +X76226573Y-76784192D01* +X76097020Y-76860809D01* +X76097017Y-76860811D01* +X76090193Y-76864847D01* +X76032595Y-76922445D01* +X75970283Y-76956471D01* +X75899468Y-76951406D01* +X75842632Y-76908859D01* +X75817821Y-76842339D01* +X75817500Y-76833350D01* +X75817500Y-74279394D01* +X75837502Y-74211273D01* +X75854405Y-74190299D01* +X77917200Y-72127505D01* +X77979512Y-72093479D01* +X78006295Y-72090600D01* +X78341272Y-72090600D01* +X78344518Y-72090263D01* +X78344522Y-72090263D01* +X78438435Y-72080519D01* +X78438439Y-72080518D01* +X78445293Y-72079807D01* +X78451829Y-72077626D01* +X78451831Y-72077626D01* +X78604741Y-72026611D01* +X78675690Y-72024027D01* +X78736774Y-72060210D01* +G37* +%TD.AperFunction*% +%TA.AperFunction,Conductor*% +G36* +X110284227Y-62822602D02* +G01* +X110305197Y-62839501D01* +X111259597Y-63793902D01* +X111293621Y-63856212D01* +X111296500Y-63882995D01* +X111296500Y-64362725D01* +X111276498Y-64430846D01* +X111246065Y-64463551D01* +X111141739Y-64541739D01* +X111054385Y-64658295D01* +X111003255Y-64794684D01* +X110996500Y-64856866D01* +X110996500Y-65803134D01* +X111003255Y-65865316D01* +X111054385Y-66001705D01* +X111141739Y-66118261D01* +X111258295Y-66205615D01* +X111394684Y-66256745D01* +X111456866Y-66263500D01* +X112403134Y-66263500D01* +X112465316Y-66256745D01* +X112601705Y-66205615D01* +X112718261Y-66118261D01* +X112805615Y-66001705D01* +X112856745Y-65865316D01* +X112857598Y-65857460D01* +X112857917Y-65856120D01* +X112893135Y-65794473D01* +X112956090Y-65761653D01* +X113026795Y-65768079D01* +X113082802Y-65811711D01* +X113106500Y-65885266D01* +X113106500Y-66563134D01* +X113113255Y-66625316D01* +X113164385Y-66761705D01* +X113251739Y-66878261D01* +X113368295Y-66965615D01* +X113376703Y-66968767D01* +X113384575Y-66973077D01* +X113383739Y-66974604D01* +X113432004Y-67010862D01* +X113456702Y-67077424D01* +X113441493Y-67146772D01* +X113391206Y-67196890D01* +X113331008Y-67212200D01* +X98226661Y-67212200D01* +X98158540Y-67192198D01* +X98112047Y-67138542D01* +X98101943Y-67068268D01* +X98125835Y-67010635D01* +X98179786Y-66938648D01* +X98188324Y-66923054D01* +X98233478Y-66802606D01* +X98237105Y-66787351D01* +X98242631Y-66736486D01* +X98243000Y-66729672D01* +X98243000Y-66532115D01* +X98238525Y-66516876D01* +X98237135Y-66515671D01* +X98229452Y-66514000D01* +X96395116Y-66514000D01* +X96379877Y-66518475D01* +X96378672Y-66519865D01* +X96377001Y-66527548D01* +X96377001Y-66729669D01* +X96377371Y-66736490D01* +X96382895Y-66787352D01* +X96386521Y-66802604D01* +X96431676Y-66923054D01* +X96440214Y-66938648D01* +X96494165Y-67010635D01* +X96519013Y-67077141D01* +X96503960Y-67146524D01* +X96453786Y-67196754D01* +X96393339Y-67212200D01* +X94592094Y-67212200D01* +X94523973Y-67192198D01* +X94477480Y-67138542D01* +X94467376Y-67068268D01* +X94496870Y-67003688D01* +X94502999Y-66997105D01* +X95512219Y-65987885D01* +X96377000Y-65987885D01* +X96381475Y-66003124D01* +X96382865Y-66004329D01* +X96390548Y-66006000D01* +X97037885Y-66006000D01* +X97053124Y-66001525D01* +X97054329Y-66000135D01* +X97056000Y-65992452D01* +X97056000Y-65987885D01* +X97564000Y-65987885D01* +X97568475Y-66003124D01* +X97569865Y-66004329D01* +X97577548Y-66006000D01* +X98224884Y-66006000D01* +X98240123Y-66001525D01* +X98241328Y-66000135D01* +X98242999Y-65992452D01* +X98242999Y-65790331D01* +X98242629Y-65783510D01* +X98237105Y-65732648D01* +X98233479Y-65717396D01* +X98188324Y-65596946D01* +X98179786Y-65581351D01* +X98103285Y-65479276D01* +X98090724Y-65466715D01* +X97988649Y-65390214D01* +X97973054Y-65381676D01* +X97852606Y-65336522D01* +X97837351Y-65332895D01* +X97786486Y-65327369D01* +X97779672Y-65327000D01* +X97582115Y-65327000D01* +X97566876Y-65331475D01* +X97565671Y-65332865D01* +X97564000Y-65340548D01* +X97564000Y-65987885D01* +X97056000Y-65987885D01* +X97056000Y-65345116D01* +X97051525Y-65329877D01* +X97050135Y-65328672D01* +X97042452Y-65327001D01* +X96840331Y-65327001D01* +X96833510Y-65327371D01* +X96782648Y-65332895D01* +X96767396Y-65336521D01* +X96646946Y-65381676D01* +X96631351Y-65390214D01* +X96529276Y-65466715D01* +X96516715Y-65479276D01* +X96440214Y-65581351D01* +X96431676Y-65596946D01* +X96386522Y-65717394D01* +X96382895Y-65732649D01* +X96377369Y-65783514D01* +X96377000Y-65790328D01* +X96377000Y-65987885D01* +X95512219Y-65987885D01* +X96618499Y-64881605D01* +X96680811Y-64847579D01* +X96707594Y-64844700D01* +X98445860Y-64844700D01* +X98513981Y-64864702D01* +X98560474Y-64918358D01* +X98571123Y-64984307D01* +X98566869Y-65023467D01* +X98566500Y-65026866D01* +X98566500Y-65973134D01* +X98573255Y-66035316D01* +X98624385Y-66171705D01* +X98711739Y-66288261D01* +X98828295Y-66375615D01* +X98964684Y-66426745D01* +X99026866Y-66433500D01* +X99973134Y-66433500D01* +X100035316Y-66426745D01* +X100171705Y-66375615D01* +X100288261Y-66288261D01* +X100375615Y-66171705D01* +X100426745Y-66035316D01* +X100433500Y-65973134D01* +X100433500Y-65026866D01* +X100426745Y-64964684D01* +X100375615Y-64828295D01* +X100288261Y-64711739D01* +X100185651Y-64634837D01* +X100143137Y-64577977D01* +X100137263Y-64533442D01* +X100135702Y-64533491D01* +X100133562Y-64465401D01* +X100133500Y-64461443D01* +X100133500Y-64433544D01* +X100132996Y-64429553D01* +X100132063Y-64417695D01* +X100132005Y-64415842D01* +X100149866Y-64347129D01* +X100202041Y-64298980D01* +X100257943Y-64285900D01* +X100625006Y-64285900D01* +X100693127Y-64305902D01* +X100714101Y-64322805D01* +X100730082Y-64338786D01* +X100764108Y-64401098D01* +X100766774Y-64434347D01* +X100766500Y-64436866D01* +X100766500Y-65383134D01* +X100773255Y-65445316D01* +X100824385Y-65581705D01* +X100911739Y-65698261D01* +X101028295Y-65785615D01* +X101164684Y-65836745D01* +X101226866Y-65843500D01* +X102173134Y-65843500D01* +X102235316Y-65836745D01* +X102371705Y-65785615D01* +X102488261Y-65698261D01* +X102575615Y-65581705D01* +X102626745Y-65445316D01* +X102633500Y-65383134D01* +X102633500Y-64436866D01* +X102626745Y-64374684D01* +X102575615Y-64238295D01* +X102488261Y-64121739D01* +X102371705Y-64034385D01* +X102235316Y-63983255D01* +X102211440Y-63980661D01* +X102203016Y-63979746D01* +X102136316Y-63951573D01* +X102134644Y-63950190D01* +X102094902Y-63891359D01* +X102093275Y-63820382D01* +X102130280Y-63759791D01* +X102194168Y-63728826D01* +X102214953Y-63727100D01* +X102428406Y-63727100D01* +X102496527Y-63747102D01* +X102517501Y-63764005D01* +X103009595Y-64256099D01* +X103043621Y-64318411D01* +X103046500Y-64345194D01* +X103046500Y-65043134D01* +X103053255Y-65105316D01* +X103104385Y-65241705D01* +X103191739Y-65358261D01* +X103308295Y-65445615D01* +X103444684Y-65496745D01* +X103506866Y-65503500D01* +X104453134Y-65503500D01* +X104515316Y-65496745D01* +X104651705Y-65445615D01* +X104768261Y-65358261D01* +X104855615Y-65241705D01* +X104906745Y-65105316D01* +X104913500Y-65043134D01* +X104913500Y-64963134D01* +X105336500Y-64963134D01* +X105343255Y-65025316D01* +X105394385Y-65161705D01* +X105481739Y-65278261D01* +X105598295Y-65365615D01* +X105734684Y-65416745D01* +X105796866Y-65423500D01* +X106743134Y-65423500D01* +X106805316Y-65416745D01* +X106941705Y-65365615D01* +X107043039Y-65289669D01* +X108707001Y-65289669D01* +X108707371Y-65296490D01* +X108712895Y-65347352D01* +X108716521Y-65362604D01* +X108761676Y-65483054D01* +X108770214Y-65498649D01* +X108846715Y-65600724D01* +X108859276Y-65613285D01* +X108961351Y-65689786D01* +X108976946Y-65698324D01* +X109097394Y-65743478D01* +X109112649Y-65747105D01* +X109163514Y-65752631D01* +X109170328Y-65753000D01* +X109367885Y-65753000D01* +X109383124Y-65748525D01* +X109384329Y-65747135D01* +X109386000Y-65739452D01* +X109386000Y-65734884D01* +X109894000Y-65734884D01* +X109898475Y-65750123D01* +X109899865Y-65751328D01* +X109907548Y-65752999D01* +X110109669Y-65752999D01* +X110116490Y-65752629D01* +X110167352Y-65747105D01* +X110182604Y-65743479D01* +X110303054Y-65698324D01* +X110318649Y-65689786D01* +X110420724Y-65613285D01* +X110433285Y-65600724D01* +X110509786Y-65498649D01* +X110518324Y-65483054D01* +X110563478Y-65362606D01* +X110567105Y-65347351D01* +X110572631Y-65296486D01* +X110573000Y-65289672D01* +X110573000Y-65092115D01* +X110568525Y-65076876D01* +X110567135Y-65075671D01* +X110559452Y-65074000D01* +X109912115Y-65074000D01* +X109896876Y-65078475D01* +X109895671Y-65079865D01* +X109894000Y-65087548D01* +X109894000Y-65734884D01* +X109386000Y-65734884D01* +X109386000Y-65092115D01* +X109381525Y-65076876D01* +X109380135Y-65075671D01* +X109372452Y-65074000D01* +X108725116Y-65074000D01* +X108709877Y-65078475D01* +X108708672Y-65079865D01* +X108707001Y-65087548D01* +X108707001Y-65289669D01* +X107043039Y-65289669D01* +X107058261Y-65278261D01* +X107145615Y-65161705D01* +X107196745Y-65025316D01* +X107203500Y-64963134D01* +X107203500Y-64547885D01* +X108707000Y-64547885D01* +X108711475Y-64563124D01* +X108712865Y-64564329D01* +X108720548Y-64566000D01* +X109367885Y-64566000D01* +X109383124Y-64561525D01* +X109384329Y-64560135D01* +X109386000Y-64552452D01* +X109386000Y-64547885D01* +X109894000Y-64547885D01* +X109898475Y-64563124D01* +X109899865Y-64564329D01* +X109907548Y-64566000D01* +X110554884Y-64566000D01* +X110570123Y-64561525D01* +X110571328Y-64560135D01* +X110572999Y-64552452D01* +X110572999Y-64350331D01* +X110572629Y-64343510D01* +X110567105Y-64292648D01* +X110563479Y-64277396D01* +X110518324Y-64156946D01* +X110509786Y-64141351D01* +X110433285Y-64039276D01* +X110420724Y-64026715D01* +X110318649Y-63950214D01* +X110303054Y-63941676D01* +X110182606Y-63896522D01* +X110167351Y-63892895D01* +X110116486Y-63887369D01* +X110109672Y-63887000D01* +X109912115Y-63887000D01* +X109896876Y-63891475D01* +X109895671Y-63892865D01* +X109894000Y-63900548D01* +X109894000Y-64547885D01* +X109386000Y-64547885D01* +X109386000Y-63905116D01* +X109381525Y-63889877D01* +X109380135Y-63888672D01* +X109372452Y-63887001D01* +X109170331Y-63887001D01* +X109163510Y-63887371D01* +X109112648Y-63892895D01* +X109097396Y-63896521D01* +X108976946Y-63941676D01* +X108961351Y-63950214D01* +X108859276Y-64026715D01* +X108846715Y-64039276D01* +X108770214Y-64141351D01* +X108761676Y-64156946D01* +X108716522Y-64277394D01* +X108712895Y-64292649D01* +X108707369Y-64343514D01* +X108707000Y-64350328D01* +X108707000Y-64547885D01* +X107203500Y-64547885D01* +X107203500Y-64016866D01* +X107196745Y-63954684D01* +X107145615Y-63818295D01* +X107058261Y-63701739D01* +X106941705Y-63614385D01* +X106805316Y-63563255D01* +X106749440Y-63557185D01* +X106746531Y-63556869D01* +X106743134Y-63556500D01* +X105796866Y-63556500D01* +X105793469Y-63556869D01* +X105790560Y-63557185D01* +X105734684Y-63563255D01* +X105598295Y-63614385D01* +X105481739Y-63701739D01* +X105394385Y-63818295D01* +X105343255Y-63954684D01* +X105336500Y-64016866D01* +X105336500Y-64963134D01* +X104913500Y-64963134D01* +X104913500Y-64096866D01* +X104906745Y-64034684D01* +X104855615Y-63898295D01* +X104768261Y-63781739D01* +X104651705Y-63694385D01* +X104515316Y-63643255D01* +X104453134Y-63636500D01* +X104233995Y-63636500D01* +X104165874Y-63616498D01* +X104144900Y-63599595D01* +X103563000Y-63017695D01* +X103528974Y-62955383D01* +X103534039Y-62884568D01* +X103576586Y-62827732D01* +X103643106Y-62802921D01* +X103652095Y-62802600D01* +X110216106Y-62802600D01* +X110284227Y-62822602D01* +G37* +%TD.AperFunction*% +%TD*% +M02* diff --git a/F1:F103/Canon_managing_device/kicad/Canon_manage/gerbers/Canon_manage-F_Mask.gbr b/F1:F103/Canon_managing_device/kicad/Canon_manage/gerbers/Canon_manage-F_Mask.gbr new file mode 100644 index 0000000..b8f4669 --- /dev/null +++ b/F1:F103/Canon_managing_device/kicad/Canon_manage/gerbers/Canon_manage-F_Mask.gbr @@ -0,0 +1,214 @@ +%TF.GenerationSoftware,KiCad,Pcbnew,6.0.5*% +%TF.CreationDate,2022-09-23T09:05:14+03:00*% +%TF.ProjectId,Canon_manage,43616e6f-6e5f-46d6-916e-6167652e6b69,rev?*% +%TF.SameCoordinates,Original*% +%TF.FileFunction,Soldermask,Top*% +%TF.FilePolarity,Negative*% +%FSLAX46Y46*% +G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)* +G04 Created by KiCad (PCBNEW 6.0.5) date 2022-09-23 09:05:14* +%MOMM*% +%LPD*% +G01* +G04 APERTURE LIST* +G04 Aperture macros list* +%AMRoundRect* +0 Rectangle with rounded corners* +0 $1 Rounding radius* +0 $2 $3 $4 $5 $6 $7 $8 $9 X,Y pos of 4 corners* +0 Add a 4 corners polygon primitive as box body* +4,1,4,$2,$3,$4,$5,$6,$7,$8,$9,$2,$3,0* +0 Add four circle primitives for the rounded corners* +1,1,$1+$1,$2,$3* +1,1,$1+$1,$4,$5* +1,1,$1+$1,$6,$7* +1,1,$1+$1,$8,$9* +0 Add four rect primitives between the rounded corners* +20,1,$1+$1,$2,$3,$4,$5,0* +20,1,$1+$1,$4,$5,$6,$7,0* +20,1,$1+$1,$6,$7,$8,$9,0* +20,1,$1+$1,$8,$9,$2,$3,0*% +G04 Aperture macros list end* +%ADD10R,0.850000X0.850000*% +%ADD11C,3.200000*% +%ADD12RoundRect,0.237500X-0.237500X0.300000X-0.237500X-0.300000X0.237500X-0.300000X0.237500X0.300000X0*% +%ADD13RoundRect,0.237500X0.250000X0.237500X-0.250000X0.237500X-0.250000X-0.237500X0.250000X-0.237500X0*% +%ADD14RoundRect,0.150000X-0.150000X0.512500X-0.150000X-0.512500X0.150000X-0.512500X0.150000X0.512500X0*% +%ADD15RoundRect,0.237500X0.237500X-0.250000X0.237500X0.250000X-0.237500X0.250000X-0.237500X-0.250000X0*% +%ADD16C,0.650000*% +%ADD17R,0.600000X1.450000*% +%ADD18R,0.300000X1.450000*% +%ADD19O,1.000000X2.100000*% +%ADD20O,1.000000X1.600000*% +%ADD21RoundRect,0.237500X0.300000X0.237500X-0.300000X0.237500X-0.300000X-0.237500X0.300000X-0.237500X0*% +%ADD22R,0.650000X1.560000*% +%ADD23R,1.700000X1.700000*% +%ADD24O,0.850000X0.850000*% +%ADD25C,1.500000*% +G04 APERTURE END LIST* +D10* +%TO.C,J6*% +X103980000Y-64570000D03* +%TD*% +D11* +%TO.C,REF\u002A\u002A1*% +X125880000Y-63225000D03* +%TD*% +%TO.C,REF\u002A\u002A2*% +X86050000Y-110665000D03* +%TD*% +D10* +%TO.C,J3*% +X111930000Y-65330000D03* +%TD*% +%TO.C,J4*% +X109640000Y-64820000D03* +%TD*% +%TO.C,J8*% +X99500000Y-65500000D03* +%TD*% +D12* +%TO.C,C1*% +X81661000Y-98478000D03* +X81661000Y-100203000D03* +%TD*% +D13* +%TO.C,R7*% +X97663000Y-57150000D03* +X95838000Y-57150000D03* +%TD*% +D14* +%TO.C,D1*% +X78547000Y-77901800D03* +X77597000Y-77901800D03* +X76647000Y-77901800D03* +X76647000Y-80176800D03* +X78547000Y-80176800D03* +%TD*% +D10* +%TO.C,J9*% +X97310000Y-66260000D03* +%TD*% +D15* +%TO.C,R3*% +X79612066Y-71094600D03* +X79612066Y-69269600D03* +%TD*% +D16* +%TO.C,J37*% +X102720000Y-54070000D03* +X108500000Y-54070000D03* +D17* +X108860000Y-55515000D03* +X108060000Y-55515000D03* +D18* +X106860000Y-55515000D03* +X105860000Y-55515000D03* +X105360000Y-55515000D03* +X104360000Y-55515000D03* +D17* +X103160000Y-55515000D03* +X102360000Y-55515000D03* +X102360000Y-55515000D03* +X103160000Y-55515000D03* +D18* +X103860000Y-55515000D03* +X104860000Y-55515000D03* +X106360000Y-55515000D03* +X107360000Y-55515000D03* +D17* +X108060000Y-55515000D03* +X108860000Y-55515000D03* +D19* +X101290000Y-54600000D03* +X109930000Y-54600000D03* +D20* +X109930000Y-50420000D03* +X101290000Y-50420000D03* +%TD*% +D21* +%TO.C,C2*% +X74902400Y-96610000D03* +X73177400Y-96610000D03* +%TD*% +D22* +%TO.C,U3*% +X93050400Y-57142400D03* +X92100400Y-57142400D03* +X91150400Y-57142400D03* +X91150400Y-59842400D03* +X92100400Y-59842400D03* +X93050400Y-59842400D03* +%TD*% +D13* +%TO.C,R8*% +X97661100Y-55549800D03* +X95836100Y-55549800D03* +%TD*% +D11* +%TO.C,REF\u002A\u002A*% +X86050000Y-63225000D03* +%TD*% +D10* +%TO.C,J2*% +X114040000Y-66090000D03* +%TD*% +D11* +%TO.C,REF\u002A\u002A3*% +X125880000Y-110665000D03* +%TD*% +D10* +%TO.C,J7*% +X101700000Y-64910000D03* +%TD*% +D15* +%TO.C,R4*% +X81169932Y-71094600D03* +X81169932Y-69269600D03* +%TD*% +D10* +%TO.C,J5*% +X106270000Y-64490000D03* +%TD*% +D23* +%TO.C,J35*% +X138633200Y-89560400D03* +%TD*% +D15* +%TO.C,R2*% +X78054200Y-71094600D03* +X78054200Y-69269600D03* +%TD*% +%TO.C,R5*% +X82727800Y-71094600D03* +X82727800Y-69269600D03* +%TD*% +D23* +%TO.C,J26*% +X127609600Y-72237600D03* +%TD*% +D10* +%TO.C,J1*% +X70586600Y-85188800D03* +D24* +X70586600Y-86188800D03* +X70586600Y-87188800D03* +X70586600Y-88188800D03* +X70586600Y-89188800D03* +X70586600Y-90188800D03* +%TD*% +D13* +%TO.C,R1*% +X80387200Y-90906600D03* +X78562200Y-90906600D03* +%TD*% +D23* +%TO.C,J36*% +X133350000Y-89560400D03* +%TD*% +D25* +%TO.C,Y1*% +X81647200Y-96600000D03* +X76767200Y-96600000D03* +%TD*% +M02* diff --git a/F1:F103/Canon_managing_device/kicad/Canon_manage/gerbers/Canon_manage-F_Paste.gbr b/F1:F103/Canon_managing_device/kicad/Canon_manage/gerbers/Canon_manage-F_Paste.gbr new file mode 100644 index 0000000..29aa2e9 --- /dev/null +++ b/F1:F103/Canon_managing_device/kicad/Canon_manage/gerbers/Canon_manage-F_Paste.gbr @@ -0,0 +1,124 @@ +%TF.GenerationSoftware,KiCad,Pcbnew,6.0.5*% +%TF.CreationDate,2022-09-23T09:05:14+03:00*% +%TF.ProjectId,Canon_manage,43616e6f-6e5f-46d6-916e-6167652e6b69,rev?*% +%TF.SameCoordinates,Original*% +%TF.FileFunction,Paste,Top*% +%TF.FilePolarity,Positive*% +%FSLAX46Y46*% +G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)* +G04 Created by KiCad (PCBNEW 6.0.5) date 2022-09-23 09:05:14* +%MOMM*% +%LPD*% +G01* +G04 APERTURE LIST* +G04 Aperture macros list* +%AMRoundRect* +0 Rectangle with rounded corners* +0 $1 Rounding radius* +0 $2 $3 $4 $5 $6 $7 $8 $9 X,Y pos of 4 corners* +0 Add a 4 corners polygon primitive as box body* +4,1,4,$2,$3,$4,$5,$6,$7,$8,$9,$2,$3,0* +0 Add four circle primitives for the rounded corners* +1,1,$1+$1,$2,$3* +1,1,$1+$1,$4,$5* +1,1,$1+$1,$6,$7* +1,1,$1+$1,$8,$9* +0 Add four rect primitives between the rounded corners* +20,1,$1+$1,$2,$3,$4,$5,0* +20,1,$1+$1,$4,$5,$6,$7,0* +20,1,$1+$1,$6,$7,$8,$9,0* +20,1,$1+$1,$8,$9,$2,$3,0*% +G04 Aperture macros list end* +%ADD10RoundRect,0.237500X-0.237500X0.300000X-0.237500X-0.300000X0.237500X-0.300000X0.237500X0.300000X0*% +%ADD11RoundRect,0.237500X0.250000X0.237500X-0.250000X0.237500X-0.250000X-0.237500X0.250000X-0.237500X0*% +%ADD12RoundRect,0.150000X-0.150000X0.512500X-0.150000X-0.512500X0.150000X-0.512500X0.150000X0.512500X0*% +%ADD13RoundRect,0.237500X0.237500X-0.250000X0.237500X0.250000X-0.237500X0.250000X-0.237500X-0.250000X0*% +%ADD14R,0.600000X1.450000*% +%ADD15R,0.300000X1.450000*% +%ADD16RoundRect,0.237500X0.300000X0.237500X-0.300000X0.237500X-0.300000X-0.237500X0.300000X-0.237500X0*% +%ADD17R,0.650000X1.560000*% +G04 APERTURE END LIST* +D10* +%TO.C,C1*% +X81661000Y-98478000D03* +X81661000Y-100203000D03* +%TD*% +D11* +%TO.C,R7*% +X97663000Y-57150000D03* +X95838000Y-57150000D03* +%TD*% +D12* +%TO.C,D1*% +X78547000Y-77901800D03* +X77597000Y-77901800D03* +X76647000Y-77901800D03* +X76647000Y-80176800D03* +X78547000Y-80176800D03* +%TD*% +D13* +%TO.C,R3*% +X79612066Y-71094600D03* +X79612066Y-69269600D03* +%TD*% +D14* +%TO.C,J37*% +X108860000Y-55515000D03* +X108060000Y-55515000D03* +D15* +X106860000Y-55515000D03* +X105860000Y-55515000D03* +X105360000Y-55515000D03* +X104360000Y-55515000D03* +D14* +X103160000Y-55515000D03* +X102360000Y-55515000D03* +X102360000Y-55515000D03* +X103160000Y-55515000D03* +D15* +X103860000Y-55515000D03* +X104860000Y-55515000D03* +X106360000Y-55515000D03* +X107360000Y-55515000D03* +D14* +X108060000Y-55515000D03* +X108860000Y-55515000D03* +%TD*% +D16* +%TO.C,C2*% +X74902400Y-96610000D03* +X73177400Y-96610000D03* +%TD*% +D17* +%TO.C,U3*% +X93050400Y-57142400D03* +X92100400Y-57142400D03* +X91150400Y-57142400D03* +X91150400Y-59842400D03* +X92100400Y-59842400D03* +X93050400Y-59842400D03* +%TD*% +D11* +%TO.C,R8*% +X97661100Y-55549800D03* +X95836100Y-55549800D03* +%TD*% +D13* +%TO.C,R4*% +X81169932Y-71094600D03* +X81169932Y-69269600D03* +%TD*% +%TO.C,R2*% +X78054200Y-71094600D03* +X78054200Y-69269600D03* +%TD*% +%TO.C,R5*% +X82727800Y-71094600D03* +X82727800Y-69269600D03* +%TD*% +D11* +%TO.C,R1*% +X80387200Y-90906600D03* +X78562200Y-90906600D03* +%TD*% +M02* diff --git a/F1:F103/Canon_managing_device/kicad/Canon_manage/gerbers/Canon_manage-F_Silkscreen.gbr b/F1:F103/Canon_managing_device/kicad/Canon_manage/gerbers/Canon_manage-F_Silkscreen.gbr new file mode 100644 index 0000000..f4a04db --- /dev/null +++ b/F1:F103/Canon_managing_device/kicad/Canon_manage/gerbers/Canon_manage-F_Silkscreen.gbr @@ -0,0 +1,1267 @@ +%TF.GenerationSoftware,KiCad,Pcbnew,6.0.5*% +%TF.CreationDate,2022-09-23T09:05:14+03:00*% +%TF.ProjectId,Canon_manage,43616e6f-6e5f-46d6-916e-6167652e6b69,rev?*% +%TF.SameCoordinates,Original*% +%TF.FileFunction,Legend,Top*% +%TF.FilePolarity,Positive*% +%FSLAX46Y46*% +G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)* +G04 Created by KiCad (PCBNEW 6.0.5) date 2022-09-23 09:05:14* +%MOMM*% +%LPD*% +G01* +G04 APERTURE LIST* +%ADD10C,0.150000*% +%ADD11C,0.400000*% +%ADD12C,0.120000*% +G04 APERTURE END LIST* +D10* +X72144576Y-85222833D02* +X72287433Y-85256166D01* +X72525528Y-85256166D01* +X72620766Y-85222833D01* +X72668385Y-85189500D01* +X72716004Y-85122833D01* +X72716004Y-85056166D01* +X72668385Y-84989500D01* +X72620766Y-84956166D01* +X72525528Y-84922833D01* +X72335052Y-84889500D01* +X72239814Y-84856166D01* +X72192195Y-84822833D01* +X72144576Y-84756166D01* +X72144576Y-84689500D01* +X72192195Y-84622833D01* +X72239814Y-84589500D01* +X72335052Y-84556166D01* +X72573147Y-84556166D01* +X72716004Y-84589500D01* +X73049338Y-84556166D02* +X73287433Y-85256166D01* +X73477909Y-84756166D01* +X73668385Y-85256166D01* +X73906480Y-84556166D01* +X74858861Y-85189500D02* +X74811242Y-85222833D01* +X74668385Y-85256166D01* +X74573147Y-85256166D01* +X74430290Y-85222833D01* +X74335052Y-85156166D01* +X74287433Y-85089500D01* +X74239814Y-84956166D01* +X74239814Y-84856166D01* +X74287433Y-84722833D01* +X74335052Y-84656166D01* +X74430290Y-84589500D01* +X74573147Y-84556166D01* +X74668385Y-84556166D01* +X74811242Y-84589500D01* +X74858861Y-84622833D01* +X75763623Y-85256166D02* +X75287433Y-85256166D01* +X75287433Y-84556166D01* +X76096957Y-85256166D02* +X76096957Y-84556166D01* +X76668385Y-85256166D02* +X76239814Y-84856166D01* +X76668385Y-84556166D02* +X76096957Y-84956166D01* +X72144576Y-86349833D02* +X72287433Y-86383166D01* +X72525528Y-86383166D01* +X72620766Y-86349833D01* +X72668385Y-86316500D01* +X72716004Y-86249833D01* +X72716004Y-86183166D01* +X72668385Y-86116500D01* +X72620766Y-86083166D01* +X72525528Y-86049833D01* +X72335052Y-86016500D01* +X72239814Y-85983166D01* +X72192195Y-85949833D01* +X72144576Y-85883166D01* +X72144576Y-85816500D01* +X72192195Y-85749833D01* +X72239814Y-85716500D01* +X72335052Y-85683166D01* +X72573147Y-85683166D01* +X72716004Y-85716500D01* +X73049338Y-85683166D02* +X73287433Y-86383166D01* +X73477909Y-85883166D01* +X73668385Y-86383166D01* +X73906480Y-85683166D01* +X74287433Y-86383166D02* +X74287433Y-85683166D01* +X74525528Y-85683166D01* +X74668385Y-85716500D01* +X74763623Y-85783166D01* +X74811242Y-85849833D01* +X74858861Y-85983166D01* +X74858861Y-86083166D01* +X74811242Y-86216500D01* +X74763623Y-86283166D01* +X74668385Y-86349833D01* +X74525528Y-86383166D01* +X74287433Y-86383166D01* +X75287433Y-86383166D02* +X75287433Y-85683166D01* +X75954100Y-85683166D02* +X76144576Y-85683166D01* +X76239814Y-85716500D01* +X76335052Y-85783166D01* +X76382671Y-85916500D01* +X76382671Y-86149833D01* +X76335052Y-86283166D01* +X76239814Y-86349833D01* +X76144576Y-86383166D01* +X75954100Y-86383166D01* +X75858861Y-86349833D01* +X75763623Y-86283166D01* +X75716004Y-86149833D01* +X75716004Y-85916500D01* +X75763623Y-85783166D01* +X75858861Y-85716500D01* +X75954100Y-85683166D01* +X72716004Y-86843500D02* +X72620766Y-86810166D01* +X72477909Y-86810166D01* +X72335052Y-86843500D01* +X72239814Y-86910166D01* +X72192195Y-86976833D01* +X72144576Y-87110166D01* +X72144576Y-87210166D01* +X72192195Y-87343500D01* +X72239814Y-87410166D01* +X72335052Y-87476833D01* +X72477909Y-87510166D01* +X72573147Y-87510166D01* +X72716004Y-87476833D01* +X72763623Y-87443500D01* +X72763623Y-87210166D01* +X72573147Y-87210166D01* +X73192195Y-87510166D02* +X73192195Y-86810166D01* +X73763623Y-87510166D01* +X73763623Y-86810166D01* +X74239814Y-87510166D02* +X74239814Y-86810166D01* +X74477909Y-86810166D01* +X74620766Y-86843500D01* +X74716004Y-86910166D01* +X74763623Y-86976833D01* +X74811242Y-87110166D01* +X74811242Y-87210166D01* +X74763623Y-87343500D01* +X74716004Y-87410166D01* +X74620766Y-87476833D01* +X74477909Y-87510166D01* +X74239814Y-87510166D01* +X72096957Y-87937166D02* +X72716004Y-87937166D01* +X72382671Y-88203833D01* +X72525528Y-88203833D01* +X72620766Y-88237166D01* +X72668385Y-88270500D01* +X72716004Y-88337166D01* +X72716004Y-88503833D01* +X72668385Y-88570500D01* +X72620766Y-88603833D01* +X72525528Y-88637166D01* +X72239814Y-88637166D01* +X72144576Y-88603833D01* +X72096957Y-88570500D01* +X73001719Y-87937166D02* +X73335052Y-88637166D01* +X73668385Y-87937166D01* +X73906480Y-87937166D02* +X74525528Y-87937166D01* +X74192195Y-88203833D01* +X74335052Y-88203833D01* +X74430290Y-88237166D01* +X74477909Y-88270500D01* +X74525528Y-88337166D01* +X74525528Y-88503833D01* +X74477909Y-88570500D01* +X74430290Y-88603833D01* +X74335052Y-88637166D01* +X74049338Y-88637166D01* +X73954100Y-88603833D01* +X73906480Y-88570500D01* +X72525528Y-89397500D02* +X72668385Y-89430833D01* +X72716004Y-89464166D01* +X72763623Y-89530833D01* +X72763623Y-89630833D01* +X72716004Y-89697500D01* +X72668385Y-89730833D01* +X72573147Y-89764166D01* +X72192195Y-89764166D01* +X72192195Y-89064166D01* +X72525528Y-89064166D01* +X72620766Y-89097500D01* +X72668385Y-89130833D01* +X72716004Y-89197500D01* +X72716004Y-89264166D01* +X72668385Y-89330833D01* +X72620766Y-89364166D01* +X72525528Y-89397500D01* +X72192195Y-89397500D01* +X73382671Y-89064166D02* +X73573147Y-89064166D01* +X73668385Y-89097500D01* +X73763623Y-89164166D01* +X73811242Y-89297500D01* +X73811242Y-89530833D01* +X73763623Y-89664166D01* +X73668385Y-89730833D01* +X73573147Y-89764166D01* +X73382671Y-89764166D01* +X73287433Y-89730833D01* +X73192195Y-89664166D01* +X73144576Y-89530833D01* +X73144576Y-89297500D01* +X73192195Y-89164166D01* +X73287433Y-89097500D01* +X73382671Y-89064166D01* +X74430290Y-89064166D02* +X74620766Y-89064166D01* +X74716004Y-89097500D01* +X74811242Y-89164166D01* +X74858861Y-89297500D01* +X74858861Y-89530833D01* +X74811242Y-89664166D01* +X74716004Y-89730833D01* +X74620766Y-89764166D01* +X74430290Y-89764166D01* +X74335052Y-89730833D01* +X74239814Y-89664166D01* +X74192195Y-89530833D01* +X74192195Y-89297500D01* +X74239814Y-89164166D01* +X74335052Y-89097500D01* +X74430290Y-89064166D01* +X75144576Y-89064166D02* +X75716004Y-89064166D01* +X75430290Y-89764166D02* +X75430290Y-89064166D01* +X76239814Y-89064166D02* +X76335052Y-89064166D01* +X76430290Y-89097500D01* +X76477909Y-89130833D01* +X76525528Y-89197500D01* +X76573147Y-89330833D01* +X76573147Y-89497500D01* +X76525528Y-89630833D01* +X76477909Y-89697500D01* +X76430290Y-89730833D01* +X76335052Y-89764166D01* +X76239814Y-89764166D01* +X76144576Y-89730833D01* +X76096957Y-89697500D01* +X76049338Y-89630833D01* +X76001719Y-89497500D01* +X76001719Y-89330833D01* +X76049338Y-89197500D01* +X76096957Y-89130833D01* +X76144576Y-89097500D01* +X76239814Y-89064166D01* +X72192195Y-90891166D02* +X72192195Y-90191166D01* +X72763623Y-90891166D01* +X72763623Y-90191166D01* +X73811242Y-90891166D02* +X73477909Y-90557833D01* +X73239814Y-90891166D02* +X73239814Y-90191166D01* +X73620766Y-90191166D01* +X73716004Y-90224500D01* +X73763623Y-90257833D01* +X73811242Y-90324500D01* +X73811242Y-90424500D01* +X73763623Y-90491166D01* +X73716004Y-90524500D01* +X73620766Y-90557833D01* +X73239814Y-90557833D01* +X74192195Y-90857833D02* +X74335052Y-90891166D01* +X74573147Y-90891166D01* +X74668385Y-90857833D01* +X74716004Y-90824500D01* +X74763623Y-90757833D01* +X74763623Y-90691166D01* +X74716004Y-90624500D01* +X74668385Y-90591166D01* +X74573147Y-90557833D01* +X74382671Y-90524500D01* +X74287433Y-90491166D01* +X74239814Y-90457833D01* +X74192195Y-90391166D01* +X74192195Y-90324500D01* +X74239814Y-90257833D01* +X74287433Y-90224500D01* +X74382671Y-90191166D01* +X74620766Y-90191166D01* +X74763623Y-90224500D01* +X75049338Y-90191166D02* +X75620766Y-90191166D01* +X75335052Y-90891166D02* +X75335052Y-90191166D01* +D11* +X127221123Y-91950552D02* +X128768742Y-91950552D01* +X127935409Y-92902933D01* +X128292552Y-92902933D01* +X128530647Y-93021980D01* +X128649695Y-93141028D01* +X128768742Y-93379123D01* +X128768742Y-93974361D01* +X128649695Y-94212457D01* +X128530647Y-94331504D01* +X128292552Y-94450552D01* +X127578266Y-94450552D01* +X127340171Y-94331504D01* +X127221123Y-94212457D01* +X129840171Y-94212457D02* +X129959219Y-94331504D01* +X129840171Y-94450552D01* +X129721123Y-94331504D01* +X129840171Y-94212457D01* +X129840171Y-94450552D01* +X130792552Y-91950552D02* +X132340171Y-91950552D01* +X131506838Y-92902933D01* +X131863980Y-92902933D01* +X132102076Y-93021980D01* +X132221123Y-93141028D01* +X132340171Y-93379123D01* +X132340171Y-93974361D01* +X132221123Y-94212457D01* +X132102076Y-94331504D01* +X131863980Y-94450552D01* +X131149695Y-94450552D01* +X130911600Y-94331504D01* +X130792552Y-94212457D01* +X133054457Y-91950552D02* +X133887790Y-94450552D01* +X134721123Y-91950552D01* +X128073209Y-74576952D02* +X126882733Y-74576952D01* +X126763685Y-75767428D01* +X126882733Y-75648380D01* +X127120828Y-75529333D01* +X127716066Y-75529333D01* +X127954161Y-75648380D01* +X128073209Y-75767428D01* +X128192257Y-76005523D01* +X128192257Y-76600761D01* +X128073209Y-76838857D01* +X127954161Y-76957904D01* +X127716066Y-77076952D01* +X127120828Y-77076952D01* +X126882733Y-76957904D01* +X126763685Y-76838857D01* +X128906542Y-74576952D02* +X129739876Y-77076952D01* +X130573209Y-74576952D01* +X137026057Y-91866400D02* +X136787961Y-91747352D01* +X136430819Y-91747352D01* +X136073676Y-91866400D01* +X135835580Y-92104495D01* +X135716533Y-92342590D01* +X135597485Y-92818780D01* +X135597485Y-93175923D01* +X135716533Y-93652114D01* +X135835580Y-93890209D01* +X136073676Y-94128304D01* +X136430819Y-94247352D01* +X136668914Y-94247352D01* +X137026057Y-94128304D01* +X137145104Y-94009257D01* +X137145104Y-93175923D01* +X136668914Y-93175923D01* +X138216533Y-92580685D02* +X138216533Y-94247352D01* +X138216533Y-92818780D02* +X138335580Y-92699733D01* +X138573676Y-92580685D01* +X138930819Y-92580685D01* +X139168914Y-92699733D01* +X139287961Y-92937828D01* +X139287961Y-94247352D01* +X141549866Y-94247352D02* +X141549866Y-91747352D01* +X141549866Y-94128304D02* +X141311771Y-94247352D01* +X140835580Y-94247352D01* +X140597485Y-94128304D01* +X140478438Y-94009257D01* +X140359390Y-93771161D01* +X140359390Y-93056876D01* +X140478438Y-92818780D01* +X140597485Y-92699733D01* +X140835580Y-92580685D01* +X141311771Y-92580685D01* +X141549866Y-92699733D01* +D10* +%TO.C,J6*% +X104566980Y-63217228D02* +X103566980Y-63217228D01* +X104281266Y-62883895D01* +X103566980Y-62550561D01* +X104566980Y-62550561D01* +X103566980Y-61883895D02* +X103566980Y-61693419D01* +X103614600Y-61598180D01* +X103709838Y-61502942D01* +X103900314Y-61455323D01* +X104233647Y-61455323D01* +X104424123Y-61502942D01* +X104519361Y-61598180D01* +X104566980Y-61693419D01* +X104566980Y-61883895D01* +X104519361Y-61979133D01* +X104424123Y-62074371D01* +X104233647Y-62121990D01* +X103900314Y-62121990D01* +X103709838Y-62074371D01* +X103614600Y-61979133D01* +X103566980Y-61883895D01* +X104519361Y-61074371D02* +X104566980Y-60931514D01* +X104566980Y-60693419D01* +X104519361Y-60598180D01* +X104471742Y-60550561D01* +X104376504Y-60502942D01* +X104281266Y-60502942D01* +X104186028Y-60550561D01* +X104138409Y-60598180D01* +X104090790Y-60693419D01* +X104043171Y-60883895D01* +X103995552Y-60979133D01* +X103947933Y-61026752D01* +X103852695Y-61074371D01* +X103757457Y-61074371D01* +X103662219Y-61026752D01* +X103614600Y-60979133D01* +X103566980Y-60883895D01* +X103566980Y-60645800D01* +X103614600Y-60502942D01* +X104566980Y-60074371D02* +X103566980Y-60074371D01* +%TO.C,J3*% +X112110780Y-63518942D02* +X112110780Y-63995133D01* +X111110780Y-63995133D01* +X112110780Y-62757038D02* +X111110780Y-62757038D01* +X112063161Y-62757038D02* +X112110780Y-62852276D01* +X112110780Y-63042752D01* +X112063161Y-63137990D01* +X112015542Y-63185609D01* +X111920304Y-63233228D01* +X111634590Y-63233228D01* +X111539352Y-63185609D01* +X111491733Y-63137990D01* +X111444114Y-63042752D01* +X111444114Y-62852276D01* +X111491733Y-62757038D01* +X112063161Y-61899895D02* +X112110780Y-61995133D01* +X112110780Y-62185609D01* +X112063161Y-62280847D01* +X111967923Y-62328466D01* +X111586971Y-62328466D01* +X111491733Y-62280847D01* +X111444114Y-62185609D01* +X111444114Y-61995133D01* +X111491733Y-61899895D01* +X111586971Y-61852276D01* +X111682209Y-61852276D01* +X111777447Y-62328466D01* +X111444114Y-61566561D02* +X111444114Y-61185609D01* +X111110780Y-61423704D02* +X111967923Y-61423704D01* +X112063161Y-61376085D01* +X112110780Y-61280847D01* +X112110780Y-61185609D01* +%TO.C,J4*% +X110129580Y-63464866D02* +X109129580Y-63464866D01* +X109129580Y-63083914D01* +X109177200Y-62988676D01* +X109224819Y-62941057D01* +X109320057Y-62893438D01* +X109462914Y-62893438D01* +X109558152Y-62941057D01* +X109605771Y-62988676D01* +X109653390Y-63083914D01* +X109653390Y-63464866D01* +X109177200Y-61941057D02* +X109129580Y-62036295D01* +X109129580Y-62179152D01* +X109177200Y-62322009D01* +X109272438Y-62417247D01* +X109367676Y-62464866D01* +X109558152Y-62512485D01* +X109701009Y-62512485D01* +X109891485Y-62464866D01* +X109986723Y-62417247D01* +X110081961Y-62322009D01* +X110129580Y-62179152D01* +X110129580Y-62083914D01* +X110081961Y-61941057D01* +X110034342Y-61893438D01* +X109701009Y-61893438D01* +X109701009Y-62083914D01* +X109462914Y-61464866D02* +X110129580Y-61464866D01* +X109558152Y-61464866D02* +X109510533Y-61417247D01* +X109462914Y-61322009D01* +X109462914Y-61179152D01* +X109510533Y-61083914D01* +X109605771Y-61036295D01* +X110129580Y-61036295D01* +X110129580Y-60131533D02* +X109129580Y-60131533D01* +X110081961Y-60131533D02* +X110129580Y-60226771D01* +X110129580Y-60417247D01* +X110081961Y-60512485D01* +X110034342Y-60560104D01* +X109939104Y-60607723D01* +X109653390Y-60607723D01* +X109558152Y-60560104D01* +X109510533Y-60512485D01* +X109462914Y-60417247D01* +X109462914Y-60226771D01* +X109510533Y-60131533D01* +%TO.C,J8*% +X99921961Y-64125314D02* +X99969580Y-63982457D01* +X99969580Y-63744361D01* +X99921961Y-63649123D01* +X99874342Y-63601504D01* +X99779104Y-63553885D01* +X99683866Y-63553885D01* +X99588628Y-63601504D01* +X99541009Y-63649123D01* +X99493390Y-63744361D01* +X99445771Y-63934838D01* +X99398152Y-64030076D01* +X99350533Y-64077695D01* +X99255295Y-64125314D01* +X99160057Y-64125314D01* +X99064819Y-64077695D01* +X99017200Y-64030076D01* +X98969580Y-63934838D01* +X98969580Y-63696742D01* +X99017200Y-63553885D01* +X99874342Y-62553885D02* +X99921961Y-62601504D01* +X99969580Y-62744361D01* +X99969580Y-62839600D01* +X99921961Y-62982457D01* +X99826723Y-63077695D01* +X99731485Y-63125314D01* +X99541009Y-63172933D01* +X99398152Y-63172933D01* +X99207676Y-63125314D01* +X99112438Y-63077695D01* +X99017200Y-62982457D01* +X98969580Y-62839600D01* +X98969580Y-62744361D01* +X99017200Y-62601504D01* +X99064819Y-62553885D01* +X99969580Y-62125314D02* +X98969580Y-62125314D01* +X99969580Y-61553885D02* +X99398152Y-61982457D01* +X98969580Y-61553885D02* +X99541009Y-62125314D01* +%TO.C,C1*% +X79792533Y-99569542D02* +X79744914Y-99617161D01* +X79602057Y-99664780D01* +X79506819Y-99664780D01* +X79363961Y-99617161D01* +X79268723Y-99521923D01* +X79221104Y-99426685D01* +X79173485Y-99236209D01* +X79173485Y-99093352D01* +X79221104Y-98902876D01* +X79268723Y-98807638D01* +X79363961Y-98712400D01* +X79506819Y-98664780D01* +X79602057Y-98664780D01* +X79744914Y-98712400D01* +X79792533Y-98760019D01* +X80744914Y-99664780D02* +X80173485Y-99664780D01* +X80459200Y-99664780D02* +X80459200Y-98664780D01* +X80363961Y-98807638D01* +X80268723Y-98902876D01* +X80173485Y-98950495D01* +%TO.C,R7*% +X96583833Y-59032380D02* +X96250500Y-58556190D01* +X96012404Y-59032380D02* +X96012404Y-58032380D01* +X96393357Y-58032380D01* +X96488595Y-58080000D01* +X96536214Y-58127619D01* +X96583833Y-58222857D01* +X96583833Y-58365714D01* +X96536214Y-58460952D01* +X96488595Y-58508571D01* +X96393357Y-58556190D01* +X96012404Y-58556190D01* +X96917166Y-58032380D02* +X97583833Y-58032380D01* +X97155261Y-59032380D01* +%TO.C,D1*% +X79576704Y-79547980D02* +X79576704Y-78547980D01* +X79814800Y-78547980D01* +X79957657Y-78595600D01* +X80052895Y-78690838D01* +X80100514Y-78786076D01* +X80148133Y-78976552D01* +X80148133Y-79119409D01* +X80100514Y-79309885D01* +X80052895Y-79405123D01* +X79957657Y-79500361D01* +X79814800Y-79547980D01* +X79576704Y-79547980D01* +X81100514Y-79547980D02* +X80529085Y-79547980D01* +X80814800Y-79547980D02* +X80814800Y-78547980D01* +X80719561Y-78690838D01* +X80624323Y-78786076D01* +X80529085Y-78833695D01* +%TO.C,J9*% +X97277180Y-64493638D02* +X97277180Y-64969828D01* +X96277180Y-64969828D01* +X96324800Y-63636495D02* +X96277180Y-63731733D01* +X96277180Y-63874590D01* +X96324800Y-64017447D01* +X96420038Y-64112685D01* +X96515276Y-64160304D01* +X96705752Y-64207923D01* +X96848609Y-64207923D01* +X97039085Y-64160304D01* +X97134323Y-64112685D01* +X97229561Y-64017447D01* +X97277180Y-63874590D01* +X97277180Y-63779352D01* +X97229561Y-63636495D01* +X97181942Y-63588876D01* +X96848609Y-63588876D01* +X96848609Y-63779352D01* +X96610514Y-63160304D02* +X97277180Y-63160304D01* +X96705752Y-63160304D02* +X96658133Y-63112685D01* +X96610514Y-63017447D01* +X96610514Y-62874590D01* +X96658133Y-62779352D01* +X96753371Y-62731733D01* +X97277180Y-62731733D01* +X97277180Y-61826971D02* +X96277180Y-61826971D01* +X97229561Y-61826971D02* +X97277180Y-61922209D01* +X97277180Y-62112685D01* +X97229561Y-62207923D01* +X97181942Y-62255542D01* +X97086704Y-62303161D01* +X96800990Y-62303161D01* +X96705752Y-62255542D01* +X96658133Y-62207923D01* +X96610514Y-62112685D01* +X96610514Y-61922209D01* +X96658133Y-61826971D01* +%TO.C,R3*% +X79411533Y-73020180D02* +X79078200Y-72543990D01* +X78840104Y-73020180D02* +X78840104Y-72020180D01* +X79221057Y-72020180D01* +X79316295Y-72067800D01* +X79363914Y-72115419D01* +X79411533Y-72210657D01* +X79411533Y-72353514D01* +X79363914Y-72448752D01* +X79316295Y-72496371D01* +X79221057Y-72543990D01* +X78840104Y-72543990D01* +X79744866Y-72020180D02* +X80363914Y-72020180D01* +X80030580Y-72401133D01* +X80173438Y-72401133D01* +X80268676Y-72448752D01* +X80316295Y-72496371D01* +X80363914Y-72591609D01* +X80363914Y-72829704D01* +X80316295Y-72924942D01* +X80268676Y-72972561D01* +X80173438Y-73020180D01* +X79887723Y-73020180D01* +X79792485Y-72972561D01* +X79744866Y-72924942D01* +%TO.C,J37*% +X111433076Y-53401980D02* +X111433076Y-54116266D01* +X111385457Y-54259123D01* +X111290219Y-54354361D01* +X111147361Y-54401980D01* +X111052123Y-54401980D01* +X111814028Y-53401980D02* +X112433076Y-53401980D01* +X112099742Y-53782933D01* +X112242600Y-53782933D01* +X112337838Y-53830552D01* +X112385457Y-53878171D01* +X112433076Y-53973409D01* +X112433076Y-54211504D01* +X112385457Y-54306742D01* +X112337838Y-54354361D01* +X112242600Y-54401980D01* +X111956885Y-54401980D01* +X111861647Y-54354361D01* +X111814028Y-54306742D01* +X112766409Y-53401980D02* +X113433076Y-53401980D01* +X113004504Y-54401980D01* +%TO.C,C2*% +X73873233Y-98397142D02* +X73825614Y-98444761D01* +X73682757Y-98492380D01* +X73587519Y-98492380D01* +X73444661Y-98444761D01* +X73349423Y-98349523D01* +X73301804Y-98254285D01* +X73254185Y-98063809D01* +X73254185Y-97920952D01* +X73301804Y-97730476D01* +X73349423Y-97635238D01* +X73444661Y-97540000D01* +X73587519Y-97492380D01* +X73682757Y-97492380D01* +X73825614Y-97540000D01* +X73873233Y-97587619D01* +X74254185Y-97587619D02* +X74301804Y-97540000D01* +X74397042Y-97492380D01* +X74635138Y-97492380D01* +X74730376Y-97540000D01* +X74777995Y-97587619D01* +X74825614Y-97682857D01* +X74825614Y-97778095D01* +X74777995Y-97920952D01* +X74206566Y-98492380D01* +X74825614Y-98492380D01* +%TO.C,U3*% +X91922695Y-61225180D02* +X91922695Y-62034704D01* +X91970314Y-62129942D01* +X92017933Y-62177561D01* +X92113171Y-62225180D01* +X92303647Y-62225180D01* +X92398885Y-62177561D01* +X92446504Y-62129942D01* +X92494123Y-62034704D01* +X92494123Y-61225180D01* +X92875076Y-61225180D02* +X93494123Y-61225180D01* +X93160790Y-61606133D01* +X93303647Y-61606133D01* +X93398885Y-61653752D01* +X93446504Y-61701371D01* +X93494123Y-61796609D01* +X93494123Y-62034704D01* +X93446504Y-62129942D01* +X93398885Y-62177561D01* +X93303647Y-62225180D01* +X93017933Y-62225180D01* +X92922695Y-62177561D01* +X92875076Y-62129942D01* +%TO.C,R8*% +X96681633Y-54655980D02* +X96348300Y-54179790D01* +X96110204Y-54655980D02* +X96110204Y-53655980D01* +X96491157Y-53655980D01* +X96586395Y-53703600D01* +X96634014Y-53751219D01* +X96681633Y-53846457D01* +X96681633Y-53989314D01* +X96634014Y-54084552D01* +X96586395Y-54132171D01* +X96491157Y-54179790D01* +X96110204Y-54179790D01* +X97253061Y-54084552D02* +X97157823Y-54036933D01* +X97110204Y-53989314D01* +X97062585Y-53894076D01* +X97062585Y-53846457D01* +X97110204Y-53751219D01* +X97157823Y-53703600D01* +X97253061Y-53655980D01* +X97443538Y-53655980D01* +X97538776Y-53703600D01* +X97586395Y-53751219D01* +X97634014Y-53846457D01* +X97634014Y-53894076D01* +X97586395Y-53989314D01* +X97538776Y-54036933D01* +X97443538Y-54084552D01* +X97253061Y-54084552D01* +X97157823Y-54132171D01* +X97110204Y-54179790D01* +X97062585Y-54275028D01* +X97062585Y-54465504D01* +X97110204Y-54560742D01* +X97157823Y-54608361D01* +X97253061Y-54655980D01* +X97443538Y-54655980D01* +X97538776Y-54608361D01* +X97586395Y-54560742D01* +X97634014Y-54465504D01* +X97634014Y-54275028D01* +X97586395Y-54179790D01* +X97538776Y-54132171D01* +X97443538Y-54084552D01* +%TO.C,J2*% +X114650780Y-64825476D02* +X113650780Y-64825476D01* +X113650780Y-64444523D01* +X113698400Y-64349285D01* +X113746019Y-64301666D01* +X113841257Y-64254047D01* +X113984114Y-64254047D01* +X114079352Y-64301666D01* +X114126971Y-64349285D01* +X114174590Y-64444523D01* +X114174590Y-64825476D01* +X113650780Y-63968333D02* +X114650780Y-63635000D01* +X113650780Y-63301666D01* +%TO.C,J7*% +X102179380Y-63598228D02* +X101179380Y-63598228D01* +X101893666Y-63264895D01* +X101179380Y-62931561D01* +X102179380Y-62931561D01* +X102179380Y-62455371D02* +X101179380Y-62455371D01* +X102131761Y-62026800D02* +X102179380Y-61883942D01* +X102179380Y-61645847D01* +X102131761Y-61550609D01* +X102084142Y-61502990D01* +X101988904Y-61455371D01* +X101893666Y-61455371D01* +X101798428Y-61502990D01* +X101750809Y-61550609D01* +X101703190Y-61645847D01* +X101655571Y-61836323D01* +X101607952Y-61931561D01* +X101560333Y-61979180D01* +X101465095Y-62026800D01* +X101369857Y-62026800D01* +X101274619Y-61979180D01* +X101227000Y-61931561D01* +X101179380Y-61836323D01* +X101179380Y-61598228D01* +X101227000Y-61455371D01* +X101179380Y-60836323D02* +X101179380Y-60645847D01* +X101227000Y-60550609D01* +X101322238Y-60455371D01* +X101512714Y-60407752D01* +X101846047Y-60407752D01* +X102036523Y-60455371D01* +X102131761Y-60550609D01* +X102179380Y-60645847D01* +X102179380Y-60836323D01* +X102131761Y-60931561D01* +X102036523Y-61026800D01* +X101846047Y-61074419D01* +X101512714Y-61074419D01* +X101322238Y-61026800D01* +X101227000Y-60931561D01* +X101179380Y-60836323D01* +%TO.C,R4*% +X81011733Y-68321180D02* +X80678400Y-67844990D01* +X80440304Y-68321180D02* +X80440304Y-67321180D01* +X80821257Y-67321180D01* +X80916495Y-67368800D01* +X80964114Y-67416419D01* +X81011733Y-67511657D01* +X81011733Y-67654514D01* +X80964114Y-67749752D01* +X80916495Y-67797371D01* +X80821257Y-67844990D01* +X80440304Y-67844990D01* +X81868876Y-67654514D02* +X81868876Y-68321180D01* +X81630780Y-67273561D02* +X81392685Y-67987847D01* +X82011733Y-67987847D01* +%TO.C,J5*% +X106852980Y-62704647D02* +X106852980Y-63180838D01* +X105852980Y-63180838D01* +X105852980Y-62514171D02* +X106852980Y-62180838D01* +X105852980Y-61847504D01* +%TO.C,R2*% +X77836733Y-68244980D02* +X77503400Y-67768790D01* +X77265304Y-68244980D02* +X77265304Y-67244980D01* +X77646257Y-67244980D01* +X77741495Y-67292600D01* +X77789114Y-67340219D01* +X77836733Y-67435457D01* +X77836733Y-67578314D01* +X77789114Y-67673552D01* +X77741495Y-67721171D01* +X77646257Y-67768790D01* +X77265304Y-67768790D01* +X78217685Y-67340219D02* +X78265304Y-67292600D01* +X78360542Y-67244980D01* +X78598638Y-67244980D01* +X78693876Y-67292600D01* +X78741495Y-67340219D01* +X78789114Y-67435457D01* +X78789114Y-67530695D01* +X78741495Y-67673552D01* +X78170066Y-68244980D01* +X78789114Y-68244980D01* +%TO.C,R5*% +X82535733Y-73020180D02* +X82202400Y-72543990D01* +X81964304Y-73020180D02* +X81964304Y-72020180D01* +X82345257Y-72020180D01* +X82440495Y-72067800D01* +X82488114Y-72115419D01* +X82535733Y-72210657D01* +X82535733Y-72353514D01* +X82488114Y-72448752D01* +X82440495Y-72496371D01* +X82345257Y-72543990D01* +X81964304Y-72543990D01* +X83440495Y-72020180D02* +X82964304Y-72020180D01* +X82916685Y-72496371D01* +X82964304Y-72448752D01* +X83059542Y-72401133D01* +X83297638Y-72401133D01* +X83392876Y-72448752D01* +X83440495Y-72496371D01* +X83488114Y-72591609D01* +X83488114Y-72829704D01* +X83440495Y-72924942D01* +X83392876Y-72972561D01* +X83297638Y-73020180D01* +X83059542Y-73020180D01* +X82964304Y-72972561D01* +X82916685Y-72924942D01* +%TO.C,J1*% +X70253266Y-83081180D02* +X70253266Y-83795466D01* +X70205647Y-83938323D01* +X70110409Y-84033561D01* +X69967552Y-84081180D01* +X69872314Y-84081180D01* +X71253266Y-84081180D02* +X70681838Y-84081180D01* +X70967552Y-84081180D02* +X70967552Y-83081180D01* +X70872314Y-83224038D01* +X70777076Y-83319276D01* +X70681838Y-83366895D01* +%TO.C,R1*% +X79308033Y-92788980D02* +X78974700Y-92312790D01* +X78736604Y-92788980D02* +X78736604Y-91788980D01* +X79117557Y-91788980D01* +X79212795Y-91836600D01* +X79260414Y-91884219D01* +X79308033Y-91979457D01* +X79308033Y-92122314D01* +X79260414Y-92217552D01* +X79212795Y-92265171D01* +X79117557Y-92312790D01* +X78736604Y-92312790D01* +X80260414Y-92788980D02* +X79688985Y-92788980D01* +X79974700Y-92788980D02* +X79974700Y-91788980D01* +X79879461Y-91931838D01* +X79784223Y-92027076D01* +X79688985Y-92074695D01* +D12* +%TO.C,J6*% +X103285000Y-65255000D02* +X104675000Y-65255000D01* +X104588276Y-65255000D02* +X104675000Y-65255000D01* +X103285000Y-64570000D02* +X103285000Y-63885000D01* +X103285000Y-63885000D02* +X103980000Y-63885000D01* +X103285000Y-65255000D02* +X103285000Y-65130000D01* +X103285000Y-65255000D02* +X103371724Y-65255000D01* +X104675000Y-65255000D02* +X104675000Y-65130000D01* +%TO.C,J3*% +X111235000Y-64645000D02* +X111930000Y-64645000D01* +X112538276Y-66015000D02* +X112625000Y-66015000D01* +X111235000Y-66015000D02* +X112625000Y-66015000D01* +X111235000Y-66015000D02* +X111321724Y-66015000D01* +X111235000Y-65330000D02* +X111235000Y-64645000D01* +X112625000Y-66015000D02* +X112625000Y-65890000D01* +X111235000Y-66015000D02* +X111235000Y-65890000D01* +%TO.C,J4*% +X108945000Y-64135000D02* +X109640000Y-64135000D01* +X108945000Y-65505000D02* +X110335000Y-65505000D01* +X108945000Y-65505000D02* +X109031724Y-65505000D01* +X110335000Y-65505000D02* +X110335000Y-65380000D01* +X108945000Y-65505000D02* +X108945000Y-65380000D01* +X108945000Y-64820000D02* +X108945000Y-64135000D01* +X110248276Y-65505000D02* +X110335000Y-65505000D01* +%TO.C,J8*% +X98805000Y-66185000D02* +X98805000Y-66060000D01* +X100108276Y-66185000D02* +X100195000Y-66185000D01* +X100195000Y-66185000D02* +X100195000Y-66060000D01* +X98805000Y-64815000D02* +X99500000Y-64815000D01* +X98805000Y-66185000D02* +X100195000Y-66185000D01* +X98805000Y-66185000D02* +X98891724Y-66185000D01* +X98805000Y-65500000D02* +X98805000Y-64815000D01* +%TO.C,C1*% +X82171000Y-99194233D02* +X82171000Y-99486767D01* +X81151000Y-99194233D02* +X81151000Y-99486767D01* +%TO.C,R7*% +X97005224Y-57672500D02* +X96495776Y-57672500D01* +X97005224Y-56627500D02* +X96495776Y-56627500D01* +%TO.C,D1*% +X79157000Y-79039300D02* +X79157000Y-79839300D01* +X76037000Y-79039300D02* +X76037000Y-78239300D01* +X76037000Y-79039300D02* +X76037000Y-79839300D01* +X79157000Y-79039300D02* +X79157000Y-77239300D01* +%TO.C,J9*% +X96615000Y-66260000D02* +X96615000Y-65575000D01* +X96615000Y-66945000D02* +X96615000Y-66820000D01* +X96615000Y-66945000D02* +X96701724Y-66945000D01* +X96615000Y-66945000D02* +X98005000Y-66945000D01* +X98005000Y-66945000D02* +X98005000Y-66820000D01* +X96615000Y-65575000D02* +X97310000Y-65575000D01* +X97918276Y-66945000D02* +X98005000Y-66945000D01* +%TO.C,R3*% +X79089566Y-70436824D02* +X79089566Y-69927376D01* +X80134566Y-70436824D02* +X80134566Y-69927376D01* +%TO.C,J37*% +X100910000Y-49470000D02* +X100910000Y-47570000D01* +X110310000Y-49470000D02* +X110310000Y-47570000D01* +X100910000Y-53370000D02* +X100910000Y-51370000D01* +X110310000Y-47570000D02* +X100910000Y-47570000D01* +X110310000Y-53370000D02* +X110310000Y-51370000D01* +%TO.C,C2*% +X74186167Y-96100000D02* +X73893633Y-96100000D01* +X74186167Y-97120000D02* +X73893633Y-97120000D01* +%TO.C,U3*% +X90490400Y-57592400D02* +X90490400Y-59392400D01* +X93710400Y-59392400D02* +X93710400Y-56442400D01* +%TO.C,R8*% +X97003324Y-55027300D02* +X96493876Y-55027300D01* +X97003324Y-56072300D02* +X96493876Y-56072300D01* +%TO.C,J2*% +X113345000Y-66775000D02* +X113431724Y-66775000D01* +X113345000Y-66090000D02* +X113345000Y-65405000D01* +X113345000Y-66775000D02* +X114735000Y-66775000D01* +X114735000Y-66775000D02* +X114735000Y-66650000D01* +X114648276Y-66775000D02* +X114735000Y-66775000D01* +X113345000Y-65405000D02* +X114040000Y-65405000D01* +X113345000Y-66775000D02* +X113345000Y-66650000D01* +%TO.C,J7*% +X102308276Y-65595000D02* +X102395000Y-65595000D01* +X101005000Y-65595000D02* +X102395000Y-65595000D01* +X102395000Y-65595000D02* +X102395000Y-65470000D01* +X101005000Y-64910000D02* +X101005000Y-64225000D01* +X101005000Y-65595000D02* +X101091724Y-65595000D01* +X101005000Y-64225000D02* +X101700000Y-64225000D01* +X101005000Y-65595000D02* +X101005000Y-65470000D01* +%TO.C,R4*% +X81692432Y-70436824D02* +X81692432Y-69927376D01* +X80647432Y-70436824D02* +X80647432Y-69927376D01* +%TO.C,J5*% +X105575000Y-64490000D02* +X105575000Y-63805000D01* +X105575000Y-65175000D02* +X105575000Y-65050000D01* +X106965000Y-65175000D02* +X106965000Y-65050000D01* +X105575000Y-63805000D02* +X106270000Y-63805000D01* +X105575000Y-65175000D02* +X105661724Y-65175000D01* +X106878276Y-65175000D02* +X106965000Y-65175000D01* +X105575000Y-65175000D02* +X106965000Y-65175000D01* +%TO.C,J35*% +X137303200Y-90830400D02* +X139963200Y-90830400D01* +X137303200Y-89560400D02* +X137303200Y-88230400D01* +X137303200Y-90890400D02* +X139963200Y-90890400D01* +X137303200Y-90830400D02* +X137303200Y-90890400D01* +X139963200Y-90830400D02* +X139963200Y-90890400D01* +X137303200Y-88230400D02* +X138633200Y-88230400D01* +%TO.C,R2*% +X77531700Y-70436824D02* +X77531700Y-69927376D01* +X78576700Y-70436824D02* +X78576700Y-69927376D01* +%TO.C,R5*% +X83250300Y-70436824D02* +X83250300Y-69927376D01* +X82205300Y-70436824D02* +X82205300Y-69927376D01* +%TO.C,J26*% +X126279600Y-70907600D02* +X127609600Y-70907600D01* +X126279600Y-72237600D02* +X126279600Y-70907600D01* +X126279600Y-73507600D02* +X126279600Y-73567600D01* +X128939600Y-73507600D02* +X128939600Y-73567600D01* +X126279600Y-73567600D02* +X128939600Y-73567600D01* +X126279600Y-73507600D02* +X128939600Y-73507600D01* +%TO.C,J1*% +X69891600Y-84503800D02* +X70586600Y-84503800D01* +X71281600Y-85873800D02* +X71281600Y-90748800D01* +X69891600Y-85188800D02* +X69891600Y-84503800D01* +X69891600Y-90748800D02* +X70192107Y-90748800D01* +X69891600Y-85873800D02* +X69891600Y-90748800D01* +X69891600Y-85873800D02* +X69978324Y-85873800D01* +X70981093Y-90748800D02* +X71281600Y-90748800D01* +X71194876Y-85873800D02* +X71281600Y-85873800D01* +%TO.C,R1*% +X79729424Y-90384100D02* +X79219976Y-90384100D01* +X79729424Y-91429100D02* +X79219976Y-91429100D01* +%TO.C,J36*% +X132020000Y-90830400D02* +X134680000Y-90830400D01* +X132020000Y-89560400D02* +X132020000Y-88230400D01* +X132020000Y-88230400D02* +X133350000Y-88230400D01* +X134680000Y-90830400D02* +X134680000Y-90890400D01* +X132020000Y-90830400D02* +X132020000Y-90890400D01* +X132020000Y-90890400D02* +X134680000Y-90890400D01* +%TD*% +M02* diff --git a/F1:F103/Canon_managing_device/kicad/Canon_manage/gerbers/Canon_manage-drl_map.gbr b/F1:F103/Canon_managing_device/kicad/Canon_manage/gerbers/Canon_manage-drl_map.gbr new file mode 100644 index 0000000..d0fff0c --- /dev/null +++ b/F1:F103/Canon_managing_device/kicad/Canon_manage/gerbers/Canon_manage-drl_map.gbr @@ -0,0 +1,3906 @@ +%FSLAX45Y45*% +G04 Gerber Fmt 4.5, Leading zero omitted, Abs format (unit mm)* +G04 Created by KiCad (PCBNEW 6.0.5) date 2022-09-23 09:05:12* +%MOMM*% +%LPD*% +G01* +G04 APERTURE LIST* +%TA.AperFunction,Profile*% +%ADD10C,0.200000*% +%TD*% +%ADD11C,0.200000*% +%ADD12C,0.050000*% +%ADD13C,0.060000*% +%ADD14C,0.080000*% +%ADD15C,0.100000*% +%ADD16C,0.065000*% +%ADD17C,0.320000*% +G04 APERTURE END LIST* +D10* +X14252105Y-9207760D02* +X14285867Y-8852501D01* +X9744393Y-5004592D02* +X9829005Y-4936930D01* +X13778476Y-6822777D02* +X13939155Y-7135730D01* +X8382885Y-5774230D02* +X8332173Y-5867248D01* +X8340585Y-11558834D02* +X8408247Y-11651852D01* +X8340585Y-11558834D02* +X8306685Y-11448866D01* +X12738325Y-5689620D02* +X12442321Y-5503585D01* +X11799465Y-5207576D02* +X12120825Y-5342900D01* +X13558543Y-10890758D02* +X13465525Y-10958420D01* +X13135755Y-6400000D02* +X13042737Y-6366100D01* +X12738325Y-11702564D02* +X12822799Y-11626496D01* +X7114263Y-7499399D02* +X7249587Y-7178040D01* +X12476088Y-11871787D02* +X12163135Y-12040873D01* +X8467501Y-11702564D02* +X8408245Y-11651852D01* +X12738326Y-11702564D02* +X12476085Y-11871788D01* +X8162955Y-11034490D02* +X8239161Y-11093609D01* +X6953584Y-9241516D02* +X6919822Y-8894800D01* +X8721195Y-6789020D02* +X8687295Y-6831326D01* +X14074475Y-7465640D02* +X13939151Y-7135736D01* +X13609385Y-10831505D02* +X13558535Y-10890760D01* +X13431755Y-6425350D02* +X13313381Y-6399994D01* +X13939155Y-7135730D02* +X13778476Y-6822777D01* +X9676735Y-5097610D02* +X9659923Y-5131372D01* +X12899005Y-11415104D02* +X12899005Y-11330490D01* +X8162953Y-11034486D02* +X8069935Y-10992180D01* +X6919822Y-8539679D02* +X6953584Y-8184420D01* +X13000430Y-11059842D02* +X12941175Y-11135910D01* +X7773933Y-10966832D02* +X7672509Y-10916120D01* +X7029790Y-9588370D02* +X7131214Y-9926541D01* +X7773932Y-10966830D02* +X7883900Y-10992186D01* +X10091245Y-12345282D02* +X10446366Y-12379183D01* +X7850000Y-6400000D02* +X7968515Y-6400000D01* +X12442325Y-5503580D02* +X12120829Y-5342901D01* +X13956105Y-10222550D02* +X14091429Y-9892785D01* +X8780315Y-6772070D02* +X8721197Y-6789021D01* +X8738015Y-10611570D02* +X8780321Y-10620114D01* +X12425375Y-10620110D02* +X8780315Y-10620110D01* +X13000435Y-11059840D02* +X13093453Y-11009128D01* +X10547935Y-4843910D02* +X10184270Y-4869266D01* +X13313385Y-6400000D02* +X13237175Y-6400000D01* +X8112237Y-6383052D02* +X8205255Y-6332340D01* +X12873516Y-11524934D02* +X12822805Y-11626496D01* +X11410443Y-4962283D02* +X11495055Y-5038350D01* +X7596303Y-6560675D02* +X7647153Y-6501420D01* +X8332173Y-5867248D02* +X8382885Y-5774230D01* +X11148341Y-12345282D02* +X10801625Y-12379183D01* +X12526795Y-6873630D02* +X12526795Y-10518550D01* +X13524773Y-6476069D02* +X13609385Y-6560680D01* +X8306685Y-6163250D02* +X8306685Y-6061690D01* +X10184270Y-4869266D02* +X10547935Y-4843910D01* +X14252107Y-9207754D02* +X14184445Y-9554470D01* +X6953584Y-8184420D02* +X6919822Y-8539679D01* +X8306685Y-11448866D02* +X8306685Y-11330490D01* +X8687295Y-6831320D02* +X8678889Y-6873625D01* +X13558535Y-10890760D02* +X13609385Y-10831505D01* +X12163135Y-12040873D02* +X12476088Y-11871787D01* +X8991712Y-5376663D02* +X9321615Y-5241340D01* +X7131214Y-9926540D02* +X7258132Y-10256444D01* +X6953584Y-8184426D02* +X7012840Y-7837710D01* +X10801625Y-12379183D02* +X11148341Y-12345282D01* +X13431757Y-6425358D02* +X13524775Y-6476070D01* +X11495063Y-5038352D02* +X11545775Y-5131370D01* +X8306685Y-11288190D02* +X8306685Y-11330490D01* +X10911595Y-4860860D02* +X11266715Y-4903030D01* +X8467497Y-5689620D02* +X8687295Y-5545890D01* +X8264517Y-6256268D02* +X8306685Y-6163250D01* +X12526801Y-10518555D02* +X12518395Y-10560860D01* +X8780315Y-6772070D02* +X12425375Y-6772070D01* +X12856705Y-5833350D02* +X12797450Y-5740332D01* +X7410267Y-6856680D02* +X7249587Y-7178040D01* +X12467678Y-6780612D02* +X12509985Y-6822780D01* +X10547930Y-4843909D02* +X10911595Y-4860860D01* +X13939151Y-7135736D02* +X14074475Y-7465640D01* +X8467505Y-11702564D02* +X8763370Y-11888599D01* +X7883900Y-10992180D02* +X7968515Y-10992180D01* +X8306685Y-11330490D02* +X8306685Y-11448866D01* +X11545775Y-5131370D02* +X11495063Y-5038352D01* +X12899005Y-11330490D02* +X12899005Y-11228930D01* +X9938975Y-4903030D02* +X9829008Y-4936930D01* +X8332175Y-5867250D02* +X8306681Y-5985624D01* +X7249587Y-7178040D02* +X7114263Y-7499399D01* +X14285865Y-8505780D02* +X14243559Y-8150659D01* +X12442321Y-5503585D02* +X12738325Y-5689620D01* +X12797445Y-5740330D02* +X12738326Y-5689618D01* +X14285865Y-8505780D02* +X14285865Y-8852500D01* +X8289867Y-11186765D02* +X8239155Y-11093610D01* +X14074482Y-7465639D02* +X14175905Y-7803810D01* +X9406225Y-12184603D02* +X9744397Y-12286164D01* +X13237175Y-6400000D02* +X13313385Y-6400000D01* +X9076318Y-12057823D02* +X8763365Y-11888599D01* +X12899005Y-5943310D02* +X12856699Y-5833342D01* +X13465515Y-10958418D02* +X13355685Y-10992180D01* +X12899009Y-11415104D02* +X12873515Y-11524934D01* +X12966530Y-6298576D02* +X13042735Y-6366100D01* +X12899005Y-5943310D02* +X12899005Y-6061690D01* +X8467505Y-5689620D02* +X8382893Y-5774232D01* +X8306685Y-5985620D02* +X8306685Y-6061690D01* +X12526795Y-10518550D02* +X12526795Y-6873630D01* +X13093445Y-11009130D02* +X13186463Y-10992180D01* +X8678895Y-10518550D02* +X8678895Y-6873630D01* +X8763370Y-11888599D02* +X8467505Y-11702564D01* +X12476087Y-10603160D02* +X12425375Y-10620110D01* +X7427217Y-10569265D02* +X7258131Y-10256450D01* +X7672509Y-10916120D02* +X7773933Y-10966832D01* +X13042737Y-6366100D02* +X13135755Y-6400000D01* +X8780321Y-10620114D02* +X8738015Y-10611570D01* +X13609389Y-6560677D02* +X13778475Y-6822780D01* +X7258132Y-10256444D02* +X7131214Y-9926540D01* +X13237175Y-6400000D02* +X13135755Y-6400000D01* +X13524775Y-6476070D02* +X13431757Y-6425358D01* +X8306685Y-11448866D02* +X8340585Y-11558834D01* +X14184443Y-9554471D02* +X14091425Y-9892780D01* +X12822799Y-11626496D02* +X12738325Y-11702564D01* +X12467675Y-6780610D02* +X12425369Y-6772066D01* +X12915823Y-6205414D02* +X12966535Y-6298570D01* +X9829008Y-4936930D02* +X9938975Y-4903030D01* +X10801625Y-12379183D02* +X10446365Y-12379183D01* +X9321616Y-5241338D02* +X9659925Y-5131370D01* +X12120825Y-5342900D02* +X11799465Y-5207576D01* +X8678889Y-6873625D02* +X8687295Y-6831320D01* +X8991705Y-5376660D02* +X8687296Y-5545884D01* +X10911595Y-4860860D02* +X10547930Y-4843909D01* +X8678895Y-10518550D02* +X8695845Y-10577805D01* +X13795425Y-10535500D02* +X13956104Y-10222547D01* +X13795420Y-10535496D02* +X13609385Y-10831500D01* +X8112245Y-6383050D02* +X8019227Y-6408406D01* +X11495055Y-12269214D02* +X11833364Y-12167652D01* +X7596303Y-6560680D02* +X7410267Y-6856684D01* +X8382893Y-5774232D02* +X8467505Y-5689620D01* +X13186463Y-10992180D02* +X13093445Y-11009130D01* +X12856699Y-5833342D02* +X12899005Y-5943310D01* +X11309021Y-4911578D02* +X11410445Y-4962290D01* +X7968513Y-6399994D02* +X8019225Y-6408400D01* +X14285865Y-8852500D02* +X14285865Y-8505780D01* +X9076315Y-12057823D02* +X9406218Y-12184603D01* +X9406218Y-12184603D02* +X9076315Y-12057823D01* +X13237175Y-10992180D02* +X13186465Y-10992180D01* +X12518395Y-10560860D02* +X12526801Y-10518555D01* +X7850000Y-6400000D02* +X7740170Y-6442306D01* +X8306685Y-11330490D02* +X8306685Y-11288190D01* +X8306685Y-6061690D02* +X8306685Y-6163250D01* +X13956104Y-10222547D02* +X13795425Y-10535500D01* +X8019225Y-6408400D02* +X7968513Y-6399994D01* +X8721197Y-6789021D02* +X8780315Y-6772070D01* +X8019227Y-6408406D02* +X8112245Y-6383050D01* +X8306685Y-6061690D02* +X8306685Y-5985620D01* +X7410267Y-6856684D02* +X7596303Y-6560680D01* +X11309025Y-4911570D02* +X11266719Y-4903026D01* +X7012840Y-7837710D02* +X6953584Y-8184426D01* +X14243559Y-8150659D02* +X14285865Y-8505780D01* +X12425375Y-10620110D02* +X12476087Y-10603160D01* +X11833365Y-12167653D02* +X12163130Y-12040874D01* +X8306687Y-11288184D02* +X8289875Y-11186760D01* +X9659925Y-5131370D02* +X9321616Y-5241338D01* +X12899005Y-11330490D02* +X12899005Y-11415104D01* +X8687295Y-5545890D02* +X8467497Y-5689620D01* +X8239155Y-11093610D02* +X8289867Y-11186765D01* +X8306685Y-6163250D02* +X8264517Y-6256268D01* +X8205259Y-6332338D02* +X8264515Y-6256270D01* +X7968515Y-10992180D02* +X7883900Y-10992180D01* +X8678895Y-6873630D02* +X8678895Y-10518550D01* +X9744397Y-12286164D02* +X9406225Y-12184603D01* +X12476085Y-10603160D02* +X12518390Y-10560854D01* +X12873515Y-11524934D02* +X12899009Y-11415104D01* +X9938973Y-4903032D02* +X10184265Y-4869270D01* +X8695845Y-10577810D02* +X8738013Y-10611573D01* +X12941174Y-11135912D02* +X12899005Y-11228930D01* +X7740170Y-6442306D02* +X7850000Y-6400000D01* +X8289875Y-11186760D02* +X8306687Y-11288184D01* +X6919822Y-8894800D02* +X6919822Y-8539680D01* +X7740170Y-6442300D02* +X7647152Y-6501418D01* +X13355685Y-10992180D02* +X13465515Y-10958418D01* +X8738013Y-10611573D02* +X8695845Y-10577810D01* +X7672509Y-10916111D02* +X7596303Y-10831500D01* +X9659923Y-5131372D02* +X9676735Y-5097610D01* +X8306681Y-5985624D02* +X8332175Y-5867250D01* +X7131214Y-9926541D02* +X7029790Y-9588370D01* +X12526795Y-6873630D02* +X12509983Y-6822780D01* +X12738326Y-5689618D02* +X12797445Y-5740330D01* +X7968515Y-6400000D02* +X7850000Y-6400000D01* +X7258131Y-10256450D02* +X7427217Y-10569265D01* +X13355685Y-10992180D02* +X13237175Y-10992180D01* +X8239161Y-11093609D02* +X8162955Y-11034490D01* +X8408247Y-11651852D02* +X8340585Y-11558834D01* +X7114264Y-7499400D02* +X7012840Y-7837709D01* +X11495055Y-5038350D02* +X11410443Y-4962283D01* +X7029790Y-9588373D02* +X6953584Y-9241520D01* +X7596303Y-10831500D02* +X7672509Y-10916111D01* +X13042735Y-6366100D02* +X12966530Y-6298576D01* +X7647152Y-6501418D02* +X7740170Y-6442300D01* +X10184265Y-4869270D02* +X9938973Y-4903032D01* +X8763365Y-11888599D02* +X9076318Y-12057823D01* +X14285867Y-8852501D02* +X14252105Y-9207760D01* +X14175905Y-7803810D02* +X14074482Y-7465639D01* +X14184445Y-9554470D02* +X14252107Y-9207754D01* +X10446366Y-12379183D02* +X10091245Y-12345282D01* +X7647153Y-6501420D02* +X7596303Y-6560675D01* +X14091429Y-9892785D02* +X13956105Y-10222550D01* +X12899005Y-11228930D02* +X12941174Y-11135912D01* +X13093453Y-11009128D02* +X13000435Y-11059840D01* +X7968515Y-10992180D02* +X8069935Y-10992180D01* +X13465525Y-10958420D02* +X13558543Y-10890758D01* +X11148345Y-12345282D02* +X11495061Y-12269214D01* +X13313381Y-6399994D02* +X13431755Y-6425350D01* +X12899005Y-6061690D02* +X12899005Y-5943310D01* +X8205255Y-6332340D02* +X8112237Y-6383052D01* +X11545768Y-5131375D02* +X11799465Y-5207580D01* +X12915815Y-6205420D02* +X12890459Y-6112402D01* +X11266719Y-4903026D02* +X11309025Y-4911570D01* +X8687295Y-6831326D02* +X8721195Y-6789020D01* +X9676733Y-5097608D02* +X9744395Y-5004590D01* +X10091248Y-12345282D02* +X9744395Y-12286164D01* +X6953584Y-9241520D02* +X7029790Y-9588373D01* +X13778475Y-6822780D02* +X13609389Y-6560677D01* +X12425375Y-6772070D02* +X8780315Y-6772070D01* +X7883900Y-10992186D02* +X7773932Y-10966830D01* +X12941175Y-11135910D02* +X13000430Y-11059842D01* +X11833364Y-12167652D02* +X11495055Y-12269214D01* +X9321615Y-5241340D02* +X8991712Y-5376663D01* +X12822805Y-11626496D02* +X12873516Y-11524934D01* +X8069935Y-10992180D02* +X7968515Y-10992180D01* +X13186465Y-10992180D02* +X13237175Y-10992180D01* +X7012840Y-7837709D02* +X7114264Y-7499400D01* +X11495061Y-12269214D02* +X11148345Y-12345282D01* +X12890465Y-6112400D02* +X12899008Y-6061688D01* +X12797450Y-5740332D02* +X12856705Y-5833350D01* +X6919822Y-8539680D02* +X6919822Y-8894800D01* +X9744395Y-5004590D02* +X9676733Y-5097608D01* +X13135755Y-6400000D02* +X13237175Y-6400000D01* +X12966535Y-6298570D02* +X12915823Y-6205414D01* +X12425369Y-6772066D02* +X12467675Y-6780610D01* +X12890459Y-6112402D02* +X12915815Y-6205420D01* +X8069935Y-10992180D02* +X8162953Y-11034486D01* +X11266715Y-4903030D02* +X10911595Y-4860860D01* +X12899005Y-11228930D02* +X12899005Y-11330490D01* +X13609385Y-10831500D02* +X13795420Y-10535496D01* +X14175902Y-7803807D02* +X14243565Y-8150660D01* +X14243565Y-8150660D02* +X14175902Y-7803807D01* +X7427217Y-10569260D02* +X7596303Y-10831501D01* +X12509983Y-6822780D02* +X12526795Y-6873630D01* +X12509985Y-6822780D02* +X12467678Y-6780612D01* +X12518390Y-10560854D02* +X12476085Y-10603160D01* +X12120829Y-5342901D02* +X12442325Y-5503580D01* +X10446365Y-12379183D02* +X10801625Y-12379183D01* +X8780315Y-10620110D02* +X12425375Y-10620110D01* +X13609385Y-6560680D02* +X13524773Y-6476069D01* +X12163130Y-12040874D02* +X11833365Y-12167653D01* +X11410445Y-4962290D02* +X11309021Y-4911578D01* +X7596303Y-10831501D02* +X7427217Y-10569260D01* +X7249587Y-7178040D02* +X7410267Y-6856680D01* +X9829005Y-4936930D02* +X9744393Y-5004592D01* +X8695845Y-10577805D02* +X8678895Y-10518550D01* +X14091425Y-9892780D02* +X14184443Y-9554471D01* +X8264515Y-6256270D02* +X8205259Y-6332338D01* +X8408245Y-11651852D02* +X8467501Y-11702564D01* +X6919822Y-8894800D02* +X6953584Y-9241516D01* +X13237175Y-10992180D02* +X13355685Y-10992180D01* +X8687296Y-5545884D02* +X8991705Y-5376660D01* +X11799465Y-5207580D02* +X11545768Y-5131375D01* +X9744395Y-12286164D02* +X10091248Y-12345282D01* +X12476085Y-11871788D02* +X12738326Y-11702564D01* +X12899008Y-6061688D02* +X12890465Y-6112400D01* +D11* +D12* +X7158120Y-8717680D02* +X7208120Y-8767680D01* +X7208120Y-8717680D02* +X7158120Y-8767680D01* +X7363860Y-7884560D02* +X7413860Y-7934560D01* +X7413860Y-7884560D02* +X7363860Y-7934560D01* +X7493400Y-7767720D02* +X7543400Y-7817720D01* +X7543400Y-7767720D02* +X7493400Y-7817720D01* +X7493400Y-7991240D02* +X7543400Y-8041240D01* +X7543400Y-7991240D02* +X7493400Y-8041240D01* +X7539120Y-8453520D02* +X7589120Y-8503520D01* +X7589120Y-8453520D02* +X7539120Y-8503520D01* +X7638180Y-6901580D02* +X7688180Y-6951580D01* +X7688180Y-6901580D02* +X7638180Y-6951580D01* +X7639037Y-8456082D02* +X7689037Y-8506082D01* +X7689037Y-8456082D02* +X7639037Y-8506082D01* +X7738988Y-8456058D02* +X7788988Y-8506058D01* +X7788988Y-8456058D02* +X7738988Y-8506058D01* +X7757560Y-8915800D02* +X7807560Y-8965800D01* +X7807560Y-8915800D02* +X7757560Y-8965800D01* +X7818520Y-8390020D02* +X7868520Y-8440020D01* +X7868520Y-8390020D02* +X7818520Y-8440020D01* +X7854080Y-8593880D02* +X7904080Y-8643880D01* +X7904080Y-8593880D02* +X7854080Y-8643880D01* +X7935360Y-7229240D02* +X7985360Y-7279240D01* +X7985360Y-7229240D02* +X7935360Y-7279240D01* +X7965840Y-7849000D02* +X8015840Y-7899000D01* +X8015840Y-7849000D02* +X7965840Y-7899000D01* +X8019559Y-8821441D02* +X8069559Y-8871441D01* +X8069559Y-8821441D02* +X8019559Y-8871441D01* +X8052200Y-8494160D02* +X8102200Y-8544160D01* +X8102200Y-8494160D02* +X8052200Y-8544160D01* +X8082680Y-7247020D02* +X8132680Y-7297020D01* +X8132680Y-7247020D02* +X8082680Y-7297020D01* +X8138560Y-7803280D02* +X8188560Y-7853280D01* +X8188560Y-7803280D02* +X8138560Y-7853280D01* +X8252860Y-7803280D02* +X8302860Y-7853280D01* +X8302860Y-7803280D02* +X8252860Y-7853280D01* +X8382400Y-6883800D02* +X8432400Y-6933800D01* +X8432400Y-6883800D02* +X8382400Y-6933800D01* +X8433200Y-7681360D02* +X8483200Y-7731360D01* +X8483200Y-7681360D02* +X8433200Y-7731360D01* +X8433200Y-8049660D02* +X8483200Y-8099660D01* +X8483200Y-8049660D02* +X8433200Y-8099660D01* +X8496700Y-6883800D02* +X8546700Y-6933800D01* +X8546700Y-6883800D02* +X8496700Y-6933800D01* +X8925960Y-5827160D02* +X8975960Y-5877160D01* +X8975960Y-5827160D02* +X8925960Y-5877160D01* +X9091060Y-6152280D02* +X9141060Y-6202280D01* +X9141060Y-6152280D02* +X9091060Y-6202280D01* +X9421260Y-5959240D02* +X9471260Y-6009240D01* +X9471260Y-5959240D02* +X9421260Y-6009240D01* +X9774320Y-6187840D02* +X9824320Y-6237840D01* +X9824320Y-6187840D02* +X9774320Y-6237840D01* +X10279780Y-5778900D02* +X10329780Y-5828900D01* +X10329780Y-5778900D02* +X10279780Y-5828900D01* +X10394080Y-5791600D02* +X10444080Y-5841600D01* +X10444080Y-5791600D02* +X10394080Y-5841600D01* +X10526160Y-5905900D02* +X10576160Y-5955900D01* +X10576160Y-5905900D02* +X10526160Y-5955900D01* +X10541050Y-5750960D02* +X10591050Y-5800960D01* +X10591050Y-5750960D02* +X10541050Y-5800960D01* +X10688720Y-5822080D02* +X10738720Y-5872080D01* +X10738720Y-5822080D02* +X10688720Y-5872080D01* +X7083660Y-8518880D02* +G75* +G03* +X7083660Y-8518880I-25000J0D01* +G01* +X7083660Y-8618880D02* +G75* +G03* +X7083660Y-8618880I-25000J0D01* +G01* +X7083660Y-8718880D02* +G75* +G03* +X7083660Y-8718880I-25000J0D01* +G01* +X7083660Y-8818880D02* +G75* +G03* +X7083660Y-8818880I-25000J0D01* +G01* +X7083660Y-8918880D02* +G75* +G03* +X7083660Y-8918880I-25000J0D01* +G01* +X7083660Y-9018880D02* +G75* +G03* +X7083660Y-9018880I-25000J0D01* +G01* +X9756000Y-6626000D02* +G75* +G03* +X9756000Y-6626000I-25000J0D01* +G01* +X9975000Y-6550000D02* +G75* +G03* +X9975000Y-6550000I-25000J0D01* +G01* +X10195000Y-6491000D02* +G75* +G03* +X10195000Y-6491000I-25000J0D01* +G01* +X10423000Y-6457000D02* +G75* +G03* +X10423000Y-6457000I-25000J0D01* +G01* +X10652000Y-6449000D02* +G75* +G03* +X10652000Y-6449000I-25000J0D01* +G01* +X10989000Y-6482000D02* +G75* +G03* +X10989000Y-6482000I-25000J0D01* +G01* +X11218000Y-6533000D02* +G75* +G03* +X11218000Y-6533000I-25000J0D01* +G01* +X11429000Y-6609000D02* +G75* +G03* +X11429000Y-6609000I-25000J0D01* +G01* +D13* +X10129000Y-5012000D02* +X10129000Y-5072000D01* +X10099000Y-5042000D02* +X10159000Y-5042000D01* +D11* +X10149000Y-5072000D02* +X10149000Y-5012000D01* +X10109000Y-5072000D02* +X10109000Y-5012000D01* +X10149000Y-5012000D02* +G75* +G03* +X10109000Y-5012000I-20000J0D01* +G01* +X10109000Y-5072000D02* +G75* +G03* +X10149000Y-5072000I20000J0D01* +G01* +D13* +X10129000Y-5430000D02* +X10129000Y-5490000D01* +X10099000Y-5460000D02* +X10159000Y-5460000D01* +D11* +X10149000Y-5515000D02* +X10149000Y-5405000D01* +X10109000Y-5515000D02* +X10109000Y-5405000D01* +X10149000Y-5405000D02* +G75* +G03* +X10109000Y-5405000I-20000J0D01* +G01* +X10109000Y-5515000D02* +G75* +G03* +X10149000Y-5515000I20000J0D01* +G01* +D13* +X10993000Y-5012000D02* +X10993000Y-5072000D01* +X10963000Y-5042000D02* +X11023000Y-5042000D01* +D11* +X11013000Y-5072000D02* +X11013000Y-5012000D01* +X10973000Y-5072000D02* +X10973000Y-5012000D01* +X11013000Y-5012000D02* +G75* +G03* +X10973000Y-5012000I-20000J0D01* +G01* +X10973000Y-5072000D02* +G75* +G03* +X11013000Y-5072000I20000J0D01* +G01* +D13* +X10993000Y-5430000D02* +X10993000Y-5490000D01* +X10963000Y-5460000D02* +X11023000Y-5460000D01* +D11* +X11013000Y-5515000D02* +X11013000Y-5405000D01* +X10973000Y-5515000D02* +X10973000Y-5405000D01* +X11013000Y-5405000D02* +G75* +G03* +X10973000Y-5405000I-20000J0D01* +G01* +X10973000Y-5515000D02* +G75* +G03* +X11013000Y-5515000I20000J0D01* +G01* +D14* +X7795604Y-7577164D02* +X7795604Y-7520595D01* +X7739035Y-7520595D01* +X7739035Y-7577164D01* +X7795604Y-7577164D01* +X8044524Y-8712545D02* +X8044524Y-8655976D01* +X7987955Y-8655976D01* +X7987955Y-8712545D01* +X8044524Y-8712545D01* +X8113104Y-7554304D02* +X8113104Y-7497735D01* +X8056535Y-7497735D01* +X8056535Y-7554304D01* +X8113104Y-7554304D01* +X10208605Y-5763604D02* +X10208605Y-5707035D01* +X10152036Y-5707035D01* +X10152036Y-5763604D01* +X10208605Y-5763604D01* +X10833445Y-6063324D02* +X10833445Y-6006755D01* +X10776876Y-6006755D01* +X10776876Y-6063324D01* +X10833445Y-6063324D01* +X10970605Y-11557344D02* +X10970605Y-11500775D01* +X10914036Y-11500775D01* +X10914036Y-11557344D01* +X10970605Y-11557344D01* +X11275404Y-6230964D02* +X11275404Y-6174395D01* +X11218835Y-6174395D01* +X11218835Y-6230964D01* +X11275404Y-6230964D01* +X11458284Y-5880444D02* +X11458284Y-5823875D01* +X11401715Y-5823875D01* +X11401715Y-5880444D01* +X11458284Y-5880444D01* +X13134684Y-8516965D02* +X13134684Y-8460396D01* +X13078115Y-8460396D01* +X13078115Y-8516965D01* +X13134684Y-8516965D01* +X7676720Y-9700000D02* +X7716720Y-9660000D01* +X7676720Y-9620000D01* +X7636720Y-9660000D01* +X7676720Y-9700000D01* +X8164720Y-9700000D02* +X8204720Y-9660000D01* +X8164720Y-9620000D01* +X8124720Y-9660000D01* +X8164720Y-9700000D01* +D15* +X12710960Y-7173760D02* +X12810960Y-7273760D01* +X12810960Y-7173760D02* +X12710960Y-7273760D01* +X12810960Y-7223760D02* +G75* +G03* +X12810960Y-7223760I-50000J0D01* +G01* +X13285000Y-8906040D02* +X13385000Y-9006040D01* +X13385000Y-8906040D02* +X13285000Y-9006040D01* +X13385000Y-8956040D02* +G75* +G03* +X13385000Y-8956040I-50000J0D01* +G01* +X13813320Y-8906040D02* +X13913320Y-9006040D01* +X13913320Y-8906040D02* +X13813320Y-9006040D01* +X13913320Y-8956040D02* +G75* +G03* +X13913320Y-8956040I-50000J0D01* +G01* +D16* +X10239500Y-5374500D02* +X10304500Y-5439500D01* +X10304500Y-5374500D02* +X10239500Y-5439500D01* +X10272000Y-5374500D02* +X10272000Y-5439500D01* +X10239500Y-5407000D02* +X10304500Y-5407000D01* +X10817500Y-5374500D02* +X10882500Y-5439500D01* +X10882500Y-5374500D02* +X10817500Y-5439500D01* +X10850000Y-5374500D02* +X10850000Y-5439500D01* +X10817500Y-5407000D02* +X10882500Y-5407000D01* +D17* +X8445000Y-6162500D02* +X8765000Y-6482500D01* +X8765000Y-6162500D02* +X8445000Y-6482500D01* +X8718138Y-6435638D02* +X8718138Y-6209362D01* +X8491862Y-6209362D01* +X8491862Y-6435638D01* +X8718138Y-6435638D01* +X8445000Y-10906500D02* +X8765000Y-11226500D01* +X8765000Y-10906500D02* +X8445000Y-11226500D01* +X8718138Y-11179638D02* +X8718138Y-10953362D01* +X8491862Y-10953362D01* +X8491862Y-11179638D01* +X8718138Y-11179638D01* +X12428000Y-6162500D02* +X12748000Y-6482500D01* +X12748000Y-6162500D02* +X12428000Y-6482500D01* +X12701138Y-6435638D02* +X12701138Y-6209362D01* +X12474862Y-6209362D01* +X12474862Y-6435638D01* +X12701138Y-6435638D01* +X12428000Y-10906500D02* +X12748000Y-11226500D01* +X12748000Y-10906500D02* +X12428000Y-11226500D01* +X12701138Y-11179638D02* +X12701138Y-10953362D01* +X12474862Y-10953362D01* +X12474862Y-11179638D01* +X12701138Y-11179638D01* +D11* +X7167441Y-12699659D02* +X7167441Y-12499659D01* +X7215060Y-12499659D01* +X7243632Y-12509183D01* +X7262679Y-12528230D01* +X7272203Y-12547278D01* +X7281727Y-12585373D01* +X7281727Y-12613944D01* +X7272203Y-12652040D01* +X7262679Y-12671087D01* +X7243632Y-12690135D01* +X7215060Y-12699659D01* +X7167441Y-12699659D01* +X7367441Y-12699659D02* +X7367441Y-12566325D01* +X7367441Y-12604421D02* +X7376965Y-12585373D01* +X7386489Y-12575849D01* +X7405536Y-12566325D01* +X7424584Y-12566325D01* +X7491251Y-12699659D02* +X7491251Y-12566325D01* +X7491251Y-12499659D02* +X7481727Y-12509183D01* +X7491251Y-12518706D01* +X7500774Y-12509183D01* +X7491251Y-12499659D01* +X7491251Y-12518706D01* +X7615060Y-12699659D02* +X7596012Y-12690135D01* +X7586489Y-12671087D01* +X7586489Y-12499659D01* +X7719822Y-12699659D02* +X7700774Y-12690135D01* +X7691251Y-12671087D01* +X7691251Y-12499659D01* +X7948393Y-12699659D02* +X7948393Y-12499659D01* +X8015060Y-12642516D01* +X8081727Y-12499659D01* +X8081727Y-12699659D01* +X8262679Y-12699659D02* +X8262679Y-12594897D01* +X8253155Y-12575849D01* +X8234108Y-12566325D01* +X8196012Y-12566325D01* +X8176965Y-12575849D01* +X8262679Y-12690135D02* +X8243632Y-12699659D01* +X8196012Y-12699659D01* +X8176965Y-12690135D01* +X8167441Y-12671087D01* +X8167441Y-12652040D01* +X8176965Y-12632992D01* +X8196012Y-12623468D01* +X8243632Y-12623468D01* +X8262679Y-12613944D01* +X8357917Y-12566325D02* +X8357917Y-12766325D01* +X8357917Y-12575849D02* +X8376965Y-12566325D01* +X8415060Y-12566325D01* +X8434108Y-12575849D01* +X8443632Y-12585373D01* +X8453155Y-12604421D01* +X8453155Y-12661563D01* +X8443632Y-12680611D01* +X8434108Y-12690135D01* +X8415060Y-12699659D01* +X8376965Y-12699659D01* +X8357917Y-12690135D01* +X8538870Y-12680611D02* +X8548394Y-12690135D01* +X8538870Y-12699659D01* +X8529346Y-12690135D01* +X8538870Y-12680611D01* +X8538870Y-12699659D01* +X8538870Y-12575849D02* +X8548394Y-12585373D01* +X8538870Y-12594897D01* +X8529346Y-12585373D01* +X8538870Y-12575849D01* +X8538870Y-12594897D01* +D12* +X6859822Y-13004183D02* +X6909822Y-13054183D01* +X6909822Y-13004183D02* +X6859822Y-13054183D01* +D11* +X7205536Y-12919659D02* +X7224584Y-12919659D01* +X7243632Y-12929183D01* +X7253155Y-12938706D01* +X7262679Y-12957754D01* +X7272203Y-12995849D01* +X7272203Y-13043468D01* +X7262679Y-13081563D01* +X7253155Y-13100611D01* +X7243632Y-13110135D01* +X7224584Y-13119659D01* +X7205536Y-13119659D01* +X7186489Y-13110135D01* +X7176965Y-13100611D01* +X7167441Y-13081563D01* +X7157917Y-13043468D01* +X7157917Y-12995849D01* +X7167441Y-12957754D01* +X7176965Y-12938706D01* +X7186489Y-12929183D01* +X7205536Y-12919659D01* +X7357917Y-13100611D02* +X7367441Y-13110135D01* +X7357917Y-13119659D01* +X7348393Y-13110135D01* +X7357917Y-13100611D01* +X7357917Y-13119659D01* +X7548393Y-12919659D02* +X7453155Y-12919659D01* +X7443632Y-13014897D01* +X7453155Y-13005373D01* +X7472203Y-12995849D01* +X7519822Y-12995849D01* +X7538870Y-13005373D01* +X7548393Y-13014897D01* +X7557917Y-13033944D01* +X7557917Y-13081563D01* +X7548393Y-13100611D01* +X7538870Y-13110135D01* +X7519822Y-13119659D01* +X7472203Y-13119659D01* +X7453155Y-13110135D01* +X7443632Y-13100611D01* +X7681727Y-12919659D02* +X7700774Y-12919659D01* +X7719822Y-12929183D01* +X7729346Y-12938706D01* +X7738870Y-12957754D01* +X7748393Y-12995849D01* +X7748393Y-13043468D01* +X7738870Y-13081563D01* +X7729346Y-13100611D01* +X7719822Y-13110135D01* +X7700774Y-13119659D01* +X7681727Y-13119659D01* +X7662679Y-13110135D01* +X7653155Y-13100611D01* +X7643632Y-13081563D01* +X7634108Y-13043468D01* +X7634108Y-12995849D01* +X7643632Y-12957754D01* +X7653155Y-12938706D01* +X7662679Y-12929183D01* +X7681727Y-12919659D01* +X7872203Y-12919659D02* +X7891251Y-12919659D01* +X7910298Y-12929183D01* +X7919822Y-12938706D01* +X7929346Y-12957754D01* +X7938870Y-12995849D01* +X7938870Y-13043468D01* +X7929346Y-13081563D01* +X7919822Y-13100611D01* +X7910298Y-13110135D01* +X7891251Y-13119659D01* +X7872203Y-13119659D01* +X7853155Y-13110135D01* +X7843632Y-13100611D01* +X7834108Y-13081563D01* +X7824584Y-13043468D01* +X7824584Y-12995849D01* +X7834108Y-12957754D01* +X7843632Y-12938706D01* +X7853155Y-12929183D01* +X7872203Y-12919659D01* +X8024584Y-13119659D02* +X8024584Y-12986325D01* +X8024584Y-13005373D02* +X8034108Y-12995849D01* +X8053155Y-12986325D01* +X8081727Y-12986325D01* +X8100774Y-12995849D01* +X8110298Y-13014897D01* +X8110298Y-13119659D01* +X8110298Y-13014897D02* +X8119822Y-12995849D01* +X8138870Y-12986325D01* +X8167441Y-12986325D01* +X8186489Y-12995849D01* +X8196012Y-13014897D01* +X8196012Y-13119659D01* +X8291251Y-13119659D02* +X8291251Y-12986325D01* +X8291251Y-13005373D02* +X8300774Y-12995849D01* +X8319822Y-12986325D01* +X8348393Y-12986325D01* +X8367441Y-12995849D01* +X8376965Y-13014897D01* +X8376965Y-13119659D01* +X8376965Y-13014897D02* +X8386489Y-12995849D01* +X8405536Y-12986325D01* +X8434108Y-12986325D01* +X8453155Y-12995849D01* +X8462679Y-13014897D01* +X8462679Y-13119659D01* +X8853155Y-12910135D02* +X8681727Y-13167278D01* +X9110298Y-12919659D02* +X9129346Y-12919659D01* +X9148394Y-12929183D01* +X9157917Y-12938706D01* +X9167441Y-12957754D01* +X9176965Y-12995849D01* +X9176965Y-13043468D01* +X9167441Y-13081563D01* +X9157917Y-13100611D01* +X9148394Y-13110135D01* +X9129346Y-13119659D01* +X9110298Y-13119659D01* +X9091251Y-13110135D01* +X9081727Y-13100611D01* +X9072203Y-13081563D01* +X9062679Y-13043468D01* +X9062679Y-12995849D01* +X9072203Y-12957754D01* +X9081727Y-12938706D01* +X9091251Y-12929183D01* +X9110298Y-12919659D01* +X9262679Y-13100611D02* +X9272203Y-13110135D01* +X9262679Y-13119659D01* +X9253155Y-13110135D01* +X9262679Y-13100611D01* +X9262679Y-13119659D01* +X9396013Y-12919659D02* +X9415060Y-12919659D01* +X9434108Y-12929183D01* +X9443632Y-12938706D01* +X9453155Y-12957754D01* +X9462679Y-12995849D01* +X9462679Y-13043468D01* +X9453155Y-13081563D01* +X9443632Y-13100611D01* +X9434108Y-13110135D01* +X9415060Y-13119659D01* +X9396013Y-13119659D01* +X9376965Y-13110135D01* +X9367441Y-13100611D01* +X9357917Y-13081563D01* +X9348394Y-13043468D01* +X9348394Y-12995849D01* +X9357917Y-12957754D01* +X9367441Y-12938706D01* +X9376965Y-12929183D01* +X9396013Y-12919659D01* +X9653155Y-13119659D02* +X9538870Y-13119659D01* +X9596013Y-13119659D02* +X9596013Y-12919659D01* +X9576965Y-12948230D01* +X9557917Y-12967278D01* +X9538870Y-12976802D01* +X9748394Y-13119659D02* +X9786489Y-13119659D01* +X9805536Y-13110135D01* +X9815060Y-13100611D01* +X9834108Y-13072040D01* +X9843632Y-13033944D01* +X9843632Y-12957754D01* +X9834108Y-12938706D01* +X9824584Y-12929183D01* +X9805536Y-12919659D01* +X9767441Y-12919659D01* +X9748394Y-12929183D01* +X9738870Y-12938706D01* +X9729346Y-12957754D01* +X9729346Y-13005373D01* +X9738870Y-13024421D01* +X9748394Y-13033944D01* +X9767441Y-13043468D01* +X9805536Y-13043468D01* +X9824584Y-13033944D01* +X9834108Y-13024421D01* +X9843632Y-13005373D01* +X9910298Y-12919659D02* +X10043632Y-12919659D01* +X9957917Y-13119659D01* +X10110298Y-12919659D02* +X10110298Y-12957754D01* +X10186489Y-12919659D02* +X10186489Y-12957754D01* +X10481727Y-13195849D02* +X10472203Y-13186325D01* +X10453155Y-13157754D01* +X10443632Y-13138706D01* +X10434108Y-13110135D01* +X10424584Y-13062516D01* +X10424584Y-13024421D01* +X10434108Y-12976802D01* +X10443632Y-12948230D01* +X10453155Y-12929183D01* +X10472203Y-12900611D01* +X10481727Y-12891087D01* +X10538870Y-12919659D02* +X10662679Y-12919659D01* +X10596013Y-12995849D01* +X10624584Y-12995849D01* +X10643632Y-13005373D01* +X10653155Y-13014897D01* +X10662679Y-13033944D01* +X10662679Y-13081563D01* +X10653155Y-13100611D01* +X10643632Y-13110135D01* +X10624584Y-13119659D01* +X10567441Y-13119659D01* +X10548394Y-13110135D01* +X10538870Y-13100611D01* +X10853155Y-13119659D02* +X10738870Y-13119659D01* +X10796013Y-13119659D02* +X10796013Y-12919659D01* +X10776965Y-12948230D01* +X10757917Y-12967278D01* +X10738870Y-12976802D01* +X11091251Y-13119659D02* +X11091251Y-12919659D01* +X11176965Y-13119659D02* +X11176965Y-13014897D01* +X11167441Y-12995849D01* +X11148394Y-12986325D01* +X11119822Y-12986325D01* +X11100774Y-12995849D01* +X11091251Y-13005373D01* +X11300774Y-13119659D02* +X11281727Y-13110135D01* +X11272203Y-13100611D01* +X11262679Y-13081563D01* +X11262679Y-13024421D01* +X11272203Y-13005373D01* +X11281727Y-12995849D01* +X11300774Y-12986325D01* +X11329346Y-12986325D01* +X11348393Y-12995849D01* +X11357917Y-13005373D01* +X11367441Y-13024421D01* +X11367441Y-13081563D01* +X11357917Y-13100611D01* +X11348393Y-13110135D01* +X11329346Y-13119659D01* +X11300774Y-13119659D01* +X11481727Y-13119659D02* +X11462679Y-13110135D01* +X11453155Y-13091087D01* +X11453155Y-12919659D01* +X11634108Y-13110135D02* +X11615060Y-13119659D01* +X11576965Y-13119659D01* +X11557917Y-13110135D01* +X11548393Y-13091087D01* +X11548393Y-13014897D01* +X11557917Y-12995849D01* +X11576965Y-12986325D01* +X11615060Y-12986325D01* +X11634108Y-12995849D01* +X11643632Y-13014897D01* +X11643632Y-13033944D01* +X11548393Y-13052992D01* +X11719822Y-13110135D02* +X11738870Y-13119659D01* +X11776965Y-13119659D01* +X11796012Y-13110135D01* +X11805536Y-13091087D01* +X11805536Y-13081563D01* +X11796012Y-13062516D01* +X11776965Y-13052992D01* +X11748393Y-13052992D01* +X11729346Y-13043468D01* +X11719822Y-13024421D01* +X11719822Y-13014897D01* +X11729346Y-12995849D01* +X11748393Y-12986325D01* +X11776965Y-12986325D01* +X11796012Y-12995849D01* +X11872203Y-13195849D02* +X11881727Y-13186325D01* +X11900774Y-13157754D01* +X11910298Y-13138706D01* +X11919822Y-13110135D01* +X11929346Y-13062516D01* +X11929346Y-13024421D01* +X11919822Y-12976802D01* +X11910298Y-12948230D01* +X11900774Y-12929183D01* +X11881727Y-12900611D01* +X11872203Y-12891087D01* +D12* +X6909822Y-13293183D02* +G75* +G03* +X6909822Y-13293183I-25000J0D01* +G01* +D11* +X7205536Y-13183659D02* +X7224584Y-13183659D01* +X7243632Y-13193183D01* +X7253155Y-13202706D01* +X7262679Y-13221754D01* +X7272203Y-13259849D01* +X7272203Y-13307468D01* +X7262679Y-13345563D01* +X7253155Y-13364611D01* +X7243632Y-13374135D01* +X7224584Y-13383659D01* +X7205536Y-13383659D01* +X7186489Y-13374135D01* +X7176965Y-13364611D01* +X7167441Y-13345563D01* +X7157917Y-13307468D01* +X7157917Y-13259849D01* +X7167441Y-13221754D01* +X7176965Y-13202706D01* +X7186489Y-13193183D01* +X7205536Y-13183659D01* +X7357917Y-13364611D02* +X7367441Y-13374135D01* +X7357917Y-13383659D01* +X7348393Y-13374135D01* +X7357917Y-13364611D01* +X7357917Y-13383659D01* +X7548393Y-13183659D02* +X7453155Y-13183659D01* +X7443632Y-13278897D01* +X7453155Y-13269373D01* +X7472203Y-13259849D01* +X7519822Y-13259849D01* +X7538870Y-13269373D01* +X7548393Y-13278897D01* +X7557917Y-13297944D01* +X7557917Y-13345563D01* +X7548393Y-13364611D01* +X7538870Y-13374135D01* +X7519822Y-13383659D01* +X7472203Y-13383659D01* +X7453155Y-13374135D01* +X7443632Y-13364611D01* +X7681727Y-13183659D02* +X7700774Y-13183659D01* +X7719822Y-13193183D01* +X7729346Y-13202706D01* +X7738870Y-13221754D01* +X7748393Y-13259849D01* +X7748393Y-13307468D01* +X7738870Y-13345563D01* +X7729346Y-13364611D01* +X7719822Y-13374135D01* +X7700774Y-13383659D01* +X7681727Y-13383659D01* +X7662679Y-13374135D01* +X7653155Y-13364611D01* +X7643632Y-13345563D01* +X7634108Y-13307468D01* +X7634108Y-13259849D01* +X7643632Y-13221754D01* +X7653155Y-13202706D01* +X7662679Y-13193183D01* +X7681727Y-13183659D01* +X7872203Y-13183659D02* +X7891251Y-13183659D01* +X7910298Y-13193183D01* +X7919822Y-13202706D01* +X7929346Y-13221754D01* +X7938870Y-13259849D01* +X7938870Y-13307468D01* +X7929346Y-13345563D01* +X7919822Y-13364611D01* +X7910298Y-13374135D01* +X7891251Y-13383659D01* +X7872203Y-13383659D01* +X7853155Y-13374135D01* +X7843632Y-13364611D01* +X7834108Y-13345563D01* +X7824584Y-13307468D01* +X7824584Y-13259849D01* +X7834108Y-13221754D01* +X7843632Y-13202706D01* +X7853155Y-13193183D01* +X7872203Y-13183659D01* +X8024584Y-13383659D02* +X8024584Y-13250325D01* +X8024584Y-13269373D02* +X8034108Y-13259849D01* +X8053155Y-13250325D01* +X8081727Y-13250325D01* +X8100774Y-13259849D01* +X8110298Y-13278897D01* +X8110298Y-13383659D01* +X8110298Y-13278897D02* +X8119822Y-13259849D01* +X8138870Y-13250325D01* +X8167441Y-13250325D01* +X8186489Y-13259849D01* +X8196012Y-13278897D01* +X8196012Y-13383659D01* +X8291251Y-13383659D02* +X8291251Y-13250325D01* +X8291251Y-13269373D02* +X8300774Y-13259849D01* +X8319822Y-13250325D01* +X8348393Y-13250325D01* +X8367441Y-13259849D01* +X8376965Y-13278897D01* +X8376965Y-13383659D01* +X8376965Y-13278897D02* +X8386489Y-13259849D01* +X8405536Y-13250325D01* +X8434108Y-13250325D01* +X8453155Y-13259849D01* +X8462679Y-13278897D01* +X8462679Y-13383659D01* +X8853155Y-13174135D02* +X8681727Y-13431278D01* +X9110298Y-13183659D02* +X9129346Y-13183659D01* +X9148394Y-13193183D01* +X9157917Y-13202706D01* +X9167441Y-13221754D01* +X9176965Y-13259849D01* +X9176965Y-13307468D01* +X9167441Y-13345563D01* +X9157917Y-13364611D01* +X9148394Y-13374135D01* +X9129346Y-13383659D01* +X9110298Y-13383659D01* +X9091251Y-13374135D01* +X9081727Y-13364611D01* +X9072203Y-13345563D01* +X9062679Y-13307468D01* +X9062679Y-13259849D01* +X9072203Y-13221754D01* +X9081727Y-13202706D01* +X9091251Y-13193183D01* +X9110298Y-13183659D01* +X9262679Y-13364611D02* +X9272203Y-13374135D01* +X9262679Y-13383659D01* +X9253155Y-13374135D01* +X9262679Y-13364611D01* +X9262679Y-13383659D01* +X9396013Y-13183659D02* +X9415060Y-13183659D01* +X9434108Y-13193183D01* +X9443632Y-13202706D01* +X9453155Y-13221754D01* +X9462679Y-13259849D01* +X9462679Y-13307468D01* +X9453155Y-13345563D01* +X9443632Y-13364611D01* +X9434108Y-13374135D01* +X9415060Y-13383659D01* +X9396013Y-13383659D01* +X9376965Y-13374135D01* +X9367441Y-13364611D01* +X9357917Y-13345563D01* +X9348394Y-13307468D01* +X9348394Y-13259849D01* +X9357917Y-13221754D01* +X9367441Y-13202706D01* +X9376965Y-13193183D01* +X9396013Y-13183659D01* +X9653155Y-13383659D02* +X9538870Y-13383659D01* +X9596013Y-13383659D02* +X9596013Y-13183659D01* +X9576965Y-13212230D01* +X9557917Y-13231278D01* +X9538870Y-13240802D01* +X9748394Y-13383659D02* +X9786489Y-13383659D01* +X9805536Y-13374135D01* +X9815060Y-13364611D01* +X9834108Y-13336040D01* +X9843632Y-13297944D01* +X9843632Y-13221754D01* +X9834108Y-13202706D01* +X9824584Y-13193183D01* +X9805536Y-13183659D01* +X9767441Y-13183659D01* +X9748394Y-13193183D01* +X9738870Y-13202706D01* +X9729346Y-13221754D01* +X9729346Y-13269373D01* +X9738870Y-13288421D01* +X9748394Y-13297944D01* +X9767441Y-13307468D01* +X9805536Y-13307468D01* +X9824584Y-13297944D01* +X9834108Y-13288421D01* +X9843632Y-13269373D01* +X9910298Y-13183659D02* +X10043632Y-13183659D01* +X9957917Y-13383659D01* +X10110298Y-13183659D02* +X10110298Y-13221754D01* +X10186489Y-13183659D02* +X10186489Y-13221754D01* +X10481727Y-13459849D02* +X10472203Y-13450325D01* +X10453155Y-13421754D01* +X10443632Y-13402706D01* +X10434108Y-13374135D01* +X10424584Y-13326516D01* +X10424584Y-13288421D01* +X10434108Y-13240802D01* +X10443632Y-13212230D01* +X10453155Y-13193183D01* +X10472203Y-13164611D01* +X10481727Y-13155087D01* +X10662679Y-13383659D02* +X10548394Y-13383659D01* +X10605536Y-13383659D02* +X10605536Y-13183659D01* +X10586489Y-13212230D01* +X10567441Y-13231278D01* +X10548394Y-13240802D01* +X10834108Y-13250325D02* +X10834108Y-13383659D01* +X10786489Y-13174135D02* +X10738870Y-13316992D01* +X10862679Y-13316992D01* +X11091251Y-13383659D02* +X11091251Y-13183659D01* +X11176965Y-13383659D02* +X11176965Y-13278897D01* +X11167441Y-13259849D01* +X11148394Y-13250325D01* +X11119822Y-13250325D01* +X11100774Y-13259849D01* +X11091251Y-13269373D01* +X11300774Y-13383659D02* +X11281727Y-13374135D01* +X11272203Y-13364611D01* +X11262679Y-13345563D01* +X11262679Y-13288421D01* +X11272203Y-13269373D01* +X11281727Y-13259849D01* +X11300774Y-13250325D01* +X11329346Y-13250325D01* +X11348393Y-13259849D01* +X11357917Y-13269373D01* +X11367441Y-13288421D01* +X11367441Y-13345563D01* +X11357917Y-13364611D01* +X11348393Y-13374135D01* +X11329346Y-13383659D01* +X11300774Y-13383659D01* +X11481727Y-13383659D02* +X11462679Y-13374135D01* +X11453155Y-13355087D01* +X11453155Y-13183659D01* +X11634108Y-13374135D02* +X11615060Y-13383659D01* +X11576965Y-13383659D01* +X11557917Y-13374135D01* +X11548393Y-13355087D01* +X11548393Y-13278897D01* +X11557917Y-13259849D01* +X11576965Y-13250325D01* +X11615060Y-13250325D01* +X11634108Y-13259849D01* +X11643632Y-13278897D01* +X11643632Y-13297944D01* +X11548393Y-13316992D01* +X11719822Y-13374135D02* +X11738870Y-13383659D01* +X11776965Y-13383659D01* +X11796012Y-13374135D01* +X11805536Y-13355087D01* +X11805536Y-13345563D01* +X11796012Y-13326516D01* +X11776965Y-13316992D01* +X11748393Y-13316992D01* +X11729346Y-13307468D01* +X11719822Y-13288421D01* +X11719822Y-13278897D01* +X11729346Y-13259849D01* +X11748393Y-13250325D01* +X11776965Y-13250325D01* +X11796012Y-13259849D01* +X11872203Y-13459849D02* +X11881727Y-13450325D01* +X11900774Y-13421754D01* +X11910298Y-13402706D01* +X11919822Y-13374135D01* +X11929346Y-13326516D01* +X11929346Y-13288421D01* +X11919822Y-13240802D01* +X11910298Y-13212230D01* +X11900774Y-13193183D01* +X11881727Y-13164611D01* +X11872203Y-13155087D01* +D13* +X6879822Y-13527183D02* +X6879822Y-13587183D01* +X6849822Y-13557183D02* +X6909822Y-13557183D01* +D11* +X7205536Y-13447659D02* +X7224584Y-13447659D01* +X7243632Y-13457183D01* +X7253155Y-13466706D01* +X7262679Y-13485754D01* +X7272203Y-13523849D01* +X7272203Y-13571468D01* +X7262679Y-13609563D01* +X7253155Y-13628611D01* +X7243632Y-13638135D01* +X7224584Y-13647659D01* +X7205536Y-13647659D01* +X7186489Y-13638135D01* +X7176965Y-13628611D01* +X7167441Y-13609563D01* +X7157917Y-13571468D01* +X7157917Y-13523849D01* +X7167441Y-13485754D01* +X7176965Y-13466706D01* +X7186489Y-13457183D01* +X7205536Y-13447659D01* +X7357917Y-13628611D02* +X7367441Y-13638135D01* +X7357917Y-13647659D01* +X7348393Y-13638135D01* +X7357917Y-13628611D01* +X7357917Y-13647659D01* +X7538870Y-13447659D02* +X7500774Y-13447659D01* +X7481727Y-13457183D01* +X7472203Y-13466706D01* +X7453155Y-13495278D01* +X7443632Y-13533373D01* +X7443632Y-13609563D01* +X7453155Y-13628611D01* +X7462679Y-13638135D01* +X7481727Y-13647659D01* +X7519822Y-13647659D01* +X7538870Y-13638135D01* +X7548393Y-13628611D01* +X7557917Y-13609563D01* +X7557917Y-13561944D01* +X7548393Y-13542897D01* +X7538870Y-13533373D01* +X7519822Y-13523849D01* +X7481727Y-13523849D01* +X7462679Y-13533373D01* +X7453155Y-13542897D01* +X7443632Y-13561944D01* +X7681727Y-13447659D02* +X7700774Y-13447659D01* +X7719822Y-13457183D01* +X7729346Y-13466706D01* +X7738870Y-13485754D01* +X7748393Y-13523849D01* +X7748393Y-13571468D01* +X7738870Y-13609563D01* +X7729346Y-13628611D01* +X7719822Y-13638135D01* +X7700774Y-13647659D01* +X7681727Y-13647659D01* +X7662679Y-13638135D01* +X7653155Y-13628611D01* +X7643632Y-13609563D01* +X7634108Y-13571468D01* +X7634108Y-13523849D01* +X7643632Y-13485754D01* +X7653155Y-13466706D01* +X7662679Y-13457183D01* +X7681727Y-13447659D01* +X7872203Y-13447659D02* +X7891251Y-13447659D01* +X7910298Y-13457183D01* +X7919822Y-13466706D01* +X7929346Y-13485754D01* +X7938870Y-13523849D01* +X7938870Y-13571468D01* +X7929346Y-13609563D01* +X7919822Y-13628611D01* +X7910298Y-13638135D01* +X7891251Y-13647659D01* +X7872203Y-13647659D01* +X7853155Y-13638135D01* +X7843632Y-13628611D01* +X7834108Y-13609563D01* +X7824584Y-13571468D01* +X7824584Y-13523849D01* +X7834108Y-13485754D01* +X7843632Y-13466706D01* +X7853155Y-13457183D01* +X7872203Y-13447659D01* +X8024584Y-13647659D02* +X8024584Y-13514325D01* +X8024584Y-13533373D02* +X8034108Y-13523849D01* +X8053155Y-13514325D01* +X8081727Y-13514325D01* +X8100774Y-13523849D01* +X8110298Y-13542897D01* +X8110298Y-13647659D01* +X8110298Y-13542897D02* +X8119822Y-13523849D01* +X8138870Y-13514325D01* +X8167441Y-13514325D01* +X8186489Y-13523849D01* +X8196012Y-13542897D01* +X8196012Y-13647659D01* +X8291251Y-13647659D02* +X8291251Y-13514325D01* +X8291251Y-13533373D02* +X8300774Y-13523849D01* +X8319822Y-13514325D01* +X8348393Y-13514325D01* +X8367441Y-13523849D01* +X8376965Y-13542897D01* +X8376965Y-13647659D01* +X8376965Y-13542897D02* +X8386489Y-13523849D01* +X8405536Y-13514325D01* +X8434108Y-13514325D01* +X8453155Y-13523849D01* +X8462679Y-13542897D01* +X8462679Y-13647659D01* +X8853155Y-13438135D02* +X8681727Y-13695278D01* +X9110298Y-13447659D02* +X9129346Y-13447659D01* +X9148394Y-13457183D01* +X9157917Y-13466706D01* +X9167441Y-13485754D01* +X9176965Y-13523849D01* +X9176965Y-13571468D01* +X9167441Y-13609563D01* +X9157917Y-13628611D01* +X9148394Y-13638135D01* +X9129346Y-13647659D01* +X9110298Y-13647659D01* +X9091251Y-13638135D01* +X9081727Y-13628611D01* +X9072203Y-13609563D01* +X9062679Y-13571468D01* +X9062679Y-13523849D01* +X9072203Y-13485754D01* +X9081727Y-13466706D01* +X9091251Y-13457183D01* +X9110298Y-13447659D01* +X9262679Y-13628611D02* +X9272203Y-13638135D01* +X9262679Y-13647659D01* +X9253155Y-13638135D01* +X9262679Y-13628611D01* +X9262679Y-13647659D01* +X9396013Y-13447659D02* +X9415060Y-13447659D01* +X9434108Y-13457183D01* +X9443632Y-13466706D01* +X9453155Y-13485754D01* +X9462679Y-13523849D01* +X9462679Y-13571468D01* +X9453155Y-13609563D01* +X9443632Y-13628611D01* +X9434108Y-13638135D01* +X9415060Y-13647659D01* +X9396013Y-13647659D01* +X9376965Y-13638135D01* +X9367441Y-13628611D01* +X9357917Y-13609563D01* +X9348394Y-13571468D01* +X9348394Y-13523849D01* +X9357917Y-13485754D01* +X9367441Y-13466706D01* +X9376965Y-13457183D01* +X9396013Y-13447659D01* +X9538870Y-13466706D02* +X9548394Y-13457183D01* +X9567441Y-13447659D01* +X9615060Y-13447659D01* +X9634108Y-13457183D01* +X9643632Y-13466706D01* +X9653155Y-13485754D01* +X9653155Y-13504802D01* +X9643632Y-13533373D01* +X9529346Y-13647659D01* +X9653155Y-13647659D01* +X9719822Y-13447659D02* +X9843632Y-13447659D01* +X9776965Y-13523849D01* +X9805536Y-13523849D01* +X9824584Y-13533373D01* +X9834108Y-13542897D01* +X9843632Y-13561944D01* +X9843632Y-13609563D01* +X9834108Y-13628611D01* +X9824584Y-13638135D01* +X9805536Y-13647659D01* +X9748394Y-13647659D01* +X9729346Y-13638135D01* +X9719822Y-13628611D01* +X10015060Y-13447659D02* +X9976965Y-13447659D01* +X9957917Y-13457183D01* +X9948394Y-13466706D01* +X9929346Y-13495278D01* +X9919822Y-13533373D01* +X9919822Y-13609563D01* +X9929346Y-13628611D01* +X9938870Y-13638135D01* +X9957917Y-13647659D01* +X9996013Y-13647659D01* +X10015060Y-13638135D01* +X10024584Y-13628611D01* +X10034108Y-13609563D01* +X10034108Y-13561944D01* +X10024584Y-13542897D01* +X10015060Y-13533373D01* +X9996013Y-13523849D01* +X9957917Y-13523849D01* +X9938870Y-13533373D01* +X9929346Y-13542897D01* +X9919822Y-13561944D01* +X10110298Y-13447659D02* +X10110298Y-13485754D01* +X10186489Y-13447659D02* +X10186489Y-13485754D01* +X10481727Y-13723849D02* +X10472203Y-13714325D01* +X10453155Y-13685754D01* +X10443632Y-13666706D01* +X10434108Y-13638135D01* +X10424584Y-13590516D01* +X10424584Y-13552421D01* +X10434108Y-13504802D01* +X10443632Y-13476230D01* +X10453155Y-13457183D01* +X10472203Y-13428611D01* +X10481727Y-13419087D01* +X10596013Y-13447659D02* +X10615060Y-13447659D01* +X10634108Y-13457183D01* +X10643632Y-13466706D01* +X10653155Y-13485754D01* +X10662679Y-13523849D01* +X10662679Y-13571468D01* +X10653155Y-13609563D01* +X10643632Y-13628611D01* +X10634108Y-13638135D01* +X10615060Y-13647659D01* +X10596013Y-13647659D01* +X10576965Y-13638135D01* +X10567441Y-13628611D01* +X10557917Y-13609563D01* +X10548394Y-13571468D01* +X10548394Y-13523849D01* +X10557917Y-13485754D01* +X10567441Y-13466706D01* +X10576965Y-13457183D01* +X10596013Y-13447659D01* +X10900774Y-13647659D02* +X10900774Y-13447659D01* +X10986489Y-13647659D02* +X10986489Y-13542897D01* +X10976965Y-13523849D01* +X10957917Y-13514325D01* +X10929346Y-13514325D01* +X10910298Y-13523849D01* +X10900774Y-13533373D01* +X11110298Y-13647659D02* +X11091251Y-13638135D01* +X11081727Y-13628611D01* +X11072203Y-13609563D01* +X11072203Y-13552421D01* +X11081727Y-13533373D01* +X11091251Y-13523849D01* +X11110298Y-13514325D01* +X11138870Y-13514325D01* +X11157917Y-13523849D01* +X11167441Y-13533373D01* +X11176965Y-13552421D01* +X11176965Y-13609563D01* +X11167441Y-13628611D01* +X11157917Y-13638135D01* +X11138870Y-13647659D01* +X11110298Y-13647659D01* +X11291251Y-13647659D02* +X11272203Y-13638135D01* +X11262679Y-13619087D01* +X11262679Y-13447659D01* +X11443632Y-13638135D02* +X11424584Y-13647659D01* +X11386489Y-13647659D01* +X11367441Y-13638135D01* +X11357917Y-13619087D01* +X11357917Y-13542897D01* +X11367441Y-13523849D01* +X11386489Y-13514325D01* +X11424584Y-13514325D01* +X11443632Y-13523849D01* +X11453155Y-13542897D01* +X11453155Y-13561944D01* +X11357917Y-13580992D01* +X11529346Y-13638135D02* +X11548393Y-13647659D01* +X11586489Y-13647659D01* +X11605536Y-13638135D01* +X11615060Y-13619087D01* +X11615060Y-13609563D01* +X11605536Y-13590516D01* +X11586489Y-13580992D01* +X11557917Y-13580992D01* +X11538870Y-13571468D01* +X11529346Y-13552421D01* +X11529346Y-13542897D01* +X11538870Y-13523849D01* +X11557917Y-13514325D01* +X11586489Y-13514325D01* +X11605536Y-13523849D01* +X11853155Y-13571468D02* +X12005536Y-13571468D01* +X11929346Y-13647659D02* +X11929346Y-13495278D01* +X12338870Y-13514325D02* +X12338870Y-13647659D01* +X12291251Y-13438135D02* +X12243632Y-13580992D01* +X12367441Y-13580992D01* +X12586489Y-13638135D02* +X12605536Y-13647659D01* +X12643632Y-13647659D01* +X12662679Y-13638135D01* +X12672203Y-13619087D01* +X12672203Y-13609563D01* +X12662679Y-13590516D01* +X12643632Y-13580992D01* +X12615060Y-13580992D01* +X12596012Y-13571468D01* +X12586489Y-13552421D01* +X12586489Y-13542897D01* +X12596012Y-13523849D01* +X12615060Y-13514325D01* +X12643632Y-13514325D01* +X12662679Y-13523849D01* +X12786489Y-13647659D02* +X12767441Y-13638135D01* +X12757917Y-13619087D01* +X12757917Y-13447659D01* +X12891251Y-13647659D02* +X12872203Y-13638135D01* +X12862679Y-13628611D01* +X12853155Y-13609563D01* +X12853155Y-13552421D01* +X12862679Y-13533373D01* +X12872203Y-13523849D01* +X12891251Y-13514325D01* +X12919822Y-13514325D01* +X12938870Y-13523849D01* +X12948393Y-13533373D01* +X12957917Y-13552421D01* +X12957917Y-13609563D01* +X12948393Y-13628611D01* +X12938870Y-13638135D01* +X12919822Y-13647659D01* +X12891251Y-13647659D01* +X13015060Y-13514325D02* +X13091251Y-13514325D01* +X13043632Y-13447659D02* +X13043632Y-13619087D01* +X13053155Y-13638135D01* +X13072203Y-13647659D01* +X13091251Y-13647659D01* +X13148393Y-13638135D02* +X13167441Y-13647659D01* +X13205536Y-13647659D01* +X13224584Y-13638135D01* +X13234108Y-13619087D01* +X13234108Y-13609563D01* +X13224584Y-13590516D01* +X13205536Y-13580992D01* +X13176965Y-13580992D01* +X13157917Y-13571468D01* +X13148393Y-13552421D01* +X13148393Y-13542897D01* +X13157917Y-13523849D01* +X13176965Y-13514325D01* +X13205536Y-13514325D01* +X13224584Y-13523849D01* +X13300774Y-13723849D02* +X13310298Y-13714325D01* +X13329346Y-13685754D01* +X13338870Y-13666706D01* +X13348393Y-13638135D01* +X13357917Y-13590516D01* +X13357917Y-13552421D01* +X13348393Y-13504802D01* +X13338870Y-13476230D01* +X13329346Y-13457183D01* +X13310298Y-13428611D01* +X13300774Y-13419087D01* +D14* +X6898107Y-13849467D02* +X6898107Y-13792898D01* +X6841538Y-13792898D01* +X6841538Y-13849467D01* +X6898107Y-13849467D01* +D11* +X7205536Y-13711659D02* +X7224584Y-13711659D01* +X7243632Y-13721183D01* +X7253155Y-13730706D01* +X7262679Y-13749754D01* +X7272203Y-13787849D01* +X7272203Y-13835468D01* +X7262679Y-13873563D01* +X7253155Y-13892611D01* +X7243632Y-13902135D01* +X7224584Y-13911659D01* +X7205536Y-13911659D01* +X7186489Y-13902135D01* +X7176965Y-13892611D01* +X7167441Y-13873563D01* +X7157917Y-13835468D01* +X7157917Y-13787849D01* +X7167441Y-13749754D01* +X7176965Y-13730706D01* +X7186489Y-13721183D01* +X7205536Y-13711659D01* +X7357917Y-13892611D02* +X7367441Y-13902135D01* +X7357917Y-13911659D01* +X7348393Y-13902135D01* +X7357917Y-13892611D01* +X7357917Y-13911659D01* +X7481727Y-13797373D02* +X7462679Y-13787849D01* +X7453155Y-13778325D01* +X7443632Y-13759278D01* +X7443632Y-13749754D01* +X7453155Y-13730706D01* +X7462679Y-13721183D01* +X7481727Y-13711659D01* +X7519822Y-13711659D01* +X7538870Y-13721183D01* +X7548393Y-13730706D01* +X7557917Y-13749754D01* +X7557917Y-13759278D01* +X7548393Y-13778325D01* +X7538870Y-13787849D01* +X7519822Y-13797373D01* +X7481727Y-13797373D01* +X7462679Y-13806897D01* +X7453155Y-13816421D01* +X7443632Y-13835468D01* +X7443632Y-13873563D01* +X7453155Y-13892611D01* +X7462679Y-13902135D01* +X7481727Y-13911659D01* +X7519822Y-13911659D01* +X7538870Y-13902135D01* +X7548393Y-13892611D01* +X7557917Y-13873563D01* +X7557917Y-13835468D01* +X7548393Y-13816421D01* +X7538870Y-13806897D01* +X7519822Y-13797373D01* +X7681727Y-13711659D02* +X7700774Y-13711659D01* +X7719822Y-13721183D01* +X7729346Y-13730706D01* +X7738870Y-13749754D01* +X7748393Y-13787849D01* +X7748393Y-13835468D01* +X7738870Y-13873563D01* +X7729346Y-13892611D01* +X7719822Y-13902135D01* +X7700774Y-13911659D01* +X7681727Y-13911659D01* +X7662679Y-13902135D01* +X7653155Y-13892611D01* +X7643632Y-13873563D01* +X7634108Y-13835468D01* +X7634108Y-13787849D01* +X7643632Y-13749754D01* +X7653155Y-13730706D01* +X7662679Y-13721183D01* +X7681727Y-13711659D01* +X7872203Y-13711659D02* +X7891251Y-13711659D01* +X7910298Y-13721183D01* +X7919822Y-13730706D01* +X7929346Y-13749754D01* +X7938870Y-13787849D01* +X7938870Y-13835468D01* +X7929346Y-13873563D01* +X7919822Y-13892611D01* +X7910298Y-13902135D01* +X7891251Y-13911659D01* +X7872203Y-13911659D01* +X7853155Y-13902135D01* +X7843632Y-13892611D01* +X7834108Y-13873563D01* +X7824584Y-13835468D01* +X7824584Y-13787849D01* +X7834108Y-13749754D01* +X7843632Y-13730706D01* +X7853155Y-13721183D01* +X7872203Y-13711659D01* +X8024584Y-13911659D02* +X8024584Y-13778325D01* +X8024584Y-13797373D02* +X8034108Y-13787849D01* +X8053155Y-13778325D01* +X8081727Y-13778325D01* +X8100774Y-13787849D01* +X8110298Y-13806897D01* +X8110298Y-13911659D01* +X8110298Y-13806897D02* +X8119822Y-13787849D01* +X8138870Y-13778325D01* +X8167441Y-13778325D01* +X8186489Y-13787849D01* +X8196012Y-13806897D01* +X8196012Y-13911659D01* +X8291251Y-13911659D02* +X8291251Y-13778325D01* +X8291251Y-13797373D02* +X8300774Y-13787849D01* +X8319822Y-13778325D01* +X8348393Y-13778325D01* +X8367441Y-13787849D01* +X8376965Y-13806897D01* +X8376965Y-13911659D01* +X8376965Y-13806897D02* +X8386489Y-13787849D01* +X8405536Y-13778325D01* +X8434108Y-13778325D01* +X8453155Y-13787849D01* +X8462679Y-13806897D01* +X8462679Y-13911659D01* +X8853155Y-13702135D02* +X8681727Y-13959278D01* +X9110298Y-13711659D02* +X9129346Y-13711659D01* +X9148394Y-13721183D01* +X9157917Y-13730706D01* +X9167441Y-13749754D01* +X9176965Y-13787849D01* +X9176965Y-13835468D01* +X9167441Y-13873563D01* +X9157917Y-13892611D01* +X9148394Y-13902135D01* +X9129346Y-13911659D01* +X9110298Y-13911659D01* +X9091251Y-13902135D01* +X9081727Y-13892611D01* +X9072203Y-13873563D01* +X9062679Y-13835468D01* +X9062679Y-13787849D01* +X9072203Y-13749754D01* +X9081727Y-13730706D01* +X9091251Y-13721183D01* +X9110298Y-13711659D01* +X9262679Y-13892611D02* +X9272203Y-13902135D01* +X9262679Y-13911659D01* +X9253155Y-13902135D01* +X9262679Y-13892611D01* +X9262679Y-13911659D01* +X9396013Y-13711659D02* +X9415060Y-13711659D01* +X9434108Y-13721183D01* +X9443632Y-13730706D01* +X9453155Y-13749754D01* +X9462679Y-13787849D01* +X9462679Y-13835468D01* +X9453155Y-13873563D01* +X9443632Y-13892611D01* +X9434108Y-13902135D01* +X9415060Y-13911659D01* +X9396013Y-13911659D01* +X9376965Y-13902135D01* +X9367441Y-13892611D01* +X9357917Y-13873563D01* +X9348394Y-13835468D01* +X9348394Y-13787849D01* +X9357917Y-13749754D01* +X9367441Y-13730706D01* +X9376965Y-13721183D01* +X9396013Y-13711659D01* +X9529346Y-13711659D02* +X9653155Y-13711659D01* +X9586489Y-13787849D01* +X9615060Y-13787849D01* +X9634108Y-13797373D01* +X9643632Y-13806897D01* +X9653155Y-13825944D01* +X9653155Y-13873563D01* +X9643632Y-13892611D01* +X9634108Y-13902135D01* +X9615060Y-13911659D01* +X9557917Y-13911659D01* +X9538870Y-13902135D01* +X9529346Y-13892611D01* +X9843632Y-13911659D02* +X9729346Y-13911659D01* +X9786489Y-13911659D02* +X9786489Y-13711659D01* +X9767441Y-13740230D01* +X9748394Y-13759278D01* +X9729346Y-13768802D01* +X10024584Y-13711659D02* +X9929346Y-13711659D01* +X9919822Y-13806897D01* +X9929346Y-13797373D01* +X9948394Y-13787849D01* +X9996013Y-13787849D01* +X10015060Y-13797373D01* +X10024584Y-13806897D01* +X10034108Y-13825944D01* +X10034108Y-13873563D01* +X10024584Y-13892611D01* +X10015060Y-13902135D01* +X9996013Y-13911659D01* +X9948394Y-13911659D01* +X9929346Y-13902135D01* +X9919822Y-13892611D01* +X10110298Y-13711659D02* +X10110298Y-13749754D01* +X10186489Y-13711659D02* +X10186489Y-13749754D01* +X10481727Y-13987849D02* +X10472203Y-13978325D01* +X10453155Y-13949754D01* +X10443632Y-13930706D01* +X10434108Y-13902135D01* +X10424584Y-13854516D01* +X10424584Y-13816421D01* +X10434108Y-13768802D01* +X10443632Y-13740230D01* +X10453155Y-13721183D01* +X10472203Y-13692611D01* +X10481727Y-13683087D01* +X10567441Y-13911659D02* +X10605536Y-13911659D01* +X10624584Y-13902135D01* +X10634108Y-13892611D01* +X10653155Y-13864040D01* +X10662679Y-13825944D01* +X10662679Y-13749754D01* +X10653155Y-13730706D01* +X10643632Y-13721183D01* +X10624584Y-13711659D01* +X10586489Y-13711659D01* +X10567441Y-13721183D01* +X10557917Y-13730706D01* +X10548394Y-13749754D01* +X10548394Y-13797373D01* +X10557917Y-13816421D01* +X10567441Y-13825944D01* +X10586489Y-13835468D01* +X10624584Y-13835468D01* +X10643632Y-13825944D01* +X10653155Y-13816421D01* +X10662679Y-13797373D01* +X10900774Y-13911659D02* +X10900774Y-13711659D01* +X10986489Y-13911659D02* +X10986489Y-13806897D01* +X10976965Y-13787849D01* +X10957917Y-13778325D01* +X10929346Y-13778325D01* +X10910298Y-13787849D01* +X10900774Y-13797373D01* +X11110298Y-13911659D02* +X11091251Y-13902135D01* +X11081727Y-13892611D01* +X11072203Y-13873563D01* +X11072203Y-13816421D01* +X11081727Y-13797373D01* +X11091251Y-13787849D01* +X11110298Y-13778325D01* +X11138870Y-13778325D01* +X11157917Y-13787849D01* +X11167441Y-13797373D01* +X11176965Y-13816421D01* +X11176965Y-13873563D01* +X11167441Y-13892611D01* +X11157917Y-13902135D01* +X11138870Y-13911659D01* +X11110298Y-13911659D01* +X11291251Y-13911659D02* +X11272203Y-13902135D01* +X11262679Y-13883087D01* +X11262679Y-13711659D01* +X11443632Y-13902135D02* +X11424584Y-13911659D01* +X11386489Y-13911659D01* +X11367441Y-13902135D01* +X11357917Y-13883087D01* +X11357917Y-13806897D01* +X11367441Y-13787849D01* +X11386489Y-13778325D01* +X11424584Y-13778325D01* +X11443632Y-13787849D01* +X11453155Y-13806897D01* +X11453155Y-13825944D01* +X11357917Y-13844992D01* +X11529346Y-13902135D02* +X11548393Y-13911659D01* +X11586489Y-13911659D01* +X11605536Y-13902135D01* +X11615060Y-13883087D01* +X11615060Y-13873563D01* +X11605536Y-13854516D01* +X11586489Y-13844992D01* +X11557917Y-13844992D01* +X11538870Y-13835468D01* +X11529346Y-13816421D01* +X11529346Y-13806897D01* +X11538870Y-13787849D01* +X11557917Y-13778325D01* +X11586489Y-13778325D01* +X11605536Y-13787849D01* +X11681727Y-13987849D02* +X11691251Y-13978325D01* +X11710298Y-13949754D01* +X11719822Y-13930706D01* +X11729346Y-13902135D01* +X11738870Y-13854516D01* +X11738870Y-13816421D01* +X11729346Y-13768802D01* +X11719822Y-13740230D01* +X11710298Y-13721183D01* +X11691251Y-13692611D01* +X11681727Y-13683087D01* +D14* +X6869822Y-14125183D02* +X6909822Y-14085183D01* +X6869822Y-14045183D01* +X6829822Y-14085183D01* +X6869822Y-14125183D01* +D11* +X7205536Y-13975659D02* +X7224584Y-13975659D01* +X7243632Y-13985183D01* +X7253155Y-13994706D01* +X7262679Y-14013754D01* +X7272203Y-14051849D01* +X7272203Y-14099468D01* +X7262679Y-14137563D01* +X7253155Y-14156611D01* +X7243632Y-14166135D01* +X7224584Y-14175659D01* +X7205536Y-14175659D01* +X7186489Y-14166135D01* +X7176965Y-14156611D01* +X7167441Y-14137563D01* +X7157917Y-14099468D01* +X7157917Y-14051849D01* +X7167441Y-14013754D01* +X7176965Y-13994706D01* +X7186489Y-13985183D01* +X7205536Y-13975659D01* +X7357917Y-14156611D02* +X7367441Y-14166135D01* +X7357917Y-14175659D01* +X7348393Y-14166135D01* +X7357917Y-14156611D01* +X7357917Y-14175659D01* +X7481727Y-14061373D02* +X7462679Y-14051849D01* +X7453155Y-14042325D01* +X7443632Y-14023278D01* +X7443632Y-14013754D01* +X7453155Y-13994706D01* +X7462679Y-13985183D01* +X7481727Y-13975659D01* +X7519822Y-13975659D01* +X7538870Y-13985183D01* +X7548393Y-13994706D01* +X7557917Y-14013754D01* +X7557917Y-14023278D01* +X7548393Y-14042325D01* +X7538870Y-14051849D01* +X7519822Y-14061373D01* +X7481727Y-14061373D01* +X7462679Y-14070897D01* +X7453155Y-14080421D01* +X7443632Y-14099468D01* +X7443632Y-14137563D01* +X7453155Y-14156611D01* +X7462679Y-14166135D01* +X7481727Y-14175659D01* +X7519822Y-14175659D01* +X7538870Y-14166135D01* +X7548393Y-14156611D01* +X7557917Y-14137563D01* +X7557917Y-14099468D01* +X7548393Y-14080421D01* +X7538870Y-14070897D01* +X7519822Y-14061373D01* +X7681727Y-13975659D02* +X7700774Y-13975659D01* +X7719822Y-13985183D01* +X7729346Y-13994706D01* +X7738870Y-14013754D01* +X7748393Y-14051849D01* +X7748393Y-14099468D01* +X7738870Y-14137563D01* +X7729346Y-14156611D01* +X7719822Y-14166135D01* +X7700774Y-14175659D01* +X7681727Y-14175659D01* +X7662679Y-14166135D01* +X7653155Y-14156611D01* +X7643632Y-14137563D01* +X7634108Y-14099468D01* +X7634108Y-14051849D01* +X7643632Y-14013754D01* +X7653155Y-13994706D01* +X7662679Y-13985183D01* +X7681727Y-13975659D01* +X7872203Y-13975659D02* +X7891251Y-13975659D01* +X7910298Y-13985183D01* +X7919822Y-13994706D01* +X7929346Y-14013754D01* +X7938870Y-14051849D01* +X7938870Y-14099468D01* +X7929346Y-14137563D01* +X7919822Y-14156611D01* +X7910298Y-14166135D01* +X7891251Y-14175659D01* +X7872203Y-14175659D01* +X7853155Y-14166135D01* +X7843632Y-14156611D01* +X7834108Y-14137563D01* +X7824584Y-14099468D01* +X7824584Y-14051849D01* +X7834108Y-14013754D01* +X7843632Y-13994706D01* +X7853155Y-13985183D01* +X7872203Y-13975659D01* +X8024584Y-14175659D02* +X8024584Y-14042325D01* +X8024584Y-14061373D02* +X8034108Y-14051849D01* +X8053155Y-14042325D01* +X8081727Y-14042325D01* +X8100774Y-14051849D01* +X8110298Y-14070897D01* +X8110298Y-14175659D01* +X8110298Y-14070897D02* +X8119822Y-14051849D01* +X8138870Y-14042325D01* +X8167441Y-14042325D01* +X8186489Y-14051849D01* +X8196012Y-14070897D01* +X8196012Y-14175659D01* +X8291251Y-14175659D02* +X8291251Y-14042325D01* +X8291251Y-14061373D02* +X8300774Y-14051849D01* +X8319822Y-14042325D01* +X8348393Y-14042325D01* +X8367441Y-14051849D01* +X8376965Y-14070897D01* +X8376965Y-14175659D01* +X8376965Y-14070897D02* +X8386489Y-14051849D01* +X8405536Y-14042325D01* +X8434108Y-14042325D01* +X8453155Y-14051849D01* +X8462679Y-14070897D01* +X8462679Y-14175659D01* +X8853155Y-13966135D02* +X8681727Y-14223278D01* +X9110298Y-13975659D02* +X9129346Y-13975659D01* +X9148394Y-13985183D01* +X9157917Y-13994706D01* +X9167441Y-14013754D01* +X9176965Y-14051849D01* +X9176965Y-14099468D01* +X9167441Y-14137563D01* +X9157917Y-14156611D01* +X9148394Y-14166135D01* +X9129346Y-14175659D01* +X9110298Y-14175659D01* +X9091251Y-14166135D01* +X9081727Y-14156611D01* +X9072203Y-14137563D01* +X9062679Y-14099468D01* +X9062679Y-14051849D01* +X9072203Y-14013754D01* +X9081727Y-13994706D01* +X9091251Y-13985183D01* +X9110298Y-13975659D01* +X9262679Y-14156611D02* +X9272203Y-14166135D01* +X9262679Y-14175659D01* +X9253155Y-14166135D01* +X9262679Y-14156611D01* +X9262679Y-14175659D01* +X9396013Y-13975659D02* +X9415060Y-13975659D01* +X9434108Y-13985183D01* +X9443632Y-13994706D01* +X9453155Y-14013754D01* +X9462679Y-14051849D01* +X9462679Y-14099468D01* +X9453155Y-14137563D01* +X9443632Y-14156611D01* +X9434108Y-14166135D01* +X9415060Y-14175659D01* +X9396013Y-14175659D01* +X9376965Y-14166135D01* +X9367441Y-14156611D01* +X9357917Y-14137563D01* +X9348394Y-14099468D01* +X9348394Y-14051849D01* +X9357917Y-14013754D01* +X9367441Y-13994706D01* +X9376965Y-13985183D01* +X9396013Y-13975659D01* +X9529346Y-13975659D02* +X9653155Y-13975659D01* +X9586489Y-14051849D01* +X9615060Y-14051849D01* +X9634108Y-14061373D01* +X9643632Y-14070897D01* +X9653155Y-14089944D01* +X9653155Y-14137563D01* +X9643632Y-14156611D01* +X9634108Y-14166135D01* +X9615060Y-14175659D01* +X9557917Y-14175659D01* +X9538870Y-14166135D01* +X9529346Y-14156611D01* +X9843632Y-14175659D02* +X9729346Y-14175659D01* +X9786489Y-14175659D02* +X9786489Y-13975659D01* +X9767441Y-14004230D01* +X9748394Y-14023278D01* +X9729346Y-14032802D01* +X10024584Y-13975659D02* +X9929346Y-13975659D01* +X9919822Y-14070897D01* +X9929346Y-14061373D01* +X9948394Y-14051849D01* +X9996013Y-14051849D01* +X10015060Y-14061373D01* +X10024584Y-14070897D01* +X10034108Y-14089944D01* +X10034108Y-14137563D01* +X10024584Y-14156611D01* +X10015060Y-14166135D01* +X9996013Y-14175659D01* +X9948394Y-14175659D01* +X9929346Y-14166135D01* +X9919822Y-14156611D01* +X10110298Y-13975659D02* +X10110298Y-14013754D01* +X10186489Y-13975659D02* +X10186489Y-14013754D01* +X10481727Y-14251849D02* +X10472203Y-14242325D01* +X10453155Y-14213754D01* +X10443632Y-14194706D01* +X10434108Y-14166135D01* +X10424584Y-14118516D01* +X10424584Y-14080421D01* +X10434108Y-14032802D01* +X10443632Y-14004230D01* +X10453155Y-13985183D01* +X10472203Y-13956611D01* +X10481727Y-13947087D01* +X10548394Y-13994706D02* +X10557917Y-13985183D01* +X10576965Y-13975659D01* +X10624584Y-13975659D01* +X10643632Y-13985183D01* +X10653155Y-13994706D01* +X10662679Y-14013754D01* +X10662679Y-14032802D01* +X10653155Y-14061373D01* +X10538870Y-14175659D01* +X10662679Y-14175659D01* +X10900774Y-14175659D02* +X10900774Y-13975659D01* +X10986489Y-14175659D02* +X10986489Y-14070897D01* +X10976965Y-14051849D01* +X10957917Y-14042325D01* +X10929346Y-14042325D01* +X10910298Y-14051849D01* +X10900774Y-14061373D01* +X11110298Y-14175659D02* +X11091251Y-14166135D01* +X11081727Y-14156611D01* +X11072203Y-14137563D01* +X11072203Y-14080421D01* +X11081727Y-14061373D01* +X11091251Y-14051849D01* +X11110298Y-14042325D01* +X11138870Y-14042325D01* +X11157917Y-14051849D01* +X11167441Y-14061373D01* +X11176965Y-14080421D01* +X11176965Y-14137563D01* +X11167441Y-14156611D01* +X11157917Y-14166135D01* +X11138870Y-14175659D01* +X11110298Y-14175659D01* +X11291251Y-14175659D02* +X11272203Y-14166135D01* +X11262679Y-14147087D01* +X11262679Y-13975659D01* +X11443632Y-14166135D02* +X11424584Y-14175659D01* +X11386489Y-14175659D01* +X11367441Y-14166135D01* +X11357917Y-14147087D01* +X11357917Y-14070897D01* +X11367441Y-14051849D01* +X11386489Y-14042325D01* +X11424584Y-14042325D01* +X11443632Y-14051849D01* +X11453155Y-14070897D01* +X11453155Y-14089944D01* +X11357917Y-14108992D01* +X11529346Y-14166135D02* +X11548393Y-14175659D01* +X11586489Y-14175659D01* +X11605536Y-14166135D01* +X11615060Y-14147087D01* +X11615060Y-14137563D01* +X11605536Y-14118516D01* +X11586489Y-14108992D01* +X11557917Y-14108992D01* +X11538870Y-14099468D01* +X11529346Y-14080421D01* +X11529346Y-14070897D01* +X11538870Y-14051849D01* +X11557917Y-14042325D01* +X11586489Y-14042325D01* +X11605536Y-14051849D01* +X11681727Y-14251849D02* +X11691251Y-14242325D01* +X11710298Y-14213754D01* +X11719822Y-14194706D01* +X11729346Y-14166135D01* +X11738870Y-14118516D01* +X11738870Y-14080421D01* +X11729346Y-14032802D01* +X11719822Y-14004230D01* +X11710298Y-13985183D01* +X11691251Y-13956611D01* +X11681727Y-13947087D01* +D15* +X6809822Y-14299183D02* +X6909822Y-14399183D01* +X6909822Y-14299183D02* +X6809822Y-14399183D01* +X6909822Y-14349183D02* +G75* +G03* +X6909822Y-14349183I-50000J0D01* +G01* +D11* +X7272203Y-14439659D02* +X7157917Y-14439659D01* +X7215060Y-14439659D02* +X7215060Y-14239659D01* +X7196012Y-14268230D01* +X7176965Y-14287278D01* +X7157917Y-14296802D01* +X7357917Y-14420611D02* +X7367441Y-14430135D01* +X7357917Y-14439659D01* +X7348393Y-14430135D01* +X7357917Y-14420611D01* +X7357917Y-14439659D01* +X7491251Y-14239659D02* +X7510298Y-14239659D01* +X7529346Y-14249183D01* +X7538870Y-14258706D01* +X7548393Y-14277754D01* +X7557917Y-14315849D01* +X7557917Y-14363468D01* +X7548393Y-14401563D01* +X7538870Y-14420611D01* +X7529346Y-14430135D01* +X7510298Y-14439659D01* +X7491251Y-14439659D01* +X7472203Y-14430135D01* +X7462679Y-14420611D01* +X7453155Y-14401563D01* +X7443632Y-14363468D01* +X7443632Y-14315849D01* +X7453155Y-14277754D01* +X7462679Y-14258706D01* +X7472203Y-14249183D01* +X7491251Y-14239659D01* +X7681727Y-14239659D02* +X7700774Y-14239659D01* +X7719822Y-14249183D01* +X7729346Y-14258706D01* +X7738870Y-14277754D01* +X7748393Y-14315849D01* +X7748393Y-14363468D01* +X7738870Y-14401563D01* +X7729346Y-14420611D01* +X7719822Y-14430135D01* +X7700774Y-14439659D01* +X7681727Y-14439659D01* +X7662679Y-14430135D01* +X7653155Y-14420611D01* +X7643632Y-14401563D01* +X7634108Y-14363468D01* +X7634108Y-14315849D01* +X7643632Y-14277754D01* +X7653155Y-14258706D01* +X7662679Y-14249183D01* +X7681727Y-14239659D01* +X7872203Y-14239659D02* +X7891251Y-14239659D01* +X7910298Y-14249183D01* +X7919822Y-14258706D01* +X7929346Y-14277754D01* +X7938870Y-14315849D01* +X7938870Y-14363468D01* +X7929346Y-14401563D01* +X7919822Y-14420611D01* +X7910298Y-14430135D01* +X7891251Y-14439659D01* +X7872203Y-14439659D01* +X7853155Y-14430135D01* +X7843632Y-14420611D01* +X7834108Y-14401563D01* +X7824584Y-14363468D01* +X7824584Y-14315849D01* +X7834108Y-14277754D01* +X7843632Y-14258706D01* +X7853155Y-14249183D01* +X7872203Y-14239659D01* +X8024584Y-14439659D02* +X8024584Y-14306325D01* +X8024584Y-14325373D02* +X8034108Y-14315849D01* +X8053155Y-14306325D01* +X8081727Y-14306325D01* +X8100774Y-14315849D01* +X8110298Y-14334897D01* +X8110298Y-14439659D01* +X8110298Y-14334897D02* +X8119822Y-14315849D01* +X8138870Y-14306325D01* +X8167441Y-14306325D01* +X8186489Y-14315849D01* +X8196012Y-14334897D01* +X8196012Y-14439659D01* +X8291251Y-14439659D02* +X8291251Y-14306325D01* +X8291251Y-14325373D02* +X8300774Y-14315849D01* +X8319822Y-14306325D01* +X8348393Y-14306325D01* +X8367441Y-14315849D01* +X8376965Y-14334897D01* +X8376965Y-14439659D01* +X8376965Y-14334897D02* +X8386489Y-14315849D01* +X8405536Y-14306325D01* +X8434108Y-14306325D01* +X8453155Y-14315849D01* +X8462679Y-14334897D01* +X8462679Y-14439659D01* +X8853155Y-14230135D02* +X8681727Y-14487278D01* +X9110298Y-14239659D02* +X9129346Y-14239659D01* +X9148394Y-14249183D01* +X9157917Y-14258706D01* +X9167441Y-14277754D01* +X9176965Y-14315849D01* +X9176965Y-14363468D01* +X9167441Y-14401563D01* +X9157917Y-14420611D01* +X9148394Y-14430135D01* +X9129346Y-14439659D01* +X9110298Y-14439659D01* +X9091251Y-14430135D01* +X9081727Y-14420611D01* +X9072203Y-14401563D01* +X9062679Y-14363468D01* +X9062679Y-14315849D01* +X9072203Y-14277754D01* +X9081727Y-14258706D01* +X9091251Y-14249183D01* +X9110298Y-14239659D01* +X9262679Y-14420611D02* +X9272203Y-14430135D01* +X9262679Y-14439659D01* +X9253155Y-14430135D01* +X9262679Y-14420611D01* +X9262679Y-14439659D01* +X9396013Y-14239659D02* +X9415060Y-14239659D01* +X9434108Y-14249183D01* +X9443632Y-14258706D01* +X9453155Y-14277754D01* +X9462679Y-14315849D01* +X9462679Y-14363468D01* +X9453155Y-14401563D01* +X9443632Y-14420611D01* +X9434108Y-14430135D01* +X9415060Y-14439659D01* +X9396013Y-14439659D01* +X9376965Y-14430135D01* +X9367441Y-14420611D01* +X9357917Y-14401563D01* +X9348394Y-14363468D01* +X9348394Y-14315849D01* +X9357917Y-14277754D01* +X9367441Y-14258706D01* +X9376965Y-14249183D01* +X9396013Y-14239659D01* +X9529346Y-14239659D02* +X9653155Y-14239659D01* +X9586489Y-14315849D01* +X9615060Y-14315849D01* +X9634108Y-14325373D01* +X9643632Y-14334897D01* +X9653155Y-14353944D01* +X9653155Y-14401563D01* +X9643632Y-14420611D01* +X9634108Y-14430135D01* +X9615060Y-14439659D01* +X9557917Y-14439659D01* +X9538870Y-14430135D01* +X9529346Y-14420611D01* +X9748394Y-14439659D02* +X9786489Y-14439659D01* +X9805536Y-14430135D01* +X9815060Y-14420611D01* +X9834108Y-14392040D01* +X9843632Y-14353944D01* +X9843632Y-14277754D01* +X9834108Y-14258706D01* +X9824584Y-14249183D01* +X9805536Y-14239659D01* +X9767441Y-14239659D01* +X9748394Y-14249183D01* +X9738870Y-14258706D01* +X9729346Y-14277754D01* +X9729346Y-14325373D01* +X9738870Y-14344421D01* +X9748394Y-14353944D01* +X9767441Y-14363468D01* +X9805536Y-14363468D01* +X9824584Y-14353944D01* +X9834108Y-14344421D01* +X9843632Y-14325373D01* +X10015060Y-14306325D02* +X10015060Y-14439659D01* +X9967441Y-14230135D02* +X9919822Y-14372992D01* +X10043632Y-14372992D01* +X10110298Y-14239659D02* +X10110298Y-14277754D01* +X10186489Y-14239659D02* +X10186489Y-14277754D01* +X10481727Y-14515849D02* +X10472203Y-14506325D01* +X10453155Y-14477754D01* +X10443632Y-14458706D01* +X10434108Y-14430135D01* +X10424584Y-14382516D01* +X10424584Y-14344421D01* +X10434108Y-14296802D01* +X10443632Y-14268230D01* +X10453155Y-14249183D01* +X10472203Y-14220611D01* +X10481727Y-14211087D01* +X10538870Y-14239659D02* +X10662679Y-14239659D01* +X10596013Y-14315849D01* +X10624584Y-14315849D01* +X10643632Y-14325373D01* +X10653155Y-14334897D01* +X10662679Y-14353944D01* +X10662679Y-14401563D01* +X10653155Y-14420611D01* +X10643632Y-14430135D01* +X10624584Y-14439659D01* +X10567441Y-14439659D01* +X10548394Y-14430135D01* +X10538870Y-14420611D01* +X10900774Y-14439659D02* +X10900774Y-14239659D01* +X10986489Y-14439659D02* +X10986489Y-14334897D01* +X10976965Y-14315849D01* +X10957917Y-14306325D01* +X10929346Y-14306325D01* +X10910298Y-14315849D01* +X10900774Y-14325373D01* +X11110298Y-14439659D02* +X11091251Y-14430135D01* +X11081727Y-14420611D01* +X11072203Y-14401563D01* +X11072203Y-14344421D01* +X11081727Y-14325373D01* +X11091251Y-14315849D01* +X11110298Y-14306325D01* +X11138870Y-14306325D01* +X11157917Y-14315849D01* +X11167441Y-14325373D01* +X11176965Y-14344421D01* +X11176965Y-14401563D01* +X11167441Y-14420611D01* +X11157917Y-14430135D01* +X11138870Y-14439659D01* +X11110298Y-14439659D01* +X11291251Y-14439659D02* +X11272203Y-14430135D01* +X11262679Y-14411087D01* +X11262679Y-14239659D01* +X11443632Y-14430135D02* +X11424584Y-14439659D01* +X11386489Y-14439659D01* +X11367441Y-14430135D01* +X11357917Y-14411087D01* +X11357917Y-14334897D01* +X11367441Y-14315849D01* +X11386489Y-14306325D01* +X11424584Y-14306325D01* +X11443632Y-14315849D01* +X11453155Y-14334897D01* +X11453155Y-14353944D01* +X11357917Y-14372992D01* +X11529346Y-14430135D02* +X11548393Y-14439659D01* +X11586489Y-14439659D01* +X11605536Y-14430135D01* +X11615060Y-14411087D01* +X11615060Y-14401563D01* +X11605536Y-14382516D01* +X11586489Y-14372992D01* +X11557917Y-14372992D01* +X11538870Y-14363468D01* +X11529346Y-14344421D01* +X11529346Y-14334897D01* +X11538870Y-14315849D01* +X11557917Y-14306325D01* +X11586489Y-14306325D01* +X11605536Y-14315849D01* +X11681727Y-14515849D02* +X11691251Y-14506325D01* +X11710298Y-14477754D01* +X11719822Y-14458706D01* +X11729346Y-14430135D01* +X11738870Y-14382516D01* +X11738870Y-14344421D01* +X11729346Y-14296802D01* +X11719822Y-14268230D01* +X11710298Y-14249183D01* +X11691251Y-14220611D01* +X11681727Y-14211087D01* +D16* +X6844822Y-14580683D02* +X6909822Y-14645683D01* +X6909822Y-14580683D02* +X6844822Y-14645683D01* +X6877322Y-14580683D02* +X6877322Y-14645683D01* +X6844822Y-14613183D02* +X6909822Y-14613183D01* +D11* +X7205536Y-14503659D02* +X7224584Y-14503659D01* +X7243632Y-14513183D01* +X7253155Y-14522706D01* +X7262679Y-14541754D01* +X7272203Y-14579849D01* +X7272203Y-14627468D01* +X7262679Y-14665563D01* +X7253155Y-14684611D01* +X7243632Y-14694135D01* +X7224584Y-14703659D01* +X7205536Y-14703659D01* +X7186489Y-14694135D01* +X7176965Y-14684611D01* +X7167441Y-14665563D01* +X7157917Y-14627468D01* +X7157917Y-14579849D01* +X7167441Y-14541754D01* +X7176965Y-14522706D01* +X7186489Y-14513183D01* +X7205536Y-14503659D01* +X7357917Y-14684611D02* +X7367441Y-14694135D01* +X7357917Y-14703659D01* +X7348393Y-14694135D01* +X7357917Y-14684611D01* +X7357917Y-14703659D01* +X7538870Y-14503659D02* +X7500774Y-14503659D01* +X7481727Y-14513183D01* +X7472203Y-14522706D01* +X7453155Y-14551278D01* +X7443632Y-14589373D01* +X7443632Y-14665563D01* +X7453155Y-14684611D01* +X7462679Y-14694135D01* +X7481727Y-14703659D01* +X7519822Y-14703659D01* +X7538870Y-14694135D01* +X7548393Y-14684611D01* +X7557917Y-14665563D01* +X7557917Y-14617944D01* +X7548393Y-14598897D01* +X7538870Y-14589373D01* +X7519822Y-14579849D01* +X7481727Y-14579849D01* +X7462679Y-14589373D01* +X7453155Y-14598897D01* +X7443632Y-14617944D01* +X7738870Y-14503659D02* +X7643632Y-14503659D01* +X7634108Y-14598897D01* +X7643632Y-14589373D01* +X7662679Y-14579849D01* +X7710298Y-14579849D01* +X7729346Y-14589373D01* +X7738870Y-14598897D01* +X7748393Y-14617944D01* +X7748393Y-14665563D01* +X7738870Y-14684611D01* +X7729346Y-14694135D01* +X7710298Y-14703659D01* +X7662679Y-14703659D01* +X7643632Y-14694135D01* +X7634108Y-14684611D01* +X7872203Y-14503659D02* +X7891251Y-14503659D01* +X7910298Y-14513183D01* +X7919822Y-14522706D01* +X7929346Y-14541754D01* +X7938870Y-14579849D01* +X7938870Y-14627468D01* +X7929346Y-14665563D01* +X7919822Y-14684611D01* +X7910298Y-14694135D01* +X7891251Y-14703659D01* +X7872203Y-14703659D01* +X7853155Y-14694135D01* +X7843632Y-14684611D01* +X7834108Y-14665563D01* +X7824584Y-14627468D01* +X7824584Y-14579849D01* +X7834108Y-14541754D01* +X7843632Y-14522706D01* +X7853155Y-14513183D01* +X7872203Y-14503659D01* +X8024584Y-14703659D02* +X8024584Y-14570325D01* +X8024584Y-14589373D02* +X8034108Y-14579849D01* +X8053155Y-14570325D01* +X8081727Y-14570325D01* +X8100774Y-14579849D01* +X8110298Y-14598897D01* +X8110298Y-14703659D01* +X8110298Y-14598897D02* +X8119822Y-14579849D01* +X8138870Y-14570325D01* +X8167441Y-14570325D01* +X8186489Y-14579849D01* +X8196012Y-14598897D01* +X8196012Y-14703659D01* +X8291251Y-14703659D02* +X8291251Y-14570325D01* +X8291251Y-14589373D02* +X8300774Y-14579849D01* +X8319822Y-14570325D01* +X8348393Y-14570325D01* +X8367441Y-14579849D01* +X8376965Y-14598897D01* +X8376965Y-14703659D01* +X8376965Y-14598897D02* +X8386489Y-14579849D01* +X8405536Y-14570325D01* +X8434108Y-14570325D01* +X8453155Y-14579849D01* +X8462679Y-14598897D01* +X8462679Y-14703659D01* +X8853155Y-14494135D02* +X8681727Y-14751278D01* +X9110298Y-14503659D02* +X9129346Y-14503659D01* +X9148394Y-14513183D01* +X9157917Y-14522706D01* +X9167441Y-14541754D01* +X9176965Y-14579849D01* +X9176965Y-14627468D01* +X9167441Y-14665563D01* +X9157917Y-14684611D01* +X9148394Y-14694135D01* +X9129346Y-14703659D01* +X9110298Y-14703659D01* +X9091251Y-14694135D01* +X9081727Y-14684611D01* +X9072203Y-14665563D01* +X9062679Y-14627468D01* +X9062679Y-14579849D01* +X9072203Y-14541754D01* +X9081727Y-14522706D01* +X9091251Y-14513183D01* +X9110298Y-14503659D01* +X9262679Y-14684611D02* +X9272203Y-14694135D01* +X9262679Y-14703659D01* +X9253155Y-14694135D01* +X9262679Y-14684611D01* +X9262679Y-14703659D01* +X9396013Y-14503659D02* +X9415060Y-14503659D01* +X9434108Y-14513183D01* +X9443632Y-14522706D01* +X9453155Y-14541754D01* +X9462679Y-14579849D01* +X9462679Y-14627468D01* +X9453155Y-14665563D01* +X9443632Y-14684611D01* +X9434108Y-14694135D01* +X9415060Y-14703659D01* +X9396013Y-14703659D01* +X9376965Y-14694135D01* +X9367441Y-14684611D01* +X9357917Y-14665563D01* +X9348394Y-14627468D01* +X9348394Y-14579849D01* +X9357917Y-14541754D01* +X9367441Y-14522706D01* +X9376965Y-14513183D01* +X9396013Y-14503659D01* +X9538870Y-14522706D02* +X9548394Y-14513183D01* +X9567441Y-14503659D01* +X9615060Y-14503659D01* +X9634108Y-14513183D01* +X9643632Y-14522706D01* +X9653155Y-14541754D01* +X9653155Y-14560802D01* +X9643632Y-14589373D01* +X9529346Y-14703659D01* +X9653155Y-14703659D01* +X9834108Y-14503659D02* +X9738870Y-14503659D01* +X9729346Y-14598897D01* +X9738870Y-14589373D01* +X9757917Y-14579849D01* +X9805536Y-14579849D01* +X9824584Y-14589373D01* +X9834108Y-14598897D01* +X9843632Y-14617944D01* +X9843632Y-14665563D01* +X9834108Y-14684611D01* +X9824584Y-14694135D01* +X9805536Y-14703659D01* +X9757917Y-14703659D01* +X9738870Y-14694135D01* +X9729346Y-14684611D01* +X10015060Y-14503659D02* +X9976965Y-14503659D01* +X9957917Y-14513183D01* +X9948394Y-14522706D01* +X9929346Y-14551278D01* +X9919822Y-14589373D01* +X9919822Y-14665563D01* +X9929346Y-14684611D01* +X9938870Y-14694135D01* +X9957917Y-14703659D01* +X9996013Y-14703659D01* +X10015060Y-14694135D01* +X10024584Y-14684611D01* +X10034108Y-14665563D01* +X10034108Y-14617944D01* +X10024584Y-14598897D01* +X10015060Y-14589373D01* +X9996013Y-14579849D01* +X9957917Y-14579849D01* +X9938870Y-14589373D01* +X9929346Y-14598897D01* +X9919822Y-14617944D01* +X10110298Y-14503659D02* +X10110298Y-14541754D01* +X10186489Y-14503659D02* +X10186489Y-14541754D01* +X10481727Y-14779849D02* +X10472203Y-14770325D01* +X10453155Y-14741754D01* +X10443632Y-14722706D01* +X10434108Y-14694135D01* +X10424584Y-14646516D01* +X10424584Y-14608421D01* +X10434108Y-14560802D01* +X10443632Y-14532230D01* +X10453155Y-14513183D01* +X10472203Y-14484611D01* +X10481727Y-14475087D01* +X10548394Y-14522706D02* +X10557917Y-14513183D01* +X10576965Y-14503659D01* +X10624584Y-14503659D01* +X10643632Y-14513183D01* +X10653155Y-14522706D01* +X10662679Y-14541754D01* +X10662679Y-14560802D01* +X10653155Y-14589373D01* +X10538870Y-14703659D01* +X10662679Y-14703659D01* +X10900774Y-14703659D02* +X10900774Y-14503659D01* +X10986489Y-14703659D02* +X10986489Y-14598897D01* +X10976965Y-14579849D01* +X10957917Y-14570325D01* +X10929346Y-14570325D01* +X10910298Y-14579849D01* +X10900774Y-14589373D01* +X11110298Y-14703659D02* +X11091251Y-14694135D01* +X11081727Y-14684611D01* +X11072203Y-14665563D01* +X11072203Y-14608421D01* +X11081727Y-14589373D01* +X11091251Y-14579849D01* +X11110298Y-14570325D01* +X11138870Y-14570325D01* +X11157917Y-14579849D01* +X11167441Y-14589373D01* +X11176965Y-14608421D01* +X11176965Y-14665563D01* +X11167441Y-14684611D01* +X11157917Y-14694135D01* +X11138870Y-14703659D01* +X11110298Y-14703659D01* +X11291251Y-14703659D02* +X11272203Y-14694135D01* +X11262679Y-14675087D01* +X11262679Y-14503659D01* +X11443632Y-14694135D02* +X11424584Y-14703659D01* +X11386489Y-14703659D01* +X11367441Y-14694135D01* +X11357917Y-14675087D01* +X11357917Y-14598897D01* +X11367441Y-14579849D01* +X11386489Y-14570325D01* +X11424584Y-14570325D01* +X11443632Y-14579849D01* +X11453155Y-14598897D01* +X11453155Y-14617944D01* +X11357917Y-14636992D01* +X11529346Y-14694135D02* +X11548393Y-14703659D01* +X11586489Y-14703659D01* +X11605536Y-14694135D01* +X11615060Y-14675087D01* +X11615060Y-14665563D01* +X11605536Y-14646516D01* +X11586489Y-14636992D01* +X11557917Y-14636992D01* +X11538870Y-14627468D01* +X11529346Y-14608421D01* +X11529346Y-14598897D01* +X11538870Y-14579849D01* +X11557917Y-14570325D01* +X11586489Y-14570325D01* +X11605536Y-14579849D01* +X11681727Y-14779849D02* +X11691251Y-14770325D01* +X11710298Y-14741754D01* +X11719822Y-14722706D01* +X11729346Y-14694135D01* +X11738870Y-14646516D01* +X11738870Y-14608421D01* +X11729346Y-14560802D01* +X11719822Y-14532230D01* +X11710298Y-14513183D01* +X11691251Y-14484611D01* +X11681727Y-14475087D01* +X12043632Y-14779849D02* +X12034108Y-14770325D01* +X12015060Y-14741754D01* +X12005536Y-14722706D01* +X11996012Y-14694135D01* +X11986489Y-14646516D01* +X11986489Y-14608421D01* +X11996012Y-14560802D01* +X12005536Y-14532230D01* +X12015060Y-14513183D01* +X12034108Y-14484611D01* +X12043632Y-14475087D01* +X12119822Y-14570325D02* +X12119822Y-14703659D01* +X12119822Y-14589373D02* +X12129346Y-14579849D01* +X12148393Y-14570325D01* +X12176965Y-14570325D01* +X12196012Y-14579849D01* +X12205536Y-14598897D01* +X12205536Y-14703659D01* +X12329346Y-14703659D02* +X12310298Y-14694135D01* +X12300774Y-14684611D01* +X12291251Y-14665563D01* +X12291251Y-14608421D01* +X12300774Y-14589373D01* +X12310298Y-14579849D01* +X12329346Y-14570325D01* +X12357917Y-14570325D01* +X12376965Y-14579849D01* +X12386489Y-14589373D01* +X12396012Y-14608421D01* +X12396012Y-14665563D01* +X12386489Y-14684611D01* +X12376965Y-14694135D01* +X12357917Y-14703659D01* +X12329346Y-14703659D01* +X12453155Y-14570325D02* +X12529346Y-14570325D01* +X12481727Y-14503659D02* +X12481727Y-14675087D01* +X12491251Y-14694135D01* +X12510298Y-14703659D01* +X12529346Y-14703659D01* +X12748393Y-14570325D02* +X12748393Y-14770325D01* +X12748393Y-14579849D02* +X12767441Y-14570325D01* +X12805536Y-14570325D01* +X12824584Y-14579849D01* +X12834108Y-14589373D01* +X12843632Y-14608421D01* +X12843632Y-14665563D01* +X12834108Y-14684611D01* +X12824584Y-14694135D01* +X12805536Y-14703659D01* +X12767441Y-14703659D01* +X12748393Y-14694135D01* +X12957917Y-14703659D02* +X12938870Y-14694135D01* +X12929346Y-14675087D01* +X12929346Y-14503659D01* +X13119822Y-14703659D02* +X13119822Y-14598897D01* +X13110298Y-14579849D01* +X13091251Y-14570325D01* +X13053155Y-14570325D01* +X13034108Y-14579849D01* +X13119822Y-14694135D02* +X13100774Y-14703659D01* +X13053155Y-14703659D01* +X13034108Y-14694135D01* +X13024584Y-14675087D01* +X13024584Y-14656040D01* +X13034108Y-14636992D01* +X13053155Y-14627468D01* +X13100774Y-14627468D01* +X13119822Y-14617944D01* +X13186489Y-14570325D02* +X13262679Y-14570325D01* +X13215060Y-14503659D02* +X13215060Y-14675087D01* +X13224584Y-14694135D01* +X13243632Y-14703659D01* +X13262679Y-14703659D01* +X13405536Y-14694135D02* +X13386489Y-14703659D01* +X13348393Y-14703659D01* +X13329346Y-14694135D01* +X13319822Y-14675087D01* +X13319822Y-14598897D01* +X13329346Y-14579849D01* +X13348393Y-14570325D01* +X13386489Y-14570325D01* +X13405536Y-14579849D01* +X13415060Y-14598897D01* +X13415060Y-14617944D01* +X13319822Y-14636992D01* +X13586489Y-14703659D02* +X13586489Y-14503659D01* +X13586489Y-14694135D02* +X13567441Y-14703659D01* +X13529346Y-14703659D01* +X13510298Y-14694135D01* +X13500774Y-14684611D01* +X13491251Y-14665563D01* +X13491251Y-14608421D01* +X13500774Y-14589373D01* +X13510298Y-14579849D01* +X13529346Y-14570325D01* +X13567441Y-14570325D01* +X13586489Y-14579849D01* +X13662679Y-14779849D02* +X13672203Y-14770325D01* +X13691251Y-14741754D01* +X13700774Y-14722706D01* +X13710298Y-14694135D01* +X13719822Y-14646516D01* +X13719822Y-14608421D01* +X13710298Y-14560802D01* +X13700774Y-14532230D01* +X13691251Y-14513183D01* +X13672203Y-14484611D01* +X13662679Y-14475087D01* +X6709822Y-14777183D02* +X6909822Y-14977183D01* +X6909822Y-14777183D02* +X6709822Y-14977183D01* +X6880533Y-14947894D02* +X6880533Y-14806471D01* +X6739111Y-14806471D01* +X6739111Y-14947894D01* +X6880533Y-14947894D01* +X7148393Y-14767659D02* +X7272203Y-14767659D01* +X7205536Y-14843849D01* +X7234108Y-14843849D01* +X7253155Y-14853373D01* +X7262679Y-14862897D01* +X7272203Y-14881944D01* +X7272203Y-14929563D01* +X7262679Y-14948611D01* +X7253155Y-14958135D01* +X7234108Y-14967659D01* +X7176965Y-14967659D01* +X7157917Y-14958135D01* +X7148393Y-14948611D01* +X7357917Y-14948611D02* +X7367441Y-14958135D01* +X7357917Y-14967659D01* +X7348393Y-14958135D01* +X7357917Y-14948611D01* +X7357917Y-14967659D01* +X7443632Y-14786706D02* +X7453155Y-14777183D01* +X7472203Y-14767659D01* +X7519822Y-14767659D01* +X7538870Y-14777183D01* +X7548393Y-14786706D01* +X7557917Y-14805754D01* +X7557917Y-14824802D01* +X7548393Y-14853373D01* +X7434108Y-14967659D01* +X7557917Y-14967659D01* +X7681727Y-14767659D02* +X7700774Y-14767659D01* +X7719822Y-14777183D01* +X7729346Y-14786706D01* +X7738870Y-14805754D01* +X7748393Y-14843849D01* +X7748393Y-14891468D01* +X7738870Y-14929563D01* +X7729346Y-14948611D01* +X7719822Y-14958135D01* +X7700774Y-14967659D01* +X7681727Y-14967659D01* +X7662679Y-14958135D01* +X7653155Y-14948611D01* +X7643632Y-14929563D01* +X7634108Y-14891468D01* +X7634108Y-14843849D01* +X7643632Y-14805754D01* +X7653155Y-14786706D01* +X7662679Y-14777183D01* +X7681727Y-14767659D01* +X7872203Y-14767659D02* +X7891251Y-14767659D01* +X7910298Y-14777183D01* +X7919822Y-14786706D01* +X7929346Y-14805754D01* +X7938870Y-14843849D01* +X7938870Y-14891468D01* +X7929346Y-14929563D01* +X7919822Y-14948611D01* +X7910298Y-14958135D01* +X7891251Y-14967659D01* +X7872203Y-14967659D01* +X7853155Y-14958135D01* +X7843632Y-14948611D01* +X7834108Y-14929563D01* +X7824584Y-14891468D01* +X7824584Y-14843849D01* +X7834108Y-14805754D01* +X7843632Y-14786706D01* +X7853155Y-14777183D01* +X7872203Y-14767659D01* +X8024584Y-14967659D02* +X8024584Y-14834325D01* +X8024584Y-14853373D02* +X8034108Y-14843849D01* +X8053155Y-14834325D01* +X8081727Y-14834325D01* +X8100774Y-14843849D01* +X8110298Y-14862897D01* +X8110298Y-14967659D01* +X8110298Y-14862897D02* +X8119822Y-14843849D01* +X8138870Y-14834325D01* +X8167441Y-14834325D01* +X8186489Y-14843849D01* +X8196012Y-14862897D01* +X8196012Y-14967659D01* +X8291251Y-14967659D02* +X8291251Y-14834325D01* +X8291251Y-14853373D02* +X8300774Y-14843849D01* +X8319822Y-14834325D01* +X8348393Y-14834325D01* +X8367441Y-14843849D01* +X8376965Y-14862897D01* +X8376965Y-14967659D01* +X8376965Y-14862897D02* +X8386489Y-14843849D01* +X8405536Y-14834325D01* +X8434108Y-14834325D01* +X8453155Y-14843849D01* +X8462679Y-14862897D01* +X8462679Y-14967659D01* +X8853155Y-14758135D02* +X8681727Y-15015278D01* +X9110298Y-14767659D02* +X9129346Y-14767659D01* +X9148394Y-14777183D01* +X9157917Y-14786706D01* +X9167441Y-14805754D01* +X9176965Y-14843849D01* +X9176965Y-14891468D01* +X9167441Y-14929563D01* +X9157917Y-14948611D01* +X9148394Y-14958135D01* +X9129346Y-14967659D01* +X9110298Y-14967659D01* +X9091251Y-14958135D01* +X9081727Y-14948611D01* +X9072203Y-14929563D01* +X9062679Y-14891468D01* +X9062679Y-14843849D01* +X9072203Y-14805754D01* +X9081727Y-14786706D01* +X9091251Y-14777183D01* +X9110298Y-14767659D01* +X9262679Y-14948611D02* +X9272203Y-14958135D01* +X9262679Y-14967659D01* +X9253155Y-14958135D01* +X9262679Y-14948611D01* +X9262679Y-14967659D01* +X9462679Y-14967659D02* +X9348394Y-14967659D01* +X9405536Y-14967659D02* +X9405536Y-14767659D01* +X9386489Y-14796230D01* +X9367441Y-14815278D01* +X9348394Y-14824802D01* +X9538870Y-14786706D02* +X9548394Y-14777183D01* +X9567441Y-14767659D01* +X9615060Y-14767659D01* +X9634108Y-14777183D01* +X9643632Y-14786706D01* +X9653155Y-14805754D01* +X9653155Y-14824802D01* +X9643632Y-14853373D01* +X9529346Y-14967659D01* +X9653155Y-14967659D01* +X9824584Y-14767659D02* +X9786489Y-14767659D01* +X9767441Y-14777183D01* +X9757917Y-14786706D01* +X9738870Y-14815278D01* +X9729346Y-14853373D01* +X9729346Y-14929563D01* +X9738870Y-14948611D01* +X9748394Y-14958135D01* +X9767441Y-14967659D01* +X9805536Y-14967659D01* +X9824584Y-14958135D01* +X9834108Y-14948611D01* +X9843632Y-14929563D01* +X9843632Y-14881944D01* +X9834108Y-14862897D01* +X9824584Y-14853373D01* +X9805536Y-14843849D01* +X9767441Y-14843849D01* +X9748394Y-14853373D01* +X9738870Y-14862897D01* +X9729346Y-14881944D01* +X9967441Y-14767659D02* +X9986489Y-14767659D01* +X10005536Y-14777183D01* +X10015060Y-14786706D01* +X10024584Y-14805754D01* +X10034108Y-14843849D01* +X10034108Y-14891468D01* +X10024584Y-14929563D01* +X10015060Y-14948611D01* +X10005536Y-14958135D01* +X9986489Y-14967659D01* +X9967441Y-14967659D01* +X9948394Y-14958135D01* +X9938870Y-14948611D01* +X9929346Y-14929563D01* +X9919822Y-14891468D01* +X9919822Y-14843849D01* +X9929346Y-14805754D01* +X9938870Y-14786706D01* +X9948394Y-14777183D01* +X9967441Y-14767659D01* +X10110298Y-14767659D02* +X10110298Y-14805754D01* +X10186489Y-14767659D02* +X10186489Y-14805754D01* +X10481727Y-15043849D02* +X10472203Y-15034325D01* +X10453155Y-15005754D01* +X10443632Y-14986706D01* +X10434108Y-14958135D01* +X10424584Y-14910516D01* +X10424584Y-14872421D01* +X10434108Y-14824802D01* +X10443632Y-14796230D01* +X10453155Y-14777183D01* +X10472203Y-14748611D01* +X10481727Y-14739087D01* +X10643632Y-14834325D02* +X10643632Y-14967659D01* +X10596013Y-14758135D02* +X10548394Y-14900992D01* +X10672203Y-14900992D01* +X10900774Y-14967659D02* +X10900774Y-14767659D01* +X10986489Y-14967659D02* +X10986489Y-14862897D01* +X10976965Y-14843849D01* +X10957917Y-14834325D01* +X10929346Y-14834325D01* +X10910298Y-14843849D01* +X10900774Y-14853373D01* +X11110298Y-14967659D02* +X11091251Y-14958135D01* +X11081727Y-14948611D01* +X11072203Y-14929563D01* +X11072203Y-14872421D01* +X11081727Y-14853373D01* +X11091251Y-14843849D01* +X11110298Y-14834325D01* +X11138870Y-14834325D01* +X11157917Y-14843849D01* +X11167441Y-14853373D01* +X11176965Y-14872421D01* +X11176965Y-14929563D01* +X11167441Y-14948611D01* +X11157917Y-14958135D01* +X11138870Y-14967659D01* +X11110298Y-14967659D01* +X11291251Y-14967659D02* +X11272203Y-14958135D01* +X11262679Y-14939087D01* +X11262679Y-14767659D01* +X11443632Y-14958135D02* +X11424584Y-14967659D01* +X11386489Y-14967659D01* +X11367441Y-14958135D01* +X11357917Y-14939087D01* +X11357917Y-14862897D01* +X11367441Y-14843849D01* +X11386489Y-14834325D01* +X11424584Y-14834325D01* +X11443632Y-14843849D01* +X11453155Y-14862897D01* +X11453155Y-14881944D01* +X11357917Y-14900992D01* +X11529346Y-14958135D02* +X11548393Y-14967659D01* +X11586489Y-14967659D01* +X11605536Y-14958135D01* +X11615060Y-14939087D01* +X11615060Y-14929563D01* +X11605536Y-14910516D01* +X11586489Y-14900992D01* +X11557917Y-14900992D01* +X11538870Y-14891468D01* +X11529346Y-14872421D01* +X11529346Y-14862897D01* +X11538870Y-14843849D01* +X11557917Y-14834325D01* +X11586489Y-14834325D01* +X11605536Y-14843849D01* +X11681727Y-15043849D02* +X11691251Y-15034325D01* +X11710298Y-15005754D01* +X11719822Y-14986706D01* +X11729346Y-14958135D01* +X11738870Y-14910516D01* +X11738870Y-14872421D01* +X11729346Y-14824802D01* +X11719822Y-14796230D01* +X11710298Y-14777183D01* +X11691251Y-14748611D01* +X11681727Y-14739087D01* +X12043632Y-15043849D02* +X12034108Y-15034325D01* +X12015060Y-15005754D01* +X12005536Y-14986706D01* +X11996012Y-14958135D01* +X11986489Y-14910516D01* +X11986489Y-14872421D01* +X11996012Y-14824802D01* +X12005536Y-14796230D01* +X12015060Y-14777183D01* +X12034108Y-14748611D01* +X12043632Y-14739087D01* +X12119822Y-14834325D02* +X12119822Y-14967659D01* +X12119822Y-14853373D02* +X12129346Y-14843849D01* +X12148393Y-14834325D01* +X12176965Y-14834325D01* +X12196012Y-14843849D01* +X12205536Y-14862897D01* +X12205536Y-14967659D01* +X12329346Y-14967659D02* +X12310298Y-14958135D01* +X12300774Y-14948611D01* +X12291251Y-14929563D01* +X12291251Y-14872421D01* +X12300774Y-14853373D01* +X12310298Y-14843849D01* +X12329346Y-14834325D01* +X12357917Y-14834325D01* +X12376965Y-14843849D01* +X12386489Y-14853373D01* +X12396012Y-14872421D01* +X12396012Y-14929563D01* +X12386489Y-14948611D01* +X12376965Y-14958135D01* +X12357917Y-14967659D01* +X12329346Y-14967659D01* +X12453155Y-14834325D02* +X12529346Y-14834325D01* +X12481727Y-14767659D02* +X12481727Y-14939087D01* +X12491251Y-14958135D01* +X12510298Y-14967659D01* +X12529346Y-14967659D01* +X12748393Y-14834325D02* +X12748393Y-15034325D01* +X12748393Y-14843849D02* +X12767441Y-14834325D01* +X12805536Y-14834325D01* +X12824584Y-14843849D01* +X12834108Y-14853373D01* +X12843632Y-14872421D01* +X12843632Y-14929563D01* +X12834108Y-14948611D01* +X12824584Y-14958135D01* +X12805536Y-14967659D01* +X12767441Y-14967659D01* +X12748393Y-14958135D01* +X12957917Y-14967659D02* +X12938870Y-14958135D01* +X12929346Y-14939087D01* +X12929346Y-14767659D01* +X13119822Y-14967659D02* +X13119822Y-14862897D01* +X13110298Y-14843849D01* +X13091251Y-14834325D01* +X13053155Y-14834325D01* +X13034108Y-14843849D01* +X13119822Y-14958135D02* +X13100774Y-14967659D01* +X13053155Y-14967659D01* +X13034108Y-14958135D01* +X13024584Y-14939087D01* +X13024584Y-14920040D01* +X13034108Y-14900992D01* +X13053155Y-14891468D01* +X13100774Y-14891468D01* +X13119822Y-14881944D01* +X13186489Y-14834325D02* +X13262679Y-14834325D01* +X13215060Y-14767659D02* +X13215060Y-14939087D01* +X13224584Y-14958135D01* +X13243632Y-14967659D01* +X13262679Y-14967659D01* +X13405536Y-14958135D02* +X13386489Y-14967659D01* +X13348393Y-14967659D01* +X13329346Y-14958135D01* +X13319822Y-14939087D01* +X13319822Y-14862897D01* +X13329346Y-14843849D01* +X13348393Y-14834325D01* +X13386489Y-14834325D01* +X13405536Y-14843849D01* +X13415060Y-14862897D01* +X13415060Y-14881944D01* +X13319822Y-14900992D01* +X13586489Y-14967659D02* +X13586489Y-14767659D01* +X13586489Y-14958135D02* +X13567441Y-14967659D01* +X13529346Y-14967659D01* +X13510298Y-14958135D01* +X13500774Y-14948611D01* +X13491251Y-14929563D01* +X13491251Y-14872421D01* +X13500774Y-14853373D01* +X13510298Y-14843849D01* +X13529346Y-14834325D01* +X13567441Y-14834325D01* +X13586489Y-14843849D01* +X13662679Y-15043849D02* +X13672203Y-15034325D01* +X13691251Y-15005754D01* +X13700774Y-14986706D01* +X13710298Y-14958135D01* +X13719822Y-14910516D01* +X13719822Y-14872421D01* +X13710298Y-14824802D01* +X13700774Y-14796230D01* +X13691251Y-14777183D01* +X13672203Y-14748611D01* +X13662679Y-14739087D01* +M02* diff --git a/F1:F103/Canon_managing_device/kicad/Canon_manage/gerbers/Canon_manage-job.gbrjob b/F1:F103/Canon_managing_device/kicad/Canon_manage/gerbers/Canon_manage-job.gbrjob new file mode 100644 index 0000000..66ea890 --- /dev/null +++ b/F1:F103/Canon_managing_device/kicad/Canon_manage/gerbers/Canon_manage-job.gbrjob @@ -0,0 +1,127 @@ +{ + "Header": { + "GenerationSoftware": { + "Vendor": "KiCad", + "Application": "Pcbnew", + "Version": "6.0.5" + }, + "CreationDate": "2022-09-23T09:05:14+03:00" + }, + "GeneralSpecs": { + "ProjectId": { + "Name": "Canon_manage", + "GUID": "43616e6f-6e5f-46d6-916e-6167652e6b69", + "Revision": "rev?" + }, + "Size": { + "X": 73.8605, + "Y": 75.5527 + }, + "LayerNumber": 2, + "BoardThickness": 1.6, + "Finish": "None" + }, + "DesignRules": [ + { + "Layers": "Outer", + "PadToPad": 0.0, + "PadToTrack": 0.0, + "TrackToTrack": 0.1, + "MinLineWidth": 0.2, + "TrackToRegion": 0.508, + "RegionToRegion": 0.508 + } + ], + "FilesAttributes": [ + { + "Path": "Canon_manage-F_Cu.gbr", + "FileFunction": "Copper,L1,Top", + "FilePolarity": "Positive" + }, + { + "Path": "Canon_manage-B_Cu.gbr", + "FileFunction": "Copper,L2,Bot", + "FilePolarity": "Positive" + }, + { + "Path": "Canon_manage-F_Paste.gbr", + "FileFunction": "SolderPaste,Top", + "FilePolarity": "Positive" + }, + { + "Path": "Canon_manage-B_Paste.gbr", + "FileFunction": "SolderPaste,Bot", + "FilePolarity": "Positive" + }, + { + "Path": "Canon_manage-F_Silkscreen.gbr", + "FileFunction": "Legend,Top", + "FilePolarity": "Positive" + }, + { + "Path": "Canon_manage-B_Silkscreen.gbr", + "FileFunction": "Legend,Bot", + "FilePolarity": "Positive" + }, + { + "Path": "Canon_manage-F_Mask.gbr", + "FileFunction": "SolderMask,Top", + "FilePolarity": "Negative" + }, + { + "Path": "Canon_manage-B_Mask.gbr", + "FileFunction": "SolderMask,Bot", + "FilePolarity": "Negative" + }, + { + "Path": "Canon_manage-Edge_Cuts.gbr", + "FileFunction": "Profile", + "FilePolarity": "Positive" + } + ], + "MaterialStackup": [ + { + "Type": "Legend", + "Name": "Top Silk Screen" + }, + { + "Type": "SolderPaste", + "Name": "Top Solder Paste" + }, + { + "Type": "SolderMask", + "Thickness": 0.01, + "Name": "Top Solder Mask" + }, + { + "Type": "Copper", + "Thickness": 0.035, + "Name": "F.Cu" + }, + { + "Type": "Dielectric", + "Thickness": 1.51, + "Material": "FR4", + "Name": "F.Cu/B.Cu", + "Notes": "Type: dielectric layer 1 (from F.Cu to B.Cu)" + }, + { + "Type": "Copper", + "Thickness": 0.035, + "Name": "B.Cu" + }, + { + "Type": "SolderMask", + "Thickness": 0.01, + "Name": "Bottom Solder Mask" + }, + { + "Type": "SolderPaste", + "Name": "Bottom Solder Paste" + }, + { + "Type": "Legend", + "Name": "Bottom Silk Screen" + } + ] +} diff --git a/F1:F103/Canon_managing_device/kicad/outliers.dxf b/F1:F103/Canon_managing_device/kicad/outliers.dxf new file mode 100644 index 0000000..5f746ad --- /dev/null +++ b/F1:F103/Canon_managing_device/kicad/outliers.dxf @@ -0,0 +1,8994 @@ +999 +dxfrw 0.6.3 + 0 +SECTION + 2 +HEADER + 9 +$ACADVER + 1 +AC1021 + 9 +$DWGCODEPAGE + 3 +ANSI_1252 + 9 +$INSBASE + 10 +0 + 20 +0 + 30 +0 + 9 +$EXTMIN + 10 +0.08457099999999999 + 20 +0.084574 + 30 +0 + 9 +$EXTMAX + 10 +73.745023 + 20 +75.43730600000001 + 30 +0 + 9 +$LIMMIN + 10 +0 + 20 +0 + 9 +$LIMMAX + 10 +420 + 20 +297 + 9 +$ORTHOMODE + 70 + 0 + 9 +$REGENMODE + 70 + 1 + 9 +$FILLMODE + 70 + 1 + 9 +$QTEXTMODE + 70 + 0 + 9 +$MIRRTEXT + 70 + 0 + 9 +$LTSCALE + 40 +1 + 9 +$ATTMODE + 70 + 0 + 9 +$TEXTSIZE + 40 +2.5 + 9 +$TRACEWID + 40 +15.68 + 9 +$TEXTSTYLE + 7 +STANDARD + 9 +$CLAYER + 8 +0 + 9 +$CELTYPE + 6 +BYLAYER + 9 +$CECOLOR + 62 + 256 + 9 +$CELTSCALE + 40 +1 + 9 +$DISPSILH + 70 + 0 + 9 +$DIMSCALE + 40 +2.5 + 9 +$DIMASZ + 40 +2.5 + 9 +$DIMEXO + 40 +0.625 + 9 +$DIMDLI + 40 +3.75 + 9 +$DIMRND + 40 +0 + 9 +$DIMDLE + 40 +0 + 9 +$DIMEXE + 40 +1.25 + 9 +$DIMTP + 40 +0 + 9 +$DIMTM + 40 +0 + 9 +$DIMTXT + 40 +2.5 + 9 +$DIMCEN + 40 +2.5 + 9 +$DIMTSZ + 40 +0 + 9 +$DIMTOL + 70 + 0 + 9 +$DIMLIM + 70 + 0 + 9 +$DIMTIH + 70 + 0 + 9 +$DIMTOH + 70 + 0 + 9 +$DIMSE1 + 70 + 0 + 9 +$DIMSE2 + 70 + 0 + 9 +$DIMTAD + 70 + 1 + 9 +$DIMZIN + 70 + 8 + 9 +$DIMBLK + 1 + + 9 +$DIMASO + 70 + 1 + 9 +$DIMSHO + 70 + 1 + 9 +$DIMPOST + 1 + + 9 +$DIMAPOST + 1 + + 9 +$DIMALT + 70 + 0 + 9 +$DIMALTD + 70 + 3 + 9 +$DIMALTF + 40 +0.03937 + 9 +$DIMLFAC + 40 +1 + 9 +$DIMTOFL + 70 + 1 + 9 +$DIMTVP + 40 +0 + 9 +$DIMTIX + 70 + 0 + 9 +$DIMSOXD + 70 + 0 + 9 +$DIMSAH + 70 + 0 + 9 +$DIMBLK1 + 1 + + 9 +$DIMBLK2 + 1 + + 9 +$DIMSTYLE + 2 +Standard + 9 +$DIMCLRD + 70 + 0 + 9 +$DIMCLRE + 70 + 0 + 9 +$DIMCLRT + 70 + 0 + 9 +$DIMTFAC + 40 +1 + 9 +$DIMGAP + 40 +0.625 + 9 +$DIMJUST + 70 + 0 + 9 +$DIMSD1 + 70 + 0 + 9 +$DIMSD2 + 70 + 0 + 9 +$DIMTOLJ + 70 + 0 + 9 +$DIMTZIN + 70 + 8 + 9 +$DIMALTZ + 70 + 0 + 9 +$DIMALTTZ + 70 + 0 + 9 +$DIMUPT + 70 + 0 + 9 +$DIMDEC + 70 + 2 + 9 +$DIMTDEC + 70 + 2 + 9 +$DIMALTU + 70 + 2 + 9 +$DIMALTTD + 70 + 3 + 9 +$DIMTXSTY + 7 +STANDARD + 9 +$DIMAUNIT + 70 + 0 + 9 +$DIMADEC + 70 + 0 + 9 +$DIMALTRND + 40 +0 + 9 +$DIMAZIN + 70 + 0 + 9 +$DIMDSEP + 70 + 44 + 9 +$DIMATFIT + 70 + 3 + 9 +$DIMFRAC + 70 + 0 + 9 +$DIMLDRBLK + 1 +STANDARD + 9 +$DIMLUNIT + 70 + 2 + 9 +$DIMLWD + 70 + -2 + 9 +$DIMLWE + 70 + -2 + 9 +$DIMTMOVE + 70 + 0 + 9 +$DIMFXL + 40 +1 + 9 +$DIMFXLON + 70 + 0 + 9 +$DIMJOGANG + 40 +0.7854 + 9 +$DIMTFILL + 70 + 0 + 9 +$DIMTFILLCLR + 70 + 0 + 9 +$DIMARCSYM + 70 + 0 + 9 +$DIMLTYPE + 6 + + 9 +$DIMLTEX1 + 6 + + 9 +$DIMLTEX2 + 6 + + 9 +$LUNITS + 70 + 2 + 9 +$LUPREC + 70 + 4 + 9 +$SKETCHINC + 40 +1 + 9 +$FILLETRAD + 40 +0 + 9 +$AUNITS + 70 + 0 + 9 +$AUPREC + 70 + 2 + 9 +$MENU + 1 +. + 9 +$ELEVATION + 40 +0 + 9 +$PELEVATION + 40 +0 + 9 +$THICKNESS + 40 +0 + 9 +$LIMCHECK + 70 + 0 + 9 +$CHAMFERA + 40 +0 + 9 +$CHAMFERB + 40 +0 + 9 +$CHAMFERC + 40 +0 + 9 +$CHAMFERD + 40 +0 + 9 +$SKPOLY + 70 + 0 + 9 +$USRTIMER + 70 + 1 + 9 +$ANGBASE + 50 +0 + 9 +$ANGDIR + 70 + 0 + 9 +$PDMODE + 70 + 34 + 9 +$PDSIZE + 40 +0 + 9 +$PLINEWID + 40 +0 + 9 +$SPLFRAME + 70 + 0 + 9 +$SPLINETYPE + 70 + 2 + 9 +$SPLINESEGS + 70 + 8 + 9 +$HANDSEED + 5 +20000 + 9 +$SURFTAB1 + 70 + 6 + 9 +$SURFTAB2 + 70 + 6 + 9 +$SURFTYPE + 70 + 6 + 9 +$SURFU + 70 + 6 + 9 +$SURFV + 70 + 6 + 9 +$UCSBASE + 2 + + 9 +$UCSNAME + 2 + + 9 +$UCSORG + 10 +0 + 20 +0 + 30 +0 + 9 +$UCSXDIR + 10 +1 + 20 +0 + 30 +0 + 9 +$UCSYDIR + 10 +0 + 20 +1 + 30 +0 + 9 +$UCSORTHOREF + 2 + + 9 +$UCSORTHOVIEW + 70 + 0 + 9 +$UCSORGTOP + 10 +0 + 20 +0 + 30 +0 + 9 +$UCSORGBOTTOM + 10 +0 + 20 +0 + 30 +0 + 9 +$UCSORGLEFT + 10 +0 + 20 +0 + 30 +0 + 9 +$UCSORGRIGHT + 10 +0 + 20 +0 + 30 +0 + 9 +$UCSORGFRONT + 10 +0 + 20 +0 + 30 +0 + 9 +$UCSORGBACK + 10 +0 + 20 +0 + 30 +0 + 9 +$PUCSBASE + 2 + + 9 +$PUCSNAME + 2 + + 9 +$PUCSORG + 10 +0 + 20 +0 + 30 +0 + 9 +$PUCSXDIR + 10 +1 + 20 +0 + 30 +0 + 9 +$PUCSYDIR + 10 +0 + 20 +1 + 30 +0 + 9 +$PUCSORTHOREF + 2 + + 9 +$PUCSORTHOVIEW + 70 + 0 + 9 +$PUCSORGTOP + 10 +0 + 20 +0 + 30 +0 + 9 +$PUCSORGBOTTOM + 10 +0 + 20 +0 + 30 +0 + 9 +$PUCSORGLEFT + 10 +0 + 20 +0 + 30 +0 + 9 +$PUCSORGRIGHT + 10 +0 + 20 +0 + 30 +0 + 9 +$PUCSORGFRONT + 10 +0 + 20 +0 + 30 +0 + 9 +$PUCSORGBACK + 10 +0 + 20 +0 + 30 +0 + 9 +$USERI1 + 70 + 0 + 9 +$USERI2 + 70 + 0 + 9 +$USERI3 + 70 + 0 + 9 +$USERI4 + 70 + 0 + 9 +$USERI5 + 70 + 0 + 9 +$USERR1 + 40 +0 + 9 +$USERR2 + 40 +0 + 9 +$USERR3 + 40 +0 + 9 +$USERR4 + 40 +0 + 9 +$USERR5 + 40 +0 + 9 +$WORLDVIEW + 70 + 1 + 9 +$SHADEDGE + 70 + 3 + 9 +$SHADEDIF + 70 + 70 + 9 +$TILEMODE + 70 + 1 + 9 +$MAXACTVP + 70 + 64 + 9 +$PINSBASE + 10 +0 + 20 +0 + 30 +0 + 9 +$PLIMCHECK + 70 + 0 + 9 +$PEXTMIN + 10 +0 + 20 +0 + 30 +0 + 9 +$PEXTMAX + 10 +0 + 20 +0 + 30 +0 + 9 +$GRIDMODE + 70 + 1 + 9 +$SNAPSTYLE + 70 + 0 + 9 +$PLIMMIN + 10 +0 + 20 +0 + 9 +$PLIMMAX + 10 +210 + 20 +297 + 9 +$UNITMODE + 70 + 0 + 9 +$VISRETAIN + 70 + 1 + 9 +$PLINEGEN + 70 + 0 + 9 +$PSLTSCALE + 70 + 1 + 9 +$TREEDEPTH + 70 + 3020 + 9 +$CMLSTYLE + 2 +Standard + 9 +$CMLJUST + 70 + 0 + 9 +$CMLSCALE + 40 +20 + 9 +$PROXYGRAPHICS + 70 + 1 + 9 +$MEASUREMENT + 70 + 1 + 9 +$CELWEIGHT +370 + -1 + 9 +$ENDCAPS +280 + 0 + 9 +$JOINSTYLE +280 + 0 + 9 +$LWDISPLAY +290 + 0 + 9 +$INSUNITS + 70 + 4 + 9 +$HYPERLINKBASE + 1 + + 9 +$STYLESHEET + 1 + + 9 +$XEDIT +290 + 1 + 9 +$CEPSNTYPE +380 + 0 + 9 +$PSTYLEMODE +290 + 1 + 9 +$EXTNAMES +290 + 1 + 9 +$PSVPSCALE + 40 +1 + 9 +$OLESTARTUP +290 + 0 + 9 +$SORTENTS +280 + 127 + 9 +$INDEXCTL +280 + 0 + 9 +$HIDETEXT +280 + 1 + 9 +$XCLIPFRAME +290 + 0 + 9 +$HALOGAP +280 + 0 + 9 +$OBSCOLOR + 70 + 257 + 9 +$OBSLTYPE +280 + 0 + 9 +$INTERSECTIONDISPLAY +280 + 0 + 9 +$INTERSECTIONCOLOR + 70 + 257 + 9 +$DIMASSOC +280 + 1 + 9 +$PROJECTNAME + 1 + + 9 +$CAMERADISPLAY +290 + 0 + 9 +$LENSLENGTH + 40 +50 + 9 +$CAMERAHEIGHT + 40 +0 + 9 +$STEPSPERSEC + 40 +2 + 9 +$STEPSIZE + 40 +50 + 9 +$3DDWFPREC + 40 +2 + 9 +$PSOLWIDTH + 40 +5 + 9 +$PSOLHEIGHT + 40 +80 + 9 +$LOFTANG1 + 40 +1.570796326794897 + 9 +$LOFTANG2 + 40 +1.570796326794897 + 9 +$LOFTMAG1 + 40 +0 + 9 +$LOFTMAG2 + 40 +0 + 9 +$LOFTPARAM + 70 + 7 + 9 +$LOFTNORMALS +280 + 1 + 9 +$LATITUDE + 40 +1 + 9 +$LONGITUDE + 40 +1 + 9 +$NORTHDIRECTION + 40 +0 + 9 +$TIMEZONE + 70 +-8000 + 9 +$LIGHTGLYPHDISPLAY +280 + 1 + 9 +$TILEMODELIGHTSYNCH +280 + 1 + 9 +$SOLIDHIST +280 + 1 + 9 +$SHOWHIST +280 + 1 + 9 +$DWFFRAME +280 + 2 + 9 +$DGNFRAME +280 + 0 + 9 +$REALWORLDSCALE +290 + 1 + 9 +$INTERFERECOLOR + 62 + 1 + 9 +$CSHADOW +280 + 0 + 9 +$SHADOWPLANELOCATION + 40 +0 + 0 +ENDSEC + 0 +SECTION + 2 +CLASSES + 0 +ENDSEC + 0 +SECTION + 2 +TABLES + 0 +TABLE + 2 +VPORT + 5 +8 +330 +0 +100 +AcDbSymbolTable + 70 + 1 + 0 +VPORT + 5 +31 +330 +2 +100 +AcDbSymbolTableRecord +100 +AcDbViewportTableRecord + 2 +*ACTIVE + 70 + 0 + 10 +0 + 20 +0 + 11 +1 + 21 +1 + 12 +77.42552384996769 + 22 +49.40235209118584 + 13 +0 + 23 +0 + 14 +10 + 24 +10 + 15 +10 + 25 +10 + 16 +0 + 26 +0 + 36 +1 + 17 +0 + 27 +0 + 37 +0 + 40 +110.645480981857 + 41 +2.526753864447087 + 42 +50 + 43 +0 + 44 +0 + 50 +0 + 51 +0 + 71 + 0 + 72 + 100 + 73 + 1 + 74 + 3 + 75 + 0 + 76 + 1 + 77 + 0 + 78 + 0 +281 + 0 + 65 + 1 +110 +0 +120 +0 +130 +0 +111 +1 +121 +0 +131 +0 +112 +0 +122 +1 +132 +0 + 79 + 0 +146 +0 +348 +10020 + 60 + 7 + 61 + 5 +292 +1 +282 + 1 +141 +0 +142 +0 + 63 + 250 +421 +3358443 + 0 +ENDTAB + 0 +TABLE + 2 +LTYPE + 5 +5 +330 +0 +100 +AcDbSymbolTable + 70 + 4 + 0 +LTYPE + 5 +14 +330 +5 +100 +AcDbSymbolTableRecord +100 +AcDbLinetypeTableRecord + 2 +ByBlock + 70 + 0 + 3 + + 72 + 65 + 73 + 0 + 40 +0 + 0 +LTYPE + 5 +15 +330 +5 +100 +AcDbSymbolTableRecord +100 +AcDbLinetypeTableRecord + 2 +ByLayer + 70 + 0 + 3 + + 72 + 65 + 73 + 0 + 40 +0 + 0 +LTYPE + 5 +16 +330 +5 +100 +AcDbSymbolTableRecord +100 +AcDbLinetypeTableRecord + 2 +Continuous + 70 + 0 + 3 +Solid line + 72 + 65 + 73 + 0 + 40 +0 + 0 +LTYPE + 5 +32 +330 +5 +100 +AcDbSymbolTableRecord +100 +AcDbLinetypeTableRecord + 2 +DOT + 70 + 0 + 3 +Dot . . . . . . . . . . . . . . . . . . . . . . + 72 + 65 + 73 + 2 + 40 +6.35 + 49 +0 + 74 + 0 + 49 +-6.35 + 74 + 0 + 0 +LTYPE + 5 +33 +330 +5 +100 +AcDbSymbolTableRecord +100 +AcDbLinetypeTableRecord + 2 +DOTTINY + 70 + 0 + 3 +Dot (.15x) ..................................... + 72 + 65 + 73 + 2 + 40 +0.9525 + 49 +0 + 74 + 0 + 49 +-0.9525 + 74 + 0 + 0 +LTYPE + 5 +34 +330 +5 +100 +AcDbSymbolTableRecord +100 +AcDbLinetypeTableRecord + 2 +DOT2 + 70 + 0 + 3 +Dot (.5x) ..................................... + 72 + 65 + 73 + 2 + 40 +3.175 + 49 +0 + 74 + 0 + 49 +-3.175 + 74 + 0 + 0 +LTYPE + 5 +35 +330 +5 +100 +AcDbSymbolTableRecord +100 +AcDbLinetypeTableRecord + 2 +DOTX2 + 70 + 0 + 3 +Dot (2x) . . . . . . . . . . . . . + 72 + 65 + 73 + 2 + 40 +12.7 + 49 +0 + 74 + 0 + 49 +-12.7 + 74 + 0 + 0 +LTYPE + 5 +36 +330 +5 +100 +AcDbSymbolTableRecord +100 +AcDbLinetypeTableRecord + 2 +DASHED + 70 + 0 + 3 +Dashed _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ + 72 + 65 + 73 + 2 + 40 +19.05 + 49 +12.7 + 74 + 0 + 49 +-6.35 + 74 + 0 + 0 +LTYPE + 5 +37 +330 +5 +100 +AcDbSymbolTableRecord +100 +AcDbLinetypeTableRecord + 2 +DASHEDTINY + 70 + 0 + 3 +Dashed (.15x) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ + 72 + 65 + 73 + 2 + 40 +2.8575 + 49 +1.905 + 74 + 0 + 49 +-0.9525 + 74 + 0 + 0 +LTYPE + 5 +38 +330 +5 +100 +AcDbSymbolTableRecord +100 +AcDbLinetypeTableRecord + 2 +DASHED2 + 70 + 0 + 3 +Dashed (.5x) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ + 72 + 65 + 73 + 2 + 40 +9.524999999999999 + 49 +6.35 + 74 + 0 + 49 +-3.175 + 74 + 0 + 0 +LTYPE + 5 +39 +330 +5 +100 +AcDbSymbolTableRecord +100 +AcDbLinetypeTableRecord + 2 +DASHEDX2 + 70 + 0 + 3 +Dashed (2x) ____ ____ ____ ____ ____ ___ + 72 + 65 + 73 + 2 + 40 +38.09999999999999 + 49 +25.4 + 74 + 0 + 49 +-12.7 + 74 + 0 + 0 +LTYPE + 5 +3A +330 +5 +100 +AcDbSymbolTableRecord +100 +AcDbLinetypeTableRecord + 2 +DASHDOT + 70 + 0 + 3 +Dash dot __ . __ . __ . __ . __ . __ . __ . __ + 72 + 65 + 73 + 4 + 40 +25.4 + 49 +12.7 + 74 + 0 + 49 +-6.35 + 74 + 0 + 49 +0 + 74 + 0 + 49 +-6.35 + 74 + 0 + 0 +LTYPE + 5 +3B +330 +5 +100 +AcDbSymbolTableRecord +100 +AcDbLinetypeTableRecord + 2 +DASHDOTTINY + 70 + 0 + 3 +Dash dot (.15x) _._._._._._._._._._._._._._._. + 72 + 65 + 73 + 4 + 40 +3.81 + 49 +1.905 + 74 + 0 + 49 +-0.9525 + 74 + 0 + 49 +0 + 74 + 0 + 49 +-0.9525 + 74 + 0 + 0 +LTYPE + 5 +3C +330 +5 +100 +AcDbSymbolTableRecord +100 +AcDbLinetypeTableRecord + 2 +DASHDOT2 + 70 + 0 + 3 +Dash dot (.5x) _._._._._._._._._._._._._._._. + 72 + 65 + 73 + 4 + 40 +12.7 + 49 +6.35 + 74 + 0 + 49 +-3.175 + 74 + 0 + 49 +0 + 74 + 0 + 49 +-3.175 + 74 + 0 + 0 +LTYPE + 5 +3D +330 +5 +100 +AcDbSymbolTableRecord +100 +AcDbLinetypeTableRecord + 2 +DASHDOTX2 + 70 + 0 + 3 +Dash dot (2x) ____ . ____ . ____ . ___ + 72 + 65 + 73 + 4 + 40 +50.8 + 49 +25.4 + 74 + 0 + 49 +-12.7 + 74 + 0 + 49 +0 + 74 + 0 + 49 +-12.7 + 74 + 0 + 0 +LTYPE + 5 +3E +330 +5 +100 +AcDbSymbolTableRecord +100 +AcDbLinetypeTableRecord + 2 +DIVIDE + 70 + 0 + 3 +Divide ____ . . ____ . . ____ . . ____ . . ____ + 72 + 65 + 73 + 6 + 40 +31.75 + 49 +12.7 + 74 + 0 + 49 +-6.35 + 74 + 0 + 49 +0 + 74 + 0 + 49 +-6.35 + 74 + 0 + 49 +0 + 74 + 0 + 49 +-6.35 + 74 + 0 + 0 +LTYPE + 5 +3F +330 +5 +100 +AcDbSymbolTableRecord +100 +AcDbLinetypeTableRecord + 2 +DIVIDETINY + 70 + 0 + 3 +Divide (.15x) __..__..__..__..__..__..__..__.._ + 72 + 65 + 73 + 6 + 40 +4.7625 + 49 +1.905 + 74 + 0 + 49 +-0.9525 + 74 + 0 + 49 +0 + 74 + 0 + 49 +-0.9525 + 74 + 0 + 49 +0 + 74 + 0 + 49 +-0.9525 + 74 + 0 + 0 +LTYPE + 5 +40 +330 +5 +100 +AcDbSymbolTableRecord +100 +AcDbLinetypeTableRecord + 2 +DIVIDE2 + 70 + 0 + 3 +Divide (.5x) __..__..__..__..__..__..__..__.._ + 72 + 65 + 73 + 6 + 40 +15.875 + 49 +6.35 + 74 + 0 + 49 +-3.175 + 74 + 0 + 49 +0 + 74 + 0 + 49 +-3.175 + 74 + 0 + 49 +0 + 74 + 0 + 49 +-3.175 + 74 + 0 + 0 +LTYPE + 5 +41 +330 +5 +100 +AcDbSymbolTableRecord +100 +AcDbLinetypeTableRecord + 2 +DIVIDEX2 + 70 + 0 + 3 +Divide (2x) ________ . . ________ . . _ + 72 + 65 + 73 + 6 + 40 +63.5 + 49 +25.4 + 74 + 0 + 49 +-12.7 + 74 + 0 + 49 +0 + 74 + 0 + 49 +-12.7 + 74 + 0 + 49 +0 + 74 + 0 + 49 +-12.7 + 74 + 0 + 0 +LTYPE + 5 +42 +330 +5 +100 +AcDbSymbolTableRecord +100 +AcDbLinetypeTableRecord + 2 +BORDER + 70 + 0 + 3 +Border __ __ . __ __ . __ __ . __ __ . __ __ . + 72 + 65 + 73 + 6 + 40 +44.45 + 49 +12.7 + 74 + 0 + 49 +-6.35 + 74 + 0 + 49 +12.7 + 74 + 0 + 49 +-6.35 + 74 + 0 + 49 +0 + 74 + 0 + 49 +-6.35 + 74 + 0 + 0 +LTYPE + 5 +43 +330 +5 +100 +AcDbSymbolTableRecord +100 +AcDbLinetypeTableRecord + 2 +BORDERTINY + 70 + 0 + 3 +Border (.15x) __.__.__.__.__.__.__.__.__.__.__. + 72 + 65 + 73 + 6 + 40 +6.6675 + 49 +1.905 + 74 + 0 + 49 +-0.9525 + 74 + 0 + 49 +1.905 + 74 + 0 + 49 +-0.9525 + 74 + 0 + 49 +0 + 74 + 0 + 49 +-0.9525 + 74 + 0 + 0 +LTYPE + 5 +44 +330 +5 +100 +AcDbSymbolTableRecord +100 +AcDbLinetypeTableRecord + 2 +BORDER2 + 70 + 0 + 3 +Border (.5x) __.__.__.__.__.__.__.__.__.__.__. + 72 + 65 + 73 + 6 + 40 +22.225 + 49 +6.35 + 74 + 0 + 49 +-3.175 + 74 + 0 + 49 +6.35 + 74 + 0 + 49 +-3.175 + 74 + 0 + 49 +0 + 74 + 0 + 49 +-3.175 + 74 + 0 + 0 +LTYPE + 5 +45 +330 +5 +100 +AcDbSymbolTableRecord +100 +AcDbLinetypeTableRecord + 2 +BORDERX2 + 70 + 0 + 3 +Border (2x) ____ ____ . ____ ____ . ___ + 72 + 65 + 73 + 6 + 40 +88.89999999999999 + 49 +25.4 + 74 + 0 + 49 +-12.7 + 74 + 0 + 49 +25.4 + 74 + 0 + 49 +-12.7 + 74 + 0 + 49 +0 + 74 + 0 + 49 +-12.7 + 74 + 0 + 0 +LTYPE + 5 +46 +330 +5 +100 +AcDbSymbolTableRecord +100 +AcDbLinetypeTableRecord + 2 +CENTER + 70 + 0 + 3 +Center ____ _ ____ _ ____ _ ____ _ ____ _ ____ + 72 + 65 + 73 + 4 + 40 +50.8 + 49 +31.75 + 74 + 0 + 49 +-6.35 + 74 + 0 + 49 +6.35 + 74 + 0 + 49 +-6.35 + 74 + 0 + 0 +LTYPE + 5 +47 +330 +5 +100 +AcDbSymbolTableRecord +100 +AcDbLinetypeTableRecord + 2 +CENTERTINY + 70 + 0 + 3 +Center (.15x) ___ _ ___ _ ___ _ ___ _ ___ _ ___ + 72 + 65 + 73 + 4 + 40 +7.619999999999999 + 49 +4.7625 + 74 + 0 + 49 +-0.9525 + 74 + 0 + 49 +0.9525 + 74 + 0 + 49 +-0.9525 + 74 + 0 + 0 +LTYPE + 5 +48 +330 +5 +100 +AcDbSymbolTableRecord +100 +AcDbLinetypeTableRecord + 2 +CENTER2 + 70 + 0 + 3 +Center (.5x) ___ _ ___ _ ___ _ ___ _ ___ _ ___ + 72 + 65 + 73 + 4 + 40 +28.575 + 49 +19.05 + 74 + 0 + 49 +-3.175 + 74 + 0 + 49 +3.175 + 74 + 0 + 49 +-3.175 + 74 + 0 + 0 +LTYPE + 5 +49 +330 +5 +100 +AcDbSymbolTableRecord +100 +AcDbLinetypeTableRecord + 2 +CENTERX2 + 70 + 0 + 3 +Center (2x) ________ __ ________ __ _____ + 72 + 65 + 73 + 4 + 40 +101.6 + 49 +63.5 + 74 + 0 + 49 +-12.7 + 74 + 0 + 49 +12.7 + 74 + 0 + 49 +-12.7 + 74 + 0 + 0 +ENDTAB + 0 +TABLE + 2 +LAYER + 5 +2 +330 +0 +100 +AcDbSymbolTable + 70 + 1 + 0 +LAYER + 5 +10 +330 +2 +100 +AcDbSymbolTableRecord +100 +AcDbLayerTableRecord + 2 +0 + 70 + 0 + 62 + 7 + 6 +CONTINUOUS +370 + 0 +390 +F + 0 +LAYER + 5 +4A +330 +2 +100 +AcDbSymbolTableRecord +100 +AcDbLayerTableRecord + 2 +Layer 1 + 70 + 0 + 62 + 7 + 6 +CONTINUOUS +370 + -3 +390 +F + 0 +ENDTAB + 0 +TABLE + 2 +STYLE + 5 +3 +330 +0 +100 +AcDbSymbolTable + 70 + 3 + 0 +STYLE + 5 +4B +330 +2 +100 +AcDbSymbolTableRecord +100 +AcDbTextStyleTableRecord + 2 +Standard + 70 + 0 + 40 +0 + 41 +1 + 50 +0 + 71 + 0 + 42 +1 + 3 +txt + 4 + + 0 +ENDTAB + 0 +TABLE + 2 +VIEW + 5 +6 +330 +0 +100 +AcDbSymbolTable + 70 + 0 + 0 +ENDTAB + 0 +TABLE + 2 +UCS + 5 +7 +330 +0 +100 +AcDbSymbolTable + 70 + 0 + 0 +ENDTAB + 0 +TABLE + 2 +APPID + 5 +9 +330 +0 +100 +AcDbSymbolTable + 70 + 1 + 0 +APPID + 5 +12 +330 +9 +100 +AcDbSymbolTableRecord +100 +AcDbRegAppTableRecord + 2 +ACAD + 70 + 0 + 0 +APPID + 5 +4C +330 +9 +100 +AcDbSymbolTableRecord +100 +AcDbRegAppTableRecord + 2 +LibreCad + 70 + 0 + 0 +ENDTAB + 0 +TABLE + 2 +DIMSTYLE + 5 +A +330 +0 +100 +AcDbSymbolTable + 70 + 1 +100 +AcDbDimStyleTable + 71 + 1 + 0 +DIMSTYLE +105 +4D +330 +A +100 +AcDbSymbolTableRecord +100 +AcDbDimStyleTableRecord + 2 +Standard + 70 + 0 + 40 +2.5 + 41 +2.5 + 42 +0.625 + 43 +0.38 + 44 +1.25 + 45 +0 + 46 +0 + 47 +0 + 48 +0 + 49 +1 +140 +2.5 +141 +0.09 +142 +0 +143 +25.4 +144 +1 +145 +0 +146 +1 +147 +0.625 +148 +0 + 71 + 0 + 72 + 0 + 73 + 0 + 74 + 1 + 75 + 0 + 76 + 0 + 77 + 0 + 78 + 8 + 79 + 0 +170 + 0 +171 + 2 +172 + 0 +173 + 0 +174 + 0 +175 + 0 +176 + 0 +177 + 0 +178 + 0 +179 + 0 +271 + 2 +272 + 4 +273 + 2 +274 + 2 +275 + 0 +276 + 0 +277 + 2 +278 + 44 +279 + 0 +280 + 0 +281 + 0 +282 + 0 +283 + 1 +284 + 0 +285 + 0 +286 + 0 +288 + 0 +289 + 3 +340 +STANDARD +341 + +371 + -2 +372 + -2 + 0 +ENDTAB + 0 +TABLE + 2 +BLOCK_RECORD + 5 +1 +330 +0 +100 +AcDbSymbolTable + 70 + 2 + 0 +BLOCK_RECORD + 5 +1F +330 +1 +100 +AcDbSymbolTableRecord +100 +AcDbBlockTableRecord + 2 +*Model_Space + 70 + 0 +280 + 1 +281 + 0 + 0 +BLOCK_RECORD + 5 +1E +330 +1 +100 +AcDbSymbolTableRecord +100 +AcDbBlockTableRecord + 2 +*Paper_Space + 70 + 0 +280 + 1 +281 + 0 + 0 +ENDTAB + 0 +ENDSEC + 0 +SECTION + 2 +BLOCKS + 0 +BLOCK + 5 +20 +330 +1F +100 +AcDbEntity + 8 +0 +100 +AcDbBlockBegin + 2 +*Model_Space + 70 + 0 + 10 +0 + 20 +0 + 30 +0 + 3 +*Model_Space + 1 + + 0 +ENDBLK + 5 +21 +330 +1F +100 +AcDbEntity + 8 +0 +100 +AcDbBlockEnd + 0 +BLOCK + 5 +1C +330 +1B +100 +AcDbEntity + 8 +0 +100 +AcDbBlockBegin + 2 +*Paper_Space + 70 + 0 + 10 +0 + 20 +0 + 30 +0 + 3 +*Paper_Space + 1 + + 0 +ENDBLK + 5 +1D +330 +1F +100 +AcDbEntity + 8 +0 +100 +AcDbBlockEnd + 0 +ENDSEC + 0 +SECTION + 2 +ENTITIES + 0 +LINE + 5 +4E +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +55.1401 + 20 +17.6753 + 11 +55.647222 + 21 +17.844803 + 0 +LINE + 5 +4F +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +55.647222 + 20 +17.844803 + 11 +55.1401 + 21 +17.6753 + 0 +LINE + 5 +50 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +55.6472 + 20 +17.8448 + 11 +56.070255 + 21 +18.267858 + 0 +LINE + 5 +51 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +56.070255 + 20 +18.267858 + 11 +55.6472 + 21 +17.8448 + 0 +LINE + 5 +52 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +56.0703 + 20 +18.2678 + 11 +56.154364 + 21 +18.690855 + 0 +LINE + 5 +53 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +56.154364 + 20 +18.690855 + 11 +56.0703 + 21 +18.2678 + 0 +LINE + 5 +54 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +66.9802 + 20 +58.2696 + 11 +66.13407599999999 + 21 +59.115713 + 0 +LINE + 5 +55 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +66.13407599999999 + 20 +59.115713 + 11 +66.9802 + 21 +58.2696 + 0 +LINE + 5 +56 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +66.1341 + 20 +59.1157 + 11 +65.203923 + 21 +59.622818 + 0 +LINE + 5 +57 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +65.203923 + 20 +59.622818 + 11 +66.1341 + 21 +59.1157 + 0 +LINE + 5 +58 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +65.2039 + 20 +59.6229 + 11 +64.02016 + 21 +59.876463 + 0 +LINE + 5 +59 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +64.02016 + 20 +59.876463 + 11 +65.2039 + 21 +59.6229 + 0 +LINE + 5 +5A +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +64.0202 + 20 +59.8764 + 11 +63.2581 + 21 +59.8764 + 0 +LINE + 5 +5B +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +63.2581 + 20 +59.8764 + 11 +64.0202 + 21 +59.8764 + 0 +LINE + 5 +5C +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +59.8764 + 20 +10.5715 + 11 +59.8764 + 21 +11.5871 + 0 +LINE + 5 +5D +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +59.8764 + 20 +11.5871 + 11 +59.8764 + 21 +10.5715 + 0 +LINE + 5 +5E +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +59.8764 + 20 +11.5871 + 11 +60.298086 + 21 +12.517277 + 0 +LINE + 5 +5F +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +60.298086 + 20 +12.517277 + 11 +59.8764 + 21 +11.5871 + 0 +LINE + 5 +60 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +60.2981 + 20 +12.5173 + 11 +60.890654 + 21 +13.277981 + 0 +LINE + 5 +61 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +60.890654 + 20 +13.277981 + 11 +60.2981 + 21 +12.5173 + 0 +LINE + 5 +62 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +60.8907 + 20 +13.278 + 11 +61.820877 + 21 +13.785118 + 0 +LINE + 5 +63 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +61.820877 + 20 +13.785118 + 11 +60.8907 + 21 +13.278 + 0 +LINE + 5 +64 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +61.8208 + 20 +13.7851 + 11 +62.750977 + 21 +13.954596 + 0 +LINE + 5 +65 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +62.750977 + 20 +13.954596 + 11 +61.8208 + 21 +13.7851 + 0 +LINE + 5 +66 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +62.751 + 20 +13.9546 + 11 +63.2581 + 21 +13.9546 + 0 +LINE + 5 +67 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +63.2581 + 20 +13.9546 + 11 +62.751 + 21 +13.9546 + 0 +LINE + 5 +68 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +15.5614 + 20 +66.9802 + 11 +14.71528 + 21 +66.13407599999999 + 0 +LINE + 5 +69 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +14.71528 + 20 +66.13407599999999 + 11 +15.5614 + 21 +66.9802 + 0 +LINE + 5 +6A +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +14.7152 + 20 +66.1341 + 11 +14.208082 + 21 +65.203923 + 0 +LINE + 5 +6B +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +14.208082 + 20 +65.203923 + 11 +14.7152 + 21 +66.1341 + 0 +LINE + 5 +6C +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +14.2081 + 20 +65.2039 + 11 +13.953161 + 21 +64.02016 + 0 +LINE + 5 +6D +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +13.953161 + 20 +64.02016 + 11 +14.2081 + 21 +65.2039 + 0 +LINE + 5 +6E +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +13.9532 + 20 +64.0202 + 11 +13.9532 + 21 +63.2595 + 0 +LINE + 5 +6F +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +13.9532 + 20 +63.2595 + 11 +13.9532 + 21 +64.0202 + 0 +LINE + 5 +70 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +6.84938 + 20 +15.5614 + 11 +7.611437 + 21 +14.715287 + 0 +LINE + 5 +71 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +7.611437 + 20 +14.715287 + 11 +6.84938 + 21 +15.5614 + 0 +LINE + 5 +72 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +7.61144 + 20 +14.7152 + 11 +8.625679999999999 + 21 +14.208082 + 0 +LINE + 5 +73 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +8.625679999999999 + 20 +14.208082 + 11 +7.61144 + 21 +14.7152 + 0 +LINE + 5 +74 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +8.62567 + 20 +14.2081 + 11 +9.725350000000001 + 21 +13.954537 + 0 +LINE + 5 +75 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +9.725350000000001 + 20 +13.954537 + 11 +8.62567 + 21 +14.2081 + 0 +LINE + 5 +76 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +9.725350000000001 + 20 +13.9546 + 11 +10.5715 + 21 +13.9546 + 0 +LINE + 5 +77 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +10.5715 + 20 +13.9546 + 11 +9.725350000000001 + 21 +13.9546 + 0 +LINE + 5 +78 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +63.2581 + 20 +59.8764 + 11 +62.2439 + 21 +59.8764 + 0 +LINE + 5 +79 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +62.2439 + 20 +59.8764 + 11 +63.2581 + 21 +59.8764 + 0 +LINE + 5 +7A +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +62.2439 + 20 +59.8764 + 11 +61.313716 + 21 +60.215402 + 0 +LINE + 5 +7B +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +61.313716 + 20 +60.215402 + 11 +62.2439 + 21 +59.8764 + 0 +LINE + 5 +7C +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +61.3137 + 20 +60.2154 + 11 +60.551647 + 21 +60.890638 + 0 +LINE + 5 +7D +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +60.551647 + 20 +60.890638 + 11 +61.3137 + 21 +60.2154 + 0 +LINE + 5 +7E +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +60.5517 + 20 +60.8907 + 11 +60.044582 + 21 +61.822256 + 0 +LINE + 5 +7F +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +60.044582 + 20 +61.822256 + 11 +60.5517 + 21 +60.8907 + 0 +LINE + 5 +80 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +60.0445 + 20 +61.8222 + 11 +59.790941 + 21 +62.752377 + 0 +LINE + 5 +81 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +59.790941 + 20 +62.752377 + 11 +60.0445 + 21 +61.8222 + 0 +LINE + 5 +82 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +59.791 + 20 +62.7524 + 11 +59.876432 + 21 +63.259518 + 0 +LINE + 5 +83 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +59.876432 + 20 +63.259518 + 11 +59.791 + 21 +62.7524 + 0 +LINE + 5 +84 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +63.2581 + 20 +13.9546 + 11 +64.4432 + 21 +13.9546 + 0 +LINE + 5 +85 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +64.4432 + 20 +13.9546 + 11 +63.2581 + 21 +13.9546 + 0 +LINE + 5 +86 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +64.4432 + 20 +13.9546 + 11 +65.5415 + 21 +14.292216 + 0 +LINE + 5 +87 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +65.5415 + 20 +14.292216 + 11 +64.4432 + 21 +13.9546 + 0 +LINE + 5 +88 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +65.5416 + 20 +14.2922 + 11 +66.471777 + 21 +14.968825 + 0 +LINE + 5 +89 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +66.471777 + 20 +14.968825 + 11 +65.5416 + 21 +14.2922 + 0 +LINE + 5 +8A +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +66.4717 + 20 +14.9688 + 11 +66.980198 + 21 +15.561354 + 0 +LINE + 5 +8B +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +66.980198 + 20 +15.561354 + 11 +66.4717 + 21 +14.9688 + 0 +LINE + 5 +8C +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +10.5715 + 20 +59.8764 + 11 +9.38635 + 21 +59.8764 + 0 +LINE + 5 +8D +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +9.38635 + 20 +59.8764 + 11 +10.5715 + 21 +59.8764 + 0 +LINE + 5 +8E +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +9.38635 + 20 +59.8764 + 11 +8.28805 + 21 +59.453342 + 0 +LINE + 5 +8F +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +8.28805 + 20 +59.453342 + 11 +9.38635 + 21 +59.8764 + 0 +LINE + 5 +90 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +8.28805 + 20 +59.4534 + 11 +7.357873 + 21 +58.862218 + 0 +LINE + 5 +91 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +7.357873 + 20 +58.862218 + 11 +8.28805 + 21 +59.4534 + 0 +LINE + 5 +92 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +7.35788 + 20 +58.8622 + 11 +6.849382 + 21 +58.269646 + 0 +LINE + 5 +93 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +6.849382 + 20 +58.269646 + 11 +7.35788 + 21 +58.8622 + 0 +LINE + 5 +94 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +55.1401 + 20 +56.1557 + 11 +18.6895 + 21 +56.1557 + 0 +LINE + 5 +95 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +18.6895 + 20 +56.1557 + 11 +55.1401 + 21 +56.1557 + 0 +LINE + 5 +96 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +59.8764 + 20 +63.2595 + 11 +59.8764 + 21 +64.44329999999999 + 0 +LINE + 5 +97 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +59.8764 + 20 +64.44329999999999 + 11 +59.8764 + 21 +63.2595 + 0 +LINE + 5 +98 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +59.8764 + 20 +64.44329999999999 + 11 +59.453342 + 21 +65.54298 + 0 +LINE + 5 +99 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +59.453342 + 20 +65.54298 + 11 +59.8764 + 21 +64.44329999999999 + 0 +LINE + 5 +9A +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +59.4534 + 20 +65.5429 + 11 +58.860849 + 21 +66.473077 + 0 +LINE + 5 +9B +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +58.860849 + 20 +66.473077 + 11 +59.4534 + 21 +65.5429 + 0 +LINE + 5 +9C +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +58.8608 + 20 +66.4731 + 11 +58.269615 + 21 +66.980222 + 0 +LINE + 5 +9D +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +58.269615 + 20 +66.980222 + 11 +58.8608 + 21 +66.4731 + 0 +LINE + 5 +9E +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +13.9532 + 20 +63.2595 + 11 +13.9532 + 21 +62.2439 + 0 +LINE + 5 +9F +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +13.9532 + 20 +62.2439 + 11 +13.9532 + 21 +63.2595 + 0 +LINE + 5 +A0 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +13.9532 + 20 +62.2439 + 11 +13.531521 + 21 +61.313723 + 0 +LINE + 5 +A1 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +13.531521 + 20 +61.313723 + 11 +13.9532 + 21 +62.2439 + 0 +LINE + 5 +A2 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +13.5315 + 20 +61.3137 + 11 +12.938942 + 21 +60.553022 + 0 +LINE + 5 +A3 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +12.938942 + 20 +60.553022 + 11 +13.5315 + 21 +61.3137 + 0 +LINE + 5 +A4 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +12.9389 + 20 +60.553 + 11 +12.00872 + 21 +60.045878 + 0 +LINE + 5 +A5 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +12.00872 + 20 +60.045878 + 11 +12.9389 + 21 +60.553 + 0 +LINE + 5 +A6 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +12.0088 + 20 +60.0459 + 11 +11.078623 + 21 +59.792341 + 0 +LINE + 5 +A7 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +11.078623 + 20 +59.792341 + 11 +12.0088 + 21 +60.0459 + 0 +LINE + 5 +A8 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +11.0786 + 20 +59.7924 + 11 +10.571482 + 21 +59.876463 + 0 +LINE + 5 +A9 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +10.571482 + 20 +59.876463 + 11 +11.0786 + 21 +59.7924 + 0 +LINE + 5 +AA +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +13.9532 + 20 +10.5715 + 11 +13.9532 + 21 +9.387740000000001 + 0 +LINE + 5 +AB +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +13.9532 + 20 +9.387740000000001 + 11 +13.9532 + 21 +10.5715 + 0 +LINE + 5 +AC +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +13.9532 + 20 +9.387740000000001 + 11 +14.292198 + 21 +8.28806 + 0 +LINE + 5 +AD +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +14.292198 + 20 +8.28806 + 11 +13.9532 + 21 +9.387740000000001 + 0 +LINE + 5 +AE +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +14.2922 + 20 +8.28806 + 11 +14.968821 + 21 +7.357883 + 0 +LINE + 5 +AF +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +14.968821 + 20 +7.357883 + 11 +14.2922 + 21 +8.28806 + 0 +LINE + 5 +B0 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +14.9688 + 20 +7.35788 + 11 +15.561358 + 21 +6.850762 + 0 +LINE + 5 +B1 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +15.561358 + 20 +6.850762 + 11 +14.9688 + 21 +7.35788 + 0 +LINE + 5 +B2 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +66.9802 + 20 +15.5614 + 11 +68.84054999999999 + 21 +18.52144 + 0 +LINE + 5 +B3 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +68.84054999999999 + 20 +18.52144 + 11 +66.9802 + 21 +15.5614 + 0 +LINE + 5 +B4 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +68.84059999999999 + 20 +18.5214 + 11 +70.44739 + 21 +21.65093 + 0 +LINE + 5 +B5 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +70.44739 + 20 +21.65093 + 11 +68.84059999999999 + 21 +18.5214 + 0 +LINE + 5 +B6 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +70.4474 + 20 +21.6509 + 11 +71.80064 + 21 +24.94855 + 0 +LINE + 5 +B7 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +71.80064 + 20 +24.94855 + 11 +70.4474 + 21 +21.6509 + 0 +LINE + 5 +B8 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +71.8006 + 20 +24.9486 + 11 +72.730777 + 21 +28.33169 + 0 +LINE + 5 +B9 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +72.730777 + 20 +28.33169 + 11 +71.8006 + 21 +24.9486 + 0 +LINE + 5 +BA +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +72.7308 + 20 +28.3317 + 11 +73.40741800000001 + 21 +31.79886 + 0 +LINE + 5 +BB +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +73.40741800000001 + 20 +31.79886 + 11 +72.7308 + 21 +28.3317 + 0 +LINE + 5 +BC +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +73.4074 + 20 +31.7988 + 11 +73.745023 + 21 +35.35139 + 0 +LINE + 5 +BD +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +73.745023 + 20 +35.35139 + 11 +73.4074 + 21 +31.7988 + 0 +LINE + 5 +BE +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +73.745 + 20 +35.3514 + 11 +73.745 + 21 +38.8186 + 0 +LINE + 5 +BF +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +73.745 + 20 +38.8186 + 11 +73.745 + 21 +35.3514 + 0 +LINE + 5 +C0 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +73.745 + 20 +38.8186 + 11 +73.32194200000001 + 21 +42.36981 + 0 +LINE + 5 +C1 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +73.32194200000001 + 20 +42.36981 + 11 +73.745 + 21 +38.8186 + 0 +LINE + 5 +C2 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +73.322 + 20 +42.3698 + 11 +72.645375 + 21 +45.83833 + 0 +LINE + 5 +C3 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +72.645375 + 20 +45.83833 + 11 +73.322 + 21 +42.3698 + 0 +LINE + 5 +C4 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +72.6454 + 20 +45.8383 + 11 +71.63117 + 21 +49.22001 + 0 +LINE + 5 +C5 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +71.63117 + 20 +49.22001 + 11 +72.6454 + 21 +45.8383 + 0 +LINE + 5 +C6 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +71.6311 + 20 +49.22 + 11 +70.27786 + 21 +52.51904 + 0 +LINE + 5 +C7 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +70.27786 + 20 +52.51904 + 11 +71.6311 + 21 +49.22 + 0 +LINE + 5 +C8 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +70.2779 + 20 +52.5191 + 11 +68.67111 + 21 +55.64863 + 0 +LINE + 5 +C9 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +68.67111 + 20 +55.64863 + 11 +70.2779 + 21 +52.5191 + 0 +LINE + 5 +CA +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +68.6711 + 20 +55.6486 + 11 +66.98023999999999 + 21 +58.26963 + 0 +LINE + 5 +CB +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +66.98023999999999 + 20 +58.26963 + 11 +68.6711 + 21 +55.6486 + 0 +LINE + 5 +CC +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +17.6753 + 20 +18.6909 + 11 +17.844799 + 21 +18.098349 + 0 +LINE + 5 +CD +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +17.844799 + 20 +18.098349 + 11 +17.6753 + 21 +18.6909 + 0 +LINE + 5 +CE +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +17.8448 + 20 +18.0983 + 11 +18.266483 + 21 +17.760674 + 0 +LINE + 5 +CF +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +18.266483 + 20 +17.760674 + 11 +17.8448 + 21 +18.0983 + 0 +LINE + 5 +D0 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +18.2665 + 20 +17.7607 + 11 +18.689558 + 21 +17.675261 + 0 +LINE + 5 +D1 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +18.689558 + 20 +17.675261 + 11 +18.2665 + 21 +17.7607 + 0 +LINE + 5 +D2 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +43.5535 + 20 +74.84610000000001 + 11 +40.0023 + 21 +75.26779999999999 + 0 +LINE + 5 +D3 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +40.0023 + 20 +75.26779999999999 + 11 +43.5535 + 21 +74.84610000000001 + 0 +LINE + 5 +D4 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +40.0023 + 20 +75.26779999999999 + 11 +36.36565 + 21 +75.43730600000001 + 0 +LINE + 5 +D5 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +36.36565 + 20 +75.43730600000001 + 11 +40.0023 + 21 +75.26779999999999 + 0 +LINE + 5 +D6 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +36.3657 + 20 +75.43729999999999 + 11 +32.72905 + 21 +75.183741 + 0 +LINE + 5 +D7 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +32.72905 + 20 +75.183741 + 11 +36.3657 + 21 +75.43729999999999 + 0 +LINE + 5 +D8 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +32.729 + 20 +75.1837 + 11 +30.27608 + 21 +74.84607699999999 + 0 +LINE + 5 +D9 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +30.27608 + 20 +74.84607699999999 + 11 +32.729 + 21 +75.1837 + 0 +LINE + 5 +DA +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +6.84938 + 20 +58.2696 + 11 +4.98902 + 21 +55.30956 + 0 +LINE + 5 +DB +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +4.98902 + 20 +55.30956 + 11 +6.84938 + 21 +58.2696 + 0 +LINE + 5 +DC +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +4.98902 + 20 +55.3096 + 11 +3.38222 + 21 +52.096 + 0 +LINE + 5 +DD +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +3.38222 + 20 +52.096 + 11 +4.98902 + 21 +55.3096 + 0 +LINE + 5 +DE +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +3.38222 + 20 +52.096 + 11 +2.02898 + 21 +48.88241 + 0 +LINE + 5 +DF +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +2.02898 + 20 +48.88241 + 11 +3.38222 + 21 +52.096 + 0 +LINE + 5 +E0 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +2.02899 + 20 +48.8824 + 11 +1.01475 + 21 +45.49931 + 0 +LINE + 5 +E1 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +1.01475 + 20 +45.49931 + 11 +2.02899 + 21 +48.8824 + 0 +LINE + 5 +E2 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +1.01475 + 20 +45.4993 + 11 +0.422192 + 21 +42.03214 + 0 +LINE + 5 +E3 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +0.422192 + 20 +42.03214 + 11 +1.01475 + 21 +45.4993 + 0 +LINE + 5 +E4 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +0.42219 + 20 +42.0322 + 11 +0.08457099999999999 + 21 +38.47961 + 0 +LINE + 5 +E5 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +0.08457099999999999 + 20 +38.47961 + 11 +0.42219 + 21 +42.0322 + 0 +LINE + 5 +E6 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +0.08457099999999999 + 20 +38.4796 + 11 +0.08457099999999999 + 21 +34.9284 + 0 +LINE + 5 +E7 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +0.08457099999999999 + 20 +34.9284 + 11 +0.08457099999999999 + 21 +38.4796 + 0 +LINE + 5 +E8 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +0.08457099999999999 + 20 +34.9284 + 11 +0.42219 + 21 +31.46124 + 0 +LINE + 5 +E9 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +0.42219 + 20 +31.46124 + 11 +0.08457099999999999 + 21 +34.9284 + 0 +LINE + 5 +EA +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +0.42219 + 20 +31.4612 + 11 +1.184247 + 21 +27.99267 + 0 +LINE + 5 +EB +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +1.184247 + 20 +27.99267 + 11 +0.42219 + 21 +31.4612 + 0 +LINE + 5 +EC +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +1.18425 + 20 +27.9927 + 11 +2.19849 + 21 +24.61099 + 0 +LINE + 5 +ED +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +2.19849 + 20 +24.61099 + 11 +1.18425 + 21 +27.9927 + 0 +LINE + 5 +EE +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +2.19849 + 20 +24.611 + 11 +3.46767 + 21 +21.31196 + 0 +LINE + 5 +EF +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +3.46767 + 20 +21.31196 + 11 +2.19849 + 21 +24.611 + 0 +LINE + 5 +F0 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +3.46766 + 20 +21.3119 + 11 +5.15852 + 21 +18.18375 + 0 +LINE + 5 +F1 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +5.15852 + 20 +18.18375 + 11 +3.46766 + 21 +21.3119 + 0 +LINE + 5 +F2 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +5.15852 + 20 +18.1838 + 11 +6.84938 + 21 +15.56139 + 0 +LINE + 5 +F3 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +6.84938 + 20 +15.56139 + 11 +5.15852 + 21 +18.1838 + 0 +LINE + 5 +F4 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +17.6753 + 20 +55.1401 + 11 +17.6753 + 21 +18.6909 + 0 +LINE + 5 +F5 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +17.6753 + 20 +18.6909 + 11 +17.6753 + 21 +55.1401 + 0 +LINE + 5 +F6 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +27.4856 + 20 +72.56270000000001 + 11 +24.10251 + 21 +71.46302 + 0 +LINE + 5 +F7 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +24.10251 + 20 +71.46302 + 11 +27.4856 + 21 +72.56270000000001 + 0 +LINE + 5 +F8 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +24.1025 + 20 +71.46299999999999 + 11 +20.80347 + 21 +70.10977 + 0 +LINE + 5 +F9 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +20.80347 + 20 +70.10977 + 11 +24.1025 + 21 +71.46299999999999 + 0 +LINE + 5 +FA +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +20.8034 + 20 +70.10980000000001 + 11 +17.75931 + 21 +68.41755999999999 + 0 +LINE + 5 +FB +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +17.75931 + 20 +68.41755999999999 + 11 +20.8034 + 21 +70.10980000000001 + 0 +LINE + 5 +FC +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +17.7593 + 20 +68.4175 + 11 +15.56132 + 21 +66.9802 + 0 +LINE + 5 +FD +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +15.56132 + 20 +66.9802 + 11 +17.7593 + 21 +68.4175 + 0 +LINE + 5 +FE +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +56.1543 + 20 +55.1401 + 11 +55.986184 + 21 +55.648598 + 0 +LINE + 5 +FF +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +55.986184 + 20 +55.648598 + 11 +56.1543 + 21 +55.1401 + 0 +LINE + 5 +100 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +55.9862 + 20 +55.6486 + 11 +55.563135 + 21 +56.070279 + 0 +LINE + 5 +101 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +55.563135 + 20 +56.070279 + 11 +55.9862 + 21 +55.6486 + 0 +LINE + 5 +102 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +55.5631 + 20 +56.0703 + 11 +55.140042 + 21 +56.155743 + 0 +LINE + 5 +103 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +55.140042 + 20 +56.155743 + 11 +55.5631 + 21 +56.0703 + 0 +LINE + 5 +104 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +56.1543 + 20 +18.6909 + 11 +56.1543 + 21 +55.1401 + 0 +LINE + 5 +105 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +56.1543 + 20 +55.1401 + 11 +56.1543 + 21 +18.6909 + 0 +LINE + 5 +106 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +30.2761 + 20 +74.84610000000001 + 11 +29.17643 + 21 +74.507098 + 0 +LINE + 5 +107 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +29.17643 + 20 +74.507098 + 11 +30.2761 + 21 +74.84610000000001 + 0 +LINE + 5 +108 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +29.1764 + 20 +74.50709999999999 + 11 +28.33028 + 21 +73.830482 + 0 +LINE + 5 +109 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +28.33028 + 20 +73.830482 + 11 +29.1764 + 21 +74.50709999999999 + 0 +LINE + 5 +10A +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +28.3303 + 20 +73.8305 + 11 +27.653682 + 21 +72.900323 + 0 +LINE + 5 +10B +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +27.653682 + 20 +72.900323 + 11 +28.3303 + 21 +73.8305 + 0 +LINE + 5 +10C +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +27.6537 + 20 +72.9003 + 11 +27.48558 + 21 +72.56267699999999 + 0 +LINE + 5 +10D +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +27.48558 + 20 +72.56267699999999 + 11 +27.6537 + 21 +72.9003 + 0 +LINE + 5 +10E +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +10.5715 + 20 +13.9546 + 11 +11.5857 + 21 +13.9546 + 0 +LINE + 5 +10F +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +11.5857 + 20 +13.9546 + 11 +10.5715 + 21 +13.9546 + 0 +LINE + 5 +110 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +11.5857 + 20 +13.9546 + 11 +12.51588 + 21 +13.531545 + 0 +LINE + 5 +111 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +12.51588 + 20 +13.531545 + 11 +11.5857 + 21 +13.9546 + 0 +LINE + 5 +112 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +12.5159 + 20 +13.5315 + 11 +13.277957 + 21 +12.940315 + 0 +LINE + 5 +113 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +13.277957 + 20 +12.940315 + 11 +12.5159 + 21 +13.5315 + 0 +LINE + 5 +114 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +13.2779 + 20 +12.9403 + 11 +13.785018 + 21 +12.008747 + 0 +LINE + 5 +115 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +13.785018 + 20 +12.008747 + 11 +13.2779 + 21 +12.9403 + 0 +LINE + 5 +116 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +13.7851 + 20 +12.0088 + 11 +13.95322 + 21 +10.99456 + 0 +LINE + 5 +117 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +13.95322 + 20 +10.99456 + 11 +13.7851 + 21 +12.0088 + 0 +LINE + 5 +118 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +13.9532 + 20 +10.9945 + 11 +13.9532 + 21 +10.5715 + 0 +LINE + 5 +119 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +13.9532 + 20 +10.5715 + 11 +13.9532 + 21 +10.9945 + 0 +LINE + 5 +11A +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +15.5614 + 20 +6.85076 + 11 +18.52005 + 21 +4.99041 + 0 +LINE + 5 +11B +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +18.52005 + 20 +4.99041 + 11 +15.5614 + 21 +6.85076 + 0 +LINE + 5 +11C +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +18.52 + 20 +4.99041 + 11 +21.64953 + 21 +3.29817 + 0 +LINE + 5 +11D +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +21.64953 + 20 +3.29817 + 11 +18.52 + 21 +4.99041 + 0 +LINE + 5 +11E +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +21.6495 + 20 +3.29817 + 11 +24.94853 + 21 +2.03037 + 0 +LINE + 5 +11F +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +24.94853 + 20 +2.03037 + 11 +21.6495 + 21 +3.29817 + 0 +LINE + 5 +120 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +24.9486 + 20 +2.03037 + 11 +28.33032 + 21 +1.01476 + 0 +LINE + 5 +121 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +28.33032 + 20 +1.01476 + 11 +24.9486 + 21 +2.03037 + 0 +LINE + 5 +122 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +28.3303 + 20 +1.01476 + 11 +31.79883 + 21 +0.423578 + 0 +LINE + 5 +123 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +31.79883 + 20 +0.423578 + 11 +28.3303 + 21 +1.01476 + 0 +LINE + 5 +124 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +31.7988 + 20 +0.423576 + 11 +35.35001 + 21 +0.084574 + 0 +LINE + 5 +125 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +35.35001 + 20 +0.084574 + 11 +31.7988 + 21 +0.423576 + 0 +LINE + 5 +126 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +35.35 + 20 +0.084574 + 11 +38.9026 + 21 +0.084574 + 0 +LINE + 5 +127 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +38.9026 + 20 +0.084574 + 11 +35.35 + 21 +0.084574 + 0 +LINE + 5 +128 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +38.9026 + 20 +0.084574 + 11 +42.36976 + 21 +0.423577 + 0 +LINE + 5 +129 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +42.36976 + 20 +0.423577 + 11 +38.9026 + 21 +0.084574 + 0 +LINE + 5 +12A +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +42.3698 + 20 +0.423576 + 11 +45.83696 + 21 +1.184257 + 0 +LINE + 5 +12B +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +45.83696 + 20 +1.184257 + 11 +42.3698 + 21 +0.423576 + 0 +LINE + 5 +12C +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +45.8369 + 20 +1.18426 + 11 +49.21999 + 21 +2.19988 + 0 +LINE + 5 +12D +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +49.21999 + 20 +2.19988 + 11 +45.8369 + 21 +1.18426 + 0 +LINE + 5 +12E +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +49.22 + 20 +2.19987 + 11 +52.51765 + 21 +3.46766 + 0 +LINE + 5 +12F +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +52.51765 + 20 +3.46766 + 11 +49.22 + 21 +2.19987 + 0 +LINE + 5 +130 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +52.5177 + 20 +3.46767 + 11 +55.64723 + 21 +5.15853 + 0 +LINE + 5 +131 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +55.64723 + 20 +5.15853 + 11 +52.5177 + 21 +3.46767 + 0 +LINE + 5 +132 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +55.6472 + 20 +5.15852 + 11 +58.26961 + 21 +6.85076 + 0 +LINE + 5 +133 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +58.26961 + 20 +6.85076 + 11 +55.6472 + 21 +5.15852 + 0 +LINE + 5 +134 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +58.2696 + 20 +6.85076 + 11 +59.114345 + 21 +7.611438 + 0 +LINE + 5 +135 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +59.114345 + 20 +7.611438 + 11 +58.2696 + 21 +6.85076 + 0 +LINE + 5 +136 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +59.1144 + 20 +7.61144 + 11 +59.621511 + 21 +8.62706 + 0 +LINE + 5 +137 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +59.621511 + 20 +8.62706 + 11 +59.1144 + 21 +7.61144 + 0 +LINE + 5 +138 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +59.6215 + 20 +8.62706 + 11 +59.876439 + 21 +9.72536 + 0 +LINE + 5 +139 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +59.876439 + 20 +9.72536 + 11 +59.6215 + 21 +8.62706 + 0 +LINE + 5 +13A +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +59.8764 + 20 +9.72536 + 11 +59.8764 + 21 +10.5715 + 0 +LINE + 5 +13B +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +59.8764 + 20 +10.5715 + 11 +59.8764 + 21 +9.72536 + 0 +LINE + 5 +13C +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +18.6895 + 20 +56.1557 + 11 +18.098322 + 21 +55.986194 + 0 +LINE + 5 +13D +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +18.098322 + 20 +55.986194 + 11 +18.6895 + 21 +56.1557 + 0 +LINE + 5 +13E +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +18.0983 + 20 +55.9862 + 11 +17.759302 + 21 +55.563142 + 0 +LINE + 5 +13F +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +17.759302 + 20 +55.563142 + 11 +18.0983 + 21 +55.9862 + 0 +LINE + 5 +140 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +17.7593 + 20 +55.5632 + 11 +17.675237 + 21 +55.140145 + 0 +LINE + 5 +141 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +17.675237 + 20 +55.140145 + 11 +17.7593 + 21 +55.5632 + 0 +LINE + 5 +142 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +18.6895 + 20 +17.6753 + 11 +55.1401 + 21 +17.6753 + 0 +LINE + 5 +143 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +55.1401 + 20 +17.6753 + 11 +18.6895 + 21 +17.6753 + 0 +LINE + 5 +144 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +58.2696 + 20 +66.9802 + 11 +55.30956 + 21 +68.84054999999999 + 0 +LINE + 5 +145 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +55.30956 + 20 +68.84054999999999 + 11 +58.2696 + 21 +66.9802 + 0 +LINE + 5 +146 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +55.3096 + 20 +68.84059999999999 + 11 +52.09464 + 21 +70.44739 + 0 +LINE + 5 +147 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +52.09464 + 20 +70.44739 + 11 +55.3096 + 21 +68.84059999999999 + 0 +LINE + 5 +148 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +52.0946 + 20 +70.4474 + 11 +48.881 + 21 +71.80064 + 0 +LINE + 5 +149 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +48.881 + 20 +71.80064 + 11 +52.0946 + 21 +70.4474 + 0 +LINE + 5 +14A +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +48.881 + 20 +71.8006 + 11 +46.34403 + 21 +72.562653 + 0 +LINE + 5 +14B +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +46.34403 + 20 +72.562653 + 11 +48.881 + 21 +71.8006 + 0 +LINE + 5 +14C +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +46.3441 + 20 +72.56270000000001 + 11 +45.836982 + 21 +73.492884 + 0 +LINE + 5 +14D +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +45.836982 + 20 +73.492884 + 11 +46.3441 + 21 +72.56270000000001 + 0 +LINE + 5 +14E +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +45.8369 + 20 +73.49290000000001 + 11 +44.990776 + 21 +74.25357099999999 + 0 +LINE + 5 +14F +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +44.990776 + 20 +74.25357099999999 + 11 +45.8369 + 21 +73.49290000000001 + 0 +LINE + 5 +150 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +44.9908 + 20 +74.2535 + 11 +43.97656 + 21 +74.760622 + 0 +LINE + 5 +151 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +43.97656 + 20 +74.760622 + 11 +44.9908 + 21 +74.2535 + 0 +LINE + 5 +152 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +43.9766 + 20 +74.7607 + 11 +43.553545 + 21 +74.846143 + 0 +LINE + 5 +153 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +43.553545 + 20 +74.846143 + 11 +43.9766 + 21 +74.7607 + 0 +ENDSEC + 0 +SECTION + 2 +OBJECTS + 0 +DICTIONARY + 5 +C +330 +0 +100 +AcDbDictionary +281 + 1 + 3 +ACAD_GROUP +350 +D + 0 +DICTIONARY + 5 +D +330 +C +100 +AcDbDictionary +281 + 1 + 0 +ENDSEC + 0 +EOF diff --git a/F1:F103/Canon_managing_device/kicad/silk.dxf b/F1:F103/Canon_managing_device/kicad/silk.dxf new file mode 100644 index 0000000..569bfd4 --- /dev/null +++ b/F1:F103/Canon_managing_device/kicad/silk.dxf @@ -0,0 +1,11294 @@ +999 +dxfrw 0.6.3 + 0 +SECTION + 2 +HEADER + 9 +$ACADVER + 1 +AC1021 + 9 +$DWGCODEPAGE + 3 +ANSI_1252 + 9 +$INSBASE + 10 +0 + 20 +0 + 30 +0 + 9 +$EXTMIN + 10 +-9.18876 + 20 +0.084574 + 30 +0 + 9 +$EXTMAX + 10 +73.745023 + 20 +85.5594 + 30 +0 + 9 +$LIMMIN + 10 +0 + 20 +0 + 9 +$LIMMAX + 10 +420 + 20 +297 + 9 +$ORTHOMODE + 70 + 0 + 9 +$REGENMODE + 70 + 1 + 9 +$FILLMODE + 70 + 1 + 9 +$QTEXTMODE + 70 + 0 + 9 +$MIRRTEXT + 70 + 0 + 9 +$LTSCALE + 40 +1 + 9 +$ATTMODE + 70 + 0 + 9 +$TEXTSIZE + 40 +2.5 + 9 +$TRACEWID + 40 +15.68 + 9 +$TEXTSTYLE + 7 +STANDARD + 9 +$CLAYER + 8 +0 + 9 +$CELTYPE + 6 +BYLAYER + 9 +$CECOLOR + 62 + 256 + 9 +$CELTSCALE + 40 +1 + 9 +$DISPSILH + 70 + 0 + 9 +$DIMSCALE + 40 +2.5 + 9 +$DIMASZ + 40 +2.5 + 9 +$DIMEXO + 40 +0.625 + 9 +$DIMDLI + 40 +3.75 + 9 +$DIMRND + 40 +0 + 9 +$DIMDLE + 40 +0 + 9 +$DIMEXE + 40 +1.25 + 9 +$DIMTP + 40 +0 + 9 +$DIMTM + 40 +0 + 9 +$DIMTXT + 40 +2.5 + 9 +$DIMCEN + 40 +2.5 + 9 +$DIMTSZ + 40 +0 + 9 +$DIMTOL + 70 + 0 + 9 +$DIMLIM + 70 + 0 + 9 +$DIMTIH + 70 + 0 + 9 +$DIMTOH + 70 + 0 + 9 +$DIMSE1 + 70 + 0 + 9 +$DIMSE2 + 70 + 0 + 9 +$DIMTAD + 70 + 1 + 9 +$DIMZIN + 70 + 8 + 9 +$DIMBLK + 1 + + 9 +$DIMASO + 70 + 1 + 9 +$DIMSHO + 70 + 1 + 9 +$DIMPOST + 1 + + 9 +$DIMAPOST + 1 + + 9 +$DIMALT + 70 + 0 + 9 +$DIMALTD + 70 + 3 + 9 +$DIMALTF + 40 +0.03937 + 9 +$DIMLFAC + 40 +1 + 9 +$DIMTOFL + 70 + 1 + 9 +$DIMTVP + 40 +0 + 9 +$DIMTIX + 70 + 0 + 9 +$DIMSOXD + 70 + 0 + 9 +$DIMSAH + 70 + 0 + 9 +$DIMBLK1 + 1 + + 9 +$DIMBLK2 + 1 + + 9 +$DIMSTYLE + 2 +Standard + 9 +$DIMCLRD + 70 + 0 + 9 +$DIMCLRE + 70 + 0 + 9 +$DIMCLRT + 70 + 0 + 9 +$DIMTFAC + 40 +1 + 9 +$DIMGAP + 40 +0.625 + 9 +$DIMJUST + 70 + 0 + 9 +$DIMSD1 + 70 + 0 + 9 +$DIMSD2 + 70 + 0 + 9 +$DIMTOLJ + 70 + 0 + 9 +$DIMTZIN + 70 + 8 + 9 +$DIMALTZ + 70 + 0 + 9 +$DIMALTTZ + 70 + 0 + 9 +$DIMUPT + 70 + 0 + 9 +$DIMDEC + 70 + 2 + 9 +$DIMTDEC + 70 + 2 + 9 +$DIMALTU + 70 + 2 + 9 +$DIMALTTD + 70 + 3 + 9 +$DIMTXSTY + 7 +STANDARD + 9 +$DIMAUNIT + 70 + 0 + 9 +$DIMADEC + 70 + 0 + 9 +$DIMALTRND + 40 +0 + 9 +$DIMAZIN + 70 + 0 + 9 +$DIMDSEP + 70 + 44 + 9 +$DIMATFIT + 70 + 3 + 9 +$DIMFRAC + 70 + 0 + 9 +$DIMLDRBLK + 1 +STANDARD + 9 +$DIMLUNIT + 70 + 2 + 9 +$DIMLWD + 70 + -2 + 9 +$DIMLWE + 70 + -2 + 9 +$DIMTMOVE + 70 + 0 + 9 +$DIMFXL + 40 +1 + 9 +$DIMFXLON + 70 + 0 + 9 +$DIMJOGANG + 40 +0.7854 + 9 +$DIMTFILL + 70 + 0 + 9 +$DIMTFILLCLR + 70 + 0 + 9 +$DIMARCSYM + 70 + 0 + 9 +$DIMLTYPE + 6 + + 9 +$DIMLTEX1 + 6 + + 9 +$DIMLTEX2 + 6 + + 9 +$LUNITS + 70 + 2 + 9 +$LUPREC + 70 + 4 + 9 +$SKETCHINC + 40 +1 + 9 +$FILLETRAD + 40 +0 + 9 +$AUNITS + 70 + 0 + 9 +$AUPREC + 70 + 2 + 9 +$MENU + 1 +. + 9 +$ELEVATION + 40 +0 + 9 +$PELEVATION + 40 +0 + 9 +$THICKNESS + 40 +0 + 9 +$LIMCHECK + 70 + 0 + 9 +$CHAMFERA + 40 +0 + 9 +$CHAMFERB + 40 +0 + 9 +$CHAMFERC + 40 +0 + 9 +$CHAMFERD + 40 +0 + 9 +$SKPOLY + 70 + 0 + 9 +$USRTIMER + 70 + 1 + 9 +$ANGBASE + 50 +0 + 9 +$ANGDIR + 70 + 0 + 9 +$PDMODE + 70 + 34 + 9 +$PDSIZE + 40 +0 + 9 +$PLINEWID + 40 +0 + 9 +$SPLFRAME + 70 + 0 + 9 +$SPLINETYPE + 70 + 2 + 9 +$SPLINESEGS + 70 + 8 + 9 +$HANDSEED + 5 +20000 + 9 +$SURFTAB1 + 70 + 6 + 9 +$SURFTAB2 + 70 + 6 + 9 +$SURFTYPE + 70 + 6 + 9 +$SURFU + 70 + 6 + 9 +$SURFV + 70 + 6 + 9 +$UCSBASE + 2 + + 9 +$UCSNAME + 2 + + 9 +$UCSORG + 10 +0 + 20 +0 + 30 +0 + 9 +$UCSXDIR + 10 +1 + 20 +0 + 30 +0 + 9 +$UCSYDIR + 10 +0 + 20 +1 + 30 +0 + 9 +$UCSORTHOREF + 2 + + 9 +$UCSORTHOVIEW + 70 + 0 + 9 +$UCSORGTOP + 10 +0 + 20 +0 + 30 +0 + 9 +$UCSORGBOTTOM + 10 +0 + 20 +0 + 30 +0 + 9 +$UCSORGLEFT + 10 +0 + 20 +0 + 30 +0 + 9 +$UCSORGRIGHT + 10 +0 + 20 +0 + 30 +0 + 9 +$UCSORGFRONT + 10 +0 + 20 +0 + 30 +0 + 9 +$UCSORGBACK + 10 +0 + 20 +0 + 30 +0 + 9 +$PUCSBASE + 2 + + 9 +$PUCSNAME + 2 + + 9 +$PUCSORG + 10 +0 + 20 +0 + 30 +0 + 9 +$PUCSXDIR + 10 +1 + 20 +0 + 30 +0 + 9 +$PUCSYDIR + 10 +0 + 20 +1 + 30 +0 + 9 +$PUCSORTHOREF + 2 + + 9 +$PUCSORTHOVIEW + 70 + 0 + 9 +$PUCSORGTOP + 10 +0 + 20 +0 + 30 +0 + 9 +$PUCSORGBOTTOM + 10 +0 + 20 +0 + 30 +0 + 9 +$PUCSORGLEFT + 10 +0 + 20 +0 + 30 +0 + 9 +$PUCSORGRIGHT + 10 +0 + 20 +0 + 30 +0 + 9 +$PUCSORGFRONT + 10 +0 + 20 +0 + 30 +0 + 9 +$PUCSORGBACK + 10 +0 + 20 +0 + 30 +0 + 9 +$USERI1 + 70 + 0 + 9 +$USERI2 + 70 + 0 + 9 +$USERI3 + 70 + 0 + 9 +$USERI4 + 70 + 0 + 9 +$USERI5 + 70 + 0 + 9 +$USERR1 + 40 +0 + 9 +$USERR2 + 40 +0 + 9 +$USERR3 + 40 +0 + 9 +$USERR4 + 40 +0 + 9 +$USERR5 + 40 +0 + 9 +$WORLDVIEW + 70 + 1 + 9 +$SHADEDGE + 70 + 3 + 9 +$SHADEDIF + 70 + 70 + 9 +$TILEMODE + 70 + 1 + 9 +$MAXACTVP + 70 + 64 + 9 +$PINSBASE + 10 +0 + 20 +0 + 30 +0 + 9 +$PLIMCHECK + 70 + 0 + 9 +$PEXTMIN + 10 +0 + 20 +0 + 30 +0 + 9 +$PEXTMAX + 10 +0 + 20 +0 + 30 +0 + 9 +$SNAPSTYLE + 70 + 0 + 9 +$PLIMMIN + 10 +0 + 20 +0 + 9 +$PLIMMAX + 10 +210 + 20 +297 + 9 +$UNITMODE + 70 + 0 + 9 +$VISRETAIN + 70 + 1 + 9 +$PLINEGEN + 70 + 0 + 9 +$PSLTSCALE + 70 + 1 + 9 +$TREEDEPTH + 70 + 3020 + 9 +$CMLSTYLE + 2 +Standard + 9 +$CMLJUST + 70 + 0 + 9 +$CMLSCALE + 40 +20 + 9 +$PROXYGRAPHICS + 70 + 1 + 9 +$MEASUREMENT + 70 + 1 + 9 +$CELWEIGHT +370 + -1 + 9 +$ENDCAPS +280 + 0 + 9 +$JOINSTYLE +280 + 0 + 9 +$LWDISPLAY +290 + 0 + 9 +$INSUNITS + 70 + 4 + 9 +$HYPERLINKBASE + 1 + + 9 +$STYLESHEET + 1 + + 9 +$XEDIT +290 + 1 + 9 +$CEPSNTYPE +380 + 0 + 9 +$PSTYLEMODE +290 + 1 + 9 +$EXTNAMES +290 + 1 + 9 +$PSVPSCALE + 40 +1 + 9 +$OLESTARTUP +290 + 0 + 9 +$SORTENTS +280 + 127 + 9 +$INDEXCTL +280 + 0 + 9 +$HIDETEXT +280 + 1 + 9 +$XCLIPFRAME +290 + 0 + 9 +$HALOGAP +280 + 0 + 9 +$OBSCOLOR + 70 + 257 + 9 +$OBSLTYPE +280 + 0 + 9 +$INTERSECTIONDISPLAY +280 + 0 + 9 +$INTERSECTIONCOLOR + 70 + 257 + 9 +$DIMASSOC +280 + 1 + 9 +$PROJECTNAME + 1 + + 9 +$CAMERADISPLAY +290 + 0 + 9 +$LENSLENGTH + 40 +50 + 9 +$CAMERAHEIGHT + 40 +0 + 9 +$STEPSPERSEC + 40 +2 + 9 +$STEPSIZE + 40 +50 + 9 +$3DDWFPREC + 40 +2 + 9 +$PSOLWIDTH + 40 +5 + 9 +$PSOLHEIGHT + 40 +80 + 9 +$LOFTANG1 + 40 +1.570796326794897 + 9 +$LOFTANG2 + 40 +1.570796326794897 + 9 +$LOFTMAG1 + 40 +0 + 9 +$LOFTMAG2 + 40 +0 + 9 +$LOFTPARAM + 70 + 7 + 9 +$LOFTNORMALS +280 + 1 + 9 +$LATITUDE + 40 +1 + 9 +$LONGITUDE + 40 +1 + 9 +$NORTHDIRECTION + 40 +0 + 9 +$TIMEZONE + 70 +-8000 + 9 +$LIGHTGLYPHDISPLAY +280 + 1 + 9 +$TILEMODELIGHTSYNCH +280 + 1 + 9 +$SOLIDHIST +280 + 1 + 9 +$SHOWHIST +280 + 1 + 9 +$DWFFRAME +280 + 2 + 9 +$DGNFRAME +280 + 0 + 9 +$REALWORLDSCALE +290 + 1 + 9 +$INTERFERECOLOR + 62 + 1 + 9 +$CSHADOW +280 + 0 + 9 +$SHADOWPLANELOCATION + 40 +0 + 0 +ENDSEC + 0 +SECTION + 2 +CLASSES + 0 +ENDSEC + 0 +SECTION + 2 +TABLES + 0 +TABLE + 2 +VPORT + 5 +8 +330 +0 +100 +AcDbSymbolTable + 70 + 1 + 0 +VPORT + 5 +31 +330 +2 +100 +AcDbSymbolTableRecord +100 +AcDbViewportTableRecord + 2 +*ACTIVE + 70 + 0 + 10 +0 + 20 +0 + 11 +1 + 21 +1 + 12 +66.45534808585194 + 22 +39.13029301532936 + 13 +0 + 23 +0 + 14 +10 + 24 +10 + 15 +10 + 25 +10 + 16 +0 + 26 +0 + 36 +1 + 17 +0 + 27 +0 + 37 +0 + 40 +85.58797509984913 + 41 +2.526753864447087 + 42 +50 + 43 +0 + 44 +0 + 50 +0 + 51 +0 + 71 + 0 + 72 + 100 + 73 + 1 + 74 + 3 + 75 + 0 + 76 + 1 + 77 + 0 + 78 + 0 +281 + 0 + 65 + 1 +110 +0 +120 +0 +130 +0 +111 +1 +121 +0 +131 +0 +112 +0 +122 +1 +132 +0 + 79 + 0 +146 +0 +348 +10020 + 60 + 7 + 61 + 5 +292 +1 +282 + 1 +141 +0 +142 +0 + 63 + 250 +421 +3358443 + 0 +ENDTAB + 0 +TABLE + 2 +LTYPE + 5 +5 +330 +0 +100 +AcDbSymbolTable + 70 + 4 + 0 +LTYPE + 5 +14 +330 +5 +100 +AcDbSymbolTableRecord +100 +AcDbLinetypeTableRecord + 2 +ByBlock + 70 + 0 + 3 + + 72 + 65 + 73 + 0 + 40 +0 + 0 +LTYPE + 5 +15 +330 +5 +100 +AcDbSymbolTableRecord +100 +AcDbLinetypeTableRecord + 2 +ByLayer + 70 + 0 + 3 + + 72 + 65 + 73 + 0 + 40 +0 + 0 +LTYPE + 5 +16 +330 +5 +100 +AcDbSymbolTableRecord +100 +AcDbLinetypeTableRecord + 2 +Continuous + 70 + 0 + 3 +Solid line + 72 + 65 + 73 + 0 + 40 +0 + 0 +LTYPE + 5 +32 +330 +5 +100 +AcDbSymbolTableRecord +100 +AcDbLinetypeTableRecord + 2 +DOT + 70 + 0 + 3 +Dot . . . . . . . . . . . . . . . . . . . . . . + 72 + 65 + 73 + 2 + 40 +6.35 + 49 +0 + 74 + 0 + 49 +-6.35 + 74 + 0 + 0 +LTYPE + 5 +33 +330 +5 +100 +AcDbSymbolTableRecord +100 +AcDbLinetypeTableRecord + 2 +DOTTINY + 70 + 0 + 3 +Dot (.15x) ..................................... + 72 + 65 + 73 + 2 + 40 +0.9525 + 49 +0 + 74 + 0 + 49 +-0.9525 + 74 + 0 + 0 +LTYPE + 5 +34 +330 +5 +100 +AcDbSymbolTableRecord +100 +AcDbLinetypeTableRecord + 2 +DOT2 + 70 + 0 + 3 +Dot (.5x) ..................................... + 72 + 65 + 73 + 2 + 40 +3.175 + 49 +0 + 74 + 0 + 49 +-3.175 + 74 + 0 + 0 +LTYPE + 5 +35 +330 +5 +100 +AcDbSymbolTableRecord +100 +AcDbLinetypeTableRecord + 2 +DOTX2 + 70 + 0 + 3 +Dot (2x) . . . . . . . . . . . . . + 72 + 65 + 73 + 2 + 40 +12.7 + 49 +0 + 74 + 0 + 49 +-12.7 + 74 + 0 + 0 +LTYPE + 5 +36 +330 +5 +100 +AcDbSymbolTableRecord +100 +AcDbLinetypeTableRecord + 2 +DASHED + 70 + 0 + 3 +Dashed _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ + 72 + 65 + 73 + 2 + 40 +19.05 + 49 +12.7 + 74 + 0 + 49 +-6.35 + 74 + 0 + 0 +LTYPE + 5 +37 +330 +5 +100 +AcDbSymbolTableRecord +100 +AcDbLinetypeTableRecord + 2 +DASHEDTINY + 70 + 0 + 3 +Dashed (.15x) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ + 72 + 65 + 73 + 2 + 40 +2.8575 + 49 +1.905 + 74 + 0 + 49 +-0.9525 + 74 + 0 + 0 +LTYPE + 5 +38 +330 +5 +100 +AcDbSymbolTableRecord +100 +AcDbLinetypeTableRecord + 2 +DASHED2 + 70 + 0 + 3 +Dashed (.5x) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ + 72 + 65 + 73 + 2 + 40 +9.524999999999999 + 49 +6.35 + 74 + 0 + 49 +-3.175 + 74 + 0 + 0 +LTYPE + 5 +39 +330 +5 +100 +AcDbSymbolTableRecord +100 +AcDbLinetypeTableRecord + 2 +DASHEDX2 + 70 + 0 + 3 +Dashed (2x) ____ ____ ____ ____ ____ ___ + 72 + 65 + 73 + 2 + 40 +38.09999999999999 + 49 +25.4 + 74 + 0 + 49 +-12.7 + 74 + 0 + 0 +LTYPE + 5 +3A +330 +5 +100 +AcDbSymbolTableRecord +100 +AcDbLinetypeTableRecord + 2 +DASHDOT + 70 + 0 + 3 +Dash dot __ . __ . __ . __ . __ . __ . __ . __ + 72 + 65 + 73 + 4 + 40 +25.4 + 49 +12.7 + 74 + 0 + 49 +-6.35 + 74 + 0 + 49 +0 + 74 + 0 + 49 +-6.35 + 74 + 0 + 0 +LTYPE + 5 +3B +330 +5 +100 +AcDbSymbolTableRecord +100 +AcDbLinetypeTableRecord + 2 +DASHDOTTINY + 70 + 0 + 3 +Dash dot (.15x) _._._._._._._._._._._._._._._. + 72 + 65 + 73 + 4 + 40 +3.81 + 49 +1.905 + 74 + 0 + 49 +-0.9525 + 74 + 0 + 49 +0 + 74 + 0 + 49 +-0.9525 + 74 + 0 + 0 +LTYPE + 5 +3C +330 +5 +100 +AcDbSymbolTableRecord +100 +AcDbLinetypeTableRecord + 2 +DASHDOT2 + 70 + 0 + 3 +Dash dot (.5x) _._._._._._._._._._._._._._._. + 72 + 65 + 73 + 4 + 40 +12.7 + 49 +6.35 + 74 + 0 + 49 +-3.175 + 74 + 0 + 49 +0 + 74 + 0 + 49 +-3.175 + 74 + 0 + 0 +LTYPE + 5 +3D +330 +5 +100 +AcDbSymbolTableRecord +100 +AcDbLinetypeTableRecord + 2 +DASHDOTX2 + 70 + 0 + 3 +Dash dot (2x) ____ . ____ . ____ . ___ + 72 + 65 + 73 + 4 + 40 +50.8 + 49 +25.4 + 74 + 0 + 49 +-12.7 + 74 + 0 + 49 +0 + 74 + 0 + 49 +-12.7 + 74 + 0 + 0 +LTYPE + 5 +3E +330 +5 +100 +AcDbSymbolTableRecord +100 +AcDbLinetypeTableRecord + 2 +DIVIDE + 70 + 0 + 3 +Divide ____ . . ____ . . ____ . . ____ . . ____ + 72 + 65 + 73 + 6 + 40 +31.75 + 49 +12.7 + 74 + 0 + 49 +-6.35 + 74 + 0 + 49 +0 + 74 + 0 + 49 +-6.35 + 74 + 0 + 49 +0 + 74 + 0 + 49 +-6.35 + 74 + 0 + 0 +LTYPE + 5 +3F +330 +5 +100 +AcDbSymbolTableRecord +100 +AcDbLinetypeTableRecord + 2 +DIVIDETINY + 70 + 0 + 3 +Divide (.15x) __..__..__..__..__..__..__..__.._ + 72 + 65 + 73 + 6 + 40 +4.7625 + 49 +1.905 + 74 + 0 + 49 +-0.9525 + 74 + 0 + 49 +0 + 74 + 0 + 49 +-0.9525 + 74 + 0 + 49 +0 + 74 + 0 + 49 +-0.9525 + 74 + 0 + 0 +LTYPE + 5 +40 +330 +5 +100 +AcDbSymbolTableRecord +100 +AcDbLinetypeTableRecord + 2 +DIVIDE2 + 70 + 0 + 3 +Divide (.5x) __..__..__..__..__..__..__..__.._ + 72 + 65 + 73 + 6 + 40 +15.875 + 49 +6.35 + 74 + 0 + 49 +-3.175 + 74 + 0 + 49 +0 + 74 + 0 + 49 +-3.175 + 74 + 0 + 49 +0 + 74 + 0 + 49 +-3.175 + 74 + 0 + 0 +LTYPE + 5 +41 +330 +5 +100 +AcDbSymbolTableRecord +100 +AcDbLinetypeTableRecord + 2 +DIVIDEX2 + 70 + 0 + 3 +Divide (2x) ________ . . ________ . . _ + 72 + 65 + 73 + 6 + 40 +63.5 + 49 +25.4 + 74 + 0 + 49 +-12.7 + 74 + 0 + 49 +0 + 74 + 0 + 49 +-12.7 + 74 + 0 + 49 +0 + 74 + 0 + 49 +-12.7 + 74 + 0 + 0 +LTYPE + 5 +42 +330 +5 +100 +AcDbSymbolTableRecord +100 +AcDbLinetypeTableRecord + 2 +BORDER + 70 + 0 + 3 +Border __ __ . __ __ . __ __ . __ __ . __ __ . + 72 + 65 + 73 + 6 + 40 +44.45 + 49 +12.7 + 74 + 0 + 49 +-6.35 + 74 + 0 + 49 +12.7 + 74 + 0 + 49 +-6.35 + 74 + 0 + 49 +0 + 74 + 0 + 49 +-6.35 + 74 + 0 + 0 +LTYPE + 5 +43 +330 +5 +100 +AcDbSymbolTableRecord +100 +AcDbLinetypeTableRecord + 2 +BORDERTINY + 70 + 0 + 3 +Border (.15x) __.__.__.__.__.__.__.__.__.__.__. + 72 + 65 + 73 + 6 + 40 +6.6675 + 49 +1.905 + 74 + 0 + 49 +-0.9525 + 74 + 0 + 49 +1.905 + 74 + 0 + 49 +-0.9525 + 74 + 0 + 49 +0 + 74 + 0 + 49 +-0.9525 + 74 + 0 + 0 +LTYPE + 5 +44 +330 +5 +100 +AcDbSymbolTableRecord +100 +AcDbLinetypeTableRecord + 2 +BORDER2 + 70 + 0 + 3 +Border (.5x) __.__.__.__.__.__.__.__.__.__.__. + 72 + 65 + 73 + 6 + 40 +22.225 + 49 +6.35 + 74 + 0 + 49 +-3.175 + 74 + 0 + 49 +6.35 + 74 + 0 + 49 +-3.175 + 74 + 0 + 49 +0 + 74 + 0 + 49 +-3.175 + 74 + 0 + 0 +LTYPE + 5 +45 +330 +5 +100 +AcDbSymbolTableRecord +100 +AcDbLinetypeTableRecord + 2 +BORDERX2 + 70 + 0 + 3 +Border (2x) ____ ____ . ____ ____ . ___ + 72 + 65 + 73 + 6 + 40 +88.89999999999999 + 49 +25.4 + 74 + 0 + 49 +-12.7 + 74 + 0 + 49 +25.4 + 74 + 0 + 49 +-12.7 + 74 + 0 + 49 +0 + 74 + 0 + 49 +-12.7 + 74 + 0 + 0 +LTYPE + 5 +46 +330 +5 +100 +AcDbSymbolTableRecord +100 +AcDbLinetypeTableRecord + 2 +CENTER + 70 + 0 + 3 +Center ____ _ ____ _ ____ _ ____ _ ____ _ ____ + 72 + 65 + 73 + 4 + 40 +50.8 + 49 +31.75 + 74 + 0 + 49 +-6.35 + 74 + 0 + 49 +6.35 + 74 + 0 + 49 +-6.35 + 74 + 0 + 0 +LTYPE + 5 +47 +330 +5 +100 +AcDbSymbolTableRecord +100 +AcDbLinetypeTableRecord + 2 +CENTERTINY + 70 + 0 + 3 +Center (.15x) ___ _ ___ _ ___ _ ___ _ ___ _ ___ + 72 + 65 + 73 + 4 + 40 +7.619999999999999 + 49 +4.7625 + 74 + 0 + 49 +-0.9525 + 74 + 0 + 49 +0.9525 + 74 + 0 + 49 +-0.9525 + 74 + 0 + 0 +LTYPE + 5 +48 +330 +5 +100 +AcDbSymbolTableRecord +100 +AcDbLinetypeTableRecord + 2 +CENTER2 + 70 + 0 + 3 +Center (.5x) ___ _ ___ _ ___ _ ___ _ ___ _ ___ + 72 + 65 + 73 + 4 + 40 +28.575 + 49 +19.05 + 74 + 0 + 49 +-3.175 + 74 + 0 + 49 +3.175 + 74 + 0 + 49 +-3.175 + 74 + 0 + 0 +LTYPE + 5 +49 +330 +5 +100 +AcDbSymbolTableRecord +100 +AcDbLinetypeTableRecord + 2 +CENTERX2 + 70 + 0 + 3 +Center (2x) ________ __ ________ __ _____ + 72 + 65 + 73 + 4 + 40 +101.6 + 49 +63.5 + 74 + 0 + 49 +-12.7 + 74 + 0 + 49 +12.7 + 74 + 0 + 49 +-12.7 + 74 + 0 + 0 +ENDTAB + 0 +TABLE + 2 +LAYER + 5 +2 +330 +0 +100 +AcDbSymbolTable + 70 + 1 + 0 +LAYER + 5 +10 +330 +2 +100 +AcDbSymbolTableRecord +100 +AcDbLayerTableRecord + 2 +0 + 70 + 0 + 62 + 7 + 6 +CONTINUOUS +370 + 0 +390 +F + 0 +LAYER + 5 +4A +330 +2 +100 +AcDbSymbolTableRecord +100 +AcDbLayerTableRecord + 2 +Layer 1 + 70 + 0 + 62 + 7 + 6 +CONTINUOUS +370 + -3 +390 +F + 0 +ENDTAB + 0 +TABLE + 2 +STYLE + 5 +3 +330 +0 +100 +AcDbSymbolTable + 70 + 3 + 0 +STYLE + 5 +4B +330 +2 +100 +AcDbSymbolTableRecord +100 +AcDbTextStyleTableRecord + 2 +Standard + 70 + 0 + 40 +0 + 41 +1 + 50 +0 + 71 + 0 + 42 +1 + 3 +txt + 4 + + 0 +ENDTAB + 0 +TABLE + 2 +VIEW + 5 +6 +330 +0 +100 +AcDbSymbolTable + 70 + 0 + 0 +ENDTAB + 0 +TABLE + 2 +UCS + 5 +7 +330 +0 +100 +AcDbSymbolTable + 70 + 0 + 0 +ENDTAB + 0 +TABLE + 2 +APPID + 5 +9 +330 +0 +100 +AcDbSymbolTable + 70 + 1 + 0 +APPID + 5 +12 +330 +9 +100 +AcDbSymbolTableRecord +100 +AcDbRegAppTableRecord + 2 +ACAD + 70 + 0 + 0 +APPID + 5 +4C +330 +9 +100 +AcDbSymbolTableRecord +100 +AcDbRegAppTableRecord + 2 +LibreCad + 70 + 0 + 0 +ENDTAB + 0 +TABLE + 2 +DIMSTYLE + 5 +A +330 +0 +100 +AcDbSymbolTable + 70 + 1 +100 +AcDbDimStyleTable + 71 + 1 + 0 +DIMSTYLE +105 +4D +330 +A +100 +AcDbSymbolTableRecord +100 +AcDbDimStyleTableRecord + 2 +Standard + 70 + 0 + 40 +1 + 41 +2.5 + 42 +0.625 + 43 +0.38 + 44 +1.25 + 45 +0 + 46 +0 + 47 +0 + 48 +0 + 49 +1 +140 +2.5 +141 +0.09 +142 +2.5 +143 +25.4 +144 +1 +145 +0 +146 +1 +147 +0.625 +148 +0 + 71 + 0 + 72 + 0 + 73 + 0 + 74 + 1 + 75 + 0 + 76 + 0 + 77 + 0 + 78 + 1 + 79 + 0 +170 + 0 +171 + 2 +172 + 0 +173 + 0 +174 + 0 +175 + 0 +176 + 0 +177 + 0 +178 + 0 +179 + 0 +271 + 2 +272 + 4 +273 + 2 +274 + 2 +275 + 0 +276 + 0 +277 + 2 +278 + 0 +279 + 0 +280 + 0 +281 + 0 +282 + 0 +283 + 1 +284 + 0 +285 + 0 +286 + 0 +288 + 0 +289 + 3 +340 +standard +341 + +371 + -2 +372 + -2 + 0 +ENDTAB + 0 +TABLE + 2 +BLOCK_RECORD + 5 +1 +330 +0 +100 +AcDbSymbolTable + 70 + 2 + 0 +BLOCK_RECORD + 5 +1F +330 +1 +100 +AcDbSymbolTableRecord +100 +AcDbBlockTableRecord + 2 +*Model_Space + 70 + 0 +280 + 1 +281 + 0 + 0 +BLOCK_RECORD + 5 +1E +330 +1 +100 +AcDbSymbolTableRecord +100 +AcDbBlockTableRecord + 2 +*Paper_Space + 70 + 0 +280 + 1 +281 + 0 + 0 +ENDTAB + 0 +ENDSEC + 0 +SECTION + 2 +BLOCKS + 0 +BLOCK + 5 +20 +330 +1F +100 +AcDbEntity + 8 +0 +100 +AcDbBlockBegin + 2 +*Model_Space + 70 + 0 + 10 +0 + 20 +0 + 30 +0 + 3 +*Model_Space + 1 + + 0 +ENDBLK + 5 +21 +330 +1F +100 +AcDbEntity + 8 +0 +100 +AcDbBlockEnd + 0 +BLOCK + 5 +1C +330 +1B +100 +AcDbEntity + 8 +0 +100 +AcDbBlockBegin + 2 +*Paper_Space + 70 + 0 + 10 +0 + 20 +0 + 30 +0 + 3 +*Paper_Space + 1 + + 0 +ENDBLK + 5 +1D +330 +1F +100 +AcDbEntity + 8 +0 +100 +AcDbBlockEnd + 0 +ENDSEC + 0 +SECTION + 2 +ENTITIES + 0 +LINE + 5 +4E +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +13.5315 + 20 +13.1939 + 11 +16.9987 + 21 +13.1939 + 0 +LINE + 5 +4F +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +16.9987 + 20 +13.1939 + 11 +13.5315 + 21 +13.1939 + 0 +LINE + 5 +50 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +20.4658 + 20 +13.1939 + 11 +16.9987 + 21 +13.1939 + 0 +LINE + 5 +51 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +16.9987 + 20 +13.1939 + 11 +20.4658 + 21 +13.1939 + 0 +LINE + 5 +52 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +16.9987 + 20 +9.72536 + 11 +16.9987 + 21 +13.1939 + 0 +LINE + 5 +53 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +16.9987 + 20 +13.1939 + 11 +16.9987 + 21 +9.72536 + 0 +LINE + 5 +54 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +16.9987 + 20 +16.661 + 11 +16.9987 + 21 +13.1939 + 0 +LINE + 5 +55 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +16.9987 + 20 +13.1939 + 11 +16.9987 + 21 +16.661 + 0 +LINE + 5 +56 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +56.8309 + 20 +9.72536 + 11 +56.8309 + 21 +13.1939 + 0 +LINE + 5 +57 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +56.8309 + 20 +13.1939 + 11 +56.8309 + 21 +9.72536 + 0 +LINE + 5 +58 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +56.8309 + 20 +16.661 + 11 +56.8309 + 21 +13.1939 + 0 +LINE + 5 +59 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +56.8309 + 20 +13.1939 + 11 +56.8309 + 21 +16.661 + 0 +LINE + 5 +5A +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +60.2981 + 20 +13.1939 + 11 +56.8309 + 21 +13.1939 + 0 +LINE + 5 +5B +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +56.8309 + 20 +13.1939 + 11 +60.2981 + 21 +13.1939 + 0 +LINE + 5 +5C +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +53.2797 + 20 +13.1939 + 11 +56.8309 + 21 +13.1939 + 0 +LINE + 5 +5D +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +56.8309 + 20 +13.1939 + 11 +53.2797 + 21 +13.1939 + 0 +LINE + 5 +5E +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +60.2981 + 20 +60.6371 + 11 +56.8309 + 21 +60.6371 + 0 +LINE + 5 +5F +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +56.8309 + 20 +60.6371 + 11 +60.2981 + 21 +60.6371 + 0 +LINE + 5 +60 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +53.2797 + 20 +60.6371 + 11 +56.8309 + 21 +60.6371 + 0 +LINE + 5 +61 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +56.8309 + 20 +60.6371 + 11 +53.2797 + 21 +60.6371 + 0 +LINE + 5 +62 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +56.8309 + 20 +64.1056 + 11 +56.8309 + 21 +60.6371 + 0 +LINE + 5 +63 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +56.8309 + 20 +60.6371 + 11 +56.8309 + 21 +64.1056 + 0 +LINE + 5 +64 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +56.8309 + 20 +57.1699 + 11 +56.8309 + 21 +60.6371 + 0 +LINE + 5 +65 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +56.8309 + 20 +60.6371 + 11 +56.8309 + 21 +57.1699 + 0 +LINE + 5 +66 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +16.9987 + 20 +57.1699 + 11 +16.9987 + 21 +60.6371 + 0 +LINE + 5 +67 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +16.9987 + 20 +60.6371 + 11 +16.9987 + 21 +57.1699 + 0 +LINE + 5 +68 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +16.9987 + 20 +64.1056 + 11 +16.9987 + 21 +60.6371 + 0 +LINE + 5 +69 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +16.9987 + 20 +60.6371 + 11 +16.9987 + 21 +64.1056 + 0 +LINE + 5 +6A +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +20.4658 + 20 +60.6371 + 11 +16.9987 + 21 +60.6371 + 0 +LINE + 5 +6B +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +16.9987 + 20 +60.6371 + 11 +20.4658 + 21 +60.6371 + 0 +LINE + 5 +6C +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +13.5315 + 20 +60.6371 + 11 +16.9987 + 21 +60.6371 + 0 +LINE + 5 +6D +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +16.9987 + 20 +60.6371 + 11 +13.5315 + 21 +60.6371 + 0 +LINE + 5 +6E +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +28.2462 + 20 +54.8025 + 11 +28.2462 + 21 +57.593 + 0 +LINE + 5 +6F +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +28.2462 + 20 +57.593 + 11 +28.2462 + 21 +54.8025 + 0 +LINE + 5 +70 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +28.2462 + 20 +60.2995 + 11 +28.2462 + 21 +57.593 + 0 +LINE + 5 +71 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +28.2462 + 20 +57.593 + 11 +28.2462 + 21 +60.2995 + 0 +LINE + 5 +72 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +31.0368 + 20 +57.593 + 11 +28.2462 + 21 +57.593 + 0 +LINE + 5 +73 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +28.2462 + 20 +57.593 + 11 +31.0368 + 21 +57.593 + 0 +LINE + 5 +74 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +25.5398 + 20 +57.593 + 11 +28.2462 + 21 +57.593 + 0 +LINE + 5 +75 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +28.2462 + 20 +57.593 + 11 +25.5398 + 21 +57.593 + 0 +LINE + 5 +76 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +30.4456 + 20 +55.5632 + 11 +30.4456 + 21 +58.3537 + 0 +LINE + 5 +77 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +30.4456 + 20 +58.3537 + 11 +30.4456 + 21 +55.5632 + 0 +LINE + 5 +78 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +30.4456 + 20 +61.0602 + 11 +30.4456 + 21 +58.3537 + 0 +LINE + 5 +79 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +30.4456 + 20 +58.3537 + 11 +30.4456 + 21 +61.0602 + 0 +LINE + 5 +7A +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +33.1521 + 20 +58.3537 + 11 +30.4456 + 21 +58.3537 + 0 +LINE + 5 +7B +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +30.4456 + 20 +58.3537 + 11 +33.1521 + 21 +58.3537 + 0 +LINE + 5 +7C +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +27.6537 + 20 +58.3537 + 11 +30.4456 + 21 +58.3537 + 0 +LINE + 5 +7D +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +30.4456 + 20 +58.3537 + 11 +27.6537 + 21 +58.3537 + 0 +LINE + 5 +7E +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +32.6436 + 20 +56.1557 + 11 +32.6436 + 21 +58.9462 + 0 +LINE + 5 +7F +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +32.6436 + 20 +58.9462 + 11 +32.6436 + 21 +56.1557 + 0 +LINE + 5 +80 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +32.6436 + 20 +61.6527 + 11 +32.6436 + 21 +58.9462 + 0 +LINE + 5 +81 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +32.6436 + 20 +58.9462 + 11 +32.6436 + 21 +61.6527 + 0 +LINE + 5 +82 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +35.4355 + 20 +58.9462 + 11 +32.6436 + 21 +58.9462 + 0 +LINE + 5 +83 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +32.6436 + 20 +58.9462 + 11 +35.4355 + 21 +58.9462 + 0 +LINE + 5 +84 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +29.9371 + 20 +58.9462 + 11 +32.6436 + 21 +58.9462 + 0 +LINE + 5 +85 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +32.6436 + 20 +58.9462 + 11 +29.9371 + 21 +58.9462 + 0 +LINE + 5 +86 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +34.927 + 20 +56.4933 + 11 +34.927 + 21 +59.2839 + 0 +LINE + 5 +87 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +34.927 + 20 +59.2839 + 11 +34.927 + 21 +56.4933 + 0 +LINE + 5 +88 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +34.927 + 20 +61.9903 + 11 +34.927 + 21 +59.2839 + 0 +LINE + 5 +89 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +34.927 + 20 +59.2839 + 11 +34.927 + 21 +61.9903 + 0 +LINE + 5 +8A +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +37.6335 + 20 +59.2839 + 11 +34.927 + 21 +59.2839 + 0 +LINE + 5 +8B +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +34.927 + 20 +59.2839 + 11 +37.6335 + 21 +59.2839 + 0 +LINE + 5 +8C +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +32.1364 + 20 +59.2839 + 11 +34.927 + 21 +59.2839 + 0 +LINE + 5 +8D +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +34.927 + 20 +59.2839 + 11 +32.1364 + 21 +59.2839 + 0 +LINE + 5 +8E +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +37.2104 + 20 +56.5788 + 11 +37.2104 + 21 +59.3693 + 0 +LINE + 5 +8F +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +37.2104 + 20 +59.3693 + 11 +37.2104 + 21 +56.5788 + 0 +LINE + 5 +90 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +37.2104 + 20 +62.0758 + 11 +37.2104 + 21 +59.3693 + 0 +LINE + 5 +91 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +37.2104 + 20 +59.3693 + 11 +37.2104 + 21 +62.0758 + 0 +LINE + 5 +92 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +39.9169 + 20 +59.3693 + 11 +37.2104 + 21 +59.3693 + 0 +LINE + 5 +93 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +37.2104 + 20 +59.3693 + 11 +39.9169 + 21 +59.3693 + 0 +LINE + 5 +94 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +34.4199 + 20 +59.3693 + 11 +37.2104 + 21 +59.3693 + 0 +LINE + 5 +95 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +37.2104 + 20 +59.3693 + 11 +34.4199 + 21 +59.3693 + 0 +LINE + 5 +96 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +40.5935 + 20 +56.2398 + 11 +40.5935 + 21 +59.0303 + 0 +LINE + 5 +97 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +40.5935 + 20 +59.0303 + 11 +40.5935 + 21 +56.2398 + 0 +LINE + 5 +98 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +40.5935 + 20 +61.7368 + 11 +40.5935 + 21 +59.0303 + 0 +LINE + 5 +99 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +40.5935 + 20 +59.0303 + 11 +40.5935 + 21 +61.7368 + 0 +LINE + 5 +9A +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +43.384 + 20 +59.0303 + 11 +40.5935 + 21 +59.0303 + 0 +LINE + 5 +9B +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +40.5935 + 20 +59.0303 + 11 +43.384 + 21 +59.0303 + 0 +LINE + 5 +9C +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +37.887 + 20 +59.0303 + 11 +40.5935 + 21 +59.0303 + 0 +LINE + 5 +9D +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +40.5935 + 20 +59.0303 + 11 +37.887 + 21 +59.0303 + 0 +LINE + 5 +9E +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +42.8769 + 20 +55.7327 + 11 +42.8769 + 21 +58.5232 + 0 +LINE + 5 +9F +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +42.8769 + 20 +58.5232 + 11 +42.8769 + 21 +55.7327 + 0 +LINE + 5 +A0 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +42.8769 + 20 +61.2297 + 11 +42.8769 + 21 +58.5232 + 0 +LINE + 5 +A1 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +42.8769 + 20 +58.5232 + 11 +42.8769 + 21 +61.2297 + 0 +LINE + 5 +A2 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +45.5834 + 20 +58.5232 + 11 +42.8769 + 21 +58.5232 + 0 +LINE + 5 +A3 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +42.8769 + 20 +58.5232 + 11 +45.5834 + 21 +58.5232 + 0 +LINE + 5 +A4 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +40.0864 + 20 +58.5232 + 11 +42.8769 + 21 +58.5232 + 0 +LINE + 5 +A5 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +42.8769 + 20 +58.5232 + 11 +40.0864 + 21 +58.5232 + 0 +LINE + 5 +A6 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +44.9908 + 20 +55.056 + 11 +44.9908 + 21 +57.7625 + 0 +LINE + 5 +A7 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +44.9908 + 20 +57.7625 + 11 +44.9908 + 21 +55.056 + 0 +LINE + 5 +A8 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +44.9908 + 20 +60.553 + 11 +44.9908 + 21 +57.7625 + 0 +LINE + 5 +A9 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +44.9908 + 20 +57.7625 + 11 +44.9908 + 21 +60.553 + 0 +LINE + 5 +AA +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +47.7827 + 20 +57.7625 + 11 +44.9908 + 21 +57.7625 + 0 +LINE + 5 +AB +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +44.9908 + 20 +57.7625 + 11 +47.7827 + 21 +57.7625 + 0 +LINE + 5 +AC +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +42.2857 + 20 +57.7625 + 11 +44.9908 + 21 +57.7625 + 0 +LINE + 5 +AD +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +44.9908 + 20 +57.7625 + 11 +42.2857 + 21 +57.7625 + 0 +LINE + 5 +AE +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +55.1401 + 20 +17.6753 + 11 +55.647222 + 21 +17.844803 + 0 +LINE + 5 +AF +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +55.647222 + 20 +17.844803 + 11 +55.1401 + 21 +17.6753 + 0 +LINE + 5 +B0 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +55.6472 + 20 +17.8448 + 11 +56.070255 + 21 +18.267858 + 0 +LINE + 5 +B1 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +56.070255 + 20 +18.267858 + 11 +55.6472 + 21 +17.8448 + 0 +LINE + 5 +B2 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +56.0703 + 20 +18.2678 + 11 +56.154364 + 21 +18.690855 + 0 +LINE + 5 +B3 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +56.154364 + 20 +18.690855 + 11 +56.0703 + 21 +18.2678 + 0 +LINE + 5 +B4 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +66.9802 + 20 +58.2696 + 11 +66.13407599999999 + 21 +59.115713 + 0 +LINE + 5 +B5 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +66.13407599999999 + 20 +59.115713 + 11 +66.9802 + 21 +58.2696 + 0 +LINE + 5 +B6 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +66.1341 + 20 +59.1157 + 11 +65.203923 + 21 +59.622818 + 0 +LINE + 5 +B7 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +65.203923 + 20 +59.622818 + 11 +66.1341 + 21 +59.1157 + 0 +LINE + 5 +B8 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +65.2039 + 20 +59.6229 + 11 +64.02016 + 21 +59.876463 + 0 +LINE + 5 +B9 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +64.02016 + 20 +59.876463 + 11 +65.2039 + 21 +59.6229 + 0 +LINE + 5 +BA +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +64.0202 + 20 +59.8764 + 11 +63.2581 + 21 +59.8764 + 0 +LINE + 5 +BB +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +63.2581 + 20 +59.8764 + 11 +64.0202 + 21 +59.8764 + 0 +LINE + 5 +BC +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +59.8764 + 20 +10.5715 + 11 +59.8764 + 21 +11.5871 + 0 +LINE + 5 +BD +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +59.8764 + 20 +11.5871 + 11 +59.8764 + 21 +10.5715 + 0 +LINE + 5 +BE +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +59.8764 + 20 +11.5871 + 11 +60.298086 + 21 +12.517277 + 0 +LINE + 5 +BF +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +60.298086 + 20 +12.517277 + 11 +59.8764 + 21 +11.5871 + 0 +LINE + 5 +C0 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +60.2981 + 20 +12.5173 + 11 +60.890654 + 21 +13.277981 + 0 +LINE + 5 +C1 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +60.890654 + 20 +13.277981 + 11 +60.2981 + 21 +12.5173 + 0 +LINE + 5 +C2 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +60.8907 + 20 +13.278 + 11 +61.820877 + 21 +13.785118 + 0 +LINE + 5 +C3 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +61.820877 + 20 +13.785118 + 11 +60.8907 + 21 +13.278 + 0 +LINE + 5 +C4 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +61.8208 + 20 +13.7851 + 11 +62.750977 + 21 +13.954596 + 0 +LINE + 5 +C5 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +62.750977 + 20 +13.954596 + 11 +61.8208 + 21 +13.7851 + 0 +LINE + 5 +C6 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +62.751 + 20 +13.9546 + 11 +63.2581 + 21 +13.9546 + 0 +LINE + 5 +C7 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +63.2581 + 20 +13.9546 + 11 +62.751 + 21 +13.9546 + 0 +LINE + 5 +C8 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +15.5614 + 20 +66.9802 + 11 +14.71528 + 21 +66.13407599999999 + 0 +LINE + 5 +C9 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +14.71528 + 20 +66.13407599999999 + 11 +15.5614 + 21 +66.9802 + 0 +LINE + 5 +CA +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +14.7152 + 20 +66.1341 + 11 +14.208082 + 21 +65.203923 + 0 +LINE + 5 +CB +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +14.208082 + 20 +65.203923 + 11 +14.7152 + 21 +66.1341 + 0 +LINE + 5 +CC +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +14.2081 + 20 +65.2039 + 11 +13.953161 + 21 +64.02016 + 0 +LINE + 5 +CD +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +13.953161 + 20 +64.02016 + 11 +14.2081 + 21 +65.2039 + 0 +LINE + 5 +CE +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +13.9532 + 20 +64.0202 + 11 +13.9532 + 21 +63.2595 + 0 +LINE + 5 +CF +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +13.9532 + 20 +63.2595 + 11 +13.9532 + 21 +64.0202 + 0 +LINE + 5 +D0 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +6.84938 + 20 +15.5614 + 11 +7.611437 + 21 +14.715287 + 0 +LINE + 5 +D1 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +7.611437 + 20 +14.715287 + 11 +6.84938 + 21 +15.5614 + 0 +LINE + 5 +D2 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +7.61144 + 20 +14.7152 + 11 +8.625679999999999 + 21 +14.208082 + 0 +LINE + 5 +D3 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +8.625679999999999 + 20 +14.208082 + 11 +7.61144 + 21 +14.7152 + 0 +LINE + 5 +D4 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +8.62567 + 20 +14.2081 + 11 +9.725350000000001 + 21 +13.954537 + 0 +LINE + 5 +D5 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +9.725350000000001 + 20 +13.954537 + 11 +8.62567 + 21 +14.2081 + 0 +LINE + 5 +D6 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +9.725350000000001 + 20 +13.9546 + 11 +10.5715 + 21 +13.9546 + 0 +LINE + 5 +D7 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +10.5715 + 20 +13.9546 + 11 +9.725350000000001 + 21 +13.9546 + 0 +LINE + 5 +D8 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +63.2581 + 20 +59.8764 + 11 +62.2439 + 21 +59.8764 + 0 +LINE + 5 +D9 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +62.2439 + 20 +59.8764 + 11 +63.2581 + 21 +59.8764 + 0 +LINE + 5 +DA +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +62.2439 + 20 +59.8764 + 11 +61.313716 + 21 +60.215402 + 0 +LINE + 5 +DB +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +61.313716 + 20 +60.215402 + 11 +62.2439 + 21 +59.8764 + 0 +LINE + 5 +DC +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +61.3137 + 20 +60.2154 + 11 +60.551647 + 21 +60.890638 + 0 +LINE + 5 +DD +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +60.551647 + 20 +60.890638 + 11 +61.3137 + 21 +60.2154 + 0 +LINE + 5 +DE +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +60.5517 + 20 +60.8907 + 11 +60.044582 + 21 +61.822256 + 0 +LINE + 5 +DF +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +60.044582 + 20 +61.822256 + 11 +60.5517 + 21 +60.8907 + 0 +LINE + 5 +E0 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +60.0445 + 20 +61.8222 + 11 +59.790941 + 21 +62.752377 + 0 +LINE + 5 +E1 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +59.790941 + 20 +62.752377 + 11 +60.0445 + 21 +61.8222 + 0 +LINE + 5 +E2 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +59.791 + 20 +62.7524 + 11 +59.876432 + 21 +63.259518 + 0 +LINE + 5 +E3 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +59.876432 + 20 +63.259518 + 11 +59.791 + 21 +62.7524 + 0 +LINE + 5 +E4 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +63.2581 + 20 +13.9546 + 11 +64.4432 + 21 +13.9546 + 0 +LINE + 5 +E5 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +64.4432 + 20 +13.9546 + 11 +63.2581 + 21 +13.9546 + 0 +LINE + 5 +E6 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +64.4432 + 20 +13.9546 + 11 +65.5415 + 21 +14.292216 + 0 +LINE + 5 +E7 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +65.5415 + 20 +14.292216 + 11 +64.4432 + 21 +13.9546 + 0 +LINE + 5 +E8 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +65.5416 + 20 +14.2922 + 11 +66.471777 + 21 +14.968825 + 0 +LINE + 5 +E9 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +66.471777 + 20 +14.968825 + 11 +65.5416 + 21 +14.2922 + 0 +LINE + 5 +EA +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +66.4717 + 20 +14.9688 + 11 +66.980198 + 21 +15.561354 + 0 +LINE + 5 +EB +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +66.980198 + 20 +15.561354 + 11 +66.4717 + 21 +14.9688 + 0 +LINE + 5 +EC +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +10.5715 + 20 +59.8764 + 11 +9.38635 + 21 +59.8764 + 0 +LINE + 5 +ED +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +9.38635 + 20 +59.8764 + 11 +10.5715 + 21 +59.8764 + 0 +LINE + 5 +EE +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +9.38635 + 20 +59.8764 + 11 +8.28805 + 21 +59.453342 + 0 +LINE + 5 +EF +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +8.28805 + 20 +59.453342 + 11 +9.38635 + 21 +59.8764 + 0 +LINE + 5 +F0 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +8.28805 + 20 +59.4534 + 11 +7.357873 + 21 +58.862218 + 0 +LINE + 5 +F1 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +7.357873 + 20 +58.862218 + 11 +8.28805 + 21 +59.4534 + 0 +LINE + 5 +F2 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +7.35788 + 20 +58.8622 + 11 +6.849382 + 21 +58.269646 + 0 +LINE + 5 +F3 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +6.849382 + 20 +58.269646 + 11 +7.35788 + 21 +58.8622 + 0 +LINE + 5 +F4 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +55.1401 + 20 +56.1557 + 11 +18.6895 + 21 +56.1557 + 0 +LINE + 5 +F5 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +18.6895 + 20 +56.1557 + 11 +55.1401 + 21 +56.1557 + 0 +LINE + 5 +F6 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +59.8764 + 20 +63.2595 + 11 +59.8764 + 21 +64.44329999999999 + 0 +LINE + 5 +F7 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +59.8764 + 20 +64.44329999999999 + 11 +59.8764 + 21 +63.2595 + 0 +LINE + 5 +F8 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +59.8764 + 20 +64.44329999999999 + 11 +59.453342 + 21 +65.54298 + 0 +LINE + 5 +F9 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +59.453342 + 20 +65.54298 + 11 +59.8764 + 21 +64.44329999999999 + 0 +LINE + 5 +FA +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +59.4534 + 20 +65.5429 + 11 +58.860849 + 21 +66.473077 + 0 +LINE + 5 +FB +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +58.860849 + 20 +66.473077 + 11 +59.4534 + 21 +65.5429 + 0 +LINE + 5 +FC +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +58.8608 + 20 +66.4731 + 11 +58.269615 + 21 +66.980222 + 0 +LINE + 5 +FD +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +58.269615 + 20 +66.980222 + 11 +58.8608 + 21 +66.4731 + 0 +LINE + 5 +FE +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +13.9532 + 20 +63.2595 + 11 +13.9532 + 21 +62.2439 + 0 +LINE + 5 +FF +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +13.9532 + 20 +62.2439 + 11 +13.9532 + 21 +63.2595 + 0 +LINE + 5 +100 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +13.9532 + 20 +62.2439 + 11 +13.531521 + 21 +61.313723 + 0 +LINE + 5 +101 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +13.531521 + 20 +61.313723 + 11 +13.9532 + 21 +62.2439 + 0 +LINE + 5 +102 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +13.5315 + 20 +61.3137 + 11 +12.938942 + 21 +60.553022 + 0 +LINE + 5 +103 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +12.938942 + 20 +60.553022 + 11 +13.5315 + 21 +61.3137 + 0 +LINE + 5 +104 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +12.9389 + 20 +60.553 + 11 +12.00872 + 21 +60.045878 + 0 +LINE + 5 +105 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +12.00872 + 20 +60.045878 + 11 +12.9389 + 21 +60.553 + 0 +LINE + 5 +106 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +12.0088 + 20 +60.0459 + 11 +11.078623 + 21 +59.792341 + 0 +LINE + 5 +107 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +11.078623 + 20 +59.792341 + 11 +12.0088 + 21 +60.0459 + 0 +LINE + 5 +108 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +11.0786 + 20 +59.7924 + 11 +10.571482 + 21 +59.876463 + 0 +LINE + 5 +109 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +10.571482 + 20 +59.876463 + 11 +11.0786 + 21 +59.7924 + 0 +LINE + 5 +10A +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +13.9532 + 20 +10.5715 + 11 +13.9532 + 21 +9.387740000000001 + 0 +LINE + 5 +10B +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +13.9532 + 20 +9.387740000000001 + 11 +13.9532 + 21 +10.5715 + 0 +LINE + 5 +10C +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +13.9532 + 20 +9.387740000000001 + 11 +14.292198 + 21 +8.28806 + 0 +LINE + 5 +10D +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +14.292198 + 20 +8.28806 + 11 +13.9532 + 21 +9.387740000000001 + 0 +LINE + 5 +10E +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +14.2922 + 20 +8.28806 + 11 +14.968821 + 21 +7.357883 + 0 +LINE + 5 +10F +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +14.968821 + 20 +7.357883 + 11 +14.2922 + 21 +8.28806 + 0 +LINE + 5 +110 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +14.9688 + 20 +7.35788 + 11 +15.561358 + 21 +6.850762 + 0 +LINE + 5 +111 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +15.561358 + 20 +6.850762 + 11 +14.9688 + 21 +7.35788 + 0 +LINE + 5 +112 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +66.9802 + 20 +15.5614 + 11 +68.84054999999999 + 21 +18.52144 + 0 +LINE + 5 +113 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +68.84054999999999 + 20 +18.52144 + 11 +66.9802 + 21 +15.5614 + 0 +LINE + 5 +114 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +68.84059999999999 + 20 +18.5214 + 11 +70.44739 + 21 +21.65093 + 0 +LINE + 5 +115 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +70.44739 + 20 +21.65093 + 11 +68.84059999999999 + 21 +18.5214 + 0 +LINE + 5 +116 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +70.4474 + 20 +21.6509 + 11 +71.80064 + 21 +24.94855 + 0 +LINE + 5 +117 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +71.80064 + 20 +24.94855 + 11 +70.4474 + 21 +21.6509 + 0 +LINE + 5 +118 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +71.8006 + 20 +24.9486 + 11 +72.730777 + 21 +28.33169 + 0 +LINE + 5 +119 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +72.730777 + 20 +28.33169 + 11 +71.8006 + 21 +24.9486 + 0 +LINE + 5 +11A +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +72.7308 + 20 +28.3317 + 11 +73.40741800000001 + 21 +31.79886 + 0 +LINE + 5 +11B +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +73.40741800000001 + 20 +31.79886 + 11 +72.7308 + 21 +28.3317 + 0 +LINE + 5 +11C +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +73.4074 + 20 +31.7988 + 11 +73.745023 + 21 +35.35139 + 0 +LINE + 5 +11D +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +73.745023 + 20 +35.35139 + 11 +73.4074 + 21 +31.7988 + 0 +LINE + 5 +11E +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +73.745 + 20 +35.3514 + 11 +73.745 + 21 +38.8186 + 0 +LINE + 5 +11F +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +73.745 + 20 +38.8186 + 11 +73.745 + 21 +35.3514 + 0 +LINE + 5 +120 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +73.745 + 20 +38.8186 + 11 +73.32194200000001 + 21 +42.36981 + 0 +LINE + 5 +121 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +73.32194200000001 + 20 +42.36981 + 11 +73.745 + 21 +38.8186 + 0 +LINE + 5 +122 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +73.322 + 20 +42.3698 + 11 +72.645375 + 21 +45.83833 + 0 +LINE + 5 +123 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +72.645375 + 20 +45.83833 + 11 +73.322 + 21 +42.3698 + 0 +LINE + 5 +124 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +72.6454 + 20 +45.8383 + 11 +71.63117 + 21 +49.22001 + 0 +LINE + 5 +125 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +71.63117 + 20 +49.22001 + 11 +72.6454 + 21 +45.8383 + 0 +LINE + 5 +126 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +71.6311 + 20 +49.22 + 11 +70.27786 + 21 +52.51904 + 0 +LINE + 5 +127 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +70.27786 + 20 +52.51904 + 11 +71.6311 + 21 +49.22 + 0 +LINE + 5 +128 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +70.2779 + 20 +52.5191 + 11 +68.67111 + 21 +55.64863 + 0 +LINE + 5 +129 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +68.67111 + 20 +55.64863 + 11 +70.2779 + 21 +52.5191 + 0 +LINE + 5 +12A +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +68.6711 + 20 +55.6486 + 11 +66.98023999999999 + 21 +58.26963 + 0 +LINE + 5 +12B +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +66.98023999999999 + 20 +58.26963 + 11 +68.6711 + 21 +55.6486 + 0 +LINE + 5 +12C +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +17.6753 + 20 +18.6909 + 11 +17.844799 + 21 +18.098349 + 0 +LINE + 5 +12D +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +17.844799 + 20 +18.098349 + 11 +17.6753 + 21 +18.6909 + 0 +LINE + 5 +12E +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +17.8448 + 20 +18.0983 + 11 +18.266483 + 21 +17.760674 + 0 +LINE + 5 +12F +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +18.266483 + 20 +17.760674 + 11 +17.8448 + 21 +18.0983 + 0 +LINE + 5 +130 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +18.2665 + 20 +17.7607 + 11 +18.689558 + 21 +17.675261 + 0 +LINE + 5 +131 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +18.689558 + 20 +17.675261 + 11 +18.2665 + 21 +17.7607 + 0 +LINE + 5 +132 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +43.5535 + 20 +74.84610000000001 + 11 +40.0023 + 21 +75.26779999999999 + 0 +LINE + 5 +133 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +40.0023 + 20 +75.26779999999999 + 11 +43.5535 + 21 +74.84610000000001 + 0 +LINE + 5 +134 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +40.0023 + 20 +75.26779999999999 + 11 +36.36565 + 21 +75.43730600000001 + 0 +LINE + 5 +135 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +36.36565 + 20 +75.43730600000001 + 11 +40.0023 + 21 +75.26779999999999 + 0 +LINE + 5 +136 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +36.3657 + 20 +75.43729999999999 + 11 +32.72905 + 21 +75.183741 + 0 +LINE + 5 +137 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +32.72905 + 20 +75.183741 + 11 +36.3657 + 21 +75.43729999999999 + 0 +LINE + 5 +138 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +32.729 + 20 +75.1837 + 11 +30.27608 + 21 +74.84607699999999 + 0 +LINE + 5 +139 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +30.27608 + 20 +74.84607699999999 + 11 +32.729 + 21 +75.1837 + 0 +LINE + 5 +13A +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +6.84938 + 20 +58.2696 + 11 +4.98902 + 21 +55.30956 + 0 +LINE + 5 +13B +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +4.98902 + 20 +55.30956 + 11 +6.84938 + 21 +58.2696 + 0 +LINE + 5 +13C +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +4.98902 + 20 +55.3096 + 11 +3.38222 + 21 +52.096 + 0 +LINE + 5 +13D +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +3.38222 + 20 +52.096 + 11 +4.98902 + 21 +55.3096 + 0 +LINE + 5 +13E +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +3.38222 + 20 +52.096 + 11 +2.02898 + 21 +48.88241 + 0 +LINE + 5 +13F +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +2.02898 + 20 +48.88241 + 11 +3.38222 + 21 +52.096 + 0 +LINE + 5 +140 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +2.02899 + 20 +48.8824 + 11 +1.01475 + 21 +45.49931 + 0 +LINE + 5 +141 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +1.01475 + 20 +45.49931 + 11 +2.02899 + 21 +48.8824 + 0 +LINE + 5 +142 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +1.01475 + 20 +45.4993 + 11 +0.422192 + 21 +42.03214 + 0 +LINE + 5 +143 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +0.422192 + 20 +42.03214 + 11 +1.01475 + 21 +45.4993 + 0 +LINE + 5 +144 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +0.42219 + 20 +42.0322 + 11 +0.08457099999999999 + 21 +38.47961 + 0 +LINE + 5 +145 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +0.08457099999999999 + 20 +38.47961 + 11 +0.42219 + 21 +42.0322 + 0 +LINE + 5 +146 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +0.08457099999999999 + 20 +38.4796 + 11 +0.08457099999999999 + 21 +34.9284 + 0 +LINE + 5 +147 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +0.08457099999999999 + 20 +34.9284 + 11 +0.08457099999999999 + 21 +38.4796 + 0 +LINE + 5 +148 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +0.08457099999999999 + 20 +34.9284 + 11 +0.42219 + 21 +31.46124 + 0 +LINE + 5 +149 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +0.42219 + 20 +31.46124 + 11 +0.08457099999999999 + 21 +34.9284 + 0 +LINE + 5 +14A +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +0.42219 + 20 +31.4612 + 11 +1.184247 + 21 +27.99267 + 0 +LINE + 5 +14B +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +1.184247 + 20 +27.99267 + 11 +0.42219 + 21 +31.4612 + 0 +LINE + 5 +14C +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +1.18425 + 20 +27.9927 + 11 +2.19849 + 21 +24.61099 + 0 +LINE + 5 +14D +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +2.19849 + 20 +24.61099 + 11 +1.18425 + 21 +27.9927 + 0 +LINE + 5 +14E +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +2.19849 + 20 +24.611 + 11 +3.46767 + 21 +21.31196 + 0 +LINE + 5 +14F +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +3.46767 + 20 +21.31196 + 11 +2.19849 + 21 +24.611 + 0 +LINE + 5 +150 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +3.46766 + 20 +21.3119 + 11 +5.15852 + 21 +18.18375 + 0 +LINE + 5 +151 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +5.15852 + 20 +18.18375 + 11 +3.46766 + 21 +21.3119 + 0 +LINE + 5 +152 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +5.15852 + 20 +18.1838 + 11 +6.84938 + 21 +15.56139 + 0 +LINE + 5 +153 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +6.84938 + 20 +15.56139 + 11 +5.15852 + 21 +18.1838 + 0 +LINE + 5 +154 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +17.6753 + 20 +55.1401 + 11 +17.6753 + 21 +18.6909 + 0 +LINE + 5 +155 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +17.6753 + 20 +18.6909 + 11 +17.6753 + 21 +55.1401 + 0 +LINE + 5 +156 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +27.4856 + 20 +72.56270000000001 + 11 +24.10251 + 21 +71.46302 + 0 +LINE + 5 +157 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +24.10251 + 20 +71.46302 + 11 +27.4856 + 21 +72.56270000000001 + 0 +LINE + 5 +158 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +24.1025 + 20 +71.46299999999999 + 11 +20.80347 + 21 +70.10977 + 0 +LINE + 5 +159 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +20.80347 + 20 +70.10977 + 11 +24.1025 + 21 +71.46299999999999 + 0 +LINE + 5 +15A +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +20.8034 + 20 +70.10980000000001 + 11 +17.75931 + 21 +68.41755999999999 + 0 +LINE + 5 +15B +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +17.75931 + 20 +68.41755999999999 + 11 +20.8034 + 21 +70.10980000000001 + 0 +LINE + 5 +15C +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +17.7593 + 20 +68.4175 + 11 +15.56132 + 21 +66.9802 + 0 +LINE + 5 +15D +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +15.56132 + 20 +66.9802 + 11 +17.7593 + 21 +68.4175 + 0 +LINE + 5 +15E +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +56.1543 + 20 +55.1401 + 11 +55.986184 + 21 +55.648598 + 0 +LINE + 5 +15F +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +55.986184 + 20 +55.648598 + 11 +56.1543 + 21 +55.1401 + 0 +LINE + 5 +160 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +55.9862 + 20 +55.6486 + 11 +55.563135 + 21 +56.070279 + 0 +LINE + 5 +161 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +55.563135 + 20 +56.070279 + 11 +55.9862 + 21 +55.6486 + 0 +LINE + 5 +162 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +55.5631 + 20 +56.0703 + 11 +55.140042 + 21 +56.155743 + 0 +LINE + 5 +163 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +55.140042 + 20 +56.155743 + 11 +55.5631 + 21 +56.0703 + 0 +LINE + 5 +164 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +56.1543 + 20 +18.6909 + 11 +56.1543 + 21 +55.1401 + 0 +LINE + 5 +165 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +56.1543 + 20 +55.1401 + 11 +56.1543 + 21 +18.6909 + 0 +LINE + 5 +166 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +30.2761 + 20 +74.84610000000001 + 11 +29.17643 + 21 +74.507098 + 0 +LINE + 5 +167 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +29.17643 + 20 +74.507098 + 11 +30.2761 + 21 +74.84610000000001 + 0 +LINE + 5 +168 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +29.1764 + 20 +74.50709999999999 + 11 +28.33028 + 21 +73.830482 + 0 +LINE + 5 +169 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +28.33028 + 20 +73.830482 + 11 +29.1764 + 21 +74.50709999999999 + 0 +LINE + 5 +16A +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +28.3303 + 20 +73.8305 + 11 +27.653682 + 21 +72.900323 + 0 +LINE + 5 +16B +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +27.653682 + 20 +72.900323 + 11 +28.3303 + 21 +73.8305 + 0 +LINE + 5 +16C +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +27.6537 + 20 +72.9003 + 11 +27.48558 + 21 +72.56267699999999 + 0 +LINE + 5 +16D +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +27.48558 + 20 +72.56267699999999 + 11 +27.6537 + 21 +72.9003 + 0 +LINE + 5 +16E +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +10.5715 + 20 +13.9546 + 11 +11.5857 + 21 +13.9546 + 0 +LINE + 5 +16F +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +11.5857 + 20 +13.9546 + 11 +10.5715 + 21 +13.9546 + 0 +LINE + 5 +170 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +11.5857 + 20 +13.9546 + 11 +12.51588 + 21 +13.531545 + 0 +LINE + 5 +171 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +12.51588 + 20 +13.531545 + 11 +11.5857 + 21 +13.9546 + 0 +LINE + 5 +172 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +12.5159 + 20 +13.5315 + 11 +13.277957 + 21 +12.940315 + 0 +LINE + 5 +173 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +13.277957 + 20 +12.940315 + 11 +12.5159 + 21 +13.5315 + 0 +LINE + 5 +174 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +13.2779 + 20 +12.9403 + 11 +13.785018 + 21 +12.008747 + 0 +LINE + 5 +175 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +13.785018 + 20 +12.008747 + 11 +13.2779 + 21 +12.9403 + 0 +LINE + 5 +176 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +13.7851 + 20 +12.0088 + 11 +13.95322 + 21 +10.99456 + 0 +LINE + 5 +177 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +13.95322 + 20 +10.99456 + 11 +13.7851 + 21 +12.0088 + 0 +LINE + 5 +178 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +13.9532 + 20 +10.9945 + 11 +13.9532 + 21 +10.5715 + 0 +LINE + 5 +179 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +13.9532 + 20 +10.5715 + 11 +13.9532 + 21 +10.9945 + 0 +LINE + 5 +17A +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +15.5614 + 20 +6.85076 + 11 +18.52005 + 21 +4.99041 + 0 +LINE + 5 +17B +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +18.52005 + 20 +4.99041 + 11 +15.5614 + 21 +6.85076 + 0 +LINE + 5 +17C +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +18.52 + 20 +4.99041 + 11 +21.64953 + 21 +3.29817 + 0 +LINE + 5 +17D +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +21.64953 + 20 +3.29817 + 11 +18.52 + 21 +4.99041 + 0 +LINE + 5 +17E +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +21.6495 + 20 +3.29817 + 11 +24.94853 + 21 +2.03037 + 0 +LINE + 5 +17F +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +24.94853 + 20 +2.03037 + 11 +21.6495 + 21 +3.29817 + 0 +LINE + 5 +180 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +24.9486 + 20 +2.03037 + 11 +28.33032 + 21 +1.01476 + 0 +LINE + 5 +181 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +28.33032 + 20 +1.01476 + 11 +24.9486 + 21 +2.03037 + 0 +LINE + 5 +182 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +28.3303 + 20 +1.01476 + 11 +31.79883 + 21 +0.423578 + 0 +LINE + 5 +183 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +31.79883 + 20 +0.423578 + 11 +28.3303 + 21 +1.01476 + 0 +LINE + 5 +184 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +31.7988 + 20 +0.423576 + 11 +35.35001 + 21 +0.084574 + 0 +LINE + 5 +185 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +35.35001 + 20 +0.084574 + 11 +31.7988 + 21 +0.423576 + 0 +LINE + 5 +186 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +35.35 + 20 +0.084574 + 11 +38.9026 + 21 +0.084574 + 0 +LINE + 5 +187 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +38.9026 + 20 +0.084574 + 11 +35.35 + 21 +0.084574 + 0 +LINE + 5 +188 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +38.9026 + 20 +0.084574 + 11 +42.36976 + 21 +0.423577 + 0 +LINE + 5 +189 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +42.36976 + 20 +0.423577 + 11 +38.9026 + 21 +0.084574 + 0 +LINE + 5 +18A +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +42.3698 + 20 +0.423576 + 11 +45.83696 + 21 +1.184257 + 0 +LINE + 5 +18B +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +45.83696 + 20 +1.184257 + 11 +42.3698 + 21 +0.423576 + 0 +LINE + 5 +18C +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +45.8369 + 20 +1.18426 + 11 +49.21999 + 21 +2.19988 + 0 +LINE + 5 +18D +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +49.21999 + 20 +2.19988 + 11 +45.8369 + 21 +1.18426 + 0 +LINE + 5 +18E +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +49.22 + 20 +2.19987 + 11 +52.51765 + 21 +3.46766 + 0 +LINE + 5 +18F +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +52.51765 + 20 +3.46766 + 11 +49.22 + 21 +2.19987 + 0 +LINE + 5 +190 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +52.5177 + 20 +3.46767 + 11 +55.64723 + 21 +5.15853 + 0 +LINE + 5 +191 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +55.64723 + 20 +5.15853 + 11 +52.5177 + 21 +3.46767 + 0 +LINE + 5 +192 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +55.6472 + 20 +5.15852 + 11 +58.26961 + 21 +6.85076 + 0 +LINE + 5 +193 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +58.26961 + 20 +6.85076 + 11 +55.6472 + 21 +5.15852 + 0 +LINE + 5 +194 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +58.2696 + 20 +6.85076 + 11 +59.114345 + 21 +7.611438 + 0 +LINE + 5 +195 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +59.114345 + 20 +7.611438 + 11 +58.2696 + 21 +6.85076 + 0 +LINE + 5 +196 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +59.1144 + 20 +7.61144 + 11 +59.621511 + 21 +8.62706 + 0 +LINE + 5 +197 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +59.621511 + 20 +8.62706 + 11 +59.1144 + 21 +7.61144 + 0 +LINE + 5 +198 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +59.6215 + 20 +8.62706 + 11 +59.876439 + 21 +9.72536 + 0 +LINE + 5 +199 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +59.876439 + 20 +9.72536 + 11 +59.6215 + 21 +8.62706 + 0 +LINE + 5 +19A +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +59.8764 + 20 +9.72536 + 11 +59.8764 + 21 +10.5715 + 0 +LINE + 5 +19B +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +59.8764 + 20 +10.5715 + 11 +59.8764 + 21 +9.72536 + 0 +LINE + 5 +19C +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +18.6895 + 20 +56.1557 + 11 +18.098322 + 21 +55.986194 + 0 +LINE + 5 +19D +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +18.098322 + 20 +55.986194 + 11 +18.6895 + 21 +56.1557 + 0 +LINE + 5 +19E +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +18.0983 + 20 +55.9862 + 11 +17.759302 + 21 +55.563142 + 0 +LINE + 5 +19F +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +17.759302 + 20 +55.563142 + 11 +18.0983 + 21 +55.9862 + 0 +LINE + 5 +1A0 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +17.7593 + 20 +55.5632 + 11 +17.675237 + 21 +55.140145 + 0 +LINE + 5 +1A1 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +17.675237 + 20 +55.140145 + 11 +17.7593 + 21 +55.5632 + 0 +LINE + 5 +1A2 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +18.6895 + 20 +17.6753 + 11 +55.1401 + 21 +17.6753 + 0 +LINE + 5 +1A3 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +55.1401 + 20 +17.6753 + 11 +18.6895 + 21 +17.6753 + 0 +LINE + 5 +1A4 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +58.2696 + 20 +66.9802 + 11 +55.30956 + 21 +68.84054999999999 + 0 +LINE + 5 +1A5 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +55.30956 + 20 +68.84054999999999 + 11 +58.2696 + 21 +66.9802 + 0 +LINE + 5 +1A6 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +55.3096 + 20 +68.84059999999999 + 11 +52.09464 + 21 +70.44739 + 0 +LINE + 5 +1A7 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +52.09464 + 20 +70.44739 + 11 +55.3096 + 21 +68.84059999999999 + 0 +LINE + 5 +1A8 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +52.0946 + 20 +70.4474 + 11 +48.881 + 21 +71.80064 + 0 +LINE + 5 +1A9 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +48.881 + 20 +71.80064 + 11 +52.0946 + 21 +70.4474 + 0 +LINE + 5 +1AA +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +48.881 + 20 +71.8006 + 11 +46.34403 + 21 +72.562653 + 0 +LINE + 5 +1AB +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +46.34403 + 20 +72.562653 + 11 +48.881 + 21 +71.8006 + 0 +LINE + 5 +1AC +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +46.3441 + 20 +72.56270000000001 + 11 +45.836982 + 21 +73.492884 + 0 +LINE + 5 +1AD +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +45.836982 + 20 +73.492884 + 11 +46.3441 + 21 +72.56270000000001 + 0 +LINE + 5 +1AE +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +45.8369 + 20 +73.49290000000001 + 11 +44.990776 + 21 +74.25357099999999 + 0 +LINE + 5 +1AF +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +44.990776 + 20 +74.25357099999999 + 11 +45.8369 + 21 +73.49290000000001 + 0 +LINE + 5 +1B0 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +44.9908 + 20 +74.2535 + 11 +43.97656 + 21 +74.760622 + 0 +LINE + 5 +1B1 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +43.97656 + 20 +74.760622 + 11 +44.9908 + 21 +74.2535 + 0 +LINE + 5 +1B2 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +43.9766 + 20 +74.7607 + 11 +43.553545 + 21 +74.846143 + 0 +LINE + 5 +1B3 +100 +AcDbEntity + 8 +Layer 1 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbLine + 10 +43.553545 + 20 +74.846143 + 11 +43.9766 + 21 +74.7607 + 0 +ENDSEC + 0 +SECTION + 2 +OBJECTS + 0 +DICTIONARY + 5 +C +330 +0 +100 +AcDbDictionary +281 + 1 + 3 +ACAD_GROUP +350 +D + 0 +DICTIONARY + 5 +D +330 +C +100 +AcDbDictionary +281 + 1 + 0 +ENDSEC + 0 +EOF diff --git a/F1:F103/Canon_managing_device/main.c b/F1:F103/Canon_managing_device/main.c new file mode 100644 index 0000000..96c6cc0 --- /dev/null +++ b/F1:F103/Canon_managing_device/main.c @@ -0,0 +1,79 @@ +/* + * This file is part of the canonmanage project. + * Copyright 2022 Edward V. Emelianov . + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +#include "canon.h" +#include "hardware.h" +#include "proto.h" +#include "spi.h" +#include "usb.h" + +#define USBBUFSZ 127 + +volatile uint32_t Tms = 0; + +void sys_tick_handler(void){ + ++Tms; +} + +// usb getline +char *get_USB(){ + static char tmpbuf[USBBUFSZ+1], *curptr = tmpbuf; + static int rest = USBBUFSZ; + uint8_t x = USB_receive(curptr); + if(!x) return NULL; + curptr[x] = 0; + if(curptr[x-1] == '\n'){ + curptr = tmpbuf; + rest = USBBUFSZ; + return tmpbuf; + } + curptr += x; rest -= x; + if(rest <= 0){ // buffer overflow + curptr = tmpbuf; + rest = USBBUFSZ; + } + return NULL; +} + +int main(void){ + sysreset(); + StartHSE(); + SysTick_Config(72000); + hw_setup(); + USB_setup(); + spi_setup(); + canon_init(); + + uint32_t ctr = Tms, SPIctr = Tms; + while(1){ + if(Tms - ctr > 499){ + ctr = Tms; + LED_blink(LED0); + } + char *txt = NULL; + usb_proc(); + if((txt = get_USB())){ + const char *ans = parse_cmd(txt); + if(ans) USB_send(ans); + } + if(Tms != SPIctr){ // not more than once per 1ms + SPIctr = Tms; + canon_proc(); + } + } +} diff --git a/F1:F103/Canon_managing_device/proto.c b/F1:F103/Canon_managing_device/proto.c new file mode 100644 index 0000000..13a3ed5 --- /dev/null +++ b/F1:F103/Canon_managing_device/proto.c @@ -0,0 +1,378 @@ +/* + * This file is part of the canonmanage project. + * Copyright 2022 Edward V. Emelianov . + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +#include "canon.h" +#include "hardware.h" +#include "proto.h" +#include "spi.h" +#include "usb.h" +#include "version.inc" + +char *omit_spaces(const char *buf){ + while(*buf){ + if(*buf > ' ') break; + ++buf; + } + return (char*)buf; +} + +// In case of overflow return `buf` and N==0xffffffff +// read decimal number & return pointer to next non-number symbol +static char *getdec(const char *buf, uint32_t *N){ + char *start = (char*)buf; + uint32_t num = 0; + while(*buf){ + char c = *buf; + if(c < '0' || c > '9'){ + break; + } + if(num > 429496729 || (num == 429496729 && c > '5')){ // overflow + *N = 0xffffff; + return start; + } + num *= 10; + num += c - '0'; + ++buf; + } + *N = num; + return (char*)buf; +} +// read hexadecimal number (without 0x prefix!) +static char *gethex(const char *buf, uint32_t *N){ + char *start = (char*)buf; + uint32_t num = 0; + while(*buf){ + char c = *buf; + uint8_t M = 0; + if(c >= '0' && c <= '9'){ + M = '0'; + }else if(c >= 'A' && c <= 'F'){ + M = 'A' - 10; + }else if(c >= 'a' && c <= 'f'){ + M = 'a' - 10; + } + if(M){ + if(num & 0xf0000000){ // overflow + *N = 0xffffff; + return start; + } + num <<= 4; + num += c - M; + }else{ + break; + } + ++buf; + } + *N = num; + return (char*)buf; +} +// read octal number (without 0 prefix!) +static char *getoct(const char *buf, uint32_t *N){ + char *start = (char*)buf; + uint32_t num = 0; + while(*buf){ + char c = *buf; + if(c < '0' || c > '7'){ + break; + } + if(num & 0xe0000000){ // overflow + *N = 0xffffff; + return start; + } + num <<= 3; + num += c - '0'; + ++buf; + } + *N = num; + return (char*)buf; +} +// read binary number (without b prefix!) +static char *getbin(const char *buf, uint32_t *N){ + char *start = (char*)buf; + uint32_t num = 0; + while(*buf){ + char c = *buf; + if(c < '0' || c > '1'){ + break; + } + if(num & 0x80000000){ // overflow + *N = 0xffffff; + return start; + } + num <<= 1; + if(c == '1') num |= 1; + ++buf; + } + *N = num; + return (char*)buf; +} + +/** + * @brief getnum - read uint32_t from string (dec, hex or bin: 127, 0x7f, 0b1111111) + * @param buf - buffer with number and so on + * @param N - the number read + * @return pointer to first non-number symbol in buf + * (if it is == buf, there's no number or if *N==0xffffffff there was overflow) + */ +char *getnum(const char *txt, uint32_t *N){ + char *nxt = NULL; + char *s = omit_spaces(txt); + if(*s == '0'){ // hex, oct or 0 + if(s[1] == 'x' || s[1] == 'X'){ // hex + nxt = gethex(s+2, N); + if(nxt == s+2) nxt = (char*)txt; + }else if(s[1] > '0'-1 && s[1] < '8'){ // oct + nxt = getoct(s+1, N); + if(nxt == s+1) nxt = (char*)txt; + }else{ // 0 + nxt = s+1; + *N = 0; + } + }else if(*s == 'b' || *s == 'B'){ + nxt = getbin(s+1, N); + if(nxt == s+1) nxt = (char*)txt; + }else{ + nxt = getdec(s, N); + if(nxt == s) nxt = (char*)txt; + } + return nxt; +} + +const char* helpmsg = + "https://github.com/eddyem/stm32samples/tree/master/F1-nolib/USB_Canon_management build#" BUILD_NUMBER " @ " BUILD_DATE "\n" + "0 - move to smallest foc value (e.g. 2.5m)\n" + "1 - move to largest foc value (e.g. infinity)\n" + "d - open/close diaphragm by 1 step (+/-), open/close fully (o/c) (no way to know it current status)\n" + "f - get focus state or move it to given relative position\n" + "h - turn on hand focus management\n" + "i - get lens information\n" + "l - get lens model\n" + "r - get regulators' state\n" + "\t\tdebugging commands:\n" + "F - change SPI flags (F f val), f== l-LSBFIRST, b-BR [18MHz/2^(b+1)], p-CPOL, h-CPHA\n" + "G - get SPI status\n" + "I - reinit SPI\n" + "R - software reset\n" + "S - send data over SPI\n" + "T - show Tms value\n" +; + +#define STBUFSZ 255 +static char stbuf[STBUFSZ+1], *bptr = NULL; +static int blen = 0; +static void initbuf(){bptr = stbuf; blen = STBUFSZ; *bptr = 0;} +#define newline() do{if(blen){ *bptr++ = '\n'; *bptr = 0; --blen; }}while(0) +static void add2buf(const char *s){ + while(blen && *s){ + *bptr++ = *s++; + --blen; + } + *bptr = 0; +} + +static void errw(int e){ + if(e){ + add2buf("Error with code "); + add2buf(u2str(e)); + if(e == 1) add2buf(" (busy or need initialization)"); + }else add2buf("OK"); +} + +extern uint8_t usbON; +const char *parse_cmd(const char *buf){ + //uint32_t u3; + initbuf(); + if(buf[1] == '\n' || !buf[1]){ // one symbol commands + switch(*buf){ + case '0': + errw(canon_sendcmd(CANON_FMIN)); + break; + case '1': + errw(canon_sendcmd(CANON_FMAX)); + break; + case 'f': + errw(canon_focus(0)); + break; + case 'i': + errw(canon_getinfo()); + break; + case 'l': + errw(canon_asku16(CANON_GETMODEL)); + break; + case 'r': + errw(canon_asku16(CANON_GETREG)); + break; + case 'F': // just watch SPI->CR1 value + add2buf("SPI1->CR1="); add2buf(u2hexstr(SPI_CR1)); + break; + case 'G': + add2buf("SPI "); + switch(SPI_status){ + case SPI_NOTREADY: + add2buf("not ready"); + break; + case SPI_READY: + add2buf("ready"); + break; + case SPI_BUSY: + add2buf("busy"); + break; + default: + add2buf("unknown"); + } + break; + case 'h': + errw(canon_sendcmd(CANON_FOCBYHANDS)); + break; + case 'I': + add2buf("Reinit SPI"); + spi_setup(); + canon_init(); + break; + case 'R': + USB_send("Soft reset\n"); + NVIC_SystemReset(); + break; + case 'T': + add2buf("Tms="); + add2buf(u2str(Tms)); + break; + default: + return helpmsg; + } + newline(); + return stbuf; + } + uint32_t D = 0, N = 0; + char *nxt; + switch(*buf){ // long messages + case 'd': + nxt = omit_spaces(buf+1); + errw(canon_diaphragm(*nxt)); + break; + case 'f': // move focus + buf = omit_spaces(buf + 1); + int16_t neg = 1; + if(*buf == '-'){ ++buf; neg = -1; } + nxt = getnum(buf, &D); + if(nxt == buf) add2buf("Need number"); + else if(D > 0x7fff) add2buf("From -0x7fff to 0x7fff"); + else errw(canon_focus(neg * (int32_t)D)); + break; + case 'F': // SPI flags + nxt = omit_spaces(buf+1); + char c = *nxt; + if(*nxt && *nxt != '\n'){ + buf = nxt + 1; + nxt = getnum(buf, &D); + if(buf == nxt || D > 7) return helpmsg; + } + switch(c){ + case 'b': + SPI_CR1 &= ~SPI_CR1_BR; + SPI_CR1 |= ((uint8_t)D) << 3; + break; + case 'h': + if(D) SPI_CR1 |= SPI_CR1_CPHA; + else SPI_CR1 &= ~SPI_CR1_CPHA; + break; + case 'l': + if(D) SPI_CR1 |= SPI_CR1_LSBFIRST; + else SPI_CR1 &= ~SPI_CR1_LSBFIRST; + break; + case 'p': + if(D) SPI_CR1 |= SPI_CR1_CPOL; + else SPI_CR1 &= ~SPI_CR1_CPOL; + break; + default: + return helpmsg; + } + add2buf("SPI_CR1="); add2buf(u2hexstr(SPI_CR1)); + break; + case 'S': // use stbuf here to store user data + ++buf; + do{ + nxt = getnum(buf, &D); + if(buf == nxt) break; + buf = nxt; + if(D > 0xff){ + USB_send("Number should be from 0 to 0xff\n"); + return NULL; + } + stbuf[N++] = (uint8_t)D; + if(N == STBUFSZ) break; + }while(1); + if(N == 0){ + USB_send("Enter data bytes\n"); + return NULL; + } + USB_send("Send: "); + for(uint32_t i = 0; i < N; ++i){ + if(i) USB_send(", "); + USB_send(u2hexstr(stbuf[i])); + } + USB_send("\n... "); + canon_setlastcmd(stbuf[0]); + if(N == SPI_transmit((uint8_t*)stbuf, (uint8_t)N)) USB_send("OK\n"); + else USB_send("Failed\n"); + return NULL; + break; + default: + return buf; + } + newline(); + return stbuf; +} + + +// return string with number `val` +char *u2str(uint32_t val){ + static char strbuf[11]; + char *bufptr = &strbuf[10]; + *bufptr = 0; + if(!val){ + *(--bufptr) = '0'; + }else{ + while(val){ + *(--bufptr) = val % 10 + '0'; + val /= 10; + } + } + return bufptr; +} + +char *u2hexstr(uint32_t val){ + static char strbuf[11] = "0x"; + char *sptr = strbuf + 2; + uint8_t *ptr = (uint8_t*)&val + 3; + int8_t i, j, z=1; + for(i = 0; i < 4; ++i, --ptr){ + if(*ptr == 0){ // omit leading zeros + if(i == 3) z = 0; + if(z) continue; + } + else z = 0; + for(j = 1; j > -1; --j){ + uint8_t half = (*ptr >> (4*j)) & 0x0f; + if(half < 10) *sptr++ = half + '0'; + else *sptr++ = half - 10 + 'a'; + } + } + *sptr = 0; + return strbuf; +} diff --git a/F1:F103/Canon_managing_device/proto.h b/F1:F103/Canon_managing_device/proto.h new file mode 100644 index 0000000..42ebdff --- /dev/null +++ b/F1:F103/Canon_managing_device/proto.h @@ -0,0 +1,31 @@ +/* + * This file is part of the canonmanage project. + * Copyright 2022 Edward V. Emelianov . + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +#pragma once +#ifndef PROTO_H__ +#define PROTO_H__ + +#include + +const char *parse_cmd(const char *buf); +char *omit_spaces(const char *buf); +char *getnum(const char *buf, uint32_t *N); +char *u2str(uint32_t val); +char *u2hexstr(uint32_t val); + +#endif // PROTO_H__ diff --git a/F1:F103/Canon_managing_device/ringbuffer.c b/F1:F103/Canon_managing_device/ringbuffer.c new file mode 100644 index 0000000..972d6a0 --- /dev/null +++ b/F1:F103/Canon_managing_device/ringbuffer.c @@ -0,0 +1,77 @@ +/* + * This file is part of the canonmanage project. + * Copyright 2022 Edward V. Emelianov . + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +#include + +#include "ringbuffer.h" + +// ring buffer +static char ringbuffer[RBSIZE]; +// head - position of first data byte +// tail - position of last data byte + 1 +// head == tail - empty! So, buffer can't store more than RBSIZE-1 bytes of data! +static volatile int head = 0, tail = 0; + +static int datalen(){ + if(tail >= head) return (tail - head); + else return (RBSIZE - head + tail); +} +static int restlen(){ + return (RBSIZE - 1 - datalen()); +} + +static void mcpy(char *targ, const char *src, int l){ + while(l--) *targ++ = *src++; +} + +TRUE_INLINE void incr(volatile int *what, int n){ + *what += n; + if(*what >= RBSIZE) *what -= RBSIZE; +} + +int RB_read(char s[BLOCKSIZE]){ + int l = datalen(); + if(!l) return 0; + if(l > BLOCKSIZE) l = BLOCKSIZE; + int _1st = RBSIZE - head; + if(_1st > l) _1st = l; + if(_1st > BLOCKSIZE) _1st = BLOCKSIZE; + mcpy(s, ringbuffer+head, _1st); + if(_1st < BLOCKSIZE && l > _1st){ + mcpy(s+_1st, ringbuffer, l-_1st); + incr(&head, l); + return l; + } + incr(&head ,_1st); + return _1st; +} + +int RB_write(const char *str, int l){ + int r = restlen(); + if(l > r) l = r; + if(!l) return 0; + int _1st = RBSIZE - tail; + if(_1st > l) _1st = l; + mcpy(ringbuffer+tail, str, _1st); + if(_1st < l){ // add another piece from start + mcpy(ringbuffer, str+_1st, l-_1st); + } + incr(&tail, l); + return l; +} + diff --git a/F1:F103/Canon_managing_device/ringbuffer.h b/F1:F103/Canon_managing_device/ringbuffer.h new file mode 100644 index 0000000..5acc33b --- /dev/null +++ b/F1:F103/Canon_managing_device/ringbuffer.h @@ -0,0 +1,33 @@ +/* + * This file is part of the canonmanage project. + * Copyright 2022 Edward V. Emelianov . + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +#pragma once +#ifndef RINGBUFFER_H__ +#define RINGBUFFER_H__ + +#include "usbhw.h" // for USB_TXBUFSZ + +// ring buffer size in bytes +#define RBSIZE (512) +// max reading portion size +#define BLOCKSIZE (USB_TXBUFSZ) + +int RB_read(char s[BLOCKSIZE]); +int RB_write(const char *str, int l); + +#endif // RINGBUFFER_H__ diff --git a/F1:F103/Canon_managing_device/spi.c b/F1:F103/Canon_managing_device/spi.c new file mode 100644 index 0000000..969da9e --- /dev/null +++ b/F1:F103/Canon_managing_device/spi.c @@ -0,0 +1,80 @@ +/* + * This file is part of the LED_screen project. + * Copyright 2019 Edward V. Emelianov . + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +// memcpy hangs -> use my own + +#include "spi.h" +#include "hardware.h" +#ifdef EBUG +#include "usb.h" +#endif +#include "proto.h" + +/* +static void mymemcpy(uint8_t *dest, uint8_t *src, int len){ + while(len--) *dest++ = *src++; +}*/ + +// CR1 register default values, can be changed in 'proto.c' +uint32_t SPI_CR1 = SPI_CR1_MSTR | SPI_CR1_BR | SPI_CR1_SSM | SPI_CR1_SSI | SPI_CR1_CPHA | SPI_CR1_CPOL; + +spiStatus SPI_status = SPI_NOTREADY; +static uint8_t inbuff[SPIBUFSZ], lastlen = 0; + +void spi_setup(){ + RCC->APB2ENR |= SPI_APB2; // Enable the peripheral clock SPI1 + // master, no slave select, BR=F/16, CPOL/CPHA - polarity. + SPIx->CR1 = SPI_CR1; + SPI_status = SPI_READY; + SPIx->CR1 |= SPI_CR1_SPE; // enable SPI +} + +/** + * @brief SPI_transmit - transmit data over SPI DMA + * @param buf - data to transmit + * @param len - its length + * @return amount of transmitted data + */ +uint8_t SPI_transmit(const uint8_t *buf, uint8_t len){ + if(!buf || !len) return 0; // bad data format + if(SPI_status != SPI_READY) return 0; // spi not ready to transmit data + for(uint8_t x = 0; x < len; ++x){ + while(!(SPI1->SR & SPI_SR_TXE)); + SPI1->DR = buf[x]; + while(!(SPI1->SR & SPI_SR_BSY)); + while(!(SPI1->SR & SPI_SR_RXNE)); + inbuff[x] = SPI1->DR; + for(int ctr = 0; ctr < 3600; ++ctr) nop(); // ~100mks delay + } + lastlen = len; + return len; +} + +/** + * @brief SPI_receive - get received data + * @param len (o) - received length + * @return received buffer + */ +uint8_t *SPI_receive(uint8_t *len){ + if(SPI_status != SPI_READY) return NULL; + if(lastlen == 0) return NULL; + if(len) *len = lastlen; + lastlen = 0; + return inbuff; +} + diff --git a/F1:F103/Canon_managing_device/spi.h b/F1:F103/Canon_managing_device/spi.h new file mode 100644 index 0000000..55c5ccc --- /dev/null +++ b/F1:F103/Canon_managing_device/spi.h @@ -0,0 +1,39 @@ +/* + * This file is part of the LED_screen project. + * Copyright 2019 Edward V. Emelianov . + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +#pragma once +#ifndef SPI_H__ +#define SPI_H__ + +#include "stm32f1.h" + +extern uint32_t SPI_CR1; + +typedef enum{ + SPI_NOTREADY, + SPI_READY, + SPI_BUSY +} spiStatus; + +extern spiStatus SPI_status; + +void spi_setup(); +uint8_t SPI_transmit(const uint8_t *buf, uint8_t len); +uint8_t *SPI_receive(uint8_t *len); + +#endif // SPI_H__ diff --git a/F1:F103/Canon_managing_device/usb.c b/F1:F103/Canon_managing_device/usb.c new file mode 100644 index 0000000..f39a217 --- /dev/null +++ b/F1:F103/Canon_managing_device/usb.c @@ -0,0 +1,116 @@ +/* + * This file is part of the MLX90640 project. + * Copyright 2022 Edward V. Emelianov . + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +#include "ringbuffer.h" +#include "usb.h" +#include "usb_lib.h" + +static char usbbuff[USB_TXBUFSZ]; // temporary buffer for sending data +volatile uint8_t tx_succesfull = 1; +static volatile uint8_t rxNE = 0; + +void send_next(){ + //if(!tx_succesfull) return; + static int lastdsz = 0; + int buflen = RB_read(usbbuff); + if(!buflen){ + if(lastdsz == 64) EP_Write(3, NULL, 0); // send ZLP after 64 bits packet when nothing more to send + lastdsz = 0; + return; + } + tx_succesfull = 0; + EP_Write(3, (uint8_t*)usbbuff, buflen); + lastdsz = buflen; +} + +// put `buf` into queue to send +void USB_send(const char *buf){ + if(!buf || !usbON) return; + int len = 0; + const char *b = buf; + while(*b++) ++len; + if(!usbON || !len) return; + int l = len; + while(l){ + if(tx_succesfull) send_next(); + int a = RB_write(buf, l); + l -= a; + buf += a; + } +} + +// interrupt IN handler (never used?) +static void EP1_Handler(){ + uint16_t epstatus = KEEP_DTOG(USB->EPnR[1]); + if(RX_FLAG(epstatus)) epstatus = (epstatus & ~USB_EPnR_STAT_TX) ^ USB_EPnR_STAT_RX; // set valid RX + else epstatus = epstatus & ~(USB_EPnR_STAT_TX|USB_EPnR_STAT_RX); + // clear CTR + epstatus = (epstatus & ~(USB_EPnR_CTR_RX|USB_EPnR_CTR_TX)); + USB->EPnR[1] = epstatus; +} + +// data IN/OUT handlers +static void transmit_Handler(){ // EP3IN + tx_succesfull = 1; + uint16_t epstatus = KEEP_DTOG_STAT(USB->EPnR[3]); + // clear CTR keep DTOGs & STATs + USB->EPnR[3] = (epstatus & ~(USB_EPnR_CTR_TX)); // clear TX ctr +} + +static void receive_Handler(){ // EP2OUT + rxNE = 1; + uint16_t epstatus = KEEP_DTOG_STAT(USB->EPnR[2]); + USB->EPnR[2] = (epstatus & ~(USB_EPnR_CTR_RX)); // clear RX ctr +} + +void usb_proc(){ + switch(USB_Dev.USB_Status){ + case USB_STATE_CONFIGURED: + // make new BULK endpoint + // Buffer have 1024 bytes, but last 256 we use for CAN bus (30.2 of RM: USB main features) + EP_Init(1, EP_TYPE_INTERRUPT, USB_EP1BUFSZ, 0, EP1_Handler); // IN1 - transmit + EP_Init(2, EP_TYPE_BULK, 0, USB_RXBUFSZ, receive_Handler); // OUT2 - receive data + EP_Init(3, EP_TYPE_BULK, USB_TXBUFSZ, 0, transmit_Handler); // IN3 - transmit data + USB_Dev.USB_Status = USB_STATE_CONNECTED; + break; + case USB_STATE_DEFAULT: + case USB_STATE_ADDRESSED: + if(usbON){ + usbON = 0; + } + break; + default: // USB_STATE_CONNECTED - send next data portion + if(!usbON) return; + if(tx_succesfull) send_next(); + } +} + +/** + * @brief USB_receive + * @param buf (i) - buffer[64] for received data + * @return amount of received bytes + */ +uint8_t USB_receive(char *buf){ + if(!usbON || !rxNE) return 0; + uint8_t sz = EP_Read(2, (uint16_t*)buf); + uint16_t epstatus = KEEP_DTOG(USB->EPnR[2]); + // keep stat_tx & set ACK rx + USB->EPnR[2] = (epstatus & ~(USB_EPnR_STAT_TX)) ^ USB_EPnR_STAT_RX; + rxNE = 0; + return sz; +} diff --git a/F1:F103/Canon_managing_device/usb.h b/F1:F103/Canon_managing_device/usb.h new file mode 100644 index 0000000..6e62b64 --- /dev/null +++ b/F1:F103/Canon_managing_device/usb.h @@ -0,0 +1,34 @@ +/* + * This file is part of the MLX90640 project. + * Copyright 2022 Edward V. Emelianov . + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +#pragma once +#ifndef __USB_H__ +#define __USB_H__ + +#include "usbhw.h" + +#define BUFFSIZE (64) + +extern volatile uint8_t tx_succesfull; + +void usb_proc(); +void send_next(); +void USB_send(const char *buf); +uint8_t USB_receive(char *buf); + +#endif // __USB_H__ diff --git a/F1:F103/Canon_managing_device/usb_lib.c b/F1:F103/Canon_managing_device/usb_lib.c new file mode 100644 index 0000000..ff84a18 --- /dev/null +++ b/F1:F103/Canon_managing_device/usb_lib.c @@ -0,0 +1,387 @@ +/* + * This file is part of the MLX90640 project. + * Copyright 2022 Edward V. Emelianov . + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +#include +#include "usb_lib.h" + +ep_t endpoints[STM32ENDPOINTS]; + +usb_dev_t USB_Dev; +static usb_LineCoding lineCoding = {115200, 0, 0, 8}; +config_pack_t setup_packet; +uint8_t ep0databuf[EP0DATABUF_SIZE]; +uint8_t ep0dbuflen = 0; + +usb_LineCoding getLineCoding(){return lineCoding;} + +uint8_t usbON = 0; // device disconnected from terminal + +// definition of parts common for USB_DeviceDescriptor & USB_DeviceQualifierDescriptor +#define bcdUSB_L 0x10 +#define bcdUSB_H 0x01 +#define bDeviceClass 0 +#define bDeviceSubClass 0 +#define bDeviceProtocol 0 +#define bNumConfigurations 1 + +static const uint8_t USB_DeviceDescriptor[] = { + 18, // bLength + 0x01, // bDescriptorType - Device descriptor + bcdUSB_L, // bcdUSB_L - 1.10 + bcdUSB_H, // bcdUSB_H + bDeviceClass, // bDeviceClass - USB_COMM + bDeviceSubClass, // bDeviceSubClass + bDeviceProtocol, // bDeviceProtocol + USB_EP0_BUFSZ, // bMaxPacketSize + 0x7b, // idVendor_L PL2303: VID=0x067b, PID=0x2303 + 0x06, // idVendor_H + 0x03, // idProduct_L + 0x23, // idProduct_H + 0x00, // bcdDevice_Ver_L + 0x03, // bcdDevice_Ver_H + 0x01, // iManufacturer + 0x02, // iProduct + 0x00, // iSerialNumber + bNumConfigurations // bNumConfigurations +}; + +static const uint8_t USB_DeviceQualifierDescriptor[] = { + 10, //bLength + 0x06, // bDescriptorType - Device qualifier + bcdUSB_L, // bcdUSB_L + bcdUSB_H, // bcdUSB_H + bDeviceClass, // bDeviceClass + bDeviceSubClass, // bDeviceSubClass + bDeviceProtocol, // bDeviceProtocol + USB_EP0_BUFSZ, // bMaxPacketSize0 + bNumConfigurations, // bNumConfigurations + 0x00 // Reserved +}; + +static const uint8_t USB_ConfigDescriptor[] = { + /*Configuration Descriptor*/ + 0x09, /* bLength: Configuration Descriptor size */ + 0x02, /* bDescriptorType: Configuration */ + 39, /* wTotalLength:no of returned bytes */ + 0x00, + 0x01, /* bNumInterfaces: 1 interface */ + 0x01, /* bConfigurationValue: Configuration value */ + 0x00, /* iConfiguration: Index of string descriptor describing the configuration */ + 0xa0, /* bmAttributes - Bus powered, Remote wakeup */ + 0x32, /* MaxPower 100 mA */ + + /*---------------------------------------------------------------------------*/ + + /*Interface Descriptor */ + 0x09, /* bLength: Interface Descriptor size */ + 0x04, /* bDescriptorType: Interface */ + 0x00, /* bInterfaceNumber: Number of Interface */ + 0x00, /* bAlternateSetting: Alternate setting */ + 0x03, /* bNumEndpoints: 3 endpoints used */ + 0xff, /* bInterfaceClass */ + 0x00, /* bInterfaceSubClass */ + 0x00, /* bInterfaceProtocol */ + 0x00, /* iInterface: */ +/////////////////////////////////////////////////// + /*Endpoint 1 Descriptor*/ + 0x07, /* bLength: Endpoint Descriptor size */ + 0x05, /* bDescriptorType: Endpoint */ + 0x81, /* bEndpointAddress IN1 */ + 0x03, /* bmAttributes: Interrupt */ + 0x0a, /* wMaxPacketSize LO: */ + 0x00, /* wMaxPacketSize HI: */ + 0x01, /* bInterval: */ + + /*Endpoint OUT2 Descriptor*/ + 0x07, /* bLength: Endpoint Descriptor size */ + 0x05, /* bDescriptorType: Endpoint */ + 0x02, /* bEndpointAddress: OUT2 */ + 0x02, /* bmAttributes: Bulk */ + (USB_RXBUFSZ & 0xff), /* wMaxPacketSize: 64 */ + (USB_RXBUFSZ >> 8), + 0x00, /* bInterval: ignore for Bulk transfer */ + + /*Endpoint IN3 Descriptor*/ + 0x07, /* bLength: Endpoint Descriptor size */ + 0x05, /* bDescriptorType: Endpoint */ + 0x83, /* bEndpointAddress IN3 */ + 0x02, /* bmAttributes: Bulk */ + (USB_TXBUFSZ & 0xff), /* wMaxPacketSize: 64 */ + (USB_TXBUFSZ >> 8), + 0x00, /* bInterval: ignore for Bulk transfer */ +}; + +_USB_LANG_ID_(USB_StringLangDescriptor, LANG_US); +// these descriptors are not used in PL2303 emulator! +_USB_STRING_(USB_StringSerialDescriptor, u"0"); +_USB_STRING_(USB_StringManufacturingDescriptor, u"Prolific Technology Inc."); +_USB_STRING_(USB_StringProdDescriptor, u"USB-Serial Controller"); + +/* + * default handlers + */ +// SET_LINE_CODING +void WEAK linecoding_handler(usb_LineCoding __attribute__((unused)) *lc){ +} + +// SET_CONTROL_LINE_STATE +void WEAK clstate_handler(uint16_t __attribute__((unused)) val){ +} + +// SEND_BREAK +void WEAK break_handler(){ +} + +// handler of vendor requests +void WEAK vendor_handler(config_pack_t *packet){ + if(packet->bmRequestType & 0x80){ // read + uint8_t c; + switch(packet->wValue){ + case 0x8484: + c = 2; + break; + case 0x0080: + c = 1; + break; + case 0x8686: + c = 0xaa; + break; + default: + c = 0; + } + EP_WriteIRQ(0, &c, 1); + }else{ // write ZLP + EP_WriteIRQ(0, (uint8_t *)0, 0); + } +} + +static void wr0(const uint8_t *buf, uint16_t size){ + if(setup_packet.wLength < size) size = setup_packet.wLength; // shortened request + if(size < endpoints[0].txbufsz){ + EP_WriteIRQ(0, buf, size); + return; + } + while(size){ + uint16_t l = size; + if(l > endpoints[0].txbufsz) l = endpoints[0].txbufsz; + EP_WriteIRQ(0, buf, l); + buf += l; + size -= l; + uint8_t needzlp = (l == endpoints[0].txbufsz) ? 1 : 0; + if(size || needzlp){ // send last data buffer + uint16_t status = KEEP_DTOG(USB->EPnR[0]); + // keep DTOGs, clear CTR_RX,TX, set TX VALID, leave stat_Rx + USB->EPnR[0] = (status & ~(USB_EPnR_CTR_RX|USB_EPnR_CTR_TX|USB_EPnR_STAT_RX)) + ^ USB_EPnR_STAT_TX; + uint32_t ctr = 1000000; + while(--ctr && (USB->ISTR & USB_ISTR_CTR) == 0){IWDG->KR = IWDG_REFRESH;}; + if((USB->ISTR & USB_ISTR_CTR) == 0){ + return; + } + if(needzlp) EP_WriteIRQ(0, (uint8_t*)0, 0); + } + } +} + +static inline void get_descriptor(){ + switch(setup_packet.wValue){ + case DEVICE_DESCRIPTOR: + wr0(USB_DeviceDescriptor, sizeof(USB_DeviceDescriptor)); + break; + case CONFIGURATION_DESCRIPTOR: + wr0(USB_ConfigDescriptor, sizeof(USB_ConfigDescriptor)); + break; + case STRING_LANG_DESCRIPTOR: + wr0((const uint8_t *)&USB_StringLangDescriptor, STRING_LANG_DESCRIPTOR_SIZE_BYTE); + break; + case STRING_MAN_DESCRIPTOR: + wr0((const uint8_t *)&USB_StringManufacturingDescriptor, USB_StringManufacturingDescriptor.bLength); + break; + case STRING_PROD_DESCRIPTOR: + wr0((const uint8_t *)&USB_StringProdDescriptor, USB_StringProdDescriptor.bLength); + break; + case STRING_SN_DESCRIPTOR: + wr0((const uint8_t *)&USB_StringSerialDescriptor, USB_StringSerialDescriptor.bLength); + break; + case DEVICE_QUALIFIER_DESCRIPTOR: + wr0(USB_DeviceQualifierDescriptor, USB_DeviceQualifierDescriptor[0]); + break; + default: + break; + } +} + +static uint8_t configuration = 0; // reply for GET_CONFIGURATION (==1 if configured) +static inline void std_d2h_req(){ + uint16_t status = 0; // bus powered + switch(setup_packet.bRequest){ + case GET_DESCRIPTOR: + get_descriptor(); + break; + case GET_STATUS: + EP_WriteIRQ(0, (uint8_t *)&status, 2); // send status: Bus Powered + break; + case GET_CONFIGURATION: + EP_WriteIRQ(0, &configuration, 1); + break; + default: + break; + } +} + +static inline void std_h2d_req(){ + switch(setup_packet.bRequest){ + case SET_ADDRESS: + // new address will be assigned later - after acknowlegement or request to host + USB_Dev.USB_Addr = setup_packet.wValue; + break; + case SET_CONFIGURATION: + // Now device configured + USB_Dev.USB_Status = USB_STATE_CONFIGURED; + configuration = setup_packet.wValue; + break; + default: + break; + } +} + +/* +bmRequestType: 76543210 +7 direction: 0 - host->device, 1 - device->host +65 type: 0 - standard, 1 - class, 2 - vendor +4..0 getter: 0 - device, 1 - interface, 2 - endpoint, 3 - other +*/ +/** + * Endpoint0 (control) handler + */ +void EP0_Handler(){ + uint16_t epstatus = USB->EPnR[0]; // EP0R on input -> return this value after modifications + uint8_t reqtype = setup_packet.bmRequestType & 0x7f; + uint8_t dev2host = (setup_packet.bmRequestType & 0x80) ? 1 : 0; + int rxflag = RX_FLAG(epstatus); + if(rxflag && SETUP_FLAG(epstatus)){ + switch(reqtype){ + case STANDARD_DEVICE_REQUEST_TYPE: // standard device request + if(dev2host){ + std_d2h_req(); + }else{ + std_h2d_req(); + EP_WriteIRQ(0, (uint8_t *)0, 0); + } + break; + case STANDARD_ENDPOINT_REQUEST_TYPE: // standard endpoint request + if(setup_packet.bRequest == CLEAR_FEATURE){ + EP_WriteIRQ(0, (uint8_t *)0, 0); + } + break; + case VENDOR_REQUEST_TYPE: + vendor_handler(&setup_packet); + break; + case CONTROL_REQUEST_TYPE: + switch(setup_packet.bRequest){ + case GET_LINE_CODING: + EP_WriteIRQ(0, (uint8_t*)&lineCoding, sizeof(lineCoding)); + break; + case SET_LINE_CODING: // omit this for next stage, when data will come + break; + case SET_CONTROL_LINE_STATE: + usbON = 1; + clstate_handler(setup_packet.wValue); + break; + case SEND_BREAK: + usbON = 0; + break_handler(); + break; + default: + break; + } + if(setup_packet.bRequest != GET_LINE_CODING) EP_WriteIRQ(0, (uint8_t *)0, 0); // write acknowledgement + break; + default: + EP_WriteIRQ(0, (uint8_t *)0, 0); + } + }else if(rxflag){ // got data over EP0 or host acknowlegement + if(endpoints[0].rx_cnt){ + if(setup_packet.bRequest == SET_LINE_CODING){ + linecoding_handler((usb_LineCoding*)ep0databuf); + } + } + } else if(TX_FLAG(epstatus)){ // package transmitted + // now we can change address after enumeration + if ((USB->DADDR & USB_DADDR_ADD) != USB_Dev.USB_Addr){ + USB->DADDR = USB_DADDR_EF | USB_Dev.USB_Addr; + // change state to ADRESSED + USB_Dev.USB_Status = USB_STATE_ADDRESSED; + } + } + epstatus = KEEP_DTOG(USB->EPnR[0]); + if(rxflag) epstatus ^= USB_EPnR_STAT_TX; // start ZLP/data transmission + else epstatus &= ~USB_EPnR_STAT_TX; // or leave unchanged + // keep DTOGs, clear CTR_RX,TX, set RX VALID + USB->EPnR[0] = (epstatus & ~(USB_EPnR_CTR_RX|USB_EPnR_CTR_TX)) ^ USB_EPnR_STAT_RX; +} + +/** + * Write data to EP buffer (called from IRQ handler) + * @param number - EP number + * @param *buf - array with data + * @param size - its size + */ +void EP_WriteIRQ(uint8_t number, const uint8_t *buf, uint16_t size){ + if(size > endpoints[number].txbufsz) size = endpoints[number].txbufsz; + uint16_t N2 = (size + 1) >> 1; + // the buffer is 16-bit, so we should copy data as it would be uint16_t + uint16_t *buf16 = (uint16_t *)buf; + uint32_t *out = (uint32_t *)endpoints[number].tx_buf; + for(int i = 0; i < N2; ++i, ++out){ + *out = buf16[i]; + } + USB_BTABLE->EP[number].USB_COUNT_TX = size; +} + +/** + * Write data to EP buffer (called outside IRQ handler) + * @param number - EP number + * @param *buf - array with data + * @param size - its size + */ +void EP_Write(uint8_t number, const uint8_t *buf, uint16_t size){ + EP_WriteIRQ(number, buf, size); + uint16_t status = KEEP_DTOG(USB->EPnR[number]); + // keep DTOGs, clear CTR_TX & set TX VALID to start transmission + USB->EPnR[number] = (status & ~(USB_EPnR_CTR_TX)) ^ USB_EPnR_STAT_TX; +} + +/* + * Copy data from EP buffer into user buffer area + * @param *buf - user array for data + * @return amount of data read + */ +int EP_Read(uint8_t number, uint16_t *buf){ + int sz = endpoints[number].rx_cnt; + if(!sz) return 0; + endpoints[number].rx_cnt = 0; + int n = (sz + 1) >> 1; + uint32_t *in = (uint32_t *)endpoints[number].rx_buf; + if(n){ + for(int i = 0; i < n; ++i, ++in) + buf[i] = *(uint16_t*)in; + } + return sz; +} + diff --git a/F1:F103/Canon_managing_device/usb_lib.h b/F1:F103/Canon_managing_device/usb_lib.h new file mode 100644 index 0000000..739fe2d --- /dev/null +++ b/F1:F103/Canon_managing_device/usb_lib.h @@ -0,0 +1,186 @@ +/* + * This file is part of the MLX90640 project. + * Copyright 2022 Edward V. Emelianov . + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +#pragma once +#ifndef __USB_LIB_H__ +#define __USB_LIB_H__ + +#include +#include "usbhw.h" + +#define EP0DATABUF_SIZE (64) +#define LASTADDR_DEFAULT (STM32ENDPOINTS * 8) + +// bmRequestType & 0x7f +#define STANDARD_DEVICE_REQUEST_TYPE 0 +#define STANDARD_ENDPOINT_REQUEST_TYPE 2 +#define VENDOR_REQUEST_TYPE 0x40 +#define CONTROL_REQUEST_TYPE 0x21 +// bRequest, standard; for bmRequestType == 0x80 +#define GET_STATUS 0x00 +#define GET_DESCRIPTOR 0x06 +#define GET_CONFIGURATION 0x08 +// for bmRequestType == 0 +#define CLEAR_FEATURE 0x01 +#define SET_FEATURE 0x03 // unused +#define SET_ADDRESS 0x05 +#define SET_DESCRIPTOR 0x07 // unused +#define SET_CONFIGURATION 0x09 +// for bmRequestType == 0x81, 1 or 0xB2 +#define GET_INTERFACE 0x0A // unused +#define SET_INTERFACE 0x0B // unused +#define SYNC_FRAME 0x0C // unused +#define VENDOR_REQUEST 0x01 // unused + +// Class-Specific Control Requests +#define SEND_ENCAPSULATED_COMMAND 0x00 // unused +#define GET_ENCAPSULATED_RESPONSE 0x01 // unused +#define SET_COMM_FEATURE 0x02 // unused +#define GET_COMM_FEATURE 0x03 // unused +#define CLEAR_COMM_FEATURE 0x04 // unused +#define SET_LINE_CODING 0x20 +#define GET_LINE_CODING 0x21 +#define SET_CONTROL_LINE_STATE 0x22 +#define SEND_BREAK 0x23 + +// control line states +#define CONTROL_DTR 0x01 +#define CONTROL_RTS 0x02 + +// wValue +#define DEVICE_DESCRIPTOR 0x100 +#define CONFIGURATION_DESCRIPTOR 0x200 +#define STRING_LANG_DESCRIPTOR 0x300 +#define STRING_MAN_DESCRIPTOR 0x301 +#define STRING_PROD_DESCRIPTOR 0x302 +#define STRING_SN_DESCRIPTOR 0x303 +#define DEVICE_QUALIFIER_DESCRIPTOR 0x600 + +#define RX_FLAG(epstat) (epstat & USB_EPnR_CTR_RX) +#define TX_FLAG(epstat) (epstat & USB_EPnR_CTR_TX) +#define SETUP_FLAG(epstat) (epstat & USB_EPnR_SETUP) + +// EPnR bits manipulation +#define KEEP_DTOG_STAT(EPnR) (EPnR & ~(USB_EPnR_STAT_RX|USB_EPnR_STAT_TX|USB_EPnR_DTOG_RX|USB_EPnR_DTOG_TX)) +#define KEEP_DTOG(EPnR) (EPnR & ~(USB_EPnR_DTOG_RX|USB_EPnR_DTOG_TX)) + +// USB state: uninitialized, addressed, ready for use +typedef enum{ + USB_STATE_DEFAULT, + USB_STATE_ADDRESSED, + USB_STATE_CONFIGURED, + USB_STATE_CONNECTED +} USB_state; + +// EP types +#define EP_TYPE_BULK 0x00 +#define EP_TYPE_CONTROL 0x01 +#define EP_TYPE_ISO 0x02 +#define EP_TYPE_INTERRUPT 0x03 + +#define LANG_US (uint16_t)0x0409 + +#define _USB_STRING_(name, str) \ +static const struct name \ +{ \ + uint8_t bLength; \ + uint8_t bDescriptorType; \ + uint16_t bString[(sizeof(str) - 2) / 2]; \ + \ +} \ +name = {sizeof(name), 0x03, str} + +#define _USB_LANG_ID_(name, lng_id) \ + \ +static const struct name \ +{ \ + uint8_t bLength; \ + uint8_t bDescriptorType; \ + uint16_t bString; \ + \ +} \ +name = {0x04, 0x03, lng_id} +#define STRING_LANG_DESCRIPTOR_SIZE_BYTE (4) + +// EP0 configuration packet +typedef struct { + uint8_t bmRequestType; + uint8_t bRequest; + uint16_t wValue; + uint16_t wIndex; + uint16_t wLength; +} config_pack_t; + +// endpoints state +typedef struct{ + uint16_t *tx_buf; // transmission buffer address + uint16_t txbufsz; // transmission buffer size + uint16_t *rx_buf; // reception buffer address + void (*func)(); // endpoint action function + unsigned rx_cnt : 10; // received data counter +} ep_t; + +// USB status & its address +typedef struct { + uint8_t USB_Status; + uint16_t USB_Addr; +}usb_dev_t; + +typedef struct { + uint32_t dwDTERate; + uint8_t bCharFormat; + #define USB_CDC_1_STOP_BITS 0 + #define USB_CDC_1_5_STOP_BITS 1 + #define USB_CDC_2_STOP_BITS 2 + uint8_t bParityType; + #define USB_CDC_NO_PARITY 0 + #define USB_CDC_ODD_PARITY 1 + #define USB_CDC_EVEN_PARITY 2 + #define USB_CDC_MARK_PARITY 3 + #define USB_CDC_SPACE_PARITY 4 + uint8_t bDataBits; +} __attribute__ ((packed)) usb_LineCoding; + +typedef struct { + uint8_t bmRequestType; + uint8_t bNotificationType; + uint16_t wValue; + uint16_t wIndex; + uint16_t wLength; +} __attribute__ ((packed)) usb_cdc_notification; + +extern ep_t endpoints[]; +extern usb_dev_t USB_Dev; +extern uint8_t usbON; +extern config_pack_t setup_packet; +extern uint8_t ep0databuf[]; +extern uint8_t ep0dbuflen; + +void EP0_Handler(); + +void EP_WriteIRQ(uint8_t number, const uint8_t *buf, uint16_t size); +void EP_Write(uint8_t number, const uint8_t *buf, uint16_t size); +int EP_Read(uint8_t number, uint16_t *buf); +usb_LineCoding getLineCoding(); + +void linecoding_handler(usb_LineCoding *lc); +void clstate_handler(uint16_t val); +void break_handler(); +void vendor_handler(config_pack_t *packet); + +#endif // __USB_LIB_H__ diff --git a/F1:F103/Canon_managing_device/usbhw.c b/F1:F103/Canon_managing_device/usbhw.c new file mode 100644 index 0000000..f586d0e --- /dev/null +++ b/F1:F103/Canon_managing_device/usbhw.c @@ -0,0 +1,129 @@ +/* + * This file is part of the MLX90640 project. + * Copyright 2022 Edward V. Emelianov . + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +#include "hardware.h" +#include "usb.h" +#include "usbhw.h" +#include "usb_lib.h" + +void USB_setup(){ + NVIC_DisableIRQ(USB_LP_CAN1_RX0_IRQn); + NVIC_DisableIRQ(USB_HP_CAN1_TX_IRQn); + USBPU_OFF(); + RCC->APB1ENR |= RCC_APB1ENR_USBEN; + RCC->APB2ENR |= USB_RCC; + USB->CNTR = USB_CNTR_FRES; // Force USB Reset + for(uint32_t ctr = 0; ctr < 72000; ++ctr) nop(); // wait >1ms + //uint32_t ctr = 0; + USB->CNTR = 0; + USB->BTABLE = 0; + USB->DADDR = 0; + USB->ISTR = 0; + USB->CNTR = USB_CNTR_RESETM | USB_CNTR_WKUPM; // allow only wakeup & reset interrupts + NVIC_EnableIRQ(USB_LP_CAN1_RX0_IRQn); + USBPU_ON(); +} + +static uint16_t lastaddr = LASTADDR_DEFAULT; +/** + * Endpoint initialisation + * @param number - EP num (0...7) + * @param type - EP type (EP_TYPE_BULK, EP_TYPE_CONTROL, EP_TYPE_ISO, EP_TYPE_INTERRUPT) + * @param txsz - transmission buffer size @ USB/CAN buffer + * @param rxsz - reception buffer size @ USB/CAN buffer + * @param uint16_t (*func)(ep_t *ep) - EP handler function + * @return 0 if all OK + */ +int EP_Init(uint8_t number, uint8_t type, uint16_t txsz, uint16_t rxsz, void (*func)(ep_t ep)){ + if(number >= STM32ENDPOINTS) return 4; // out of configured amount + if(txsz > USB_BTABLE_SIZE || rxsz > USB_BTABLE_SIZE) return 1; // buffer too large + if(lastaddr + txsz + rxsz >= USB_BTABLE_SIZE) return 2; // out of btable + USB->EPnR[number] = (type << 9) | (number & USB_EPnR_EA); + USB->EPnR[number] ^= USB_EPnR_STAT_RX | USB_EPnR_STAT_TX_1; + if(rxsz & 1 || rxsz > 512) return 3; // wrong rx buffer size + uint16_t countrx = 0; + if(rxsz < 64) countrx = rxsz / 2; + else{ + if(rxsz & 0x1f) return 3; // should be multiple of 32 + countrx = 31 + rxsz / 32; + } + USB_BTABLE->EP[number].USB_ADDR_TX = lastaddr; + endpoints[number].tx_buf = (uint16_t *)(USB_BTABLE_BASE + lastaddr*2); + endpoints[number].txbufsz = txsz; + lastaddr += txsz; + USB_BTABLE->EP[number].USB_COUNT_TX = 0; + USB_BTABLE->EP[number].USB_ADDR_RX = lastaddr; + endpoints[number].rx_buf = (uint16_t *)(USB_BTABLE_BASE + lastaddr*2); + lastaddr += rxsz; + USB_BTABLE->EP[number].USB_COUNT_RX = countrx << 10; + endpoints[number].func = func; + return 0; +} + +// standard IRQ handler +void usb_lp_can_rx0_isr(){ + if(USB->ISTR & USB_ISTR_RESET){ + usbON = 0; + // Reinit registers + USB->CNTR = USB_CNTR_RESETM | USB_CNTR_CTRM | USB_CNTR_SUSPM | USB_CNTR_WKUPM; + USB->ISTR = 0; + // Endpoint 0 - CONTROL + // ON USB LS size of EP0 may be 8 bytes, but on FS it should be 64 bytes! + lastaddr = LASTADDR_DEFAULT; + // clear address, leave only enable bit + USB->DADDR = USB_DADDR_EF; + USB_Dev.USB_Status = USB_STATE_DEFAULT; + USB->ISTR = ~USB_ISTR_RESET; + if(EP_Init(0, EP_TYPE_CONTROL, USB_EP0_BUFSZ, USB_EP0_BUFSZ, EP0_Handler)){ + return; + } + } + if(USB->ISTR & USB_ISTR_CTR){ + // EP number + uint8_t n = USB->ISTR & USB_ISTR_EPID; + // copy status register + uint16_t epstatus = USB->EPnR[n]; + // copy received bytes amount + endpoints[n].rx_cnt = USB_BTABLE->EP[n].USB_COUNT_RX & 0x3FF; // low 10 bits is counter + // check direction + if(USB->ISTR & USB_ISTR_DIR){ // OUT interrupt - receive data, CTR_RX==1 (if CTR_TX == 1 - two pending transactions: receive following by transmit) + if(n == 0){ // control endpoint + if(epstatus & USB_EPnR_SETUP){ // setup packet -> copy data to conf_pack + EP_Read(0, (uint16_t*)&setup_packet); + ep0dbuflen = 0; + // interrupt handler will be called later + }else if(epstatus & USB_EPnR_CTR_RX){ // data packet -> push received data to ep0databuf + ep0dbuflen = endpoints[0].rx_cnt; + EP_Read(0, (uint16_t*)&ep0databuf); + } + } + } + // call EP handler + if(endpoints[n].func) endpoints[n].func(endpoints[n]); + } + if(USB->ISTR & USB_ISTR_SUSP){ // suspend -> still no connection, may sleep + usbON = 0; + USB->CNTR |= USB_CNTR_FSUSP | USB_CNTR_LP_MODE; + USB->ISTR = ~USB_ISTR_SUSP; + } + if(USB->ISTR & USB_ISTR_WKUP){ // wakeup + USB->CNTR &= ~(USB_CNTR_FSUSP | USB_CNTR_LP_MODE); // clear suspend flags + USB->ISTR = ~USB_ISTR_WKUP; + } +} + diff --git a/F1:F103/Canon_managing_device/usbhw.h b/F1:F103/Canon_managing_device/usbhw.h new file mode 100644 index 0000000..17990aa --- /dev/null +++ b/F1:F103/Canon_managing_device/usbhw.h @@ -0,0 +1,105 @@ +/* + * This file is part of the MLX90640 project. + * Copyright 2022 Edward V. Emelianov . + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +#pragma once +#ifndef USBHW_H__ +#define USBHW_H__ + +#include + +#define USB_RCC RCC_APB2ENR_IOPAEN + +// max endpoints number +#define STM32ENDPOINTS 8 +/** + * Buffers size definition + **/ +#define USB_BTABLE_SIZE 512 +// first 64 bytes of USB_BTABLE are registers! +//#define USB_EP0_BASEADDR 64 +// for USB FS EP0 buffers are from 8 to 64 bytes long (64 for PL2303) +#define USB_EP0_BUFSZ 64 +// USB transmit buffer size (64 for PL2303) +#define USB_TXBUFSZ 64 +// USB receive buffer size (64 for PL2303) +#define USB_RXBUFSZ 64 +// EP1 - interrupt - buffer size +#define USB_EP1BUFSZ 8 + +#define USB_BTABLE_BASE 0x40006000 +#define USB_BASE ((uint32_t)0x40005C00) +#define USB ((USB_TypeDef *) USB_BASE) + +#ifdef USB_BTABLE +#undef USB_BTABLE +#endif +#define USB_BTABLE ((USB_BtableDef *)(USB_BTABLE_BASE)) +#define USB_ISTR_EPID 0x0000000F +#define USB_FNR_LSOF_0 0x00000800 +#define USB_FNR_lSOF_1 0x00001000 +#define USB_LPMCSR_BESL_0 0x00000010 +#define USB_LPMCSR_BESL_1 0x00000020 +#define USB_LPMCSR_BESL_2 0x00000040 +#define USB_LPMCSR_BESL_3 0x00000080 +#define USB_EPnR_CTR_RX 0x00008000 +#define USB_EPnR_DTOG_RX 0x00004000 +#define USB_EPnR_STAT_RX 0x00003000 +#define USB_EPnR_STAT_RX_0 0x00001000 +#define USB_EPnR_STAT_RX_1 0x00002000 +#define USB_EPnR_SETUP 0x00000800 +#define USB_EPnR_EP_TYPE 0x00000600 +#define USB_EPnR_EP_TYPE_0 0x00000200 +#define USB_EPnR_EP_TYPE_1 0x00000400 +#define USB_EPnR_EP_KIND 0x00000100 +#define USB_EPnR_CTR_TX 0x00000080 +#define USB_EPnR_DTOG_TX 0x00000040 +#define USB_EPnR_STAT_TX 0x00000030 +#define USB_EPnR_STAT_TX_0 0x00000010 +#define USB_EPnR_STAT_TX_1 0x00000020 +#define USB_EPnR_EA 0x0000000F +#define USB_COUNTn_RX_BLSIZE 0x00008000 +#define USB_COUNTn_NUM_BLOCK 0x00007C00 +#define USB_COUNTn_RX 0x0000003F + +#define USB_TypeDef USB_TypeDef_custom + +typedef struct { + __IO uint32_t EPnR[STM32ENDPOINTS]; + __IO uint32_t RESERVED[STM32ENDPOINTS]; + __IO uint32_t CNTR; + __IO uint32_t ISTR; + __IO uint32_t FNR; + __IO uint32_t DADDR; + __IO uint32_t BTABLE; +} USB_TypeDef; + +typedef struct{ + __IO uint32_t USB_ADDR_TX; + __IO uint32_t USB_COUNT_TX; + __IO uint32_t USB_ADDR_RX; + __IO uint32_t USB_COUNT_RX; +} USB_EPDATA_TypeDef; + +typedef struct{ + __IO USB_EPDATA_TypeDef EP[STM32ENDPOINTS]; +} USB_BtableDef; + +void USB_setup(); +int EP_Init(uint8_t number, uint8_t type, uint16_t txsz, uint16_t rxsz, void (*func)()); + +#endif // USBHW_H__ diff --git a/F1:F103/Canon_managing_device/version.inc b/F1:F103/Canon_managing_device/version.inc new file mode 100644 index 0000000..a6f1a3c --- /dev/null +++ b/F1:F103/Canon_managing_device/version.inc @@ -0,0 +1,2 @@ +#define BUILD_NUMBER "50" +#define BUILD_DATE "2022-09-10" diff --git a/testboard/F0_F1_F3-LQFP48_testboard/stm32.kicad_prl b/testboard/F0_F1_F3-LQFP48_testboard/stm32.kicad_prl new file mode 100644 index 0000000..fde1055 --- /dev/null +++ b/testboard/F0_F1_F3-LQFP48_testboard/stm32.kicad_prl @@ -0,0 +1,75 @@ +{ + "board": { + "active_layer": 0, + "active_layer_preset": "All Layers", + "auto_track_width": true, + "hidden_nets": [], + "high_contrast_mode": 0, + "net_color_mode": 1, + "opacity": { + "pads": 1.0, + "tracks": 1.0, + "vias": 1.0, + "zones": 0.6 + }, + "ratsnest_display_mode": 0, + "selection_filter": { + "dimensions": true, + "footprints": true, + "graphics": true, + "keepouts": true, + "lockedItems": true, + "otherItems": true, + "pads": true, + "text": true, + "tracks": true, + "vias": true, + "zones": true + }, + "visible_items": [ + 0, + 1, + 2, + 3, + 4, + 5, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 32, + 33, + 34, + 35, + 36 + ], + "visible_layers": "fffffff_ffffffff", + "zone_display_mode": 0 + }, + "meta": { + "filename": "stm32.kicad_prl", + "version": 3 + }, + "project": { + "files": [] + } +} diff --git a/testboard/F0_F1_F3-LQFP48_testboard/stm32.kicad_pro b/testboard/F0_F1_F3-LQFP48_testboard/stm32.kicad_pro new file mode 100644 index 0000000..1f889da --- /dev/null +++ b/testboard/F0_F1_F3-LQFP48_testboard/stm32.kicad_pro @@ -0,0 +1,435 @@ +{ + "board": { + "design_settings": { + "defaults": { + "board_outline_line_width": 0.09999999999999999, + "copper_line_width": 0.19999999999999998, + "copper_text_italic": false, + "copper_text_size_h": 1.5, + "copper_text_size_v": 1.5, + "copper_text_thickness": 0.3, + "copper_text_upright": false, + "courtyard_line_width": 0.049999999999999996, + "dimension_precision": 4, + "dimension_units": 3, + "dimensions": { + "arrow_length": 1270000, + "extension_offset": 500000, + "keep_text_aligned": true, + "suppress_zeroes": false, + "text_position": 0, + "units_format": 1 + }, + "fab_line_width": 0.09999999999999999, + "fab_text_italic": false, + "fab_text_size_h": 1.0, + "fab_text_size_v": 1.0, + "fab_text_thickness": 0.15, + "fab_text_upright": false, + "other_line_width": 0.09999999999999999, + "other_text_italic": false, + "other_text_size_h": 1.0, + "other_text_size_v": 1.0, + "other_text_thickness": 0.15, + "other_text_upright": false, + "pads": { + "drill": 0.762, + "height": 1.524, + "width": 1.524 + }, + "silk_line_width": 0.15, + "silk_text_italic": false, + "silk_text_size_h": 1.0, + "silk_text_size_v": 1.0, + "silk_text_thickness": 0.15, + "silk_text_upright": false, + "zones": { + "45_degree_only": false, + "min_clearance": 0.508 + } + }, + "diff_pair_dimensions": [], + "drc_exclusions": [], + "meta": { + "filename": "board_design_settings.json", + "version": 2 + }, + "rule_severities": { + "annular_width": "error", + "clearance": "error", + "copper_edge_clearance": "error", + "courtyards_overlap": "error", + "diff_pair_gap_out_of_range": "error", + "diff_pair_uncoupled_length_too_long": "error", + "drill_out_of_range": "error", + "duplicate_footprints": "warning", + "extra_footprint": "warning", + "footprint_type_mismatch": "error", + "hole_clearance": "error", + "hole_near_hole": "error", + "invalid_outline": "error", + "item_on_disabled_layer": "error", + "items_not_allowed": "error", + "length_out_of_range": "error", + "malformed_courtyard": "error", + "microvia_drill_out_of_range": "error", + "missing_courtyard": "ignore", + "missing_footprint": "warning", + "net_conflict": "warning", + "npth_inside_courtyard": "ignore", + "padstack": "error", + "pth_inside_courtyard": "ignore", + "shorting_items": "error", + "silk_over_copper": "warning", + "silk_overlap": "warning", + "skew_out_of_range": "error", + "through_hole_pad_without_hole": "error", + "too_many_vias": "error", + "track_dangling": "warning", + "track_width": "error", + "tracks_crossing": "error", + "unconnected_items": "error", + "unresolved_variable": "error", + "via_dangling": "warning", + "zone_has_empty_net": "error", + "zones_intersect": "error" + }, + "rule_severitieslegacy_courtyards_overlap": true, + "rule_severitieslegacy_no_courtyard_defined": false, + "rules": { + "allow_blind_buried_vias": false, + "allow_microvias": false, + "max_error": 0.005, + "min_clearance": 0.0, + "min_copper_edge_clearance": 0.049999999999999996, + "min_hole_clearance": 0.25, + "min_hole_to_hole": 0.25, + "min_microvia_diameter": 0.19999999999999998, + "min_microvia_drill": 0.09999999999999999, + "min_silk_clearance": 0.0, + "min_through_hole_diameter": 0.6, + "min_track_width": 0.19999999999999998, + "min_via_annular_width": 0.049999999999999996, + "min_via_diameter": 1.0, + "use_height_for_length_calcs": true + }, + "track_widths": [ + 0.0, + 0.25, + 0.5, + 1.0, + 2.0 + ], + "via_dimensions": [ + { + "diameter": 0.0, + "drill": 0.0 + }, + { + "diameter": 1.5, + "drill": 0.6 + }, + { + "diameter": 2.0, + "drill": 0.8 + } + ], + "zones_allow_external_fillets": false, + "zones_use_no_outline": true + }, + "layer_presets": [] + }, + "boards": [], + "cvpcb": { + "equivalence_files": [] + }, + "erc": { + "erc_exclusions": [], + "meta": { + "version": 0 + }, + "pin_map": [ + [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 2 + ], + [ + 0, + 2, + 0, + 1, + 0, + 0, + 1, + 0, + 2, + 2, + 2, + 2 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 1, + 0, + 1, + 2 + ], + [ + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 1, + 2, + 1, + 1, + 2 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 2 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 2 + ], + [ + 1, + 1, + 1, + 1, + 1, + 0, + 1, + 1, + 1, + 1, + 1, + 2 + ], + [ + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 2 + ], + [ + 0, + 2, + 1, + 2, + 0, + 0, + 1, + 0, + 2, + 2, + 2, + 2 + ], + [ + 0, + 2, + 0, + 1, + 0, + 0, + 1, + 0, + 2, + 0, + 0, + 2 + ], + [ + 0, + 2, + 1, + 1, + 0, + 0, + 1, + 0, + 2, + 0, + 0, + 2 + ], + [ + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2 + ] + ], + "rule_severities": { + "bus_definition_conflict": "error", + "bus_entry_needed": "error", + "bus_label_syntax": "error", + "bus_to_bus_conflict": "error", + "bus_to_net_conflict": "error", + "different_unit_footprint": "error", + "different_unit_net": "error", + "duplicate_reference": "error", + "duplicate_sheet_names": "error", + "extra_units": "error", + "global_label_dangling": "warning", + "hier_label_mismatch": "error", + "label_dangling": "error", + "lib_symbol_issues": "warning", + "multiple_net_names": "warning", + "net_not_bus_member": "warning", + "no_connect_connected": "warning", + "no_connect_dangling": "warning", + "pin_not_connected": "error", + "pin_not_driven": "error", + "pin_to_pin": "warning", + "power_pin_not_driven": "error", + "similar_labels": "warning", + "unannotated": "error", + "unit_value_mismatch": "error", + "unresolved_variable": "error", + "wire_dangling": "error" + } + }, + "libraries": { + "pinned_footprint_libs": [], + "pinned_symbol_libs": [] + }, + "meta": { + "filename": "stm32.kicad_pro", + "version": 1 + }, + "net_settings": { + "classes": [ + { + "bus_width": 12.0, + "clearance": 0.2, + "diff_pair_gap": 0.25, + "diff_pair_via_gap": 0.25, + "diff_pair_width": 0.2, + "line_style": 0, + "microvia_diameter": 0.3, + "microvia_drill": 0.1, + "name": "Default", + "pcb_color": "rgba(0, 0, 0, 0.000)", + "schematic_color": "rgba(0, 0, 0, 0.000)", + "track_width": 0.25, + "via_diameter": 2.0, + "via_drill": 0.6, + "wire_width": 6.0 + } + ], + "meta": { + "version": 2 + }, + "net_colors": null + }, + "pcbnew": { + "last_paths": { + "gencad": "", + "idf": "", + "netlist": "stm32.net", + "specctra_dsn": "", + "step": "", + "vrml": "" + }, + "page_layout_descr_file": "" + }, + "schematic": { + "annotate_start_num": 0, + "drawing": { + "default_line_thickness": 6.0, + "default_text_size": 50.0, + "field_names": [], + "intersheets_ref_own_page": false, + "intersheets_ref_prefix": "", + "intersheets_ref_short": false, + "intersheets_ref_show": false, + "intersheets_ref_suffix": "", + "junction_size_choice": 3, + "label_size_ratio": 0.25, + "pin_symbol_size": 0.0, + "text_offset_ratio": 0.08 + }, + "legacy_lib_dir": "", + "legacy_lib_list": [], + "meta": { + "version": 1 + }, + "net_format_name": "Pcbnew", + "ngspice": { + "fix_include_paths": true, + "fix_passive_vals": false, + "meta": { + "version": 0 + }, + "model_mode": 0, + "workbook_filename": "" + }, + "page_layout_descr_file": "", + "plot_directory": "", + "spice_adjust_passive_values": false, + "spice_external_command": "spice \"%I\"", + "subpart_first_id": 65, + "subpart_id_separator": 0 + }, + "sheets": [], + "text_variables": {} +}