diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 8f0a47f..6c02c25 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -1,4 +1,4 @@ -name: Build SmartFuseBox Firmware +name: Build PowerControlHub Firmware on: push: @@ -36,15 +36,15 @@ jobs: arduino-cli lib install "TinyGPSPlus" arduino-cli lib install "DS1302" - - name: Compile SmartFuseBox firmware + - name: Compile PowerControlHub firmware run: | arduino-cli compile \ --fqbn esp32:esp32:esp32s3 \ - --output-dir SmartFuseBox/Build \ - SmartFuseBox + --output-dir PowerControlHub/Build \ + PowerControlHub - name: Upload firmware artifact uses: actions/upload-artifact@v4 with: - name: SmartFuseBox-firmware - path: SmartFuseBox/Build/SmartFuseBox.ino.bin \ No newline at end of file + name: PowerControlHub-firmware + path: PowerControlHub/Build/PowerControlHub.ino.bin \ No newline at end of file diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index d74ef54..a89d07b 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -1,4 +1,4 @@ -name: Release SmartFuseBox Firmware +name: Release PowerControlHub Firmware on: push: @@ -43,29 +43,29 @@ jobs: VERSION="${TAG#v}" IFS='.' read -r MAJOR MINOR PATCH BUILD <<< "$VERSION" - printf "#pragma once\n#include \n\n// Generated by CI from tag %s - do not edit manually.\nconstexpr uint8_t FirmwareMajor = %s;\nconstexpr uint8_t FirmwareMinor = %s;\nconstexpr uint8_t FirmwarePatch = %s;\nconstexpr uint8_t FirmwareBuild = %s;\n" "$TAG" "$MAJOR" "$MINOR" "$PATCH" "$BUILD" > SmartFuseBox/FirmwareVersion.h + printf "#pragma once\n#include \n\n// Generated by CI from tag %s - do not edit manually.\nconstexpr uint8_t FirmwareMajor = %s;\nconstexpr uint8_t FirmwareMinor = %s;\nconstexpr uint8_t FirmwarePatch = %s;\nconstexpr uint8_t FirmwareBuild = %s;\n" "$TAG" "$MAJOR" "$MINOR" "$PATCH" "$BUILD" > PowerControlHub/FirmwareVersion.h - name: Compile ESP32 firmware run: | arduino-cli compile \ --fqbn esp32:esp32:esp32 \ - --output-dir SmartFuseBox/build/esp32 \ - SmartFuseBox + --output-dir PowerControlHub/build/esp32 \ + PowerControlHub - name: Rename and checksum ESP32 firmware run: | TAG="${GITHUB_REF#refs/tags/}" - SRC="SmartFuseBox/build/esp32/SmartFuseBox.ino.bin" - DEST="SmartFuseBox-esp32-${TAG}.bin" + SRC="PowerControlHub/build/esp32/PowerControlHub.ino.bin" + DEST="PowerControlHub-esp32-${TAG}.bin" cp "$SRC" "$DEST" - sha256sum "$DEST" | awk '{print $1}' > "SmartFuseBox-esp32-${TAG}.sha256" + sha256sum "$DEST" | awk '{print $1}' > "PowerControlHub-esp32-${TAG}.sha256" - name: Upload ESP32 firmware to GitHub Release uses: softprops/action-gh-release@v2 with: files: | - SmartFuseBox-esp32-${{ github.ref_name }}.bin - SmartFuseBox-esp32-${{ github.ref_name }}.sha256 + PowerControlHub-esp32-${{ github.ref_name }}.bin + PowerControlHub-esp32-${{ github.ref_name }}.sha256 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} @@ -102,28 +102,28 @@ jobs: VERSION="${TAG#v}" IFS='.' read -r MAJOR MINOR PATCH BUILD <<< "$VERSION" - printf "#pragma once\n#include \n\n// Generated by CI from tag %s - do not edit manually.\nconstexpr uint8_t FirmwareMajor = %s;\nconstexpr uint8_t FirmwareMinor = %s;\nconstexpr uint8_t FirmwarePatch = %s;\nconstexpr uint8_t FirmwareBuild = %s;\n" "$TAG" "$MAJOR" "$MINOR" "$PATCH" "$BUILD" > SmartFuseBox/FirmwareVersion.h + printf "#pragma once\n#include \n\n// Generated by CI from tag %s - do not edit manually.\nconstexpr uint8_t FirmwareMajor = %s;\nconstexpr uint8_t FirmwareMinor = %s;\nconstexpr uint8_t FirmwarePatch = %s;\nconstexpr uint8_t FirmwareBuild = %s;\n" "$TAG" "$MAJOR" "$MINOR" "$PATCH" "$BUILD" > PowerControlHub/FirmwareVersion.h - name: Compile ESP32-S3 firmware run: | arduino-cli compile \ --fqbn esp32:esp32:esp32s3 \ - --output-dir SmartFuseBox/build/esp32s3 \ - SmartFuseBox + --output-dir PowerControlHub/build/esp32s3 \ + PowerControlHub - name: Rename and checksum ESP32-S3 firmware run: | TAG="${GITHUB_REF#refs/tags/}" - SRC="SmartFuseBox/build/esp32s3/SmartFuseBox.ino.bin" - DEST="SmartFuseBox-esp32s3-${TAG}.bin" + SRC="PowerControlHub/build/esp32s3/PowerControlHub.ino.bin" + DEST="PowerControlHub-esp32s3-${TAG}.bin" cp "$SRC" "$DEST" - sha256sum "$DEST" | awk '{print $1}' > "SmartFuseBox-esp32s3-${TAG}.sha256" + sha256sum "$DEST" | awk '{print $1}' > "PowerControlHub-esp32s3-${TAG}.sha256" - name: Upload ESP32-S3 firmware to GitHub Release uses: softprops/action-gh-release@v2 with: files: | - SmartFuseBox-esp32s3-${{ github.ref_name }}.bin - SmartFuseBox-esp32s3-${{ github.ref_name }}.sha256 + PowerControlHub-esp32s3-${{ github.ref_name }}.bin + PowerControlHub-esp32s3-${{ github.ref_name }}.sha256 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/3dPrintedFiles/.gitignore b/3dPrintedFiles/.gitignore new file mode 100644 index 0000000..ce89292 --- /dev/null +++ b/3dPrintedFiles/.gitignore @@ -0,0 +1,418 @@ +## Ignore Visual Studio temporary files, build results, and +## files generated by popular Visual Studio add-ons. +## +## Get latest from https://github.com/github/gitignore/blob/main/VisualStudio.gitignore + +# User-specific files +*.rsuser +*.suo +*.user +*.userosscache +*.sln.docstates +*.env + +# User-specific files (MonoDevelop/Xamarin Studio) +*.userprefs + +# Mono auto generated files +mono_crash.* + +# Build results +[Dd]ebug/ +[Dd]ebugPublic/ +[Rr]elease/ +[Rr]eleases/ +x64/ +x86/ +[Ww][Ii][Nn]32/ +[Aa][Rr][Mm]/ +[Aa][Rr][Mm]64/ +[Aa][Rr][Mm]64[Ee][Cc]/ +bld/ +[Oo]bj/ +[Oo]ut/ +[Ll]og/ +[Ll]ogs/ + +# Build results on 'Bin' directories +**/[Bb]in/* +# Uncomment if you have tasks that rely on *.refresh files to move binaries +# (https://github.com/github/gitignore/pull/3736) +#!**/[Bb]in/*.refresh + +# Visual Studio 2015/2017 cache/options directory +.vs/ +# Uncomment if you have tasks that create the project's static files in wwwroot +#wwwroot/ + +# Visual Studio 2017 auto generated files +Generated\ Files/ + +# MSTest test Results +[Tt]est[Rr]esult*/ +[Bb]uild[Ll]og.* +*.trx + +# NUnit +*.VisualState.xml +TestResult.xml +nunit-*.xml + +# Approval Tests result files +*.received.* + +# Build Results of an ATL Project +[Dd]ebugPS/ +[Rr]eleasePS/ +dlldata.c + +# Benchmark Results +BenchmarkDotNet.Artifacts/ + +# .NET Core +project.lock.json +project.fragment.lock.json +artifacts/ + +# ASP.NET Scaffolding +ScaffoldingReadMe.txt + +# StyleCop +StyleCopReport.xml + +# Files built by Visual Studio +*_i.c +*_p.c +*_h.h +*.ilk +*.meta +*.obj +*.idb +*.iobj +*.pch +*.pdb +*.ipdb +*.pgc +*.pgd +*.rsp +# but not Directory.Build.rsp, as it configures directory-level build defaults +!Directory.Build.rsp +*.sbr +*.tlb +*.tli +*.tlh +*.tmp +*.tmp_proj +*_wpftmp.csproj +*.log +*.tlog +*.vspscc +*.vssscc +.builds +*.pidb +*.svclog +*.scc + +# Chutzpah Test files +_Chutzpah* + +# Visual C++ cache files +ipch/ +*.aps +*.ncb +*.opendb +*.opensdf +*.sdf +*.cachefile +*.VC.db +*.VC.VC.opendb + +# Visual Studio profiler +*.psess +*.vsp +*.vspx +*.sap + +# Visual Studio Trace Files +*.e2e + +# TFS 2012 Local Workspace +$tf/ + +# Guidance Automation Toolkit +*.gpState + +# ReSharper is a .NET coding add-in +_ReSharper*/ +*.[Rr]e[Ss]harper +*.DotSettings.user + +# TeamCity is a build add-in +_TeamCity* + +# DotCover is a Code Coverage Tool +*.dotCover + +# AxoCover is a Code Coverage Tool +.axoCover/* +!.axoCover/settings.json + +# Coverlet is a free, cross platform Code Coverage Tool +coverage*.json +coverage*.xml +coverage*.info + +# Visual Studio code coverage results +*.coverage +*.coveragexml + +# NCrunch +_NCrunch_* +.NCrunch_* +.*crunch*.local.xml +nCrunchTemp_* + +# MightyMoose +*.mm.* +AutoTest.Net/ + +# Web workbench (sass) +.sass-cache/ + +# Installshield output folder +[Ee]xpress/ + +# DocProject is a documentation generator add-in +DocProject/buildhelp/ +DocProject/Help/*.HxT +DocProject/Help/*.HxC +DocProject/Help/*.hhc +DocProject/Help/*.hhk +DocProject/Help/*.hhp +DocProject/Help/Html2 +DocProject/Help/html + +# Click-Once directory +publish/ + +# Publish Web Output +*.[Pp]ublish.xml +*.azurePubxml +# Note: Comment the next line if you want to checkin your web deploy settings, +# but database connection strings (with potential passwords) will be unencrypted +*.pubxml +*.publishproj + +# Microsoft Azure Web App publish settings. Comment the next line if you want to +# checkin your Azure Web App publish settings, but sensitive information contained +# in these scripts will be unencrypted +PublishScripts/ + +# NuGet Packages +*.nupkg +# NuGet Symbol Packages +*.snupkg +# The packages folder can be ignored because of Package Restore +**/[Pp]ackages/* +# except build/, which is used as an MSBuild target. +!**/[Pp]ackages/build/ +# Uncomment if necessary however generally it will be regenerated when needed +#!**/[Pp]ackages/repositories.config +# NuGet v3's project.json files produces more ignorable files +*.nuget.props +*.nuget.targets + +# Microsoft Azure Build Output +csx/ +*.build.csdef + +# Microsoft Azure Emulator +ecf/ +rcf/ + +# Windows Store app package directories and files +AppPackages/ +BundleArtifacts/ +Package.StoreAssociation.xml +_pkginfo.txt +*.appx +*.appxbundle +*.appxupload + +# Visual Studio cache files +# files ending in .cache can be ignored +*.[Cc]ache +# but keep track of directories ending in .cache +!?*.[Cc]ache/ + +# Others +ClientBin/ +~$* +*~ +*.dbmdl +*.dbproj.schemaview +*.jfm +*.pfx +*.publishsettings +orleans.codegen.cs + +# Including strong name files can present a security risk +# (https://github.com/github/gitignore/pull/2483#issue-259490424) +#*.snk + +# Since there are multiple workflows, uncomment next line to ignore bower_components +# (https://github.com/github/gitignore/pull/1529#issuecomment-104372622) +#bower_components/ + +# RIA/Silverlight projects +Generated_Code/ + +# Backup & report files from converting an old project file +# to a newer Visual Studio version. Backup files are not needed, +# because we have git ;-) +_UpgradeReport_Files/ +Backup*/ +UpgradeLog*.XML +UpgradeLog*.htm +ServiceFabricBackup/ +*.rptproj.bak + +# SQL Server files +*.mdf +*.ldf +*.ndf + +# Business Intelligence projects +*.rdl.data +*.bim.layout +*.bim_*.settings +*.rptproj.rsuser +*- [Bb]ackup.rdl +*- [Bb]ackup ([0-9]).rdl +*- [Bb]ackup ([0-9][0-9]).rdl + +# Microsoft Fakes +FakesAssemblies/ + +# GhostDoc plugin setting file +*.GhostDoc.xml + +# Node.js Tools for Visual Studio +.ntvs_analysis.dat +node_modules/ + +# Visual Studio 6 build log +*.plg + +# Visual Studio 6 workspace options file +*.opt + +# Visual Studio 6 auto-generated workspace file (contains which files were open etc.) +*.vbw + +# Visual Studio 6 auto-generated project file (contains which files were open etc.) +*.vbp + +# Visual Studio 6 workspace and project file (working project files containing files to include in project) +*.dsw +*.dsp + +# Visual Studio 6 technical files +*.ncb +*.aps + +# Visual Studio LightSwitch build output +**/*.HTMLClient/GeneratedArtifacts +**/*.DesktopClient/GeneratedArtifacts +**/*.DesktopClient/ModelManifest.xml +**/*.Server/GeneratedArtifacts +**/*.Server/ModelManifest.xml +_Pvt_Extensions + +# Paket dependency manager +**/.paket/paket.exe +paket-files/ + +# FAKE - F# Make +**/.fake/ + +# CodeRush personal settings +**/.cr/personal + +# Python Tools for Visual Studio (PTVS) +**/__pycache__/ +*.pyc + +# Cake - Uncomment if you are using it +#tools/** +#!tools/packages.config + +# Tabs Studio +*.tss + +# Telerik's JustMock configuration file +*.jmconfig + +# BizTalk build output +*.btp.cs +*.btm.cs +*.odx.cs +*.xsd.cs + +# OpenCover UI analysis results +OpenCover/ + +# Azure Stream Analytics local run output +ASALocalRun/ + +# MSBuild Binary and Structured Log +*.binlog +MSBuild_Logs/ + +# AWS SAM Build and Temporary Artifacts folder +.aws-sam + +# NVidia Nsight GPU debugger configuration file +*.nvuser + +# MFractors (Xamarin productivity tool) working folder +**/.mfractor/ + +# Local History for Visual Studio +**/.localhistory/ + +# Visual Studio History (VSHistory) files +.vshistory/ + +# BeatPulse healthcheck temp database +healthchecksdb + +# Backup folder for Package Reference Convert tool in Visual Studio 2017 +MigrationBackup/ + +# Ionide (cross platform F# VS Code tools) working folder +**/.ionide/ + +# Fody - auto-generated XML schema +FodyWeavers.xsd + +# VS Code files for those working on multiple tools +.vscode/* +!.vscode/settings.json +!.vscode/tasks.json +!.vscode/launch.json +!.vscode/extensions.json +!.vscode/*.code-snippets + +# Local History for Visual Studio Code +.history/ + +# Built Visual Studio Code Extensions +*.vsix + +# Windows Installer files from build outputs +*.cab +*.msi +*.msix +*.msm +*.msp diff --git a/3dPrintedFiles/Aviation Connector Covers.3mf b/3dPrintedFiles/Aviation Connector Covers.3mf new file mode 100644 index 0000000..ae44405 Binary files /dev/null and b/3dPrintedFiles/Aviation Connector Covers.3mf differ diff --git a/3dPrintedFiles/Boat Sensor Housing.3mf b/3dPrintedFiles/Boat Sensor Housing.3mf new file mode 100644 index 0000000..5649a9b Binary files /dev/null and b/3dPrintedFiles/Boat Sensor Housing.3mf differ diff --git a/3dPrintedFiles/BoatFuseBox.3mf b/3dPrintedFiles/BoatFuseBox.3mf new file mode 100644 index 0000000..0f13878 Binary files /dev/null and b/3dPrintedFiles/BoatFuseBox.3mf differ diff --git a/3dPrintedFiles/LICENSE b/3dPrintedFiles/LICENSE new file mode 100644 index 0000000..f288702 --- /dev/null +++ b/3dPrintedFiles/LICENSE @@ -0,0 +1,674 @@ + GNU GENERAL PUBLIC LICENSE + Version 3, 29 June 2007 + + Copyright (C) 2007 Free Software Foundation, Inc. + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The GNU General Public License is a free, copyleft license for +software and other kinds of works. + + The licenses for most software and other practical works are designed +to take away your freedom to share and change the works. By contrast, +the GNU General Public License is intended to guarantee your freedom to +share and change all versions of a program--to make sure it remains free +software for all its users. We, the Free Software Foundation, use the +GNU General Public License for most of our software; it applies also to +any other work released this way by its authors. You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +them if you wish), that you receive source code or can get it if you +want it, that you can change the software or use pieces of it in new +free programs, and that you know you can do these things. + + To protect your rights, we need to prevent others from denying you +these rights or asking you to surrender the rights. Therefore, you have +certain responsibilities if you distribute copies of the software, or if +you modify it: responsibilities to respect the freedom of others. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must pass on to the recipients the same +freedoms that you received. You must make sure that they, too, receive +or can get the source code. And you must show them these terms so they +know their rights. + + Developers that use the GNU GPL protect your rights with two steps: +(1) assert copyright on the software, and (2) offer you this License +giving you legal permission to copy, distribute and/or modify it. + + For the developers' and authors' protection, the GPL clearly explains +that there is no warranty for this free software. For both users' and +authors' sake, the GPL requires that modified versions be marked as +changed, so that their problems will not be attributed erroneously to +authors of previous versions. + + Some devices are designed to deny users access to install or run +modified versions of the software inside them, although the manufacturer +can do so. This is fundamentally incompatible with the aim of +protecting users' freedom to change the software. The systematic +pattern of such abuse occurs in the area of products for individuals to +use, which is precisely where it is most unacceptable. Therefore, we +have designed this version of the GPL to prohibit the practice for those +products. If such problems arise substantially in other domains, we +stand ready to extend this provision to those domains in future versions +of the GPL, as needed to protect the freedom of users. + + Finally, every program is threatened constantly by software patents. +States should not allow patents to restrict development and use of +software on general-purpose computers, but in those that do, we wish to +avoid the special danger that patents applied to a free program could +make it effectively proprietary. To prevent this, the GPL assures that +patents cannot be used to render the program non-free. + + The precise terms and conditions for copying, distribution and +modification follow. + + TERMS AND CONDITIONS + + 0. Definitions. + + "This License" refers to version 3 of the GNU General Public License. + + "Copyright" also means copyright-like laws that apply to other kinds of +works, such as semiconductor masks. + + "The Program" refers to any copyrightable work licensed under this +License. Each licensee is addressed as "you". "Licensees" and +"recipients" may be individuals or organizations. + + To "modify" a work means to copy from or adapt all or part of the work +in a fashion requiring copyright permission, other than the making of an +exact copy. The resulting work is called a "modified version" of the +earlier work or a work "based on" the earlier work. + + A "covered work" means either the unmodified Program or a work based +on the Program. + + To "propagate" a work means to do anything with it that, without +permission, would make you directly or secondarily liable for +infringement under applicable copyright law, except executing it on a +computer or modifying a private copy. Propagation includes copying, +distribution (with or without modification), making available to the +public, and in some countries other activities as well. + + To "convey" a work means any kind of propagation that enables other +parties to make or receive copies. Mere interaction with a user through +a computer network, with no transfer of a copy, is not conveying. + + An interactive user interface displays "Appropriate Legal Notices" +to the extent that it includes a convenient and prominently visible +feature that (1) displays an appropriate copyright notice, and (2) +tells the user that there is no warranty for the work (except to the +extent that warranties are provided), that licensees may convey the +work under this License, and how to view a copy of this License. If +the interface presents a list of user commands or options, such as a +menu, a prominent item in the list meets this criterion. + + 1. Source Code. + + The "source code" for a work means the preferred form of the work +for making modifications to it. "Object code" means any non-source +form of a work. + + A "Standard Interface" means an interface that either is an official +standard defined by a recognized standards body, or, in the case of +interfaces specified for a particular programming language, one that +is widely used among developers working in that language. + + The "System Libraries" of an executable work include anything, other +than the work as a whole, that (a) is included in the normal form of +packaging a Major Component, but which is not part of that Major +Component, and (b) serves only to enable use of the work with that +Major Component, or to implement a Standard Interface for which an +implementation is available to the public in source code form. A +"Major Component", in this context, means a major essential component +(kernel, window system, and so on) of the specific operating system +(if any) on which the executable work runs, or a compiler used to +produce the work, or an object code interpreter used to run it. + + The "Corresponding Source" for a work in object code form means all +the source code needed to generate, install, and (for an executable +work) run the object code and to modify the work, including scripts to +control those activities. However, it does not include the work's +System Libraries, or general-purpose tools or generally available free +programs which are used unmodified in performing those activities but +which are not part of the work. For example, Corresponding Source +includes interface definition files associated with source files for +the work, and the source code for shared libraries and dynamically +linked subprograms that the work is specifically designed to require, +such as by intimate data communication or control flow between those +subprograms and other parts of the work. + + The Corresponding Source need not include anything that users +can regenerate automatically from other parts of the Corresponding +Source. + + The Corresponding Source for a work in source code form is that +same work. + + 2. Basic Permissions. + + All rights granted under this License are granted for the term of +copyright on the Program, and are irrevocable provided the stated +conditions are met. This License explicitly affirms your unlimited +permission to run the unmodified Program. The output from running a +covered work is covered by this License only if the output, given its +content, constitutes a covered work. This License acknowledges your +rights of fair use or other equivalent, as provided by copyright law. + + You may make, run and propagate covered works that you do not +convey, without conditions so long as your license otherwise remains +in force. You may convey covered works to others for the sole purpose +of having them make modifications exclusively for you, or provide you +with facilities for running those works, provided that you comply with +the terms of this License in conveying all material for which you do +not control copyright. Those thus making or running the covered works +for you must do so exclusively on your behalf, under your direction +and control, on terms that prohibit them from making any copies of +your copyrighted material outside their relationship with you. + + Conveying under any other circumstances is permitted solely under +the conditions stated below. Sublicensing is not allowed; section 10 +makes it unnecessary. + + 3. Protecting Users' Legal Rights From Anti-Circumvention Law. + + No covered work shall be deemed part of an effective technological +measure under any applicable law fulfilling obligations under article +11 of the WIPO copyright treaty adopted on 20 December 1996, or +similar laws prohibiting or restricting circumvention of such +measures. + + When you convey a covered work, you waive any legal power to forbid +circumvention of technological measures to the extent such circumvention +is effected by exercising rights under this License with respect to +the covered work, and you disclaim any intention to limit operation or +modification of the work as a means of enforcing, against the work's +users, your or third parties' legal rights to forbid circumvention of +technological measures. + + 4. Conveying Verbatim Copies. + + You may convey verbatim copies of the Program's source code as you +receive it, in any medium, provided that you conspicuously and +appropriately publish on each copy an appropriate copyright notice; +keep intact all notices stating that this License and any +non-permissive terms added in accord with section 7 apply to the code; +keep intact all notices of the absence of any warranty; and give all +recipients a copy of this License along with the Program. + + You may charge any price or no price for each copy that you convey, +and you may offer support or warranty protection for a fee. + + 5. Conveying Modified Source Versions. + + You may convey a work based on the Program, or the modifications to +produce it from the Program, in the form of source code under the +terms of section 4, provided that you also meet all of these conditions: + + a) The work must carry prominent notices stating that you modified + it, and giving a relevant date. + + b) The work must carry prominent notices stating that it is + released under this License and any conditions added under section + 7. This requirement modifies the requirement in section 4 to + "keep intact all notices". + + c) You must license the entire work, as a whole, under this + License to anyone who comes into possession of a copy. This + License will therefore apply, along with any applicable section 7 + additional terms, to the whole of the work, and all its parts, + regardless of how they are packaged. This License gives no + permission to license the work in any other way, but it does not + invalidate such permission if you have separately received it. + + d) If the work has interactive user interfaces, each must display + Appropriate Legal Notices; however, if the Program has interactive + interfaces that do not display Appropriate Legal Notices, your + work need not make them do so. + + A compilation of a covered work with other separate and independent +works, which are not by their nature extensions of the covered work, +and which are not combined with it such as to form a larger program, +in or on a volume of a storage or distribution medium, is called an +"aggregate" if the compilation and its resulting copyright are not +used to limit the access or legal rights of the compilation's users +beyond what the individual works permit. Inclusion of a covered work +in an aggregate does not cause this License to apply to the other +parts of the aggregate. + + 6. Conveying Non-Source Forms. + + You may convey a covered work in object code form under the terms +of sections 4 and 5, provided that you also convey the +machine-readable Corresponding Source under the terms of this License, +in one of these ways: + + a) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by the + Corresponding Source fixed on a durable physical medium + customarily used for software interchange. + + b) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by a + written offer, valid for at least three years and valid for as + long as you offer spare parts or customer support for that product + model, to give anyone who possesses the object code either (1) a + copy of the Corresponding Source for all the software in the + product that is covered by this License, on a durable physical + medium customarily used for software interchange, for a price no + more than your reasonable cost of physically performing this + conveying of source, or (2) access to copy the + Corresponding Source from a network server at no charge. + + c) Convey individual copies of the object code with a copy of the + written offer to provide the Corresponding Source. This + alternative is allowed only occasionally and noncommercially, and + only if you received the object code with such an offer, in accord + with subsection 6b. + + d) Convey the object code by offering access from a designated + place (gratis or for a charge), and offer equivalent access to the + Corresponding Source in the same way through the same place at no + further charge. You need not require recipients to copy the + Corresponding Source along with the object code. If the place to + copy the object code is a network server, the Corresponding Source + may be on a different server (operated by you or a third party) + that supports equivalent copying facilities, provided you maintain + clear directions next to the object code saying where to find the + Corresponding Source. Regardless of what server hosts the + Corresponding Source, you remain obligated to ensure that it is + available for as long as needed to satisfy these requirements. + + e) Convey the object code using peer-to-peer transmission, provided + you inform other peers where the object code and Corresponding + Source of the work are being offered to the general public at no + charge under subsection 6d. + + A separable portion of the object code, whose source code is excluded +from the Corresponding Source as a System Library, need not be +included in conveying the object code work. + + A "User Product" is either (1) a "consumer product", which means any +tangible personal property which is normally used for personal, family, +or household purposes, or (2) anything designed or sold for incorporation +into a dwelling. In determining whether a product is a consumer product, +doubtful cases shall be resolved in favor of coverage. For a particular +product received by a particular user, "normally used" refers to a +typical or common use of that class of product, regardless of the status +of the particular user or of the way in which the particular user +actually uses, or expects or is expected to use, the product. A product +is a consumer product regardless of whether the product has substantial +commercial, industrial or non-consumer uses, unless such uses represent +the only significant mode of use of the product. + + "Installation Information" for a User Product means any methods, +procedures, authorization keys, or other information required to install +and execute modified versions of a covered work in that User Product from +a modified version of its Corresponding Source. The information must +suffice to ensure that the continued functioning of the modified object +code is in no case prevented or interfered with solely because +modification has been made. + + If you convey an object code work under this section in, or with, or +specifically for use in, a User Product, and the conveying occurs as +part of a transaction in which the right of possession and use of the +User Product is transferred to the recipient in perpetuity or for a +fixed term (regardless of how the transaction is characterized), the +Corresponding Source conveyed under this section must be accompanied +by the Installation Information. But this requirement does not apply +if neither you nor any third party retains the ability to install +modified object code on the User Product (for example, the work has +been installed in ROM). + + The requirement to provide Installation Information does not include a +requirement to continue to provide support service, warranty, or updates +for a work that has been modified or installed by the recipient, or for +the User Product in which it has been modified or installed. Access to a +network may be denied when the modification itself materially and +adversely affects the operation of the network or violates the rules and +protocols for communication across the network. + + Corresponding Source conveyed, and Installation Information provided, +in accord with this section must be in a format that is publicly +documented (and with an implementation available to the public in +source code form), and must require no special password or key for +unpacking, reading or copying. + + 7. Additional Terms. + + "Additional permissions" are terms that supplement the terms of this +License by making exceptions from one or more of its conditions. +Additional permissions that are applicable to the entire Program shall +be treated as though they were included in this License, to the extent +that they are valid under applicable law. If additional permissions +apply only to part of the Program, that part may be used separately +under those permissions, but the entire Program remains governed by +this License without regard to the additional permissions. + + When you convey a copy of a covered work, you may at your option +remove any additional permissions from that copy, or from any part of +it. (Additional permissions may be written to require their own +removal in certain cases when you modify the work.) You may place +additional permissions on material, added by you to a covered work, +for which you have or can give appropriate copyright permission. + + Notwithstanding any other provision of this License, for material you +add to a covered work, you may (if authorized by the copyright holders of +that material) supplement the terms of this License with terms: + + a) Disclaiming warranty or limiting liability differently from the + terms of sections 15 and 16 of this License; or + + b) Requiring preservation of specified reasonable legal notices or + author attributions in that material or in the Appropriate Legal + Notices displayed by works containing it; or + + c) Prohibiting misrepresentation of the origin of that material, or + requiring that modified versions of such material be marked in + reasonable ways as different from the original version; or + + d) Limiting the use for publicity purposes of names of licensors or + authors of the material; or + + e) Declining to grant rights under trademark law for use of some + trade names, trademarks, or service marks; or + + f) Requiring indemnification of licensors and authors of that + material by anyone who conveys the material (or modified versions of + it) with contractual assumptions of liability to the recipient, for + any liability that these contractual assumptions directly impose on + those licensors and authors. + + All other non-permissive additional terms are considered "further +restrictions" within the meaning of section 10. If the Program as you +received it, or any part of it, contains a notice stating that it is +governed by this License along with a term that is a further +restriction, you may remove that term. If a license document contains +a further restriction but permits relicensing or conveying under this +License, you may add to a covered work material governed by the terms +of that license document, provided that the further restriction does +not survive such relicensing or conveying. + + If you add terms to a covered work in accord with this section, you +must place, in the relevant source files, a statement of the +additional terms that apply to those files, or a notice indicating +where to find the applicable terms. + + Additional terms, permissive or non-permissive, may be stated in the +form of a separately written license, or stated as exceptions; +the above requirements apply either way. + + 8. Termination. + + You may not propagate or modify a covered work except as expressly +provided under this License. Any attempt otherwise to propagate or +modify it is void, and will automatically terminate your rights under +this License (including any patent licenses granted under the third +paragraph of section 11). + + However, if you cease all violation of this License, then your +license from a particular copyright holder is reinstated (a) +provisionally, unless and until the copyright holder explicitly and +finally terminates your license, and (b) permanently, if the copyright +holder fails to notify you of the violation by some reasonable means +prior to 60 days after the cessation. + + Moreover, your license from a particular copyright holder is +reinstated permanently if the copyright holder notifies you of the +violation by some reasonable means, this is the first time you have +received notice of violation of this License (for any work) from that +copyright holder, and you cure the violation prior to 30 days after +your receipt of the notice. + + Termination of your rights under this section does not terminate the +licenses of parties who have received copies or rights from you under +this License. If your rights have been terminated and not permanently +reinstated, you do not qualify to receive new licenses for the same +material under section 10. + + 9. Acceptance Not Required for Having Copies. + + You are not required to accept this License in order to receive or +run a copy of the Program. Ancillary propagation of a covered work +occurring solely as a consequence of using peer-to-peer transmission +to receive a copy likewise does not require acceptance. However, +nothing other than this License grants you permission to propagate or +modify any covered work. These actions infringe copyright if you do +not accept this License. Therefore, by modifying or propagating a +covered work, you indicate your acceptance of this License to do so. + + 10. Automatic Licensing of Downstream Recipients. + + Each time you convey a covered work, the recipient automatically +receives a license from the original licensors, to run, modify and +propagate that work, subject to this License. You are not responsible +for enforcing compliance by third parties with this License. + + An "entity transaction" is a transaction transferring control of an +organization, or substantially all assets of one, or subdividing an +organization, or merging organizations. If propagation of a covered +work results from an entity transaction, each party to that +transaction who receives a copy of the work also receives whatever +licenses to the work the party's predecessor in interest had or could +give under the previous paragraph, plus a right to possession of the +Corresponding Source of the work from the predecessor in interest, if +the predecessor has it or can get it with reasonable efforts. + + You may not impose any further restrictions on the exercise of the +rights granted or affirmed under this License. For example, you may +not impose a license fee, royalty, or other charge for exercise of +rights granted under this License, and you may not initiate litigation +(including a cross-claim or counterclaim in a lawsuit) alleging that +any patent claim is infringed by making, using, selling, offering for +sale, or importing the Program or any portion of it. + + 11. Patents. + + A "contributor" is a copyright holder who authorizes use under this +License of the Program or a work on which the Program is based. The +work thus licensed is called the contributor's "contributor version". + + A contributor's "essential patent claims" are all patent claims +owned or controlled by the contributor, whether already acquired or +hereafter acquired, that would be infringed by some manner, permitted +by this License, of making, using, or selling its contributor version, +but do not include claims that would be infringed only as a +consequence of further modification of the contributor version. For +purposes of this definition, "control" includes the right to grant +patent sublicenses in a manner consistent with the requirements of +this License. + + Each contributor grants you a non-exclusive, worldwide, royalty-free +patent license under the contributor's essential patent claims, to +make, use, sell, offer for sale, import and otherwise run, modify and +propagate the contents of its contributor version. + + In the following three paragraphs, a "patent license" is any express +agreement or commitment, however denominated, not to enforce a patent +(such as an express permission to practice a patent or covenant not to +sue for patent infringement). To "grant" such a patent license to a +party means to make such an agreement or commitment not to enforce a +patent against the party. + + If you convey a covered work, knowingly relying on a patent license, +and the Corresponding Source of the work is not available for anyone +to copy, free of charge and under the terms of this License, through a +publicly available network server or other readily accessible means, +then you must either (1) cause the Corresponding Source to be so +available, or (2) arrange to deprive yourself of the benefit of the +patent license for this particular work, or (3) arrange, in a manner +consistent with the requirements of this License, to extend the patent +license to downstream recipients. "Knowingly relying" means you have +actual knowledge that, but for the patent license, your conveying the +covered work in a country, or your recipient's use of the covered work +in a country, would infringe one or more identifiable patents in that +country that you have reason to believe are valid. + + If, pursuant to or in connection with a single transaction or +arrangement, you convey, or propagate by procuring conveyance of, a +covered work, and grant a patent license to some of the parties +receiving the covered work authorizing them to use, propagate, modify +or convey a specific copy of the covered work, then the patent license +you grant is automatically extended to all recipients of the covered +work and works based on it. + + A patent license is "discriminatory" if it does not include within +the scope of its coverage, prohibits the exercise of, or is +conditioned on the non-exercise of one or more of the rights that are +specifically granted under this License. You may not convey a covered +work if you are a party to an arrangement with a third party that is +in the business of distributing software, under which you make payment +to the third party based on the extent of your activity of conveying +the work, and under which the third party grants, to any of the +parties who would receive the covered work from you, a discriminatory +patent license (a) in connection with copies of the covered work +conveyed by you (or copies made from those copies), or (b) primarily +for and in connection with specific products or compilations that +contain the covered work, unless you entered into that arrangement, +or that patent license was granted, prior to 28 March 2007. + + Nothing in this License shall be construed as excluding or limiting +any implied license or other defenses to infringement that may +otherwise be available to you under applicable patent law. + + 12. No Surrender of Others' Freedom. + + If conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot convey a +covered work so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you may +not convey it at all. For example, if you agree to terms that obligate you +to collect a royalty for further conveying from those to whom you convey +the Program, the only way you could satisfy both those terms and this +License would be to refrain entirely from conveying the Program. + + 13. Use with the GNU Affero General Public License. + + Notwithstanding any other provision of this License, you have +permission to link or combine any covered work with a work licensed +under version 3 of the GNU Affero General Public License into a single +combined work, and to convey the resulting work. The terms of this +License will continue to apply to the part which is the covered work, +but the special requirements of the GNU Affero General Public License, +section 13, concerning interaction through a network will apply to the +combination as such. + + 14. Revised Versions of this License. + + The Free Software Foundation may publish revised and/or new versions of +the GNU General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + + Each version is given a distinguishing version number. If the +Program specifies that a certain numbered version of the GNU General +Public License "or any later version" applies to it, you have the +option of following the terms and conditions either of that numbered +version or of any later version published by the Free Software +Foundation. If the Program does not specify a version number of the +GNU General Public License, you may choose any version ever published +by the Free Software Foundation. + + If the Program specifies that a proxy can decide which future +versions of the GNU General Public License can be used, that proxy's +public statement of acceptance of a version permanently authorizes you +to choose that version for the Program. + + Later license versions may give you additional or different +permissions. However, no additional obligations are imposed on any +author or copyright holder as a result of your choosing to follow a +later version. + + 15. Disclaimer of Warranty. + + THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY +APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT +HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY +OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, +THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM +IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF +ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. Limitation of Liability. + + IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS +THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY +GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE +USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF +DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD +PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), +EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF +SUCH DAMAGES. + + 17. Interpretation of Sections 15 and 16. + + If the disclaimer of warranty and limitation of liability provided +above cannot be given local legal effect according to their terms, +reviewing courts shall apply local law that most closely approximates +an absolute waiver of all civil liability in connection with the +Program, unless a warranty or assumption of liability accompanies a +copy of the Program in return for a fee. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +state the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + 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 . + +Also add information on how to contact you by electronic and paper mail. + + If the program does terminal interaction, make it output a short +notice like this when it starts in an interactive mode: + + Copyright (C) + This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate +parts of the General Public License. Of course, your program's commands +might be different; for a GUI interface, you would use an "about box". + + You should also get your employer (if you work as a programmer) or school, +if any, to sign a "copyright disclaimer" for the program, if necessary. +For more information on this, and how to apply and follow the GNU GPL, see +. + + The GNU General Public License does not permit incorporating your program +into proprietary programs. If your program is a subroutine library, you +may consider it more useful to permit linking proprietary applications with +the library. If this is what you want to do, use the GNU Lesser General +Public License instead of this License. But first, please read +. diff --git a/3dPrintedFiles/README.md b/3dPrintedFiles/README.md new file mode 100644 index 0000000..0c217de --- /dev/null +++ b/3dPrintedFiles/README.md @@ -0,0 +1 @@ +# 3dPrintedFiles \ No newline at end of file diff --git a/3dPrintedFiles/Wire Crimp Fuse Connector.3mf b/3dPrintedFiles/Wire Crimp Fuse Connector.3mf new file mode 100644 index 0000000..97e74d3 Binary files /dev/null and b/3dPrintedFiles/Wire Crimp Fuse Connector.3mf differ diff --git a/Docs/BluetoothBle.md b/Docs/BluetoothBle.md index dd55951..3c7d5e3 100644 --- a/Docs/BluetoothBle.md +++ b/Docs/BluetoothBle.md @@ -1,4 +1,4 @@ -# SmartFuseBox – Bluetooth BLE +# PowerControlHub – Bluetooth BLE This document covers the Bluetooth BLE subsystem: component responsibilities, service and characteristic reference, connection lifecycle, and how to add a new service. @@ -30,7 +30,7 @@ BluetoothController The Bluetooth subsystem uses a lightweight interface (`IBluetoothRadio`) to decouple higher-level application code from platform-specific BLE driver code. This pattern: -- **Minimizes preprocessor usage** — `#if defined(BLUETOOTH_SUPPORT)` is only required where the concrete `BluetoothController` is constructed (`SmartFuseBoxApp`). +- **Minimizes preprocessor usage** — `#if defined(BLUETOOTH_SUPPORT)` is only required where the concrete `BluetoothController` is constructed (`PowerControlHubApp`). - **Enables runtime control** — higher-level controllers (`ConfigController`, `SystemSensorHandler`, etc.) accept nullable `IBluetoothRadio*` pointers and use runtime null-checks instead of compile-time guards. - **Simplifies testing** — test doubles can implement `IBluetoothRadio` without requiring Arduino/BLE libraries. - **Mirrors Wi-Fi pattern** — follows the same architecture as `IWifiRadio` for consistency. @@ -50,9 +50,9 @@ Key methods: ### `BluetoothController` -Concrete implementation of `IBluetoothRadio`. Top-level lifecycle owner that manages the ArduinoBLE stack and all services. Constructed inside `SmartFuseBoxApp` only when `BLUETOOTH_SUPPORT` is defined. +Concrete implementation of `IBluetoothRadio`. Top-level lifecycle owner that manages the ArduinoBLE stack and all services. Constructed inside `PowerControlHubApp` only when `BLUETOOTH_SUPPORT` is defined. -**Composition:** `SmartFuseBoxApp` exposes a `bluetoothController()` accessor that returns `IBluetoothRadio*`: +**Composition:** `PowerControlHubApp` exposes a `bluetoothController()` accessor that returns `IBluetoothRadio*`: - Returns `&_bluetoothController` when `BLUETOOTH_SUPPORT` is defined. - Returns `nullptr` otherwise. @@ -96,7 +96,7 @@ Abstract base class. All services inherit from it and implement: - **Single client** — only one BLE central can be connected at a time. - **Advertising** — starts automatically on `begin()` and restarts automatically after every disconnect. - **No pairing / bonding** — all characteristics are open; security is physical proximity. -- **Device name** — advertised as **"Smart Fuse Box"**. +- **Device name** — advertised as **"Power Control Hub"**. --- @@ -109,7 +109,7 @@ Abstract base class. All services inherit from it and implement: | Characteristic | UUID | Type | Properties | Update Interval | Description | |---|---|---|---|---|---| | Heartbeat | `beb5483e-36e1-4688-b7f5-ea07361b26a0` | `uint32` | Read, Notify | 1000 ms | Monotonically incrementing counter; confirms BLE stack is alive | -| Initialized | `beb5483e-36e1-4688-b7f5-ea07361b26a1` | `uint8` | Read, Notify | On event | `0xFF` at startup; set to `1` once the SFB firmware has finished initialising | +| Initialized | `beb5483e-36e1-4688-b7f5-ea07361b26a1` | `uint8` | Read, Notify | On event | `0xFF` at startup; set to `1` once the PCH firmware has finished initialising | | Free Memory | `beb5483e-36e1-4688-b7f5-ea07361b26a2` | `uint32` | Read, Notify | 5000 ms | Available heap in bytes | | CPU Usage | `beb5483e-36e1-4688-b7f5-ea07361b26a3` | `float` | Read, Notify | 2000 ms | CPU load as a percentage (0.0 – 100.0) | @@ -195,9 +195,9 @@ public: }; ``` -**Wiring (e.g., `SmartFuseBox.ino`):** +**Wiring (e.g., `PowerControlHub.ino`):** ```cpp -SmartFuseBoxApp app(&commandMgrComputer, &commandMgrLink, Relays, ConfigRelayCount); +PowerControlHubApp app(&commandMgrComputer, &commandMgrLink, Relays, ConfigRelayCount); // Fetch interface pointer (returns nullptr if not compiled in) IBluetoothRadio* bluetooth = app.bluetoothController(); @@ -313,7 +313,7 @@ if (_myService) - **Separation of concerns:** Platform/driver code (`BluetoothController`, ArduinoBLE headers) is compiled only when `BLUETOOTH_SUPPORT` is defined. Application logic (`ConfigController`, sensor handlers) depends only on `IBluetoothRadio` and compiles everywhere. - **Minimal #if usage:** The only places requiring `#if defined(BLUETOOTH_SUPPORT)` are: - 1. `SmartFuseBoxApp.h` — around the concrete `BluetoothController` member declaration. - 2. `SmartFuseBoxApp.cpp` — around construction and initialization of `BluetoothController`. - 3. `SmartFuseBoxApp::bluetoothController()` — to return `nullptr` when not compiled in. + 1. `PowerControlHubApp.h` — around the concrete `BluetoothController` member declaration. + 2. `PowerControlHubApp.cpp` — around construction and initialization of `BluetoothController`. + 3. `PowerControlHubApp::bluetoothController()` — to return `nullptr` when not compiled in. - **Testability:** Mock implementations of `IBluetoothRadio` can be injected into components for unit testing without requiring BLE hardware or libraries. \ No newline at end of file diff --git a/Docs/Commands.md b/Docs/Commands.md index 77eff0a..d053c1f 100644 --- a/Docs/Commands.md +++ b/Docs/Commands.md @@ -1,14 +1,14 @@ -# SmartFuseBox Command Reference +# PowerControlHub Command Reference ## Overview -This document describes every command the SmartFuseBox (SFB) firmware understands. +This document describes every command the PowerControlHub (PCH) firmware understands. Commands travel over two transports: | Transport | Format | Direction | |---|---|---| | **Serial / USB** | `:=;=\n` | Bidirectional | -| **WiFi REST** | `POST /api//?=&…` | Client → SFB | +| **WiFi REST** | `POST /api//?=&…` | Client → PCH | ### Command-group prefix summary @@ -44,7 +44,7 @@ These are commands used to configure the system settings and can only be sent fr | Command | Example | Purpose | |---|---|---| -| `F0` — Heart beat | `F0:w=0x00` or `F0:w=0x00;t=1733328600` | Send at rated intervals to monitor connection health. If no ACK received, indicates connection loss. **Params:** `w=` - bitmask of active local warnings (hex format). `t=` - Unix timestamp for continuous time sync. Smart Fuse Box automatically updates clock from `t=` parameter. | +| `F0` — Heart beat | `F0:w=0x00` or `F0:w=0x00;t=1733328600` | Send at rated intervals to monitor connection health. If no ACK received, indicates connection loss. **Params:** `w=` - bitmask of active local warnings (hex format). `t=` - Unix timestamp for continuous time sync. PowerControlHub automatically updates clock from `t=` parameter. | | `F1` — System Initialized | `F1` | Sent by the system when initialization is complete to signal readiness. No params. Used to notify connected devices or software that the control panel is ready for operation. | | `F2` — Free Memory | `F2` | When received will return the amount of free memory. | | `F3` — Cpu Usage | `F3` | When received will return the current CPU usage. No params. | @@ -56,8 +56,8 @@ These are commands used to configure the system settings and can only be sent fr | `F9` — SD Card Log File Size | `F9` | Get current log file size in bytes. Returns `v=` where bytes is the size of the active log file. Returns `v=0` if no file is open. No params. | | `F10` — RTC Diagnostic | `F10` | Perform DS1302 RTC diagnostics. Returns status message with RTC health (availability, running state, write protection, time validity). Returns error message if RTC fails any check. No params. | | `F11` — Uptime | F11 | Returns system uptime as "days HH:MM:SS" (e.g. 2d 03:12:45). No params. | -| `F12` — OTA Check / Apply | `F12` or `F12:apply=1` | Trigger an OTA firmware check against the latest GitHub release. Without params (or `apply=0`) checks only and returns current status. With `apply=1` downloads and applies the update if one is available (or queues apply if a check is already in progress). Response params: `v=` current firmware version, `av=` available version tag (empty if none found yet), `s=` OTA state string. **SFB only** — requires `OTA_AUTO_UPDATE`, ESP32 and WiFi in client mode. | -| `F13` — OTA Status | `F13` | Query current OTA state without triggering a check. Response params: `v=` current firmware version, `av=` available version tag, `s=` OTA state string (`idle`, `checking`, `available`, `downloading`, `rebooting`, `failed`, `uptodate`), `auto=<0\|1>` whether auto-apply is enabled. **SFB only** — requires `OTA_AUTO_UPDATE`, ESP32 and WiFi in client mode. | +| `F12` — OTA Check / Apply | `F12` or `F12:apply=1` | Trigger an OTA firmware check against the latest GitHub release. Without params (or `apply=0`) checks only and returns current status. With `apply=1` downloads and applies the update if one is available (or queues apply if a check is already in progress). Response params: `v=` current firmware version, `av=` available version tag (empty if none found yet), `s=` OTA state string. **PCH only** — requires `OTA_AUTO_UPDATE`, ESP32 and WiFi in client mode. | +| `F13` — OTA Status | `F13` | Query current OTA state without triggering a check. Response params: `v=` current firmware version, `av=` available version tag, `s=` OTA state string (`idle`, `checking`, `available`, `downloading`, `rebooting`, `failed`, `uptodate`), `auto=<0\|1>` whether auto-apply is enabled. **PCH only** — requires `OTA_AUTO_UPDATE`, ESP32 and WiFi in client mode. | **OTA behaviour (F12 / F13):** @@ -80,7 +80,7 @@ Example: `GET /api/system/F2` | Command | Example | Purpose | |---|---|---| | `C0` — Save Settings | `C0` | Persist current in-memory config to EEPROM. Responds `SAVED` on success. No params. | -| `C1` — Get Settings | `C1` | Request full config dump. SFB replies with multiple frames covering all groups (see below). No params. | +| `C1` — Get Settings | `C1` | Request full config dump. PCH replies with multiple frames covering all groups (see below). No params. | | `C2` — Reset Settings | `C2` | Full reset of all config to factory defaults. No params. | | `C3` — Rename Location | `C3:Sea Wolf` | Set the location name. Value directly, no `v=` prefix. Empty name → error. | | `C4` — SPI Pins | `C4:sck=12;mosi=11;miso=13` | Set SD card SPI bus pins. Params: `sck=;mosi=;miso=`. Use `255` to clear any pin. Call `C0` to persist. | @@ -115,7 +115,7 @@ Example: `GET /api/system/F2` | `C33` — Light Sensor Threshold | `C33:v=512` | Analogue threshold (0–1023) above which daytime is detected. Default 512. Uses a rolling average of the last 10 samples; 3 consecutive consistent readings required before day/night state changes (see `S16`). | **C1 response sequence:** -SFB sends back: `C3` (name), `C4` (SPI pins), `C5` (home-button mappings), `C7` (location type), `C9` (sound delay), `C10`–`C17` (WiFi/Bluetooth — SFB only), `C18` (RTC pins), `C20`–`C23` (location identity), `C24`–`C27` (LED config), `C28` (tones), `N1`–`N6` (Nextion config), `R6` per relay (names), `R7` per relay (colours), `R8` per relay (default states), `R9` (linked pairs), `R10` (action types), `R11` (pins), `S0` per sensor (sensor config), then `ACK:C1=ok`. +PCH sends back: `C3` (name), `C4` (SPI pins), `C5` (home-button mappings), `C7` (location type), `C9` (sound delay), `C10`–`C17` (WiFi/Bluetooth — PCH only), `C18` (RTC pins), `C20`–`C23` (location identity), `C24`–`C27` (LED config), `C28` (tones), `N1`–`N6` (Nextion config), `R6` per relay (names), `R7` per relay (colours), `R8` per relay (default states), `R9` (linked pairs), `R10` (action types), `R11` (pins), `S0` per sensor (sensor config), then `ACK:C1=ok`. Common errors: `Missing param`, `Empty name`, `Invalid boat type`, `Invalid offset (-12 to +14)`, `MMSI must be 9 digits`, `Invalid speed (4, 8, 12, 16, 20, or 24 MHz)`, `Config not available`, `EEPROM commit failed`. diff --git a/KiCad/.gitignore b/KiCad/.gitignore new file mode 100644 index 0000000..0e1f1b7 --- /dev/null +++ b/KiCad/.gitignore @@ -0,0 +1,420 @@ +## Ignore Visual Studio temporary files, build results, and +## files generated by popular Visual Studio add-ons. +## +## Get latest from https://github.com/github/gitignore/blob/main/VisualStudio.gitignore + +# User-specific files +*.rsuser +*.suo +*.user +*.userosscache +*.sln.docstates +*.env + +# User-specific files (MonoDevelop/Xamarin Studio) +*.userprefs + +# Mono auto generated files +mono_crash.* + +# Build results +[Dd]ebug/ +[Dd]ebugPublic/ +[Rr]elease/ +[Rr]eleases/ +x64/ +x86/ +[Ww][Ii][Nn]32/ +[Aa][Rr][Mm]/ +[Aa][Rr][Mm]64/ +[Aa][Rr][Mm]64[Ee][Cc]/ +bld/ +[Oo]bj/ +[Oo]ut/ +[Ll]og/ +[Ll]ogs/ + +# Build results on 'Bin' directories +**/[Bb]in/* +# Uncomment if you have tasks that rely on *.refresh files to move binaries +# (https://github.com/github/gitignore/pull/3736) +#!**/[Bb]in/*.refresh + +# Visual Studio 2015/2017 cache/options directory +.vs/ +# Uncomment if you have tasks that create the project's static files in wwwroot +#wwwroot/ + +# Visual Studio 2017 auto generated files +Generated\ Files/ + +# MSTest test Results +[Tt]est[Rr]esult*/ +[Bb]uild[Ll]og.* +*.trx + +# NUnit +*.VisualState.xml +TestResult.xml +nunit-*.xml + +# Approval Tests result files +*.received.* + +# Build Results of an ATL Project +[Dd]ebugPS/ +[Rr]eleasePS/ +dlldata.c + +# Benchmark Results +BenchmarkDotNet.Artifacts/ + +# .NET Core +project.lock.json +project.fragment.lock.json +artifacts/ + +# ASP.NET Scaffolding +ScaffoldingReadMe.txt + +# StyleCop +StyleCopReport.xml + +# Files built by Visual Studio +*_i.c +*_p.c +*_h.h +*.ilk +*.meta +*.obj +*.idb +*.iobj +*.pch +*.pdb +*.ipdb +*.pgc +*.pgd +*.rsp +# but not Directory.Build.rsp, as it configures directory-level build defaults +!Directory.Build.rsp +*.sbr +*.tlb +*.tli +*.tlh +*.tmp +*.tmp_proj +*_wpftmp.csproj +*.log +*.tlog +*.vspscc +*.vssscc +.builds +*.pidb +*.svclog +*.scc + +# Chutzpah Test files +_Chutzpah* + +# Visual C++ cache files +ipch/ +*.aps +*.ncb +*.opendb +*.opensdf +*.sdf +*.cachefile +*.VC.db +*.VC.VC.opendb + +# Visual Studio profiler +*.psess +*.vsp +*.vspx +*.sap + +# Visual Studio Trace Files +*.e2e + +# TFS 2012 Local Workspace +$tf/ + +# Guidance Automation Toolkit +*.gpState + +# ReSharper is a .NET coding add-in +_ReSharper*/ +*.[Rr]e[Ss]harper +*.DotSettings.user + +# TeamCity is a build add-in +_TeamCity* + +# DotCover is a Code Coverage Tool +*.dotCover + +# AxoCover is a Code Coverage Tool +.axoCover/* +!.axoCover/settings.json + +# Coverlet is a free, cross platform Code Coverage Tool +coverage*.json +coverage*.xml +coverage*.info + +# Visual Studio code coverage results +*.coverage +*.coveragexml + +# NCrunch +_NCrunch_* +.NCrunch_* +.*crunch*.local.xml +nCrunchTemp_* + +# MightyMoose +*.mm.* +AutoTest.Net/ + +# Web workbench (sass) +.sass-cache/ + +# Installshield output folder +[Ee]xpress/ + +# DocProject is a documentation generator add-in +DocProject/buildhelp/ +DocProject/Help/*.HxT +DocProject/Help/*.HxC +DocProject/Help/*.hhc +DocProject/Help/*.hhk +DocProject/Help/*.hhp +DocProject/Help/Html2 +DocProject/Help/html + +# Click-Once directory +publish/ + +# Publish Web Output +*.[Pp]ublish.xml +*.azurePubxml +# Note: Comment the next line if you want to checkin your web deploy settings, +# but database connection strings (with potential passwords) will be unencrypted +*.pubxml +*.publishproj + +# Microsoft Azure Web App publish settings. Comment the next line if you want to +# checkin your Azure Web App publish settings, but sensitive information contained +# in these scripts will be unencrypted +PublishScripts/ + +# NuGet Packages +*.nupkg +# NuGet Symbol Packages +*.snupkg +# The packages folder can be ignored because of Package Restore +**/[Pp]ackages/* +# except build/, which is used as an MSBuild target. +!**/[Pp]ackages/build/ +# Uncomment if necessary however generally it will be regenerated when needed +#!**/[Pp]ackages/repositories.config +# NuGet v3's project.json files produces more ignorable files +*.nuget.props +*.nuget.targets + +# Microsoft Azure Build Output +csx/ +*.build.csdef + +# Microsoft Azure Emulator +ecf/ +rcf/ + +# Windows Store app package directories and files +AppPackages/ +BundleArtifacts/ +Package.StoreAssociation.xml +_pkginfo.txt +*.appx +*.appxbundle +*.appxupload + +# Visual Studio cache files +# files ending in .cache can be ignored +*.[Cc]ache +# but keep track of directories ending in .cache +!?*.[Cc]ache/ + +# Others +ClientBin/ +~$* +*~ +*.dbmdl +*.dbproj.schemaview +*.jfm +*.pfx +*.publishsettings +orleans.codegen.cs + +# Including strong name files can present a security risk +# (https://github.com/github/gitignore/pull/2483#issue-259490424) +#*.snk + +# Since there are multiple workflows, uncomment next line to ignore bower_components +# (https://github.com/github/gitignore/pull/1529#issuecomment-104372622) +#bower_components/ + +# RIA/Silverlight projects +Generated_Code/ + +# Backup & report files from converting an old project file +# to a newer Visual Studio version. Backup files are not needed, +# because we have git ;-) +_UpgradeReport_Files/ +Backup*/ +UpgradeLog*.XML +UpgradeLog*.htm +ServiceFabricBackup/ +*.rptproj.bak + +# SQL Server files +*.mdf +*.ldf +*.ndf + +# Business Intelligence projects +*.rdl.data +*.bim.layout +*.bim_*.settings +*.rptproj.rsuser +*- [Bb]ackup.rdl +*- [Bb]ackup ([0-9]).rdl +*- [Bb]ackup ([0-9][0-9]).rdl + +# Microsoft Fakes +FakesAssemblies/ + +# GhostDoc plugin setting file +*.GhostDoc.xml + +# Node.js Tools for Visual Studio +.ntvs_analysis.dat +node_modules/ + +# Visual Studio 6 build log +*.plg + +# Visual Studio 6 workspace options file +*.opt + +# Visual Studio 6 auto-generated workspace file (contains which files were open etc.) +*.vbw + +# Visual Studio 6 auto-generated project file (contains which files were open etc.) +*.vbp + +# Visual Studio 6 workspace and project file (working project files containing files to include in project) +*.dsw +*.dsp + +# Visual Studio 6 technical files +*.ncb +*.aps + +# Visual Studio LightSwitch build output +**/*.HTMLClient/GeneratedArtifacts +**/*.DesktopClient/GeneratedArtifacts +**/*.DesktopClient/ModelManifest.xml +**/*.Server/GeneratedArtifacts +**/*.Server/ModelManifest.xml +_Pvt_Extensions + +# Paket dependency manager +**/.paket/paket.exe +paket-files/ + +# FAKE - F# Make +**/.fake/ + +# CodeRush personal settings +**/.cr/personal + +# Python Tools for Visual Studio (PTVS) +**/__pycache__/ +*.pyc + +# Cake - Uncomment if you are using it +#tools/** +#!tools/packages.config + +# Tabs Studio +*.tss + +# Telerik's JustMock configuration file +*.jmconfig + +# BizTalk build output +*.btp.cs +*.btm.cs +*.odx.cs +*.xsd.cs + +# OpenCover UI analysis results +OpenCover/ + +# Azure Stream Analytics local run output +ASALocalRun/ + +# MSBuild Binary and Structured Log +*.binlog +MSBuild_Logs/ + +# AWS SAM Build and Temporary Artifacts folder +.aws-sam + +# NVidia Nsight GPU debugger configuration file +*.nvuser + +# MFractors (Xamarin productivity tool) working folder +**/.mfractor/ + +# Local History for Visual Studio +**/.localhistory/ + +# Visual Studio History (VSHistory) files +.vshistory/ + +# BeatPulse healthcheck temp database +healthchecksdb + +# Backup folder for Package Reference Convert tool in Visual Studio 2017 +MigrationBackup/ + +# Ionide (cross platform F# VS Code tools) working folder +**/.ionide/ + +# Fody - auto-generated XML schema +FodyWeavers.xsd + +# VS Code files for those working on multiple tools +.vscode/* +!.vscode/settings.json +!.vscode/tasks.json +!.vscode/launch.json +!.vscode/extensions.json +!.vscode/*.code-snippets + +# Local History for Visual Studio Code +.history/ + +# Built Visual Studio Code Extensions +*.vsix + +# Windows Installer files from build outputs +*.cab +*.msi +*.msix +*.msm +*.msp +/4Relays/SmartFuseBox-backups/ +/8Relays/SmartFuseBox-backups diff --git a/KiCad/8Relays/SmartFuseBox-2.png b/KiCad/8Relays/SmartFuseBox-2.png new file mode 100644 index 0000000..0c24803 Binary files /dev/null and b/KiCad/8Relays/SmartFuseBox-2.png differ diff --git a/KiCad/8Relays/SmartFuseBox-Bottom.png b/KiCad/8Relays/SmartFuseBox-Bottom.png new file mode 100644 index 0000000..14544c0 Binary files /dev/null and b/KiCad/8Relays/SmartFuseBox-Bottom.png differ diff --git a/KiCad/8Relays/SmartFuseBox-bottom-pos.csv b/KiCad/8Relays/SmartFuseBox-bottom-pos.csv new file mode 100644 index 0000000..34d8571 --- /dev/null +++ b/KiCad/8Relays/SmartFuseBox-bottom-pos.csv @@ -0,0 +1 @@ +Ref,Val,Package,PosX,PosY,Rot,Side diff --git a/KiCad/8Relays/SmartFuseBox-top-pos.csv b/KiCad/8Relays/SmartFuseBox-top-pos.csv new file mode 100644 index 0000000..4730958 --- /dev/null +++ b/KiCad/8Relays/SmartFuseBox-top-pos.csv @@ -0,0 +1,90 @@ +Ref,Val,Package,PosX,PosY,Rot,Side +"BZ1","Buzzer","Buzzer_12x9.5RM7.6",176.860000,-64.420000,0.000000,top +"C1","0.1uf","C_0805_2012Metric_Pad1.18x1.45mm_HandSolder",144.335000,-71.960000,180.000000,top +"C2","10uf","C_0805_2012Metric_Pad1.18x1.45mm_HandSolder",144.335000,-68.950000,180.000000,top +"C3","680uf","CP_Elec_6.3x7.7",190.260000,-94.820000,0.000000,top +"C4","470uf","CP_Elec_10x10.5",70.350000,-98.550000,180.000000,top +"C5","0.1uf","C_0805_2012Metric_Pad1.18x1.45mm_HandSolder",107.060000,-91.020000,90.000000,top +"C6","10uf","C_0805_2012Metric_Pad1.18x1.45mm_HandSolder",103.260000,-91.020000,90.000000,top +"C7","0.1uf","C_0805_2012Metric_Pad1.18x1.45mm_HandSolder",89.260000,-90.457500,90.000000,top +"C8","10uf","C_0805_2012Metric_Pad1.18x1.45mm_HandSolder",85.060000,-90.457500,90.000000,top +"C9","0.1uf","C_0805_2012Metric_Pad1.18x1.45mm_HandSolder",139.372500,-71.950000,180.000000,top +"C10","10uf","C_0805_2012Metric_Pad1.18x1.45mm_HandSolder",139.335000,-68.950000,180.000000,top +"C11","0.1uf","C_0805_2012Metric_Pad1.18x1.45mm_HandSolder",69.860000,-90.620000,90.000000,top +"C12","0.1uf","C_0805_2012Metric_Pad1.18x1.45mm_HandSolder",184.697500,-86.610000,180.000000,top +"C13","10uf","C_0805_2012Metric_Pad1.18x1.45mm_HandSolder",184.697500,-84.010000,180.000000,top +"C14","0.1uf","C_0805_2012Metric_Pad1.18x1.45mm_HandSolder",119.460000,-90.982500,90.000000,top +"C15","10uf","C_0805_2012Metric_Pad1.18x1.45mm_HandSolder",123.697500,-90.020000,180.000000,top +"C16","0.1uf","C_0805_2012Metric_Pad1.18x1.45mm_HandSolder",189.860000,-61.907500,-90.000000,top +"C17","10uf","C_0805_2012Metric_Pad1.18x1.45mm_HandSolder",192.822500,-61.870000,-90.000000,top +"C18","10uf","C_0805_2012Metric_Pad1.18x1.45mm_HandSolder",66.460000,-90.620000,90.000000,top +"C19","0.1uf","C_0805_2012Metric_Pad1.18x1.45mm_HandSolder",139.860000,-108.057500,-90.000000,top +"C20","10uf","C_0805_2012Metric_Pad1.18x1.45mm_HandSolder",132.422500,-107.020000,180.000000,top +"C21","0.1uf","C_0805_2012Metric_Pad1.18x1.45mm_HandSolder",111.660000,-106.257500,-90.000000,top +"C22","10uf","C_0805_2012Metric_Pad1.18x1.45mm_HandSolder",116.060000,-106.257500,-90.000000,top +"C23","0.1uf","C_0805_2012Metric_Pad1.18x1.45mm_HandSolder",92.260000,-106.220000,-90.000000,top +"C24","10uf","C_0805_2012Metric_Pad1.18x1.45mm_HandSolder",96.660000,-106.220000,-90.000000,top +"C25","0.1uf","C_0805_2012Metric_Pad1.18x1.45mm_HandSolder",73.860000,-106.020000,-90.000000,top +"C26","10uf","C_0805_2012Metric_Pad1.18x1.45mm_HandSolder",77.260000,-106.020000,-90.000000,top +"C27","0.1uf","C_0805_2012Metric_Pad1.18x1.45mm_HandSolder",144.297500,-65.620000,180.000000,top +"C28","10uf","C_0805_2012Metric_Pad1.18x1.45mm_HandSolder",144.222500,-60.620000,180.000000,top +"C29","10nf","C_0805_2012Metric_Pad1.18x1.45mm_HandSolder",188.722500,-103.457500,0.000000,top +"C30","0.1uf","C_0805_2012Metric_Pad1.18x1.45mm_HandSolder",188.722500,-106.457500,0.000000,top +"C31","12uf","C_0805_2012Metric_Pad1.18x1.45mm_HandSolder",188.722500,-112.057500,0.000000,top +"C32","4.8nf","C_0805_2012Metric_Pad1.18x1.45mm_HandSolder",182.960000,-113.057500,-90.000000,top +"C33","12uf","C_0805_2012Metric_Pad1.18x1.45mm_HandSolder",176.360000,-106.320000,90.000000,top +"D1","SS54","D_SMA",184.200000,-127.200000,-90.000000,top +"D2","SS54","D_SMA",190.860000,-122.020000,-90.000000,top +"D3","SS54","D_SMA",138.260000,-78.220000,-90.000000,top +"D4","SS54","D_SMA",113.060000,-91.220000,0.000000,top +"D5","SS54","D_SMA",95.260000,-90.620000,0.000000,top +"D6","SS54","D_SMA",76.660000,-90.620000,0.000000,top +"D7","SS54","D_SMA",139.860000,-114.620000,-90.000000,top +"D8","SS54","D_SMA",104.860000,-106.220000,180.000000,top +"D9","SS54","D_SMA",86.660000,-106.220000,180.000000,top +"D10","SS54","D_SMA",67.860000,-106.220000,180.000000,top +"D12","LED","LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder",197.935000,-94.820000,180.000000,top +"J1","Conn_01x02_Socket","TerminalBlock_MaiXu_MX126-5.0-02P_1x02_P5.00mm",198.260000,-108.820000,90.000000,top +"J2","Conn_01x03_Socket","TerminalBlock_MaiXu_MX126-5.0-03P_1x03_P5.00mm",132.460000,-61.720000,180.000000,top +"J3","Conn_01x02_Socket","TerminalBlock_MaiXu_MX126-5.0-02P_1x02_P5.00mm",197.910000,-76.610000,-90.000000,top +"J4","Conn_01x03_Socket","TerminalBlock_MaiXu_MX126-5.0-03P_1x03_P5.00mm",114.126667,-61.620000,180.000000,top +"J5","Conn_01x03_Socket","TerminalBlock_MaiXu_MX126-5.0-03P_1x03_P5.00mm",95.793333,-61.620000,180.000000,top +"J6","Conn_01x03_Socket","TerminalBlock_MaiXu_MX126-5.0-03P_1x03_P5.00mm",77.460000,-61.420000,180.000000,top +"J7","Conn_01x03_Socket","TerminalBlock_MaiXu_MX126-5.0-03P_1x03_P5.00mm",123.060000,-135.620000,0.000000,top +"J8","Conn_01x03_Socket","TerminalBlock_MaiXu_MX126-5.0-03P_1x03_P5.00mm",104.726667,-135.420000,0.000000,top +"J9","Conn_01x03_Socket","TerminalBlock_MaiXu_MX126-5.0-03P_1x03_P5.00mm",86.393333,-135.470000,0.000000,top +"J10","Conn_01x03_Socket","TerminalBlock_MaiXu_MX126-5.0-03P_1x03_P5.00mm",68.060000,-135.420000,0.000000,top +"J11","Conn_01x04_Socket","JST_PH_S4B-PH-K_1x04_P2.00mm_Horizontal",165.460000,-133.170000,0.000000,top +"J12","Conn_01x04_Socket","JST_PH_S4B-PH-K_1x04_P2.00mm_Horizontal",177.860000,-133.170000,0.000000,top +"J13","Conn_01x04_Socket","JST_PH_S4B-PH-K_1x04_P2.00mm_Horizontal",140.260000,-133.170000,0.000000,top +"J14","Conn_01x04_Socket","JST_PH_S4B-PH-K_1x04_P2.00mm_Horizontal",152.860000,-133.170000,0.000000,top +"J15","Conn_01x02_Socket","JST_XH_S2B-XH-A-1_1x02_P2.50mm_Horizontal",189.950000,-133.150000,0.000000,top +"K1","SRD-12VDC-SL-C","Relay_SPDT_SANYOU_SRD_Series_Form_C",127.610000,-86.570000,90.000000,top +"K2","SRD-12VDC-SL-C","Relay_SPDT_SANYOU_SRD_Series_Form_C",109.276667,-86.102500,90.000000,top +"K3","SRD-12VDC-SL-C","Relay_SPDT_SANYOU_SRD_Series_Form_C",90.943333,-86.020000,90.000000,top +"K4","SRD-12VDC-SL-C","Relay_SPDT_SANYOU_SRD_Series_Form_C",72.610000,-86.220000,90.000000,top +"K5","SRD-12VDC-SL-C","Relay_SPDT_SANYOU_SRD_Series_Form_C",127.660000,-110.720000,-90.000000,top +"K6","SRD-12VDC-SL-C","Relay_SPDT_SANYOU_SRD_Series_Form_C",109.326667,-110.520000,-90.000000,top +"K7","SRD-12VDC-SL-C","Relay_SPDT_SANYOU_SRD_Series_Form_C",90.993333,-110.570000,-90.000000,top +"K8","SRD-12VDC-SL-C","Relay_SPDT_SANYOU_SRD_Series_Form_C",72.660000,-110.520000,-90.000000,top +"L2","10uH, 4A","L_SOREDE_SNR.1050_10x10x5mm",179.260000,-95.020000,180.000000,top +"Q1","BC817","SOT-23",179.200000,-122.600000,-90.000000,top +"Q2","NPN","SOT23-3_PO123",190.611780,-66.370000,-90.000000,top +"R1","1k","R_0805_2012Metric_Pad1.20x1.40mm_HandSolder",178.200000,-118.400000,-90.000000,top +"R5","1k","R_0805_2012Metric_Pad1.20x1.40mm_HandSolder",190.560000,-70.270000,0.000000,top +"R8","1k","R_0805_2012Metric_Pad1.20x1.40mm_HandSolder",186.660000,-72.220000,90.000000,top +"R11","120R","R_0805_2012Metric_Pad1.20x1.40mm_HandSolder",190.860000,-78.810000,-90.000000,top +"R12","4.7k","R_0805_2012Metric_Pad1.20x1.40mm_HandSolder",175.460000,-128.220000,-90.000000,top +"R13","4.7k","R_0805_2012Metric_Pad1.20x1.40mm_HandSolder",144.260000,-63.020000,180.000000,top +"R14","100k","R_0805_2012Metric_Pad1.20x1.40mm_HandSolder",185.360000,-113.057500,90.000000,top +"R15","8.2k","R_0805_2012Metric_Pad1.20x1.40mm_HandSolder",182.960000,-118.420000,-90.000000,top +"R16","10k","R_0805_2012Metric_Pad1.20x1.40mm_HandSolder",179.060000,-106.370000,90.000000,top +"R17","44.2k","R_0805_2012Metric_Pad1.20x1.40mm_HandSolder",180.310000,-113.020000,-90.000000,top +"R18","2k","R_0805_2012Metric_Pad1.20x1.40mm_HandSolder",197.960000,-91.770000,180.000000,top +"R19","4.7k","R_0805_2012Metric_Pad1.20x1.40mm_HandSolder",178.410000,-128.220000,-90.000000,top +"U1","ULN2803A","SOIC-18W_7.5x11.6mm_P1.27mm",127.610000,-98.430000,180.000000,top +"U2","DS18B20","TO-92_Inline",139.660000,-64.290000,90.000000,top +"U3","MP2303ADN","SOIC-8-1EP_3.9x4.9mm_P1.27mm_EP2.62x3.51mm",183.235000,-106.202500,-90.000000,top +"U5","SN65HVD230","SOIC-8_3.9x4.9mm_P1.27mm",184.135000,-78.915000,0.000000,top +"U6","ESP32-S3-DEVKITC-1-N16R8V","XCVR_ESP32-S3-DEVKITC-1-N16R8V",160.030000,-96.430000,0.000000,top +"XF1","BK-6013","FUSE_BK-6013",198.660000,-121.725000,-90.000000,top diff --git a/KiCad/8Relays/SmartFuseBox.kicad_pcb b/KiCad/8Relays/SmartFuseBox.kicad_pcb new file mode 100644 index 0000000..31d9074 --- /dev/null +++ b/KiCad/8Relays/SmartFuseBox.kicad_pcb @@ -0,0 +1,46844 @@ +(kicad_pcb + (version 20241229) + (generator "pcbnew") + (generator_version "9.0") + (general + (thickness 1.6) + (legacy_teardrops no) + ) + (paper "A4") + (layers + (0 "F.Cu" signal) + (4 "In1.Cu" signal) + (6 "In2.Cu" signal) + (2 "B.Cu" signal) + (9 "F.Adhes" user "F.Adhesive") + (11 "B.Adhes" user "B.Adhesive") + (13 "F.Paste" user) + (15 "B.Paste" user) + (5 "F.SilkS" user "F.Silkscreen") + (7 "B.SilkS" user "B.Silkscreen") + (1 "F.Mask" user) + (3 "B.Mask" user) + (17 "Dwgs.User" user "User.Drawings") + (19 "Cmts.User" user "User.Comments") + (21 "Eco1.User" user "User.Eco1") + (23 "Eco2.User" user "User.Eco2") + (25 "Edge.Cuts" user) + (27 "Margin" user) + (31 "F.CrtYd" user "F.Courtyard") + (29 "B.CrtYd" user "B.Courtyard") + (35 "F.Fab" user) + (33 "B.Fab" user) + (39 "User.1" user) + (41 "User.2" user) + (43 "User.3" user) + (45 "User.4" 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 "prepreg") + (thickness 0.1) + (material "FR4") + (epsilon_r 4.5) + (loss_tangent 0.02) + ) + (layer "In1.Cu" + (type "copper") + (thickness 0.035) + ) + (layer "dielectric 2" + (type "core") + (thickness 1.24) + (material "FR4") + (epsilon_r 4.5) + (loss_tangent 0.02) + ) + (layer "In2.Cu" + (type "copper") + (thickness 0.035) + ) + (layer "dielectric 3" + (type "prepreg") + (thickness 0.1) + (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) + (allow_soldermask_bridges_in_footprints no) + (tenting front back) + (pcbplotparams + (layerselection 0x00000000_00000000_55555555_5755f5ff) + (plot_on_all_layers_selection 0x00000000_00000000_00000000_00000000) + (disableapertmacros no) + (usegerberextensions no) + (usegerberattributes yes) + (usegerberadvancedattributes yes) + (creategerberjobfile yes) + (dashed_line_dash_ratio 12.000000) + (dashed_line_gap_ratio 3.000000) + (svgprecision 4) + (plotframeref no) + (mode 1) + (useauxorigin no) + (hpglpennumber 1) + (hpglpenspeed 20) + (hpglpendiameter 15.000000) + (pdf_front_fp_property_popups yes) + (pdf_back_fp_property_popups yes) + (pdf_metadata yes) + (pdf_single_document no) + (dxfpolygonmode yes) + (dxfimperialunits yes) + (dxfusepcbnewfont yes) + (psnegative no) + (psa4output no) + (plot_black_and_white yes) + (sketchpadsonfab no) + (plotpadnumbers no) + (hidednponfab no) + (sketchdnponfab yes) + (crossoutdnponfab yes) + (subtractmaskfromsilk no) + (outputformat 1) + (mirror no) + (drillshape 1) + (scaleselection 1) + (outputdirectory "") + ) + ) + (net 0 "") + (net 1 "GND") + (net 2 "5V") + (net 3 "VDD33") + (net 4 "12V_INPUT") + (net 5 "Net-(BZ1--)") + (net 6 "Net-(U3-SW)") + (net 7 "Net-(U3-BS)") + (net 8 "COM_1") + (net 9 "NC_1") + (net 10 "NO_1") + (net 11 "/CANH") + (net 12 "/CANL") + (net 13 "NO_2") + (net 14 "COM_2") + (net 15 "NC_2") + (net 16 "COM_3") + (net 17 "NC_3") + (net 18 "NO_3") + (net 19 "COM_4") + (net 20 "NC_4") + (net 21 "NO_4") + (net 22 "NO_5") + (net 23 "NC_5") + (net 24 "COM_5") + (net 25 "NO_6") + (net 26 "NC_6") + (net 27 "COM_6") + (net 28 "NO_7") + (net 29 "NC_7") + (net 30 "COM_7") + (net 31 "NC_8") + (net 32 "COM_8") + (net 33 "NO_8") + (net 34 "SIG_A1") + (net 35 "SIG_A2") + (net 36 "SIG_A4") + (net 37 "SIG_A3") + (net 38 "Net-(Q2-B)") + (net 39 "RELAY_1") + (net 40 "RELAY_2") + (net 41 "RELAY_3") + (net 42 "RELAY_4") + (net 43 "BUZZER") + (net 44 "RELAY_5") + (net 45 "RELAY_6") + (net 46 "Net-(R8-+)") + (net 47 "RELAY_7") + (net 48 "RELAY_8") + (net 49 "DS18B20_OUT") + (net 50 "unconnected-(U5-Vref-Pad5)") + (net 51 "ESP_TX") + (net 52 "ESP_RX") + (net 53 "SIG_A6") + (net 54 "unconnected-(U6-GPIO3-PadJ1_13)") + (net 55 "unconnected-(U6-GPIO47-PadJ3_17)") + (net 56 "unconnected-(U6-USB_D+{slash}GPIO20-PadJ3_19)") + (net 57 "unconnected-(U6-MTCK{slash}GPIO39-PadJ3_9)") + (net 58 "unconnected-(U6-GPIO46-PadJ1_14)") + (net 59 "unconnected-(U6-GPIO0-PadJ3_14)") + (net 60 "unconnected-(U6-USB_D-{slash}GPIO19-PadJ3_20)") + (net 61 "unconnected-(U6-GPIO37-PadJ3_11)") + (net 62 "unconnected-(U6-GPIO14-PadJ1_20)") + (net 63 "unconnected-(U6-GPIO35-PadJ3_13)") + (net 64 "SIG_A5") + (net 65 "unconnected-(U6-MTMS{slash}GPIO42-PadJ3_6)") + (net 66 "unconnected-(U6-GPIO45-PadJ3_15)") + (net 67 "unconnected-(U6-GPIO48-PadJ3_16)") + (net 68 "unconnected-(U6-RST-PadJ1_3)") + (net 69 "Net-(D1-A)") + (net 70 "unconnected-(U6-MTDI{slash}GPIO41-PadJ3_7)") + (net 71 "unconnected-(U6-GPIO38-PadJ3_10)") + (net 72 "unconnected-(U6-MTDO{slash}GPIO40-PadJ3_8)") + (net 73 "unconnected-(U6-GPIO36-PadJ3_12)") + (net 74 "Net-(U3-SS)") + (net 75 "Net-(R15-+)") + (net 76 "Net-(U3-COMP)") + (net 77 "Net-(D12-A)") + (net 78 "Net-(R14--)") + (net 79 "Net-(R16-+)") + (net 80 "Net-(J1-Pin_1)") + (net 81 "/12V_DC-Regulated") + (net 82 "R-1") + (net 83 "R-2") + (net 84 "R-3") + (net 85 "R-4") + (net 86 "R-5") + (net 87 "R-6") + (net 88 "R-7") + (net 89 "R-8") + (net 90 "Net-(Q1-B)") + (net 91 "FAN") + (footprint "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" + (placed yes) + (layer "F.Cu") + (uuid "00a66e43-5720-468f-b6b1-0cc392b8096b") + (at 66.46 90.62 90) + (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 "Reference" "C18" + (at 0 -1.68 90) + (layer "F.SilkS") + (uuid "ddd6d99b-8b74-42f8-b82f-14ba7ef345a9") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "10uf" + (at 0 1.68 90) + (layer "F.Fab") + (uuid "5ca5115c-aaed-4b54-b43c-d6b10f043e24") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "~" + (at 0 0 90) + (layer "F.Fab") + (hide yes) + (uuid "6b560ea2-5450-4dce-b8b4-6fd0dbf2b176") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "Unpolarized capacitor" + (at 0 0 90) + (layer "F.Fab") + (hide yes) + (uuid "556456ab-ed1e-4f73-b3fb-3376eaaad8be") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Link" "https://robu.in/product/0402x104k100nt-fh-smd-multilayer-ceramic-capacitor-0-1-%C2%B5f100nf-10-v-0402-1005-metric-%C2%B1-10-x5r/" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "1f97db22-63ca-45fc-8cca-8f6e9ecaf352") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "C_*") + (path "/67fb4182-04b0-424c-9a32-73570d4a0aff") + (sheetname "/") + (sheetfile "SmartFuseBox.kicad_sch") + (attr smd) + (fp_line + (start -0.261252 -0.735) + (end 0.261252 -0.735) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "d368da01-d94e-47bb-a98d-95ff1c59bd73") + ) + (fp_line + (start -0.261252 0.735) + (end 0.261252 0.735) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "203425ce-9a87-4ed0-9997-c6336d7a4ca4") + ) + (fp_rect + (start -1.88 -0.98) + (end 1.88 0.98) + (stroke + (width 0.05) + (type solid) + ) + (fill no) + (layer "F.CrtYd") + (uuid "9ee20c59-0bce-4498-9db1-13b75ebddde8") + ) + (fp_rect + (start -1 -0.625) + (end 1 0.625) + (stroke + (width 0.1) + (type solid) + ) + (fill no) + (layer "F.Fab") + (uuid "8089db2e-819b-4391-b106-e9aefc3fb539") + ) + (fp_text user "${REFERENCE}" + (at 0 0 90) + (layer "F.Fab") + (uuid "c5530b47-091e-4027-896e-8d7bf660c8e8") + (effects + (font + (size 0.5 0.5) + (thickness 0.08) + ) + ) + ) + (pad "1" smd roundrect + (at -1.0375 0 90) + (size 1.175 1.45) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.212766) + (net 81 "/12V_DC-Regulated") + (pintype "passive") + (uuid "da84e4b9-1647-4d08-9caa-57a846f1d941") + ) + (pad "2" smd roundrect + (at 1.0375 0 90) + (size 1.175 1.45) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.212766) + (net 1 "GND") + (pintype "passive") + (uuid "3d31584d-85ae-4954-a381-2ddac63d5e52") + ) + (embedded_fonts no) + (model "${KICAD9_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.step" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Passives:R_0805_2012Metric_Pad1.20x1.40mm_HandSolder" + (layer "F.Cu") + (uuid "029226c1-d4b2-42f8-b947-44b070ddae38") + (at 178.2 118.4 -90) + (descr "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") + (tags "resistor handsolder") + (property "Reference" "R1" + (at 0 -1.65 90) + (layer "F.SilkS") + (hide yes) + (uuid "15037059-7cc3-45bf-8a0d-dbcbcfdf4371") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "1k" + (at 0 1.65 90) + (layer "F.Fab") + (uuid "96a612ee-3ef9-47bd-89ea-6d0ab9ab61c1") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "a7cffeaa-4197-455c-8735-e8bf5ddee30a") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "resistor" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "ff9836d2-b47b-4f7d-9302-6c7479cdefcc") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Indicator" "+" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "9eac0822-52e5-4209-b565-beba184ce385") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Rating" "W" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "b3a22254-3694-44af-afc9-bccb1e518b55") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (path "/7a10cfd2-3101-478a-9bcd-bfcd291949f5") + (sheetname "/") + (sheetfile "SmartFuseBox.kicad_sch") + (attr smd) + (fp_line + (start -0.227064 0.735) + (end 0.227064 0.735) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "3b6f8b63-91f7-47e4-9244-d0db590e3417") + ) + (fp_line + (start -0.227064 -0.735) + (end 0.227064 -0.735) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "f99b1c35-e859-4b82-afc6-6899092a4015") + ) + (fp_line + (start -1.85 0.95) + (end -1.85 -0.95) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "38eb0266-19ec-44d3-a2ba-178292637833") + ) + (fp_line + (start 1.85 0.95) + (end -1.85 0.95) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "d2dba235-d748-4f35-9758-be5c4c52f903") + ) + (fp_line + (start -1.85 -0.95) + (end 1.85 -0.95) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "5c851e73-b9ea-4c19-8674-77a693c230ff") + ) + (fp_line + (start 1.85 -0.95) + (end 1.85 0.95) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "c8eea03f-cd20-4b49-a90b-b0bffd626ed6") + ) + (fp_line + (start -1 0.625) + (end -1 -0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "9bed3b7c-8aaa-499c-b134-3eb6eb560280") + ) + (fp_line + (start 1 0.625) + (end -1 0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "401db06c-a862-4feb-9d50-ff4b9ac757d7") + ) + (fp_line + (start -1 -0.625) + (end 1 -0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "3dae50d9-2fc6-40d6-b0f8-3481a9b76bab") + ) + (fp_line + (start 1 -0.625) + (end 1 0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "102788be-da69-485a-bcf6-5ab8e3b3f60c") + ) + (fp_text user "${REFERENCE}" + (at 0 0 90) + (layer "F.Fab") + (uuid "adf0cdde-04ed-447e-8bcf-335b940d6af2") + (effects + (font + (size 0.5 0.5) + (thickness 0.08) + ) + ) + ) + (pad "1" smd roundrect + (at -1 0 90) + (size 1.2 1.4) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.208333) + (net 91 "FAN") + (pinfunction "+") + (pintype "passive") + (uuid "9bfadb7d-79f3-461f-a2cc-de84198effd4") + ) + (pad "2" smd roundrect + (at 1 0 90) + (size 1.2 1.4) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.208333) + (net 90 "Net-(Q1-B)") + (pinfunction "-") + (pintype "passive") + (uuid "938188c2-af1f-472e-88f2-6c03ceb4581f") + ) + (embedded_fonts no) + (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0805_2012Metric.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" + (placed yes) + (layer "F.Cu") + (uuid "06bf826c-013b-4ff8-b2fa-a217f420d1d9") + (at 123.6975 90.02 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 "Reference" "C15" + (at 0 -1.68 0) + (layer "F.SilkS") + (uuid "06746594-9943-4570-aabc-2491c3de2e4a") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "10uf" + (at 0 1.68 0) + (layer "F.Fab") + (uuid "87551ed9-5340-43d6-a082-a048ddd3c728") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "~" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "b6a08047-8c04-44ad-854f-d55441beeb6d") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "Unpolarized capacitor" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "3d00e276-e1c1-4be0-87fd-56104523ffe7") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Link" "https://robu.in/product/0402x104k100nt-fh-smd-multilayer-ceramic-capacitor-0-1-%C2%B5f100nf-10-v-0402-1005-metric-%C2%B1-10-x5r/" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "a8c20e01-7bdc-4e16-8b6c-e3b91bfba050") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "C_*") + (path "/c86d2fb1-8558-445d-8027-8a6773b76e38") + (sheetname "/") + (sheetfile "SmartFuseBox.kicad_sch") + (attr smd) + (fp_line + (start -0.261252 0.735) + (end 0.261252 0.735) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "faa23532-e098-4059-bbe6-09b84967d923") + ) + (fp_line + (start -0.261252 -0.735) + (end 0.261252 -0.735) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "43074184-8727-4a68-ae2f-49cb61616aa2") + ) + (fp_rect + (start -1.88 -0.98) + (end 1.88 0.98) + (stroke + (width 0.05) + (type solid) + ) + (fill no) + (layer "F.CrtYd") + (uuid "3d5315ef-f8d3-4d15-9755-7484e282c729") + ) + (fp_rect + (start -1 -0.625) + (end 1 0.625) + (stroke + (width 0.1) + (type solid) + ) + (fill no) + (layer "F.Fab") + (uuid "7b11e62e-0444-4dda-9fc7-fec4d3ccabad") + ) + (fp_text user "${REFERENCE}" + (at 0 0 0) + (layer "F.Fab") + (uuid "4e300359-f33c-4074-bddb-73225ff0a6f0") + (effects + (font + (size 0.5 0.5) + (thickness 0.08) + ) + ) + ) + (pad "1" smd roundrect + (at -1.0375 0 180) + (size 1.175 1.45) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.212766) + (net 81 "/12V_DC-Regulated") + (pintype "passive") + (uuid "f6666dac-63c9-4273-ac92-c93f3b319167") + ) + (pad "2" smd roundrect + (at 1.0375 0 180) + (size 1.175 1.45) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.212766) + (net 1 "GND") + (pintype "passive") + (uuid "48ce5225-aa75-4595-9917-c0f8a60e0986") + ) + (embedded_fonts no) + (model "${KICAD9_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.step" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Passives:R_0805_2012Metric_Pad1.20x1.40mm_HandSolder" + (placed yes) + (layer "F.Cu") + (uuid "07203520-9177-4197-99f5-db31585d204c") + (at 186.66 72.22 90) + (descr "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") + (tags "resistor handsolder") + (property "Reference" "R8" + (at 0 -1.65 90) + (layer "F.SilkS") + (hide yes) + (uuid "11e48d9a-e858-4499-8702-10a4c0eeadb0") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "1k" + (at 0 1.65 90) + (layer "F.Fab") + (uuid "fa93416a-65dc-4188-8153-4b0dec8d31f5") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "58f0916e-571f-4848-879b-b5b48dae15e7") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "resistor" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "ba930e15-a3c3-4064-bf3a-14074245d4ad") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Indicator" "+" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "48e02c41-0d20-4867-89a8-43d649912f1d") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Rating" "W" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "ae003a0f-f5fd-41fe-9615-7f56543793f0") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (path "/51a579db-200a-4e8b-bc56-10813350fbd5") + (sheetname "/") + (sheetfile "SmartFuseBox.kicad_sch") + (attr smd) + (fp_line + (start -0.227064 -0.735) + (end 0.227064 -0.735) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "db01143d-51b9-4be4-8c74-0550fe527eec") + ) + (fp_line + (start -0.227064 0.735) + (end 0.227064 0.735) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "43d147ff-40d8-4ffb-b51d-da6f7c7904f8") + ) + (fp_line + (start 1.85 -0.95) + (end 1.85 0.95) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "d5336598-1399-470c-8969-6cd58228a8e0") + ) + (fp_line + (start -1.85 -0.95) + (end 1.85 -0.95) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "573a7415-abac-4a22-9c7b-ab1dd9e6b2c5") + ) + (fp_line + (start 1.85 0.95) + (end -1.85 0.95) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "e960f5f3-905d-4bd1-8645-1a636f8f63a0") + ) + (fp_line + (start -1.85 0.95) + (end -1.85 -0.95) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "03203287-d3fa-43f5-bc66-84f91cc0b2b8") + ) + (fp_line + (start 1 -0.625) + (end 1 0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "723ea579-04d5-42f1-ad2c-a3c068692a17") + ) + (fp_line + (start -1 -0.625) + (end 1 -0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "8cfed1a1-1e4f-4578-ac33-8ab8529381d6") + ) + (fp_line + (start 1 0.625) + (end -1 0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "f5f6154b-bcf5-466b-b4e8-22ac8b3dbcb2") + ) + (fp_line + (start -1 0.625) + (end -1 -0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "3c5eb57b-1d9f-4a26-87c1-b0c21accab27") + ) + (fp_text user "${REFERENCE}" + (at 0 0 90) + (layer "F.Fab") + (uuid "5aad2d54-be81-4519-95e0-f57464573a0b") + (effects + (font + (size 0.5 0.5) + (thickness 0.08) + ) + ) + ) + (pad "1" smd roundrect + (at -1 0 270) + (size 1.2 1.4) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.208333) + (net 46 "Net-(R8-+)") + (pinfunction "+") + (pintype "passive") + (uuid "73ed9dc1-0d46-4cf9-b5e9-7237212e196c") + ) + (pad "2" smd roundrect + (at 1 0 270) + (size 1.2 1.4) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.208333) + (net 1 "GND") + (pinfunction "-") + (pintype "passive") + (uuid "6c421ad4-e7e2-485b-a72e-8776d7b5789c") + ) + (embedded_fonts no) + (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0805_2012Metric.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" + (placed yes) + (layer "F.Cu") + (uuid "092c7b1d-6008-4683-8fba-5ea0e26dce1f") + (at 144.2975 65.62 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 "Reference" "C27" + (at 0.0975 -1.68 0) + (layer "F.SilkS") + (uuid "bc833f62-2a8d-4c79-b803-94c925e9b27f") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "0.1uf" + (at 0 1.68 0) + (layer "F.Fab") + (uuid "1ba9cbaf-8fbc-4a7e-8a5c-f11e19b8f195") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "~" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "83e6cb48-d295-4226-8148-dc95756ca0c9") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "Unpolarized capacitor" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "13f6a902-1c7a-4d62-906e-df73de874132") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Link" "https://robu.in/product/cl21a106kofnnne-samsang-16v-10uf-x5r-%C2%B110-0805-multilayer-ceramic-capacitors-mlcc-smd-smt-rohs/?gad_source=1&gad_campaignid=17427802703&gbraid=0AAAAADvLFWeYd6KQJmaof5AqwX7G6G7RK&gclid=CjwKCAjw687NBhB4EiwAQ645dvOPfam1y5aCD1uRQvjlmer72tAuxihwH4D1G8BPdKh6SRiWARJldBoCKCYQAvD_BwE" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "f6b7b3a6-8683-48ce-9761-202932168bc0") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "C_*") + (path "/d4f556e9-4a16-4486-8eca-9e1e381cb7ca") + (sheetname "/") + (sheetfile "SmartFuseBox.kicad_sch") + (attr smd) + (fp_line + (start -0.261252 0.735) + (end 0.261252 0.735) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "39a59fd9-4fb8-4e4c-8ac7-3b57efd2a3ad") + ) + (fp_line + (start -0.261252 -0.735) + (end 0.261252 -0.735) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "c021e665-bc81-4b91-96cd-fcd171427cdf") + ) + (fp_rect + (start -1.88 -0.98) + (end 1.88 0.98) + (stroke + (width 0.05) + (type solid) + ) + (fill no) + (layer "F.CrtYd") + (uuid "11126645-a0e2-4ee8-aa9e-a65d82d2c491") + ) + (fp_rect + (start -1 -0.625) + (end 1 0.625) + (stroke + (width 0.1) + (type solid) + ) + (fill no) + (layer "F.Fab") + (uuid "5eaeac7b-0771-4bdd-98d2-8947743a74a8") + ) + (fp_text user "${REFERENCE}" + (at 0 0 0) + (layer "F.Fab") + (uuid "333d8e9a-acd3-48a2-a6c9-e82442e02558") + (effects + (font + (size 0.5 0.5) + (thickness 0.08) + ) + ) + ) + (pad "1" smd roundrect + (at -1.0375 0 180) + (size 1.175 1.45) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.212766) + (net 3 "VDD33") + (pintype "passive") + (uuid "498dee79-39ce-454d-85d6-c71c520af62b") + ) + (pad "2" smd roundrect + (at 1.0375 0 180) + (size 1.175 1.45) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.212766) + (net 1 "GND") + (pintype "passive") + (uuid "382294dd-365a-473d-843c-53f3807dbbce") + ) + (embedded_fonts no) + (model "${KICAD9_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.step" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Diode_SMD:D_SMA" + (layer "F.Cu") + (uuid "093381a9-406f-4b37-9565-b5f9fc9dff67") + (at 67.86 106.22 180) + (descr "Diode SMA (DO-214AC)") + (tags "Diode SMA (DO-214AC)") + (property "Reference" "D10" + (at 0 -2.5 0) + (layer "F.SilkS") + (uuid "dd222f4b-c7d5-48ce-8d5f-3554c735da10") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "SS54" + (at 0 2.6 0) + (layer "F.Fab") + (uuid "fef0ffbe-18a6-430b-92dd-9cabbcb4d935") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "https://www.laro.com.pl/pdf/ss56.pdf" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "8ee1b917-0cc7-4101-ada1-8f41a0a5521c") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "SMC Schottky diode, 40V, 5A, Alternate KiCAD Library" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "5141c021-76e9-49c9-8dc6-5de8c3fe68fd") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Link" "https://robu.in/product/ss54b-slkor-40v-550mv5a-5a-smbdo-214aa-schottky-diodes-rohs/?gad_source=1&gad_campaignid=17427802703&gbraid=0AAAAADvLFWeYd6KQJmaof5AqwX7G6G7RK&gclid=CjwKCAjw687NBhB4EiwAQ645dhFgK7QWTnrPqJBCFVMKkjTLbr6I5VJmPHffxaZ_pS_3KzeiLFGuoBoCukcQAvD_BwE" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "bfde7bea-57d0-42d3-a571-883760745ca0") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "TO-???* *_Diode_* *SingleDiode* D_*") + (path "/a528b69f-aa34-4e69-90ab-ba3915e2c73b") + (sheetname "/") + (sheetfile "SmartFuseBox.kicad_sch") + (attr smd) + (fp_line + (start -3.51 1.65) + (end 2 1.65) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "3feecd97-78ec-4de3-8a3f-309076763f9d") + ) + (fp_line + (start -3.51 -1.65) + (end 2 -1.65) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "fdb92b1f-87fe-439b-9d27-f15c844ff9aa") + ) + (fp_line + (start -3.51 -1.65) + (end -3.51 1.65) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "946d609a-af67-4ce7-b932-778b565e4e14") + ) + (fp_line + (start 3.5 1.75) + (end -3.5 1.75) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "dbca3645-6a6a-459c-adce-257d9cd16a5c") + ) + (fp_line + (start 3.5 -1.75) + (end 3.5 1.75) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "e36ac76b-38df-4d1b-9b4f-347d4189850b") + ) + (fp_line + (start -3.5 1.75) + (end -3.5 -1.75) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "fdf5efed-6f89-4da0-9339-0a782b62f82c") + ) + (fp_line + (start -3.5 -1.75) + (end 3.5 -1.75) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "3892acfb-8e12-49c6-bd2b-582aa47ad6f6") + ) + (fp_line + (start 2.3 1.5) + (end -2.3 1.5) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "27dc0e7b-1ef9-4807-9f97-0781fcfbc53b") + ) + (fp_line + (start 2.3 -1.5) + (end 2.3 1.5) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "d6114914-cc22-4019-bbc8-b630ddefac32") + ) + (fp_line + (start 2.3 -1.5) + (end -2.3 -1.5) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "a9b0a07e-fbd8-486c-9a2d-07a8ee29abc8") + ) + (fp_line + (start 0.50118 0.75032) + (end 0.50118 -0.79908) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "9fd72c50-cc44-4e41-8c3a-1344d65484ce") + ) + (fp_line + (start 0.50118 0.00102) + (end 1.4994 0.00102) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "fb5caebf-b9c5-4648-8e89-64450980cba1") + ) + (fp_line + (start -0.64944 0.00102) + (end 0.50118 0.75032) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "43c3ede1-e5e1-454f-85cd-48344c142a51") + ) + (fp_line + (start -0.64944 0.00102) + (end 0.50118 -0.79908) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "682f7f60-6e93-47d7-a32c-7b62c2b96717") + ) + (fp_line + (start -0.64944 0.00102) + (end -1.55114 0.00102) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "1d8a924f-6063-4992-a2fe-19dd2140bf07") + ) + (fp_line + (start -0.64944 -0.79908) + (end -0.64944 0.80112) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "7dfbab6f-6e43-493d-a528-38fdf2fd28bf") + ) + (fp_line + (start -2.3 1.5) + (end -2.3 -1.5) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "c87acd39-5f5c-42ec-95cf-4ef619fc094e") + ) + (fp_text user "${REFERENCE}" + (at 0 -2.5 0) + (layer "F.Fab") + (uuid "4c611cf0-f690-4fae-b14b-402d74465b95") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (pad "1" smd roundrect + (at -2 0 180) + (size 2.5 1.8) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.1388888889) + (net 81 "/12V_DC-Regulated") + (pinfunction "K") + (pintype "passive") + (uuid "d54d226e-a85c-4a80-8d18-bec12ec1c2ee") + ) + (pad "2" smd roundrect + (at 2 0 180) + (size 2.5 1.8) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.1388888889) + (net 89 "R-8") + (pinfunction "A") + (pintype "passive") + (uuid "caf09c31-e62b-480a-992c-f6db91dc4847") + ) + (embedded_fonts no) + (model "${KICAD9_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SMA.step" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Diode_SMD:D_SMA" + (layer "F.Cu") + (uuid "09ba9b64-f26b-48e8-bc3d-85006e9981a5") + (at 184.2 127.2 -90) + (descr "Diode SMA (DO-214AC)") + (tags "Diode SMA (DO-214AC)") + (property "Reference" "D1" + (at 0 -2.5 90) + (layer "F.SilkS") + (uuid "638aca69-ea45-41b2-9079-e21173dbbde4") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "SS54" + (at 0 2.6 90) + (layer "F.Fab") + (uuid "92627a62-e113-4999-b799-a779ca68411d") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "https://www.laro.com.pl/pdf/ss56.pdf" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "2f0e1eeb-b1f8-40ca-b4bf-5c525e3e3d15") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "SMC Schottky diode, 40V, 5A, Alternate KiCAD Library" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "a26eac32-7774-459b-9249-895ee5226b90") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Link" "https://robu.in/product/ss54b-slkor-40v-550mv5a-5a-smbdo-214aa-schottky-diodes-rohs/?gad_source=1&gad_campaignid=17427802703&gbraid=0AAAAADvLFWeYd6KQJmaof5AqwX7G6G7RK&gclid=CjwKCAjw687NBhB4EiwAQ645dhFgK7QWTnrPqJBCFVMKkjTLbr6I5VJmPHffxaZ_pS_3KzeiLFGuoBoCukcQAvD_BwE" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "8262e147-707f-44c3-b20d-85995638d10f") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "TO-???* *_Diode_* *SingleDiode* D_*") + (path "/7cc03f7f-60b8-4987-baa1-ecbe3080621d") + (sheetname "/") + (sheetfile "SmartFuseBox.kicad_sch") + (attr smd) + (fp_line + (start -3.51 1.65) + (end 2 1.65) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "e2f7f3df-b97a-445e-92d3-1d0edba9a709") + ) + (fp_line + (start -3.51 -1.65) + (end -3.51 1.65) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "69f98397-af6c-4e93-93c7-88d6b6434480") + ) + (fp_line + (start -3.51 -1.65) + (end 2 -1.65) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "b9a75dae-579a-4881-a95e-5aff58541cb0") + ) + (fp_line + (start -3.5 1.75) + (end -3.5 -1.75) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "95425961-b963-4079-93f3-55b71f065bd5") + ) + (fp_line + (start 3.5 1.75) + (end -3.5 1.75) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "e0e20a54-96da-464a-b6ca-abb424ce0788") + ) + (fp_line + (start -3.5 -1.75) + (end 3.5 -1.75) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "d4e97372-1170-4188-8465-0dac021b7746") + ) + (fp_line + (start 3.5 -1.75) + (end 3.5 1.75) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "7604db70-3d0f-4864-8607-944694155531") + ) + (fp_line + (start -2.3 1.5) + (end -2.3 -1.5) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "05823f57-bf93-4593-9128-8ad88fa8f28a") + ) + (fp_line + (start 2.3 1.5) + (end -2.3 1.5) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "028a46fc-643f-4d5d-b843-35f070938f61") + ) + (fp_line + (start 0.50118 0.75032) + (end 0.50118 -0.79908) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "fe530c5c-e2d2-491a-80b3-5a14bfce37b8") + ) + (fp_line + (start -0.64944 0.00102) + (end 0.50118 0.75032) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "4a6251b1-850e-4b60-a27b-d1177ed214f4") + ) + (fp_line + (start -0.64944 0.00102) + (end -1.55114 0.00102) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "228e4d56-a9f2-4322-9d7c-6b0ee891f174") + ) + (fp_line + (start -0.64944 0.00102) + (end 0.50118 -0.79908) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "e548af50-b91c-472b-9843-2d51e6a82661") + ) + (fp_line + (start 0.50118 0.00102) + (end 1.4994 0.00102) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "a1b371fc-2304-441b-afa1-ebe494523cdd") + ) + (fp_line + (start -0.64944 -0.79908) + (end -0.64944 0.80112) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "ffeeedc5-ad86-4193-a7b4-1706063eb2a5") + ) + (fp_line + (start 2.3 -1.5) + (end 2.3 1.5) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "4915e65c-eba0-4146-b24a-931ba28b3633") + ) + (fp_line + (start 2.3 -1.5) + (end -2.3 -1.5) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "dcc1aae5-c1a3-4b11-b6b0-6ca912496ae8") + ) + (fp_text user "${REFERENCE}" + (at 0 -2.5 90) + (layer "F.Fab") + (uuid "10fe4d99-a485-4f8f-aaa0-4f2cbbdf1071") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (pad "1" smd roundrect + (at -2 0 270) + (size 2.5 1.8) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.1388888889) + (net 2 "5V") + (pinfunction "K") + (pintype "passive") + (uuid "4fb26ebe-5d4d-426e-b570-6adb05e5c11c") + ) + (pad "2" smd roundrect + (at 2 0 270) + (size 2.5 1.8) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.1388888889) + (net 69 "Net-(D1-A)") + (pinfunction "A") + (pintype "passive") + (uuid "c2cd32a2-c9b2-4611-9b3c-10c70f72b489") + ) + (embedded_fonts no) + (model "${KICAD9_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SMA.step" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Connector_JST:JST_PH_S4B-PH-K_1x04_P2.00mm_Horizontal" + (placed yes) + (layer "F.Cu") + (uuid "0dc99739-3a42-432c-997a-09e0ddaf8297") + (at 152.86 133.17) + (descr "JST PH series connector, S4B-PH-K (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator") + (tags "connector JST PH horizontal") + (property "Reference" "J14" + (at 9.34 0.43 90) + (layer "F.SilkS") + (uuid "b12bb66f-6e63-493f-b780-cf3a4bbb17a8") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "Conn_01x04_Socket" + (at 3 7.45 0) + (layer "F.Fab") + (uuid "489b1e8e-31b1-48a1-9e32-1f015bbd4559") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "~" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "88361852-c28c-40dc-ad81-c0d6b9c2dcb2") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "Generic connector, single row, 01x04, script generated" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "262ed82a-a5cc-4649-b308-822f8bbfff56") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "Connector*:*_1x??_*") + (path "/17e957a8-ab96-409f-9694-96adf8de3d18") + (sheetname "/") + (sheetfile "SmartFuseBox.kicad_sch") + (attr through_hole) + (fp_line + (start -2.06 -1.46) + (end -2.06 6.36) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "36a9e017-4192-4e1f-88b6-885de8c71351") + ) + (fp_line + (start -2.06 0.14) + (end -1.14 0.14) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "5a0311de-a2d8-4d34-92f3-b98995ca9bd6") + ) + (fp_line + (start -2.06 6.36) + (end 8.06 6.36) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "cdd0fb24-9ebb-48e9-8199-2e898e26d3ba") + ) + (fp_line + (start -1.14 -1.46) + (end -2.06 -1.46) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "de263d18-8b62-4a80-b817-2e99cb54b5a5") + ) + (fp_line + (start -1.14 0.14) + (end -1.14 -1.46) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "0fde2ec9-7f2c-4c08-8f22-0bf26d1ba199") + ) + (fp_line + (start -0.86 0.14) + (end -1.14 0.14) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "b79d6971-9127-43f7-8ffb-338fa4c6c55f") + ) + (fp_line + (start -0.86 0.14) + (end -0.86 -1.075) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "1d64cbad-3e32-451e-8bfb-a9ef2fe76836") + ) + (fp_line + (start -0.8 4.1) + (end -0.8 6.36) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "67d742f6-7ba0-45f5-99e9-a3ed2af26f1a") + ) + (fp_line + (start -0.3 4.1) + (end -0.3 6.36) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "986a564f-5939-4463-8bc2-c713928b5e99") + ) + (fp_line + (start 0.5 2) + (end 5.5 2) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "ffee526d-6f8c-4b7b-a64e-b7a97c0c6017") + ) + (fp_line + (start 0.5 6.36) + (end 0.5 2) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "4ed3361b-ff76-4122-b5e1-5810e9bda07a") + ) + (fp_line + (start 5.5 2) + (end 5.5 6.36) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "70a34999-e563-4c40-abca-f77a93e06d96") + ) + (fp_line + (start 7.14 -1.46) + (end 7.14 0.14) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "5c68513e-1330-41e2-9107-a0caa6c4d6bf") + ) + (fp_line + (start 7.14 0.14) + (end 6.86 0.14) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "65e86756-f9da-408c-9e7a-4d61df00c2b2") + ) + (fp_line + (start 8.06 -1.46) + (end 7.14 -1.46) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "65af17b5-4eec-458c-ade5-10f1c6f70bdb") + ) + (fp_line + (start 8.06 0.14) + (end 7.14 0.14) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "8a9ed894-96cc-4342-bef5-b02aa9d2f5da") + ) + (fp_line + (start 8.06 6.36) + (end 8.06 -1.46) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "afc7f340-cd32-4bf3-ba14-a683935241d6") + ) + (fp_rect + (start -1.3 2.5) + (end -0.3 4.1) + (stroke + (width 0.12) + (type solid) + ) + (fill no) + (layer "F.SilkS") + (uuid "f6dc429b-5af2-46eb-a57c-e69362c4adbf") + ) + (fp_rect + (start 6.3 2.5) + (end 7.3 4.1) + (stroke + (width 0.12) + (type solid) + ) + (fill no) + (layer "F.SilkS") + (uuid "7cf56a99-fa97-4844-b616-ebc4c09b163a") + ) + (fp_rect + (start -2.45 -1.85) + (end 8.45 6.75) + (stroke + (width 0.05) + (type solid) + ) + (fill no) + (layer "F.CrtYd") + (uuid "19a52b2a-e59a-48c8-b922-ccf12d64cd7e") + ) + (fp_line + (start -1.95 -1.35) + (end -1.95 6.25) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "c0088d96-24fc-4c62-8d29-727b8be5a7f3") + ) + (fp_line + (start -1.95 6.25) + (end 7.95 6.25) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "8afbd420-ce2b-4316-ba41-9e675fdb1c2d") + ) + (fp_line + (start -1.25 -1.35) + (end -1.95 -1.35) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "76c7abdd-078b-4613-bcbf-e9de623a064d") + ) + (fp_line + (start -1.25 0.25) + (end -1.25 -1.35) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "f97f76ed-dc24-4182-8468-7f41e976098b") + ) + (fp_line + (start -0.5 1.375) + (end 0.5 1.375) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "3f13bbc7-0b85-4115-81e4-56171fd3981d") + ) + (fp_line + (start 0 0.875) + (end -0.5 1.375) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "3168fcbb-ad40-4b46-a820-0f726bfdf3de") + ) + (fp_line + (start 0.5 1.375) + (end 0 0.875) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "2540133d-9b64-4de1-972c-2bb4ff34868b") + ) + (fp_line + (start 7.25 -1.35) + (end 7.25 0.25) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "c6e33bb8-fcbd-47c5-998b-0707739be27c") + ) + (fp_line + (start 7.25 0.25) + (end -1.25 0.25) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "6d814edc-728a-4f4d-960b-0ea8e041ab40") + ) + (fp_line + (start 7.95 -1.35) + (end 7.25 -1.35) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "64ec9e72-f943-4186-8a25-4f7d408f660d") + ) + (fp_line + (start 7.95 6.25) + (end 7.95 -1.35) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "254ed2b6-cba7-449b-a06e-a5bfb08b14bb") + ) + (fp_text user "${REFERENCE}" + (at 3 2.5 0) + (layer "F.Fab") + (uuid "6f84084a-4cff-4186-a04d-df8aa33061fc") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (pad "1" thru_hole roundrect + (at 0 0) + (size 1.2 1.75) + (drill 0.75) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (roundrect_rratio 0.208333) + (net 34 "SIG_A1") + (pinfunction "Pin_1") + (pintype "passive") + (uuid "5583d415-16b9-4e13-9908-6f8f0428e66d") + ) + (pad "2" thru_hole oval + (at 2 0) + (size 1.2 1.75) + (drill 0.75) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 35 "SIG_A2") + (pinfunction "Pin_2") + (pintype "passive") + (uuid "b5140f96-8202-4a43-a064-df97b28b8c43") + ) + (pad "3" thru_hole oval + (at 4 0) + (size 1.2 1.75) + (drill 0.75) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 3 "VDD33") + (pinfunction "Pin_3") + (pintype "passive") + (uuid "5bf1f2ef-9f2a-49c9-9306-63483834d1be") + ) + (pad "4" thru_hole oval + (at 6 0) + (size 1.2 1.75) + (drill 0.75) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 1 "GND") + (pinfunction "Pin_4") + (pintype "passive") + (uuid "fa6fd57c-0740-41eb-8667-a1ce35e97068") + ) + (embedded_fonts no) + (model "${KICAD9_3DMODEL_DIR}/Connector_JST.3dshapes/JST_PH_S4B-PH-K_1x04_P2.00mm_Horizontal.step" + (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" + (placed yes) + (layer "F.Cu") + (uuid "11cb8f64-adc4-4c7f-9609-ceb6986d8f67") + (at 189.86 61.9075 -90) + (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 "Reference" "C16" + (at 0.0375 2.2 90) + (layer "F.SilkS") + (uuid "41e75070-1117-4ec2-bfaa-823daae1bfab") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "0.1uf" + (at 0 1.68 90) + (layer "F.Fab") + (uuid "83caee1f-908d-4861-8a0e-6c7f8c6567f4") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "~" + (at 0 0 90) + (layer "F.Fab") + (hide yes) + (uuid "ba51ecd0-147a-437a-8053-1235699a8cf8") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "Unpolarized capacitor" + (at 0 0 90) + (layer "F.Fab") + (hide yes) + (uuid "934756a7-1e99-4600-8215-acfc04624981") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Link" "https://robu.in/product/cl21a106kofnnne-samsang-16v-10uf-x5r-%C2%B110-0805-multilayer-ceramic-capacitors-mlcc-smd-smt-rohs/?gad_source=1&gad_campaignid=17427802703&gbraid=0AAAAADvLFWeYd6KQJmaof5AqwX7G6G7RK&gclid=CjwKCAjw687NBhB4EiwAQ645dvOPfam1y5aCD1uRQvjlmer72tAuxihwH4D1G8BPdKh6SRiWARJldBoCKCYQAvD_BwE" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "3f1fe472-5cd3-400e-86d8-cdb122211312") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "C_*") + (path "/a1820d0b-6f5f-46c6-9913-cb9c461b3662") + (sheetname "/") + (sheetfile "SmartFuseBox.kicad_sch") + (attr smd) + (fp_line + (start -0.261252 0.735) + (end 0.261252 0.735) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "c646936f-c889-4f1f-b5a2-671e2e5e887d") + ) + (fp_line + (start -0.261252 -0.735) + (end 0.261252 -0.735) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "2c0f18ca-2ae0-4740-8818-c35b161a6cab") + ) + (fp_rect + (start -1.88 -0.98) + (end 1.88 0.98) + (stroke + (width 0.05) + (type solid) + ) + (fill no) + (layer "F.CrtYd") + (uuid "669d7a45-015d-4229-acb0-866035a003b0") + ) + (fp_rect + (start -1 -0.625) + (end 1 0.625) + (stroke + (width 0.1) + (type solid) + ) + (fill no) + (layer "F.Fab") + (uuid "8991df4b-c858-47db-b61f-d7b282b0c486") + ) + (fp_text user "${REFERENCE}" + (at 0 0 90) + (layer "F.Fab") + (uuid "81882ac8-052f-4c73-bd84-d5980330acbf") + (effects + (font + (size 0.5 0.5) + (thickness 0.08) + ) + ) + ) + (pad "1" smd roundrect + (at -1.0375 0 270) + (size 1.175 1.45) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.212766) + (net 2 "5V") + (pintype "passive") + (uuid "a4e0fb10-a5b8-42aa-91e2-709ef13b8ea2") + ) + (pad "2" smd roundrect + (at 1.0375 0 270) + (size 1.175 1.45) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.212766) + (net 1 "GND") + (pintype "passive") + (uuid "31a9379b-bde0-41c3-b54a-c9b643dfdecd") + ) + (embedded_fonts no) + (model "${KICAD9_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.step" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Relay_THT:Relay_SPDT_SANYOU_SRD_Series_Form_C" + (placed yes) + (layer "F.Cu") + (uuid "169bc62d-8bd5-4b24-8ba8-09335d4704ef") + (at 90.993333 110.57 -90) + (descr "relay Sanyou SRD series Form C http://www.sanyourelay.ca/public/products/pdf/SRD.pdf") + (tags "relay Sanyu SRD form C") + (property "Reference" "K7" + (at 9.3 -8.55 90) + (layer "F.SilkS") + (uuid "afca3135-5a38-4f21-a10a-c5849588d620") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "SRD-12VDC-SL-C" + (at 8 -9.6 90) + (layer "F.Fab") + (uuid "7ac80a32-7431-487e-bd86-668e428684be") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "http://www.sanyourelay.ca/public/products/pdf/SRD.pdf" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "277a9204-72af-429a-8ee4-29637155af53") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "Sanyo SRD relay, Single Pole Miniature Power Relay," + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "48b066f9-67ef-46cb-bd5b-92f877dc42fe") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Link" "https://robu.in/product/1-month-warranty-1027/" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "5bdf1153-e67a-4ab6-88ed-0a7166e02d82") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "Relay*SPDT*SANYOU*SRD*Series*Form*C*") + (path "/3ed33c21-b03f-4af6-9932-8cbe25b0afd8") + (sheetname "/") + (sheetfile "SmartFuseBox.kicad_sch") + (attr through_hole) + (fp_line + (start 18.4 7.8) + (end -1.4 7.8) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "18fc2a7c-d327-45de-ac0d-bcceaa41ad2a") + ) + (fp_line + (start 3.55 6.05) + (end 6.05 6.05) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "ce7129fb-8746-4516-be47-725c56653abe") + ) + (fp_line + (start 14.15 4.2) + (end 14.15 1.75) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "e902c5b8-f4ef-4384-ab06-cbf758cb857d") + ) + (fp_line + (start 9.45 3.65) + (end 2.65 3.65) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "0888bcd8-3a28-4345-9119-40ca6c9f6763") + ) + (fp_line + (start 4.05 1.85) + (end 4.05 -1.75) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "80f539d8-4074-49d4-87d5-74945a8b4acf") + ) + (fp_line + (start 6.05 1.85) + (end 6.05 6.05) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "0c7b6cb0-7fe9-4f9d-82fb-6224ee76c6a5") + ) + (fp_line + (start 8.05 1.85) + (end 4.05 1.85) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "d46b20de-a032-48ee-b74f-b08ca8e61ac0") + ) + (fp_line + (start 8.05 1.85) + (end 4.05 -1.75) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "89105aa5-0d28-40ba-acaa-d599f10fdfb3") + ) + (fp_line + (start -1.4 1.2) + (end -1.4 7.8) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "e8032611-3656-4737-a3ee-2daa8f51e82e") + ) + (fp_line + (start 2.65 0.05) + (end 2.65 3.65) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "a7c89482-ec4c-4b9e-bd00-5125da84f4d8") + ) + (fp_line + (start 2.65 0.05) + (end 1.85 0.05) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "22d73ff0-c4b9-45ec-83cd-769687d09f32") + ) + (fp_line + (start 9.45 0.05) + (end 9.45 3.65) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "8b55981a-8d40-420f-b868-db7e7aadbf62") + ) + (fp_line + (start 9.45 0.05) + (end 10.95 0.05) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "0a34b4c3-55f4-4911-a773-4ff8bf7208ca") + ) + (fp_line + (start 10.95 0.05) + (end 15.55 -2.45) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "d0d2dd3c-7b92-436c-8dbe-3c4cfb691e95") + ) + (fp_line + (start 4.05 -1.75) + (end 8.05 -1.75) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "643ddb86-fbde-4a96-b334-f7f866a322b4") + ) + (fp_line + (start 8.05 -1.75) + (end 8.05 1.85) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "818e6860-c221-4a5a-814e-35d3fcabbaf3") + ) + (fp_line + (start 14.15 -4.2) + (end 14.15 -1.7) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "ebafe8fa-ad14-4515-afe0-eba91a654256") + ) + (fp_line + (start 6.05 -5.95) + (end 6.05 -1.75) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "dc41da6e-c06e-4784-a9a5-38f375ff7480") + ) + (fp_line + (start 6.05 -5.95) + (end 3.55 -5.95) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "87bd3279-67c3-4394-b187-7102089d9041") + ) + (fp_line + (start -1.4 -7.8) + (end -1.4 -1.2) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "86d1a759-323a-4080-a058-46c4dc69474c") + ) + (fp_line + (start -1.4 -7.8) + (end 18.4 -7.8) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "070998d8-dd9e-4ebd-80fc-8b75e0f42294") + ) + (fp_line + (start 18.4 -7.8) + (end 18.4 7.8) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "4ee874ea-b1d8-447f-8163-0838141ffe82") + ) + (fp_line + (start -1.55 7.95) + (end 18.55 7.95) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "70f3d01e-82fe-442a-85d8-2cc87f11d3a2") + ) + (fp_line + (start -1.55 7.95) + (end -1.55 -7.95) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "7d569bcc-c63a-4322-8b83-a96792cb6228") + ) + (fp_line + (start 18.55 -7.95) + (end 18.55 7.95) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "d83edf14-d70f-41eb-8f3d-9e75e2aea403") + ) + (fp_line + (start 18.55 -7.95) + (end -1.55 -7.95) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "6a40733c-dd31-4829-b058-cb555d398737") + ) + (fp_line + (start -1.3 7.7) + (end -1.3 -7.7) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.Fab") + (uuid "3668bf0d-b470-47e2-b211-251b859b548c") + ) + (fp_line + (start 18.3 7.7) + (end -1.3 7.7) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.Fab") + (uuid "1262d92c-1dcc-401e-91c1-10b340f2b1d0") + ) + (fp_line + (start -1.3 -7.7) + (end 18.3 -7.7) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.Fab") + (uuid "e0b42f2b-065b-4387-b045-e934e2b6590e") + ) + (fp_line + (start 18.3 -7.7) + (end 18.3 7.7) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.Fab") + (uuid "580e733c-04c7-4fc9-9109-b306b09c4e21") + ) + (fp_text user "1" + (at 0 -2.3 90) + (layer "F.Fab") + (uuid "4881586b-099f-4e81-80b7-0518605e3d7f") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (fp_text user "${REFERENCE}" + (at 7.1 0.025 90) + (layer "F.Fab") + (uuid "b599522c-2031-42bc-a30a-e73ed930c85e") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (pad "1" thru_hole circle + (at 0 0) + (size 3 3) + (drill 1.3) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 30 "COM_7") + (pintype "passive") + (uuid "72d1ad39-a8fe-4292-bf22-734d5d386e79") + ) + (pad "2" thru_hole circle + (at 1.95 6.05) + (size 2.5 2.5) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 88 "R-7") + (pintype "passive") + (uuid "cf84e9b2-4479-4fe3-a460-781aefb4c9fb") + ) + (pad "3" thru_hole circle + (at 14.15 6.05) + (size 3 3) + (drill 1.3) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 28 "NO_7") + (pintype "passive") + (uuid "588a1802-0467-47b8-9243-5cd2be4b617b") + ) + (pad "4" thru_hole circle + (at 14.2 -6) + (size 3 3) + (drill 1.3) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 29 "NC_7") + (pintype "passive") + (uuid "6e39ad26-8974-4bfa-8aac-cbce7e3cd1ff") + ) + (pad "5" thru_hole circle + (at 1.95 -5.95) + (size 2.5 2.5) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 81 "/12V_DC-Regulated") + (pintype "passive") + (uuid "abb2b625-4dd1-44a0-9fef-ed626f59536d") + ) + (embedded_fonts no) + (model "${KICAD9_3DMODEL_DIR}/Relay_THT.3dshapes/Relay_SPDT_SANYOU_SRD_Series_Form_C.step" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Capacitor_SMD:CP_Elec_6.3x7.7" + (placed yes) + (layer "F.Cu") + (uuid "177d2825-e5bc-4332-9075-d9719e9b03f0") + (at 190.26 94.82) + (descr "SMD capacitor, aluminum electrolytic, Nichicon, 6.3x7.7mm") + (tags "capacitor electrolytic") + (property "Reference" "C3" + (at 0 -4.35 0) + (layer "F.SilkS") + (uuid "d11f3e25-a09e-41ca-a785-7188a2e60dd1") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "680uf" + (at 0 4.35 0) + (layer "F.Fab") + (uuid "c9b7af49-0f0d-4409-bba8-019be5110776") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "~" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "02d1a625-1933-467b-804d-e5e4e8ed568e") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "Polarized capacitor" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "d162a03d-1e28-4779-8d0f-f73a16d3645e") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Link" "https://robu.in/product/efft6r3ada681m0677-follon-680uf-6-3v-%C2%B120-smdd6-3xl7-7mm-aluminum-electrolytic-capacitors-smd-rohs/" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "87d124ff-37bb-42c6-ae70-a86e8e8055f7") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "CP_*") + (path "/9712f66c-ff84-402d-bdbd-ce1b95536963") + (sheetname "/") + (sheetfile "SmartFuseBox.kicad_sch") + (attr smd) + (fp_line + (start -4.4375 -1.8475) + (end -3.65 -1.8475) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "6d7d540b-7c93-490c-a278-a970b98652df") + ) + (fp_line + (start -4.04375 -2.24125) + (end -4.04375 -1.45375) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "09f70cd0-0ecc-46f5-858c-002b5604ce75") + ) + (fp_line + (start -3.41 -2.345563) + (end -3.41 -1.06) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "791b5ef0-bd9a-445d-921a-e6982aa159ae") + ) + (fp_line + (start -3.41 -2.345563) + (end -2.345563 -3.41) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "f44422fd-33d3-406c-875b-d523203f0bab") + ) + (fp_line + (start -3.41 2.345563) + (end -3.41 1.06) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "dc11b770-44e3-4f0f-9fbc-353bd0ccaa67") + ) + (fp_line + (start -3.41 2.345563) + (end -2.345563 3.41) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "28536689-6d3f-449a-8cb0-b26d6bf234d3") + ) + (fp_line + (start -2.345563 -3.41) + (end 3.41 -3.41) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "2f9b38fd-6931-4055-95c6-b901c7efd2a7") + ) + (fp_line + (start -2.345563 3.41) + (end 3.41 3.41) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "14179bd9-dd8e-4e6a-bd37-48c3c193146e") + ) + (fp_line + (start 3.41 -3.41) + (end 3.41 -1.06) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "e9cf74b0-b2c8-475a-a754-5d28ca554d87") + ) + (fp_line + (start 3.41 3.41) + (end 3.41 1.06) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "bbec1781-184b-4d07-a5a1-47a7021214b4") + ) + (fp_line + (start -4.7 -1.05) + (end -4.7 1.05) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "46622e98-1f2b-4355-bf1c-a012d24c7c72") + ) + (fp_line + (start -4.7 1.05) + (end -3.55 1.05) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "7393c10c-76b2-42ec-8851-ce49be6d5489") + ) + (fp_line + (start -3.55 -2.4) + (end -3.55 -1.05) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "d4456497-b95e-454d-baf4-862f0d1c10e6") + ) + (fp_line + (start -3.55 -2.4) + (end -2.4 -3.55) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "4780f4d1-2738-4274-9972-e2c7c9c51694") + ) + (fp_line + (start -3.55 -1.05) + (end -4.7 -1.05) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "1a266c72-9432-46a3-9409-9766e953ac8e") + ) + (fp_line + (start -3.55 1.05) + (end -3.55 2.4) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "1359aa68-3fb4-4f4f-a4e4-89c00342ea0b") + ) + (fp_line + (start -3.55 2.4) + (end -2.4 3.55) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "6bb45d21-e393-47d8-be61-bb56b2f54abc") + ) + (fp_line + (start -2.4 -3.55) + (end 3.55 -3.55) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "79c1bdb1-cb7c-4a56-9413-0f5e01d5ae26") + ) + (fp_line + (start -2.4 3.55) + (end 3.55 3.55) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "73e6cf45-8d67-428b-8f19-ebf6cdf9bbad") + ) + (fp_line + (start 3.55 -3.55) + (end 3.55 -1.05) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "6e7da84f-43e4-4384-819d-5640203f4700") + ) + (fp_line + (start 3.55 -1.05) + (end 4.7 -1.05) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "fdcc1593-4bda-47ff-ab3c-c61620fb5d75") + ) + (fp_line + (start 3.55 1.05) + (end 3.55 3.55) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "412d6390-5b38-4052-9b4d-401d97831c74") + ) + (fp_line + (start 4.7 -1.05) + (end 4.7 1.05) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "031e5683-703d-494b-84d5-de78a18c4f8b") + ) + (fp_line + (start 4.7 1.05) + (end 3.55 1.05) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "5299879d-540b-4830-94ac-e4f9572af1e6") + ) + (fp_line + (start -3.3 -2.3) + (end -3.3 2.3) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "f9fc4465-0419-42eb-bc23-4cd72ba41a72") + ) + (fp_line + (start -3.3 -2.3) + (end -2.3 -3.3) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "8aa712f0-4a8f-4007-a5df-fd4b888923bf") + ) + (fp_line + (start -3.3 2.3) + (end -2.3 3.3) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "c2b13b55-6963-4a95-88b6-fb63eab424cc") + ) + (fp_line + (start -2.704838 -1.33) + (end -2.074838 -1.33) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "f2ae4771-e46b-4906-bb53-c0f5b50a14a2") + ) + (fp_line + (start -2.389838 -1.645) + (end -2.389838 -1.015) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "5203c7eb-0c02-4820-98d9-b61af97d9dc1") + ) + (fp_line + (start -2.3 -3.3) + (end 3.3 -3.3) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "c3549b66-c60f-42f7-8ff2-7e1d42cbd3d0") + ) + (fp_line + (start -2.3 3.3) + (end 3.3 3.3) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "6ec003fd-3e9b-4f69-b323-281781c3ac66") + ) + (fp_line + (start 3.3 -3.3) + (end 3.3 3.3) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "f583adaf-c1f2-4abc-82ff-09b5ea86abbb") + ) + (fp_circle + (center 0 0) + (end 3.15 0) + (stroke + (width 0.1) + (type solid) + ) + (fill no) + (layer "F.Fab") + (uuid "2d8909fe-4c59-4657-b049-05bfb5bff2c9") + ) + (fp_text user "${REFERENCE}" + (at 0 0 0) + (layer "F.Fab") + (uuid "eb1eec8b-d809-43ac-b24d-c5d883d24a0b") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (pad "1" smd roundrect + (at -2.7 0) + (size 3.5 1.6) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.15625) + (net 81 "/12V_DC-Regulated") + (pintype "passive") + (uuid "7296d28b-ee10-4bd2-ab7a-dc421d393a67") + ) + (pad "2" smd roundrect + (at 2.7 0) + (size 3.5 1.6) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.15625) + (net 1 "GND") + (pintype "passive") + (uuid "e88b7938-95b6-47d7-b61f-89ebf180a435") + ) + (embedded_fonts no) + (model "${KICAD9_3DMODEL_DIR}/Capacitor_SMD.3dshapes/CP_Elec_6.3x7.7.step" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "PCM_4ms_Package_SOT:SOT23-3_PO123" + (placed yes) + (layer "F.Cu") + (uuid "1a0fdb05-c67f-4a09-9e3f-74404975d22c") + (at 190.61178 66.37 -90) + (descr "SOT-23, Standard") + (tags "SOT-23") + (property "Reference" "Q2" + (at 0 -2.5 90) + (layer "F.SilkS") + (uuid "9f90bffc-7fb1-412f-b1cf-591704a86fbe") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "NPN" + (at 0 2.5 90) + (layer "F.SilkS") + (uuid "0557bcd9-dc46-4495-9330-af9160d3b606") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "https://ngspice.sourceforge.io/docs/ngspice-html-manual/manual.xhtml#cha_BJTs" + (at 0 0 90) + (layer "F.Fab") + (hide yes) + (uuid "d1b41d4d-fdae-449b-a623-84f0756e5bfe") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "Bipolar transistor symbol for simulation only, substrate tied to the emitter" + (at 0 0 90) + (layer "F.Fab") + (hide yes) + (uuid "6975af3e-a42d-48a6-9a00-8174b15006e6") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Sim.Device" "NPN" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "5b40e248-e29f-40af-b8ae-633ed6371d4d") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Sim.Type" "GUMMELPOON" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "99caab50-b102-4b67-84f0-0dd37ba678d9") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Sim.Pins" "1=C 2=B 3=E" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "46627ce6-4a9c-4338-bb7c-ef7a8d06e094") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Link" "https://robu.in/product/bc847-smd-transistor-pack-of-20/#tab-product_download_66939_tab" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "8bb7bf9a-3cc3-4c8e-a779-ff980e81c965") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (path "/ead1e8e8-134e-416d-a596-6795c77d275f") + (sheetname "/") + (sheetfile "SmartFuseBox.kicad_sch") + (attr smd) + (fp_line + (start -1.49982 0.0508) + (end -1.49982 -0.65024) + (stroke + (width 0.15) + (type solid) + ) + (layer "F.SilkS") + (uuid "09ec3235-71b1-43b4-97b8-d568ac15078e") + ) + (fp_line + (start -1.49982 -0.65024) + (end -1.2509 -0.65024) + (stroke + (width 0.15) + (type solid) + ) + (layer "F.SilkS") + (uuid "56eda639-2963-4872-8e59-7c37039774db") + ) + (fp_line + (start 1.29916 -0.65024) + (end 1.2509 -0.65024) + (stroke + (width 0.15) + (type solid) + ) + (layer "F.SilkS") + (uuid "c3788fdb-0a77-43a5-bce0-478e606aa8a9") + ) + (fp_line + (start 1.29916 -0.65024) + (end 1.49982 -0.65024) + (stroke + (width 0.15) + (type solid) + ) + (layer "F.SilkS") + (uuid "865c5fea-0fda-4591-b8d3-b9f75dad4ac1") + ) + (fp_line + (start 1.49982 -0.65024) + (end 1.49982 0.0508) + (stroke + (width 0.15) + (type solid) + ) + (layer "F.SilkS") + (uuid "4434ff34-9950-492e-9040-69d516cf057a") + ) + (fp_line + (start -1.75 1.65) + (end -1.75 -0.9) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "a41fe3d4-6fec-45ad-927e-d4861817aa11") + ) + (fp_line + (start 1.75 1.65) + (end -1.75 1.65) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "f99d8027-e6b3-4824-89d8-0be341392393") + ) + (fp_line + (start -1.75 -0.9) + (end -0.65 -0.9) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "eb0fcee1-b685-45e7-aab4-f64d47768b6f") + ) + (fp_line + (start -0.65 -0.9) + (end -0.65 -1.65) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "9d54adea-e326-4bef-a827-41e78153c48c") + ) + (fp_line + (start 0.65 -0.9) + (end 0.65 -1.65) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "d2829f50-188b-4fd6-bf9d-e188d6f33be8") + ) + (fp_line + (start 1.75 -0.9) + (end 1.75 1.65) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "60b74719-ff70-4d11-91df-7531a3178c11") + ) + (fp_line + (start 1.75 -0.9) + (end 0.65 -0.9) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "9b2bdf20-3b07-4197-bf1d-eb239cf3b13a") + ) + (fp_line + (start -0.65 -1.65) + (end 0.65 -1.65) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "c7ca5149-034f-498e-acac-d95df61e1373") + ) + (pad "1" smd rect + (at -0.95 1.00076 270) + (size 0.8001 0.8001) + (layers "F.Cu" "F.Mask" "F.Paste") + (net 5 "Net-(BZ1--)") + (pinfunction "C") + (pintype "open_collector") + (uuid "920bd0b9-9c4f-4e1b-8ed7-907d150dc322") + ) + (pad "2" smd rect + (at 0 -0.99822 270) + (size 0.8001 0.8001) + (layers "F.Cu" "F.Mask" "F.Paste") + (net 38 "Net-(Q2-B)") + (pinfunction "B") + (pintype "input") + (uuid "566fed38-ec22-4514-87e3-cd46caae82c7") + ) + (pad "3" smd rect + (at 0.95 1.00076 270) + (size 0.8001 0.8001) + (layers "F.Cu" "F.Mask" "F.Paste") + (net 1 "GND") + (pinfunction "E") + (pintype "open_emitter") + (uuid "25e20f48-2cc4-414a-8579-34f2b1d69415") + ) + (embedded_fonts no) + (model "${KISYS3DMOD}/Package_TO_SOT_SMD.3dshapes/SOT-23.step" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 -90) + ) + ) + ) + (footprint "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" + (placed yes) + (layer "F.Cu") + (uuid "1c34988e-6e37-405e-96a4-1bb4ef1aab1a") + (at 96.66 106.22 -90) + (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 "Reference" "C24" + (at 0 -1.68 90) + (layer "F.SilkS") + (uuid "42b9134e-73b7-4aac-b3df-98f996e716ed") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "10uf" + (at 0 1.68 90) + (layer "F.Fab") + (uuid "d593a603-599f-4a0f-8630-22bad925e42b") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "~" + (at 0 0 90) + (layer "F.Fab") + (hide yes) + (uuid "2d3edd95-4762-40a5-807e-f48c4fc0f6ab") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "Unpolarized capacitor" + (at 0 0 90) + (layer "F.Fab") + (hide yes) + (uuid "459699bd-bb7d-4737-9802-a4cf230b32ca") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Link" "https://robu.in/product/0402x104k100nt-fh-smd-multilayer-ceramic-capacitor-0-1-%C2%B5f100nf-10-v-0402-1005-metric-%C2%B1-10-x5r/" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "e7c9da34-5a37-4260-8e9d-bf55cb4b62ea") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "C_*") + (path "/b3e0d29f-69f4-4673-9d2c-5125661a8608") + (sheetname "/") + (sheetfile "SmartFuseBox.kicad_sch") + (attr smd) + (fp_line + (start -0.261252 0.735) + (end 0.261252 0.735) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "a6f0eb92-ee62-4abf-bd3f-87b721a7f3bc") + ) + (fp_line + (start -0.261252 -0.735) + (end 0.261252 -0.735) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "47038ac8-a4f1-4838-ae49-f4ce39d70a50") + ) + (fp_rect + (start -1.88 -0.98) + (end 1.88 0.98) + (stroke + (width 0.05) + (type solid) + ) + (fill no) + (layer "F.CrtYd") + (uuid "7c50105c-e79f-4dd0-90e8-9f8a9158ea7b") + ) + (fp_rect + (start -1 -0.625) + (end 1 0.625) + (stroke + (width 0.1) + (type solid) + ) + (fill no) + (layer "F.Fab") + (uuid "099f28f3-1c0c-4817-9964-398d12de2971") + ) + (fp_text user "${REFERENCE}" + (at 0 0 90) + (layer "F.Fab") + (uuid "2bb81c83-94e2-4985-b796-4369fbff5223") + (effects + (font + (size 0.5 0.5) + (thickness 0.08) + ) + ) + ) + (pad "1" smd roundrect + (at -1.0375 0 270) + (size 1.175 1.45) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.212766) + (net 81 "/12V_DC-Regulated") + (pintype "passive") + (uuid "7afeab8a-caeb-4090-a84e-b83906285e15") + ) + (pad "2" smd roundrect + (at 1.0375 0 270) + (size 1.175 1.45) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.212766) + (net 1 "GND") + (pintype "passive") + (uuid "a21157ce-80a0-4a44-ae77-e767f1a0506e") + ) + (embedded_fonts no) + (model "${KICAD9_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.step" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "TerminalBlock:TerminalBlock_MaiXu_MX126-5.0-03P_1x03_P5.00mm" + (layer "F.Cu") + (uuid "1e95220d-e715-4149-aa3d-8d11a317479e") + (at 114.126667 61.62 180) + (descr "terminal block MaiXu MX126-5.0-03P, 3 pins, pitch 5mm, size 15.5x7.8mm, drill diameter 1.3mm, pad diameter 2.8mm, https://www.lcsc.com/datasheet/lcsc_datasheet_2309150913_MAX-MX126-5-0-03P-GN01-Cu-S-A_C5188435.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_MaiXu") + (tags "THT terminal block MaiXu MX126-5.0-03P pitch 5mm size 15.5x7.8mm drill 1.3mm pad 2.8mm") + (property "Reference" "J4" + (at -4.073333 -1.78 90) + (layer "F.SilkS") + (uuid "6cfca26f-df4c-484d-8d92-5fcddf400c08") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "Conn_01x03_Socket" + (at 4.75 4.92 0) + (layer "F.Fab") + (uuid "86f3afac-dbd4-4f40-8827-9536d534b83d") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "~" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "bdb61b88-eb07-4d98-86a8-dd0c07ec34d3") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "Generic connector, single row, 01x03, script generated" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "6a9c2249-f802-4932-a66f-5b065d931e53") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "Connector*:*_1x??_*") + (path "/1a0c9918-df1b-4f59-bb79-d09645d1e39c") + (sheetname "/") + (sheetfile "SmartFuseBox.kicad_sch") + (attr through_hole) + (fp_line + (start 12.62 3.92) + (end 0.3 3.92) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "cf79fa08-a859-4ccc-8116-309cf34312c8") + ) + (fp_line + (start 12.62 -4.12) + (end 12.62 3.92) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "c8b0c6df-211b-4f2e-9759-27ad099948bc") + ) + (fp_line + (start 11.812 0.5) + (end 12.62 0.5) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "fb221ca4-251a-444d-a4cc-dd91f8cd1ef4") + ) + (fp_line + (start 11.812 -0.5) + (end 12.62 -0.5) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "84613df7-df71-4c5b-9436-9612e375957b") + ) + (fp_line + (start 10.543 1.8) + (end 12.62 1.8) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "f5f7fafe-b51b-4663-944e-71ddc1230381") + ) + (fp_line + (start 6.812 0.5) + (end 8.188 0.5) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "51ca4aa7-0b1c-47a1-a522-447a1ff14507") + ) + (fp_line + (start 6.812 -0.5) + (end 8.188 -0.5) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "4b7665ad-a608-4e4a-8b7b-4c756cd4c88b") + ) + (fp_line + (start 5.543 1.8) + (end 9.457 1.8) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "c646533f-18b4-4874-88c9-3a6f093d0351") + ) + (fp_line + (start 1.88 1.8) + (end 4.457 1.8) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "2bbb0d89-6816-4e2b-ad25-acbdb2e64abe") + ) + (fp_line + (start 1.88 0.5) + (end 3.188 0.5) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "8031a940-67a4-426f-b8fd-7bb4f4320e52") + ) + (fp_line + (start 1.88 -0.5) + (end 3.188 -0.5) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "d0c8cef3-6b63-4c98-b3fb-5946e1871489") + ) + (fp_line + (start -0.3 3.92) + (end -3.12 3.92) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "c50da2b5-5fde-496a-b0f2-2fe83ecf86ac") + ) + (fp_line + (start -3.12 3.92) + (end -3.12 -4.12) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "7771bf2c-475f-40c2-82a6-42b4d1fb5895") + ) + (fp_line + (start -3.12 1.8) + (end -1.88 1.8) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "ae2cb613-7bd5-4ab9-8fe2-b8addfbe1d3b") + ) + (fp_line + (start -3.12 0.5) + (end -1.88 0.5) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "aa73bbc3-de9b-4b09-9350-31a6f8f6e664") + ) + (fp_line + (start -3.12 -0.5) + (end -1.88 -0.5) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "8c872bf3-c511-4fc1-b1f1-3e549d7ee651") + ) + (fp_line + (start -3.12 -4.12) + (end 12.62 -4.12) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "78978e10-cb38-47c6-8703-12c8ee7ed32a") + ) + (fp_poly + (pts + (xy 0 3.92) (xy 0.44 4.53) (xy -0.44 4.53) + ) + (stroke + (width 0.12) + (type solid) + ) + (fill yes) + (layer "F.SilkS") + (uuid "d75831e4-c1fa-4a5c-a0e8-42faebb55f28") + ) + (fp_rect + (start -3.5 -4.5) + (end 13 4.31) + (stroke + (width 0.05) + (type solid) + ) + (fill no) + (layer "F.CrtYd") + (uuid "5ead4376-36b4-489a-8155-a8f08af62a30") + ) + (fp_line + (start 12.5 3.8) + (end -1.05 3.8) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "efbe45e8-502f-4b56-af54-26cb181ae4b2") + ) + (fp_line + (start 12.5 -4) + (end 12.5 3.8) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "fb0f8437-1288-4cea-9007-96d2c2cd372e") + ) + (fp_line + (start 11.213 -1.018) + (end 8.982 1.213) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "13c29293-be7a-477d-95dc-be54d93092e7") + ) + (fp_line + (start 11.018 -1.213) + (end 8.787 1.018) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "6dd32c56-a87e-4da5-9494-03c22a61252f") + ) + (fp_line + (start 6.213 -1.018) + (end 3.982 1.213) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "fa91b342-284f-4772-af8a-7752ca32802f") + ) + (fp_line + (start 6.018 -1.213) + (end 3.787 1.018) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "4cff2525-486a-475e-9e9e-40d513ea27a7") + ) + (fp_line + (start 1.213 -1.018) + (end -1.018 1.213) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "c5d6269a-82a0-4c65-ba33-de5f5f9c5aba") + ) + (fp_line + (start 1.018 -1.213) + (end -1.213 1.018) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "b853e93d-7e30-444d-b597-606f6c21ce6c") + ) + (fp_line + (start -1.05 3.8) + (end -3 1.85) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "dddca361-f656-44b0-b8c8-7dcb9905248f") + ) + (fp_line + (start -3 1.85) + (end -3 -4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "622c15e6-9ff5-4f93-93a3-39d21cc06e98") + ) + (fp_line + (start -3 1.8) + (end 12.5 1.8) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "b3bbbbdc-faa0-486e-a4e7-bf355b85c650") + ) + (fp_line + (start -3 0.5) + (end 12.5 0.5) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "d30adb23-d7cd-43fd-9f96-021f23fcdd39") + ) + (fp_line + (start -3 -0.5) + (end 12.5 -0.5) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "b5725349-05b2-44f8-8dc8-16e895bfb2a1") + ) + (fp_line + (start -3 -4) + (end 12.5 -4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "88240e71-9d8d-4ea3-971f-9f30e4ccd370") + ) + (fp_circle + (center 10 0) + (end 11.6 0) + (stroke + (width 0.1) + (type solid) + ) + (fill no) + (layer "F.Fab") + (uuid "70d10425-f31a-41ce-a54e-6c2903586c89") + ) + (fp_circle + (center 5 0) + (end 6.6 0) + (stroke + (width 0.1) + (type solid) + ) + (fill no) + (layer "F.Fab") + (uuid "526ccbf1-1acb-4c4b-8e00-f5846cee649b") + ) + (fp_circle + (center 0 0) + (end 1.6 0) + (stroke + (width 0.1) + (type solid) + ) + (fill no) + (layer "F.Fab") + (uuid "29bd262b-dabe-455a-a13b-41b9ac683827") + ) + (fp_text user "${REFERENCE}" + (at 4.75 2.65 0) + (layer "F.Fab") + (uuid "c4462094-737b-4938-812d-414fca7f25b2") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (pad "1" thru_hole roundrect + (at 0 0 180) + (size 2.8 2.8) + (drill 1.3) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (roundrect_rratio 0.089286) + (net 13 "NO_2") + (pinfunction "Pin_1") + (pintype "passive") + (uuid "86d7ec4b-159c-4480-afcd-1a2b0d09650b") + ) + (pad "2" thru_hole circle + (at 5 0 180) + (size 2.8 2.8) + (drill 1.3) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 14 "COM_2") + (pinfunction "Pin_2") + (pintype "passive") + (uuid "d03d7e08-6ea2-4815-b473-43badf9f0ff7") + ) + (pad "3" thru_hole circle + (at 10 0 180) + (size 2.8 2.8) + (drill 1.3) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 15 "NC_2") + (pinfunction "Pin_3") + (pintype "passive") + (uuid "e994c04a-4900-4569-8c11-f870a7ce84c0") + ) + (embedded_fonts no) + (model "${KICAD9_3DMODEL_DIR}/TerminalBlock_Phoenix.3dshapes/TerminalBlock_Phoenix_MKDS-1,5-3_1x03_P5.00mm_Horizontal.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" + (placed yes) + (layer "F.Cu") + (uuid "214abe58-c180-4e21-a1a5-fc405c10c4e6") + (at 111.66 106.2575 -90) + (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 "Reference" "C21" + (at 0 -1.68 90) + (layer "F.SilkS") + (uuid "1ec183d2-9e6f-49c2-902b-f85ab69f57cf") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "0.1uf" + (at 0 1.68 90) + (layer "F.Fab") + (uuid "ff008959-919b-40b6-9e37-f7661ae7267f") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "~" + (at 0 0 90) + (layer "F.Fab") + (hide yes) + (uuid "b362d0a2-3285-424b-8067-15e1ff51d2e9") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "Unpolarized capacitor" + (at 0 0 90) + (layer "F.Fab") + (hide yes) + (uuid "267ccbef-b109-43cc-9b69-8e4eb40d95aa") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Link" "https://robu.in/product/cl21a106kofnnne-samsang-16v-10uf-x5r-%C2%B110-0805-multilayer-ceramic-capacitors-mlcc-smd-smt-rohs/?gad_source=1&gad_campaignid=17427802703&gbraid=0AAAAADvLFWeYd6KQJmaof5AqwX7G6G7RK&gclid=CjwKCAjw687NBhB4EiwAQ645dvOPfam1y5aCD1uRQvjlmer72tAuxihwH4D1G8BPdKh6SRiWARJldBoCKCYQAvD_BwE" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "75ce833e-4546-426a-a2c1-d02de325c6a2") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "C_*") + (path "/00ccf73a-42d4-4c25-a592-a9b0cddc6182") + (sheetname "/") + (sheetfile "SmartFuseBox.kicad_sch") + (attr smd) + (fp_line + (start -0.261252 0.735) + (end 0.261252 0.735) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "55e32283-b243-4ff5-959c-ca300330e0c4") + ) + (fp_line + (start -0.261252 -0.735) + (end 0.261252 -0.735) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "c5c7ec4c-d2e8-4d74-b69c-ad3281afbbbc") + ) + (fp_rect + (start -1.88 -0.98) + (end 1.88 0.98) + (stroke + (width 0.05) + (type solid) + ) + (fill no) + (layer "F.CrtYd") + (uuid "7ab8bca8-4baf-4548-9c7b-35cda256fbec") + ) + (fp_rect + (start -1 -0.625) + (end 1 0.625) + (stroke + (width 0.1) + (type solid) + ) + (fill no) + (layer "F.Fab") + (uuid "1c9818bd-2784-4d0e-b525-8446fdbcbedb") + ) + (fp_text user "${REFERENCE}" + (at 0 0 90) + (layer "F.Fab") + (uuid "679b0813-d582-47fa-9151-3236c422e3c1") + (effects + (font + (size 0.5 0.5) + (thickness 0.08) + ) + ) + ) + (pad "1" smd roundrect + (at -1.0375 0 270) + (size 1.175 1.45) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.212766) + (net 81 "/12V_DC-Regulated") + (pintype "passive") + (uuid "0c6ded00-6f5a-47ab-a258-ddde7ff61efa") + ) + (pad "2" smd roundrect + (at 1.0375 0 270) + (size 1.175 1.45) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.212766) + (net 1 "GND") + (pintype "passive") + (uuid "fa82447e-0dd3-4121-9310-c1b4616ad724") + ) + (embedded_fonts no) + (model "${KICAD9_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.step" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Relay_THT:Relay_SPDT_SANYOU_SRD_Series_Form_C" + (placed yes) + (layer "F.Cu") + (uuid "222be42b-4c8d-4692-abc0-fb3f90528c2c") + (at 72.61 86.22 90) + (descr "relay Sanyou SRD series Form C http://www.sanyourelay.ca/public/products/pdf/SRD.pdf") + (tags "relay Sanyu SRD form C") + (property "Reference" "K4" + (at 8.1 8.65 90) + (layer "F.SilkS") + (uuid "4c60247d-275d-443b-b33b-c8121a32e92e") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "SRD-12VDC-SL-C" + (at 8 -9.6 90) + (layer "F.Fab") + (uuid "2c51b2c8-3851-4753-b04f-b2fcbb3d85ac") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "http://www.sanyourelay.ca/public/products/pdf/SRD.pdf" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "1709226e-4cfe-47af-83ba-8e2c898eb3fe") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "Sanyo SRD relay, Single Pole Miniature Power Relay," + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "6ba3daba-6726-4291-b16e-cd08ff8e149c") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Link" "https://robu.in/product/1-month-warranty-1027/" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "9204493b-811c-4630-b26c-08b6177cede3") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "Relay*SPDT*SANYOU*SRD*Series*Form*C*") + (path "/b55f1058-c706-44aa-8d71-691cdb3f66e0") + (sheetname "/") + (sheetfile "SmartFuseBox.kicad_sch") + (attr through_hole) + (fp_line + (start 18.4 -7.8) + (end 18.4 7.8) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "1359527a-cfbf-4d8d-afa0-b7302d2a09a9") + ) + (fp_line + (start -1.4 -7.8) + (end 18.4 -7.8) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "4a2c3f50-d175-4ae5-a6cc-8149f69a2496") + ) + (fp_line + (start -1.4 -7.8) + (end -1.4 -1.2) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "a9b2d90b-9120-44b2-99e9-01527992bd98") + ) + (fp_line + (start 6.05 -5.95) + (end 3.55 -5.95) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "ef8aca7a-f51a-48b9-bb61-2e0f116546b0") + ) + (fp_line + (start 6.05 -5.95) + (end 6.05 -1.75) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "a7cc09cf-6b8c-4f66-baa8-d5c0e899e10a") + ) + (fp_line + (start 14.15 -4.2) + (end 14.15 -1.7) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "d4974aaa-196c-4e8f-96af-71630a98fc08") + ) + (fp_line + (start 8.05 -1.75) + (end 8.05 1.85) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "4d1a94c0-39c8-4174-8c06-0e8676916f22") + ) + (fp_line + (start 4.05 -1.75) + (end 8.05 -1.75) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "f7acd85c-8381-435a-adda-3e653e3a6bb8") + ) + (fp_line + (start 10.95 0.05) + (end 15.55 -2.45) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "dd9c4240-3d4f-41df-bf1c-08232f9ce5b6") + ) + (fp_line + (start 9.45 0.05) + (end 10.95 0.05) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "ecefb29c-5bff-48a1-a057-93923e20c08d") + ) + (fp_line + (start 9.45 0.05) + (end 9.45 3.65) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "af347f95-400b-46c7-8271-9ed3d9ff2c29") + ) + (fp_line + (start 2.65 0.05) + (end 1.85 0.05) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "c1409af6-e6cc-4bd4-8552-a509a0080343") + ) + (fp_line + (start 2.65 0.05) + (end 2.65 3.65) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "55e228f8-952a-417b-94b1-883a3a8bf4c0") + ) + (fp_line + (start -1.4 1.2) + (end -1.4 7.8) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "7fcb3dea-ed51-4e09-9e00-181d2e9e23ae") + ) + (fp_line + (start 8.05 1.85) + (end 4.05 -1.75) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "6f5b5dee-84e3-43d0-bc0b-7d1d57095ec8") + ) + (fp_line + (start 8.05 1.85) + (end 4.05 1.85) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "54463709-a979-4e5d-b327-8f897683fa8a") + ) + (fp_line + (start 6.05 1.85) + (end 6.05 6.05) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "8ddfee21-f21c-43d7-8dc1-fc1e24e2a974") + ) + (fp_line + (start 4.05 1.85) + (end 4.05 -1.75) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "c93739ae-62b2-4475-81e3-fcda062ec31f") + ) + (fp_line + (start 9.45 3.65) + (end 2.65 3.65) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "e668ea32-1157-47c0-b7d6-028468182c54") + ) + (fp_line + (start 14.15 4.2) + (end 14.15 1.75) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "3ed4dab6-483f-4765-9146-7200c7f3c8e5") + ) + (fp_line + (start 3.55 6.05) + (end 6.05 6.05) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "9164df41-9844-4290-be79-81dfe87a30a9") + ) + (fp_line + (start 18.4 7.8) + (end -1.4 7.8) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "ea5d3cab-0371-4c23-b8e8-5fa04ddbec22") + ) + (fp_line + (start 18.55 -7.95) + (end -1.55 -7.95) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "2a9a5906-7be4-4915-ae1d-a5fb90e7ad90") + ) + (fp_line + (start 18.55 -7.95) + (end 18.55 7.95) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "4b31f6da-57dd-4c02-a53c-3a1915e65e7c") + ) + (fp_line + (start -1.55 7.95) + (end -1.55 -7.95) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "29c0865e-d613-4eed-9032-078c3ea16652") + ) + (fp_line + (start -1.55 7.95) + (end 18.55 7.95) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "56123155-1d6f-4c38-b212-b1d1a483182c") + ) + (fp_line + (start 18.3 -7.7) + (end 18.3 7.7) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.Fab") + (uuid "675e77a5-525a-431a-857a-0a6c059cd797") + ) + (fp_line + (start -1.3 -7.7) + (end 18.3 -7.7) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.Fab") + (uuid "4c3c7e9d-007e-4e4c-bade-82dcccfb92aa") + ) + (fp_line + (start 18.3 7.7) + (end -1.3 7.7) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.Fab") + (uuid "371a4ca5-5ecd-4696-a3d7-af2a7fe530cd") + ) + (fp_line + (start -1.3 7.7) + (end -1.3 -7.7) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.Fab") + (uuid "460b8f6e-6910-4ba3-a6ae-8ebc37d8dbc8") + ) + (fp_text user "${REFERENCE}" + (at 7.1 0.025 90) + (layer "F.Fab") + (uuid "1867c2a9-5399-49db-b438-a32d1a8c7e09") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (fp_text user "1" + (at 0 -2.3 90) + (layer "F.Fab") + (uuid "4f376594-7c96-4014-a8cc-8be93f7c6f5e") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (pad "1" thru_hole circle + (at 0 0 180) + (size 3 3) + (drill 1.3) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 19 "COM_4") + (pintype "passive") + (uuid "c8972f47-a677-40f3-be45-0a199b09797e") + ) + (pad "2" thru_hole circle + (at 1.95 6.05 180) + (size 2.5 2.5) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 85 "R-4") + (pintype "passive") + (uuid "ab6a6360-9771-4ff8-ad2f-e7bbd1ba729e") + ) + (pad "3" thru_hole circle + (at 14.15 6.05 180) + (size 3 3) + (drill 1.3) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 21 "NO_4") + (pintype "passive") + (uuid "7955e1eb-3f44-4be6-8611-5eff83d05d3d") + ) + (pad "4" thru_hole circle + (at 14.2 -6 180) + (size 3 3) + (drill 1.3) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 20 "NC_4") + (pintype "passive") + (uuid "8172c7d9-e1fc-4a76-a7d1-3c9ee86de4e2") + ) + (pad "5" thru_hole circle + (at 1.95 -5.95 180) + (size 2.5 2.5) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 81 "/12V_DC-Regulated") + (pintype "passive") + (uuid "8f9c4320-6f51-43fe-acb5-c5ffd25bb44e") + ) + (embedded_fonts no) + (model "${KICAD9_3DMODEL_DIR}/Relay_THT.3dshapes/Relay_SPDT_SANYOU_SRD_Series_Form_C.step" + (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" + (placed yes) + (layer "F.Cu") + (uuid "2522570f-f886-4ebb-8cf3-56d92761ecb9") + (at 184.6975 84.01 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 "Reference" "C13" + (at 3.6375 0 0) + (layer "F.SilkS") + (uuid "928f5bc6-f4d2-449f-9944-1ad369791db0") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "10uf" + (at 0 1.68 0) + (layer "F.Fab") + (uuid "3a5194c1-18b9-40bf-b63e-c2c7a419648f") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "~" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "e134b979-98c4-4d8f-9248-c54411502904") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "Unpolarized capacitor" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "9b64462a-014e-4492-aacd-980ef986240d") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Link" "https://robu.in/product/0402x104k100nt-fh-smd-multilayer-ceramic-capacitor-0-1-%C2%B5f100nf-10-v-0402-1005-metric-%C2%B1-10-x5r/" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "9d36e9c9-1c5e-4234-a341-ef4aeafa46a4") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "C_*") + (path "/99882549-ce7b-4764-9573-7850850cb3a0") + (sheetname "/") + (sheetfile "SmartFuseBox.kicad_sch") + (attr smd) + (fp_line + (start -0.261252 0.735) + (end 0.261252 0.735) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "d94f2111-48e1-4ad2-9f2c-25a3fcb505f8") + ) + (fp_line + (start -0.261252 -0.735) + (end 0.261252 -0.735) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "4af75661-fed0-44a0-8cad-a6f8889770a0") + ) + (fp_rect + (start -1.88 -0.98) + (end 1.88 0.98) + (stroke + (width 0.05) + (type solid) + ) + (fill no) + (layer "F.CrtYd") + (uuid "18bb6a78-4740-47f2-9242-9b33a3b7d78b") + ) + (fp_rect + (start -1 -0.625) + (end 1 0.625) + (stroke + (width 0.1) + (type solid) + ) + (fill no) + (layer "F.Fab") + (uuid "4c526070-b62b-4105-9b1b-5b98f19f6190") + ) + (fp_text user "${REFERENCE}" + (at 0 0 0) + (layer "F.Fab") + (uuid "2ffaef3a-cd49-45b0-a531-2ed3eb6f5cf8") + (effects + (font + (size 0.5 0.5) + (thickness 0.08) + ) + ) + ) + (pad "1" smd roundrect + (at -1.0375 0 180) + (size 1.175 1.45) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.212766) + (net 3 "VDD33") + (pintype "passive") + (uuid "a496a141-b51d-4028-84c8-723d8c7c2837") + ) + (pad "2" smd roundrect + (at 1.0375 0 180) + (size 1.175 1.45) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.212766) + (net 1 "GND") + (pintype "passive") + (uuid "fab00e18-81c5-4127-9a04-e16adfa26dc4") + ) + (embedded_fonts no) + (model "${KICAD9_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.step" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Diode_SMD:D_SMA" + (layer "F.Cu") + (uuid "276be754-c9de-4c9d-8622-7098e81cf073") + (at 76.66 90.62) + (descr "Diode SMA (DO-214AC)") + (tags "Diode SMA (DO-214AC)") + (property "Reference" "D6" + (at 0 -2.5 0) + (layer "F.SilkS") + (uuid "09b8a679-fef8-42ef-bb4d-3b0d95fbe9e8") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "SS54" + (at 0 2.6 0) + (layer "F.Fab") + (uuid "17339e71-cf92-4a45-b6c7-a0745091ce0a") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "https://www.laro.com.pl/pdf/ss56.pdf" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "d2f2f2ac-96ce-4b2c-8566-e126126c73c6") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "SMC Schottky diode, 40V, 5A, Alternate KiCAD Library" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "8ac281cc-b81b-4d77-bed9-f008f798b688") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Link" "https://robu.in/product/ss54b-slkor-40v-550mv5a-5a-smbdo-214aa-schottky-diodes-rohs/?gad_source=1&gad_campaignid=17427802703&gbraid=0AAAAADvLFWeYd6KQJmaof5AqwX7G6G7RK&gclid=CjwKCAjw687NBhB4EiwAQ645dhFgK7QWTnrPqJBCFVMKkjTLbr6I5VJmPHffxaZ_pS_3KzeiLFGuoBoCukcQAvD_BwE" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "e7aed03c-7ce0-4252-ba52-dcbdae6d1470") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "TO-???* *_Diode_* *SingleDiode* D_*") + (path "/07c2e9fa-2edd-439b-b17d-db6026ee1135") + (sheetname "/") + (sheetfile "SmartFuseBox.kicad_sch") + (attr smd) + (fp_line + (start -3.51 -1.65) + (end -3.51 1.65) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "5c9eff26-6ab5-48d9-9f7f-773ede77ad7b") + ) + (fp_line + (start -3.51 -1.65) + (end 2 -1.65) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "744a73ff-1936-403c-bccb-ecaa59b1d5eb") + ) + (fp_line + (start -3.51 1.65) + (end 2 1.65) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "52072e55-170f-4dde-a393-9f5fee867217") + ) + (fp_line + (start -3.5 -1.75) + (end 3.5 -1.75) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "d786c3d0-5e43-4466-aebb-9000fa159c57") + ) + (fp_line + (start -3.5 1.75) + (end -3.5 -1.75) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "3b81e356-f0f5-4cf0-98f9-c2f9432574f1") + ) + (fp_line + (start 3.5 -1.75) + (end 3.5 1.75) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "d83d1a3d-d53e-49db-b834-735deed5cbb7") + ) + (fp_line + (start 3.5 1.75) + (end -3.5 1.75) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "5e9bdd9d-7034-4f67-a8d6-956b37f52e32") + ) + (fp_line + (start -2.3 1.5) + (end -2.3 -1.5) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "95ef43fa-9e7a-4795-95da-1aff67b94580") + ) + (fp_line + (start -0.64944 -0.79908) + (end -0.64944 0.80112) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "5c9a7ea8-4dbb-4138-82ac-eb3952910a3c") + ) + (fp_line + (start -0.64944 0.00102) + (end -1.55114 0.00102) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "20efa7a2-7146-468f-81b7-b5cc09faa816") + ) + (fp_line + (start -0.64944 0.00102) + (end 0.50118 -0.79908) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "7593b93d-1aad-451f-ba5c-3db7836be583") + ) + (fp_line + (start -0.64944 0.00102) + (end 0.50118 0.75032) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "df88b05c-e733-432c-9316-cd32841934bb") + ) + (fp_line + (start 0.50118 0.00102) + (end 1.4994 0.00102) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "bb90dc19-fe98-4534-905f-3d25b91fd819") + ) + (fp_line + (start 0.50118 0.75032) + (end 0.50118 -0.79908) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "4ae6beb3-ae70-4cf5-9ad7-8f3adf60a3ec") + ) + (fp_line + (start 2.3 -1.5) + (end -2.3 -1.5) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "4a1ad407-d6e3-42b3-9cfc-29feb991c438") + ) + (fp_line + (start 2.3 -1.5) + (end 2.3 1.5) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "078dbdeb-f42b-45d6-90be-5546f5df3a16") + ) + (fp_line + (start 2.3 1.5) + (end -2.3 1.5) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "dad5b19b-91e0-4dc0-8290-9a63ac39fb55") + ) + (fp_text user "${REFERENCE}" + (at 0 -2.5 0) + (layer "F.Fab") + (uuid "e9f6072d-be55-4816-a74f-0068af2ec165") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (pad "1" smd roundrect + (at -2 0) + (size 2.5 1.8) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.1388888889) + (net 81 "/12V_DC-Regulated") + (pinfunction "K") + (pintype "passive") + (uuid "7623a524-50b3-45c8-b22c-36f0e8a5a799") + ) + (pad "2" smd roundrect + (at 2 0) + (size 2.5 1.8) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.1388888889) + (net 85 "R-4") + (pinfunction "A") + (pintype "passive") + (uuid "7f45c1ba-249c-4f34-af08-5091a1cdbac0") + ) + (embedded_fonts no) + (model "${KICAD9_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SMA.step" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Passives:R_0805_2012Metric_Pad1.20x1.40mm_HandSolder" + (placed yes) + (layer "F.Cu") + (uuid "28a6a49b-147c-466f-af1f-9233ac0820e1") + (at 197.96 91.77 180) + (descr "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") + (tags "resistor handsolder") + (property "Reference" "R18" + (at 0 1.77 0) + (layer "F.SilkS") + (uuid "0e884209-d458-490d-b335-6bdef611442a") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "2k" + (at 0 1.65 0) + (layer "F.Fab") + (hide yes) + (uuid "62081019-a57f-4140-ade4-6f52b70202e9") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "1df7a9ef-d0aa-4dd5-b5f0-980b6f23d9a7") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "resistor" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "5dd4ceda-cbd3-4604-8b87-8651eb6e102d") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Indicator" "+" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "a4fc8948-48e0-4844-ada7-5fe1c6b2eeca") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Rating" "W" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "277442a3-dcab-45f5-8fd1-233721f5e57d") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (path "/2e0029ac-2e50-4064-935c-1fe10de12d9c") + (sheetname "/") + (sheetfile "SmartFuseBox.kicad_sch") + (attr smd) + (fp_line + (start -0.227064 0.735) + (end 0.227064 0.735) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "1b60fc1a-5911-487c-b141-fa80e9460c50") + ) + (fp_line + (start -0.227064 -0.735) + (end 0.227064 -0.735) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "3c01d8d8-401e-400d-b603-49085ef5122f") + ) + (fp_line + (start 1.85 0.95) + (end -1.85 0.95) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "11e6042f-934b-482b-b5c4-6f89ba9267a9") + ) + (fp_line + (start 1.85 -0.95) + (end 1.85 0.95) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "73ad63dc-c3d3-4316-9107-44180cd83997") + ) + (fp_line + (start -1.85 0.95) + (end -1.85 -0.95) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "3f440aa3-45cc-4a88-b021-f34c437887ef") + ) + (fp_line + (start -1.85 -0.95) + (end 1.85 -0.95) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "0a6f9f04-b227-4a52-b18c-0b4227aaa0a5") + ) + (fp_line + (start 1 0.625) + (end -1 0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "3d4331e2-8378-4c00-8019-5bc1f45c459a") + ) + (fp_line + (start 1 -0.625) + (end 1 0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "1c411209-eb52-4042-8b9b-050089de73d6") + ) + (fp_line + (start -1 0.625) + (end -1 -0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "6ae32374-ecfe-4b98-951d-abc023894205") + ) + (fp_line + (start -1 -0.625) + (end 1 -0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "47a8f380-13f8-42df-bf4e-927cb7ad43ba") + ) + (fp_text user "${REFERENCE}" + (at 0 0 0) + (layer "F.Fab") + (uuid "3a737f4c-e5ed-4af9-a84e-db01ea5957f4") + (effects + (font + (size 0.5 0.5) + (thickness 0.08) + ) + ) + ) + (pad "1" smd roundrect + (at -1 0) + (size 1.2 1.4) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.208333) + (net 2 "5V") + (pinfunction "+") + (pintype "passive") + (uuid "c455dfba-b8ae-447e-aed9-ac2460d81505") + ) + (pad "2" smd roundrect + (at 1 0) + (size 1.2 1.4) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.208333) + (net 77 "Net-(D12-A)") + (pinfunction "-") + (pintype "passive") + (uuid "cdb68bd3-a04d-46ce-a251-e918d3b57dad") + ) + (embedded_fonts no) + (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Diode_SMD:D_SMA" + (layer "F.Cu") + (uuid "2cf41b6f-f603-42cc-b186-2a9f1ccea1b9") + (at 190.86 122.02 -90) + (descr "Diode SMA (DO-214AC)") + (tags "Diode SMA (DO-214AC)") + (property "Reference" "D2" + (at 0 -2.5 90) + (layer "F.SilkS") + (uuid "a36fce6c-ca6a-42f1-b6cf-2efaf7b13f5c") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "SS54" + (at 0 2.6 90) + (layer "F.Fab") + (uuid "9069c1fa-ec78-474d-8726-3824a8cf0491") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "https://www.laro.com.pl/pdf/ss56.pdf" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "956c4b80-ea06-4086-be5a-15bd9e169b17") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "SMC Schottky diode, 40V, 5A, Alternate KiCAD Library" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "f6e7f804-8831-4977-96f9-2f4000f40820") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Link" "https://robu.in/product/ss54b-slkor-40v-550mv5a-5a-smbdo-214aa-schottky-diodes-rohs/?gad_source=1&gad_campaignid=17427802703&gbraid=0AAAAADvLFWeYd6KQJmaof5AqwX7G6G7RK&gclid=CjwKCAjw687NBhB4EiwAQ645dhFgK7QWTnrPqJBCFVMKkjTLbr6I5VJmPHffxaZ_pS_3KzeiLFGuoBoCukcQAvD_BwE" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "30a7d374-0ad7-40b6-aa99-80e1df60566f") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "TO-???* *_Diode_* *SingleDiode* D_*") + (path "/914df5d6-bc6a-4706-80b8-a191f82049e4") + (sheetname "/") + (sheetfile "SmartFuseBox.kicad_sch") + (attr smd) + (fp_line + (start -3.51 1.65) + (end 2 1.65) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "b84a7676-54d2-458c-80ea-56acf5f504cd") + ) + (fp_line + (start -3.51 -1.65) + (end -3.51 1.65) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "ce0f8e42-1d15-44e9-94df-7a8133f683be") + ) + (fp_line + (start -3.51 -1.65) + (end 2 -1.65) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "cfa433e2-f622-449d-8f26-629568db90bf") + ) + (fp_line + (start -3.5 1.75) + (end -3.5 -1.75) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "c69089c3-fd46-4729-bc51-3b5e4d7c4bde") + ) + (fp_line + (start 3.5 1.75) + (end -3.5 1.75) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "0b15a435-37f9-4045-8666-fae770cf2e9c") + ) + (fp_line + (start -3.5 -1.75) + (end 3.5 -1.75) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "cd497a03-1ff3-4531-846d-d6a7b81ed45d") + ) + (fp_line + (start 3.5 -1.75) + (end 3.5 1.75) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "d1c776f5-af57-4a5d-bbb9-0bd78cdbeb51") + ) + (fp_line + (start -2.3 1.5) + (end -2.3 -1.5) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "1e688f42-709f-479d-b55d-68b71bd5b0ec") + ) + (fp_line + (start 2.3 1.5) + (end -2.3 1.5) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "58568671-6051-4296-a8df-a9b55734720d") + ) + (fp_line + (start 0.50118 0.75032) + (end 0.50118 -0.79908) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "35ce12b1-e728-44b6-b6c5-60bd7fc2bac6") + ) + (fp_line + (start -0.64944 0.00102) + (end 0.50118 0.75032) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "6e134eea-d5f0-4a6a-bc93-575704276ea8") + ) + (fp_line + (start -0.64944 0.00102) + (end -1.55114 0.00102) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "33f7b647-ba15-4515-9655-c27b1c5a968a") + ) + (fp_line + (start -0.64944 0.00102) + (end 0.50118 -0.79908) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "31be61df-b13c-4fcb-9091-114454ad25c8") + ) + (fp_line + (start 0.50118 0.00102) + (end 1.4994 0.00102) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "62a77301-f8fd-49d7-8123-51abbcdc1792") + ) + (fp_line + (start -0.64944 -0.79908) + (end -0.64944 0.80112) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "3c05fc00-bf75-471d-b491-7acf2f138e15") + ) + (fp_line + (start 2.3 -1.5) + (end 2.3 1.5) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "e215d57a-3e9b-4f7f-bf51-8a78c5582120") + ) + (fp_line + (start 2.3 -1.5) + (end -2.3 -1.5) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "4d6cb2d0-432f-4541-87a6-cc3559e605b8") + ) + (fp_text user "${REFERENCE}" + (at 0 -2.5 90) + (layer "F.Fab") + (uuid "52cfcc06-e523-4e30-bf33-008d8cfec0c0") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (pad "1" smd roundrect + (at -2 0 270) + (size 2.5 1.8) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.1388888889) + (net 81 "/12V_DC-Regulated") + (pinfunction "K") + (pintype "passive") + (uuid "b6a08824-3685-4d31-958c-2fd7a43fb451") + ) + (pad "2" smd roundrect + (at 2 0 270) + (size 2.5 1.8) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.1388888889) + (net 4 "12V_INPUT") + (pinfunction "A") + (pintype "passive") + (uuid "9668d493-9e9a-48c8-b3cf-8e2d18a6d349") + ) + (embedded_fonts no) + (model "${KICAD9_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SMA.step" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Passives:R_0805_2012Metric_Pad1.20x1.40mm_HandSolder" + (placed yes) + (layer "F.Cu") + (uuid "2d3da062-b1ff-4c85-bdb2-cd393a745783") + (at 190.86 78.81 -90) + (descr "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") + (tags "resistor handsolder") + (property "Reference" "R11" + (at 0 -1.65 90) + (layer "F.SilkS") + (hide yes) + (uuid "4683508b-f324-497a-961c-805254e5782f") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "120R" + (at 0 1.65 90) + (layer "F.Fab") + (uuid "734f545d-6af1-4e63-82a5-8dd9bb855273") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "dcbe7c1f-3f82-4462-99ee-0a1fd60b1a83") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "resistor" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "de62845d-d4f0-46e4-8d7b-695ffabeff9b") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Indicator" "+" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "8aea4cd3-5b9d-47de-bb08-f7a61daeed6e") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Rating" "W" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "9db757db-194c-4fdf-bf85-7d65f44706b9") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (path "/91f5fc2e-e562-493d-bff8-4b37c7e7e2f4") + (sheetname "/") + (sheetfile "SmartFuseBox.kicad_sch") + (attr smd dnp) + (fp_line + (start -0.227064 0.735) + (end 0.227064 0.735) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "9c4d7dda-3e27-4a96-a52b-2ecad665a2ee") + ) + (fp_line + (start -0.227064 -0.735) + (end 0.227064 -0.735) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "68760ab9-4c56-4849-95e6-65086eacacdf") + ) + (fp_line + (start -1.85 0.95) + (end -1.85 -0.95) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "adba83fd-1731-41ae-8fdd-4e7ff9994fc4") + ) + (fp_line + (start 1.85 0.95) + (end -1.85 0.95) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "4991c557-d618-456b-a2c6-6f632745bd19") + ) + (fp_line + (start -1.85 -0.95) + (end 1.85 -0.95) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "77fda8aa-ac53-4a85-b58c-0c858ec02f8c") + ) + (fp_line + (start 1.85 -0.95) + (end 1.85 0.95) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "81656eaa-b3fc-4f11-9af8-161dad3c14cf") + ) + (fp_line + (start -1 0.625) + (end -1 -0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "20bae20a-06b6-45c5-b07e-3837ea413036") + ) + (fp_line + (start 1 0.625) + (end -1 0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "174f4c15-a503-412c-85b6-99365a01aa50") + ) + (fp_line + (start -1 -0.625) + (end 1 -0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "58d9f8c3-d776-4d1f-8357-8c7ce84f9a36") + ) + (fp_line + (start 1 -0.625) + (end 1 0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "80fa6787-179a-4be5-9059-5ddf190542f4") + ) + (fp_text user "${REFERENCE}" + (at 0 0 90) + (layer "F.Fab") + (uuid "c14384bd-9ea3-4f4a-b684-8ec2418e77dd") + (effects + (font + (size 0.5 0.5) + (thickness 0.08) + ) + ) + ) + (pad "1" smd roundrect + (at -1 0 90) + (size 1.2 1.4) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.208333) + (net 11 "/CANH") + (pinfunction "+") + (pintype "passive") + (uuid "95fdad78-3c3f-41e5-863e-6a4a6dfb23a7") + ) + (pad "2" smd roundrect + (at 1 0 90) + (size 1.2 1.4) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.208333) + (net 12 "/CANL") + (pinfunction "-") + (pintype "passive") + (uuid "1f4e24f9-f817-42c9-9a42-45f48f326cf8") + ) + (embedded_fonts no) + (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "TerminalBlock:TerminalBlock_MaiXu_MX126-5.0-03P_1x03_P5.00mm" + (layer "F.Cu") + (uuid "2ecc8f30-d5d7-4bc9-ae3f-b7c4e356036e") + (at 68.06 135.42) + (descr "terminal block MaiXu MX126-5.0-03P, 3 pins, pitch 5mm, size 15.5x7.8mm, drill diameter 1.3mm, pad diameter 2.8mm, https://www.lcsc.com/datasheet/lcsc_datasheet_2309150913_MAX-MX126-5-0-03P-GN01-Cu-S-A_C5188435.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_MaiXu") + (tags "THT terminal block MaiXu MX126-5.0-03P pitch 5mm size 15.5x7.8mm drill 1.3mm pad 2.8mm") + (property "Reference" "J10" + (at -4.46 -2.02 90) + (layer "F.SilkS") + (uuid "5e511317-6347-46ba-8579-fcd9979de443") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "Conn_01x03_Socket" + (at 4.75 4.92 0) + (layer "F.Fab") + (uuid "a9c85b78-7264-4a3e-be2f-c47ee64ef1ae") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "~" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "42a5db8f-a38c-42e9-b91d-880b478f6959") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "Generic connector, single row, 01x03, script generated" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "0a0c2e90-4e9e-4253-9c03-f66883a8de3b") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "Connector*:*_1x??_*") + (path "/a3daf139-5291-4de7-9882-b9782bbab1db") + (sheetname "/") + (sheetfile "SmartFuseBox.kicad_sch") + (attr through_hole) + (fp_line + (start -3.12 -4.12) + (end 12.62 -4.12) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "f7c1e3f0-3c6a-48e9-b5b4-0504c30bef4e") + ) + (fp_line + (start -3.12 -0.5) + (end -1.88 -0.5) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "b7acb0ba-28e6-4097-81c9-89bd78651a9f") + ) + (fp_line + (start -3.12 0.5) + (end -1.88 0.5) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "9ae6c215-4406-4ffc-b1a2-a6a1cc4b9efd") + ) + (fp_line + (start -3.12 1.8) + (end -1.88 1.8) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "cb9f21fa-ec33-401f-b1b5-82ebdaf8eb57") + ) + (fp_line + (start -3.12 3.92) + (end -3.12 -4.12) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "8b987955-9720-44b1-9313-447ab7482fed") + ) + (fp_line + (start -0.3 3.92) + (end -3.12 3.92) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "5e7978e8-b1f4-4ad8-9fc7-082814815f1c") + ) + (fp_line + (start 1.88 -0.5) + (end 3.188 -0.5) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "501e20d2-2720-4574-b88b-187087270651") + ) + (fp_line + (start 1.88 0.5) + (end 3.188 0.5) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "a95b1907-d1b7-4f5f-a897-f0e28f7ab0af") + ) + (fp_line + (start 1.88 1.8) + (end 4.457 1.8) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "2ac5dbc0-0599-4291-b389-c92f64304af8") + ) + (fp_line + (start 5.543 1.8) + (end 9.457 1.8) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "2f3fd9b3-6e0f-4d02-8591-20e911597715") + ) + (fp_line + (start 6.812 -0.5) + (end 8.188 -0.5) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "4c05bf76-78e9-465e-9014-e9f82ed826c5") + ) + (fp_line + (start 6.812 0.5) + (end 8.188 0.5) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "bbe1ec72-009b-4826-9e19-2b349ed4c115") + ) + (fp_line + (start 10.543 1.8) + (end 12.62 1.8) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "8f55c2cf-58a5-4ca4-870d-9e5aaf06bd35") + ) + (fp_line + (start 11.812 -0.5) + (end 12.62 -0.5) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "ab26419f-072d-4289-9310-6de0426f8bb2") + ) + (fp_line + (start 11.812 0.5) + (end 12.62 0.5) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "79fc2633-ea3e-4e37-a7f1-fef4fca67a86") + ) + (fp_line + (start 12.62 -4.12) + (end 12.62 3.92) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "d215c212-1922-4e2a-93c0-debcfdc5b347") + ) + (fp_line + (start 12.62 3.92) + (end 0.3 3.92) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "6b55823b-9cb7-407e-8cb4-57035a3c3ee5") + ) + (fp_poly + (pts + (xy 0 3.92) (xy 0.44 4.53) (xy -0.44 4.53) + ) + (stroke + (width 0.12) + (type solid) + ) + (fill yes) + (layer "F.SilkS") + (uuid "b0b14856-b184-4622-af90-6514f6f57769") + ) + (fp_rect + (start -3.5 -4.5) + (end 13 4.31) + (stroke + (width 0.05) + (type solid) + ) + (fill no) + (layer "F.CrtYd") + (uuid "f8972c4c-b2e4-426a-8eab-7424c245831b") + ) + (fp_line + (start -3 -4) + (end 12.5 -4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "fd14bdd6-b6c9-480d-9e72-98e6949b6d89") + ) + (fp_line + (start -3 -0.5) + (end 12.5 -0.5) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "4a293706-85c8-4d2c-85a5-b80a2b29e2a0") + ) + (fp_line + (start -3 0.5) + (end 12.5 0.5) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "3a07c6b0-4c74-4148-8c75-65df9ac81b74") + ) + (fp_line + (start -3 1.8) + (end 12.5 1.8) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "ddb1b327-e40d-4cd0-870b-f58a1a1d7bd2") + ) + (fp_line + (start -3 1.85) + (end -3 -4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "1faeeaf6-5189-482b-b93f-6fa5f94f7deb") + ) + (fp_line + (start -1.05 3.8) + (end -3 1.85) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "86667366-fc35-4fba-892d-d7e8f6c05639") + ) + (fp_line + (start 1.018 -1.213) + (end -1.213 1.018) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "c43d89ee-716f-42dc-8a3e-ac3b46f3c060") + ) + (fp_line + (start 1.213 -1.018) + (end -1.018 1.213) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "f7126135-3ac4-4da5-a8bb-b17a39a18eb9") + ) + (fp_line + (start 6.018 -1.213) + (end 3.787 1.018) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "5e5a01cb-4039-49e6-9710-b8d6e151082d") + ) + (fp_line + (start 6.213 -1.018) + (end 3.982 1.213) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "c5d37e66-37c3-48ff-b2d8-16acaeeea1fd") + ) + (fp_line + (start 11.018 -1.213) + (end 8.787 1.018) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "723190ca-5d65-47d5-ab4b-71c973977578") + ) + (fp_line + (start 11.213 -1.018) + (end 8.982 1.213) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "6a6b1b2b-27f4-4772-872e-be0c4c5b8cc4") + ) + (fp_line + (start 12.5 -4) + (end 12.5 3.8) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "9d90a76a-56d5-4bd4-9195-a104d747f304") + ) + (fp_line + (start 12.5 3.8) + (end -1.05 3.8) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "2a6def08-db0b-450b-970e-c67309bfbf34") + ) + (fp_circle + (center 0 0) + (end 1.6 0) + (stroke + (width 0.1) + (type solid) + ) + (fill no) + (layer "F.Fab") + (uuid "0b6b6aad-3b8a-46e6-b3cd-abfa0e8af7fc") + ) + (fp_circle + (center 5 0) + (end 6.6 0) + (stroke + (width 0.1) + (type solid) + ) + (fill no) + (layer "F.Fab") + (uuid "b95877ae-6c95-4d45-b040-6271826ceaf6") + ) + (fp_circle + (center 10 0) + (end 11.6 0) + (stroke + (width 0.1) + (type solid) + ) + (fill no) + (layer "F.Fab") + (uuid "74fb4b9f-3d02-4d5b-b8b7-4ef1e600dddc") + ) + (fp_text user "${REFERENCE}" + (at 4.75 2.65 0) + (layer "F.Fab") + (uuid "7609600d-aaa1-422d-965a-a63d6532daf4") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (pad "1" thru_hole roundrect + (at 0 0) + (size 2.8 2.8) + (drill 1.3) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (roundrect_rratio 0.089286) + (net 33 "NO_8") + (pinfunction "Pin_1") + (pintype "passive") + (uuid "f50d0eb1-b9cb-49e4-a022-bbdd75530df3") + ) + (pad "2" thru_hole circle + (at 5 0) + (size 2.8 2.8) + (drill 1.3) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 32 "COM_8") + (pinfunction "Pin_2") + (pintype "passive") + (uuid "db47db09-2b9c-429a-93e2-48891feb7dbe") + ) + (pad "3" thru_hole circle + (at 10 0) + (size 2.8 2.8) + (drill 1.3) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 31 "NC_8") + (pinfunction "Pin_3") + (pintype "passive") + (uuid "d54f0a0a-bde5-4c5b-9001-d650b85e8e76") + ) + (embedded_fonts no) + (model "${KICAD9_3DMODEL_DIR}/TerminalBlock_Phoenix.3dshapes/TerminalBlock_Phoenix_MKDS-1,5-3_1x03_P5.00mm_Horizontal.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Package_SO:SOIC-8-1EP_3.9x4.9mm_P1.27mm_EP2.62x3.51mm" + (placed yes) + (layer "F.Cu") + (uuid "2f410de4-713a-4017-8a6e-8715b2ca8407") + (at 183.235 106.2025 -90) + (descr "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") + (tags "SOIC SO") + (property "Reference" "U3" + (at -4.545 1.475 0) + (layer "F.SilkS") + (uuid "2bd7acb6-1e01-40cc-b161-16f16c59f31b") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "MP2303ADN" + (at 0 3.4 90) + (layer "F.Fab") + (uuid "6ac644dd-b1fb-4e75-a8cf-bd848dc73a24") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "https://www.monolithicpower.com/pub/media/document/MP2303A_r1.1.pdf" + (at 0 0 90) + (layer "F.Fab") + (hide yes) + (uuid "543fa1a9-86bb-4a74-93dd-f29a693f810a") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "Synchronous Rectified 3A, 28V, 360kHz Step-Down Converter, SOIC-8" + (at 0 0 90) + (layer "F.Fab") + (hide yes) + (uuid "0b6ae9e1-a3d7-42b2-b389-d9276f4e8e2f") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "SOIC*1EP*3.9x4.9mm*P1.27mm*") + (path "/8ad75dd2-25ee-48cf-b48a-26c0a6a2adcf") + (sheetname "/") + (sheetfile "SmartFuseBox.kicad_sch") + (attr smd) + (fp_line + (start -2.06 2.56) + (end -2.06 2.465) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "54e1712a-5b56-444c-8729-fabbe5ed74f3") + ) + (fp_line + (start 2.06 2.56) + (end -2.06 2.56) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "3da1d9eb-02bd-4b85-87b6-1c484aa1cb56") + ) + (fp_line + (start 2.06 2.465) + (end 2.06 2.56) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "d721cd67-c805-4033-be2e-1cc89eedc3b3") + ) + (fp_line + (start -2.06 -2.465) + (end -2.06 -2.56) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "3c08d84b-d181-455c-bf9c-180e90951897") + ) + (fp_line + (start -2.06 -2.56) + (end 2.06 -2.56) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "3785ea0a-9b5c-4466-bf6f-595c8a11dff2") + ) + (fp_line + (start 2.06 -2.56) + (end 2.06 -2.465) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "04ea1516-fd8d-486e-9df0-65670a2b277c") + ) + (fp_poly + (pts + (xy -2.6 -2.47) (xy -2.84 -2.8) (xy -2.36 -2.8) + ) + (stroke + (width 0.12) + (type solid) + ) + (fill yes) + (layer "F.SilkS") + (uuid "828df8fe-4cfb-4c79-982e-0cfa10971513") + ) + (fp_line + (start -2.2 2.7) + (end -2.2 2.46) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "11413408-a13e-4c20-8c9f-35b02a020e16") + ) + (fp_line + (start 2.2 2.7) + (end -2.2 2.7) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "736af4ad-7c5e-45b1-8238-b805d2ed7a8f") + ) + (fp_line + (start -3.7 2.46) + (end -3.7 -2.46) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "6588663a-3d42-4464-8b18-ded35e86c74b") + ) + (fp_line + (start -2.2 2.46) + (end -3.7 2.46) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "b9fe3c5e-46a2-4100-b2aa-3a5ef9e040b2") + ) + (fp_line + (start 2.2 2.46) + (end 2.2 2.7) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "a8df2f8e-1db1-4788-9c5c-b1bcd0ef4237") + ) + (fp_line + (start 3.7 2.46) + (end 2.2 2.46) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "2ea0e569-b0c4-49f2-ab9f-77e220347e09") + ) + (fp_line + (start -3.7 -2.46) + (end -2.2 -2.46) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "94a0db07-7e4f-4d4b-a4c3-1351948f7700") + ) + (fp_line + (start -2.2 -2.46) + (end -2.2 -2.7) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "56a132f5-0b2e-4556-ae3d-3c138165d0e1") + ) + (fp_line + (start 2.2 -2.46) + (end 3.7 -2.46) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "b8e1e0ad-3f5c-43d1-a8c0-29be16b9423b") + ) + (fp_line + (start 3.7 -2.46) + (end 3.7 2.46) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "36e11881-6290-48be-a2f9-ea0b34fb160c") + ) + (fp_line + (start -2.2 -2.7) + (end 2.2 -2.7) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "f4d8b16d-8a37-4375-b0b0-f5d586e403f8") + ) + (fp_line + (start 2.2 -2.7) + (end 2.2 -2.46) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "a898eb9d-37e9-40cd-83da-a4eb4f093c9b") + ) + (fp_poly + (pts + (xy -0.975 -2.45) (xy 1.95 -2.45) (xy 1.95 2.45) (xy -1.95 2.45) (xy -1.95 -1.475) + ) + (stroke + (width 0.1) + (type solid) + ) + (fill no) + (layer "F.Fab") + (uuid "f676e126-9354-4f5c-9ed9-a9178ffcef9f") + ) + (fp_text user "${REFERENCE}" + (at 0 0 0) + (layer "F.Fab") + (uuid "1fb35810-3f88-427c-916a-c08626ca77c6") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (pad "" smd roundrect + (at -0.655 -0.875 270) + (size 1.06 1.41) + (layers "F.Paste") + (roundrect_rratio 0.235849) + (uuid "e8e859d7-4d7d-4172-8954-b01f1ce77b57") + ) + (pad "" smd roundrect + (at -0.655 0.875 270) + (size 1.06 1.41) + (layers "F.Paste") + (roundrect_rratio 0.235849) + (uuid "08f50ef6-55c2-4c67-9712-ca3a61c5f2d4") + ) + (pad "" smd roundrect + (at 0.655 -0.875 270) + (size 1.06 1.41) + (layers "F.Paste") + (roundrect_rratio 0.235849) + (uuid "1467f115-85e9-41f9-a102-c8e38ff14577") + ) + (pad "" smd roundrect + (at 0.655 0.875 270) + (size 1.06 1.41) + (layers "F.Paste") + (roundrect_rratio 0.235849) + (uuid "4a61ce1a-4e2e-4244-b767-9a03274476b8") + ) + (pad "1" smd roundrect + (at -2.48 -1.905 270) + (size 1.94 0.6) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.25) + (net 7 "Net-(U3-BS)") + (pinfunction "BS") + (pintype "passive") + (uuid "b13483f1-220c-47db-9946-37df323c23c6") + ) + (pad "2" smd roundrect + (at -2.48 -0.635 270) + (size 1.94 0.6) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.25) + (net 81 "/12V_DC-Regulated") + (pinfunction "IN") + (pintype "power_in") + (uuid "4c22d5a5-3c67-4fe0-af8e-43617318534c") + ) + (pad "3" smd roundrect + (at -2.48 0.635 270) + (size 1.94 0.6) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.25) + (net 6 "Net-(U3-SW)") + (pinfunction "SW") + (pintype "output") + (uuid "8d123842-54c7-4680-ac5e-2865a6eb46b5") + ) + (pad "4" smd roundrect + (at -2.48 1.905 270) + (size 1.94 0.6) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.25) + (net 1 "GND") + (pinfunction "GND") + (pintype "power_in") + (uuid "126fa292-1959-4de0-a59e-d8875f5f8528") + ) + (pad "5" smd roundrect + (at 2.48 1.905 270) + (size 1.94 0.6) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.25) + (net 79 "Net-(R16-+)") + (pinfunction "FB") + (pintype "input") + (uuid "74f8aeb7-6f16-4838-bd14-5cd5de736e4a") + ) + (pad "6" smd roundrect + (at 2.48 0.635 270) + (size 1.94 0.6) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.25) + (net 76 "Net-(U3-COMP)") + (pinfunction "COMP") + (pintype "passive") + (uuid "fb63d0cd-8683-476d-98b2-37bb01400ba4") + ) + (pad "7" smd roundrect + (at 2.48 -0.635 270) + (size 1.94 0.6) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.25) + (net 78 "Net-(R14--)") + (pinfunction "EN") + (pintype "input") + (uuid "4ca538b4-1ed3-4430-8478-11d27ad9af26") + ) + (pad "8" smd roundrect + (at 2.48 -1.905 270) + (size 1.94 0.6) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.25) + (net 74 "Net-(U3-SS)") + (pinfunction "SS") + (pintype "input") + (uuid "0e55438b-120a-4399-b5b2-a135e47fb7ee") + ) + (pad "9" smd rect + (at 0 0 270) + (size 2.62 3.51) + (property pad_prop_heatsink) + (layers "F.Cu" "F.Mask") + (zone_connect 2) + (uuid "36a7d460-5666-4886-b3f3-95cca9a234b6") + ) + (embedded_fonts no) + (model "${KICAD9_3DMODEL_DIR}/Package_SO.3dshapes/SOIC-8-1EP_3.9x4.9mm_P1.27mm_EP2.62x3.51mm.step" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "TerminalBlock:TerminalBlock_MaiXu_MX126-5.0-03P_1x03_P5.00mm" + (layer "F.Cu") + (uuid "2ff4808e-cc3f-4dc7-8734-4742dac61e7e") + (at 104.726667 135.42) + (descr "terminal block MaiXu MX126-5.0-03P, 3 pins, pitch 5mm, size 15.5x7.8mm, drill diameter 1.3mm, pad diameter 2.8mm, https://www.lcsc.com/datasheet/lcsc_datasheet_2309150913_MAX-MX126-5-0-03P-GN01-Cu-S-A_C5188435.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_MaiXu") + (tags "THT terminal block MaiXu MX126-5.0-03P pitch 5mm size 15.5x7.8mm drill 1.3mm pad 2.8mm") + (property "Reference" "J8" + (at -4.326667 -1.42 90) + (layer "F.SilkS") + (uuid "fce0d256-d46d-4b83-92f0-561f23cfbc7d") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "Conn_01x03_Socket" + (at 4.75 4.92 0) + (layer "F.Fab") + (uuid "f1604623-e06c-40f4-b6fa-c508cecf64d2") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "~" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "1638c630-c0c3-4123-9a27-45bf7590fb9f") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "Generic connector, single row, 01x03, script generated" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "05e3ad1a-c85b-45a9-82ac-cb765959a45e") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "Connector*:*_1x??_*") + (path "/179bb303-ba31-4700-b98e-ec6ac484b706") + (sheetname "/") + (sheetfile "SmartFuseBox.kicad_sch") + (attr through_hole) + (fp_line + (start -3.12 -4.12) + (end 12.62 -4.12) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "d3f36a39-4b18-4306-9855-b7cb7fe1730b") + ) + (fp_line + (start -3.12 -0.5) + (end -1.88 -0.5) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "e1f1a92a-8970-47aa-bc01-e699ec07ae00") + ) + (fp_line + (start -3.12 0.5) + (end -1.88 0.5) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "112b6ce1-0003-44ac-b02e-b1b61049d106") + ) + (fp_line + (start -3.12 1.8) + (end -1.88 1.8) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "f3486552-4336-4b41-bf90-7c8299548302") + ) + (fp_line + (start -3.12 3.92) + (end -3.12 -4.12) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "e00b3f04-b9f9-4fc7-a6bd-ca490406f6e0") + ) + (fp_line + (start -0.3 3.92) + (end -3.12 3.92) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "38ad77b2-9586-438a-bd8c-0a775f865413") + ) + (fp_line + (start 1.88 -0.5) + (end 3.188 -0.5) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "bbf910c4-8677-4b60-b707-4a34fd4d5407") + ) + (fp_line + (start 1.88 0.5) + (end 3.188 0.5) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "e6bae859-c060-452b-b4a4-acc18335b04e") + ) + (fp_line + (start 1.88 1.8) + (end 4.457 1.8) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "48c2524b-7bed-4713-9043-947f24ed9d47") + ) + (fp_line + (start 5.543 1.8) + (end 9.457 1.8) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "0b207d09-6d7a-4d96-9e4f-e951a651b60b") + ) + (fp_line + (start 6.812 -0.5) + (end 8.188 -0.5) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "53b6a5c3-48a8-45e3-8112-011a77bf46ad") + ) + (fp_line + (start 6.812 0.5) + (end 8.188 0.5) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "ef6d939a-6525-4d49-bf60-f3b74d66e63c") + ) + (fp_line + (start 10.543 1.8) + (end 12.62 1.8) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "3e923296-72e1-422e-b966-75b66f91fd14") + ) + (fp_line + (start 11.812 -0.5) + (end 12.62 -0.5) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "bdeba011-3fed-481b-99ef-96b7f174ee2f") + ) + (fp_line + (start 11.812 0.5) + (end 12.62 0.5) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "4d311aa4-442d-4adb-99d4-0dad2c68d65f") + ) + (fp_line + (start 12.62 -4.12) + (end 12.62 3.92) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "5609db5e-6a36-48d3-b698-e594877604a2") + ) + (fp_line + (start 12.62 3.92) + (end 0.3 3.92) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "96c85ad6-2f19-4673-af17-53545051372a") + ) + (fp_poly + (pts + (xy 0 3.92) (xy 0.44 4.53) (xy -0.44 4.53) + ) + (stroke + (width 0.12) + (type solid) + ) + (fill yes) + (layer "F.SilkS") + (uuid "8bc03ef0-8ea6-4f66-9e18-b2c7e477b816") + ) + (fp_rect + (start -3.5 -4.5) + (end 13 4.31) + (stroke + (width 0.05) + (type solid) + ) + (fill no) + (layer "F.CrtYd") + (uuid "02067f47-b9aa-4f2c-8214-47fc9e705792") + ) + (fp_line + (start -3 -4) + (end 12.5 -4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "fdda3492-6c92-46d5-a5f5-c0943b789342") + ) + (fp_line + (start -3 -0.5) + (end 12.5 -0.5) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "e9088bac-0eb8-4b00-af00-42a313411b76") + ) + (fp_line + (start -3 0.5) + (end 12.5 0.5) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "7661363c-c48e-4b40-93b2-fb5d2ce19552") + ) + (fp_line + (start -3 1.8) + (end 12.5 1.8) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "43521ebd-d28b-4b7d-9096-11404a7cf89f") + ) + (fp_line + (start -3 1.85) + (end -3 -4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "d91eb779-b281-4fb5-b2c0-f14f50edb686") + ) + (fp_line + (start -1.05 3.8) + (end -3 1.85) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "551f85f2-948b-46aa-9a82-47396813fca1") + ) + (fp_line + (start 1.018 -1.213) + (end -1.213 1.018) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "2704355f-d8f1-4dc7-a3ba-94100b68518f") + ) + (fp_line + (start 1.213 -1.018) + (end -1.018 1.213) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "2863b19b-6c25-43f6-b63f-4a658f8a2add") + ) + (fp_line + (start 6.018 -1.213) + (end 3.787 1.018) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "24270da8-62f3-4f31-bcc0-6795b1424f7d") + ) + (fp_line + (start 6.213 -1.018) + (end 3.982 1.213) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "9e2db8df-6db6-45b1-a959-dd40d4ad030f") + ) + (fp_line + (start 11.018 -1.213) + (end 8.787 1.018) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "32fd8ee2-4b05-4a7e-a36d-b63ae5b4ee26") + ) + (fp_line + (start 11.213 -1.018) + (end 8.982 1.213) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "1575618f-4905-49f2-b601-b05b02626668") + ) + (fp_line + (start 12.5 -4) + (end 12.5 3.8) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "bd9cc659-0984-4a82-8a52-d7eefb98b20b") + ) + (fp_line + (start 12.5 3.8) + (end -1.05 3.8) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "46dde123-9f4d-40bd-8a37-05e30de9cb39") + ) + (fp_circle + (center 0 0) + (end 1.6 0) + (stroke + (width 0.1) + (type solid) + ) + (fill no) + (layer "F.Fab") + (uuid "e01f60eb-45e7-449f-8630-ba91b7cddbe1") + ) + (fp_circle + (center 5 0) + (end 6.6 0) + (stroke + (width 0.1) + (type solid) + ) + (fill no) + (layer "F.Fab") + (uuid "0f157863-affe-4234-a262-d137544bd80f") + ) + (fp_circle + (center 10 0) + (end 11.6 0) + (stroke + (width 0.1) + (type solid) + ) + (fill no) + (layer "F.Fab") + (uuid "c3445694-dcfd-4cd9-950a-fde411cabbcc") + ) + (fp_text user "${REFERENCE}" + (at 4.75 2.65 0) + (layer "F.Fab") + (uuid "8461db8a-c28f-4779-9ea5-6d827f7c6f68") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (pad "1" thru_hole roundrect + (at 0 0) + (size 2.8 2.8) + (drill 1.3) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (roundrect_rratio 0.089286) + (net 25 "NO_6") + (pinfunction "Pin_1") + (pintype "passive") + (uuid "5bc66d0b-2f29-4de4-bfdb-3e3c3fc925c5") + ) + (pad "2" thru_hole circle + (at 5 0) + (size 2.8 2.8) + (drill 1.3) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 27 "COM_6") + (pinfunction "Pin_2") + (pintype "passive") + (uuid "d08cd6b4-e29a-4f05-ac52-caf118823217") + ) + (pad "3" thru_hole circle + (at 10 0) + (size 2.8 2.8) + (drill 1.3) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 26 "NC_6") + (pinfunction "Pin_3") + (pintype "passive") + (uuid "76d365f4-5615-4ac6-96b9-b92b353d2654") + ) + (embedded_fonts no) + (model "${KICAD9_3DMODEL_DIR}/TerminalBlock_Phoenix.3dshapes/TerminalBlock_Phoenix_MKDS-1,5-3_1x03_P5.00mm_Horizontal.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Diode_SMD:D_SMA" + (layer "F.Cu") + (uuid "2ffbe9e5-f24f-4294-95f4-f06e2d6ca0ed") + (at 139.86 114.62 -90) + (descr "Diode SMA (DO-214AC)") + (tags "Diode SMA (DO-214AC)") + (property "Reference" "D7" + (at 0 -2.5 90) + (layer "F.SilkS") + (uuid "ff461aff-dc2a-4803-879d-daf183719882") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "SS54" + (at 0 2.6 90) + (layer "F.Fab") + (uuid "149f2004-16c9-4b37-819b-a145ec51461c") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "https://www.laro.com.pl/pdf/ss56.pdf" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "c7fcab65-8033-4ff3-bc9e-013e01fdfd3f") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "SMC Schottky diode, 40V, 5A, Alternate KiCAD Library" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "d47e591c-b927-4e7d-9c62-af0714f21572") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Link" "https://robu.in/product/ss54b-slkor-40v-550mv5a-5a-smbdo-214aa-schottky-diodes-rohs/?gad_source=1&gad_campaignid=17427802703&gbraid=0AAAAADvLFWeYd6KQJmaof5AqwX7G6G7RK&gclid=CjwKCAjw687NBhB4EiwAQ645dhFgK7QWTnrPqJBCFVMKkjTLbr6I5VJmPHffxaZ_pS_3KzeiLFGuoBoCukcQAvD_BwE" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "94efaee0-2899-48bd-8462-a891ff7cb969") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "TO-???* *_Diode_* *SingleDiode* D_*") + (path "/5d372295-d64b-4452-b7b3-a695d1a8f4e6") + (sheetname "/") + (sheetfile "SmartFuseBox.kicad_sch") + (attr smd) + (fp_line + (start -3.51 1.65) + (end 2 1.65) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "28e76e8d-d281-424c-b035-b2acb0e7d186") + ) + (fp_line + (start -3.51 -1.65) + (end -3.51 1.65) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "af9ad5ad-24fb-40b0-9174-9692f871a009") + ) + (fp_line + (start -3.51 -1.65) + (end 2 -1.65) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "373236c3-2599-458c-b2d2-cc36307a32d7") + ) + (fp_line + (start -3.5 1.75) + (end -3.5 -1.75) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "be1a7acf-fbf5-46a7-a9a3-6b72c7c4a5ab") + ) + (fp_line + (start 3.5 1.75) + (end -3.5 1.75) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "bf9c85a6-7674-4753-8769-9645baf43dbf") + ) + (fp_line + (start -3.5 -1.75) + (end 3.5 -1.75) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "f4d624fd-73b4-412b-8c9c-78e89b18c264") + ) + (fp_line + (start 3.5 -1.75) + (end 3.5 1.75) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "b53f18c9-c4dc-4a52-aa58-0455c6bf9b22") + ) + (fp_line + (start -2.3 1.5) + (end -2.3 -1.5) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "2368db57-0908-4d33-a99a-27806236e582") + ) + (fp_line + (start 2.3 1.5) + (end -2.3 1.5) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "8c4d8513-1533-4533-a295-d5c00bccaa36") + ) + (fp_line + (start 0.50118 0.75032) + (end 0.50118 -0.79908) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "6bb75c02-0fe0-4b4f-9986-b665100ff0df") + ) + (fp_line + (start -0.64944 0.00102) + (end 0.50118 0.75032) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "406b9dc9-4017-46be-a22a-ce44d7bb2102") + ) + (fp_line + (start -0.64944 0.00102) + (end -1.55114 0.00102) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "cba8a6a6-12ff-4290-a51b-86d3ddf6e271") + ) + (fp_line + (start -0.64944 0.00102) + (end 0.50118 -0.79908) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "9fa2dd67-d58f-445e-8490-f3fad6fce366") + ) + (fp_line + (start 0.50118 0.00102) + (end 1.4994 0.00102) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "9c05bb0e-f904-4068-8a55-e9ffac7fe69f") + ) + (fp_line + (start -0.64944 -0.79908) + (end -0.64944 0.80112) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "be6482ae-cc53-4b17-b662-006dc8007a96") + ) + (fp_line + (start 2.3 -1.5) + (end 2.3 1.5) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "557cdbc5-1692-4d5b-88b5-74b7d7d25984") + ) + (fp_line + (start 2.3 -1.5) + (end -2.3 -1.5) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "b7dcc92e-9ea1-43b9-8c47-a27157f16bc1") + ) + (fp_text user "${REFERENCE}" + (at 0 -2.5 90) + (layer "F.Fab") + (uuid "728d810e-61a8-4ef2-b36e-b41a529f6b3b") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (pad "1" smd roundrect + (at -2 0 270) + (size 2.5 1.8) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.1388888889) + (net 81 "/12V_DC-Regulated") + (pinfunction "K") + (pintype "passive") + (uuid "2e0ab45e-a924-4665-9523-46aec644ae99") + ) + (pad "2" smd roundrect + (at 2 0 270) + (size 2.5 1.8) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.1388888889) + (net 86 "R-5") + (pinfunction "A") + (pintype "passive") + (uuid "5c98e8b8-a990-4975-b391-09ce6c9655d7") + ) + (embedded_fonts no) + (model "${KICAD9_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SMA.step" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Passives:R_0805_2012Metric_Pad1.20x1.40mm_HandSolder" + (placed yes) + (layer "F.Cu") + (uuid "33165a69-7c94-43c8-a8ab-bf13691b3a0b") + (at 190.56 70.27) + (descr "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") + (tags "resistor handsolder") + (property "Reference" "R5" + (at 0 -1.65 0) + (layer "F.SilkS") + (hide yes) + (uuid "801132ae-2d31-4e55-83bb-c9775b83ad90") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "1k" + (at 0 1.65 0) + (layer "F.Fab") + (uuid "3eff0cb4-cae0-46b6-b720-f36ee8413056") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "37b58a20-f102-477f-846a-59ca63091f06") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "resistor" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "25fceb7d-0a59-4c90-b709-ff8ee4cdc2e1") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Indicator" "+" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "ccc27c09-62bd-4095-ad12-f5313cd491da") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Rating" "W" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "abe033c1-3700-4524-8531-c37c508766a8") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (path "/0f3c3938-949b-4a7c-b5e5-2c3f6ef42d14") + (sheetname "/") + (sheetfile "SmartFuseBox.kicad_sch") + (attr smd) + (fp_line + (start -0.227064 -0.735) + (end 0.227064 -0.735) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "9514186c-6db7-4fa6-887b-335a8b5886fd") + ) + (fp_line + (start -0.227064 0.735) + (end 0.227064 0.735) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "e22fa719-6122-4caa-85f9-7d9d0019bc79") + ) + (fp_line + (start -1.85 -0.95) + (end 1.85 -0.95) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "35647504-41fe-462b-a2a8-0be7e9698b4e") + ) + (fp_line + (start -1.85 0.95) + (end -1.85 -0.95) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "a8e119ef-1743-4a8d-a250-1267376d5785") + ) + (fp_line + (start 1.85 -0.95) + (end 1.85 0.95) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "0d787257-e188-4588-bbde-5e859b6f3e8e") + ) + (fp_line + (start 1.85 0.95) + (end -1.85 0.95) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "6b186587-3b54-449a-8336-c87d235a1dc4") + ) + (fp_line + (start -1 -0.625) + (end 1 -0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "ed42a985-ac48-48d6-8c85-a84dd8ed3566") + ) + (fp_line + (start -1 0.625) + (end -1 -0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "2477c591-4dd3-4609-96a5-a1ee71f6fb07") + ) + (fp_line + (start 1 -0.625) + (end 1 0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "f642929d-5a0c-4f12-80c8-a9eeb5245d91") + ) + (fp_line + (start 1 0.625) + (end -1 0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "caa6bc68-4000-4408-bae4-43c24063fef4") + ) + (fp_text user "${REFERENCE}" + (at 0 0 0) + (layer "F.Fab") + (uuid "d3a79d79-aac1-4f2a-80ce-5196d540987a") + (effects + (font + (size 0.5 0.5) + (thickness 0.08) + ) + ) + ) + (pad "1" smd roundrect + (at -1 0 180) + (size 1.2 1.4) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.208333) + (net 43 "BUZZER") + (pinfunction "+") + (pintype "passive") + (uuid "7d845108-a8d4-4e78-b2c6-e256121dc659") + ) + (pad "2" smd roundrect + (at 1 0 180) + (size 1.2 1.4) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.208333) + (net 38 "Net-(Q2-B)") + (pinfunction "-") + (pintype "passive") + (uuid "505e679c-81d0-4fa9-8b27-30fa4217db54") + ) + (embedded_fonts no) + (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "MountingHole:MountingHole_3.2mm_M3" + (layer "F.Cu") + (uuid "3810a6f5-7264-4f28-8ee4-e61ed9d78295") + (at 199 136.6) + (descr "Mounting Hole 3.2mm, M3, no annular, generated by kicad-footprint-generator mountinghole.py") + (tags "mountinghole M3") + (property "Reference" "H2" + (at 0 -4.15 0) + (layer "F.SilkS") + (hide yes) + (uuid "9f92ee05-1a4d-4d03-b40c-b3a6c709e17b") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "MountingHole" + (at 0 4.15 0) + (layer "F.Fab") + (uuid "4f2493f2-1b46-4791-84d7-1c1147db6266") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "~" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "954218ba-ca1f-49b0-a643-dbde234db8e3") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "Mounting Hole without connection" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "52088812-e741-4413-905b-bd7830f131ec") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "MountingHole*") + (path "/3980356b-8424-406f-8b20-567edcc718f0") + (sheetname "/") + (sheetfile "SmartFuseBox.kicad_sch") + (attr exclude_from_pos_files exclude_from_bom) + (fp_circle + (center 0 0) + (end 3.2 0) + (stroke + (width 0.15) + (type solid) + ) + (fill no) + (layer "Cmts.User") + (uuid "26b9193c-4deb-4da7-955c-f84fd016c164") + ) + (fp_circle + (center 0 0) + (end 3.45 0) + (stroke + (width 0.05) + (type solid) + ) + (fill no) + (layer "F.CrtYd") + (uuid "54814af7-917d-4ec8-b3d6-94bbad50cf7d") + ) + (fp_text user "${REFERENCE}" + (at 0 0 0) + (layer "F.Fab") + (uuid "e7713247-77e8-4d5e-b160-ba0a20fd3341") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (pad "" np_thru_hole circle + (at 0 0) + (size 3.2 3.2) + (drill 3.2) + (layers "*.Cu" "*.Mask") + (uuid "5fc89d85-5b6b-4005-bb81-1b172185d191") + ) + (embedded_fonts no) + ) + (footprint "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" + (placed yes) + (layer "F.Cu") + (uuid "4884d1c3-62c3-4305-a962-64a3d92b9ae2") + (at 69.86 90.62 90) + (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 "Reference" "C11" + (at 0 -1.68 90) + (layer "F.SilkS") + (uuid "78a2860b-7577-40ed-9d69-d55d5932f8ff") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "0.1uf" + (at 0 1.68 90) + (layer "F.Fab") + (uuid "ac970342-3528-4b2d-a09c-0a00670ff24d") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "~" + (at 0 0 90) + (layer "F.Fab") + (hide yes) + (uuid "4fa454cb-0a35-48b2-af98-08a372c141e6") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "Unpolarized capacitor" + (at 0 0 90) + (layer "F.Fab") + (hide yes) + (uuid "8addc05e-a3a0-45cd-848d-d0d7bdf7f18b") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Link" "https://robu.in/product/cl21a106kofnnne-samsang-16v-10uf-x5r-%C2%B110-0805-multilayer-ceramic-capacitors-mlcc-smd-smt-rohs/?gad_source=1&gad_campaignid=17427802703&gbraid=0AAAAADvLFWeYd6KQJmaof5AqwX7G6G7RK&gclid=CjwKCAjw687NBhB4EiwAQ645dvOPfam1y5aCD1uRQvjlmer72tAuxihwH4D1G8BPdKh6SRiWARJldBoCKCYQAvD_BwE" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "1ec525e6-c3ac-4f86-8997-943e17c6ad5d") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "C_*") + (path "/cd73de74-eb42-4cba-9bb9-45808ba604e9") + (sheetname "/") + (sheetfile "SmartFuseBox.kicad_sch") + (attr smd) + (fp_line + (start -0.261252 -0.735) + (end 0.261252 -0.735) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "cf1c9935-e8e8-4efb-acdb-302d0b2c9fbc") + ) + (fp_line + (start -0.261252 0.735) + (end 0.261252 0.735) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "21b0f628-8ceb-4a71-9357-56df7c0b2b91") + ) + (fp_rect + (start -1.88 -0.98) + (end 1.88 0.98) + (stroke + (width 0.05) + (type solid) + ) + (fill no) + (layer "F.CrtYd") + (uuid "8a90a0ed-f6ab-411c-b39a-480cf298ade2") + ) + (fp_rect + (start -1 -0.625) + (end 1 0.625) + (stroke + (width 0.1) + (type solid) + ) + (fill no) + (layer "F.Fab") + (uuid "bbb769ec-fa27-495c-b722-ff252c241847") + ) + (fp_text user "${REFERENCE}" + (at 0 0 90) + (layer "F.Fab") + (uuid "7fae6013-2117-412d-a35f-2482da74cf7a") + (effects + (font + (size 0.5 0.5) + (thickness 0.08) + ) + ) + ) + (pad "1" smd roundrect + (at -1.0375 0 90) + (size 1.175 1.45) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.212766) + (net 81 "/12V_DC-Regulated") + (pintype "passive") + (uuid "c93ad428-ce51-45c0-95f4-a0d591168a57") + ) + (pad "2" smd roundrect + (at 1.0375 0 90) + (size 1.175 1.45) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.212766) + (net 1 "GND") + (pintype "passive") + (uuid "161c55f2-c89f-4978-b9fb-296b3e91f52f") + ) + (embedded_fonts no) + (model "${KICAD9_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.step" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Package_SO:SOIC-18W_7.5x11.6mm_P1.27mm" + (layer "F.Cu") + (uuid "49f31d07-1fc9-407c-bf6a-f10705061b57") + (at 127.61 98.43 180) + (descr "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") + (tags "SOIC SO") + (property "Reference" "U1" + (at 0 -6.73 0) + (layer "F.SilkS") + (uuid "863e1325-bdd8-41fc-8a69-9c4269c3279d") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "ULN2803A" + (at 0 6.73 0) + (layer "F.Fab") + (uuid "cb3b5e44-7904-4f4d-b0a0-71346f0f4711") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "http://www.ti.com/lit/ds/symlink/uln2803a.pdf" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "844424dd-b813-4394-bc16-9095f249aa56") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "Darlington Transistor Arrays, SOIC18/DIP18" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "94936f1a-2bc9-4b84-afa8-c80000fde136") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "DIP*W7.62mm* SOIC*7.5x11.6mm*P1.27mm*") + (path "/34b90168-98dd-4cf4-9a38-2e481457f309") + (sheetname "/") + (sheetfile "SmartFuseBox.kicad_sch") + (attr smd) + (fp_line + (start 3.86 5.885) + (end -3.86 5.885) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "e62bc7b4-d521-4e04-81de-0e688035e24b") + ) + (fp_line + (start 3.86 5.64) + (end 3.86 5.885) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "aa958aa6-baef-4a18-9de9-76fee9bc5dbb") + ) + (fp_line + (start 3.86 -5.885) + (end 3.86 -5.64) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "8c2d7347-317c-4bae-9e73-bb772fdc7662") + ) + (fp_line + (start -3.86 5.885) + (end -3.86 5.64) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "c23ab1d2-e889-451d-be50-3b2b993f5a0d") + ) + (fp_line + (start -3.86 -5.64) + (end -3.86 -5.885) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "9c66550a-a019-4a51-8607-e59e84b6dfc0") + ) + (fp_line + (start -3.86 -5.885) + (end 3.86 -5.885) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "999c8cdb-5e39-4237-8d79-04e1d8865f36") + ) + (fp_poly + (pts + (xy -4.65 -5.64) (xy -4.99 -6.11) (xy -4.31 -6.11) + ) + (stroke + (width 0.12) + (type solid) + ) + (fill yes) + (layer "F.SilkS") + (uuid "49579795-0bef-4a58-aa2e-86602a65bc4b") + ) + (fp_line + (start 5.93 5.63) + (end 4 5.63) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "715a67d8-9eb8-4b39-8b3b-22d18947805b") + ) + (fp_line + (start 5.93 -5.63) + (end 5.93 5.63) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "67ac7235-9eb8-470a-9b87-ddfc73e35e01") + ) + (fp_line + (start 4 6.03) + (end -4 6.03) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "47e04def-f147-48a0-b212-0bf824200d70") + ) + (fp_line + (start 4 5.63) + (end 4 6.03) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "13ff1139-2b98-44b0-bcb1-8b7d5bd46461") + ) + (fp_line + (start 4 -5.63) + (end 5.93 -5.63) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "9f86f23d-7814-4e99-a8a7-0c954e5adb0f") + ) + (fp_line + (start 4 -6.03) + (end 4 -5.63) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "082406aa-3c86-47fb-977e-c7a83b81800e") + ) + (fp_line + (start -4 6.03) + (end -4 5.63) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "06167735-9092-4cdf-93d0-e91c037fac97") + ) + (fp_line + (start -4 5.63) + (end -5.93 5.63) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "d6bc3f1f-b9c1-4fdd-b9b6-121b67f02d00") + ) + (fp_line + (start -4 -5.63) + (end -4 -6.03) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "7abcb52a-7593-4f06-b08f-b8b9cd3e579e") + ) + (fp_line + (start -4 -6.03) + (end 4 -6.03) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "ee874893-4977-4ab6-9d7d-fe995903d455") + ) + (fp_line + (start -5.93 5.63) + (end -5.93 -5.63) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "80054cac-c4c1-4bcc-a79a-a64c635bed55") + ) + (fp_line + (start -5.93 -5.63) + (end -4 -5.63) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "abed023e-4c7a-4493-8a1f-f90b67ed4702") + ) + (fp_poly + (pts + (xy -2.75 -5.775) (xy 3.75 -5.775) (xy 3.75 5.775) (xy -3.75 5.775) (xy -3.75 -4.775) + ) + (stroke + (width 0.1) + (type solid) + ) + (fill no) + (layer "F.Fab") + (uuid "fd8d6cfb-dd31-4d8b-8d80-4a7b7ec2ba6c") + ) + (fp_text user "${REFERENCE}" + (at 0 0 0) + (layer "F.Fab") + (uuid "2cced8bb-140d-44f7-9c62-fbb7fc59bee9") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (pad "1" smd roundrect + (at -4.65 -5.08 180) + (size 2.05 0.6) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.25) + (net 48 "RELAY_8") + (pinfunction "I1") + (pintype "input") + (uuid "f906efa9-b84b-4dd6-a87c-1d31348e5340") + ) + (pad "2" smd roundrect + (at -4.65 -3.81 180) + (size 2.05 0.6) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.25) + (net 47 "RELAY_7") + (pinfunction "I2") + (pintype "input") + (uuid "1fb57d77-75ea-41d1-b556-03be7d9f1fb8") + ) + (pad "3" smd roundrect + (at -4.65 -2.54 180) + (size 2.05 0.6) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.25) + (net 45 "RELAY_6") + (pinfunction "I3") + (pintype "input") + (uuid "97efc42a-69c5-4694-b44a-f826d9d7e5ed") + ) + (pad "4" smd roundrect + (at -4.65 -1.27 180) + (size 2.05 0.6) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.25) + (net 44 "RELAY_5") + (pinfunction "I4") + (pintype "input") + (uuid "278e0350-d680-4381-9e36-997618aa77e2") + ) + (pad "5" smd roundrect + (at -4.65 0 180) + (size 2.05 0.6) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.25) + (net 42 "RELAY_4") + (pinfunction "I5") + (pintype "input") + (uuid "964ceef6-ac37-47a5-8318-aa0080c49479") + ) + (pad "6" smd roundrect + (at -4.65 1.27 180) + (size 2.05 0.6) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.25) + (net 41 "RELAY_3") + (pinfunction "I6") + (pintype "input") + (uuid "950d5642-0103-4126-8a38-f17a0af4a65e") + ) + (pad "7" smd roundrect + (at -4.65 2.54 180) + (size 2.05 0.6) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.25) + (net 40 "RELAY_2") + (pinfunction "I7") + (pintype "input") + (uuid "600a4ae4-bc43-4cc3-92b7-9adcdaf61463") + ) + (pad "8" smd roundrect + (at -4.65 3.81 180) + (size 2.05 0.6) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.25) + (net 39 "RELAY_1") + (pinfunction "I8") + (pintype "input") + (uuid "c39225e1-efa9-479d-802c-f1a7cb4ee6dc") + ) + (pad "9" smd roundrect + (at -4.65 5.08 180) + (size 2.05 0.6) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.25) + (net 1 "GND") + (pinfunction "GND") + (pintype "power_in") + (uuid "b5d642f1-1628-4016-8e39-1275f80a4bba") + ) + (pad "10" smd roundrect + (at 4.65 5.08 180) + (size 2.05 0.6) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.25) + (net 81 "/12V_DC-Regulated") + (pinfunction "COM") + (pintype "passive") + (uuid "f0ce960e-9ebc-4f21-bf35-9cb72a9b3743") + ) + (pad "11" smd roundrect + (at 4.65 3.81 180) + (size 2.05 0.6) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.25) + (net 82 "R-1") + (pinfunction "O8") + (pintype "open_collector") + (uuid "ffdf286c-575e-4318-b637-3ac8a509df02") + ) + (pad "12" smd roundrect + (at 4.65 2.54 180) + (size 2.05 0.6) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.25) + (net 83 "R-2") + (pinfunction "O7") + (pintype "open_collector") + (uuid "3051422c-0a08-431f-a367-eccb53acc96e") + ) + (pad "13" smd roundrect + (at 4.65 1.27 180) + (size 2.05 0.6) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.25) + (net 84 "R-3") + (pinfunction "O6") + (pintype "open_collector") + (uuid "699b604b-d2aa-4823-b6df-69e60ce63ce6") + ) + (pad "14" smd roundrect + (at 4.65 0 180) + (size 2.05 0.6) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.25) + (net 85 "R-4") + (pinfunction "O5") + (pintype "open_collector") + (uuid "0d1b5476-d662-4fe0-b4bc-3027940e1442") + ) + (pad "15" smd roundrect + (at 4.65 -1.27 180) + (size 2.05 0.6) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.25) + (net 89 "R-8") + (pinfunction "O4") + (pintype "open_collector") + (uuid "96298c9d-6d78-4ad5-8b3a-a696573d38a0") + ) + (pad "16" smd roundrect + (at 4.65 -2.54 180) + (size 2.05 0.6) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.25) + (net 88 "R-7") + (pinfunction "O3") + (pintype "open_collector") + (uuid "c587d01a-4055-44df-9c7d-b72c5f352463") + ) + (pad "17" smd roundrect + (at 4.65 -3.81 180) + (size 2.05 0.6) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.25) + (net 87 "R-6") + (pinfunction "O2") + (pintype "open_collector") + (uuid "55adb85b-35c9-46a9-a550-168fe16f68a1") + ) + (pad "18" smd roundrect + (at 4.65 -5.08 180) + (size 2.05 0.6) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.25) + (net 86 "R-5") + (pinfunction "O1") + (pintype "open_collector") + (uuid "8a3eafc1-5e38-4f93-b70d-c07b78ee642f") + ) + (embedded_fonts no) + (model "${KICAD9_3DMODEL_DIR}/Package_SO.3dshapes/SOIC-18W_7.5x11.6mm_P1.27mm.step" + (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" + (placed yes) + (layer "F.Cu") + (uuid "4c6ca8fa-7922-496d-9aef-642baaf5d873") + (at 188.7225 103.4575) + (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 "Reference" "C29" + (at -0.5225 -1.8575 0) + (layer "F.SilkS") + (uuid "fe4e4fe5-e43b-4fe9-a820-c9baa27ec086") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "10nf" + (at 0 1.68 0) + (layer "F.Fab") + (uuid "cd19ac27-18c1-4db3-82c4-feb8f5e7dd8d") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "~" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "c0893e48-4772-47d4-bacf-4188138c33d0") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "Unpolarized capacitor" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "60bd7701-8f3d-4bd3-a4cd-634edd74b958") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Link" "https://robu.in/product/0402x104k100nt-fh-smd-multilayer-ceramic-capacitor-0-1-%C2%B5f100nf-10-v-0402-1005-metric-%C2%B1-10-x5r/" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "0dbf3dd5-e84e-4808-9d59-481ffc2b519b") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "C_*") + (path "/8c439172-40b6-4435-af25-3082dfbc0706") + (sheetname "/") + (sheetfile "SmartFuseBox.kicad_sch") + (attr smd) + (fp_line + (start -0.261252 -0.735) + (end 0.261252 -0.735) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "0723a046-42f9-47bb-bb44-82f02b52081a") + ) + (fp_line + (start -0.261252 0.735) + (end 0.261252 0.735) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "653b8ce0-df35-486a-a4e5-6d95f9062325") + ) + (fp_rect + (start -1.88 -0.98) + (end 1.88 0.98) + (stroke + (width 0.05) + (type solid) + ) + (fill no) + (layer "F.CrtYd") + (uuid "82ce3289-befa-4103-9f6f-ced55ba25ef5") + ) + (fp_rect + (start -1 -0.625) + (end 1 0.625) + (stroke + (width 0.1) + (type solid) + ) + (fill no) + (layer "F.Fab") + (uuid "fa136359-63b5-42ea-ad7b-9986acd48e6e") + ) + (fp_text user "${REFERENCE}" + (at 0 0 0) + (layer "F.Fab") + (uuid "06ca624a-1787-43a4-96e3-9881b9f2c99f") + (effects + (font + (size 0.5 0.5) + (thickness 0.08) + ) + ) + ) + (pad "1" smd roundrect + (at -1.0375 0) + (size 1.175 1.45) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.212766) + (net 7 "Net-(U3-BS)") + (pintype "passive") + (uuid "f0cb71de-ae94-49de-9dc6-c44e78d80a7c") + ) + (pad "2" smd roundrect + (at 1.0375 0) + (size 1.175 1.45) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.212766) + (net 6 "Net-(U3-SW)") + (pintype "passive") + (uuid "8773e371-b97c-44c5-978a-559317cae5c1") + ) + (embedded_fonts no) + (model "${KICAD9_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.step" + (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" + (placed yes) + (layer "F.Cu") + (uuid "4fb1b2b0-ab1e-429e-8d9a-94629977f77a") + (at 188.7225 112.0575) + (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 "Reference" "C31" + (at 0.6775 2.1425 0) + (layer "F.SilkS") + (uuid "b4bcbb78-8f16-4b7b-82fd-59469f8e471d") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "12uf" + (at 0 1.68 0) + (layer "F.Fab") + (uuid "a4dc9f81-75a5-49c9-863f-fde24b607ab3") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "~" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "974836fe-b5fc-4552-bbf9-a9664851c77a") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "Unpolarized capacitor" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "5d211408-1b7b-403a-9ac1-c4989258e0a2") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Link" "https://robu.in/product/cl21a106kofnnne-samsang-16v-10uf-x5r-%C2%B110-0805-multilayer-ceramic-capacitors-mlcc-smd-smt-rohs/?gad_source=1&gad_campaignid=17427802703&gbraid=0AAAAADvLFWeYd6KQJmaof5AqwX7G6G7RK&gclid=CjwKCAjw687NBhB4EiwAQ645dvOPfam1y5aCD1uRQvjlmer72tAuxihwH4D1G8BPdKh6SRiWARJldBoCKCYQAvD_BwE" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "00839c12-2f3b-477c-acb9-54a79cb29343") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "C_*") + (path "/9e98cfdd-ca54-4d2a-b539-06c4dc61a013") + (sheetname "/") + (sheetfile "SmartFuseBox.kicad_sch") + (attr smd) + (fp_line + (start -0.261252 -0.735) + (end 0.261252 -0.735) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "3e12db2c-2fb6-4fc6-961f-aee28b3efe10") + ) + (fp_line + (start -0.261252 0.735) + (end 0.261252 0.735) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "6d96ea5a-1293-4b0e-a77c-de0cf79d17a4") + ) + (fp_rect + (start -1.88 -0.98) + (end 1.88 0.98) + (stroke + (width 0.05) + (type solid) + ) + (fill no) + (layer "F.CrtYd") + (uuid "68d6f940-041b-4067-9651-f89af36da996") + ) + (fp_rect + (start -1 -0.625) + (end 1 0.625) + (stroke + (width 0.1) + (type solid) + ) + (fill no) + (layer "F.Fab") + (uuid "6d200120-64d9-43c2-aed9-21b07f6d3f87") + ) + (fp_text user "${REFERENCE}" + (at 0 0 0) + (layer "F.Fab") + (uuid "3adac4ba-5498-4307-af33-6456b3ac8529") + (effects + (font + (size 0.5 0.5) + (thickness 0.08) + ) + ) + ) + (pad "1" smd roundrect + (at -1.0375 0) + (size 1.175 1.45) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.212766) + (net 81 "/12V_DC-Regulated") + (pintype "passive") + (uuid "fe24a0f6-8b38-479f-8481-414b69e33cdb") + ) + (pad "2" smd roundrect + (at 1.0375 0) + (size 1.175 1.45) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.212766) + (net 1 "GND") + (pintype "passive") + (uuid "86e3e0b5-5f3a-4e6d-b2a8-ccf23a9a99d6") + ) + (embedded_fonts no) + (model "${KICAD9_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.step" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Diode_SMD:D_SMA" + (layer "F.Cu") + (uuid "50bdf7f4-bea9-4bb3-8be0-f38c36b28a8f") + (at 113.06 91.22) + (descr "Diode SMA (DO-214AC)") + (tags "Diode SMA (DO-214AC)") + (property "Reference" "D4" + (at 0 -2.5 0) + (layer "F.SilkS") + (uuid "cf36b4f9-ca90-482f-8924-97a2254de1e7") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "SS54" + (at 0 2.6 0) + (layer "F.Fab") + (uuid "8e912c6d-a44e-4258-a6bf-e784d0f2945e") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "https://www.laro.com.pl/pdf/ss56.pdf" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "8ac1bc7c-621f-4a18-9592-893406aee050") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "SMC Schottky diode, 40V, 5A, Alternate KiCAD Library" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "71f4baba-e064-4e0b-a57d-986056b8375d") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Link" "https://robu.in/product/ss54b-slkor-40v-550mv5a-5a-smbdo-214aa-schottky-diodes-rohs/?gad_source=1&gad_campaignid=17427802703&gbraid=0AAAAADvLFWeYd6KQJmaof5AqwX7G6G7RK&gclid=CjwKCAjw687NBhB4EiwAQ645dhFgK7QWTnrPqJBCFVMKkjTLbr6I5VJmPHffxaZ_pS_3KzeiLFGuoBoCukcQAvD_BwE" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "802dfb52-5fb1-4806-85cd-6ffc3915da58") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "TO-???* *_Diode_* *SingleDiode* D_*") + (path "/8c3bbfe4-173b-48ec-9479-d50d8bb663e7") + (sheetname "/") + (sheetfile "SmartFuseBox.kicad_sch") + (attr smd) + (fp_line + (start -3.51 -1.65) + (end -3.51 1.65) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "456cce82-9a40-4815-9a82-5bf8b7d4783e") + ) + (fp_line + (start -3.51 -1.65) + (end 2 -1.65) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "b3e1f946-46c0-4a5e-be54-6bb3abe66380") + ) + (fp_line + (start -3.51 1.65) + (end 2 1.65) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "80608dd6-3203-4f6f-85ef-247c1edd5ee2") + ) + (fp_line + (start -3.5 -1.75) + (end 3.5 -1.75) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "5d93a056-2088-4bce-a6db-0d94a475b986") + ) + (fp_line + (start -3.5 1.75) + (end -3.5 -1.75) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "c91f6c6a-e151-42af-9e0a-60a038b71c46") + ) + (fp_line + (start 3.5 -1.75) + (end 3.5 1.75) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "1770b626-352c-4302-b050-c8dee681b37f") + ) + (fp_line + (start 3.5 1.75) + (end -3.5 1.75) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "18ede520-a9e8-43ec-9ca4-070f64006390") + ) + (fp_line + (start -2.3 1.5) + (end -2.3 -1.5) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "021ab107-211c-4ca9-be11-77655be06d76") + ) + (fp_line + (start -0.64944 -0.79908) + (end -0.64944 0.80112) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "7aa447b7-0620-4cf5-86f9-ae34f4bdfd68") + ) + (fp_line + (start -0.64944 0.00102) + (end -1.55114 0.00102) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "902a93f6-d283-40f1-9fb4-8caf4e673c20") + ) + (fp_line + (start -0.64944 0.00102) + (end 0.50118 -0.79908) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "0f2e2ff7-827a-4e4a-827e-608afe90d4a2") + ) + (fp_line + (start -0.64944 0.00102) + (end 0.50118 0.75032) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "8e999866-fd52-48f8-8f00-13dc0031a5e4") + ) + (fp_line + (start 0.50118 0.00102) + (end 1.4994 0.00102) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "94950b9e-186e-4cf0-adad-dfb1dffcfa0e") + ) + (fp_line + (start 0.50118 0.75032) + (end 0.50118 -0.79908) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "9878461d-4d27-45df-8030-fb51393dd874") + ) + (fp_line + (start 2.3 -1.5) + (end -2.3 -1.5) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "d1cd9063-440e-47e3-97a2-2776336ecda2") + ) + (fp_line + (start 2.3 -1.5) + (end 2.3 1.5) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "60abd1a1-7c10-418b-a19f-d0b4fe03f48a") + ) + (fp_line + (start 2.3 1.5) + (end -2.3 1.5) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "acc01dfb-60f0-4f8a-bf63-ff5a58356e7c") + ) + (fp_text user "${REFERENCE}" + (at 0 -2.5 0) + (layer "F.Fab") + (uuid "45d1db0a-053a-4000-83ff-9c59a13f32fe") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (pad "1" smd roundrect + (at -2 0) + (size 2.5 1.8) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.1388888889) + (net 81 "/12V_DC-Regulated") + (pinfunction "K") + (pintype "passive") + (uuid "7b8f0685-fc15-478e-96ca-3bb1c841a5a4") + ) + (pad "2" smd roundrect + (at 2 0) + (size 2.5 1.8) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.1388888889) + (net 83 "R-2") + (pinfunction "A") + (pintype "passive") + (uuid "0f1c3d05-8ad8-4436-9ea9-1b16f163307a") + ) + (embedded_fonts no) + (model "${KICAD9_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SMA.step" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Relay_THT:Relay_SPDT_SANYOU_SRD_Series_Form_C" + (placed yes) + (layer "F.Cu") + (uuid "50f7a7b5-dd21-43df-ae34-34bda63e7f9a") + (at 72.66 110.52 -90) + (descr "relay Sanyou SRD series Form C http://www.sanyourelay.ca/public/products/pdf/SRD.pdf") + (tags "relay Sanyu SRD form C") + (property "Reference" "K8" + (at 9.1 -8.8 270) + (layer "F.SilkS") + (uuid "16c152fe-c5de-4266-9022-1bb6f512c4c5") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "SRD-12VDC-SL-C" + (at 8 -9.6 90) + (layer "F.Fab") + (uuid "b1895416-d8fc-4943-bb97-97f9329c761f") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "http://www.sanyourelay.ca/public/products/pdf/SRD.pdf" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "992b9aca-b7c5-4ab8-a58b-96adb1aec630") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "Sanyo SRD relay, Single Pole Miniature Power Relay," + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "483834a9-a280-48db-854a-167833c51066") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Link" "https://robu.in/product/1-month-warranty-1027/" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "d271fb92-c87e-47d3-9629-f33484982846") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "Relay*SPDT*SANYOU*SRD*Series*Form*C*") + (path "/2c5f50ec-7b9f-42fd-9280-be091af41623") + (sheetname "/") + (sheetfile "SmartFuseBox.kicad_sch") + (attr through_hole) + (fp_line + (start 18.4 7.8) + (end -1.4 7.8) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "84cf8743-fab3-4761-a498-4926e4c07546") + ) + (fp_line + (start 3.55 6.05) + (end 6.05 6.05) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "358fbbf3-a4fd-49c1-8d1f-dcd35fa874c7") + ) + (fp_line + (start 14.15 4.2) + (end 14.15 1.75) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "af02c619-f17c-40e6-bae0-a98b85e88cb0") + ) + (fp_line + (start 9.45 3.65) + (end 2.65 3.65) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "a0f2fa9e-e8d1-4606-b370-841cc82a1607") + ) + (fp_line + (start 4.05 1.85) + (end 4.05 -1.75) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "82c40772-a4da-4fea-88cc-7e0ffdbeebfb") + ) + (fp_line + (start 6.05 1.85) + (end 6.05 6.05) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "6d36bcd2-b99a-4bcd-9b8e-bd0c117a2f8e") + ) + (fp_line + (start 8.05 1.85) + (end 4.05 1.85) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "5bc85527-d04a-4086-ac6c-b8c7ad097ba6") + ) + (fp_line + (start 8.05 1.85) + (end 4.05 -1.75) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "edb0ac0c-b10f-4fcb-a3c0-a845deedec72") + ) + (fp_line + (start -1.4 1.2) + (end -1.4 7.8) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "84eefddc-e244-4792-9dd5-b66c3c9f5600") + ) + (fp_line + (start 2.65 0.05) + (end 2.65 3.65) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "399b85fa-8fec-4c59-abe7-381c6b148735") + ) + (fp_line + (start 2.65 0.05) + (end 1.85 0.05) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "2144113c-a136-43a2-8d76-175c87ce04f0") + ) + (fp_line + (start 9.45 0.05) + (end 9.45 3.65) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "91ce7549-419f-467e-b169-bf5209613a67") + ) + (fp_line + (start 9.45 0.05) + (end 10.95 0.05) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "6a09408c-2631-4b47-b64d-fff2b024fed9") + ) + (fp_line + (start 10.95 0.05) + (end 15.55 -2.45) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "0cc7b748-1cb3-4f7c-8436-13e9b810d401") + ) + (fp_line + (start 4.05 -1.75) + (end 8.05 -1.75) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "a5737ec7-fbf2-4d23-9c0f-cd3a9ad358db") + ) + (fp_line + (start 8.05 -1.75) + (end 8.05 1.85) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "347ce525-a7c1-476f-ad2c-bf370009d76d") + ) + (fp_line + (start 14.15 -4.2) + (end 14.15 -1.7) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "4fcc2623-6c02-4dfd-87f3-b9ac80a9cae4") + ) + (fp_line + (start 6.05 -5.95) + (end 6.05 -1.75) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "b54ee201-f30f-4995-be73-793544b7a381") + ) + (fp_line + (start 6.05 -5.95) + (end 3.55 -5.95) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "50e5f18c-c298-4d01-98ac-6d162052215b") + ) + (fp_line + (start -1.4 -7.8) + (end -1.4 -1.2) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "4c68b35e-ecce-4e1f-8204-12353cd68348") + ) + (fp_line + (start -1.4 -7.8) + (end 18.4 -7.8) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "ec548bb4-dfdf-4f05-a54c-895b84ba2312") + ) + (fp_line + (start 18.4 -7.8) + (end 18.4 7.8) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "f7b67716-3f1b-4aab-bbc8-9b97dea20f5a") + ) + (fp_line + (start -1.55 7.95) + (end 18.55 7.95) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "0311b1ff-5eab-4432-892e-37ea8970101c") + ) + (fp_line + (start -1.55 7.95) + (end -1.55 -7.95) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "0af1efb4-6b47-4de2-b99d-ad4aa46fe50b") + ) + (fp_line + (start 18.55 -7.95) + (end 18.55 7.95) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "6ce33f2a-e916-4c23-b450-852a2404b2a3") + ) + (fp_line + (start 18.55 -7.95) + (end -1.55 -7.95) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "98870777-f990-4af9-8528-9f7b9e330289") + ) + (fp_line + (start -1.3 7.7) + (end -1.3 -7.7) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.Fab") + (uuid "e74a039b-2eee-44ec-bcd7-d5fd52d07547") + ) + (fp_line + (start 18.3 7.7) + (end -1.3 7.7) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.Fab") + (uuid "d33172bc-0b11-46e7-9971-ac0cc6663f01") + ) + (fp_line + (start -1.3 -7.7) + (end 18.3 -7.7) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.Fab") + (uuid "348b247b-171a-456b-9cfc-f30d6471f9e1") + ) + (fp_line + (start 18.3 -7.7) + (end 18.3 7.7) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.Fab") + (uuid "9e4adf6b-3a9c-4e32-a834-65fab9a343cb") + ) + (fp_text user "1" + (at 0 -2.3 90) + (layer "F.Fab") + (uuid "c37fc6a2-228f-44ec-ad6b-b28e702a3463") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (fp_text user "${REFERENCE}" + (at 7.1 0.025 90) + (layer "F.Fab") + (uuid "f93b6634-ac70-4b55-8645-2dc0eb82a546") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (pad "1" thru_hole circle + (at 0 0) + (size 3 3) + (drill 1.3) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 32 "COM_8") + (pintype "passive") + (uuid "364b8bd6-d990-474c-bdcb-7543e32dfbb6") + ) + (pad "2" thru_hole circle + (at 1.95 6.05) + (size 2.5 2.5) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 89 "R-8") + (pintype "passive") + (uuid "86ade559-9d1c-4927-96b4-dc9427f50044") + ) + (pad "3" thru_hole circle + (at 14.15 6.05) + (size 3 3) + (drill 1.3) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 33 "NO_8") + (pintype "passive") + (uuid "ec9f1d2e-1901-477e-a9ca-ab742f48f05c") + ) + (pad "4" thru_hole circle + (at 14.2 -6) + (size 3 3) + (drill 1.3) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 31 "NC_8") + (pintype "passive") + (uuid "d270e4aa-b6f8-4ac8-a5ac-e8bd3c4f244e") + ) + (pad "5" thru_hole circle + (at 1.95 -5.95) + (size 2.5 2.5) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 81 "/12V_DC-Regulated") + (pintype "passive") + (uuid "50bbc067-4074-4f9e-a242-98e4f3bdf7cd") + ) + (embedded_fonts no) + (model "${KICAD9_3DMODEL_DIR}/Relay_THT.3dshapes/Relay_SPDT_SANYOU_SRD_Series_Form_C.step" + (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" + (placed yes) + (layer "F.Cu") + (uuid "547fe279-16e3-4c8f-a60a-77e526615399") + (at 89.26 90.4575 90) + (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 "Reference" "C7" + (at 0 -1.68 90) + (layer "F.SilkS") + (uuid "0c1f8daa-cb1d-462a-b489-f43e48a47da3") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "0.1uf" + (at 0 1.68 90) + (layer "F.Fab") + (uuid "01681467-6f4e-4ed1-ae48-cab5bfe02f5a") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "~" + (at 0 0 90) + (layer "F.Fab") + (hide yes) + (uuid "35a66a6f-891a-424f-985e-6a1926915b8b") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "Unpolarized capacitor" + (at 0 0 90) + (layer "F.Fab") + (hide yes) + (uuid "a6b9addb-35bf-43a7-b722-670c05776422") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Link" "https://robu.in/product/cl21a106kofnnne-samsang-16v-10uf-x5r-%C2%B110-0805-multilayer-ceramic-capacitors-mlcc-smd-smt-rohs/?gad_source=1&gad_campaignid=17427802703&gbraid=0AAAAADvLFWeYd6KQJmaof5AqwX7G6G7RK&gclid=CjwKCAjw687NBhB4EiwAQ645dvOPfam1y5aCD1uRQvjlmer72tAuxihwH4D1G8BPdKh6SRiWARJldBoCKCYQAvD_BwE" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "4ee3194d-3015-4833-b23e-f6f20dfe1edc") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "C_*") + (path "/0c457dfb-8e47-4001-92d7-549c9ef7818e") + (sheetname "/") + (sheetfile "SmartFuseBox.kicad_sch") + (attr smd) + (fp_line + (start -0.261252 -0.735) + (end 0.261252 -0.735) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "5d9b3485-a261-4248-91ce-a6ab204d9649") + ) + (fp_line + (start -0.261252 0.735) + (end 0.261252 0.735) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "839d7eee-2c46-41fe-8297-3de26d423502") + ) + (fp_rect + (start -1.88 -0.98) + (end 1.88 0.98) + (stroke + (width 0.05) + (type solid) + ) + (fill no) + (layer "F.CrtYd") + (uuid "7f944998-31f8-4644-a59b-90e9d1a4e1ef") + ) + (fp_rect + (start -1 -0.625) + (end 1 0.625) + (stroke + (width 0.1) + (type solid) + ) + (fill no) + (layer "F.Fab") + (uuid "94f21ccf-ba70-4531-80e5-234d2a3a9fe5") + ) + (fp_text user "${REFERENCE}" + (at 0 0 90) + (layer "F.Fab") + (uuid "76d57e87-5ff0-4eed-8554-a8b77e74b2f7") + (effects + (font + (size 0.5 0.5) + (thickness 0.08) + ) + ) + ) + (pad "1" smd roundrect + (at -1.0375 0 90) + (size 1.175 1.45) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.212766) + (net 81 "/12V_DC-Regulated") + (pintype "passive") + (uuid "c1c54656-6ca8-4b92-854b-b6219fc98876") + ) + (pad "2" smd roundrect + (at 1.0375 0 90) + (size 1.175 1.45) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.212766) + (net 1 "GND") + (pintype "passive") + (uuid "43441bdb-5a92-4014-8c6c-1f57caa3e9be") + ) + (embedded_fonts no) + (model "${KICAD9_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.step" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Passives:R_0805_2012Metric_Pad1.20x1.40mm_HandSolder" + (placed yes) + (layer "F.Cu") + (uuid "5508438d-a572-4121-ad03-238a7859267a") + (at 180.31 113.02 -90) + (descr "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") + (tags "resistor handsolder") + (property "Reference" "R17" + (at 0 -1.65 90) + (layer "F.SilkS") + (hide yes) + (uuid "3a0c6d48-aa7f-43d0-a15d-b721e0f8d60a") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "44.2k" + (at 0 1.65 90) + (layer "F.Fab") + (uuid "f4ec93d3-5d9b-421e-a3d1-a54bb00ae586") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "e940b070-4392-4528-abc4-6606556e5ea1") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "resistor" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "00526159-684a-4bab-815a-fcc6871f94f9") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Indicator" "+" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "f0f6a7a2-0132-4ee0-86dc-8e2244030e19") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Rating" "W" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "b804439c-7c62-4af1-a682-86383bfe21d1") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (path "/b46935d7-166e-4ef5-bdeb-0e2ae1f3c9e4") + (sheetname "/") + (sheetfile "SmartFuseBox.kicad_sch") + (attr smd) + (fp_line + (start -0.227064 0.735) + (end 0.227064 0.735) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "c6190035-6b70-41d4-9127-41ec1d09c1dd") + ) + (fp_line + (start -0.227064 -0.735) + (end 0.227064 -0.735) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "0e815c30-beeb-4ed6-bf33-9dee7ea16a28") + ) + (fp_line + (start -1.85 0.95) + (end -1.85 -0.95) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "77433a57-1e5e-4d81-94fd-a5fe2db403d8") + ) + (fp_line + (start 1.85 0.95) + (end -1.85 0.95) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "11010ed4-87a3-4ad3-ac9d-c8fdbf95cf21") + ) + (fp_line + (start -1.85 -0.95) + (end 1.85 -0.95) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "419c0995-0734-4edc-9fd9-fcd1d01652ac") + ) + (fp_line + (start 1.85 -0.95) + (end 1.85 0.95) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "27378bd8-add2-4639-8ba3-ae064a012697") + ) + (fp_line + (start -1 0.625) + (end -1 -0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "efcf99c2-0476-46b1-a885-c1ccf0373b59") + ) + (fp_line + (start 1 0.625) + (end -1 0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "b2e244a8-0b47-462b-b92e-8c7bb96b9387") + ) + (fp_line + (start -1 -0.625) + (end 1 -0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "98e9083a-aa67-47b1-9177-af1156a6f676") + ) + (fp_line + (start 1 -0.625) + (end 1 0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "b6451c6d-897e-4840-b4e4-28502d1943c0") + ) + (fp_text user "${REFERENCE}" + (at 0 0 90) + (layer "F.Fab") + (uuid "3b09585a-23f1-428d-9a69-a80f340f4875") + (effects + (font + (size 0.5 0.5) + (thickness 0.08) + ) + ) + ) + (pad "1" smd roundrect + (at -1 0 90) + (size 1.2 1.4) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.208333) + (net 79 "Net-(R16-+)") + (pinfunction "+") + (pintype "passive") + (uuid "d0250f16-fdac-4d92-84f9-4ca9dc1eba63") + ) + (pad "2" smd roundrect + (at 1 0 90) + (size 1.2 1.4) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.208333) + (net 2 "5V") + (pinfunction "-") + (pintype "passive") + (uuid "ef0e6383-99a6-4ede-8291-0c861a72f1af") + ) + (embedded_fonts no) + (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Modules_Sensors:XCVR_ESP32-S3-DEVKITC-1-N16R8V" + (layer "F.Cu") + (uuid "55789a85-03b7-4b6b-8ae6-517637b262cc") + (at 160.03 96.43) + (property "Reference" "U6" + (at 14.63 -8.61 0) + (layer "F.SilkS") + (uuid "7aa09552-0967-4c3e-8bb4-3a8492a5fd9c") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "ESP32-S3-DEVKITC-1-N16R8V" + (at 6.1 33.255 0) + (layer "F.Fab") + (uuid "6d77c614-ef1c-415f-81c8-d3ed0d5aae2e") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "b7016e6e-039c-486c-bf60-4e9cdd07da9c") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "4f3b4dc0-69d4-4095-984b-7383e489e789") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "MF" "Espressif Systems" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "fecf641f-d04a-4020-af5b-5628e48f4249") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "MAXIMUM_PACKAGE_HEIGHT" "7.39mm" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "037b3975-ac54-43e3-9172-abf3fded7dcf") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "CREATOR" "RODRIGO" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "d9843fa1-b881-4c2c-9115-c87044ca4927") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Price" "None" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "a046175d-764b-4a37-8673-9ce1ff39babf") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Package" "None" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "16596cd2-379c-4b11-bb48-280c9b8f4d37") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Check_prices" "https://www.snapeda.com/parts/ESP32-S3-DEVKITC-1-N16R8V/Espressif+Systems/view-part/?ref=eda" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "2bfa0ccc-90d2-4a85-b1d1-12bf3fe7f40d") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "STANDARD" "Manufacturer Recommendations" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "d4bf9b9e-5622-4389-8cf0-ca2324fb3ce9") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "PARTREV" "1.1" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "f136f31c-26c9-4136-9e45-f523c33d29a5") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "VERIFIER" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "ef2fc802-d005-4055-8d7e-e0e0201b254e") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "SnapEDA_Link" "https://www.snapeda.com/parts/ESP32-S3-DEVKITC-1-N16R8V/Espressif+Systems/view-part/?ref=snap" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "7b5d88b5-bc73-4a19-bb9b-bc9aac1930c9") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "MP" "ESP32-S3-DEVKITC-1-N16R8V" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "40c89412-e0ed-40d9-a0fa-fd662295fc20") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Description_1" "Development Boards & Kits - Wireless Gen-Purpose Dev Board, embeds ESP32-S3-WROOM-2-N16R8V, 16 MB Octal Flash, 8 MB Octal PSRAM, with Pin Header" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "0b9c7dfc-6658-470c-8e71-a14475918beb") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Availability" "Not in stock" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "af08bc56-8d64-4bea-82c0-1af37d25830e") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "MANUFACTURER" "Espressif Systems" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "9cf8f3e5-7846-46c3-985d-fe7bb9f13c70") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (path "/7154f8bf-f732-412f-9576-62d66a5240a5") + (sheetname "/") + (sheetfile "SmartFuseBox.kicad_sch") + (attr through_hole) + (fp_line + (start -12.7 -31.37) + (end 12.7 -31.37) + (stroke + (width 0.127) + (type solid) + ) + (layer "F.SilkS") + (uuid "7bbf177e-afb2-49fa-a845-4fcdbfa26d3a") + ) + (fp_line + (start -12.7 31.37) + (end -12.7 -31.37) + (stroke + (width 0.127) + (type solid) + ) + (layer "F.SilkS") + (uuid "e24d49ab-eaf0-45b2-975a-83d7d150aeb3") + ) + (fp_line + (start 12.7 -31.37) + (end 12.7 31.37) + (stroke + (width 0.127) + (type solid) + ) + (layer "F.SilkS") + (uuid "217fb12e-d829-4ada-9c18-bb39d30f1f4f") + ) + (fp_line + (start 12.7 31.37) + (end -12.7 31.37) + (stroke + (width 0.127) + (type solid) + ) + (layer "F.SilkS") + (uuid "4c500d74-f4ff-4383-98c6-5425ad2d648b") + ) + (fp_circle + (center -13.716 -29.972) + (end -13.616 -29.972) + (stroke + (width 0.2) + (type solid) + ) + (fill no) + (layer "F.SilkS") + (uuid "d8bacada-16d5-4754-bb6a-68b3b49e608b") + ) + (fp_line + (start -12.95 -37.92) + (end -12.95 32.21) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "e5163f93-c8e8-45f4-8bf3-1f14032641ae") + ) + (fp_line + (start -12.95 32.21) + (end 12.95 32.21) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "2fb802e4-8d79-4212-8262-711b16c15441") + ) + (fp_line + (start 12.95 -37.92) + (end -12.95 -37.92) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "a17da136-a9ef-49f1-a27e-0359b79c1bd2") + ) + (fp_line + (start 12.95 32.21) + (end 12.95 -37.92) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "58cc56d0-1040-4883-969b-3938e9e4a176") + ) + (fp_line + (start -12.7 -31.37) + (end 12.7 -31.37) + (stroke + (width 0.127) + (type solid) + ) + (layer "F.Fab") + (uuid "14d0fd47-831e-4fe7-921d-92eac60f3102") + ) + (fp_line + (start -12.7 31.37) + (end -12.7 -31.37) + (stroke + (width 0.127) + (type solid) + ) + (layer "F.Fab") + (uuid "92c4c763-3907-4215-bcb6-5ad35c19723b") + ) + (fp_line + (start 12.7 -31.37) + (end 12.7 31.37) + (stroke + (width 0.127) + (type solid) + ) + (layer "F.Fab") + (uuid "3df7958b-cd48-4169-9314-1517bcaf925e") + ) + (fp_line + (start 12.7 31.37) + (end -12.7 31.37) + (stroke + (width 0.127) + (type solid) + ) + (layer "F.Fab") + (uuid "a9528ec9-3b68-4aa8-a52a-53252b1fcf2f") + ) + (fp_circle + (center -13.716 -29.972) + (end -13.616 -29.972) + (stroke + (width 0.2) + (type solid) + ) + (fill no) + (layer "F.Fab") + (uuid "8cac13c9-9e84-451d-884f-84e0a291ff6d") + ) + (pad "J1_1" thru_hole rect + (at -11.43 -29.97) + (size 1.53 1.53) + (drill 1.02) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 3 "VDD33") + (pinfunction "3V3") + (pintype "power_in") + (solder_mask_margin 0.102) + (uuid "d49d23ea-d622-4645-8ce2-00735dbd5ec1") + ) + (pad "J1_2" thru_hole circle + (at -11.43 -27.43) + (size 1.53 1.53) + (drill 1.02) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 3 "VDD33") + (pinfunction "3V3") + (pintype "power_in") + (solder_mask_margin 0.102) + (uuid "5632247f-ce00-4b50-987b-f68713af0259") + ) + (pad "J1_3" thru_hole circle + (at -11.43 -24.89) + (size 1.53 1.53) + (drill 1.02) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 68 "unconnected-(U6-RST-PadJ1_3)") + (pinfunction "RST") + (pintype "input+no_connect") + (solder_mask_margin 0.102) + (uuid "b53bc4b5-cabf-4cb0-abaa-976074f0048b") + ) + (pad "J1_4" thru_hole circle + (at -11.43 -22.35) + (size 1.53 1.53) + (drill 1.02) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 39 "RELAY_1") + (pinfunction "GPIO4") + (pintype "bidirectional") + (solder_mask_margin 0.102) + (uuid "ae9836d8-db2b-4da8-a02e-7745568b0127") + ) + (pad "J1_5" thru_hole circle + (at -11.43 -19.81) + (size 1.53 1.53) + (drill 1.02) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 40 "RELAY_2") + (pinfunction "GPIO5") + (pintype "bidirectional") + (solder_mask_margin 0.102) + (uuid "c6c80422-9f02-4b26-b530-356c1c1bcd9a") + ) + (pad "J1_6" thru_hole circle + (at -11.43 -17.27) + (size 1.53 1.53) + (drill 1.02) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 41 "RELAY_3") + (pinfunction "GPIO6") + (pintype "bidirectional") + (solder_mask_margin 0.102) + (uuid "451806bc-adcc-4a45-a6a3-ed493be20f1c") + ) + (pad "J1_7" thru_hole circle + (at -11.43 -14.73) + (size 1.53 1.53) + (drill 1.02) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 42 "RELAY_4") + (pinfunction "GPIO7") + (pintype "bidirectional") + (solder_mask_margin 0.102) + (uuid "27f486e8-aa69-4d0e-8ed8-82fda8ac8fed") + ) + (pad "J1_8" thru_hole circle + (at -11.43 -12.19) + (size 1.53 1.53) + (drill 1.02) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 44 "RELAY_5") + (pinfunction "GPIO15") + (pintype "bidirectional") + (solder_mask_margin 0.102) + (uuid "5ff5440b-9cce-44fd-acc6-425e30ea5801") + ) + (pad "J1_9" thru_hole circle + (at -11.43 -9.65) + (size 1.53 1.53) + (drill 1.02) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 45 "RELAY_6") + (pinfunction "GPIO16") + (pintype "bidirectional") + (solder_mask_margin 0.102) + (uuid "c21fb6da-52fd-43fd-91bd-77e2c5b16789") + ) + (pad "J1_10" thru_hole circle + (at -11.43 -7.11) + (size 1.53 1.53) + (drill 1.02) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 47 "RELAY_7") + (pinfunction "GPIO17") + (pintype "bidirectional") + (solder_mask_margin 0.102) + (uuid "965efb81-e246-41e4-8c94-cafb09016460") + ) + (pad "J1_11" thru_hole circle + (at -11.43 -4.57) + (size 1.53 1.53) + (drill 1.02) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 48 "RELAY_8") + (pinfunction "GPIO18") + (pintype "bidirectional") + (solder_mask_margin 0.102) + (uuid "80e45e91-1836-4d08-8bd3-dd77df0abcf0") + ) + (pad "J1_12" thru_hole circle + (at -11.43 -2.03) + (size 1.53 1.53) + (drill 1.02) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 34 "SIG_A1") + (pinfunction "GPIO8") + (pintype "bidirectional") + (solder_mask_margin 0.102) + (uuid "944cd1a5-76a7-4f58-9bce-32a688183c34") + ) + (pad "J1_13" thru_hole circle + (at -11.43 0.51) + (size 1.53 1.53) + (drill 1.02) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 54 "unconnected-(U6-GPIO3-PadJ1_13)") + (pinfunction "GPIO3") + (pintype "bidirectional+no_connect") + (solder_mask_margin 0.102) + (uuid "198b2cb0-7410-4053-896e-af7b9e2a8bf4") + ) + (pad "J1_14" thru_hole circle + (at -11.43 3.05) + (size 1.53 1.53) + (drill 1.02) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 58 "unconnected-(U6-GPIO46-PadJ1_14)") + (pinfunction "GPIO46") + (pintype "bidirectional+no_connect") + (solder_mask_margin 0.102) + (uuid "3959f975-7271-41cb-a010-2e324d23bbf0") + ) + (pad "J1_15" thru_hole circle + (at -11.43 5.59) + (size 1.53 1.53) + (drill 1.02) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 35 "SIG_A2") + (pinfunction "GPIO9") + (pintype "bidirectional") + (solder_mask_margin 0.102) + (uuid "42d8641c-050a-4bb1-b84a-6f29d667c476") + ) + (pad "J1_16" thru_hole circle + (at -11.43 8.13) + (size 1.53 1.53) + (drill 1.02) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 37 "SIG_A3") + (pinfunction "GPIO10") + (pintype "bidirectional") + (solder_mask_margin 0.102) + (uuid "f0af447e-8c15-4316-a047-ceb00b68a993") + ) + (pad "J1_17" thru_hole circle + (at -11.43 10.67) + (size 1.53 1.53) + (drill 1.02) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 36 "SIG_A4") + (pinfunction "GPIO11") + (pintype "bidirectional") + (solder_mask_margin 0.102) + (uuid "d9cb90fe-686e-4b03-b99b-fb6c737cbaaa") + ) + (pad "J1_18" thru_hole circle + (at -11.43 13.21) + (size 1.53 1.53) + (drill 1.02) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 64 "SIG_A5") + (pinfunction "GPIO12") + (pintype "bidirectional") + (solder_mask_margin 0.102) + (uuid "99d68882-b5ef-4db5-907f-a00b6a9f78cc") + ) + (pad "J1_19" thru_hole circle + (at -11.43 15.75) + (size 1.53 1.53) + (drill 1.02) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 53 "SIG_A6") + (pinfunction "GPIO13") + (pintype "bidirectional") + (solder_mask_margin 0.102) + (uuid "129c1245-437b-4e8b-bc08-2e3a4119c581") + ) + (pad "J1_20" thru_hole circle + (at -11.43 18.29) + (size 1.53 1.53) + (drill 1.02) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 62 "unconnected-(U6-GPIO14-PadJ1_20)") + (pinfunction "GPIO14") + (pintype "bidirectional+no_connect") + (solder_mask_margin 0.102) + (uuid "93b370d6-5862-41f8-8fa0-4ff42ae20015") + ) + (pad "J1_21" thru_hole circle + (at -11.43 20.83) + (size 1.53 1.53) + (drill 1.02) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 2 "5V") + (pinfunction "5V0") + (pintype "power_in") + (solder_mask_margin 0.102) + (uuid "71a3bd39-f0ee-46ff-89ce-312166ee12b3") + ) + (pad "J1_22" thru_hole circle + (at -11.43 23.37) + (size 1.53 1.53) + (drill 1.02) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 1 "GND") + (pinfunction "GND") + (pintype "power_in") + (solder_mask_margin 0.102) + (uuid "b792f974-73c2-40be-a204-4327998dbe8a") + ) + (pad "J3_1" thru_hole circle + (at 11.43 -29.97) + (size 1.53 1.53) + (drill 1.02) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 1 "GND") + (pinfunction "GND") + (pintype "power_in") + (solder_mask_margin 0.102) + (uuid "5975fae5-0a6a-486b-abe7-7917f60c015e") + ) + (pad "J3_2" thru_hole circle + (at 11.43 -27.43) + (size 1.53 1.53) + (drill 1.02) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 51 "ESP_TX") + (pinfunction "U0TXD/GPIO43") + (pintype "bidirectional") + (solder_mask_margin 0.102) + (uuid "001d5811-1868-4d48-9381-40742a885ee9") + ) + (pad "J3_3" thru_hole circle + (at 11.43 -24.89) + (size 1.53 1.53) + (drill 1.02) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 52 "ESP_RX") + (pinfunction "U0RXD/GPIO44") + (pintype "bidirectional") + (solder_mask_margin 0.102) + (uuid "ff77e0f5-5574-44dc-81e2-2e78c6159727") + ) + (pad "J3_4" thru_hole circle + (at 11.43 -22.35) + (size 1.53 1.53) + (drill 1.02) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 43 "BUZZER") + (pinfunction "GPIO1") + (pintype "bidirectional") + (solder_mask_margin 0.102) + (uuid "9a7d425a-f6a3-4a7d-b5c7-c3b4a886f7e1") + ) + (pad "J3_5" thru_hole circle + (at 11.43 -19.81) + (size 1.53 1.53) + (drill 1.02) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 49 "DS18B20_OUT") + (pinfunction "GPIO2") + (pintype "bidirectional") + (solder_mask_margin 0.102) + (uuid "591056af-5391-4fd5-a680-bec755c9b3b3") + ) + (pad "J3_6" thru_hole circle + (at 11.43 -17.27) + (size 1.53 1.53) + (drill 1.02) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 65 "unconnected-(U6-MTMS{slash}GPIO42-PadJ3_6)") + (pinfunction "MTMS/GPIO42") + (pintype "bidirectional+no_connect") + (solder_mask_margin 0.102) + (uuid "9d4df25a-2e69-4fb8-a160-ef5bdab321ad") + ) + (pad "J3_7" thru_hole circle + (at 11.43 -14.73) + (size 1.53 1.53) + (drill 1.02) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 70 "unconnected-(U6-MTDI{slash}GPIO41-PadJ3_7)") + (pinfunction "MTDI/GPIO41") + (pintype "bidirectional+no_connect") + (solder_mask_margin 0.102) + (uuid "b9c366a4-f28f-497a-bf4d-337ce6a7c384") + ) + (pad "J3_8" thru_hole circle + (at 11.43 -12.19) + (size 1.53 1.53) + (drill 1.02) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 72 "unconnected-(U6-MTDO{slash}GPIO40-PadJ3_8)") + (pinfunction "MTDO/GPIO40") + (pintype "bidirectional+no_connect") + (solder_mask_margin 0.102) + (uuid "dbb305cf-8585-4223-bffc-a56b1713a137") + ) + (pad "J3_9" thru_hole circle + (at 11.43 -9.65) + (size 1.53 1.53) + (drill 1.02) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 57 "unconnected-(U6-MTCK{slash}GPIO39-PadJ3_9)") + (pinfunction "MTCK/GPIO39") + (pintype "bidirectional+no_connect") + (solder_mask_margin 0.102) + (uuid "32594a6a-03ee-4439-979a-170b676123ea") + ) + (pad "J3_10" thru_hole circle + (at 11.43 -7.11) + (size 1.53 1.53) + (drill 1.02) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 71 "unconnected-(U6-GPIO38-PadJ3_10)") + (pinfunction "GPIO38") + (pintype "bidirectional+no_connect") + (solder_mask_margin 0.102) + (uuid "db913987-65fd-4180-bf5a-751d205c2fa7") + ) + (pad "J3_11" thru_hole circle + (at 11.43 -4.57) + (size 1.53 1.53) + (drill 1.02) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 61 "unconnected-(U6-GPIO37-PadJ3_11)") + (pinfunction "GPIO37") + (pintype "bidirectional+no_connect") + (solder_mask_margin 0.102) + (uuid "9378e7ba-c250-483c-969b-9498a690d253") + ) + (pad "J3_12" thru_hole circle + (at 11.43 -2.03) + (size 1.53 1.53) + (drill 1.02) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 73 "unconnected-(U6-GPIO36-PadJ3_12)") + (pinfunction "GPIO36") + (pintype "bidirectional+no_connect") + (solder_mask_margin 0.102) + (uuid "f8874152-7e80-427a-926b-71759681aab4") + ) + (pad "J3_13" thru_hole circle + (at 11.43 0.51) + (size 1.53 1.53) + (drill 1.02) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 63 "unconnected-(U6-GPIO35-PadJ3_13)") + (pinfunction "GPIO35") + (pintype "bidirectional+no_connect") + (solder_mask_margin 0.102) + (uuid "946c14f6-58f6-4d36-9787-47503422d615") + ) + (pad "J3_14" thru_hole circle + (at 11.43 3.05) + (size 1.53 1.53) + (drill 1.02) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 59 "unconnected-(U6-GPIO0-PadJ3_14)") + (pinfunction "GPIO0") + (pintype "bidirectional+no_connect") + (solder_mask_margin 0.102) + (uuid "3d6b7c92-13ec-4877-9f03-e1531d930df0") + ) + (pad "J3_15" thru_hole circle + (at 11.43 5.59) + (size 1.53 1.53) + (drill 1.02) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 66 "unconnected-(U6-GPIO45-PadJ3_15)") + (pinfunction "GPIO45") + (pintype "bidirectional+no_connect") + (solder_mask_margin 0.102) + (uuid "a454df10-47ee-4771-ba6d-71a358214a62") + ) + (pad "J3_16" thru_hole circle + (at 11.43 8.13) + (size 1.53 1.53) + (drill 1.02) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 67 "unconnected-(U6-GPIO48-PadJ3_16)") + (pinfunction "GPIO48") + (pintype "bidirectional+no_connect") + (solder_mask_margin 0.102) + (uuid "aa154c3c-976e-4410-86c9-192409010a83") + ) + (pad "J3_17" thru_hole circle + (at 11.43 10.67) + (size 1.53 1.53) + (drill 1.02) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 55 "unconnected-(U6-GPIO47-PadJ3_17)") + (pinfunction "GPIO47") + (pintype "bidirectional+no_connect") + (solder_mask_margin 0.102) + (uuid "1aa25d8b-c672-4809-b87e-d84fedb9dcee") + ) + (pad "J3_18" thru_hole circle + (at 11.43 13.21) + (size 1.53 1.53) + (drill 1.02) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 91 "FAN") + (pinfunction "GPIO21") + (pintype "bidirectional") + (solder_mask_margin 0.102) + (uuid "b71f5ea8-829c-41ed-bb0c-116fe1ef8e36") + ) + (pad "J3_19" thru_hole circle + (at 11.43 15.75) + (size 1.53 1.53) + (drill 1.02) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 56 "unconnected-(U6-USB_D+{slash}GPIO20-PadJ3_19)") + (pinfunction "USB_D+/GPIO20") + (pintype "bidirectional+no_connect") + (solder_mask_margin 0.102) + (uuid "27e096a7-c185-4004-a955-c0c6c4893837") + ) + (pad "J3_20" thru_hole circle + (at 11.43 18.29) + (size 1.53 1.53) + (drill 1.02) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 60 "unconnected-(U6-USB_D-{slash}GPIO19-PadJ3_20)") + (pinfunction "USB_D-/GPIO19") + (pintype "bidirectional+no_connect") + (solder_mask_margin 0.102) + (uuid "598f0793-2378-43e5-8619-430df5165764") + ) + (pad "J3_21" thru_hole circle + (at 11.43 20.83) + (size 1.53 1.53) + (drill 1.02) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 1 "GND") + (pinfunction "GND") + (pintype "power_in") + (solder_mask_margin 0.102) + (uuid "dd4f2e71-83df-41e8-8323-384c826bea6d") + ) + (pad "J3_22" thru_hole circle + (at 11.43 23.37) + (size 1.53 1.53) + (drill 1.02) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 1 "GND") + (pinfunction "GND") + (pintype "power_in") + (solder_mask_margin 0.102) + (uuid "d1632b13-f15c-41ec-9a5e-96887f812ce8") + ) + (embedded_fonts no) + (model "${KICAD9_3DMODEL_DIR}/Connector_PinSocket_2.54mm.3dshapes/PinSocket_1x22_P2.54mm_Vertical.step" + (offset + (xyz 11.5 -23.5 -0.5) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz -180 -180 -0) + ) + ) + (model "${KICAD9_3DMODEL_DIR}/Connector_PinSocket_2.54mm.3dshapes/PinSocket_1x22_P2.54mm_Vertical.step" + (offset + (xyz -11.5 30 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz -0 -0 -0) + ) + ) + ) + (footprint "Diode_SMD:D_SMA" + (layer "F.Cu") + (uuid "578594e6-eb6c-4b86-85b8-e92cfbf39fa3") + (at 138.26 78.22 -90) + (descr "Diode SMA (DO-214AC)") + (tags "Diode SMA (DO-214AC)") + (property "Reference" "D3" + (at 0 -2.5 90) + (layer "F.SilkS") + (uuid "585e8229-258f-40b6-8a5b-0c7696641c73") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "SS54" + (at -0.2 3 90) + (layer "F.Fab") + (uuid "c592cd53-d503-4dfe-9748-2600504d1d2e") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "https://www.laro.com.pl/pdf/ss56.pdf" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "e34df07e-317a-4a1e-aa6c-463a5221ab79") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "SMC Schottky diode, 40V, 5A, Alternate KiCAD Library" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "c5e6a1b9-396f-49a5-a90f-1b5493df837f") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Link" "https://robu.in/product/ss54b-slkor-40v-550mv5a-5a-smbdo-214aa-schottky-diodes-rohs/?gad_source=1&gad_campaignid=17427802703&gbraid=0AAAAADvLFWeYd6KQJmaof5AqwX7G6G7RK&gclid=CjwKCAjw687NBhB4EiwAQ645dhFgK7QWTnrPqJBCFVMKkjTLbr6I5VJmPHffxaZ_pS_3KzeiLFGuoBoCukcQAvD_BwE" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "60e632aa-f370-4a09-a5b6-9d81e0815390") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "TO-???* *_Diode_* *SingleDiode* D_*") + (path "/ff476be0-03cf-4048-ba7c-e4995e22c410") + (sheetname "/") + (sheetfile "SmartFuseBox.kicad_sch") + (attr smd) + (fp_line + (start -3.51 1.65) + (end 2 1.65) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "894c5a50-3b92-4408-a221-e3437a549532") + ) + (fp_line + (start -3.51 -1.65) + (end -3.51 1.65) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "cea61298-21a7-44b5-b53c-ffe7c29a49ca") + ) + (fp_line + (start -3.51 -1.65) + (end 2 -1.65) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "02390abf-7845-4e37-9900-243d9fe413bb") + ) + (fp_line + (start -3.5 1.75) + (end -3.5 -1.75) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "848711a4-6d14-4946-8b8e-0e375d898bcf") + ) + (fp_line + (start 3.5 1.75) + (end -3.5 1.75) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "4680f537-5d5e-4834-8cf8-354246d954e8") + ) + (fp_line + (start -3.5 -1.75) + (end 3.5 -1.75) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "0056e6f1-60c1-4c8f-bc6c-8da92ec5dd21") + ) + (fp_line + (start 3.5 -1.75) + (end 3.5 1.75) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "b67361ea-ec6a-4d2d-a57a-f940d630aefd") + ) + (fp_line + (start -2.3 1.5) + (end -2.3 -1.5) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "65ff845d-de06-42f7-bb57-35f80936d85c") + ) + (fp_line + (start 2.3 1.5) + (end -2.3 1.5) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "79b9c305-580b-4a9e-bba1-fa380cb2235f") + ) + (fp_line + (start 0.50118 0.75032) + (end 0.50118 -0.79908) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "63e8ce6d-5625-48be-b4a8-4f141a6cc6bb") + ) + (fp_line + (start -0.64944 0.00102) + (end 0.50118 0.75032) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "d02899ae-c21a-4c85-b607-929c334cb860") + ) + (fp_line + (start -0.64944 0.00102) + (end -1.55114 0.00102) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "0bfb3a76-c8c5-41d4-9112-09bd95fd6596") + ) + (fp_line + (start -0.64944 0.00102) + (end 0.50118 -0.79908) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "974173a8-b026-4d2e-a193-1ef7ab41ff89") + ) + (fp_line + (start 0.50118 0.00102) + (end 1.4994 0.00102) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "db95262a-c26d-474a-80d0-09bf507c3bd1") + ) + (fp_line + (start -0.64944 -0.79908) + (end -0.64944 0.80112) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "1f24e339-ef5d-45a5-8831-c651e0b6aa4c") + ) + (fp_line + (start 2.3 -1.5) + (end 2.3 1.5) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "4ca3015a-ae4f-41fa-b3e1-9982bef73076") + ) + (fp_line + (start 2.3 -1.5) + (end -2.3 -1.5) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "148a0877-30f7-4151-a25a-a0e641261b98") + ) + (fp_text user "${REFERENCE}" + (at 0 -2.5 90) + (layer "F.Fab") + (uuid "86d55dbe-f8b9-426e-ad65-fd1bfcb998ef") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (pad "1" smd roundrect + (at -2 0 270) + (size 2.5 1.8) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.1388888889) + (net 81 "/12V_DC-Regulated") + (pinfunction "K") + (pintype "passive") + (uuid "f7c4f380-ec73-4df9-bcb8-d7d791e11e00") + ) + (pad "2" smd roundrect + (at 2 0 270) + (size 2.5 1.8) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.1388888889) + (net 82 "R-1") + (pinfunction "A") + (pintype "passive") + (uuid "3e00f4f7-240c-4030-ae7d-2c2ec896d516") + ) + (embedded_fonts no) + (model "${KICAD9_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SMA.step" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Passives:R_0805_2012Metric_Pad1.20x1.40mm_HandSolder" + (placed yes) + (layer "F.Cu") + (uuid "5b11c3b7-a506-4d5b-883b-2b7c5c5b7aab") + (at 182.96 118.42 -90) + (descr "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") + (tags "resistor handsolder") + (property "Reference" "R15" + (at 0 -1.65 90) + (layer "F.SilkS") + (hide yes) + (uuid "5957a74c-10bd-445c-a4ce-4abd3fe2d57e") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "8.2k" + (at 0 1.65 90) + (layer "F.Fab") + (uuid "9b5ba4e8-7caa-4d40-b29d-37549f0ac59a") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "ecd00056-1732-4fc3-8cc2-335e40b73195") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "resistor" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "291d9c50-38c2-4689-a012-2390859ff1a5") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Indicator" "+" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "c7566da4-b4fb-4ab1-8cc3-4441dbf2b9a8") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Rating" "W" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "60d46d9d-1d30-4560-a2eb-73f9f4a44b09") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (path "/8e08f0ce-698f-414b-a5eb-ef81f155d675") + (sheetname "/") + (sheetfile "SmartFuseBox.kicad_sch") + (attr smd) + (fp_line + (start -0.227064 0.735) + (end 0.227064 0.735) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "0f8a7618-2ddc-4e13-9094-9c1a41a19bb4") + ) + (fp_line + (start -0.227064 -0.735) + (end 0.227064 -0.735) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "792e1e42-2960-4198-9ec6-a7585cebdcbe") + ) + (fp_line + (start -1.85 0.95) + (end -1.85 -0.95) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "3e7d5bbc-32d2-4298-b7b4-2e262ec9bfa3") + ) + (fp_line + (start 1.85 0.95) + (end -1.85 0.95) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "31d62c9c-90f2-4504-8b3d-2835c732a4a2") + ) + (fp_line + (start -1.85 -0.95) + (end 1.85 -0.95) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "4f6da69c-dd40-4ab2-a55d-72c523268358") + ) + (fp_line + (start 1.85 -0.95) + (end 1.85 0.95) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "81d97e98-6e08-4dfb-842f-0c457b83e11b") + ) + (fp_line + (start -1 0.625) + (end -1 -0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "5b3c5928-88e8-49b3-8e0d-1c94796f8b36") + ) + (fp_line + (start 1 0.625) + (end -1 0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "7955efa9-21e4-486d-ae46-8baf20072f40") + ) + (fp_line + (start -1 -0.625) + (end 1 -0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "b98d31e5-d9ed-4649-a0a6-b575b38cae0e") + ) + (fp_line + (start 1 -0.625) + (end 1 0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "b406305e-07b7-4a4d-80aa-3ae85c627ee4") + ) + (fp_text user "${REFERENCE}" + (at 0 0 90) + (layer "F.Fab") + (uuid "d3f49aa2-6398-4687-af79-62b8f2b452a4") + (effects + (font + (size 0.5 0.5) + (thickness 0.08) + ) + ) + ) + (pad "1" smd roundrect + (at -1 0 90) + (size 1.2 1.4) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.208333) + (net 75 "Net-(R15-+)") + (pinfunction "+") + (pintype "passive") + (uuid "d52d0520-14cd-45dd-9bc1-b6d8960f8d86") + ) + (pad "2" smd roundrect + (at 1 0 90) + (size 1.2 1.4) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.208333) + (net 1 "GND") + (pinfunction "-") + (pintype "passive") + (uuid "32affeef-810d-4bfd-9a47-9f9916571b3d") + ) + (embedded_fonts no) + (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0805_2012Metric.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" + (placed yes) + (layer "F.Cu") + (uuid "5b432c01-f589-4087-827d-14de4c90d764") + (at 176.36 106.32 90) + (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 "Reference" "C33" + (at -0.3 -1.8 90) + (layer "F.SilkS") + (uuid "cae8db92-28b1-4c46-9d24-d3e12b60806b") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "12uf" + (at 0 1.68 90) + (layer "F.Fab") + (uuid "dcd7c668-ce75-4eda-95c9-c4ff07d1f0bc") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "~" + (at 0 0 90) + (layer "F.Fab") + (hide yes) + (uuid "aa2d8142-9fe1-4c54-bb6b-c3095f233612") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "Unpolarized capacitor" + (at 0 0 90) + (layer "F.Fab") + (hide yes) + (uuid "26f60fcb-b603-4a71-9574-9275d2441db4") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Link" "https://robu.in/product/cl21a106kofnnne-samsang-16v-10uf-x5r-%C2%B110-0805-multilayer-ceramic-capacitors-mlcc-smd-smt-rohs/?gad_source=1&gad_campaignid=17427802703&gbraid=0AAAAADvLFWeYd6KQJmaof5AqwX7G6G7RK&gclid=CjwKCAjw687NBhB4EiwAQ645dvOPfam1y5aCD1uRQvjlmer72tAuxihwH4D1G8BPdKh6SRiWARJldBoCKCYQAvD_BwE" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "9ece6a54-64a1-45ad-a7a0-2d4ea7d893fc") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "C_*") + (path "/2495645b-0e6d-4cfb-9f30-5f51562c9c00") + (sheetname "/") + (sheetfile "SmartFuseBox.kicad_sch") + (attr smd) + (fp_line + (start -0.261252 -0.735) + (end 0.261252 -0.735) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "b2223548-b64b-45ce-8e8c-220669cf5ff5") + ) + (fp_line + (start -0.261252 0.735) + (end 0.261252 0.735) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "e16fd279-f0f5-4fd6-8dee-4a6f5d55ad79") + ) + (fp_rect + (start -1.88 -0.98) + (end 1.88 0.98) + (stroke + (width 0.05) + (type solid) + ) + (fill no) + (layer "F.CrtYd") + (uuid "b8801ddb-4d98-4382-b4ab-33a9dd352808") + ) + (fp_rect + (start -1 -0.625) + (end 1 0.625) + (stroke + (width 0.1) + (type solid) + ) + (fill no) + (layer "F.Fab") + (uuid "c7076a68-7194-41f2-b012-6ff4a019009a") + ) + (fp_text user "${REFERENCE}" + (at 0 0 90) + (layer "F.Fab") + (uuid "a11a2e05-42fd-4bfc-a5b5-d677ae5f186f") + (effects + (font + (size 0.5 0.5) + (thickness 0.08) + ) + ) + ) + (pad "1" smd roundrect + (at -1.0375 0 90) + (size 1.175 1.45) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.212766) + (net 2 "5V") + (pintype "passive") + (uuid "a748ae62-9dbc-4013-ad24-e5c8b62fe43a") + ) + (pad "2" smd roundrect + (at 1.0375 0 90) + (size 1.175 1.45) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.212766) + (net 1 "GND") + (pintype "passive") + (uuid "37d8cba1-cb6b-4822-aeda-365fb9b28760") + ) + (embedded_fonts no) + (model "${KICAD9_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.step" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Passives:R_0805_2012Metric_Pad1.20x1.40mm_HandSolder" + (layer "F.Cu") + (uuid "5d25241b-6900-4c03-b17c-6bf0bac974e0") + (at 175.46 128.22 -90) + (descr "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") + (tags "resistor handsolder") + (property "Reference" "R12" + (at -3.42 -0.14 90) + (layer "F.SilkS") + (uuid "92d9f774-d152-4c62-ae9b-2bce3dd2895b") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "4.7k" + (at 0 1.65 90) + (layer "F.Fab") + (hide yes) + (uuid "506c6d55-8f24-4137-8e4a-1f588aad20a1") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "165055c9-0524-4307-a68d-c91e1d7dde57") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "resistor" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "5bf95225-9345-4aea-99de-20d8326e0edd") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Indicator" "+" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "66329ac0-f500-47f9-b6cd-f62714abca38") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Rating" "W" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "8a51a9dd-ea47-4888-ba71-7587fe99d728") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (path "/7d3f2573-1911-433f-a92a-b59b366eaaeb") + (sheetname "/") + (sheetfile "SmartFuseBox.kicad_sch") + (attr smd) + (fp_line + (start -0.227064 0.735) + (end 0.227064 0.735) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "c455830f-f2e0-45e3-a534-d557009aafc3") + ) + (fp_line + (start -0.227064 -0.735) + (end 0.227064 -0.735) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "493dfc40-4a2e-417f-90a3-f3cfb9ea3493") + ) + (fp_line + (start -1.85 0.95) + (end -1.85 -0.95) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "79462387-cbb6-4a76-8dfc-7cb8321ceda1") + ) + (fp_line + (start 1.85 0.95) + (end -1.85 0.95) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "d9b965f1-2e9d-4d38-a55a-e78eea001219") + ) + (fp_line + (start -1.85 -0.95) + (end 1.85 -0.95) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "86e8ade7-edef-40d2-bbbc-74b5fe5b5be1") + ) + (fp_line + (start 1.85 -0.95) + (end 1.85 0.95) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "ecb5c827-6635-4a8f-bbe7-e1fb546da453") + ) + (fp_line + (start -1 0.625) + (end -1 -0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "fad0f7c0-76f1-4fea-90f4-791835dfcece") + ) + (fp_line + (start 1 0.625) + (end -1 0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "7acd03b1-9606-407c-99fa-5bdd6450548f") + ) + (fp_line + (start -1 -0.625) + (end 1 -0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "7f18d3d8-0309-48c6-b7e5-712b368fcdab") + ) + (fp_line + (start 1 -0.625) + (end 1 0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "d5488271-b43d-47f8-a7aa-a3b3b71ae0c9") + ) + (fp_text user "${REFERENCE}" + (at 0 0 90) + (layer "F.Fab") + (uuid "e622368b-d897-4b93-a099-4290380f8ee1") + (effects + (font + (size 0.5 0.5) + (thickness 0.08) + ) + ) + ) + (pad "1" smd roundrect + (at -1 0 90) + (size 1.2 1.4) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.208333) + (net 3 "VDD33") + (pinfunction "+") + (pintype "passive") + (uuid "a974fc7f-fcbc-4365-aa1f-e8f4ca90ebf4") + ) + (pad "2" smd roundrect + (at 1 0 90) + (size 1.2 1.4) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.208333) + (net 34 "SIG_A1") + (pinfunction "-") + (pintype "passive") + (uuid "19433656-e19e-45bd-aa45-a6275825c35a") + ) + (embedded_fonts no) + (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Relay_THT:Relay_SPDT_SANYOU_SRD_Series_Form_C" + (placed yes) + (layer "F.Cu") + (uuid "606e690c-7bb4-461a-bfe6-563d1fb8a36d") + (at 90.943333 86.02 90) + (descr "relay Sanyou SRD series Form C http://www.sanyourelay.ca/public/products/pdf/SRD.pdf") + (tags "relay Sanyu SRD form C") + (property "Reference" "K3" + (at 8.1 8.8 90) + (layer "F.SilkS") + (uuid "9d6502bb-5c54-4cfb-bb3b-40532532873f") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "SRD-12VDC-SL-C" + (at 8 -9.6 90) + (layer "F.Fab") + (uuid "e3316317-ac4e-4505-b8d9-4b91d1b210aa") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "http://www.sanyourelay.ca/public/products/pdf/SRD.pdf" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "6a4cba2e-49b6-452e-b965-36855a3d01e1") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "Sanyo SRD relay, Single Pole Miniature Power Relay," + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "0ac0ecbb-9ff3-4157-8369-8e4805297082") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Link" "https://robu.in/product/1-month-warranty-1027/" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "6367d842-749d-4c71-97ee-795a77706da8") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "Relay*SPDT*SANYOU*SRD*Series*Form*C*") + (path "/f94ee230-b58e-498c-919d-a32caee44a3b") + (sheetname "/") + (sheetfile "SmartFuseBox.kicad_sch") + (attr through_hole) + (fp_line + (start 18.4 -7.8) + (end 18.4 7.8) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "244e9113-9a4d-4cce-ae95-c1a5be812a6a") + ) + (fp_line + (start -1.4 -7.8) + (end 18.4 -7.8) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "dd2b15f6-e376-4876-af86-46a491eb4c13") + ) + (fp_line + (start -1.4 -7.8) + (end -1.4 -1.2) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "952f88b1-2efb-4fd7-953b-9c156f8cd968") + ) + (fp_line + (start 6.05 -5.95) + (end 3.55 -5.95) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "52e11b5d-32c2-4d31-a45b-acaf951b2708") + ) + (fp_line + (start 6.05 -5.95) + (end 6.05 -1.75) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "b95b6842-3cc5-4025-b168-c53e1e2f96d9") + ) + (fp_line + (start 14.15 -4.2) + (end 14.15 -1.7) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "f6750b7c-b74e-44b0-a0ec-23c75ccfa8af") + ) + (fp_line + (start 8.05 -1.75) + (end 8.05 1.85) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "746d5c58-2a49-44e8-961f-87c1f33bc844") + ) + (fp_line + (start 4.05 -1.75) + (end 8.05 -1.75) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "b8c2c064-fdbd-402f-8623-091f99a2f6d0") + ) + (fp_line + (start 10.95 0.05) + (end 15.55 -2.45) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "d37c32a6-fa14-4411-be3a-e95a6246b33a") + ) + (fp_line + (start 9.45 0.05) + (end 10.95 0.05) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "3c83f191-9e0d-4a7a-9d3b-de6470de1721") + ) + (fp_line + (start 9.45 0.05) + (end 9.45 3.65) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "b9529d11-9edb-49a6-b7e5-f7b73aba78a1") + ) + (fp_line + (start 2.65 0.05) + (end 1.85 0.05) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "1b9d8ad2-7502-4f36-94ba-49687bc12b73") + ) + (fp_line + (start 2.65 0.05) + (end 2.65 3.65) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "2c7f44bf-50ea-4557-983b-e676f19c41c6") + ) + (fp_line + (start -1.4 1.2) + (end -1.4 7.8) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "8c41e164-f3a4-4ebf-b15c-8f8d8b346699") + ) + (fp_line + (start 8.05 1.85) + (end 4.05 -1.75) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "9303a0d0-6452-4b8a-a967-bab92aefe6fc") + ) + (fp_line + (start 8.05 1.85) + (end 4.05 1.85) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "39091308-87f0-4162-bef5-2d90f0840c4c") + ) + (fp_line + (start 6.05 1.85) + (end 6.05 6.05) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "9b78f19d-ff21-4ef9-98fe-acac81f1cf9c") + ) + (fp_line + (start 4.05 1.85) + (end 4.05 -1.75) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "5cbb76e9-b7bb-427b-ace6-0c217b35c898") + ) + (fp_line + (start 9.45 3.65) + (end 2.65 3.65) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "14551b09-2e16-407b-993b-397e2213abfa") + ) + (fp_line + (start 14.15 4.2) + (end 14.15 1.75) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "4a9c0d96-d760-4584-a768-25b007231c57") + ) + (fp_line + (start 3.55 6.05) + (end 6.05 6.05) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "f9eabad0-a188-44a8-877e-b06d84135fd1") + ) + (fp_line + (start 18.4 7.8) + (end -1.4 7.8) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "b0f1da69-bc15-4c87-9333-6ee72b3af9b0") + ) + (fp_line + (start 18.55 -7.95) + (end -1.55 -7.95) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "863596e5-bb30-442a-88c8-753ea6825256") + ) + (fp_line + (start 18.55 -7.95) + (end 18.55 7.95) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "43975581-58e6-4611-941f-6180292e4c12") + ) + (fp_line + (start -1.55 7.95) + (end -1.55 -7.95) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "5adef63d-16b6-4c6b-9fbc-7ee701eb38e9") + ) + (fp_line + (start -1.55 7.95) + (end 18.55 7.95) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "7f1c7063-1fd5-4a69-9115-0aa39a47bbe2") + ) + (fp_line + (start 18.3 -7.7) + (end 18.3 7.7) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.Fab") + (uuid "868044ba-c7f2-4e41-a825-a073e58e08ac") + ) + (fp_line + (start -1.3 -7.7) + (end 18.3 -7.7) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.Fab") + (uuid "36b27c62-dec2-42f1-8c8a-fd48e5e892c3") + ) + (fp_line + (start 18.3 7.7) + (end -1.3 7.7) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.Fab") + (uuid "e24dc918-d5a1-4361-b8cb-f7dbc91cbee0") + ) + (fp_line + (start -1.3 7.7) + (end -1.3 -7.7) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.Fab") + (uuid "31d1d284-d49e-4267-9ad3-d45987c5f103") + ) + (fp_text user "${REFERENCE}" + (at 7.1 0.025 90) + (layer "F.Fab") + (uuid "08fa451b-4cc7-4889-b1a9-24983e9d83bb") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (fp_text user "1" + (at 0 -2.3 90) + (layer "F.Fab") + (uuid "a8290624-d030-4868-bf5f-88a40b11f10c") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (pad "1" thru_hole circle + (at 0 0 180) + (size 3 3) + (drill 1.3) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 16 "COM_3") + (pintype "passive") + (uuid "1bd90981-eedc-4c47-b915-c080dcdf6a4b") + ) + (pad "2" thru_hole circle + (at 1.95 6.05 180) + (size 2.5 2.5) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 84 "R-3") + (pintype "passive") + (uuid "b013ba03-3ce3-44e4-9631-8a6246d9ab7a") + ) + (pad "3" thru_hole circle + (at 14.15 6.05 180) + (size 3 3) + (drill 1.3) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 18 "NO_3") + (pintype "passive") + (uuid "3ec80a6e-b6d9-478d-9151-50c6a240b5b5") + ) + (pad "4" thru_hole circle + (at 14.2 -6 180) + (size 3 3) + (drill 1.3) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 17 "NC_3") + (pintype "passive") + (uuid "e8fd8fd7-d7c3-4307-9779-2487c6f61acb") + ) + (pad "5" thru_hole circle + (at 1.95 -5.95 180) + (size 2.5 2.5) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 81 "/12V_DC-Regulated") + (pintype "passive") + (uuid "1be08d4d-5ccc-4540-8d14-5f651f6fe808") + ) + (embedded_fonts no) + (model "${KICAD9_3DMODEL_DIR}/Relay_THT.3dshapes/Relay_SPDT_SANYOU_SRD_Series_Form_C.step" + (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" + (placed yes) + (layer "F.Cu") + (uuid "61ff6df3-a75c-4949-bd6a-89b5074ce913") + (at 184.6975 86.61 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 "Reference" "C12" + (at 3.6375 0.2 0) + (layer "F.SilkS") + (uuid "daf59793-b7b9-44b4-a16a-1a147837c53c") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "0.1uf" + (at 0 1.68 0) + (layer "F.Fab") + (uuid "d46d5b3b-6542-406e-b8c5-a9f5ab7ac8ff") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "~" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "17a5dd74-8f79-4e2c-95b5-e9a17f548486") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "Unpolarized capacitor" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "42159fa0-be8c-48df-90b1-d9f62e72a869") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Link" "https://robu.in/product/cl21a106kofnnne-samsang-16v-10uf-x5r-%C2%B110-0805-multilayer-ceramic-capacitors-mlcc-smd-smt-rohs/?gad_source=1&gad_campaignid=17427802703&gbraid=0AAAAADvLFWeYd6KQJmaof5AqwX7G6G7RK&gclid=CjwKCAjw687NBhB4EiwAQ645dvOPfam1y5aCD1uRQvjlmer72tAuxihwH4D1G8BPdKh6SRiWARJldBoCKCYQAvD_BwE" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "2a3df681-6b1b-4d97-a963-69ad2aa82acc") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "C_*") + (path "/11fe8c36-0a15-4a06-bc91-b0ca32e0f301") + (sheetname "/") + (sheetfile "SmartFuseBox.kicad_sch") + (attr smd) + (fp_line + (start -0.261252 0.735) + (end 0.261252 0.735) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "a8630723-7401-40d3-9ce1-436594c4afef") + ) + (fp_line + (start -0.261252 -0.735) + (end 0.261252 -0.735) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "8cd8643c-1446-44b6-8949-56f5921b6b32") + ) + (fp_rect + (start -1.88 -0.98) + (end 1.88 0.98) + (stroke + (width 0.05) + (type solid) + ) + (fill no) + (layer "F.CrtYd") + (uuid "6912b8fb-c8ad-4aff-8406-063d3abe2733") + ) + (fp_rect + (start -1 -0.625) + (end 1 0.625) + (stroke + (width 0.1) + (type solid) + ) + (fill no) + (layer "F.Fab") + (uuid "efed9834-058b-4339-95fd-68fba85e867a") + ) + (fp_text user "${REFERENCE}" + (at 0 0 0) + (layer "F.Fab") + (uuid "b66d70da-fc29-490b-bc2e-ceba7a7a20d9") + (effects + (font + (size 0.5 0.5) + (thickness 0.08) + ) + ) + ) + (pad "1" smd roundrect + (at -1.0375 0 180) + (size 1.175 1.45) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.212766) + (net 3 "VDD33") + (pintype "passive") + (uuid "40aa8e30-3f90-4520-ac3b-2f0a70240728") + ) + (pad "2" smd roundrect + (at 1.0375 0 180) + (size 1.175 1.45) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.212766) + (net 1 "GND") + (pintype "passive") + (uuid "98479d3d-f8ea-415b-8123-9d36237faf20") + ) + (embedded_fonts no) + (model "${KICAD9_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.step" + (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" + (placed yes) + (layer "F.Cu") + (uuid "69741220-041e-4a5e-bb36-e02ce721fb53") + (at 192.8225 61.87 -90) + (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 "Reference" "C17" + (at 0 -1.68 90) + (layer "F.SilkS") + (uuid "890957fc-00e5-4dd2-97ae-05854be7fb27") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "10uf" + (at 0 1.68 90) + (layer "F.Fab") + (uuid "6ee397b4-f3b5-4c25-ad29-b65311ef116d") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "~" + (at 0 0 90) + (layer "F.Fab") + (hide yes) + (uuid "fc74d381-5fa6-4c51-b9d2-3d2efd69e15d") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "Unpolarized capacitor" + (at 0 0 90) + (layer "F.Fab") + (hide yes) + (uuid "fc8d5cd3-9772-49b5-a025-3394d892d86f") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Link" "https://robu.in/product/0402x104k100nt-fh-smd-multilayer-ceramic-capacitor-0-1-%C2%B5f100nf-10-v-0402-1005-metric-%C2%B1-10-x5r/" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "030b7981-20a1-4b9b-9455-29c6b86a20d1") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "C_*") + (path "/990d585b-29f6-4572-8b1e-1d5f6c52bb29") + (sheetname "/") + (sheetfile "SmartFuseBox.kicad_sch") + (attr smd) + (fp_line + (start -0.261252 0.735) + (end 0.261252 0.735) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "b5109b70-325d-4204-8773-e8db1b7f443f") + ) + (fp_line + (start -0.261252 -0.735) + (end 0.261252 -0.735) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "86d319f6-63ef-4ff6-bcd1-15aacfc6f0e7") + ) + (fp_rect + (start -1.88 -0.98) + (end 1.88 0.98) + (stroke + (width 0.05) + (type solid) + ) + (fill no) + (layer "F.CrtYd") + (uuid "1b9489f3-44de-4bc7-ab39-8f059fb49fa7") + ) + (fp_rect + (start -1 -0.625) + (end 1 0.625) + (stroke + (width 0.1) + (type solid) + ) + (fill no) + (layer "F.Fab") + (uuid "86c2809f-e029-4b4b-a0bc-5f4ad7d19bf5") + ) + (fp_text user "${REFERENCE}" + (at 0 0 90) + (layer "F.Fab") + (uuid "0157bbb2-d3e4-4a56-a6f2-b01dfca1a029") + (effects + (font + (size 0.5 0.5) + (thickness 0.08) + ) + ) + ) + (pad "1" smd roundrect + (at -1.0375 0 270) + (size 1.175 1.45) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.212766) + (net 2 "5V") + (pintype "passive") + (uuid "c81e01be-21f0-4710-afad-e348b9146ed8") + ) + (pad "2" smd roundrect + (at 1.0375 0 270) + (size 1.175 1.45) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.212766) + (net 1 "GND") + (pintype "passive") + (uuid "1e21dcfe-e5b1-42c6-ac11-12a2c70edb3c") + ) + (embedded_fonts no) + (model "${KICAD9_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.step" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Passives:R_0805_2012Metric_Pad1.20x1.40mm_HandSolder" + (placed yes) + (layer "F.Cu") + (uuid "7370a890-bcd0-4a11-a07b-f04122672086") + (at 185.36 113.0575 90) + (descr "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") + (tags "resistor handsolder") + (property "Reference" "R14" + (at 0 -1.65 90) + (layer "F.SilkS") + (hide yes) + (uuid "43299849-d519-414e-848a-f4d467055d56") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "100k" + (at 0 1.65 90) + (layer "F.Fab") + (uuid "4a352467-eacc-49c5-92d0-c4cfa48751cf") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "e12d4cb3-fac4-4808-a29d-8745a751a6b7") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "resistor" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "b4d0378b-64c3-4625-bc08-f1ba53fecf8b") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Indicator" "+" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "ea444fdc-44a2-44c8-996d-8a2c151da1a1") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Rating" "W" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "4305fac0-f144-4944-94d3-ee1bbcb5b726") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (path "/b0e4876e-9ba9-40a9-ba63-b2ea3551c824") + (sheetname "/") + (sheetfile "SmartFuseBox.kicad_sch") + (attr smd) + (fp_line + (start -0.227064 -0.735) + (end 0.227064 -0.735) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "0fe48755-777a-4b06-97f3-5cd94e8955b3") + ) + (fp_line + (start -0.227064 0.735) + (end 0.227064 0.735) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "e06f9363-f831-4c2e-8c1b-797eafe6aca4") + ) + (fp_line + (start 1.85 -0.95) + (end 1.85 0.95) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "09d078fe-7ce1-4173-9cf1-7e9bec536bd2") + ) + (fp_line + (start -1.85 -0.95) + (end 1.85 -0.95) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "9ebc520b-dbf4-46d4-808d-c8608db3967e") + ) + (fp_line + (start 1.85 0.95) + (end -1.85 0.95) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "19050c45-9a83-4572-b89c-0f70ae76bd43") + ) + (fp_line + (start -1.85 0.95) + (end -1.85 -0.95) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "f49d0acf-0b74-4256-abb7-c28d2de6952c") + ) + (fp_line + (start 1 -0.625) + (end 1 0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "3c600035-fab4-45a0-879d-80e4a8154c85") + ) + (fp_line + (start -1 -0.625) + (end 1 -0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "51457993-02ef-4163-ac65-e13df8cdf007") + ) + (fp_line + (start 1 0.625) + (end -1 0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "8e8f717a-9daf-417c-9e24-21f54ed253f1") + ) + (fp_line + (start -1 0.625) + (end -1 -0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "310d8528-c4d0-4a10-8688-bbbc8db362c0") + ) + (fp_text user "${REFERENCE}" + (at 0 0 90) + (layer "F.Fab") + (uuid "f2302329-de73-495d-ae87-5092a92c1559") + (effects + (font + (size 0.5 0.5) + (thickness 0.08) + ) + ) + ) + (pad "1" smd roundrect + (at -1 0 270) + (size 1.2 1.4) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.208333) + (net 81 "/12V_DC-Regulated") + (pinfunction "+") + (pintype "passive") + (uuid "059ee2df-126b-44d3-b9b4-aa12a3c4d141") + ) + (pad "2" smd roundrect + (at 1 0 270) + (size 1.2 1.4) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.208333) + (net 78 "Net-(R14--)") + (pinfunction "-") + (pintype "passive") + (uuid "20e76ccb-17aa-4d6e-80fc-c2dba5b82f7c") + ) + (embedded_fonts no) + (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "TerminalBlock:TerminalBlock_MaiXu_MX126-5.0-03P_1x03_P5.00mm" + (layer "F.Cu") + (uuid "742bbddd-2c70-4b87-8d80-cbe0e597f0e3") + (at 95.793333 61.62 180) + (descr "terminal block MaiXu MX126-5.0-03P, 3 pins, pitch 5mm, size 15.5x7.8mm, drill diameter 1.3mm, pad diameter 2.8mm, https://www.lcsc.com/datasheet/lcsc_datasheet_2309150913_MAX-MX126-5-0-03P-GN01-Cu-S-A_C5188435.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_MaiXu") + (tags "THT terminal block MaiXu MX126-5.0-03P pitch 5mm size 15.5x7.8mm drill 1.3mm pad 2.8mm") + (property "Reference" "J5" + (at -4.206667 -1.58 90) + (layer "F.SilkS") + (uuid "e898be32-476c-4bd1-b171-3040ce2c4b62") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "Conn_01x03_Socket" + (at 4.75 4.92 0) + (layer "F.Fab") + (uuid "0acfabd5-20db-46b5-bd63-e68ba62c602a") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "~" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "4e4b5b81-a00a-4530-8645-9c03aebb945d") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "Generic connector, single row, 01x03, script generated" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "d0770ea3-d18d-4493-b3a0-f6f4b37fe1d0") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "Connector*:*_1x??_*") + (path "/47fffcde-0e33-41b8-b430-8fcaa2afa50f") + (sheetname "/") + (sheetfile "SmartFuseBox.kicad_sch") + (attr through_hole) + (fp_line + (start 12.62 3.92) + (end 0.3 3.92) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "ee3beb81-d9b2-4221-b958-90c573a6ba81") + ) + (fp_line + (start 12.62 -4.12) + (end 12.62 3.92) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "b6bb1d18-dd4e-4b6b-ab14-b5e63caec98f") + ) + (fp_line + (start 11.812 0.5) + (end 12.62 0.5) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "9f3e3cbf-e5a3-48f1-b6c7-a11b453c1e4f") + ) + (fp_line + (start 11.812 -0.5) + (end 12.62 -0.5) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "93cf4b19-4f19-41a9-a73a-0fc29152b3ec") + ) + (fp_line + (start 10.543 1.8) + (end 12.62 1.8) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "f8227000-0326-482e-aec7-a19d0cb90838") + ) + (fp_line + (start 6.812 0.5) + (end 8.188 0.5) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "08cbc36f-82c2-45fd-b4ce-5490e77d97d5") + ) + (fp_line + (start 6.812 -0.5) + (end 8.188 -0.5) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "a729ab79-7497-4922-a8db-404f383f70c4") + ) + (fp_line + (start 5.543 1.8) + (end 9.457 1.8) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "c4eb378c-750f-4a64-99b9-886847f807be") + ) + (fp_line + (start 1.88 1.8) + (end 4.457 1.8) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "2ecd1ceb-b509-4d4d-b8f4-e6f74b44ee46") + ) + (fp_line + (start 1.88 0.5) + (end 3.188 0.5) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "83183827-b055-4e20-99e3-e70b6214a7fd") + ) + (fp_line + (start 1.88 -0.5) + (end 3.188 -0.5) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "d399c15b-544f-4f30-a252-13a15898d66c") + ) + (fp_line + (start -0.3 3.92) + (end -3.12 3.92) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "3ff985d3-d4b5-4f97-8839-3874b5014912") + ) + (fp_line + (start -3.12 3.92) + (end -3.12 -4.12) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "620c9c63-ab42-488f-bddd-29ec8182af29") + ) + (fp_line + (start -3.12 1.8) + (end -1.88 1.8) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "5967b56e-4aad-4206-b8d2-9ec680a8bde3") + ) + (fp_line + (start -3.12 0.5) + (end -1.88 0.5) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "790ac07e-0fc5-4f07-b1ae-9d5919be7c21") + ) + (fp_line + (start -3.12 -0.5) + (end -1.88 -0.5) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "854a6802-1569-45a4-9353-07a8330282b6") + ) + (fp_line + (start -3.12 -4.12) + (end 12.62 -4.12) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "091b83a3-f4e4-4976-8289-5987b38e3d99") + ) + (fp_poly + (pts + (xy 0 3.92) (xy 0.44 4.53) (xy -0.44 4.53) + ) + (stroke + (width 0.12) + (type solid) + ) + (fill yes) + (layer "F.SilkS") + (uuid "29229922-f682-422a-87ac-8cb59441888b") + ) + (fp_rect + (start -3.5 -4.5) + (end 13 4.31) + (stroke + (width 0.05) + (type solid) + ) + (fill no) + (layer "F.CrtYd") + (uuid "9870ad58-7933-40a3-8b10-566d6b845c75") + ) + (fp_line + (start 12.5 3.8) + (end -1.05 3.8) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "e40ea445-0d74-4a4b-bedc-ba0365acde98") + ) + (fp_line + (start 12.5 -4) + (end 12.5 3.8) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "f8c5e37f-4d03-41c2-8439-354b80856eb0") + ) + (fp_line + (start 11.213 -1.018) + (end 8.982 1.213) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "4e7f994e-0c52-4fd4-9dba-cdbc78913475") + ) + (fp_line + (start 11.018 -1.213) + (end 8.787 1.018) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "65d71240-1406-40d2-8e4f-abe3f643a3a2") + ) + (fp_line + (start 6.213 -1.018) + (end 3.982 1.213) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "4a811ddf-5565-49e9-ba8c-2ff9d30a8342") + ) + (fp_line + (start 6.018 -1.213) + (end 3.787 1.018) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "5a747d85-e71b-40fa-9044-23056e6c03ed") + ) + (fp_line + (start 1.213 -1.018) + (end -1.018 1.213) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "5c23ad60-fee5-4b66-9805-e6acc5c6b91a") + ) + (fp_line + (start 1.018 -1.213) + (end -1.213 1.018) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "9b382669-0376-49aa-8328-07e600bcea75") + ) + (fp_line + (start -1.05 3.8) + (end -3 1.85) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "fa141e7f-109d-4463-a87b-fd7d3dbbc498") + ) + (fp_line + (start -3 1.85) + (end -3 -4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "a7fcd77d-ba5b-4482-828b-9b8ae2b8d6de") + ) + (fp_line + (start -3 1.8) + (end 12.5 1.8) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "ededaf13-5ad4-4d6f-951c-97a70bc9a287") + ) + (fp_line + (start -3 0.5) + (end 12.5 0.5) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "095f191b-cafb-433f-9082-f800a8220ba6") + ) + (fp_line + (start -3 -0.5) + (end 12.5 -0.5) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "5e5e436c-f1b4-4ebd-a851-c550d47fa0e6") + ) + (fp_line + (start -3 -4) + (end 12.5 -4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "60829833-a708-41d3-9402-c39e8654ec1c") + ) + (fp_circle + (center 10 0) + (end 11.6 0) + (stroke + (width 0.1) + (type solid) + ) + (fill no) + (layer "F.Fab") + (uuid "a2f87157-fcf8-4bac-a41b-79d14f511633") + ) + (fp_circle + (center 5 0) + (end 6.6 0) + (stroke + (width 0.1) + (type solid) + ) + (fill no) + (layer "F.Fab") + (uuid "15d0729f-64ac-4178-a635-7f54727f59f8") + ) + (fp_circle + (center 0 0) + (end 1.6 0) + (stroke + (width 0.1) + (type solid) + ) + (fill no) + (layer "F.Fab") + (uuid "2c73ae42-0494-47e5-9cdc-09588dd4a610") + ) + (fp_text user "${REFERENCE}" + (at 4.75 2.65 0) + (layer "F.Fab") + (uuid "e8ad68b9-96cf-4f55-9a5a-a347615a1c85") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (pad "1" thru_hole roundrect + (at 0 0 180) + (size 2.8 2.8) + (drill 1.3) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (roundrect_rratio 0.089286) + (net 18 "NO_3") + (pinfunction "Pin_1") + (pintype "passive") + (uuid "c29ddfba-35e7-4b7d-b771-0c2051c2a6f7") + ) + (pad "2" thru_hole circle + (at 5 0 180) + (size 2.8 2.8) + (drill 1.3) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 16 "COM_3") + (pinfunction "Pin_2") + (pintype "passive") + (uuid "4f361035-9898-443a-af2e-fb12ca83bb78") + ) + (pad "3" thru_hole circle + (at 10 0 180) + (size 2.8 2.8) + (drill 1.3) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 17 "NC_3") + (pinfunction "Pin_3") + (pintype "passive") + (uuid "5fbc57f9-1574-4b9d-937c-68a5222c91ac") + ) + (embedded_fonts no) + (model "${KICAD9_3DMODEL_DIR}/TerminalBlock_Phoenix.3dshapes/TerminalBlock_Phoenix_MKDS-1,5-3_1x03_P5.00mm_Horizontal.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" + (placed yes) + (layer "F.Cu") + (uuid "749912b5-a785-4d8c-b4d0-f62b870eec32") + (at 92.26 106.22 -90) + (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 "Reference" "C23" + (at 0 -1.68 90) + (layer "F.SilkS") + (uuid "967f6774-ed65-47b1-b6d4-c71034d851a4") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "0.1uf" + (at 0 1.68 90) + (layer "F.Fab") + (uuid "708e47ab-5796-4cad-9522-faf2cdba4d4b") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "~" + (at 0 0 90) + (layer "F.Fab") + (hide yes) + (uuid "fcea843d-5546-4209-aa2b-52c31eaa07d6") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "Unpolarized capacitor" + (at 0 0 90) + (layer "F.Fab") + (hide yes) + (uuid "f14882bf-abfe-41c9-9b21-e16b74b748f3") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Link" "https://robu.in/product/cl21a106kofnnne-samsang-16v-10uf-x5r-%C2%B110-0805-multilayer-ceramic-capacitors-mlcc-smd-smt-rohs/?gad_source=1&gad_campaignid=17427802703&gbraid=0AAAAADvLFWeYd6KQJmaof5AqwX7G6G7RK&gclid=CjwKCAjw687NBhB4EiwAQ645dvOPfam1y5aCD1uRQvjlmer72tAuxihwH4D1G8BPdKh6SRiWARJldBoCKCYQAvD_BwE" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "39232072-34d2-4a1c-a254-68d60d803158") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "C_*") + (path "/005e541c-f7ae-407b-a41a-2d70dcc90de8") + (sheetname "/") + (sheetfile "SmartFuseBox.kicad_sch") + (attr smd) + (fp_line + (start -0.261252 0.735) + (end 0.261252 0.735) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "468bcea7-8680-46f4-9464-583142cb80e3") + ) + (fp_line + (start -0.261252 -0.735) + (end 0.261252 -0.735) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "be44d502-71a2-42c3-882d-d10d1ed8c9f4") + ) + (fp_rect + (start -1.88 -0.98) + (end 1.88 0.98) + (stroke + (width 0.05) + (type solid) + ) + (fill no) + (layer "F.CrtYd") + (uuid "6c85dfac-9791-40c3-8bba-44b1ddcfcd64") + ) + (fp_rect + (start -1 -0.625) + (end 1 0.625) + (stroke + (width 0.1) + (type solid) + ) + (fill no) + (layer "F.Fab") + (uuid "d36cc98d-41a5-4a1d-8281-44e01e0f55c5") + ) + (fp_text user "${REFERENCE}" + (at 0 0 90) + (layer "F.Fab") + (uuid "d65104b3-62e1-4dd7-af39-553214aaf2a1") + (effects + (font + (size 0.5 0.5) + (thickness 0.08) + ) + ) + ) + (pad "1" smd roundrect + (at -1.0375 0 270) + (size 1.175 1.45) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.212766) + (net 81 "/12V_DC-Regulated") + (pintype "passive") + (uuid "9e58d03b-ad93-4555-a055-9578130461b8") + ) + (pad "2" smd roundrect + (at 1.0375 0 270) + (size 1.175 1.45) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.212766) + (net 1 "GND") + (pintype "passive") + (uuid "1e1fe434-8bcf-440e-93bd-16e45e42f9aa") + ) + (embedded_fonts no) + (model "${KICAD9_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.step" + (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" + (placed yes) + (layer "F.Cu") + (uuid "75fcdf87-af07-49e8-bd34-fd3977e0ced6") + (at 139.86 108.0575 -90) + (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 "Reference" "C19" + (at 0 -1.68 90) + (layer "F.SilkS") + (uuid "19f41de5-cc1f-446d-aac3-c4f93307c72a") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "0.1uf" + (at 0 1.68 90) + (layer "F.Fab") + (uuid "d5d3eb4e-18c6-4f64-a6a1-949269309870") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "~" + (at 0 0 90) + (layer "F.Fab") + (hide yes) + (uuid "cb5ba5a3-8051-4ec9-9e7b-db093395e514") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "Unpolarized capacitor" + (at 0 0 90) + (layer "F.Fab") + (hide yes) + (uuid "62bd5a1a-21cd-4acc-a58f-1002fdf4a0a4") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Link" "https://robu.in/product/cl21a106kofnnne-samsang-16v-10uf-x5r-%C2%B110-0805-multilayer-ceramic-capacitors-mlcc-smd-smt-rohs/?gad_source=1&gad_campaignid=17427802703&gbraid=0AAAAADvLFWeYd6KQJmaof5AqwX7G6G7RK&gclid=CjwKCAjw687NBhB4EiwAQ645dvOPfam1y5aCD1uRQvjlmer72tAuxihwH4D1G8BPdKh6SRiWARJldBoCKCYQAvD_BwE" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "ccf8a73b-85d8-4004-8f1d-a707e42f0cba") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "C_*") + (path "/6986c89f-7cd0-4cb2-ba9a-df892d6ee068") + (sheetname "/") + (sheetfile "SmartFuseBox.kicad_sch") + (attr smd) + (fp_line + (start -0.261252 0.735) + (end 0.261252 0.735) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "7d08bab5-4ff8-4c6c-bd73-2a62dd36a4a4") + ) + (fp_line + (start -0.261252 -0.735) + (end 0.261252 -0.735) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "5946e40a-32e1-40a8-bb8b-fb3862ff68f4") + ) + (fp_rect + (start -1.88 -0.98) + (end 1.88 0.98) + (stroke + (width 0.05) + (type solid) + ) + (fill no) + (layer "F.CrtYd") + (uuid "1bc5983c-6036-4619-8212-73f60438b0ab") + ) + (fp_rect + (start -1 -0.625) + (end 1 0.625) + (stroke + (width 0.1) + (type solid) + ) + (fill no) + (layer "F.Fab") + (uuid "5b964c98-56b2-43bf-92bb-f404cb51198a") + ) + (fp_text user "${REFERENCE}" + (at 0 0 90) + (layer "F.Fab") + (uuid "daca6b92-cf88-474e-bb29-2b419256e443") + (effects + (font + (size 0.5 0.5) + (thickness 0.08) + ) + ) + ) + (pad "1" smd roundrect + (at -1.0375 0 270) + (size 1.175 1.45) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.212766) + (net 81 "/12V_DC-Regulated") + (pintype "passive") + (uuid "049da607-3503-4052-ada4-6deb9b5371a9") + ) + (pad "2" smd roundrect + (at 1.0375 0 270) + (size 1.175 1.45) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.212766) + (net 1 "GND") + (pintype "passive") + (uuid "de10065f-4d8d-4cdb-bcd8-109530d41715") + ) + (embedded_fonts no) + (model "${KICAD9_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.step" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Buzzer_Beeper:Buzzer_12x9.5RM7.6" + (placed yes) + (layer "F.Cu") + (uuid "773a7582-698e-453a-b142-2e543a6361f0") + (at 176.86 64.42) + (descr "Generic Buzzer, D12mm height 9.5mm with RM7.6mm") + (tags "buzzer") + (property "Reference" "BZ1" + (at 7.8 6.6 0) + (layer "F.SilkS") + (uuid "bbdf65fc-bab6-4b60-9ade-c4237bd64ea1") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "Buzzer" + (at 3.8 7.4 0) + (layer "F.Fab") + (uuid "948621ab-031c-4abc-84aa-cca9669426a0") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "~" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "8795a421-4230-4f04-82ff-d88fafed9812") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "Buzzer, polarized" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "42ab1a84-7d15-46d9-ad98-98988b505752") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Link" "https://robu.in/product/5v-active-electromagnetic-buzzer-pack-of-5/?gad_source=1&gad_campaignid=17427802703&gbraid=0AAAAADvLFWeYd6KQJmaof5AqwX7G6G7RK&gclid=CjwKCAjw687NBhB4EiwAQ645dqGyKA2Q7VpjuFuCoSyLCFUHRbcrUggDKF3bwq9Ms8OPAqU6cx3GyxoCQQwQAvD_BwE" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "4ecd29d9-597c-4d2b-9aa8-003bb19339b8") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "*Buzzer*") + (path "/ea37b5f3-ae04-4c29-a16d-734c13623b44") + (sheetname "/") + (sheetfile "SmartFuseBox.kicad_sch") + (attr through_hole) + (fp_circle + (center 3.8 0) + (end 9.9 0) + (stroke + (width 0.12) + (type solid) + ) + (fill no) + (layer "F.SilkS") + (uuid "9461cec0-f980-47ce-89b9-109538731418") + ) + (fp_circle + (center 3.8 0) + (end 10.05 0) + (stroke + (width 0.05) + (type solid) + ) + (fill no) + (layer "F.CrtYd") + (uuid "f3698c73-7827-4b1d-aded-ae7d0e0944ef") + ) + (fp_circle + (center 3.8 0) + (end 4.8 0) + (stroke + (width 0.1) + (type solid) + ) + (fill no) + (layer "F.Fab") + (uuid "c00f8708-c033-47e1-bd91-e868afd2fead") + ) + (fp_circle + (center 3.8 0) + (end 9.8 0) + (stroke + (width 0.1) + (type solid) + ) + (fill no) + (layer "F.Fab") + (uuid "21e170ad-c309-48f2-bcca-1afa8085af20") + ) + (fp_text user "+" + (at -0.01 -2.54 0) + (layer "F.SilkS") + (uuid "240cdd85-93a2-42cc-a802-ad77305aa191") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (fp_text user "+" + (at -0.01 -2.54 0) + (layer "F.Fab") + (uuid "055404e3-5b4e-4c8b-8c1d-e49e6cb5ddd1") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (fp_text user "${REFERENCE}" + (at 3.8 -4 0) + (layer "F.Fab") + (uuid "d7e46ee5-f389-4a17-8eb8-597f7f5cd538") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (pad "1" thru_hole rect + (at 0 0) + (size 2 2) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 2 "5V") + (pinfunction "+") + (pintype "passive") + (uuid "ce2258da-16c1-431f-934a-b289aefb86d8") + ) + (pad "2" thru_hole circle + (at 7.6 0) + (size 2 2) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 5 "Net-(BZ1--)") + (pinfunction "-") + (pintype "passive") + (uuid "55c69cc1-921e-4da9-a176-47a2c9ec53ba") + ) + (embedded_fonts no) + (model "${KICAD9_3DMODEL_DIR}/Buzzer_Beeper.3dshapes/Buzzer_12x9.5RM7.6.step" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "TerminalBlock:TerminalBlock_MaiXu_MX126-5.0-03P_1x03_P5.00mm" + (layer "F.Cu") + (uuid "789d19fd-40fb-4f33-979b-675c68e1da2b") + (at 86.393333 135.47) + (descr "terminal block MaiXu MX126-5.0-03P, 3 pins, pitch 5mm, size 15.5x7.8mm, drill diameter 1.3mm, pad diameter 2.8mm, https://www.lcsc.com/datasheet/lcsc_datasheet_2309150913_MAX-MX126-5-0-03P-GN01-Cu-S-A_C5188435.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_MaiXu") + (tags "THT terminal block MaiXu MX126-5.0-03P pitch 5mm size 15.5x7.8mm drill 1.3mm pad 2.8mm") + (property "Reference" "J9" + (at -3.793333 -1.87 90) + (layer "F.SilkS") + (uuid "c288d463-ef7e-4e99-81dd-ee5d64560388") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "Conn_01x03_Socket" + (at 4.75 4.92 0) + (layer "F.Fab") + (uuid "adc214a2-99d2-40d7-b1c7-06efe5a81d52") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "~" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "9d64c19a-0b02-4fe7-8939-c08847124a21") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "Generic connector, single row, 01x03, script generated" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "ff944840-3e18-42ca-8fbc-9048fff9856c") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "Connector*:*_1x??_*") + (path "/b5b8849e-ae66-4fa8-b5d6-ea182bda87fb") + (sheetname "/") + (sheetfile "SmartFuseBox.kicad_sch") + (attr through_hole) + (fp_line + (start -3.12 -4.12) + (end 12.62 -4.12) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "2ce10fd2-fc86-41cb-9f15-1d05c29d10c1") + ) + (fp_line + (start -3.12 -0.5) + (end -1.88 -0.5) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "da018616-3c8f-480f-a14e-81d9e30f3e47") + ) + (fp_line + (start -3.12 0.5) + (end -1.88 0.5) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "fd12be99-c8c8-443e-9d66-da0085dfbce6") + ) + (fp_line + (start -3.12 1.8) + (end -1.88 1.8) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "1c059136-d493-45cf-818a-b5dfe946d278") + ) + (fp_line + (start -3.12 3.92) + (end -3.12 -4.12) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "e896cf5b-dee8-4403-a0d6-6e805bc1fac1") + ) + (fp_line + (start -0.3 3.92) + (end -3.12 3.92) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "fd9aff68-6401-4d8d-8906-50776579e0f0") + ) + (fp_line + (start 1.88 -0.5) + (end 3.188 -0.5) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "75214a4e-3be9-414b-ae49-5c5de38fbadf") + ) + (fp_line + (start 1.88 0.5) + (end 3.188 0.5) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "d7a24533-b44e-4304-b963-1e2ac1e69fe6") + ) + (fp_line + (start 1.88 1.8) + (end 4.457 1.8) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "2959df22-8b6b-412e-9811-87c131c70635") + ) + (fp_line + (start 5.543 1.8) + (end 9.457 1.8) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "c830acde-00f7-4418-8518-eb1bc29547d5") + ) + (fp_line + (start 6.812 -0.5) + (end 8.188 -0.5) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "d72bfc80-d276-4c63-acff-5e3ac8931efd") + ) + (fp_line + (start 6.812 0.5) + (end 8.188 0.5) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "042b85fd-2c80-4718-be75-f577530a8edc") + ) + (fp_line + (start 10.543 1.8) + (end 12.62 1.8) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "88485db0-9603-44f2-aa78-397063c8d4e8") + ) + (fp_line + (start 11.812 -0.5) + (end 12.62 -0.5) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "3eb59469-b3ae-4652-8726-737d55f50823") + ) + (fp_line + (start 11.812 0.5) + (end 12.62 0.5) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "ca402432-84ad-41ef-a911-89c9810a1c84") + ) + (fp_line + (start 12.62 -4.12) + (end 12.62 3.92) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "5441188b-f305-43a1-ae7a-00fd95678b6b") + ) + (fp_line + (start 12.62 3.92) + (end 0.3 3.92) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "0e9393c2-01d3-4eeb-bd22-ead05e338de3") + ) + (fp_poly + (pts + (xy 0 3.92) (xy 0.44 4.53) (xy -0.44 4.53) + ) + (stroke + (width 0.12) + (type solid) + ) + (fill yes) + (layer "F.SilkS") + (uuid "ddbb3954-6782-4490-84f8-e5d040e04e77") + ) + (fp_rect + (start -3.5 -4.5) + (end 13 4.31) + (stroke + (width 0.05) + (type solid) + ) + (fill no) + (layer "F.CrtYd") + (uuid "d5b7572e-27f5-42bb-bd52-00e8835abe2a") + ) + (fp_line + (start -3 -4) + (end 12.5 -4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "a292782c-c08f-4a10-8576-c1112c680aa0") + ) + (fp_line + (start -3 -0.5) + (end 12.5 -0.5) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "c5d29ac2-a4bd-46bc-b52a-28fdc4ecbedf") + ) + (fp_line + (start -3 0.5) + (end 12.5 0.5) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "91144268-e949-4bd8-9028-cb1e63716e8c") + ) + (fp_line + (start -3 1.8) + (end 12.5 1.8) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "ab21ebd6-0809-4227-8b09-e46fc3a6cbd7") + ) + (fp_line + (start -3 1.85) + (end -3 -4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "53342027-6faf-43bf-bbe7-a1e204b12f87") + ) + (fp_line + (start -1.05 3.8) + (end -3 1.85) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "69a661b0-1d36-43ee-b892-5d3a43dfdeb7") + ) + (fp_line + (start 1.018 -1.213) + (end -1.213 1.018) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "a5da124c-ab01-47b4-b325-95fbdbf1d90c") + ) + (fp_line + (start 1.213 -1.018) + (end -1.018 1.213) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "daf08627-621d-4af7-bc7a-6d5f29904048") + ) + (fp_line + (start 6.018 -1.213) + (end 3.787 1.018) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "8bb637db-a514-4b34-a57b-704b8ac2f185") + ) + (fp_line + (start 6.213 -1.018) + (end 3.982 1.213) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "e5bd38b6-dbef-40ed-9fb0-9e8625cc1251") + ) + (fp_line + (start 11.018 -1.213) + (end 8.787 1.018) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "e1a4a6ab-d3bc-4756-a1f0-03cbfa01c88e") + ) + (fp_line + (start 11.213 -1.018) + (end 8.982 1.213) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "18e313f8-a089-46e8-b2db-6e86089b3488") + ) + (fp_line + (start 12.5 -4) + (end 12.5 3.8) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "6425e943-4d09-4610-ab5d-a06a82bc19b0") + ) + (fp_line + (start 12.5 3.8) + (end -1.05 3.8) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "48c1128b-257a-48d7-8f9b-dba2c268484e") + ) + (fp_circle + (center 0 0) + (end 1.6 0) + (stroke + (width 0.1) + (type solid) + ) + (fill no) + (layer "F.Fab") + (uuid "37c51d78-a84e-4d7f-9343-913e922948ad") + ) + (fp_circle + (center 5 0) + (end 6.6 0) + (stroke + (width 0.1) + (type solid) + ) + (fill no) + (layer "F.Fab") + (uuid "bc27e8e6-ca12-46c9-86d4-d00d430a6939") + ) + (fp_circle + (center 10 0) + (end 11.6 0) + (stroke + (width 0.1) + (type solid) + ) + (fill no) + (layer "F.Fab") + (uuid "654e848a-2bfc-4985-9474-7666665bad1d") + ) + (fp_text user "${REFERENCE}" + (at 4.75 2.65 0) + (layer "F.Fab") + (uuid "38360e6b-11db-415e-b837-9f1a85efeeda") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (pad "1" thru_hole roundrect + (at 0 0) + (size 2.8 2.8) + (drill 1.3) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (roundrect_rratio 0.089286) + (net 28 "NO_7") + (pinfunction "Pin_1") + (pintype "passive") + (uuid "1d8f1703-3e85-42e1-93ff-1a4096f6d529") + ) + (pad "2" thru_hole circle + (at 5 0) + (size 2.8 2.8) + (drill 1.3) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 30 "COM_7") + (pinfunction "Pin_2") + (pintype "passive") + (uuid "ec3503de-7f13-4ecf-9692-9cafde59491b") + ) + (pad "3" thru_hole circle + (at 10 0) + (size 2.8 2.8) + (drill 1.3) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 29 "NC_7") + (pinfunction "Pin_3") + (pintype "passive") + (uuid "704d407c-0df5-4f12-83f0-24163e65b9e1") + ) + (embedded_fonts no) + (model "${KICAD9_3DMODEL_DIR}/TerminalBlock_Phoenix.3dshapes/TerminalBlock_Phoenix_MKDS-1,5-3_1x03_P5.00mm_Horizontal.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" + (placed yes) + (layer "F.Cu") + (uuid "7d02e135-7a4c-4982-8853-940d5cf0dbf3") + (at 139.3725 71.95 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 "Reference" "C9" + (at 0 -2.13 0) + (layer "F.SilkS") + (uuid "2a297cd8-48cc-4ceb-919e-13e8e2190a69") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "0.1uf" + (at 0 1.68 0) + (layer "F.Fab") + (uuid "304d2aa4-f2f3-46c1-9c1a-ef9ab86190f3") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "~" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "6a5ac44a-18cb-4de0-b626-e63845b8fed0") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "Unpolarized capacitor" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "92ba1aac-71f3-45b9-aab4-40da666c3dc3") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Link" "https://robu.in/product/cl21a106kofnnne-samsang-16v-10uf-x5r-%C2%B110-0805-multilayer-ceramic-capacitors-mlcc-smd-smt-rohs/?gad_source=1&gad_campaignid=17427802703&gbraid=0AAAAADvLFWeYd6KQJmaof5AqwX7G6G7RK&gclid=CjwKCAjw687NBhB4EiwAQ645dvOPfam1y5aCD1uRQvjlmer72tAuxihwH4D1G8BPdKh6SRiWARJldBoCKCYQAvD_BwE" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "d2047901-6ad8-4f79-ab7e-24c7cdae90f7") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "C_*") + (path "/7e1aeb10-2d8c-41d6-b10c-3676cf148353") + (sheetname "/") + (sheetfile "SmartFuseBox.kicad_sch") + (attr smd) + (fp_line + (start -0.261252 0.735) + (end 0.261252 0.735) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "956e99f1-e7e3-4ca6-8cc9-6253a3e34144") + ) + (fp_line + (start -0.261252 -0.735) + (end 0.261252 -0.735) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "21e19f34-677d-4c04-801b-83f8512fc71b") + ) + (fp_rect + (start -1.88 -0.98) + (end 1.88 0.98) + (stroke + (width 0.05) + (type solid) + ) + (fill no) + (layer "F.CrtYd") + (uuid "de84d621-fe96-4e75-8804-d2182860bdee") + ) + (fp_rect + (start -1 -0.625) + (end 1 0.625) + (stroke + (width 0.1) + (type solid) + ) + (fill no) + (layer "F.Fab") + (uuid "0c9587ee-f717-46c6-aa40-b4da2e96115b") + ) + (fp_text user "${REFERENCE}" + (at 0 0 0) + (layer "F.Fab") + (uuid "637278f6-cbd9-447b-a118-f22c9392ea30") + (effects + (font + (size 0.5 0.5) + (thickness 0.08) + ) + ) + ) + (pad "1" smd roundrect + (at -1.0375 0 180) + (size 1.175 1.45) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.212766) + (net 3 "VDD33") + (pintype "passive") + (uuid "60f2c75f-fe44-4f50-ab51-ba1bf131d40a") + ) + (pad "2" smd roundrect + (at 1.0375 0 180) + (size 1.175 1.45) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.212766) + (net 1 "GND") + (pintype "passive") + (uuid "b8193df9-8f8b-4435-a8a5-b3813424d2dc") + ) + (embedded_fonts no) + (model "${KICAD9_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.step" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Relay_THT:Relay_SPDT_SANYOU_SRD_Series_Form_C" + (placed yes) + (layer "F.Cu") + (uuid "828273b3-2311-4658-804f-dfe8d4d666a1") + (at 109.326667 110.52 -90) + (descr "relay Sanyou SRD series Form C http://www.sanyourelay.ca/public/products/pdf/SRD.pdf") + (tags "relay Sanyu SRD form C") + (property "Reference" "K6" + (at 8.5 -8.8 90) + (layer "F.SilkS") + (uuid "e128de35-191f-4aa3-9f86-7e498814072f") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "SRD-12VDC-SL-C" + (at 8 -9.6 90) + (layer "F.Fab") + (uuid "84672a10-8396-4870-90b5-153aff5cef97") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "http://www.sanyourelay.ca/public/products/pdf/SRD.pdf" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "1e628972-706b-4380-aeba-b003dac0a01f") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "Sanyo SRD relay, Single Pole Miniature Power Relay," + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "d4be77e6-4d23-4951-9115-336faec220a1") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Link" "https://robu.in/product/1-month-warranty-1027/" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "3c7c9fb7-c6d6-42e5-ae68-cc3999cce713") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "Relay*SPDT*SANYOU*SRD*Series*Form*C*") + (path "/93da0be3-eafc-49b0-87c0-1683ca522b12") + (sheetname "/") + (sheetfile "SmartFuseBox.kicad_sch") + (attr through_hole) + (fp_line + (start 18.4 7.8) + (end -1.4 7.8) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "2b1609d6-7380-4438-bcf6-a6b83fa45294") + ) + (fp_line + (start 3.55 6.05) + (end 6.05 6.05) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "804ca4d1-9af3-4132-9f2b-ab021abe2eec") + ) + (fp_line + (start 14.15 4.2) + (end 14.15 1.75) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "f2a0976a-8101-46e6-abce-5fb4d4aef331") + ) + (fp_line + (start 9.45 3.65) + (end 2.65 3.65) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "eb750061-8d66-4f88-8b2b-ff7411dcf550") + ) + (fp_line + (start 4.05 1.85) + (end 4.05 -1.75) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "03b3d92d-5b56-42b2-bf22-c138b6396488") + ) + (fp_line + (start 6.05 1.85) + (end 6.05 6.05) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "20dab941-fb1f-42e5-a0f1-5cb69057b511") + ) + (fp_line + (start 8.05 1.85) + (end 4.05 1.85) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "2abaf427-394c-46a7-9798-7158e764115e") + ) + (fp_line + (start 8.05 1.85) + (end 4.05 -1.75) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "52345ae0-585c-4c31-af5b-65ec18c8b4c2") + ) + (fp_line + (start -1.4 1.2) + (end -1.4 7.8) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "3658f0a8-d845-4bd1-9e2f-84be24f3078c") + ) + (fp_line + (start 2.65 0.05) + (end 2.65 3.65) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "acee34fb-d8be-4d2f-ab71-44ccf0df414b") + ) + (fp_line + (start 2.65 0.05) + (end 1.85 0.05) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "fc3d4bcf-e10c-4839-8e4e-eab94c0d6a46") + ) + (fp_line + (start 9.45 0.05) + (end 9.45 3.65) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "8d2825c2-934a-46a0-bc3a-7fedd6aa4c41") + ) + (fp_line + (start 9.45 0.05) + (end 10.95 0.05) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "a80669cf-942a-4f5c-ad95-426a5402698d") + ) + (fp_line + (start 10.95 0.05) + (end 15.55 -2.45) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "a5f2f8d1-5a3c-43a5-9bdc-aaa9af62daf3") + ) + (fp_line + (start 4.05 -1.75) + (end 8.05 -1.75) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "98491473-02a2-43e4-abe9-75a228b7f550") + ) + (fp_line + (start 8.05 -1.75) + (end 8.05 1.85) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "2d5870fb-20e2-4f6f-83a4-d9d4cb52730b") + ) + (fp_line + (start 14.15 -4.2) + (end 14.15 -1.7) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "ecd306ab-700f-4451-b0a1-25e572e5ce42") + ) + (fp_line + (start 6.05 -5.95) + (end 6.05 -1.75) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "b6e9b745-9c07-4e56-a374-379663e585b0") + ) + (fp_line + (start 6.05 -5.95) + (end 3.55 -5.95) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "cdfb4f10-4a49-4e61-a918-c0980120c9de") + ) + (fp_line + (start -1.4 -7.8) + (end -1.4 -1.2) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "408a39a0-60de-4e3d-b20f-cee489806c78") + ) + (fp_line + (start -1.4 -7.8) + (end 18.4 -7.8) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "43750157-79b6-49cd-87f0-9995ce690bfc") + ) + (fp_line + (start 18.4 -7.8) + (end 18.4 7.8) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "54652451-9baa-4c52-ae38-f8aaf55948e7") + ) + (fp_line + (start -1.55 7.95) + (end 18.55 7.95) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "81f29c2d-0bbb-45d2-a8a2-bed0035e60a6") + ) + (fp_line + (start -1.55 7.95) + (end -1.55 -7.95) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "db60b184-1112-4574-a6ee-b4a45415d412") + ) + (fp_line + (start 18.55 -7.95) + (end 18.55 7.95) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "98b2891f-6e69-41ae-9d2c-7932c9f2e249") + ) + (fp_line + (start 18.55 -7.95) + (end -1.55 -7.95) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "18aae9b2-829a-4ab0-ac2a-f87b8c905c36") + ) + (fp_line + (start -1.3 7.7) + (end -1.3 -7.7) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.Fab") + (uuid "2b397490-28ce-40c7-a16b-1a40b471bfde") + ) + (fp_line + (start 18.3 7.7) + (end -1.3 7.7) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.Fab") + (uuid "e714b9fd-bf1a-4855-99f6-142645efc241") + ) + (fp_line + (start -1.3 -7.7) + (end 18.3 -7.7) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.Fab") + (uuid "3d1ac9c1-b9cc-49c0-b5ef-8147d6a21bde") + ) + (fp_line + (start 18.3 -7.7) + (end 18.3 7.7) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.Fab") + (uuid "42d320bf-5cf2-4027-9658-2e12d42f0f30") + ) + (fp_text user "${REFERENCE}" + (at 7.1 0.025 90) + (layer "F.Fab") + (uuid "1e6f1dab-f1da-4e1d-8194-32c027dec131") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (fp_text user "1" + (at 0 -2.3 90) + (layer "F.Fab") + (uuid "bf49e1eb-d483-425c-a62d-904ae19ea799") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (pad "1" thru_hole circle + (at 0 0) + (size 3 3) + (drill 1.3) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 27 "COM_6") + (pintype "passive") + (uuid "d9c6b8bd-77a7-44d2-883a-8924e581ecd0") + ) + (pad "2" thru_hole circle + (at 1.95 6.05) + (size 2.5 2.5) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 87 "R-6") + (pintype "passive") + (uuid "b3e16f2c-ce7f-41fe-b43f-53e1769074ce") + ) + (pad "3" thru_hole circle + (at 14.15 6.05) + (size 3 3) + (drill 1.3) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 25 "NO_6") + (pintype "passive") + (uuid "1cf0ae88-435e-4b0f-9e9d-1bec168f6fd7") + ) + (pad "4" thru_hole circle + (at 14.2 -6) + (size 3 3) + (drill 1.3) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 26 "NC_6") + (pintype "passive") + (uuid "e690f8b6-fa13-47a3-b1f1-53659f5dc962") + ) + (pad "5" thru_hole circle + (at 1.95 -5.95) + (size 2.5 2.5) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 81 "/12V_DC-Regulated") + (pintype "passive") + (uuid "4f2165c5-4bd6-4942-9ddf-5823f08c0a88") + ) + (embedded_fonts no) + (model "${KICAD9_3DMODEL_DIR}/Relay_THT.3dshapes/Relay_SPDT_SANYOU_SRD_Series_Form_C.step" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Relay_THT:Relay_SPDT_SANYOU_SRD_Series_Form_C" + (placed yes) + (layer "F.Cu") + (uuid "83735b90-2997-4305-a8f3-f2d2d07d78b8") + (at 127.66 110.72 -90) + (descr "relay Sanyou SRD series Form C http://www.sanyourelay.ca/public/products/pdf/SRD.pdf") + (tags "relay Sanyu SRD form C") + (property "Reference" "K5" + (at 8.7 -9.4 90) + (layer "F.SilkS") + (uuid "9fa11d9b-01d6-4295-b682-fcfefed65782") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "SRD-12VDC-SL-C" + (at 8 -9.6 90) + (layer "F.Fab") + (uuid "f267ed34-5dee-4190-b11b-587af5ec89ff") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "http://www.sanyourelay.ca/public/products/pdf/SRD.pdf" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "49f69044-ce88-4bb6-b070-5d44718ca7cf") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "Sanyo SRD relay, Single Pole Miniature Power Relay," + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "024f0f30-f14a-48b1-8a26-9932bfbc061a") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Link" "https://robu.in/product/1-month-warranty-1027/" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "617da767-c945-492d-b46f-f1a7273971b7") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "Relay*SPDT*SANYOU*SRD*Series*Form*C*") + (path "/efea968d-6bf9-4ba2-9ec4-452bff38765d") + (sheetname "/") + (sheetfile "SmartFuseBox.kicad_sch") + (attr through_hole) + (fp_line + (start 18.4 7.8) + (end -1.4 7.8) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "8c8bedf4-44d2-4beb-b1d0-1f530139394c") + ) + (fp_line + (start 3.55 6.05) + (end 6.05 6.05) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "af07b47d-8621-4db3-b34c-3d0bcdc9fcf2") + ) + (fp_line + (start 14.15 4.2) + (end 14.15 1.75) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "c425b9e3-85e2-44f8-ba68-db4472f91c23") + ) + (fp_line + (start 9.45 3.65) + (end 2.65 3.65) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "7b0927a0-1b0a-4341-929e-8d0653364946") + ) + (fp_line + (start 4.05 1.85) + (end 4.05 -1.75) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "e65db9ff-778c-426c-b789-fa9d07cda083") + ) + (fp_line + (start 6.05 1.85) + (end 6.05 6.05) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "0ff43bc9-bcba-4df2-a219-49d108f03062") + ) + (fp_line + (start 8.05 1.85) + (end 4.05 1.85) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "253a7c34-cd6d-436f-b5df-025350953107") + ) + (fp_line + (start 8.05 1.85) + (end 4.05 -1.75) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "d20208c1-d027-420e-a771-1096df34be8f") + ) + (fp_line + (start -1.4 1.2) + (end -1.4 7.8) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "8e6783c7-fc67-45e0-972e-9e4a36dc809d") + ) + (fp_line + (start 2.65 0.05) + (end 2.65 3.65) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "49a52fe2-95de-4a82-844e-a6291925f9ca") + ) + (fp_line + (start 2.65 0.05) + (end 1.85 0.05) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "7305750a-7e7f-4454-a332-d643b9a99615") + ) + (fp_line + (start 9.45 0.05) + (end 9.45 3.65) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "c654ccf4-2f45-4901-8951-f97b0fcff67f") + ) + (fp_line + (start 9.45 0.05) + (end 10.95 0.05) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "ff60e0ea-2edf-470a-ae4a-44c4913bb4a0") + ) + (fp_line + (start 10.95 0.05) + (end 15.55 -2.45) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "31610d0c-51ae-4bbf-bbd6-b80d20ea9ef1") + ) + (fp_line + (start 4.05 -1.75) + (end 8.05 -1.75) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "42dc0c03-3590-49b4-ae06-06792915ab1a") + ) + (fp_line + (start 8.05 -1.75) + (end 8.05 1.85) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "a31f4571-cf33-45cc-bac4-6bbf580ef4ab") + ) + (fp_line + (start 14.15 -4.2) + (end 14.15 -1.7) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "fd5da9dd-5909-4f9e-86b9-099cfe4e3396") + ) + (fp_line + (start 6.05 -5.95) + (end 6.05 -1.75) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "151ecda0-58e2-4bba-9600-1cf2fc380e9c") + ) + (fp_line + (start 6.05 -5.95) + (end 3.55 -5.95) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "d4026a0c-a18f-4a44-a33a-0a81b04e8305") + ) + (fp_line + (start -1.4 -7.8) + (end -1.4 -1.2) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "b4989e9a-aa0f-43a8-bd45-208c48b7280f") + ) + (fp_line + (start -1.4 -7.8) + (end 18.4 -7.8) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "9044603c-c62e-46b4-8b12-768c59b06f79") + ) + (fp_line + (start 18.4 -7.8) + (end 18.4 7.8) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "7d382c9e-f11d-4ac4-b985-8c8375860792") + ) + (fp_line + (start -1.55 7.95) + (end 18.55 7.95) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "b0d0d30e-99d1-47f2-bd96-c5c0d2edfa79") + ) + (fp_line + (start -1.55 7.95) + (end -1.55 -7.95) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "01117bfc-398b-49d1-ba1a-c49f91285b8a") + ) + (fp_line + (start 18.55 -7.95) + (end 18.55 7.95) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "ce235981-ba94-4a68-9cc5-8ed3164e8820") + ) + (fp_line + (start 18.55 -7.95) + (end -1.55 -7.95) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "6a63e810-1855-4578-9b5f-66bd287399cb") + ) + (fp_line + (start -1.3 7.7) + (end -1.3 -7.7) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.Fab") + (uuid "8b0223a4-74b7-4ea1-aebc-6c1433dda24e") + ) + (fp_line + (start 18.3 7.7) + (end -1.3 7.7) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.Fab") + (uuid "b7b5dc7c-6ad5-48a0-ba72-8b61f2e36350") + ) + (fp_line + (start -1.3 -7.7) + (end 18.3 -7.7) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.Fab") + (uuid "f91252f9-bde1-42df-8afc-ffbfafc42685") + ) + (fp_line + (start 18.3 -7.7) + (end 18.3 7.7) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.Fab") + (uuid "2e891c75-d009-4750-be3f-f0b45aba59ee") + ) + (fp_text user "1" + (at 0 -2.3 90) + (layer "F.Fab") + (uuid "b29fd72b-4365-4179-96d0-9f9d4fd58221") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (fp_text user "${REFERENCE}" + (at 7.1 0.025 90) + (layer "F.Fab") + (uuid "d0fc68ef-e399-4d9e-b084-214396b71c26") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (pad "1" thru_hole circle + (at 0 0) + (size 3 3) + (drill 1.3) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 24 "COM_5") + (pintype "passive") + (uuid "b0c9583d-2f14-4851-834f-bf15c76dde02") + ) + (pad "2" thru_hole circle + (at 1.95 6.05) + (size 2.5 2.5) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 86 "R-5") + (pintype "passive") + (uuid "0898c830-3e16-4b47-82fa-f5d43947028a") + ) + (pad "3" thru_hole circle + (at 14.15 6.05) + (size 3 3) + (drill 1.3) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 22 "NO_5") + (pintype "passive") + (uuid "5bb851a5-38c7-4a9b-bc64-941ef04fe8ac") + ) + (pad "4" thru_hole circle + (at 14.2 -6) + (size 3 3) + (drill 1.3) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 23 "NC_5") + (pintype "passive") + (uuid "8a753184-b7a8-4465-a877-752108fa4327") + ) + (pad "5" thru_hole circle + (at 1.95 -5.95) + (size 2.5 2.5) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 81 "/12V_DC-Regulated") + (pintype "passive") + (uuid "e46dd028-7fa8-4206-895d-27f8f07dfccf") + ) + (embedded_fonts no) + (model "${KICAD9_3DMODEL_DIR}/Relay_THT.3dshapes/Relay_SPDT_SANYOU_SRD_Series_Form_C.step" + (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" + (placed yes) + (layer "F.Cu") + (uuid "872d5d73-5082-4db0-8d18-49cc6d9113b5") + (at 85.06 90.4575 90) + (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 "Reference" "C8" + (at 0 -1.68 90) + (layer "F.SilkS") + (uuid "7858747a-8c8f-4d12-8140-cc1ba0e5ca47") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "10uf" + (at 0 1.68 90) + (layer "F.Fab") + (uuid "be7a63da-55c6-4eac-8e11-f0ae54e0fe8a") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "~" + (at 0 0 90) + (layer "F.Fab") + (hide yes) + (uuid "c7b80461-ac26-463c-882e-a6a848de7fe0") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "Unpolarized capacitor" + (at 0 0 90) + (layer "F.Fab") + (hide yes) + (uuid "77b76cfd-3f13-405f-985e-b08f530d3688") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Link" "https://robu.in/product/0402x104k100nt-fh-smd-multilayer-ceramic-capacitor-0-1-%C2%B5f100nf-10-v-0402-1005-metric-%C2%B1-10-x5r/" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "ab781b65-fbe0-4f04-a715-3e9a9fa786a7") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "C_*") + (path "/f44e8647-4680-4b51-a31b-6f365bfcd764") + (sheetname "/") + (sheetfile "SmartFuseBox.kicad_sch") + (attr smd) + (fp_line + (start -0.261252 -0.735) + (end 0.261252 -0.735) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "c8cf7a98-3a2a-41e0-9cc4-3d711749a312") + ) + (fp_line + (start -0.261252 0.735) + (end 0.261252 0.735) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "76792010-7125-462b-957f-d8dd843df47f") + ) + (fp_rect + (start -1.88 -0.98) + (end 1.88 0.98) + (stroke + (width 0.05) + (type solid) + ) + (fill no) + (layer "F.CrtYd") + (uuid "695ae2cb-e86d-46df-a7df-111a19de04bb") + ) + (fp_rect + (start -1 -0.625) + (end 1 0.625) + (stroke + (width 0.1) + (type solid) + ) + (fill no) + (layer "F.Fab") + (uuid "4e99c762-c3a8-4b40-ac8b-39354a01510d") + ) + (fp_text user "${REFERENCE}" + (at 0 0 90) + (layer "F.Fab") + (uuid "729c9424-6552-462e-8505-020abd19eff6") + (effects + (font + (size 0.5 0.5) + (thickness 0.08) + ) + ) + ) + (pad "1" smd roundrect + (at -1.0375 0 90) + (size 1.175 1.45) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.212766) + (net 81 "/12V_DC-Regulated") + (pintype "passive") + (uuid "e5c783bf-23da-4efd-9de0-6b68e7228028") + ) + (pad "2" smd roundrect + (at 1.0375 0 90) + (size 1.175 1.45) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.212766) + (net 1 "GND") + (pintype "passive") + (uuid "7e60c0d1-e23b-4b90-9099-b5650dd7badb") + ) + (embedded_fonts no) + (model "${KICAD9_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.step" + (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" + (placed yes) + (layer "F.Cu") + (uuid "87a5f53f-c039-4a38-aa8c-c0f8755a1bf7") + (at 182.96 113.0575 -90) + (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 "Reference" "C32" + (at 2.8 0.2 0) + (layer "F.SilkS") + (uuid "da3af8f8-ac88-452a-ac58-eeb8a270a990") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "4.8nf" + (at 0 1.68 90) + (layer "F.Fab") + (uuid "08076a94-7167-4f58-927b-c0b58a33f17a") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "~" + (at 0 0 90) + (layer "F.Fab") + (hide yes) + (uuid "4da35654-273e-456b-b4cf-c7bf5e3c3c8e") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "Unpolarized capacitor" + (at 0 0 90) + (layer "F.Fab") + (hide yes) + (uuid "85e483a8-dbd5-4f42-8fc5-a99e798ecbf4") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Link" "https://robu.in/product/cl21a106kofnnne-samsang-16v-10uf-x5r-%C2%B110-0805-multilayer-ceramic-capacitors-mlcc-smd-smt-rohs/?gad_source=1&gad_campaignid=17427802703&gbraid=0AAAAADvLFWeYd6KQJmaof5AqwX7G6G7RK&gclid=CjwKCAjw687NBhB4EiwAQ645dvOPfam1y5aCD1uRQvjlmer72tAuxihwH4D1G8BPdKh6SRiWARJldBoCKCYQAvD_BwE" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "099a498f-83ea-4493-8300-e57e9e111d23") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "C_*") + (path "/6f06a967-3966-4bee-9496-d9221cc3a739") + (sheetname "/") + (sheetfile "SmartFuseBox.kicad_sch") + (attr smd) + (fp_line + (start -0.261252 0.735) + (end 0.261252 0.735) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "21cd96a7-30e6-41bc-8625-3b1cfc62e63d") + ) + (fp_line + (start -0.261252 -0.735) + (end 0.261252 -0.735) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "f6852b1e-361a-4d68-ab25-fa126089939b") + ) + (fp_rect + (start -1.88 -0.98) + (end 1.88 0.98) + (stroke + (width 0.05) + (type solid) + ) + (fill no) + (layer "F.CrtYd") + (uuid "bc9c71a7-cca8-4ccc-90ed-9222ae5b04f2") + ) + (fp_rect + (start -1 -0.625) + (end 1 0.625) + (stroke + (width 0.1) + (type solid) + ) + (fill no) + (layer "F.Fab") + (uuid "d8ee6317-d4b8-499b-a718-f1499e409279") + ) + (fp_text user "${REFERENCE}" + (at 0 0 90) + (layer "F.Fab") + (uuid "9038f8ba-7c33-4132-9363-0574494cfd50") + (effects + (font + (size 0.5 0.5) + (thickness 0.08) + ) + ) + ) + (pad "1" smd roundrect + (at -1.0375 0 270) + (size 1.175 1.45) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.212766) + (net 76 "Net-(U3-COMP)") + (pintype "passive") + (uuid "d38b827c-477e-4aec-ba95-33d56f0427b3") + ) + (pad "2" smd roundrect + (at 1.0375 0 270) + (size 1.175 1.45) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.212766) + (net 75 "Net-(R15-+)") + (pintype "passive") + (uuid "01b4ecbb-c5b4-42de-8715-65e28c7a4352") + ) + (embedded_fonts no) + (model "${KICAD9_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.step" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Passives:R_0805_2012Metric_Pad1.20x1.40mm_HandSolder" + (placed yes) + (layer "F.Cu") + (uuid "89b48346-7edc-47da-89aa-aafd7d313657") + (at 144.26 63.02 180) + (descr "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") + (tags "resistor handsolder") + (property "Reference" "R13" + (at 0 -1.65 0) + (layer "F.SilkS") + (hide yes) + (uuid "fc1a3719-d6b9-4bf0-afb9-c019b1e6a5d7") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "4.7k" + (at 0 1.65 0) + (layer "F.Fab") + (uuid "4ee80f3f-a1c2-46d4-adf5-eb148ef68746") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "853b6a2f-0c8d-4ad8-a0eb-ef34fdcef9ea") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "resistor" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "bef4f229-80ae-4a19-8427-8508a2502e7b") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Indicator" "+" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "98bf5b72-54a0-48c3-90d9-ee12bbddcc59") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Rating" "W" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "25993957-78ba-408a-8ad1-5923a74fa88f") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (path "/ae03023d-a79c-45f7-ac84-1ab52298656f") + (sheetname "/") + (sheetfile "SmartFuseBox.kicad_sch") + (attr smd) + (fp_line + (start -0.227064 0.735) + (end 0.227064 0.735) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "13bb3f94-6bba-46fe-abb5-a2691dd52475") + ) + (fp_line + (start -0.227064 -0.735) + (end 0.227064 -0.735) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "388617e5-37a6-46b6-9a93-792e0c5b2717") + ) + (fp_line + (start 1.85 0.95) + (end -1.85 0.95) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "929068d2-ec46-447e-83a7-c46029bb9557") + ) + (fp_line + (start 1.85 -0.95) + (end 1.85 0.95) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "2284f1e0-617a-4c32-adb5-afa59467b625") + ) + (fp_line + (start -1.85 0.95) + (end -1.85 -0.95) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "212b389a-603a-45b3-b2cf-5a55901b6c97") + ) + (fp_line + (start -1.85 -0.95) + (end 1.85 -0.95) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "40d2c77a-89f6-4509-9027-32d5ac5d211a") + ) + (fp_line + (start 1 0.625) + (end -1 0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "dd162e27-46ef-4991-a207-37e3a22879a0") + ) + (fp_line + (start 1 -0.625) + (end 1 0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "0c688a4f-f84d-4e4a-858e-af701337ee78") + ) + (fp_line + (start -1 0.625) + (end -1 -0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "e7c76b2e-86b3-484b-99f6-476a8b9a2e23") + ) + (fp_line + (start -1 -0.625) + (end 1 -0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "e998b1e3-b3c7-40d9-ac9b-af119f0755bc") + ) + (fp_text user "${REFERENCE}" + (at 0 0 0) + (layer "F.Fab") + (uuid "e4d89b47-fa41-4cd8-bcb2-2f110aba68ed") + (effects + (font + (size 0.5 0.5) + (thickness 0.08) + ) + ) + ) + (pad "1" smd roundrect + (at -1 0) + (size 1.2 1.4) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.208333) + (net 3 "VDD33") + (pinfunction "+") + (pintype "passive") + (uuid "9226cabb-2287-4fa6-a975-f5b5e911517f") + ) + (pad "2" smd roundrect + (at 1 0) + (size 1.2 1.4) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.208333) + (net 49 "DS18B20_OUT") + (pinfunction "-") + (pintype "passive") + (uuid "65786cb0-3db8-4671-a5b3-2c2c2fdb9a1e") + ) + (embedded_fonts no) + (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Connector_JST:JST_PH_S4B-PH-K_1x04_P2.00mm_Horizontal" + (placed yes) + (layer "F.Cu") + (uuid "8fe56dde-ecd6-4575-a643-841e6e53925c") + (at 140.26 133.17) + (descr "JST PH series connector, S4B-PH-K (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator") + (tags "connector JST PH horizontal") + (property "Reference" "J13" + (at 9.14 0.23 90) + (layer "F.SilkS") + (uuid "be97f449-bd7a-443c-bc68-42b3b448c29a") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "Conn_01x04_Socket" + (at 3 7.45 0) + (layer "F.Fab") + (uuid "ef1e5f17-b126-48c1-815b-6f29048c7daa") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "~" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "f5b0fc10-859e-4a9a-9c4e-41f3ceff9122") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "Generic connector, single row, 01x04, script generated" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "29bd42da-80dc-4a74-b7ec-b03c26721300") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "Connector*:*_1x??_*") + (path "/caac81f2-7195-4c54-b3d8-9b934865442c") + (sheetname "/") + (sheetfile "SmartFuseBox.kicad_sch") + (attr through_hole) + (fp_line + (start -2.06 -1.46) + (end -2.06 6.36) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "b13b0d1f-f3d0-4e56-9d26-565950f745ce") + ) + (fp_line + (start -2.06 0.14) + (end -1.14 0.14) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "9e1c727b-3279-4d85-91b4-4d74619cf144") + ) + (fp_line + (start -2.06 6.36) + (end 8.06 6.36) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "48dc01f7-4f17-4118-9661-1ad4a94f93ac") + ) + (fp_line + (start -1.14 -1.46) + (end -2.06 -1.46) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "1935cdc1-034c-4e14-b570-61fc8185c539") + ) + (fp_line + (start -1.14 0.14) + (end -1.14 -1.46) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "36522777-475f-4e7e-bc96-e54cc3cfba53") + ) + (fp_line + (start -0.86 0.14) + (end -1.14 0.14) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "4b4f3590-db69-4409-89e1-dc4d4bfab34e") + ) + (fp_line + (start -0.86 0.14) + (end -0.86 -1.075) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "8dd015ac-e6a6-47a0-8424-74057fac66eb") + ) + (fp_line + (start -0.8 4.1) + (end -0.8 6.36) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "700d040a-9f77-48f2-b858-e81c4ad7f675") + ) + (fp_line + (start -0.3 4.1) + (end -0.3 6.36) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "085575a4-453f-4de8-a1dc-d8b51efbc7bb") + ) + (fp_line + (start 0.5 2) + (end 5.5 2) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "0fa6d6f1-e028-4761-aed0-9dac53b29f16") + ) + (fp_line + (start 0.5 6.36) + (end 0.5 2) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "03afab08-b133-44d6-8132-b1359444ecff") + ) + (fp_line + (start 5.5 2) + (end 5.5 6.36) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "f4dcffa0-ac2d-4ead-a5c3-a562e55a614e") + ) + (fp_line + (start 7.14 -1.46) + (end 7.14 0.14) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "01c807b7-ac19-4c52-a974-b259575c8719") + ) + (fp_line + (start 7.14 0.14) + (end 6.86 0.14) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "b32c9a7c-e9c3-4408-ae84-30d500ec5ea0") + ) + (fp_line + (start 8.06 -1.46) + (end 7.14 -1.46) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "b80c490b-4f7e-4a44-b6e9-b47e21a885f6") + ) + (fp_line + (start 8.06 0.14) + (end 7.14 0.14) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "f558ee66-421a-4d0f-85bf-9dd8f33865c5") + ) + (fp_line + (start 8.06 6.36) + (end 8.06 -1.46) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "5affe772-514e-49c4-b29a-1981c167512b") + ) + (fp_rect + (start -1.3 2.5) + (end -0.3 4.1) + (stroke + (width 0.12) + (type solid) + ) + (fill no) + (layer "F.SilkS") + (uuid "b8433961-1b21-4281-99a7-b0b367b0ce82") + ) + (fp_rect + (start 6.3 2.5) + (end 7.3 4.1) + (stroke + (width 0.12) + (type solid) + ) + (fill no) + (layer "F.SilkS") + (uuid "6e6e91ee-e84d-43c7-94ff-ccf84f3f76d1") + ) + (fp_rect + (start -2.45 -1.85) + (end 8.45 6.75) + (stroke + (width 0.05) + (type solid) + ) + (fill no) + (layer "F.CrtYd") + (uuid "fe6962d1-9f06-4933-bf94-6fb064f4c2be") + ) + (fp_line + (start -1.95 -1.35) + (end -1.95 6.25) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "13d5c01a-292a-492b-b974-b4a501f603f7") + ) + (fp_line + (start -1.95 6.25) + (end 7.95 6.25) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "4ce67325-363c-4f4d-8000-3e1f7d0e94dd") + ) + (fp_line + (start -1.25 -1.35) + (end -1.95 -1.35) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "7a0390d4-b416-412e-92ca-c8e9f384dd3f") + ) + (fp_line + (start -1.25 0.25) + (end -1.25 -1.35) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "7ec562ec-b2f3-4f3e-a84f-c905dc06d535") + ) + (fp_line + (start -0.5 1.375) + (end 0.5 1.375) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "aad6c356-88a8-4cd9-93e3-9231d7ed37fb") + ) + (fp_line + (start 0 0.875) + (end -0.5 1.375) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "f5a3eec4-fe58-4059-944c-5955ce453174") + ) + (fp_line + (start 0.5 1.375) + (end 0 0.875) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "ee61efa4-1d55-4ca6-ada6-4267899a84ef") + ) + (fp_line + (start 7.25 -1.35) + (end 7.25 0.25) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "e8ef7440-ded9-47e2-bcfa-be89ce4898cb") + ) + (fp_line + (start 7.25 0.25) + (end -1.25 0.25) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "8ab1ecab-d2a7-44e5-b2f1-36dc3f59622f") + ) + (fp_line + (start 7.95 -1.35) + (end 7.25 -1.35) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "a74b1303-fb0c-4ba0-a4ef-08d0ec34daf7") + ) + (fp_line + (start 7.95 6.25) + (end 7.95 -1.35) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "479fdef2-0f00-4cac-b267-4e8d6627d95e") + ) + (fp_text user "${REFERENCE}" + (at 3 2.5 0) + (layer "F.Fab") + (uuid "75bc23ea-0fc3-4e2e-9595-58dd6ed7d6ac") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (pad "1" thru_hole roundrect + (at 0 0) + (size 1.2 1.75) + (drill 0.75) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (roundrect_rratio 0.208333) + (net 64 "SIG_A5") + (pinfunction "Pin_1") + (pintype "passive") + (uuid "b43ee2ba-94c7-49a4-bd32-ee39fc62b1d7") + ) + (pad "2" thru_hole oval + (at 2 0) + (size 1.2 1.75) + (drill 0.75) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 53 "SIG_A6") + (pinfunction "Pin_2") + (pintype "passive") + (uuid "4d07f112-1ec8-4175-a8df-c7eac0875591") + ) + (pad "3" thru_hole oval + (at 4 0) + (size 1.2 1.75) + (drill 0.75) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 3 "VDD33") + (pinfunction "Pin_3") + (pintype "passive") + (uuid "fe382c8a-c582-4aa0-a67e-0d5258c39336") + ) + (pad "4" thru_hole oval + (at 6 0) + (size 1.2 1.75) + (drill 0.75) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 1 "GND") + (pinfunction "Pin_4") + (pintype "passive") + (uuid "9a31cbca-4b44-4769-8867-11409fee3c77") + ) + (embedded_fonts no) + (model "${KICAD9_3DMODEL_DIR}/Connector_JST.3dshapes/JST_PH_S4B-PH-K_1x04_P2.00mm_Horizontal.step" + (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" + (placed yes) + (layer "F.Cu") + (uuid "95cad486-ab9a-4cb2-95de-0584045c6911") + (at 107.06 91.02 90) + (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 "Reference" "C5" + (at 0 -1.68 90) + (layer "F.SilkS") + (uuid "085489ee-0bd5-427f-9402-98c9d940b817") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "0.1uf" + (at 0 1.68 90) + (layer "F.Fab") + (uuid "56c0e35d-068f-4090-ad8f-8d047ffe603d") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "~" + (at 0 0 90) + (layer "F.Fab") + (hide yes) + (uuid "1a64aaba-3a0c-42c6-a621-96283cb7b444") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "Unpolarized capacitor" + (at 0 0 90) + (layer "F.Fab") + (hide yes) + (uuid "a0d6dff8-114d-4190-a0c6-8c043a8d9406") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Link" "https://robu.in/product/cl21a106kofnnne-samsang-16v-10uf-x5r-%C2%B110-0805-multilayer-ceramic-capacitors-mlcc-smd-smt-rohs/?gad_source=1&gad_campaignid=17427802703&gbraid=0AAAAADvLFWeYd6KQJmaof5AqwX7G6G7RK&gclid=CjwKCAjw687NBhB4EiwAQ645dvOPfam1y5aCD1uRQvjlmer72tAuxihwH4D1G8BPdKh6SRiWARJldBoCKCYQAvD_BwE" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "7a59ffae-1995-458d-8c91-37ba18bb7ccf") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "C_*") + (path "/0144fa04-72f8-4f16-9ff8-8ae0605d5d02") + (sheetname "/") + (sheetfile "SmartFuseBox.kicad_sch") + (attr smd) + (fp_line + (start -0.261252 -0.735) + (end 0.261252 -0.735) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "9b485fce-4066-4f49-820e-f2511b13195c") + ) + (fp_line + (start -0.261252 0.735) + (end 0.261252 0.735) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "1d367175-8d1f-4796-a697-165bdc2fdf70") + ) + (fp_rect + (start -1.88 -0.98) + (end 1.88 0.98) + (stroke + (width 0.05) + (type solid) + ) + (fill no) + (layer "F.CrtYd") + (uuid "f8f07d9d-4cd5-4b20-978b-2cd1b9c7e109") + ) + (fp_rect + (start -1 -0.625) + (end 1 0.625) + (stroke + (width 0.1) + (type solid) + ) + (fill no) + (layer "F.Fab") + (uuid "a2d12896-cc39-4bd9-ad25-a6038cae9b1f") + ) + (fp_text user "${REFERENCE}" + (at 0 0 90) + (layer "F.Fab") + (uuid "55fb2695-bb7a-482a-8023-db19424c6ac9") + (effects + (font + (size 0.5 0.5) + (thickness 0.08) + ) + ) + ) + (pad "1" smd roundrect + (at -1.0375 0 90) + (size 1.175 1.45) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.212766) + (net 81 "/12V_DC-Regulated") + (pintype "passive") + (uuid "ce83ddcf-fa9c-452b-8a2a-9b24b0e86835") + ) + (pad "2" smd roundrect + (at 1.0375 0 90) + (size 1.175 1.45) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.212766) + (net 1 "GND") + (pintype "passive") + (uuid "346082c8-4088-4059-a842-572cc405a6e3") + ) + (embedded_fonts no) + (model "${KICAD9_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.step" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Inductor_SMD:L_SOREDE_SNR.1050_10x10x5mm" + (layer "F.Cu") + (uuid "99448f29-86d0-4b3d-9b64-cab107512da6") + (at 179.26 95.02 180) + (descr "Sorede 10x10x5mm Power Inductor, https://datasheet.lcsc.com/lcsc/2201141530_SOREDE-SNR-1050-TYD4R7MT00_C2942304.pdf") + (tags "Inductor Sorede SNR ") + (property "Reference" "L2" + (at 0.2 6 0) + (layer "F.SilkS") + (uuid "b960aaa3-9307-4c60-b9a6-376853cd8887") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "10uH, 4A" + (at 0 6.15 180) + (unlocked yes) + (layer "F.Fab") + (uuid "52793e33-3d16-4718-8e78-8f78e22a4a4b") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "~" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "76cad259-cf9b-4620-88e8-c02cc4917a2b") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "Inductor" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "9bb8aacd-7c19-44ae-ab2a-6681383d331d") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Link" "https://robu.in/product/33uh-5a-high-current-toroidal-dip-inductor-16mm-od-pack-of-5/" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "aff48d56-370b-4d61-8d49-39a612ff3da9") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "Choke_* *Coil* Inductor_* L_*") + (path "/4b827c64-7abe-4fb3-b720-05e27af3ebfa") + (sheetname "/") + (sheetfile "SmartFuseBox.kicad_sch") + (attr smd) + (fp_line + (start 5.1 5.1) + (end -5.1 5.1) + (stroke + (width 0.12) + (type default) + ) + (layer "F.SilkS") + (uuid "65181844-d9eb-4e05-a98a-067c38689da8") + ) + (fp_line + (start 5.1 4.6) + (end 5.1 5.1) + (stroke + (width 0.12) + (type default) + ) + (layer "F.SilkS") + (uuid "bac9c5d7-6e9b-4bec-9373-8a3c4250147e") + ) + (fp_line + (start 5.1 -5.1) + (end 5.1 -4.6) + (stroke + (width 0.12) + (type default) + ) + (layer "F.SilkS") + (uuid "da85aaa6-1101-45cc-b5a7-c35c12be524d") + ) + (fp_line + (start -5.1 5.1) + (end -5.1 4.6) + (stroke + (width 0.12) + (type default) + ) + (layer "F.SilkS") + (uuid "ab5e1c9c-6b06-482f-8bc0-d580ed191fc2") + ) + (fp_line + (start -5.1 -4.6) + (end -5.1 -5.1) + (stroke + (width 0.12) + (type default) + ) + (layer "F.SilkS") + (uuid "5abc7527-6566-4122-b929-6cf51da5546b") + ) + (fp_line + (start -5.1 -5.1) + (end 5.1 -5.1) + (stroke + (width 0.12) + (type default) + ) + (layer "F.SilkS") + (uuid "4ee9ffd5-aa08-4fb8-8ef9-ca1c1e63f3ea") + ) + (fp_rect + (start -5.35 -5.25) + (end 5.35 5.25) + (stroke + (width 0.05) + (type default) + ) + (fill no) + (layer "F.CrtYd") + (uuid "807c2bd8-cabc-4ebb-ae87-f8272eedb958") + ) + (fp_rect + (start -5 -5) + (end 5 5) + (stroke + (width 0.1) + (type default) + ) + (fill no) + (layer "F.Fab") + (uuid "bf805bd9-b749-432f-a77b-e4ae90555e2f") + ) + (fp_text user "${REFERENCE}" + (at 0 0 0) + (layer "F.Fab") + (uuid "717fa375-e065-415f-a0c7-7036befaba10") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (pad "1" smd roundrect + (at -4.1 0 180) + (size 2 5.5) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.25) + (net 6 "Net-(U3-SW)") + (pinfunction "1") + (pintype "passive") + (thermal_bridge_angle 45) + (uuid "3dfaef7b-935d-40a0-8e25-4ba9cacaf96e") + ) + (pad "2" smd roundrect + (at 4.1 0 180) + (size 2 5.5) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.25) + (net 2 "5V") + (pinfunction "2") + (pintype "passive") + (thermal_bridge_angle 45) + (uuid "c0963d56-0719-49d9-a03c-1f68f9d3c682") + ) + (embedded_fonts no) + (model "${KICAD9_3DMODEL_DIR}/Inductor_SMD.3dshapes/L_SNR.1050_10x10x5mm.step" + (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" + (placed yes) + (layer "F.Cu") + (uuid "9b8d37dc-81ed-4a3b-9bc9-a2509ba85b84") + (at 144.2225 60.62 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 "Reference" "C28" + (at -3.3775 -2.38 0) + (layer "F.SilkS") + (uuid "84f0699a-3ecc-4c95-85f9-a6f7bc868d30") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "10uf" + (at 0 1.68 0) + (layer "F.Fab") + (uuid "c02d484b-622a-47eb-a75d-8b2dcb3ba48f") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "~" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "d90c5824-874e-46db-b1c4-9ecd77a0680c") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "Unpolarized capacitor" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "a7c830ad-efc3-45c8-9d0e-6f56a7cea0da") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Link" "https://robu.in/product/0402x104k100nt-fh-smd-multilayer-ceramic-capacitor-0-1-%C2%B5f100nf-10-v-0402-1005-metric-%C2%B1-10-x5r/" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "bf1c7c80-9c53-49f0-9c48-83980137f199") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "C_*") + (path "/fa2b99da-6ac8-462e-923c-c545e8b171df") + (sheetname "/") + (sheetfile "SmartFuseBox.kicad_sch") + (attr smd) + (fp_line + (start -0.261252 0.735) + (end 0.261252 0.735) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "12534f89-2146-4419-924c-5ed93cc56187") + ) + (fp_line + (start -0.261252 -0.735) + (end 0.261252 -0.735) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "c1c26c54-80c7-4d15-83b2-250de82c2286") + ) + (fp_rect + (start -1.88 -0.98) + (end 1.88 0.98) + (stroke + (width 0.05) + (type solid) + ) + (fill no) + (layer "F.CrtYd") + (uuid "43c26cd6-8beb-4f13-9116-f88939639c74") + ) + (fp_rect + (start -1 -0.625) + (end 1 0.625) + (stroke + (width 0.1) + (type solid) + ) + (fill no) + (layer "F.Fab") + (uuid "66624ca3-4c99-48f8-a3f8-f4ff46ca06d9") + ) + (fp_text user "${REFERENCE}" + (at 0 0 0) + (layer "F.Fab") + (uuid "f3a2da44-7c7d-4db4-8958-f39f2991f45c") + (effects + (font + (size 0.5 0.5) + (thickness 0.08) + ) + ) + ) + (pad "1" smd roundrect + (at -1.0375 0 180) + (size 1.175 1.45) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.212766) + (net 3 "VDD33") + (pintype "passive") + (uuid "006717e7-8d9d-4768-aac3-342647079f6f") + ) + (pad "2" smd roundrect + (at 1.0375 0 180) + (size 1.175 1.45) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.212766) + (net 1 "GND") + (pintype "passive") + (uuid "74eef647-5c14-4fc9-bb88-d783b0899bb9") + ) + (embedded_fonts no) + (model "${KICAD9_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.step" + (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" + (placed yes) + (layer "F.Cu") + (uuid "9c7fd68b-2097-4a1b-b376-192550a30569") + (at 116.06 106.2575 -90) + (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 "Reference" "C22" + (at 0 -1.68 90) + (layer "F.SilkS") + (uuid "4fe6b9a5-b213-4ef9-99af-cba0806f4ac9") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "10uf" + (at 0 1.68 90) + (layer "F.Fab") + (uuid "a7968221-2acc-464e-8cd5-8db15b6ad634") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "~" + (at 0 0 90) + (layer "F.Fab") + (hide yes) + (uuid "5a1bc242-2208-4167-a3cf-3cbf687561e9") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "Unpolarized capacitor" + (at 0 0 90) + (layer "F.Fab") + (hide yes) + (uuid "97408bd6-894f-43e7-9de5-c05931777ac1") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Link" "https://robu.in/product/0402x104k100nt-fh-smd-multilayer-ceramic-capacitor-0-1-%C2%B5f100nf-10-v-0402-1005-metric-%C2%B1-10-x5r/" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "574d2542-6036-4d1a-b76c-6426971a8c01") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "C_*") + (path "/69e865f8-ac52-4e7c-9caf-ebee5287a384") + (sheetname "/") + (sheetfile "SmartFuseBox.kicad_sch") + (attr smd) + (fp_line + (start -0.261252 0.735) + (end 0.261252 0.735) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "5f4b71a9-1103-41e8-b0c2-dfb0f77ad926") + ) + (fp_line + (start -0.261252 -0.735) + (end 0.261252 -0.735) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "cc8bcbd4-2d3d-427d-b024-e67b61d25393") + ) + (fp_rect + (start -1.88 -0.98) + (end 1.88 0.98) + (stroke + (width 0.05) + (type solid) + ) + (fill no) + (layer "F.CrtYd") + (uuid "e43f6d2a-1d62-4a69-99f3-1d703f96348e") + ) + (fp_rect + (start -1 -0.625) + (end 1 0.625) + (stroke + (width 0.1) + (type solid) + ) + (fill no) + (layer "F.Fab") + (uuid "e64a6954-ef43-48a4-8c21-f71edd5305d7") + ) + (fp_text user "${REFERENCE}" + (at 0 0 90) + (layer "F.Fab") + (uuid "ce01f0dc-12e8-4ce2-b54e-95a8d634b5ea") + (effects + (font + (size 0.5 0.5) + (thickness 0.08) + ) + ) + ) + (pad "1" smd roundrect + (at -1.0375 0 270) + (size 1.175 1.45) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.212766) + (net 81 "/12V_DC-Regulated") + (pintype "passive") + (uuid "3fbdf903-cab0-4f10-b20d-a45832c83d05") + ) + (pad "2" smd roundrect + (at 1.0375 0 270) + (size 1.175 1.45) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.212766) + (net 1 "GND") + (pintype "passive") + (uuid "3b5e47da-2ef9-44e0-a833-b2dd25ac0f17") + ) + (embedded_fonts no) + (model "${KICAD9_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.step" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "TerminalBlock:TerminalBlock_MaiXu_MX126-5.0-03P_1x03_P5.00mm" + (layer "F.Cu") + (uuid "a0397b85-e274-4acb-ae2d-860f8494b234") + (at 77.46 61.42 180) + (descr "terminal block MaiXu MX126-5.0-03P, 3 pins, pitch 5mm, size 15.5x7.8mm, drill diameter 1.3mm, pad diameter 2.8mm, https://www.lcsc.com/datasheet/lcsc_datasheet_2309150913_MAX-MX126-5-0-03P-GN01-Cu-S-A_C5188435.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_MaiXu") + (tags "THT terminal block MaiXu MX126-5.0-03P pitch 5mm size 15.5x7.8mm drill 1.3mm pad 2.8mm") + (property "Reference" "J6" + (at -4.14 -2.38 90) + (layer "F.SilkS") + (uuid "a66ffaf6-8728-404d-a674-4f9b28ffde99") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "Conn_01x03_Socket" + (at 4.75 4.92 0) + (layer "F.Fab") + (uuid "f67e8a94-136a-414f-9049-b93d8b5e6a79") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "~" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "0007be92-8052-4e5f-8932-eb8bdf20c86d") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "Generic connector, single row, 01x03, script generated" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "3ac96453-5eda-4362-9d64-a1a4b9e0e3e5") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "Connector*:*_1x??_*") + (path "/d2ae8875-9d75-42c2-b9fb-51bbad56dd0c") + (sheetname "/") + (sheetfile "SmartFuseBox.kicad_sch") + (attr through_hole) + (fp_line + (start 12.62 3.92) + (end 0.3 3.92) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "2b9c8284-41ca-48b6-bf7a-9c0c8d1f120d") + ) + (fp_line + (start 12.62 -4.12) + (end 12.62 3.92) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "3a2f4c39-de15-490c-88d8-7345ca0ed11a") + ) + (fp_line + (start 11.812 0.5) + (end 12.62 0.5) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "7cb8e327-9134-4ddd-a4fc-57530d09bd9c") + ) + (fp_line + (start 11.812 -0.5) + (end 12.62 -0.5) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "42dd0908-ec5d-4e67-9e34-205c59bd198a") + ) + (fp_line + (start 10.543 1.8) + (end 12.62 1.8) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "85c0b220-2ed9-43f1-a4b7-d88f00f7e29b") + ) + (fp_line + (start 6.812 0.5) + (end 8.188 0.5) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "83ada39b-28e0-4ae5-8240-2da57cc32a09") + ) + (fp_line + (start 6.812 -0.5) + (end 8.188 -0.5) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "0c4689e8-c62c-4c75-8762-204025c93803") + ) + (fp_line + (start 5.543 1.8) + (end 9.457 1.8) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "39a50017-b9b5-420d-ae9f-3a7d65109c16") + ) + (fp_line + (start 1.88 1.8) + (end 4.457 1.8) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "0055044b-c6be-45e1-9f43-2d50c4d0bf17") + ) + (fp_line + (start 1.88 0.5) + (end 3.188 0.5) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "6a823c34-679e-40a6-8b6a-8d65df4a8887") + ) + (fp_line + (start 1.88 -0.5) + (end 3.188 -0.5) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "7d9748ed-d075-4f70-b952-e4109b35a175") + ) + (fp_line + (start -0.3 3.92) + (end -3.12 3.92) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "7522ec37-35ad-45fa-9c1b-0fc90cd70eb4") + ) + (fp_line + (start -3.12 3.92) + (end -3.12 -4.12) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "b0bb3adf-f564-49f6-9ea2-22931b8fccb5") + ) + (fp_line + (start -3.12 1.8) + (end -1.88 1.8) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "c374d9fb-db8d-41ff-9883-d468c5eabdf6") + ) + (fp_line + (start -3.12 0.5) + (end -1.88 0.5) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "e3f19390-891c-46c9-a7bb-6c5875cca6ac") + ) + (fp_line + (start -3.12 -0.5) + (end -1.88 -0.5) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "4ceb8255-ab2e-441a-bf16-e94b116f765f") + ) + (fp_line + (start -3.12 -4.12) + (end 12.62 -4.12) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "9f4c670e-04ae-420f-9b27-63a84a1bf485") + ) + (fp_poly + (pts + (xy 0 3.92) (xy 0.44 4.53) (xy -0.44 4.53) + ) + (stroke + (width 0.12) + (type solid) + ) + (fill yes) + (layer "F.SilkS") + (uuid "7274a48e-66c5-4644-97aa-eeec667e53e7") + ) + (fp_rect + (start -3.5 -4.5) + (end 13 4.31) + (stroke + (width 0.05) + (type solid) + ) + (fill no) + (layer "F.CrtYd") + (uuid "a2ac27ed-c570-460d-bdc3-2d0d0c0844c6") + ) + (fp_line + (start 12.5 3.8) + (end -1.05 3.8) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "72de0a42-add6-4b30-b147-7a338b1d5458") + ) + (fp_line + (start 12.5 -4) + (end 12.5 3.8) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "744fad7f-3ec6-4df1-b24b-dabed77796ab") + ) + (fp_line + (start 11.213 -1.018) + (end 8.982 1.213) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "0ec74c5c-2c93-45fe-8821-a02eda68e91f") + ) + (fp_line + (start 11.018 -1.213) + (end 8.787 1.018) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "7081709f-48dc-4fdd-a3b1-b90f3700537e") + ) + (fp_line + (start 6.213 -1.018) + (end 3.982 1.213) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "35d9d134-b0e0-4bb7-8537-b9dd4ca5566f") + ) + (fp_line + (start 6.018 -1.213) + (end 3.787 1.018) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "f6ebc218-9b62-4462-bb9a-fdfb8b5752ae") + ) + (fp_line + (start 1.213 -1.018) + (end -1.018 1.213) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "fb5d9742-590e-4d84-8a70-31bc37592785") + ) + (fp_line + (start 1.018 -1.213) + (end -1.213 1.018) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "5cbe540f-7873-4578-bc42-5dde4348a30a") + ) + (fp_line + (start -1.05 3.8) + (end -3 1.85) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "213181e3-3b2c-4de0-9878-273e6568d905") + ) + (fp_line + (start -3 1.85) + (end -3 -4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "67316b23-55d6-4860-9d0a-ec63a7646529") + ) + (fp_line + (start -3 1.8) + (end 12.5 1.8) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "d15b46e2-2326-4db2-a2d9-7b513404f2e3") + ) + (fp_line + (start -3 0.5) + (end 12.5 0.5) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "80d5e2ef-c32b-4bb6-8a0c-384188ed62de") + ) + (fp_line + (start -3 -0.5) + (end 12.5 -0.5) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "bbcb26d0-2ff5-491a-ac7f-e67ea3fe227e") + ) + (fp_line + (start -3 -4) + (end 12.5 -4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "9056ab1a-c9a2-4e17-b4ed-733bd4c896de") + ) + (fp_circle + (center 10 0) + (end 11.6 0) + (stroke + (width 0.1) + (type solid) + ) + (fill no) + (layer "F.Fab") + (uuid "89c29c40-094a-4293-878e-38dc3a784981") + ) + (fp_circle + (center 5 0) + (end 6.6 0) + (stroke + (width 0.1) + (type solid) + ) + (fill no) + (layer "F.Fab") + (uuid "a786e53c-a1d8-4d09-afb5-02b77bfdcd5b") + ) + (fp_circle + (center 0 0) + (end 1.6 0) + (stroke + (width 0.1) + (type solid) + ) + (fill no) + (layer "F.Fab") + (uuid "90543bb4-f2b4-4546-873e-84d692bcbcb6") + ) + (fp_text user "${REFERENCE}" + (at 4.75 2.65 0) + (layer "F.Fab") + (uuid "8747f646-2b78-4f0d-9d19-6188d14b85f6") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (pad "1" thru_hole roundrect + (at 0 0 180) + (size 2.8 2.8) + (drill 1.3) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (roundrect_rratio 0.089286) + (net 21 "NO_4") + (pinfunction "Pin_1") + (pintype "passive") + (uuid "e32177d6-5368-4722-9d5e-bc7ca23787c2") + ) + (pad "2" thru_hole circle + (at 5 0 180) + (size 2.8 2.8) + (drill 1.3) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 19 "COM_4") + (pinfunction "Pin_2") + (pintype "passive") + (uuid "5e66db00-425e-46da-aa5d-3065aeaad9c8") + ) + (pad "3" thru_hole circle + (at 10 0 180) + (size 2.8 2.8) + (drill 1.3) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 20 "NC_4") + (pinfunction "Pin_3") + (pintype "passive") + (uuid "68877338-788f-4f4b-8822-067fc0b89613") + ) + (embedded_fonts no) + (model "${KICAD9_3DMODEL_DIR}/TerminalBlock_Phoenix.3dshapes/TerminalBlock_Phoenix_MKDS-1,5-3_1x03_P5.00mm_Horizontal.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Relay_THT:Relay_SPDT_SANYOU_SRD_Series_Form_C" + (placed yes) + (layer "F.Cu") + (uuid "a14e7eae-7a73-4315-8aad-6332982f14da") + (at 109.276667 86.1025 90) + (descr "relay Sanyou SRD series Form C http://www.sanyourelay.ca/public/products/pdf/SRD.pdf") + (tags "relay Sanyu SRD form C") + (property "Reference" "K2" + (at 8.2825 9.05 90) + (layer "F.SilkS") + (uuid "220f741a-7eea-435d-8782-8f3ece28dc55") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "SRD-12VDC-SL-C" + (at 8 -9.6 90) + (layer "F.Fab") + (uuid "6b51fc55-a6de-49d3-bbc4-74d11ac182db") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "http://www.sanyourelay.ca/public/products/pdf/SRD.pdf" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "ddc64d8b-abd9-4720-a50c-f76b933015f3") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "Sanyo SRD relay, Single Pole Miniature Power Relay," + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "fc238b3b-114d-44a6-a124-036a4a0b178b") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Link" "https://robu.in/product/1-month-warranty-1027/" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "817424cd-63d4-47c4-8767-dd38eab37504") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "Relay*SPDT*SANYOU*SRD*Series*Form*C*") + (path "/d359931d-149c-4d30-bd6c-4fc2aa5a71da") + (sheetname "/") + (sheetfile "SmartFuseBox.kicad_sch") + (attr through_hole) + (fp_line + (start 18.4 -7.8) + (end 18.4 7.8) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "b4e2d415-fedf-4d87-a28c-ffdb65c4e176") + ) + (fp_line + (start -1.4 -7.8) + (end 18.4 -7.8) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "bc7d8da8-6445-4d34-b5e7-e999663960e1") + ) + (fp_line + (start -1.4 -7.8) + (end -1.4 -1.2) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "669a7b1f-de93-4990-b85b-e47c96e72f2b") + ) + (fp_line + (start 6.05 -5.95) + (end 3.55 -5.95) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "d2632646-5147-4807-b870-0bc5d22d66c1") + ) + (fp_line + (start 6.05 -5.95) + (end 6.05 -1.75) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "5553970a-a893-4836-a4d1-b784b12cd91a") + ) + (fp_line + (start 14.15 -4.2) + (end 14.15 -1.7) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "654de27c-d093-42ca-a03c-fcbaf10b8f3d") + ) + (fp_line + (start 8.05 -1.75) + (end 8.05 1.85) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "ddf91f49-74ff-4197-854f-521d310f582a") + ) + (fp_line + (start 4.05 -1.75) + (end 8.05 -1.75) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "42c9ec08-a192-4103-91c9-01ec0c873522") + ) + (fp_line + (start 10.95 0.05) + (end 15.55 -2.45) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "62cf50a0-3b1f-468b-a8d6-d8f8c0a006c9") + ) + (fp_line + (start 9.45 0.05) + (end 10.95 0.05) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "6dee35c6-0838-49ad-9650-e9e9e08ac7ce") + ) + (fp_line + (start 9.45 0.05) + (end 9.45 3.65) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "e086f68d-89ef-4514-8cea-fa128e0f2d1e") + ) + (fp_line + (start 2.65 0.05) + (end 1.85 0.05) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "6e5520f4-ed69-4a76-8ca2-a79ea2b7ad27") + ) + (fp_line + (start 2.65 0.05) + (end 2.65 3.65) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "912af0fe-3d22-461c-b606-ed7eb4571248") + ) + (fp_line + (start -1.4 1.2) + (end -1.4 7.8) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "6246933a-c1f2-43f0-80b4-929ab8bce168") + ) + (fp_line + (start 8.05 1.85) + (end 4.05 -1.75) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "eca9d934-8129-402d-8d8a-48c4914eb0fd") + ) + (fp_line + (start 8.05 1.85) + (end 4.05 1.85) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "0d658529-939b-4c82-a950-51fddb68ea0b") + ) + (fp_line + (start 6.05 1.85) + (end 6.05 6.05) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "65b040a3-0f03-4342-96b5-ec6ab4b2d949") + ) + (fp_line + (start 4.05 1.85) + (end 4.05 -1.75) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "f6239eb8-5632-4d2e-90a2-d3afe7781396") + ) + (fp_line + (start 9.45 3.65) + (end 2.65 3.65) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "db0d7151-593d-4cca-b86c-09022e0abd03") + ) + (fp_line + (start 14.15 4.2) + (end 14.15 1.75) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "7d5a5acd-8b26-4974-8346-93d854ff3ec8") + ) + (fp_line + (start 3.55 6.05) + (end 6.05 6.05) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "a4b97af8-b94d-4e87-9f04-aee48ea8a630") + ) + (fp_line + (start 18.4 7.8) + (end -1.4 7.8) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "816f5fbb-f4fd-4b87-99f7-adc3b73320ae") + ) + (fp_line + (start 18.55 -7.95) + (end -1.55 -7.95) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "10c56524-69dc-46fa-a03f-9feb355a63f7") + ) + (fp_line + (start 18.55 -7.95) + (end 18.55 7.95) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "992e408a-b9bf-45ee-9e55-de41942101a9") + ) + (fp_line + (start -1.55 7.95) + (end -1.55 -7.95) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "2adef59e-1c6d-445f-aee2-bf4e76fb0fd3") + ) + (fp_line + (start -1.55 7.95) + (end 18.55 7.95) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "7aa770e5-2e6b-4e48-ab29-a76703d8d809") + ) + (fp_line + (start 18.3 -7.7) + (end 18.3 7.7) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.Fab") + (uuid "04cab9fe-681b-4ba0-8847-a9242318b25d") + ) + (fp_line + (start -1.3 -7.7) + (end 18.3 -7.7) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.Fab") + (uuid "3346605e-8d8f-4b5b-bad1-f206fbac7cd9") + ) + (fp_line + (start 18.3 7.7) + (end -1.3 7.7) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.Fab") + (uuid "5b5d2c52-9729-4f61-85f5-db11edcc9819") + ) + (fp_line + (start -1.3 7.7) + (end -1.3 -7.7) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.Fab") + (uuid "53b9a48c-19c3-4d76-b939-cb9fe4095af0") + ) + (fp_text user "${REFERENCE}" + (at 7.1 0.025 90) + (layer "F.Fab") + (uuid "192a6f82-735e-4c78-8af5-0bdc8f70a678") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (fp_text user "1" + (at 0 -2.3 90) + (layer "F.Fab") + (uuid "e3a8e721-7276-4f81-8cde-1e4e9417c0ec") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (pad "1" thru_hole circle + (at 0 0 180) + (size 3 3) + (drill 1.3) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 14 "COM_2") + (pintype "passive") + (uuid "037b71b1-46a6-448f-9bfe-91e8ae3eb9b7") + ) + (pad "2" thru_hole circle + (at 1.95 6.05 180) + (size 2.5 2.5) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 83 "R-2") + (pintype "passive") + (uuid "89c71255-0a05-44d1-a6d8-d1f1f3758dfc") + ) + (pad "3" thru_hole circle + (at 14.15 6.05 180) + (size 3 3) + (drill 1.3) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 13 "NO_2") + (pintype "passive") + (uuid "bb89b22e-b3ee-41b0-91e1-5855ce5dcef2") + ) + (pad "4" thru_hole circle + (at 14.2 -6 180) + (size 3 3) + (drill 1.3) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 15 "NC_2") + (pintype "passive") + (uuid "5b2389d7-e15b-4e25-8ad7-93d539441c61") + ) + (pad "5" thru_hole circle + (at 1.95 -5.95 180) + (size 2.5 2.5) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 81 "/12V_DC-Regulated") + (pintype "passive") + (uuid "1d30f6ed-73a5-419e-922f-9365a7986e51") + ) + (embedded_fonts no) + (model "${KICAD9_3DMODEL_DIR}/Relay_THT.3dshapes/Relay_SPDT_SANYOU_SRD_Series_Form_C.step" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "PCM_4ms_Package_SOT:SOT-23" + (layer "F.Cu") + (uuid "a1cf0cf8-36e1-425b-96e3-0d218d1f73f6") + (at 179.2 122.6 -90) + (descr "SOT-23, Standard") + (tags "SOT-23") + (property "Reference" "Q1" + (at 0 -2.5 90) + (layer "F.SilkS") + (uuid "a6caea27-74f5-46e4-9b9e-4615ef4b1df8") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "BC817" + (at 0 2.5 90) + (layer "F.Fab") + (uuid "61c90587-e89a-447b-a1b0-b8c772a36af6") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "https://www.farnell.com/datasheets/296640.pdf" + (at 0 0 90) + (layer "F.Fab") + (hide yes) + (uuid "8ce885d2-4a78-44de-bccb-72ed76d8ad75") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "NPN TO-18 transistor, 30V, 0.8A, 500mW, Alternate KiCAD Library" + (at 0 0 90) + (layer "F.Fab") + (hide yes) + (uuid "f612a9a9-0aeb-4357-a520-050c4cf80d11") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (path "/bca97832-c252-4153-ac3d-dccee4666c3b") + (sheetname "/") + (sheetfile "SmartFuseBox.kicad_sch") + (attr smd) + (fp_line + (start 0.76 1.58) + (end -0.7 1.58) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "129f3f6c-512a-4c52-9ed0-b4097b7068b3") + ) + (fp_line + (start 0.76 1.58) + (end 0.76 0.65) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "df977859-3b31-4456-8e76-7365dd5eb1a7") + ) + (fp_line + (start 0.76 -1.58) + (end 0.76 -0.65) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "6bbb9132-3202-4a58-9208-d439d26d2d86") + ) + (fp_line + (start 0.76 -1.58) + (end -1.4 -1.58) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "2da44b44-66b0-4cb0-8ef2-0035b0847445") + ) + (fp_line + (start -1.7 1.75) + (end -1.7 -1.75) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "a3190f77-d793-44a5-be6a-93e507106587") + ) + (fp_line + (start 1.7 1.75) + (end -1.7 1.75) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "61c3722e-5a43-4c32-aca2-005096f6221b") + ) + (fp_line + (start -1.7 -1.75) + (end 1.7 -1.75) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "3ae2c593-6e39-4160-a99c-af80314194ca") + ) + (fp_line + (start 1.7 -1.75) + (end 1.7 1.75) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "dad8b089-27e6-430b-ade5-67bb4654a86c") + ) + (fp_line + (start -0.7 1.52) + (end 0.7 1.52) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "d2c7bd5c-0860-4329-9a64-fd7f8f2d4cfb") + ) + (fp_line + (start -0.7 -0.95) + (end -0.7 1.5) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "c8535c9d-0eb4-4c71-ae92-f91653c48fca") + ) + (fp_line + (start -0.7 -0.95) + (end -0.15 -1.52) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "32752490-5a04-4404-bca2-fccddef2e1d3") + ) + (fp_line + (start -0.15 -1.52) + (end 0.7 -1.52) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "e3a65dc9-acb9-4e3e-9196-fc949ee14d46") + ) + (fp_line + (start 0.7 -1.52) + (end 0.7 1.52) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "b9c68cac-8340-4fa4-8655-c45f4308fbb6") + ) + (fp_text user "${REFERENCE}" + (at 0 0 0) + (layer "F.Fab") + (uuid "6a9411e9-d8ca-40b0-b873-5bb75f915ee7") + (effects + (font + (size 0.5 0.5) + (thickness 0.075) + ) + ) + ) + (pad "1" smd rect + (at -1 -0.95 270) + (size 0.9 0.8) + (layers "F.Cu" "F.Mask" "F.Paste") + (net 1 "GND") + (pinfunction "E") + (pintype "passive") + (uuid "fb9403e1-3264-4e94-8322-f50654df1bdb") + ) + (pad "2" smd rect + (at -1 0.95 270) + (size 0.9 0.8) + (layers "F.Cu" "F.Mask" "F.Paste") + (net 90 "Net-(Q1-B)") + (pinfunction "B") + (pintype "passive") + (uuid "967f9638-c0a2-4ebf-ab74-0a748fd55011") + ) + (pad "3" smd rect + (at 1 0 270) + (size 0.9 0.8) + (layers "F.Cu" "F.Mask" "F.Paste") + (net 69 "Net-(D1-A)") + (pinfunction "C") + (pintype "passive") + (uuid "b498c6d8-37d1-4771-9b00-027ebb5a6a4d") + ) + (embedded_fonts no) + (model "${KISYS3DMOD}/Package_TO_SOT_SMD.3dshapes/SOT-23.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "MountingHole:MountingHole_3.2mm_M3" + (layer "F.Cu") + (uuid "a2b0846f-7d88-45c5-9480-f5560e2a3384") + (at 199 60.2) + (descr "Mounting Hole 3.2mm, M3, no annular, generated by kicad-footprint-generator mountinghole.py") + (tags "mountinghole M3") + (property "Reference" "H1" + (at 0 -4.15 0) + (layer "F.SilkS") + (hide yes) + (uuid "ae328df6-f617-4608-ba92-1be1dbf65f65") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "MountingHole" + (at 0 4.15 0) + (layer "F.Fab") + (uuid "22cbf226-8d01-4b5c-b56c-ec3a1518960e") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "~" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "82fee274-88f4-4890-aefe-4bc14256b2db") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "Mounting Hole without connection" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "6fc85fb1-7f56-447a-a113-856239f00212") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "MountingHole*") + (path "/535352db-57f3-43ea-82f5-da3076084d90") + (sheetname "/") + (sheetfile "SmartFuseBox.kicad_sch") + (attr exclude_from_pos_files exclude_from_bom) + (fp_circle + (center 0 0) + (end 3.2 0) + (stroke + (width 0.15) + (type solid) + ) + (fill no) + (layer "Cmts.User") + (uuid "fa62524e-c4c6-49e2-bf26-4151e70a7394") + ) + (fp_circle + (center 0 0) + (end 3.45 0) + (stroke + (width 0.05) + (type solid) + ) + (fill no) + (layer "F.CrtYd") + (uuid "f0151ce7-8127-4a2a-9e78-f4165c7624c4") + ) + (fp_text user "${REFERENCE}" + (at 0 0 0) + (layer "F.Fab") + (uuid "7df102c5-09d6-4e10-804e-843157045792") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (pad "" np_thru_hole circle + (at 0 0) + (size 3.2 3.2) + (drill 3.2) + (layers "*.Cu" "*.Mask") + (uuid "60d2db16-c8ed-41b1-862a-62d2aa8982b4") + ) + (embedded_fonts no) + ) + (footprint "Package_TO_SOT_THT:TO-92_Inline" + (placed yes) + (layer "F.Cu") + (uuid "ab65d0e8-19bc-4a45-8a2e-1055fe0b32f2") + (at 139.66 64.29 90) + (descr "TO-92 leads in-line, narrow, oval pads, drill 0.75mm (see NXP sot054_po.pdf)") + (tags "to-92 sc-43 sc-43a sot54 PA33 transistor") + (property "Reference" "U2" + (at 4.27 -2.6 90) + (layer "F.SilkS") + (hide yes) + (uuid "7b9e5dfe-385d-4cd0-a963-8ed603b83f65") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "DS18B20" + (at 1.27 2.79 90) + (layer "F.Fab") + (uuid "628e8fdd-c515-42c7-acfd-1568500b6544") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "http://datasheets.maximintegrated.com/en/ds/DS18B20.pdf" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "1250885c-ae1f-4ff9-a133-3ef20d9e9be2") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "Programmable Resolution 1-Wire Digital Thermometer TO-92" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "6a734f8f-986b-4770-a148-82f87c1c43eb") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "TO*92*") + (path "/535fde36-9d9d-4b22-aa27-16f8c525811e") + (sheetname "/") + (sheetfile "SmartFuseBox.kicad_sch") + (attr through_hole) + (fp_line + (start -0.53 1.85) + (end 3.07 1.85) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "c7264197-1047-43ee-bd1f-1f0a8f8cfa75") + ) + (fp_arc + (start 1.27 -2.6) + (mid 3.672087 -0.994977) + (end 3.108478 1.838478) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "8e00eee8-e614-4584-9a37-6e7cdc529169") + ) + (fp_arc + (start -0.568478 1.838478) + (mid -1.132087 -0.994977) + (end 1.27 -2.6) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "44fe8145-1ddf-460e-85fd-a8aefce69669") + ) + (fp_line + (start -1.46 -2.73) + (end 4 -2.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "ac33a73f-01f3-41f9-b7c7-abe91d92730f") + ) + (fp_line + (start -1.46 -2.73) + (end -1.46 2.01) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "3a1c9d42-2b4c-43e0-956e-e52d6e8ceb8e") + ) + (fp_line + (start 4 2.01) + (end 4 -2.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "16d56eaa-8115-480c-a8e9-da4191de0fd0") + ) + (fp_line + (start 4 2.01) + (end -1.46 2.01) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "4b25d62d-a341-43c4-9238-e94016210ec7") + ) + (fp_line + (start -0.5 1.75) + (end 3 1.75) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "7c53e341-30b6-49c5-8673-be49fb35aa8a") + ) + (fp_arc + (start 1.27 -2.48) + (mid 3.561221 -0.949055) + (end 3.023625 1.753625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "10773834-8586-410e-9275-9d606e4ccb4d") + ) + (fp_arc + (start -0.483625 1.753625) + (mid -1.021221 -0.949055) + (end 1.27 -2.48) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "407c6566-fb0b-4f94-a64a-fe56d449ab89") + ) + (fp_text user "${REFERENCE}" + (at 1.27 0 90) + (layer "F.Fab") + (uuid "8ab34d44-ea72-4723-a7fc-0cad4a1b49a5") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (pad "1" thru_hole rect + (at 0 0 90) + (size 1.05 1.5) + (drill 0.75) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 1 "GND") + (pinfunction "GND") + (pintype "power_in") + (uuid "401f0861-1cf7-477e-a340-661cdb37b2c8") + ) + (pad "2" thru_hole oval + (at 1.27 0 90) + (size 1.05 1.5) + (drill 0.75) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 49 "DS18B20_OUT") + (pinfunction "DQ") + (pintype "bidirectional") + (uuid "fc60840b-9fe8-4582-a785-7a539cfba1ec") + ) + (pad "3" thru_hole oval + (at 2.54 0 90) + (size 1.05 1.5) + (drill 0.75) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 3 "VDD33") + (pinfunction "V_{DD}") + (pintype "power_in") + (uuid "f3c1a817-9694-434c-8d27-c96f5f493c31") + ) + (embedded_fonts no) + (model "${KICAD9_3DMODEL_DIR}/Package_TO_SOT_THT.3dshapes/TO-92_Inline.step" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Passives:R_0805_2012Metric_Pad1.20x1.40mm_HandSolder" + (layer "F.Cu") + (uuid "b62d67e7-5ddf-4cbd-87a9-de9872894306") + (at 178.41 128.22 -90) + (descr "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") + (tags "resistor handsolder") + (property "Reference" "R19" + (at -3.62 -0.19 90) + (layer "F.SilkS") + (uuid "bd93bc7e-e583-4598-b890-0a5a87db64ed") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "4.7k" + (at 0 1.65 90) + (layer "F.Fab") + (hide yes) + (uuid "55aee81c-de57-4c8a-800d-c1a480e8e770") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "ec66a42f-06bf-4728-9790-58669175241d") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "resistor" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "bace4906-7b14-4799-80eb-0b3b69a72755") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Indicator" "+" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "8a885944-8626-4623-a41e-efa91ac847b5") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Rating" "W" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "8edcb5e6-713f-4a06-8a98-02079b782cb1") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (path "/54a6ba8e-7175-4b83-a6c4-2e0a476ced67") + (sheetname "/") + (sheetfile "SmartFuseBox.kicad_sch") + (attr smd) + (fp_line + (start -0.227064 0.735) + (end 0.227064 0.735) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "7358a7b5-6fcf-4043-9737-94666165aaef") + ) + (fp_line + (start -0.227064 -0.735) + (end 0.227064 -0.735) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "a9204831-6324-4a43-b130-215bd2975a3f") + ) + (fp_line + (start -1.85 0.95) + (end -1.85 -0.95) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "b9059c09-a743-4228-a6a3-0b27c767e204") + ) + (fp_line + (start 1.85 0.95) + (end -1.85 0.95) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "1297b0d8-c8bf-4a4d-ad12-96307566da82") + ) + (fp_line + (start -1.85 -0.95) + (end 1.85 -0.95) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "a4b2faad-e92c-48c8-846b-85f9898ec984") + ) + (fp_line + (start 1.85 -0.95) + (end 1.85 0.95) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "97322607-8b36-44e4-9297-5e588cfdab48") + ) + (fp_line + (start -1 0.625) + (end -1 -0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "f9a86749-dfa8-4c65-a4fc-e066ea6768a4") + ) + (fp_line + (start 1 0.625) + (end -1 0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "e22bd9c2-5733-468e-83ec-3835a8c7d065") + ) + (fp_line + (start -1 -0.625) + (end 1 -0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "42b97597-94f1-4a97-9cc6-a9236664b098") + ) + (fp_line + (start 1 -0.625) + (end 1 0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "7058ce92-f1c5-4aa5-bbd2-7dc0529c2251") + ) + (fp_text user "${REFERENCE}" + (at 0 0 90) + (layer "F.Fab") + (uuid "a37ef426-3c86-4c5e-b1e8-68b4dd89962f") + (effects + (font + (size 0.5 0.5) + (thickness 0.08) + ) + ) + ) + (pad "1" smd roundrect + (at -1 0 90) + (size 1.2 1.4) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.208333) + (net 3 "VDD33") + (pinfunction "+") + (pintype "passive") + (uuid "622a58f6-4f68-4314-b856-5c32839744fb") + ) + (pad "2" smd roundrect + (at 1 0 90) + (size 1.2 1.4) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.208333) + (net 35 "SIG_A2") + (pinfunction "-") + (pintype "passive") + (uuid "64620e59-b8d9-47b1-b8a5-cbd6a0a1a86e") + ) + (embedded_fonts no) + (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0805_2012Metric.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" + (placed yes) + (layer "F.Cu") + (uuid "b73f34b6-ee73-4d12-8537-a8347b4e1c8a") + (at 119.46 90.9825 90) + (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 "Reference" "C14" + (at 0 -1.68 90) + (layer "F.SilkS") + (uuid "8a3dd784-4fbd-410e-8906-8f16a703b744") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "0.1uf" + (at 0 1.68 90) + (layer "F.Fab") + (uuid "6e6bf38c-b681-444c-a2c1-81b2e693fae4") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "~" + (at 0 0 90) + (layer "F.Fab") + (hide yes) + (uuid "988d7547-4690-4be1-b330-da499383013b") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "Unpolarized capacitor" + (at 0 0 90) + (layer "F.Fab") + (hide yes) + (uuid "de59dae1-8ec9-41d3-93be-4eaae8d5a99e") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Link" "https://robu.in/product/cl21a106kofnnne-samsang-16v-10uf-x5r-%C2%B110-0805-multilayer-ceramic-capacitors-mlcc-smd-smt-rohs/?gad_source=1&gad_campaignid=17427802703&gbraid=0AAAAADvLFWeYd6KQJmaof5AqwX7G6G7RK&gclid=CjwKCAjw687NBhB4EiwAQ645dvOPfam1y5aCD1uRQvjlmer72tAuxihwH4D1G8BPdKh6SRiWARJldBoCKCYQAvD_BwE" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "804f7dbf-2b76-445b-b044-e3347cc829d7") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "C_*") + (path "/1036837c-6733-4fbf-8507-cdb95e2da142") + (sheetname "/") + (sheetfile "SmartFuseBox.kicad_sch") + (attr smd) + (fp_line + (start -0.261252 -0.735) + (end 0.261252 -0.735) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "6943ab81-67e7-495a-a444-a57397d2debc") + ) + (fp_line + (start -0.261252 0.735) + (end 0.261252 0.735) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "cd56b49f-01cf-4356-a4e7-868012431a3b") + ) + (fp_rect + (start -1.88 -0.98) + (end 1.88 0.98) + (stroke + (width 0.05) + (type solid) + ) + (fill no) + (layer "F.CrtYd") + (uuid "2c4c8cb4-9087-47dc-9743-d088fdb5972d") + ) + (fp_rect + (start -1 -0.625) + (end 1 0.625) + (stroke + (width 0.1) + (type solid) + ) + (fill no) + (layer "F.Fab") + (uuid "9b19ef48-4f8a-44bf-a1ab-616abb028d4d") + ) + (fp_text user "${REFERENCE}" + (at 0 0 90) + (layer "F.Fab") + (uuid "0b39d642-146d-4a59-b18e-6a5b98bfafa1") + (effects + (font + (size 0.5 0.5) + (thickness 0.08) + ) + ) + ) + (pad "1" smd roundrect + (at -1.0375 0 90) + (size 1.175 1.45) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.212766) + (net 81 "/12V_DC-Regulated") + (pintype "passive") + (uuid "fdb64dbd-0f93-4cb5-a291-bfbdcfcd853f") + ) + (pad "2" smd roundrect + (at 1.0375 0 90) + (size 1.175 1.45) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.212766) + (net 1 "GND") + (pintype "passive") + (uuid "5031448e-1786-4468-88d4-05904ca85c70") + ) + (embedded_fonts no) + (model "${KICAD9_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.step" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Relay_THT:Relay_SPDT_SANYOU_SRD_Series_Form_C" + (placed yes) + (layer "F.Cu") + (uuid "b7ae22b1-22a7-4910-ba34-c2dcc28de763") + (at 127.61 86.57 90) + (descr "relay Sanyou SRD series Form C http://www.sanyourelay.ca/public/products/pdf/SRD.pdf") + (tags "relay Sanyu SRD form C") + (property "Reference" "K1" + (at -2.63 1.19 90) + (layer "F.SilkS") + (uuid "7c975dce-6962-4988-83af-2b20e2f75331") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "SRD-12VDC-SL-C" + (at 8 -9.6 90) + (layer "F.Fab") + (uuid "e1cd9ec1-606a-43df-aa60-872400d4258b") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "http://www.sanyourelay.ca/public/products/pdf/SRD.pdf" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "95e4c8bf-4c65-4685-a896-0653d50584a9") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "Sanyo SRD relay, Single Pole Miniature Power Relay," + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "6e04a20e-4047-4593-83da-7564a09b69ca") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Link" "https://robu.in/product/1-month-warranty-1027/" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "095c350f-f7bc-4a88-9fc4-ad341fd08447") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "Relay*SPDT*SANYOU*SRD*Series*Form*C*") + (path "/d0bcb911-139a-4769-a20d-ef1146f0b66a") + (sheetname "/") + (sheetfile "SmartFuseBox.kicad_sch") + (attr through_hole) + (fp_line + (start 18.4 -7.8) + (end 18.4 7.8) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "45f4cfe9-c646-4997-a8d0-a0433c741d26") + ) + (fp_line + (start -1.4 -7.8) + (end 18.4 -7.8) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "6a41a941-75c9-4f36-af57-d57e40f31444") + ) + (fp_line + (start -1.4 -7.8) + (end -1.4 -1.2) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "892f5405-dcf3-4407-86a9-ecfb319b0715") + ) + (fp_line + (start 6.05 -5.95) + (end 3.55 -5.95) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "75fc9435-ad76-4b8e-a092-d6d79f1cdd92") + ) + (fp_line + (start 6.05 -5.95) + (end 6.05 -1.75) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "a4ebccf6-85ef-4f73-9f90-a60f49f0ebf5") + ) + (fp_line + (start 14.15 -4.2) + (end 14.15 -1.7) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "25351d8b-699d-4433-90d0-3035e5951cbc") + ) + (fp_line + (start 8.05 -1.75) + (end 8.05 1.85) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "dd5768be-9c71-4e7e-b97d-8862d577e3e8") + ) + (fp_line + (start 4.05 -1.75) + (end 8.05 -1.75) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "2fd9f1b9-64be-4a6f-ae6d-f560ec5533cc") + ) + (fp_line + (start 10.95 0.05) + (end 15.55 -2.45) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "d3ac85e7-a49a-4b4b-90cd-ff89783750b3") + ) + (fp_line + (start 9.45 0.05) + (end 10.95 0.05) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "7afa0b77-3b40-4ad1-bed5-f990bd22bcd6") + ) + (fp_line + (start 9.45 0.05) + (end 9.45 3.65) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "080dcb2a-5c38-4680-9f37-06a581633a6e") + ) + (fp_line + (start 2.65 0.05) + (end 1.85 0.05) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "3de48b45-bd82-4e20-a63e-1f0b0ac75c94") + ) + (fp_line + (start 2.65 0.05) + (end 2.65 3.65) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "4cc76507-ebff-4c8b-8091-852973218dad") + ) + (fp_line + (start -1.4 1.2) + (end -1.4 7.8) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "b7d4b830-8cb9-4d74-a67c-f4eb83688771") + ) + (fp_line + (start 8.05 1.85) + (end 4.05 -1.75) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "d1439802-17b3-48fc-a1da-851f829e8b1e") + ) + (fp_line + (start 8.05 1.85) + (end 4.05 1.85) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "1724be8c-49e1-4d6c-a25a-7f263be3a694") + ) + (fp_line + (start 6.05 1.85) + (end 6.05 6.05) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "8829e560-130c-41f0-80aa-46baf620d19d") + ) + (fp_line + (start 4.05 1.85) + (end 4.05 -1.75) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "e2ed66dd-2d0a-4f60-893e-43c6be3d2946") + ) + (fp_line + (start 9.45 3.65) + (end 2.65 3.65) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "98c7f2bd-8f60-4e58-8ff7-08f6bb7f29ce") + ) + (fp_line + (start 14.15 4.2) + (end 14.15 1.75) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "b5981197-ca73-41b7-9e71-63727e9f3e5c") + ) + (fp_line + (start 3.55 6.05) + (end 6.05 6.05) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "f3ec5d73-29c3-466d-83d4-170f7cf6e8de") + ) + (fp_line + (start 18.4 7.8) + (end -1.4 7.8) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "3339d2b8-d50b-41b0-ac5a-1bced1da1b55") + ) + (fp_line + (start 18.55 -7.95) + (end -1.55 -7.95) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "2fd692bb-5374-416b-b168-d7be4f65a99a") + ) + (fp_line + (start 18.55 -7.95) + (end 18.55 7.95) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "c6278926-40a3-484c-9a05-7e2136210131") + ) + (fp_line + (start -1.55 7.95) + (end -1.55 -7.95) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "32b52f8a-52ee-4610-ad35-21e57d31b7e9") + ) + (fp_line + (start -1.55 7.95) + (end 18.55 7.95) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "f5c56eb5-cd24-4166-922c-d481ae20bc39") + ) + (fp_line + (start 18.3 -7.7) + (end 18.3 7.7) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.Fab") + (uuid "c5ebfdad-1221-4d7b-b091-c78791e6e145") + ) + (fp_line + (start -1.3 -7.7) + (end 18.3 -7.7) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.Fab") + (uuid "7a5df65a-48c6-453f-a0c3-61715d8b6e6c") + ) + (fp_line + (start 18.3 7.7) + (end -1.3 7.7) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.Fab") + (uuid "170aa6a3-8ff0-472f-beba-04a59d4e4cea") + ) + (fp_line + (start -1.3 7.7) + (end -1.3 -7.7) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.Fab") + (uuid "de52435f-6975-4f9f-88ad-6dd64b234f95") + ) + (fp_text user "${REFERENCE}" + (at 7.1 0.025 90) + (layer "F.Fab") + (uuid "96b4cef5-3469-4157-8e4a-4d5173a97963") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (fp_text user "1" + (at 0 -2.3 90) + (layer "F.Fab") + (uuid "d6b8d266-8fc4-471e-9ef3-a90d24654b62") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (pad "1" thru_hole circle + (at 0 0 180) + (size 3 3) + (drill 1.3) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 8 "COM_1") + (pintype "passive") + (uuid "6b70c306-daf0-4f67-828c-7bd995c46dfd") + ) + (pad "2" thru_hole circle + (at 1.95 6.05 180) + (size 2.5 2.5) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 82 "R-1") + (pintype "passive") + (uuid "acef02d9-59e9-4e10-b4fd-01e4e636c5d1") + ) + (pad "3" thru_hole circle + (at 14.15 6.05 180) + (size 3 3) + (drill 1.3) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 10 "NO_1") + (pintype "passive") + (uuid "905e2c58-70e3-4f37-ba8a-0a3732b6e034") + ) + (pad "4" thru_hole circle + (at 14.2 -6 180) + (size 3 3) + (drill 1.3) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 9 "NC_1") + (pintype "passive") + (uuid "7259d375-1689-42f0-b437-11aea32f44c9") + ) + (pad "5" thru_hole circle + (at 1.95 -5.95 180) + (size 2.5 2.5) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 81 "/12V_DC-Regulated") + (pintype "passive") + (uuid "12b9818b-4e7f-46aa-b385-300f56b7eb61") + ) + (embedded_fonts no) + (model "${KICAD9_3DMODEL_DIR}/Relay_THT.3dshapes/Relay_SPDT_SANYOU_SRD_Series_Form_C.step" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Package_SO:SOIC-8_3.9x4.9mm_P1.27mm" + (placed yes) + (layer "F.Cu") + (uuid "bc3de9be-50ab-4b39-be19-e3c4a67a2c16") + (at 184.135 78.915) + (descr "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") + (tags "SOIC SO") + (property "Reference" "U5" + (at 0 -3.4 0) + (layer "F.SilkS") + (uuid "6735c34d-22ee-4450-930f-e62880f4b96c") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "SN65HVD230" + (at 0 3.4 0) + (layer "F.Fab") + (uuid "5852e581-276b-4c5a-8338-2d8f23f9de8c") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "http://www.ti.com/lit/ds/symlink/sn65hvd230.pdf" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "4ac53db2-7ba6-4c9a-b62d-d6c1ac92f19b") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "CAN Bus Transceivers, 3.3V, 1Mbps, Low-Power capabilities, SOIC-8" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "586c10f2-793e-4c49-a4e4-b57e5d1ee65f") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "SOIC*3.9x4.9mm*P1.27mm*") + (path "/1f83ba40-62ce-48e7-8477-3eff2e76560f") + (sheetname "/") + (sheetfile "SmartFuseBox.kicad_sch") + (attr smd) + (fp_line + (start -2.06 -2.56) + (end 2.06 -2.56) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "cac2b699-c496-4f2a-a3a9-de51f73bbe74") + ) + (fp_line + (start -2.06 -2.465) + (end -2.06 -2.56) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "17435ff3-08bc-426a-a3f8-519703dc5f87") + ) + (fp_line + (start -2.06 2.56) + (end -2.06 2.465) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "805be48e-1b34-4a08-801e-0a4980c75589") + ) + (fp_line + (start 2.06 -2.56) + (end 2.06 -2.465) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "9cd7312b-db4e-4e0b-8482-536eade1319d") + ) + (fp_line + (start 2.06 2.465) + (end 2.06 2.56) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "385419b6-5139-4743-aac6-921d63121c9f") + ) + (fp_line + (start 2.06 2.56) + (end -2.06 2.56) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "24262c28-4a62-4302-a2d0-588978c1f489") + ) + (fp_poly + (pts + (xy -2.6 -2.47) (xy -2.84 -2.8) (xy -2.36 -2.8) + ) + (stroke + (width 0.12) + (type solid) + ) + (fill yes) + (layer "F.SilkS") + (uuid "371c28fe-9179-406b-9b9a-fe1c81f090e4") + ) + (fp_line + (start -3.7 -2.46) + (end -2.2 -2.46) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "5c855d4c-8f74-4cac-9de4-648ef6144ffd") + ) + (fp_line + (start -3.7 2.46) + (end -3.7 -2.46) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "c4cd0b34-2011-4c21-b271-b17eec6e2e0f") + ) + (fp_line + (start -2.2 -2.7) + (end 2.2 -2.7) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "86cd326d-172e-40a4-99ba-c2aeb8694af9") + ) + (fp_line + (start -2.2 -2.46) + (end -2.2 -2.7) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "68097a32-bf7e-492e-b7ae-f1fa939137ad") + ) + (fp_line + (start -2.2 2.46) + (end -3.7 2.46) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "6fe417c8-5b01-45e6-b18e-730b6ce2919d") + ) + (fp_line + (start -2.2 2.7) + (end -2.2 2.46) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "2b485130-7bd0-4c03-8e0a-2b6167bbff79") + ) + (fp_line + (start 2.2 -2.7) + (end 2.2 -2.46) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "3640ccea-129c-474c-b98b-01213f7cee41") + ) + (fp_line + (start 2.2 -2.46) + (end 3.7 -2.46) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "59e41ddb-9cec-4641-838e-44cb0f77f1a5") + ) + (fp_line + (start 2.2 2.46) + (end 2.2 2.7) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "c721b42f-6c81-427b-93ac-608429c611cf") + ) + (fp_line + (start 2.2 2.7) + (end -2.2 2.7) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "728aa5bd-9e90-461c-a7bc-cb8b663b1f27") + ) + (fp_line + (start 3.7 -2.46) + (end 3.7 2.46) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "c60dc20c-6f30-4da2-9586-153bbdb30b16") + ) + (fp_line + (start 3.7 2.46) + (end 2.2 2.46) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "158f91fd-7ca2-46ad-baa0-bd57f7fcac92") + ) + (fp_poly + (pts + (xy -0.975 -2.45) (xy 1.95 -2.45) (xy 1.95 2.45) (xy -1.95 2.45) (xy -1.95 -1.475) + ) + (stroke + (width 0.1) + (type solid) + ) + (fill no) + (layer "F.Fab") + (uuid "cc16183d-f24a-4a7b-95fc-de570d8b8e9a") + ) + (fp_text user "${REFERENCE}" + (at 0 0 90) + (layer "F.Fab") + (uuid "094a993f-e7d6-4010-a041-357a9f69964a") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (pad "1" smd roundrect + (at -2.475 -1.905) + (size 1.95 0.6) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.25) + (net 51 "ESP_TX") + (pinfunction "D") + (pintype "input") + (uuid "a3650d9f-861e-4fe0-b75c-349619bd69f7") + ) + (pad "2" smd roundrect + (at -2.475 -0.635) + (size 1.95 0.6) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.25) + (net 1 "GND") + (pinfunction "GND") + (pintype "power_in") + (uuid "ff9124e8-e453-453e-b4fb-a7d86a329490") + ) + (pad "3" smd roundrect + (at -2.475 0.635) + (size 1.95 0.6) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.25) + (net 3 "VDD33") + (pinfunction "VCC") + (pintype "power_in") + (uuid "c51ed8b7-3a8a-434a-add4-9be66d6b44bf") + ) + (pad "4" smd roundrect + (at -2.475 1.905) + (size 1.95 0.6) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.25) + (net 52 "ESP_RX") + (pinfunction "R") + (pintype "output") + (uuid "b8129f07-6ec0-49e8-ad48-a3a0baba7109") + ) + (pad "5" smd roundrect + (at 2.475 1.905) + (size 1.95 0.6) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.25) + (net 50 "unconnected-(U5-Vref-Pad5)") + (pinfunction "Vref") + (pintype "output+no_connect") + (uuid "2d1a9799-8233-424f-9a01-00e524444281") + ) + (pad "6" smd roundrect + (at 2.475 0.635) + (size 1.95 0.6) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.25) + (net 12 "/CANL") + (pinfunction "CANL") + (pintype "bidirectional") + (uuid "6fd36069-e6c3-4a00-bdef-8e9eb840434c") + ) + (pad "7" smd roundrect + (at 2.475 -0.635) + (size 1.95 0.6) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.25) + (net 11 "/CANH") + (pinfunction "CANH") + (pintype "bidirectional") + (uuid "9fb8d8db-8ff2-411b-b274-3db041baa908") + ) + (pad "8" smd roundrect + (at 2.475 -1.905) + (size 1.95 0.6) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.25) + (net 46 "Net-(R8-+)") + (pinfunction "Rs") + (pintype "input") + (uuid "b370a694-39c8-40f5-94c1-e0ee25785f05") + ) + (embedded_fonts no) + (model "${KICAD9_3DMODEL_DIR}/Package_SO.3dshapes/SOIC-8_3.9x4.9mm_P1.27mm.step" + (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" + (placed yes) + (layer "F.Cu") + (uuid "be80fc47-8570-47e3-ae34-8fa320072fec") + (at 73.86 106.02 -90) + (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 "Reference" "C25" + (at 0 -1.68 90) + (layer "F.SilkS") + (uuid "7ac9d515-430b-4b28-a65f-c89a65fb3ff9") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "0.1uf" + (at 0 1.68 90) + (layer "F.Fab") + (uuid "a4c65725-9908-4dc5-92ac-5b5e799590d2") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "~" + (at 0 0 90) + (layer "F.Fab") + (hide yes) + (uuid "87b58ca2-07ee-4a5c-8441-2e53a0bf2267") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "Unpolarized capacitor" + (at 0 0 90) + (layer "F.Fab") + (hide yes) + (uuid "818e45af-2c44-480e-8726-e9555d840d79") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Link" "https://robu.in/product/cl21a106kofnnne-samsang-16v-10uf-x5r-%C2%B110-0805-multilayer-ceramic-capacitors-mlcc-smd-smt-rohs/?gad_source=1&gad_campaignid=17427802703&gbraid=0AAAAADvLFWeYd6KQJmaof5AqwX7G6G7RK&gclid=CjwKCAjw687NBhB4EiwAQ645dvOPfam1y5aCD1uRQvjlmer72tAuxihwH4D1G8BPdKh6SRiWARJldBoCKCYQAvD_BwE" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "d5e3d076-d4c2-4ecf-a2d3-963cce531c79") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "C_*") + (path "/0249115f-e473-4453-9361-a7e93624eaf2") + (sheetname "/") + (sheetfile "SmartFuseBox.kicad_sch") + (attr smd) + (fp_line + (start -0.261252 0.735) + (end 0.261252 0.735) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "ca05eb23-0867-4223-9da9-c993fff57208") + ) + (fp_line + (start -0.261252 -0.735) + (end 0.261252 -0.735) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "7c2f60fc-854d-4307-8cf0-d0c77a1f62d4") + ) + (fp_rect + (start -1.88 -0.98) + (end 1.88 0.98) + (stroke + (width 0.05) + (type solid) + ) + (fill no) + (layer "F.CrtYd") + (uuid "9a14cf6c-6360-49cf-a8b6-238f4916e15e") + ) + (fp_rect + (start -1 -0.625) + (end 1 0.625) + (stroke + (width 0.1) + (type solid) + ) + (fill no) + (layer "F.Fab") + (uuid "a047a817-b16b-4e96-80ab-b819322b11fa") + ) + (fp_text user "${REFERENCE}" + (at 0 0 90) + (layer "F.Fab") + (uuid "0742bc6f-11ce-452d-a68e-94a330321953") + (effects + (font + (size 0.5 0.5) + (thickness 0.08) + ) + ) + ) + (pad "1" smd roundrect + (at -1.0375 0 270) + (size 1.175 1.45) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.212766) + (net 81 "/12V_DC-Regulated") + (pintype "passive") + (uuid "6ea29160-1132-4d5f-a3c0-e334e3c61d43") + ) + (pad "2" smd roundrect + (at 1.0375 0 270) + (size 1.175 1.45) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.212766) + (net 1 "GND") + (pintype "passive") + (uuid "31271808-1e51-45e9-84dd-b2f33ca2eac3") + ) + (embedded_fonts no) + (model "${KICAD9_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.step" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "TerminalBlock:TerminalBlock_MaiXu_MX126-5.0-03P_1x03_P5.00mm" + (layer "F.Cu") + (uuid "c14e917d-cb89-4192-9ecb-88abaf3036ab") + (at 132.46 61.72 180) + (descr "terminal block MaiXu MX126-5.0-03P, 3 pins, pitch 5mm, size 15.5x7.8mm, drill diameter 1.3mm, pad diameter 2.8mm, https://www.lcsc.com/datasheet/lcsc_datasheet_2309150913_MAX-MX126-5-0-03P-GN01-Cu-S-A_C5188435.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_MaiXu") + (tags "THT terminal block MaiXu MX126-5.0-03P pitch 5mm size 15.5x7.8mm drill 1.3mm pad 2.8mm") + (property "Reference" "J2" + (at -4.34 2.52 90) + (layer "F.SilkS") + (uuid "95254e58-2598-44e0-a4f9-85a9522f2dab") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "Conn_01x03_Socket" + (at 4.75 4.92 0) + (layer "F.Fab") + (uuid "7a804d81-5578-419f-bb94-dd8af7229a43") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "~" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "c69baa18-2501-4590-9f41-41b4fe0406e9") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "Generic connector, single row, 01x03, script generated" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "32aa64c1-0a1a-48de-8639-f5b4c33be3e4") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "Connector*:*_1x??_*") + (path "/6c568724-4aee-4a89-88fd-14e366502339") + (sheetname "/") + (sheetfile "SmartFuseBox.kicad_sch") + (attr through_hole) + (fp_line + (start 12.62 3.92) + (end 0.3 3.92) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "443d6611-c1f0-4993-81e9-a8a054c2ef56") + ) + (fp_line + (start 12.62 -4.12) + (end 12.62 3.92) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "57dfaff5-f133-46fa-a08a-d845be1023ae") + ) + (fp_line + (start 11.812 0.5) + (end 12.62 0.5) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "caf1f0fe-987e-4038-a71e-31684fc87a31") + ) + (fp_line + (start 11.812 -0.5) + (end 12.62 -0.5) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "66c012a3-89b3-489e-a504-c3b081fe5bac") + ) + (fp_line + (start 10.543 1.8) + (end 12.62 1.8) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "35bd2e83-4c39-475e-9158-1a62ac21910c") + ) + (fp_line + (start 6.812 0.5) + (end 8.188 0.5) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "42a933f0-970c-47d5-aa44-e20d3370bc60") + ) + (fp_line + (start 6.812 -0.5) + (end 8.188 -0.5) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "a1f7f34e-790f-4976-a732-434e107c143c") + ) + (fp_line + (start 5.543 1.8) + (end 9.457 1.8) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "4b938cb6-e711-4425-862c-355ddcee9e71") + ) + (fp_line + (start 1.88 1.8) + (end 4.457 1.8) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "21fe8b65-283a-4f1f-9b52-da2cb560b506") + ) + (fp_line + (start 1.88 0.5) + (end 3.188 0.5) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "dd4bc6f6-6e02-454a-8c64-e0bd9abe7476") + ) + (fp_line + (start 1.88 -0.5) + (end 3.188 -0.5) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "c4fff9f3-ad59-4543-b740-82ec4d7afb3f") + ) + (fp_line + (start -0.3 3.92) + (end -3.12 3.92) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "cefa5333-5cba-415c-ad4e-4352ce399e1f") + ) + (fp_line + (start -3.12 3.92) + (end -3.12 -4.12) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "81e7fdd3-3b07-4698-8424-d91860923d2b") + ) + (fp_line + (start -3.12 1.8) + (end -1.88 1.8) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "65a433ca-0e5d-43ad-ac80-15cca86d9232") + ) + (fp_line + (start -3.12 0.5) + (end -1.88 0.5) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "85549d35-6488-41d0-a196-20fc3f95c481") + ) + (fp_line + (start -3.12 -0.5) + (end -1.88 -0.5) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "51e68662-fa7e-49d3-8a4d-8773b4db90aa") + ) + (fp_line + (start -3.12 -4.12) + (end 12.62 -4.12) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "444d1d1f-ce09-4601-9b66-c00e340b5c40") + ) + (fp_poly + (pts + (xy 0 3.92) (xy 0.44 4.53) (xy -0.44 4.53) + ) + (stroke + (width 0.12) + (type solid) + ) + (fill yes) + (layer "F.SilkS") + (uuid "a894a88e-e500-4576-a675-4e0010b7ed43") + ) + (fp_rect + (start -3.5 -4.5) + (end 13 4.31) + (stroke + (width 0.05) + (type solid) + ) + (fill no) + (layer "F.CrtYd") + (uuid "80baf1f5-90b6-42f6-b9eb-1b65fa2dfb65") + ) + (fp_line + (start 12.5 3.8) + (end -1.05 3.8) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "e8c99fc5-d412-4444-bc0e-e338d95c95d2") + ) + (fp_line + (start 12.5 -4) + (end 12.5 3.8) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "ed399016-efe5-42e1-829a-5b26179c5ae1") + ) + (fp_line + (start 11.213 -1.018) + (end 8.982 1.213) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "b2a048a2-f258-44c6-be7e-7d9cf7f21b06") + ) + (fp_line + (start 11.018 -1.213) + (end 8.787 1.018) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "2ca74459-772d-4f0c-aeab-7006353817d6") + ) + (fp_line + (start 6.213 -1.018) + (end 3.982 1.213) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "51ffe879-7a8c-4400-be54-b30d67314e3e") + ) + (fp_line + (start 6.018 -1.213) + (end 3.787 1.018) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "ca818b8d-2a45-42d6-9bef-e99b61084d7d") + ) + (fp_line + (start 1.213 -1.018) + (end -1.018 1.213) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "a6b6dd80-54a1-475a-9283-82eeef65316b") + ) + (fp_line + (start 1.018 -1.213) + (end -1.213 1.018) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "89cb1aeb-0231-45e6-8990-0a3112e9bdc3") + ) + (fp_line + (start -1.05 3.8) + (end -3 1.85) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "dcf5a181-53a6-4a75-8e25-55db5b52657e") + ) + (fp_line + (start -3 1.85) + (end -3 -4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "2ee61008-7589-4ade-b50f-2a0d22a60045") + ) + (fp_line + (start -3 1.8) + (end 12.5 1.8) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "9ae47bdb-8dc8-4e71-ab03-a4aced0586ed") + ) + (fp_line + (start -3 0.5) + (end 12.5 0.5) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "f6de9549-ca2d-4871-9fa3-a726210add95") + ) + (fp_line + (start -3 -0.5) + (end 12.5 -0.5) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "d47a5b84-8e90-453a-8005-7a4b0bf3b922") + ) + (fp_line + (start -3 -4) + (end 12.5 -4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "ee0b53e2-0c0f-4c3c-83e7-bbeadd0ee0c9") + ) + (fp_circle + (center 10 0) + (end 11.6 0) + (stroke + (width 0.1) + (type solid) + ) + (fill no) + (layer "F.Fab") + (uuid "e7e024eb-fa9a-4a96-9717-3e23f3b41662") + ) + (fp_circle + (center 5 0) + (end 6.6 0) + (stroke + (width 0.1) + (type solid) + ) + (fill no) + (layer "F.Fab") + (uuid "38dfaff4-7b22-476d-ad6c-8d60c4070f97") + ) + (fp_circle + (center 0 0) + (end 1.6 0) + (stroke + (width 0.1) + (type solid) + ) + (fill no) + (layer "F.Fab") + (uuid "96b2e9fb-9b64-40d4-abee-c7aed171d2d2") + ) + (fp_text user "${REFERENCE}" + (at 4.75 2.65 0) + (layer "F.Fab") + (uuid "12948a34-43b6-461e-8cf1-1f5aea4c2c28") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (pad "1" thru_hole roundrect + (at 0 0 180) + (size 2.8 2.8) + (drill 1.3) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (roundrect_rratio 0.089286) + (net 10 "NO_1") + (pinfunction "Pin_1") + (pintype "passive") + (uuid "dea2d500-a847-41c0-8bb6-9ed8acd422f8") + ) + (pad "2" thru_hole circle + (at 5 0 180) + (size 2.8 2.8) + (drill 1.3) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 8 "COM_1") + (pinfunction "Pin_2") + (pintype "passive") + (uuid "4405ad66-5fda-4099-8c43-40b5b0a31402") + ) + (pad "3" thru_hole circle + (at 10 0 180) + (size 2.8 2.8) + (drill 1.3) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 9 "NC_1") + (pinfunction "Pin_3") + (pintype "passive") + (uuid "463de7a4-9e1e-4ff5-9911-7ba7febeb15c") + ) + (embedded_fonts no) + (model "${KICAD9_3DMODEL_DIR}/TerminalBlock_Phoenix.3dshapes/TerminalBlock_Phoenix_MKDS-1,5-3_1x03_P5.00mm_Horizontal.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Diode_SMD:D_SMA" + (layer "F.Cu") + (uuid "c2036241-5488-4999-81e3-672e63a313e9") + (at 104.86 106.22 180) + (descr "Diode SMA (DO-214AC)") + (tags "Diode SMA (DO-214AC)") + (property "Reference" "D8" + (at 0 -2.5 0) + (layer "F.SilkS") + (uuid "dcb1a3ea-ec2c-4fe8-a012-ef33f96e2f94") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "SS54" + (at 0 2.6 0) + (layer "F.Fab") + (uuid "02e27d3d-b3d7-4394-b61d-2738b701f001") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "https://www.laro.com.pl/pdf/ss56.pdf" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "765f7ac6-2ddc-4c29-bf7c-7e6d2a894692") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "SMC Schottky diode, 40V, 5A, Alternate KiCAD Library" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "4093d1ba-db7b-446a-ae15-9b1aa489e8b4") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Link" "https://robu.in/product/ss54b-slkor-40v-550mv5a-5a-smbdo-214aa-schottky-diodes-rohs/?gad_source=1&gad_campaignid=17427802703&gbraid=0AAAAADvLFWeYd6KQJmaof5AqwX7G6G7RK&gclid=CjwKCAjw687NBhB4EiwAQ645dhFgK7QWTnrPqJBCFVMKkjTLbr6I5VJmPHffxaZ_pS_3KzeiLFGuoBoCukcQAvD_BwE" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "54251115-1160-4c4e-aafe-5d09810f7cfd") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "TO-???* *_Diode_* *SingleDiode* D_*") + (path "/0a0f53c8-d202-42ad-8b36-894146d80996") + (sheetname "/") + (sheetfile "SmartFuseBox.kicad_sch") + (attr smd) + (fp_line + (start -3.51 1.65) + (end 2 1.65) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "eb0a1bc7-c031-4bc6-8dbf-f2a7571d1c6e") + ) + (fp_line + (start -3.51 -1.65) + (end 2 -1.65) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "c15186cf-3a1d-4848-bc6d-09695145cbd4") + ) + (fp_line + (start -3.51 -1.65) + (end -3.51 1.65) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "cc6f0b28-b102-4b19-82ca-acf3ca0473b1") + ) + (fp_line + (start 3.5 1.75) + (end -3.5 1.75) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "cb0a9780-5e1c-4694-bd48-d1e20bcd4878") + ) + (fp_line + (start 3.5 -1.75) + (end 3.5 1.75) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "57459678-e14a-4de9-9b90-a3a18c79b77f") + ) + (fp_line + (start -3.5 1.75) + (end -3.5 -1.75) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "566d8e7c-6a22-4538-836b-465b080771d0") + ) + (fp_line + (start -3.5 -1.75) + (end 3.5 -1.75) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "45998a56-dd90-4ade-b6dc-ed63cde12d51") + ) + (fp_line + (start 2.3 1.5) + (end -2.3 1.5) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "d29d028c-a179-4fdd-8e3a-640d572a6406") + ) + (fp_line + (start 2.3 -1.5) + (end 2.3 1.5) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "92dec235-af9d-4d12-9f2c-6e14935a3585") + ) + (fp_line + (start 2.3 -1.5) + (end -2.3 -1.5) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "1078d35f-331d-4652-8588-6d555c11ab54") + ) + (fp_line + (start 0.50118 0.75032) + (end 0.50118 -0.79908) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "7d6496de-12de-4310-b7c7-66d2c84157a8") + ) + (fp_line + (start 0.50118 0.00102) + (end 1.4994 0.00102) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "ac7f087f-199c-43da-aba1-c4af712c0679") + ) + (fp_line + (start -0.64944 0.00102) + (end 0.50118 0.75032) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "082bfada-348a-4ab8-93e2-d2ed0b161cca") + ) + (fp_line + (start -0.64944 0.00102) + (end 0.50118 -0.79908) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "185a49b7-ea5b-4846-9334-5257c63e9a36") + ) + (fp_line + (start -0.64944 0.00102) + (end -1.55114 0.00102) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "c305c9f4-05d2-4c4c-870e-b5af7db10c15") + ) + (fp_line + (start -0.64944 -0.79908) + (end -0.64944 0.80112) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "0d22938e-80df-4c40-af98-36eb0955be28") + ) + (fp_line + (start -2.3 1.5) + (end -2.3 -1.5) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "15f96a68-cf4c-4320-b08d-55f450b7d7a4") + ) + (fp_text user "${REFERENCE}" + (at 0 -2.5 0) + (layer "F.Fab") + (uuid "a6a04b03-70fe-4dbe-ad56-a49b8d6e0dd6") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (pad "1" smd roundrect + (at -2 0 180) + (size 2.5 1.8) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.1388888889) + (net 81 "/12V_DC-Regulated") + (pinfunction "K") + (pintype "passive") + (uuid "03e0bd38-6457-46c7-b0bb-76ea783e44ba") + ) + (pad "2" smd roundrect + (at 2 0 180) + (size 2.5 1.8) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.1388888889) + (net 87 "R-6") + (pinfunction "A") + (pintype "passive") + (uuid "a607ed11-7a25-4082-8944-16ea9aad2bf7") + ) + (embedded_fonts no) + (model "${KICAD9_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SMA.step" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Connector_JST:JST_PH_S4B-PH-K_1x04_P2.00mm_Horizontal" + (placed yes) + (layer "F.Cu") + (uuid "c252df0a-9ac9-438b-b1c1-409357957ad5") + (at 177.86 133.17) + (descr "JST PH series connector, S4B-PH-K (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator") + (tags "connector JST PH horizontal") + (property "Reference" "J12" + (at 8.74 -2.97 90) + (layer "F.SilkS") + (uuid "10ab3899-39fa-4bdf-8275-b4c8e6aedf22") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "Conn_01x04_Socket" + (at 3 7.45 0) + (layer "F.Fab") + (uuid "8ff12b5e-2b25-4a6d-b1e2-0872d91fc024") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "~" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "da596dd2-17fe-47cd-96cc-757ab27f2399") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "Generic connector, single row, 01x04, script generated" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "7aa98f10-8115-491a-b6ae-b92a822920fd") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "Connector*:*_1x??_*") + (path "/d74dfcc0-aa9c-4aaa-a89c-9e05fe58b44d") + (sheetname "/") + (sheetfile "SmartFuseBox.kicad_sch") + (attr through_hole) + (fp_line + (start -2.06 -1.46) + (end -2.06 6.36) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "9250d108-baff-4909-b29f-318e97459947") + ) + (fp_line + (start -2.06 0.14) + (end -1.14 0.14) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "b199bb87-c5eb-4e45-8632-cd010ab2aaf2") + ) + (fp_line + (start -2.06 6.36) + (end 8.06 6.36) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "a64523d5-d9c5-4276-9d43-549f374a3da5") + ) + (fp_line + (start -1.14 -1.46) + (end -2.06 -1.46) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "e627709c-0c31-4c30-b984-c346012bc661") + ) + (fp_line + (start -1.14 0.14) + (end -1.14 -1.46) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "e481f4ad-9e4c-4ebe-ae16-20889c9594c3") + ) + (fp_line + (start -0.86 0.14) + (end -1.14 0.14) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "80a71444-096d-4042-ac43-6a2f9e17568f") + ) + (fp_line + (start -0.86 0.14) + (end -0.86 -1.075) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "9f4975e0-7652-4f2c-8325-c36497a3cb61") + ) + (fp_line + (start -0.8 4.1) + (end -0.8 6.36) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "8e556b06-431a-4923-886b-7fdcbcc66b20") + ) + (fp_line + (start -0.3 4.1) + (end -0.3 6.36) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "4bfdf7a6-8de6-4b7c-bd9c-a2d1f862b815") + ) + (fp_line + (start 0.5 2) + (end 5.5 2) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "40e15994-b579-478b-bff5-59a45c619401") + ) + (fp_line + (start 0.5 6.36) + (end 0.5 2) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "99cfbba0-4264-4318-a644-8cd9fb04b0c5") + ) + (fp_line + (start 5.5 2) + (end 5.5 6.36) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "6338fd7a-405c-455a-b225-732727876eb1") + ) + (fp_line + (start 7.14 -1.46) + (end 7.14 0.14) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "ae9f83f2-bbf0-4a41-91b0-67566ef6641c") + ) + (fp_line + (start 7.14 0.14) + (end 6.86 0.14) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "ff41aade-ecaf-4615-8d0b-89e9fc41f0d6") + ) + (fp_line + (start 8.06 -1.46) + (end 7.14 -1.46) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "26e08e3c-3512-4380-bbd3-278c3e17dc67") + ) + (fp_line + (start 8.06 0.14) + (end 7.14 0.14) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "aabcf1c9-bb4e-4481-b0f4-f1a1885ac203") + ) + (fp_line + (start 8.06 6.36) + (end 8.06 -1.46) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "cacedada-c23a-4f2a-be39-b58a0a8f1324") + ) + (fp_rect + (start -1.3 2.5) + (end -0.3 4.1) + (stroke + (width 0.12) + (type solid) + ) + (fill no) + (layer "F.SilkS") + (uuid "51463397-4ca0-4d30-ab56-9864020f2af0") + ) + (fp_rect + (start 6.3 2.5) + (end 7.3 4.1) + (stroke + (width 0.12) + (type solid) + ) + (fill no) + (layer "F.SilkS") + (uuid "3c510fe5-96b5-4c83-9c95-6845f1c73c2a") + ) + (fp_rect + (start -2.45 -1.85) + (end 8.45 6.75) + (stroke + (width 0.05) + (type solid) + ) + (fill no) + (layer "F.CrtYd") + (uuid "14827e7c-1e5c-4ab2-b24c-5c91809c134a") + ) + (fp_line + (start -1.95 -1.35) + (end -1.95 6.25) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "2de03cb3-02ff-4d7b-abea-7cf1f99a1d71") + ) + (fp_line + (start -1.95 6.25) + (end 7.95 6.25) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "b3d7691a-d16e-45c5-963a-7101f6db3a3b") + ) + (fp_line + (start -1.25 -1.35) + (end -1.95 -1.35) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "7c221ed2-765a-43a3-948e-59d4e4b1f7e9") + ) + (fp_line + (start -1.25 0.25) + (end -1.25 -1.35) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "80a09942-1204-4bb8-9eeb-d8efccd62c76") + ) + (fp_line + (start -0.5 1.375) + (end 0.5 1.375) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "c9749d47-1caf-40eb-bb1d-f04a9389b2ac") + ) + (fp_line + (start 0 0.875) + (end -0.5 1.375) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "ba230a0d-8b0b-473a-95ae-2bed19189151") + ) + (fp_line + (start 0.5 1.375) + (end 0 0.875) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "6cf24bbd-de31-4ef7-8dd8-976cce0ebbdb") + ) + (fp_line + (start 7.25 -1.35) + (end 7.25 0.25) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "b9e1d681-bd96-493b-9664-f1af18ed8f42") + ) + (fp_line + (start 7.25 0.25) + (end -1.25 0.25) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "aee01432-838a-4b38-940a-186742faa978") + ) + (fp_line + (start 7.95 -1.35) + (end 7.25 -1.35) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "7dd26328-9252-4945-b85c-533834fb7f04") + ) + (fp_line + (start 7.95 6.25) + (end 7.95 -1.35) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "575e42e5-b5d7-47dd-aeb8-fe61cbb8383c") + ) + (fp_text user "${REFERENCE}" + (at 3 2.5 0) + (layer "F.Fab") + (uuid "bd1f3bcd-8698-4d8e-9357-ec1204c949d9") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (pad "1" thru_hole roundrect + (at 0 0) + (size 1.2 1.75) + (drill 0.75) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (roundrect_rratio 0.208333) + (net 37 "SIG_A3") + (pinfunction "Pin_1") + (pintype "passive") + (uuid "9893786f-6586-4561-b5e0-8136884cc8b8") + ) + (pad "2" thru_hole oval + (at 2 0) + (size 1.2 1.75) + (drill 0.75) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 36 "SIG_A4") + (pinfunction "Pin_2") + (pintype "passive") + (uuid "1e0b1726-3fec-464a-88ce-0e77b3eda860") + ) + (pad "3" thru_hole oval + (at 4 0) + (size 1.2 1.75) + (drill 0.75) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 3 "VDD33") + (pinfunction "Pin_3") + (pintype "passive") + (uuid "18e60f5f-816c-40c2-ba2b-b534de194024") + ) + (pad "4" thru_hole oval + (at 6 0) + (size 1.2 1.75) + (drill 0.75) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 1 "GND") + (pinfunction "Pin_4") + (pintype "passive") + (uuid "45b2dea5-3bbd-40f5-af70-a1d0fff7ab15") + ) + (embedded_fonts no) + (model "${KICAD9_3DMODEL_DIR}/Connector_JST.3dshapes/JST_PH_S4B-PH-K_1x04_P2.00mm_Horizontal.step" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder" + (placed yes) + (layer "F.Cu") + (uuid "c5e3f327-27e3-4a16-a576-60cc3f12ef79") + (at 197.935 94.82 180) + (descr "LED SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC-7351 nominal, (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator") + (tags "LED handsolder") + (property "Reference" "D12" + (at 0 -1.65 0) + (layer "F.SilkS") + (uuid "3d4253fd-be87-41ba-8900-e8ee3291b6e8") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "LED" + (at 0 1.65 0) + (layer "F.Fab") + (uuid "e80253a1-3d57-4c17-b55a-1cd589de28d7") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "~" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "a594115f-5d00-412e-9dd1-f16fb7b9d134") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "Light emitting diode" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "313acf00-1cd0-463b-8e44-eb3f416fb27b") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Sim.Pins" "1=K 2=A" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "be8ca4fb-ade0-4415-bf45-75872f1d8af5") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "LED* LED_SMD:* LED_THT:*") + (path "/1ec8918f-6cbb-4659-844c-7fbdb0f27223") + (sheetname "/") + (sheetfile "SmartFuseBox.kicad_sch") + (attr smd) + (fp_line + (start 1 -0.96) + (end -1.86 -0.96) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "058628b5-26f5-421c-90da-abcf4cfc7712") + ) + (fp_line + (start -1.86 0.96) + (end 1 0.96) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "e892b8a3-0268-48c0-951b-962d25d92f04") + ) + (fp_line + (start -1.86 -0.96) + (end -1.86 0.96) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "61d3433a-3e97-49a5-aad3-2d702b80b3b3") + ) + (fp_rect + (start -1.85 -0.95) + (end 1.85 0.95) + (stroke + (width 0.05) + (type solid) + ) + (fill no) + (layer "F.CrtYd") + (uuid "e888ab48-e2aa-44a8-bcc2-d3c4d270ec4d") + ) + (fp_line + (start 1 0.6) + (end 1 -0.6) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "a5fb2f9c-1187-454f-8ab2-c06037f7bb09") + ) + (fp_line + (start 1 -0.6) + (end -0.7 -0.6) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "15225391-1055-4864-b9d4-952a3b215eeb") + ) + (fp_line + (start -0.7 -0.6) + (end -1 -0.3) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "eb883095-8e3f-4768-ab6f-692e1c923977") + ) + (fp_line + (start -1 0.6) + (end 1 0.6) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "a3b79d6d-d266-49fe-9164-03bed9106001") + ) + (fp_line + (start -1 -0.3) + (end -1 0.6) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "01d74a0b-8b50-42f1-987b-5afc7b72c0ca") + ) + (fp_text user "${REFERENCE}" + (at 0 0 0) + (layer "F.Fab") + (uuid "8427724d-1798-446e-b912-2adc18ca9503") + (effects + (font + (size 0.5 0.5) + (thickness 0.08) + ) + ) + ) + (pad "1" smd roundrect + (at -1.025 0 180) + (size 1.15 1.4) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.217391) + (net 1 "GND") + (pinfunction "K") + (pintype "passive") + (uuid "e126ce28-6907-4a93-a66b-22039d23d187") + ) + (pad "2" smd roundrect + (at 1.025 0 180) + (size 1.15 1.4) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.217391) + (net 77 "Net-(D12-A)") + (pinfunction "A") + (pintype "passive") + (uuid "23de315a-8d6e-4c9f-a9f3-d63e3216e192") + ) + (embedded_fonts no) + (model "${KICAD9_3DMODEL_DIR}/LED_SMD.3dshapes/LED_0805_2012Metric.step" + (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 "F.Cu") + (uuid "c725f5e6-cb3f-497b-948c-c4792af054ba") + (at 144.335 71.96 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 "Reference" "C1" + (at 0 -1.68 0) + (layer "F.SilkS") + (uuid "b68411d4-36ff-42fe-a9cd-0d258f7afc1b") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "0.1uf" + (at 0 1.68 0) + (layer "F.Fab") + (uuid "8a06c69b-2ae7-43ad-b845-cf7b0d01a5e4") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "~" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "0365cc76-2002-4f71-a76d-5f4a2b95423d") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "Unpolarized capacitor" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "0bc8ecfe-1d24-4ebd-be7a-3892faac408a") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Link" "https://robu.in/product/cl21a106kofnnne-samsang-16v-10uf-x5r-%C2%B110-0805-multilayer-ceramic-capacitors-mlcc-smd-smt-rohs/?gad_source=1&gad_campaignid=17427802703&gbraid=0AAAAADvLFWeYd6KQJmaof5AqwX7G6G7RK&gclid=CjwKCAjw687NBhB4EiwAQ645dvOPfam1y5aCD1uRQvjlmer72tAuxihwH4D1G8BPdKh6SRiWARJldBoCKCYQAvD_BwE" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "7831293f-3a69-44f7-b367-9227640d1d5d") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "C_*") + (path "/1af0e26a-d752-495f-ac85-84a687e8b63e") + (sheetname "/") + (sheetfile "SmartFuseBox.kicad_sch") + (attr smd) + (fp_line + (start -0.261252 0.735) + (end 0.261252 0.735) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "982c12f6-3abb-493c-b332-6230b5265c13") + ) + (fp_line + (start -0.261252 -0.735) + (end 0.261252 -0.735) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "ed1bf0a2-9ee1-4727-9dbd-e6d59defe4a2") + ) + (fp_rect + (start -1.88 -0.98) + (end 1.88 0.98) + (stroke + (width 0.05) + (type solid) + ) + (fill no) + (layer "F.CrtYd") + (uuid "09f96857-7aa3-408c-80a4-27053698b0e2") + ) + (fp_rect + (start -1 -0.625) + (end 1 0.625) + (stroke + (width 0.1) + (type solid) + ) + (fill no) + (layer "F.Fab") + (uuid "eb03ab4c-ece4-404a-9420-5463054aef6d") + ) + (fp_text user "${REFERENCE}" + (at 0 0 0) + (layer "F.Fab") + (uuid "59b5d9bf-f5f0-491a-96fa-b2663126d5cd") + (effects + (font + (size 0.5 0.5) + (thickness 0.08) + ) + ) + ) + (pad "1" smd roundrect + (at -1.0375 0 180) + (size 1.175 1.45) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.212766) + (net 3 "VDD33") + (pintype "passive") + (uuid "fd9c2a97-c051-4d28-8ae5-ed94a4f03a3a") + ) + (pad "2" smd roundrect + (at 1.0375 0 180) + (size 1.175 1.45) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.212766) + (net 1 "GND") + (pintype "passive") + (uuid "4c3d15ce-55fa-407d-9a6c-7a4999bffabc") + ) + (embedded_fonts no) + (model "${KICAD9_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.step" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Passives:R_0805_2012Metric_Pad1.20x1.40mm_HandSolder" + (placed yes) + (layer "F.Cu") + (uuid "c89eafd7-0b18-4709-a228-24a8b9ab5c98") + (at 179.06 106.37 90) + (descr "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") + (tags "resistor handsolder") + (property "Reference" "R16" + (at 0 -1.65 90) + (layer "F.SilkS") + (hide yes) + (uuid "89b8d674-0ff7-428c-a402-ac459806caec") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "10k" + (at 0 1.65 90) + (layer "F.Fab") + (uuid "7abc0045-e5cf-4e40-ae33-041e45961538") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "b0a6d4fb-23e3-454c-9083-20a9e98649bf") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "resistor" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "5b7d5615-0d6f-4624-a6d3-51c5f3d76917") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Indicator" "+" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "f9fb1e22-340c-4e3e-aee1-6e4cacddc9f2") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Rating" "W" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "29e07cab-028f-4bc5-883a-28d16ca0a724") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (path "/2103341c-f431-4cd6-a805-b1bfed225d5a") + (sheetname "/") + (sheetfile "SmartFuseBox.kicad_sch") + (attr smd) + (fp_line + (start -0.227064 -0.735) + (end 0.227064 -0.735) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "db8eddb4-d9af-43ef-aca7-9bdd97d50bc7") + ) + (fp_line + (start -0.227064 0.735) + (end 0.227064 0.735) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "f8af1b8c-2cfa-4901-b32c-5974ac594d6b") + ) + (fp_line + (start 1.85 -0.95) + (end 1.85 0.95) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "918645e2-8ad4-46f3-8e2f-4b1126f62768") + ) + (fp_line + (start -1.85 -0.95) + (end 1.85 -0.95) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "ee231367-0545-44a5-b341-efe89848e07d") + ) + (fp_line + (start 1.85 0.95) + (end -1.85 0.95) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "43251f47-98e4-45d1-9739-b1de698bd28a") + ) + (fp_line + (start -1.85 0.95) + (end -1.85 -0.95) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "5059b766-5894-4aa1-821d-9e696d41eff8") + ) + (fp_line + (start 1 -0.625) + (end 1 0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "f2ce9a58-715c-45ed-b73b-62aea1665762") + ) + (fp_line + (start -1 -0.625) + (end 1 -0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "7e6d92a2-2f39-47fc-a93a-06878816b4ba") + ) + (fp_line + (start 1 0.625) + (end -1 0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "282511cc-2958-4d19-956c-e7e0d2b9de16") + ) + (fp_line + (start -1 0.625) + (end -1 -0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "2479b4af-4523-4775-a140-1583d7754c9b") + ) + (fp_text user "${REFERENCE}" + (at 0 0 90) + (layer "F.Fab") + (uuid "ec457ac5-c960-4b5e-abf0-38ab33771ed3") + (effects + (font + (size 0.5 0.5) + (thickness 0.08) + ) + ) + ) + (pad "1" smd roundrect + (at -1 0 270) + (size 1.2 1.4) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.208333) + (net 79 "Net-(R16-+)") + (pinfunction "+") + (pintype "passive") + (uuid "043aca6f-bf0e-467a-8109-515767768ce7") + ) + (pad "2" smd roundrect + (at 1 0 270) + (size 1.2 1.4) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.208333) + (net 1 "GND") + (pinfunction "-") + (pintype "passive") + (uuid "5c4134ca-52b9-4ad7-a8f4-fdba7057cefb") + ) + (embedded_fonts no) + (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0805_2012Metric.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" + (placed yes) + (layer "F.Cu") + (uuid "c908b101-e96c-47ed-8781-35276f5581e1") + (at 103.26 91.02 90) + (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 "Reference" "C6" + (at 0 -1.68 90) + (layer "F.SilkS") + (uuid "7196eb61-bcb1-4090-b3cf-2ac42f417438") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "10uf" + (at 0 1.68 90) + (layer "F.Fab") + (uuid "3789f6f8-ea4d-4623-8f9d-718a782de502") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "~" + (at 0 0 90) + (layer "F.Fab") + (hide yes) + (uuid "d53a7798-9faa-4915-98f8-3eb3492f2684") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "Unpolarized capacitor" + (at 0 0 90) + (layer "F.Fab") + (hide yes) + (uuid "f3ff28ee-b9ae-45f8-ba20-dd8128365c3a") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Link" "https://robu.in/product/0402x104k100nt-fh-smd-multilayer-ceramic-capacitor-0-1-%C2%B5f100nf-10-v-0402-1005-metric-%C2%B1-10-x5r/" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "064e7eea-ee39-4d5f-a824-0602309efdfc") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "C_*") + (path "/a6d784fd-f516-4387-875e-4151056a3a0d") + (sheetname "/") + (sheetfile "SmartFuseBox.kicad_sch") + (attr smd) + (fp_line + (start -0.261252 -0.735) + (end 0.261252 -0.735) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "0887d35e-4d9d-41fe-96c3-3c4c1dc21e70") + ) + (fp_line + (start -0.261252 0.735) + (end 0.261252 0.735) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "41bbc98c-5f2d-43ce-9a99-db4f881c5f81") + ) + (fp_rect + (start -1.88 -0.98) + (end 1.88 0.98) + (stroke + (width 0.05) + (type solid) + ) + (fill no) + (layer "F.CrtYd") + (uuid "779ee2b9-ec47-41da-b164-09d504a5d81d") + ) + (fp_rect + (start -1 -0.625) + (end 1 0.625) + (stroke + (width 0.1) + (type solid) + ) + (fill no) + (layer "F.Fab") + (uuid "de2c56dd-53c3-4431-b1c4-cda854f24b09") + ) + (fp_text user "${REFERENCE}" + (at 0 0 90) + (layer "F.Fab") + (uuid "598a2e6d-748f-4fb1-aff2-daa8849aeabd") + (effects + (font + (size 0.5 0.5) + (thickness 0.08) + ) + ) + ) + (pad "1" smd roundrect + (at -1.0375 0 90) + (size 1.175 1.45) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.212766) + (net 81 "/12V_DC-Regulated") + (pintype "passive") + (uuid "f800a3b3-470d-4feb-b5fa-6d78daebb008") + ) + (pad "2" smd roundrect + (at 1.0375 0 90) + (size 1.175 1.45) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.212766) + (net 1 "GND") + (pintype "passive") + (uuid "756f5d77-16c9-439d-ae0b-5d45bf346240") + ) + (embedded_fonts no) + (model "${KICAD9_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.step" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "MountingHole:MountingHole_3.2mm_M3" + (layer "F.Cu") + (uuid "c91e70cf-4043-42f7-9bea-d15c072cb317") + (at 61 60.2) + (descr "Mounting Hole 3.2mm, M3, no annular, generated by kicad-footprint-generator mountinghole.py") + (tags "mountinghole M3") + (property "Reference" "H3" + (at 0 -4.15 0) + (layer "F.SilkS") + (hide yes) + (uuid "c5f23aca-1c48-4322-a6ea-3310ad32c18e") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "MountingHole" + (at 0 4.15 0) + (layer "F.Fab") + (uuid "d4fcf111-c780-4ca6-8e93-b6888d4454dc") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "~" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "7a4f7e70-1af7-4440-a4cd-da266ff59bcd") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "Mounting Hole without connection" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "ccd96ebe-b44d-438e-8937-1eec75a55315") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "MountingHole*") + (path "/c64873ce-ac46-490f-bb20-ad1affd6871d") + (sheetname "/") + (sheetfile "SmartFuseBox.kicad_sch") + (attr exclude_from_pos_files exclude_from_bom) + (fp_circle + (center 0 0) + (end 3.2 0) + (stroke + (width 0.15) + (type solid) + ) + (fill no) + (layer "Cmts.User") + (uuid "a61fcae6-9776-415b-87a3-18478652ee50") + ) + (fp_circle + (center 0 0) + (end 3.45 0) + (stroke + (width 0.05) + (type solid) + ) + (fill no) + (layer "F.CrtYd") + (uuid "6db922ca-be22-46e4-b26c-4a7e7e8e7418") + ) + (fp_text user "${REFERENCE}" + (at 0 0 0) + (layer "F.Fab") + (uuid "2109b300-878f-4141-abb3-2dd1607c919f") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (pad "" np_thru_hole circle + (at 0 0) + (size 3.2 3.2) + (drill 3.2) + (layers "*.Cu" "*.Mask") + (uuid "8133deb7-f732-417e-96d5-43130b09f8aa") + ) + (embedded_fonts no) + ) + (footprint "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" + (placed yes) + (layer "F.Cu") + (uuid "cc905194-cafa-4602-9f2e-4691d9fbe378") + (at 188.7225 106.4575) + (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 "Reference" "C30" + (at 0.2775 1.7425 0) + (layer "F.SilkS") + (uuid "adafc0f9-bf1b-44d1-bee4-c58ed21c5b2b") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "0.1uf" + (at 0 1.68 0) + (layer "F.Fab") + (uuid "b0e83482-d855-4e1c-8c1c-7c4ca8bda448") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "~" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "4ae888dd-9f04-4b2d-b079-aa765a5ca1fa") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "Unpolarized capacitor" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "1429fa29-0546-419e-b6dd-afda3d2eb495") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Link" "https://robu.in/product/cl21a106kofnnne-samsang-16v-10uf-x5r-%C2%B110-0805-multilayer-ceramic-capacitors-mlcc-smd-smt-rohs/?gad_source=1&gad_campaignid=17427802703&gbraid=0AAAAADvLFWeYd6KQJmaof5AqwX7G6G7RK&gclid=CjwKCAjw687NBhB4EiwAQ645dvOPfam1y5aCD1uRQvjlmer72tAuxihwH4D1G8BPdKh6SRiWARJldBoCKCYQAvD_BwE" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "af6052aa-d1df-456f-b4fa-a9b81dbe550e") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "C_*") + (path "/5544c458-686a-45e6-b000-c05d9897f744") + (sheetname "/") + (sheetfile "SmartFuseBox.kicad_sch") + (attr smd) + (fp_line + (start -0.261252 -0.735) + (end 0.261252 -0.735) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "bece182a-2bf1-45d5-82f4-5ed57b9a7559") + ) + (fp_line + (start -0.261252 0.735) + (end 0.261252 0.735) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "9e984434-3411-40cf-9c55-40970f218e65") + ) + (fp_rect + (start -1.88 -0.98) + (end 1.88 0.98) + (stroke + (width 0.05) + (type solid) + ) + (fill no) + (layer "F.CrtYd") + (uuid "ab6c96c4-b73f-47e9-bf1a-1fe488693fb5") + ) + (fp_rect + (start -1 -0.625) + (end 1 0.625) + (stroke + (width 0.1) + (type solid) + ) + (fill no) + (layer "F.Fab") + (uuid "52fb6055-9768-4011-9d85-94e6d0e17b62") + ) + (fp_text user "${REFERENCE}" + (at 0 0 0) + (layer "F.Fab") + (uuid "2ee4c085-0c8d-4107-ae90-4807befd35f5") + (effects + (font + (size 0.5 0.5) + (thickness 0.08) + ) + ) + ) + (pad "1" smd roundrect + (at -1.0375 0) + (size 1.175 1.45) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.212766) + (net 74 "Net-(U3-SS)") + (pintype "passive") + (uuid "f8b08dc4-cdf4-4b48-ba4b-d0e76ed9c6ed") + ) + (pad "2" smd roundrect + (at 1.0375 0) + (size 1.175 1.45) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.212766) + (net 1 "GND") + (pintype "passive") + (uuid "b0f2479c-d8c9-4ac2-a087-c5d8da686cee") + ) + (embedded_fonts no) + (model "${KICAD9_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.step" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "MountingHole:MountingHole_3.2mm_M3" + (layer "F.Cu") + (uuid "d017f7da-d8f7-4ad0-b014-363fab74e272") + (at 61 136.6) + (descr "Mounting Hole 3.2mm, M3, no annular, generated by kicad-footprint-generator mountinghole.py") + (tags "mountinghole M3") + (property "Reference" "H4" + (at 0 -4.15 0) + (layer "F.SilkS") + (hide yes) + (uuid "801307c1-0050-43e1-8bd9-cb6d7abf47c4") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "MountingHole" + (at 0 4.15 0) + (layer "F.Fab") + (uuid "58c1db3e-cd48-4320-ab0b-48647cb08233") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "~" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "2b66a41f-2c65-45f0-b58d-76f962df5651") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "Mounting Hole without connection" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "009ceb94-8a41-4e5d-9d3d-5c1386714fe6") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "MountingHole*") + (path "/c14160b3-32de-4b04-b428-cf8250545424") + (sheetname "/") + (sheetfile "SmartFuseBox.kicad_sch") + (attr exclude_from_pos_files exclude_from_bom) + (fp_circle + (center 0 0) + (end 3.2 0) + (stroke + (width 0.15) + (type solid) + ) + (fill no) + (layer "Cmts.User") + (uuid "4cbb2c8d-9ad9-4c44-996b-9b439b079527") + ) + (fp_circle + (center 0 0) + (end 3.45 0) + (stroke + (width 0.05) + (type solid) + ) + (fill no) + (layer "F.CrtYd") + (uuid "5c86289c-a4b2-4fa4-8e28-f26e60f379ee") + ) + (fp_text user "${REFERENCE}" + (at 0 0 0) + (layer "F.Fab") + (uuid "51ddb276-66d5-4bd6-94ed-673fc07691f2") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (pad "" np_thru_hole circle + (at 0 0) + (size 3.2 3.2) + (drill 3.2) + (layers "*.Cu" "*.Mask") + (uuid "56f5b2f7-1f7a-4eac-8ff5-b97303dcfabf") + ) + (embedded_fonts no) + ) + (footprint "Diode_SMD:D_SMA" + (layer "F.Cu") + (uuid "d3a37ed4-9160-4890-8cec-12979a999585") + (at 86.66 106.22 180) + (descr "Diode SMA (DO-214AC)") + (tags "Diode SMA (DO-214AC)") + (property "Reference" "D9" + (at 0 -2.5 0) + (layer "F.SilkS") + (uuid "0ead6f7f-8ab6-4265-922a-5e84bf5269be") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "SS54" + (at 0 2.6 0) + (layer "F.Fab") + (uuid "1a72b7e4-e34f-48e5-9ca0-6cb31f5ea5dc") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "https://www.laro.com.pl/pdf/ss56.pdf" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "ab611744-3474-410a-ab79-552add9291b7") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "SMC Schottky diode, 40V, 5A, Alternate KiCAD Library" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "a9071bf3-f489-409f-883b-65b5a798cb76") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Link" "https://robu.in/product/ss54b-slkor-40v-550mv5a-5a-smbdo-214aa-schottky-diodes-rohs/?gad_source=1&gad_campaignid=17427802703&gbraid=0AAAAADvLFWeYd6KQJmaof5AqwX7G6G7RK&gclid=CjwKCAjw687NBhB4EiwAQ645dhFgK7QWTnrPqJBCFVMKkjTLbr6I5VJmPHffxaZ_pS_3KzeiLFGuoBoCukcQAvD_BwE" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "a4f3d376-a858-461d-a231-b02ae42353be") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "TO-???* *_Diode_* *SingleDiode* D_*") + (path "/5d941e76-20ab-458f-bcdc-8f8372f35e3a") + (sheetname "/") + (sheetfile "SmartFuseBox.kicad_sch") + (attr smd) + (fp_line + (start -3.51 1.65) + (end 2 1.65) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "9e05b397-6ea5-4697-91f9-c52b8124f248") + ) + (fp_line + (start -3.51 -1.65) + (end 2 -1.65) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "8b7e41f0-f5c6-409b-8fd7-6bf161c4354b") + ) + (fp_line + (start -3.51 -1.65) + (end -3.51 1.65) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "1e744fa9-7af6-4d5d-a7ee-863be3eb2117") + ) + (fp_line + (start 3.5 1.75) + (end -3.5 1.75) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "ae57232b-da99-40a3-b85a-49b5880d6e09") + ) + (fp_line + (start 3.5 -1.75) + (end 3.5 1.75) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "9fae60f0-5340-4750-b3c7-e7dcfadc19f1") + ) + (fp_line + (start -3.5 1.75) + (end -3.5 -1.75) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "20b5c2ed-9521-4e54-90cb-9b8d91e6104d") + ) + (fp_line + (start -3.5 -1.75) + (end 3.5 -1.75) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "d249b52c-bf91-4095-ab37-ca910457b35a") + ) + (fp_line + (start 2.3 1.5) + (end -2.3 1.5) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "16355be8-cfbe-4f9d-8055-7401904bfc1b") + ) + (fp_line + (start 2.3 -1.5) + (end 2.3 1.5) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "2ac73dd3-715e-43ba-86ac-e1cf14be0206") + ) + (fp_line + (start 2.3 -1.5) + (end -2.3 -1.5) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "3211f386-d367-41a7-916c-55d655f260e1") + ) + (fp_line + (start 0.50118 0.75032) + (end 0.50118 -0.79908) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "42e95cab-a204-41d9-901a-43f0ba0f8e72") + ) + (fp_line + (start 0.50118 0.00102) + (end 1.4994 0.00102) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "cffac35f-8016-48f3-9e0e-8a310be3588c") + ) + (fp_line + (start -0.64944 0.00102) + (end 0.50118 0.75032) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "93a996f7-4da1-4f13-91bf-67dcba65012c") + ) + (fp_line + (start -0.64944 0.00102) + (end 0.50118 -0.79908) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "0560f7e8-8f92-4d67-91c1-9ca66be3acaf") + ) + (fp_line + (start -0.64944 0.00102) + (end -1.55114 0.00102) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "acb347ca-e9e7-46c0-8e6c-9a684f2d7aa2") + ) + (fp_line + (start -0.64944 -0.79908) + (end -0.64944 0.80112) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "48146cf1-bac8-487e-996a-9e66a898374c") + ) + (fp_line + (start -2.3 1.5) + (end -2.3 -1.5) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "b7e77994-522e-4a16-9bee-f1d19cf694c4") + ) + (fp_text user "${REFERENCE}" + (at 0 -2.5 0) + (layer "F.Fab") + (uuid "6d9063b0-691c-4c1e-a07e-13d45dfad9e6") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (pad "1" smd roundrect + (at -2 0 180) + (size 2.5 1.8) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.1388888889) + (net 81 "/12V_DC-Regulated") + (pinfunction "K") + (pintype "passive") + (uuid "006578d6-87db-4622-abb7-a5a9481e4057") + ) + (pad "2" smd roundrect + (at 2 0 180) + (size 2.5 1.8) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.1388888889) + (net 88 "R-7") + (pinfunction "A") + (pintype "passive") + (uuid "d03cbd59-8f4e-46ce-9658-79710d709c2a") + ) + (embedded_fonts no) + (model "${KICAD9_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SMA.step" + (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 "F.Cu") + (uuid "d610909d-2802-4829-a740-8af12bd5c7ea") + (at 144.335 68.95 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 "Reference" "C2" + (at 0 -1.68 0) + (layer "F.SilkS") + (uuid "7cff85c1-f965-4106-89cc-6389c9d7afc5") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "10uf" + (at 0 1.68 0) + (layer "F.Fab") + (uuid "5695bdaa-9720-464c-af67-f8f3d63c88d9") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "~" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "7eea6eb5-cd55-47a3-87e6-ff788e6d3035") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "Unpolarized capacitor" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "754a8ef7-dc47-4983-a8d5-7da06d6ab21e") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Link" "https://robu.in/product/0402x104k100nt-fh-smd-multilayer-ceramic-capacitor-0-1-%C2%B5f100nf-10-v-0402-1005-metric-%C2%B1-10-x5r/" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "d615598f-da4a-47bb-87a9-61783b31329c") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "C_*") + (path "/0d89b810-bad9-4091-b229-364a9bbc8856") + (sheetname "/") + (sheetfile "SmartFuseBox.kicad_sch") + (attr smd) + (fp_line + (start -0.261252 0.735) + (end 0.261252 0.735) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "5a238c35-b939-4b13-8c48-505cc4456bce") + ) + (fp_line + (start -0.261252 -0.735) + (end 0.261252 -0.735) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "2ffa1a0a-43e9-4eb5-b159-8513e7a3e260") + ) + (fp_rect + (start -1.88 -0.98) + (end 1.88 0.98) + (stroke + (width 0.05) + (type solid) + ) + (fill no) + (layer "F.CrtYd") + (uuid "f1512741-31f5-4abe-91d0-ac4bb33067ca") + ) + (fp_rect + (start -1 -0.625) + (end 1 0.625) + (stroke + (width 0.1) + (type solid) + ) + (fill no) + (layer "F.Fab") + (uuid "0b530db6-6509-48cc-962d-bfbcb4b3a205") + ) + (fp_text user "${REFERENCE}" + (at 0 0 0) + (layer "F.Fab") + (uuid "d2beeadd-aee1-4543-8a08-852520305933") + (effects + (font + (size 0.5 0.5) + (thickness 0.08) + ) + ) + ) + (pad "1" smd roundrect + (at -1.0375 0 180) + (size 1.175 1.45) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.212766) + (net 3 "VDD33") + (pintype "passive") + (uuid "46cb61ce-9ecd-4750-8278-cf9310173857") + ) + (pad "2" smd roundrect + (at 1.0375 0 180) + (size 1.175 1.45) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.212766) + (net 1 "GND") + (pintype "passive") + (uuid "cc0eacd3-2f90-451e-a532-e1cfbe642791") + ) + (embedded_fonts no) + (model "${KICAD9_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.step" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Diode_SMD:D_SMA" + (layer "F.Cu") + (uuid "d80bf68e-e6d9-4c54-9806-0d81637dbee0") + (at 95.26 90.62) + (descr "Diode SMA (DO-214AC)") + (tags "Diode SMA (DO-214AC)") + (property "Reference" "D5" + (at 0 -2.5 0) + (layer "F.SilkS") + (uuid "7870be54-785f-43ec-bb2d-5c66efa1fcb6") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "SS54" + (at 0 2.6 0) + (layer "F.Fab") + (uuid "d16c6e97-23c7-4e37-86cb-eb7bab7ed2e3") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "https://www.laro.com.pl/pdf/ss56.pdf" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "3d31df0e-8cc0-40d0-92e3-73dee552748e") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "SMC Schottky diode, 40V, 5A, Alternate KiCAD Library" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "796b36f4-c790-4b7e-b785-7c1c6e4e16fc") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Link" "https://robu.in/product/ss54b-slkor-40v-550mv5a-5a-smbdo-214aa-schottky-diodes-rohs/?gad_source=1&gad_campaignid=17427802703&gbraid=0AAAAADvLFWeYd6KQJmaof5AqwX7G6G7RK&gclid=CjwKCAjw687NBhB4EiwAQ645dhFgK7QWTnrPqJBCFVMKkjTLbr6I5VJmPHffxaZ_pS_3KzeiLFGuoBoCukcQAvD_BwE" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "f227ad9e-a49c-48ca-a2c6-ebf2ce5a7df7") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "TO-???* *_Diode_* *SingleDiode* D_*") + (path "/082f69f1-baab-4b3a-917a-590915753223") + (sheetname "/") + (sheetfile "SmartFuseBox.kicad_sch") + (attr smd) + (fp_line + (start -3.51 -1.65) + (end -3.51 1.65) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "122aac03-02b8-40c9-b9ac-dbd4817c3fef") + ) + (fp_line + (start -3.51 -1.65) + (end 2 -1.65) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "b14f36c8-f524-4edc-8096-36f6adffaec2") + ) + (fp_line + (start -3.51 1.65) + (end 2 1.65) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "ebe21c55-b4e5-4c22-b158-0bce7f6f0a2e") + ) + (fp_line + (start -3.5 -1.75) + (end 3.5 -1.75) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "31686942-75ec-4e05-b080-cd53907327a4") + ) + (fp_line + (start -3.5 1.75) + (end -3.5 -1.75) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "f55a650b-97dd-4581-b6ad-827152de8d63") + ) + (fp_line + (start 3.5 -1.75) + (end 3.5 1.75) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "f2bdc9a2-e258-4f13-a970-38c42c13dd80") + ) + (fp_line + (start 3.5 1.75) + (end -3.5 1.75) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "4c509601-470c-4129-b8b1-1c7adca405f2") + ) + (fp_line + (start -2.3 1.5) + (end -2.3 -1.5) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "82ffb55b-9de0-48f5-8bb1-b674ed8cc1bb") + ) + (fp_line + (start -0.64944 -0.79908) + (end -0.64944 0.80112) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "0f092c51-b1d3-410d-bd65-baf85df89439") + ) + (fp_line + (start -0.64944 0.00102) + (end -1.55114 0.00102) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "35e50794-0ca5-41bd-b089-3bc38cf52fa8") + ) + (fp_line + (start -0.64944 0.00102) + (end 0.50118 -0.79908) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "fb59c60b-11c8-4b40-916c-6fc0c2d80bc9") + ) + (fp_line + (start -0.64944 0.00102) + (end 0.50118 0.75032) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "84d470f0-0d5e-492c-80ca-0f0464749731") + ) + (fp_line + (start 0.50118 0.00102) + (end 1.4994 0.00102) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "95993728-61fe-4ee6-9633-c9d26076c6c0") + ) + (fp_line + (start 0.50118 0.75032) + (end 0.50118 -0.79908) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "8c6bcab8-3c74-4df0-a96f-8c54d0d1bfd5") + ) + (fp_line + (start 2.3 -1.5) + (end -2.3 -1.5) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "d02a5cc1-493e-4625-8427-5a904c3baefc") + ) + (fp_line + (start 2.3 -1.5) + (end 2.3 1.5) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "abad1c01-e665-4053-9f8b-d42bda2263b2") + ) + (fp_line + (start 2.3 1.5) + (end -2.3 1.5) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "3e3386ac-80ea-4e97-9ddd-530c5360a620") + ) + (fp_text user "${REFERENCE}" + (at 0 -2.5 0) + (layer "F.Fab") + (uuid "66325d4c-6bab-4285-9923-6d32f9fc0d74") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (pad "1" smd roundrect + (at -2 0) + (size 2.5 1.8) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.1388888889) + (net 81 "/12V_DC-Regulated") + (pinfunction "K") + (pintype "passive") + (uuid "4f153a94-8e62-4ef8-88ed-c4bb6d5ad767") + ) + (pad "2" smd roundrect + (at 2 0) + (size 2.5 1.8) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.1388888889) + (net 84 "R-3") + (pinfunction "A") + (pintype "passive") + (uuid "d9949084-e40e-48bb-9e56-bfb0fc7a1ee8") + ) + (embedded_fonts no) + (model "${KICAD9_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SMA.step" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "TerminalBlock:TerminalBlock_MaiXu_MX126-5.0-02P_1x02_P5.00mm" + (layer "F.Cu") + (uuid "df0cd26e-4ffb-4a0c-81b7-04d996a0d2d3") + (at 198.26 108.82 90) + (descr "terminal block MaiXu MX126-5.0-02P, 2 pins, pitch 5mm, size 10.5x7.8mm, drill diameter 1.3mm, pad diameter 2.8mm, https://www.lcsc.com/datasheet/lcsc_datasheet_2309150913_MAX-MX126-5-0-03P-GN01-Cu-S-A_C5188435.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_MaiXu") + (tags "THT terminal block MaiXu MX126-5.0-02P pitch 5mm size 10.5x7.8mm drill 1.3mm pad 2.8mm") + (property "Reference" "J1" + (at -3.98 -2.46 180) + (layer "F.SilkS") + (uuid "0785f80d-55cb-465e-a992-770ed8a840b5") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "Conn_01x02_Socket" + (at 2.25 4.92 90) + (layer "F.Fab") + (uuid "7651dee2-511d-48f4-a568-997ff988f876") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "~" + (at 0 0 90) + (layer "F.Fab") + (hide yes) + (uuid "b276c542-d48e-421f-b00f-9b8da617b424") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "Generic connector, single row, 01x02, script generated" + (at 0 0 90) + (layer "F.Fab") + (hide yes) + (uuid "7228d8bc-068d-4876-b9ff-b9985bf6782a") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Field5" "" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "37f4efa0-d48c-42ef-969d-e2ffb6e00755") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Link" "https://robu.in/product/xy300va-5-0-xinya-2-pin-screw-terminal-blockgreen/?gad_source=1&gad_campaignid=17427802703&gbraid=0AAAAADvLFWeYd6KQJmaof5AqwX7G6G7RK&gclid=CjwKCAjw687NBhB4EiwAQ645dm3mhAdglKyHl_8GnzEDB_uXrpj4uQtWwQHHBEWzkz3MnmosnbtiIRoCAjYQAvD_BwE" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "52cc7ca1-ce76-4c8b-8ef4-824f4cdb7e00") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "MPN" "" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "f9ce4190-004b-4fe7-b553-a992d1adc801") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "Connector*:*_1x??_*") + (path "/52a60b74-0479-43c2-b7f6-a2ce176222b3") + (sheetname "/") + (sheetfile "SmartFuseBox.kicad_sch") + (attr through_hole) + (fp_line + (start 7.62 -4.12) + (end 7.62 3.92) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "753b0e20-a2cd-456f-81e6-c6558f5bf776") + ) + (fp_line + (start -3.12 -4.12) + (end 7.62 -4.12) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "535d0a3c-7065-45eb-b8bf-9835d3148e09") + ) + (fp_line + (start 6.812 -0.5) + (end 7.62 -0.5) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "b3feca92-297d-4610-b0fd-637625d0072c") + ) + (fp_line + (start 1.88 -0.5) + (end 3.188 -0.5) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "f6630d77-f381-4baf-808b-ba603b72e411") + ) + (fp_line + (start -3.12 -0.5) + (end -1.88 -0.5) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "172d3288-c2e9-41d7-9fdf-6c2e109f7d34") + ) + (fp_line + (start 6.812 0.5) + (end 7.62 0.5) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "259ed126-2134-4e68-ba05-37b592b2df42") + ) + (fp_line + (start 1.88 0.5) + (end 3.188 0.5) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "5ebc391d-759b-4b19-84b1-f941b3eddbd6") + ) + (fp_line + (start -3.12 0.5) + (end -1.88 0.5) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "0f8ea764-578f-4f33-9c8e-624e2245ef06") + ) + (fp_line + (start 5.543 1.8) + (end 7.62 1.8) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "41b47247-6e19-420a-a49c-884e208308a2") + ) + (fp_line + (start 1.88 1.8) + (end 4.457 1.8) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "014d6034-1ad8-481d-a238-f87aab5ecb51") + ) + (fp_line + (start -3.12 1.8) + (end -1.88 1.8) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "7fa9f75f-e591-4a2d-9262-daa8a51579eb") + ) + (fp_line + (start 7.62 3.92) + (end 0.3 3.92) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "e30bfe0b-c23a-487f-a990-b7d8a7c6da95") + ) + (fp_line + (start -0.3 3.92) + (end -3.12 3.92) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "3306d8d7-6e80-4522-af9c-a60967f396d9") + ) + (fp_line + (start -3.12 3.92) + (end -3.12 -4.12) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "70326d60-d4ac-48a9-bd15-2147941999ce") + ) + (fp_poly + (pts + (xy 0 3.92) (xy 0.44 4.53) (xy -0.44 4.53) + ) + (stroke + (width 0.12) + (type solid) + ) + (fill yes) + (layer "F.SilkS") + (uuid "9e0117f7-e076-460d-beb1-be3f92f96b8a") + ) + (fp_line + (start 8 -4.5) + (end -3.5 -4.5) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "19157ce4-3dd3-45fb-baf4-804d672159d2") + ) + (fp_line + (start -3.5 -4.5) + (end -3.5 4.31) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "1d829df0-24c1-41f7-bb4a-895239166e11") + ) + (fp_line + (start 8 4.31) + (end 8 -4.5) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "2abbb69a-240a-4476-bacd-03aac91ffba6") + ) + (fp_line + (start -3.5 4.31) + (end 8 4.31) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "de0a5414-cfc6-4dca-b255-cf25c3cbef60") + ) + (fp_line + (start 7.5 -4) + (end 7.5 3.8) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "71a9fe64-c4fb-47f4-81b2-9e55fd808836") + ) + (fp_line + (start -3 -4) + (end 7.5 -4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "3db12960-61b4-4f78-a80f-1a3f147398d3") + ) + (fp_line + (start 6.018 -1.213) + (end 3.787 1.018) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "a3fd5b3c-c4ee-4291-994c-ccf39e5c2dcc") + ) + (fp_line + (start 1.018 -1.213) + (end -1.213 1.018) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "b43a7d86-166a-45b1-8408-31aafd0373e8") + ) + (fp_line + (start 6.213 -1.018) + (end 3.982 1.213) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "f2775375-1461-4e07-9774-5cf460b9b094") + ) + (fp_line + (start 1.213 -1.018) + (end -1.018 1.213) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "94d780aa-f8f3-4dcf-a0ed-52b0811901de") + ) + (fp_line + (start -3 -0.5) + (end 7.5 -0.5) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "75e230ee-4bb5-4c78-8099-5fa670c1b3e5") + ) + (fp_line + (start -3 0.5) + (end 7.5 0.5) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "7db7af6a-74f3-4565-a724-bb799b15bc6f") + ) + (fp_line + (start -3 1.8) + (end 7.5 1.8) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "4bd679bb-def2-4126-b29d-ae7ae67f27ea") + ) + (fp_line + (start -3 1.85) + (end -3 -4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "5b2cfb45-3543-4c8c-93e3-f81def9c9346") + ) + (fp_line + (start 7.5 3.8) + (end -1.05 3.8) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "62a98b5c-df17-4ca6-b2ee-3f874d33d7b0") + ) + (fp_line + (start -1.05 3.8) + (end -3 1.85) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "968aaa05-341a-441f-8278-453ed18319bd") + ) + (fp_circle + (center 5 0) + (end 6.6 0) + (stroke + (width 0.1) + (type solid) + ) + (fill no) + (layer "F.Fab") + (uuid "eaca4578-4101-4bce-8526-05a46b05f556") + ) + (fp_circle + (center 0 0) + (end 1.6 0) + (stroke + (width 0.1) + (type solid) + ) + (fill no) + (layer "F.Fab") + (uuid "85af18d1-b24b-4ac6-8cb0-9235c2011a55") + ) + (fp_text user "${REFERENCE}" + (at 2.25 2.65 90) + (layer "F.Fab") + (uuid "482a2975-9c7a-4b35-bf01-230abcb3ca00") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (pad "1" thru_hole roundrect + (at 0 0 90) + (size 2.8 2.8) + (drill 1.3) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (roundrect_rratio 0.089286) + (net 80 "Net-(J1-Pin_1)") + (pinfunction "Pin_1") + (pintype "passive") + (uuid "ad302e0a-b553-4646-9cad-7b0126a07e90") + ) + (pad "2" thru_hole circle + (at 5 0 90) + (size 2.8 2.8) + (drill 1.3) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 1 "GND") + (pinfunction "Pin_2") + (pintype "passive") + (uuid "a860fc70-73e8-4218-a9c0-dff75eb739cb") + ) + (embedded_fonts no) + (model "${KICAD9_3DMODEL_DIR}/TerminalBlock_Phoenix.3dshapes/TerminalBlock_Phoenix_MKDS-1,5-2_1x02_P5.00mm_Horizontal.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" + (placed yes) + (layer "F.Cu") + (uuid "e25474bb-a163-4fc0-9f7e-0ef15852e391") + (at 139.335 68.95 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 "Reference" "C10" + (at 0 -1.68 0) + (layer "F.SilkS") + (uuid "232efc39-02a6-40a1-96fd-2926525e76ff") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "10uf" + (at 0 1.68 0) + (layer "F.Fab") + (uuid "6309e9ff-6925-413d-998d-86815e80dc83") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "~" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "81767588-6bd2-48ad-8d25-1152713c1b71") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "Unpolarized capacitor" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "bc5d5752-8782-4225-9afe-3a9238ae7b4d") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Link" "https://robu.in/product/0402x104k100nt-fh-smd-multilayer-ceramic-capacitor-0-1-%C2%B5f100nf-10-v-0402-1005-metric-%C2%B1-10-x5r/" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "678852a7-a5fa-4df8-9e11-20f9931585e9") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "C_*") + (path "/add6ca4e-1d1c-4cf4-b04c-2630ef42c743") + (sheetname "/") + (sheetfile "SmartFuseBox.kicad_sch") + (attr smd) + (fp_line + (start -0.261252 0.735) + (end 0.261252 0.735) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "91804a16-775d-4a71-9612-c64d3660d9df") + ) + (fp_line + (start -0.261252 -0.735) + (end 0.261252 -0.735) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "74a71043-ba69-42c2-ac91-f1ce992fdca3") + ) + (fp_rect + (start -1.88 -0.98) + (end 1.88 0.98) + (stroke + (width 0.05) + (type solid) + ) + (fill no) + (layer "F.CrtYd") + (uuid "52d3d526-c6c4-4aad-a847-e0290598158d") + ) + (fp_rect + (start -1 -0.625) + (end 1 0.625) + (stroke + (width 0.1) + (type solid) + ) + (fill no) + (layer "F.Fab") + (uuid "8fdf5ea2-1d85-4725-8b98-98c110e55d18") + ) + (fp_text user "${REFERENCE}" + (at 0 0 0) + (layer "F.Fab") + (uuid "f8941ca2-6453-4488-a404-403c3a98d7bb") + (effects + (font + (size 0.5 0.5) + (thickness 0.08) + ) + ) + ) + (pad "1" smd roundrect + (at -1.0375 0 180) + (size 1.175 1.45) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.212766) + (net 3 "VDD33") + (pintype "passive") + (uuid "2dc60860-52f9-4c08-917f-2a12ac53df0a") + ) + (pad "2" smd roundrect + (at 1.0375 0 180) + (size 1.175 1.45) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.212766) + (net 1 "GND") + (pintype "passive") + (uuid "b108292f-c5cd-466f-8c15-2de6cae76e24") + ) + (embedded_fonts no) + (model "${KICAD9_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.step" + (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" + (placed yes) + (layer "F.Cu") + (uuid "e75ddecc-f140-4e3a-b0ed-7041fc98c8bc") + (at 77.26 106.02 -90) + (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 "Reference" "C26" + (at 0 -1.68 90) + (layer "F.SilkS") + (uuid "09789667-510e-4f8b-bd41-aaf72467c8d7") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "10uf" + (at 0 1.68 90) + (layer "F.Fab") + (uuid "3254769a-eba6-43af-b725-925edccbf0b2") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "~" + (at 0 0 90) + (layer "F.Fab") + (hide yes) + (uuid "a014c7e3-e905-4782-b5bf-8e1390e00d42") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "Unpolarized capacitor" + (at 0 0 90) + (layer "F.Fab") + (hide yes) + (uuid "5058858b-cf88-4017-8fd5-627e95611151") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Link" "https://robu.in/product/0402x104k100nt-fh-smd-multilayer-ceramic-capacitor-0-1-%C2%B5f100nf-10-v-0402-1005-metric-%C2%B1-10-x5r/" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "e8c0811a-4320-445e-8100-33914856ab1c") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "C_*") + (path "/5d8a1f07-fc04-4a11-856e-c6d658094aaf") + (sheetname "/") + (sheetfile "SmartFuseBox.kicad_sch") + (attr smd) + (fp_line + (start -0.261252 0.735) + (end 0.261252 0.735) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "93a317f4-5371-47f2-b6d2-9062671a9a80") + ) + (fp_line + (start -0.261252 -0.735) + (end 0.261252 -0.735) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "8e5462ae-8546-4050-a3d2-0471b127c2c5") + ) + (fp_rect + (start -1.88 -0.98) + (end 1.88 0.98) + (stroke + (width 0.05) + (type solid) + ) + (fill no) + (layer "F.CrtYd") + (uuid "a0bf45fc-9ed8-4a20-b09a-468d588a5c33") + ) + (fp_rect + (start -1 -0.625) + (end 1 0.625) + (stroke + (width 0.1) + (type solid) + ) + (fill no) + (layer "F.Fab") + (uuid "c18f359e-a5f4-4a0f-8cae-f56f54f71f46") + ) + (fp_text user "${REFERENCE}" + (at 0 0 90) + (layer "F.Fab") + (uuid "74eced64-fd77-4b5a-8f6c-a84946220311") + (effects + (font + (size 0.5 0.5) + (thickness 0.08) + ) + ) + ) + (pad "1" smd roundrect + (at -1.0375 0 270) + (size 1.175 1.45) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.212766) + (net 81 "/12V_DC-Regulated") + (pintype "passive") + (uuid "acade24b-af05-4c17-a0c6-3adc5a8cbc43") + ) + (pad "2" smd roundrect + (at 1.0375 0 270) + (size 1.175 1.45) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.212766) + (net 1 "GND") + (pintype "passive") + (uuid "de2f42c3-4717-4bf5-abfb-7a19a03478e7") + ) + (embedded_fonts no) + (model "${KICAD9_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.step" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Connector_JST:JST_PH_S4B-PH-K_1x04_P2.00mm_Horizontal" + (placed yes) + (layer "F.Cu") + (uuid "eb5623f1-0152-47e7-be2f-2e5c194a8663") + (at 165.46 133.17) + (descr "JST PH series connector, S4B-PH-K (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator") + (tags "connector JST PH horizontal") + (property "Reference" "J11" + (at 9.34 0.23 90) + (layer "F.SilkS") + (uuid "6d3541fa-2402-45a9-b43a-6bee1b0f02bd") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "Conn_01x04_Socket" + (at 3 7.45 0) + (layer "F.Fab") + (uuid "994cfa09-85ec-4ba8-b257-38d10b6a4db0") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "~" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "78083242-92de-41e0-9294-6d67c7cecaa6") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "Generic connector, single row, 01x04, script generated" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "1da654fb-dda7-4aaf-af28-fefc573051d3") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "Connector*:*_1x??_*") + (path "/6c1e4d78-c511-467b-ac23-71997de02cac") + (sheetname "/") + (sheetfile "SmartFuseBox.kicad_sch") + (attr through_hole) + (fp_line + (start -2.06 -1.46) + (end -2.06 6.36) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "64dabe27-33fe-44ef-8d38-4c64802781e6") + ) + (fp_line + (start -2.06 0.14) + (end -1.14 0.14) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "0350d3d9-94a7-4164-a291-f225bf6f49f9") + ) + (fp_line + (start -2.06 6.36) + (end 8.06 6.36) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "ba233032-97d9-4763-b7d3-374ca3ca2f01") + ) + (fp_line + (start -1.14 -1.46) + (end -2.06 -1.46) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "5a0b33e5-4ab8-42e2-9cdd-c87a5803fc1e") + ) + (fp_line + (start -1.14 0.14) + (end -1.14 -1.46) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "d0ebcce0-9be8-4c01-8281-df24f84a7620") + ) + (fp_line + (start -0.86 0.14) + (end -1.14 0.14) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "e3cd40b1-295e-4684-881a-00a4ae9897b9") + ) + (fp_line + (start -0.86 0.14) + (end -0.86 -1.075) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "a755f055-04d7-42ba-84d7-a4eaf2c5ac1e") + ) + (fp_line + (start -0.8 4.1) + (end -0.8 6.36) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "6a29f22b-19df-4bfe-b8de-3a9d2e536111") + ) + (fp_line + (start -0.3 4.1) + (end -0.3 6.36) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "ee3620b1-0ca3-4d74-9127-70337e40686a") + ) + (fp_line + (start 0.5 2) + (end 5.5 2) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "e3c695f0-74c5-415a-a90b-655719280c13") + ) + (fp_line + (start 0.5 6.36) + (end 0.5 2) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "bf760c0f-c269-43db-a7f5-92d9ffc0e627") + ) + (fp_line + (start 5.5 2) + (end 5.5 6.36) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "6a1b31f1-037d-4257-a929-477ceceaeb4e") + ) + (fp_line + (start 7.14 -1.46) + (end 7.14 0.14) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "745350fb-cc6b-443b-ba1b-1ba996e2a989") + ) + (fp_line + (start 7.14 0.14) + (end 6.86 0.14) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "a0886b69-c764-474b-98db-43f7b4f8f276") + ) + (fp_line + (start 8.06 -1.46) + (end 7.14 -1.46) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "cee49804-d6e4-414f-aab4-052b4a5921ed") + ) + (fp_line + (start 8.06 0.14) + (end 7.14 0.14) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "983560f6-9423-46c9-9420-8570348b8c88") + ) + (fp_line + (start 8.06 6.36) + (end 8.06 -1.46) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "8f99c707-381a-46e5-8c43-2f634590b479") + ) + (fp_rect + (start -1.3 2.5) + (end -0.3 4.1) + (stroke + (width 0.12) + (type solid) + ) + (fill no) + (layer "F.SilkS") + (uuid "0a189e9c-ad23-4e59-9475-1cc19a4fdf54") + ) + (fp_rect + (start 6.3 2.5) + (end 7.3 4.1) + (stroke + (width 0.12) + (type solid) + ) + (fill no) + (layer "F.SilkS") + (uuid "9e876c3b-25c1-4906-bcce-c7440092cb13") + ) + (fp_rect + (start -2.45 -1.85) + (end 8.45 6.75) + (stroke + (width 0.05) + (type solid) + ) + (fill no) + (layer "F.CrtYd") + (uuid "85fa9081-0502-4a67-8ddc-463dbf8d7c6f") + ) + (fp_line + (start -1.95 -1.35) + (end -1.95 6.25) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "31b5110e-8898-4515-89b6-80a71e21a4af") + ) + (fp_line + (start -1.95 6.25) + (end 7.95 6.25) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "8cfb1134-3d95-4e5b-81e0-e3274daf362f") + ) + (fp_line + (start -1.25 -1.35) + (end -1.95 -1.35) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "8bf586b2-407f-4f06-b01a-92f79bbb3290") + ) + (fp_line + (start -1.25 0.25) + (end -1.25 -1.35) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "f5698440-3382-4b7c-968a-8a9213e0bd16") + ) + (fp_line + (start -0.5 1.375) + (end 0.5 1.375) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "de765da4-1330-4558-9e4a-affe79bc053a") + ) + (fp_line + (start 0 0.875) + (end -0.5 1.375) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "a2ff716b-7a1a-46f5-a3a8-406c891d4e4e") + ) + (fp_line + (start 0.5 1.375) + (end 0 0.875) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "f3628238-b99e-4e69-a33d-9051cae803dd") + ) + (fp_line + (start 7.25 -1.35) + (end 7.25 0.25) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "9e40ab8b-f6b7-4257-bc8a-86692f4d7a7b") + ) + (fp_line + (start 7.25 0.25) + (end -1.25 0.25) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "3a49a3e5-24f1-4ae5-aea1-17c2eb352f09") + ) + (fp_line + (start 7.95 -1.35) + (end 7.25 -1.35) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "edbdb262-84ba-4497-af85-69d84d6f2472") + ) + (fp_line + (start 7.95 6.25) + (end 7.95 -1.35) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "6d159dec-8418-424d-a5dc-782fc6dc2d0a") + ) + (fp_text user "${REFERENCE}" + (at 3 2.5 0) + (layer "F.Fab") + (uuid "4ab30521-2f47-4638-bc06-7bce9efa285b") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (pad "1" thru_hole roundrect + (at 0 0) + (size 1.2 1.75) + (drill 0.75) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (roundrect_rratio 0.208333) + (net 34 "SIG_A1") + (pinfunction "Pin_1") + (pintype "passive") + (uuid "0ba04af6-537f-4849-a1b0-f50830995e1b") + ) + (pad "2" thru_hole oval + (at 2 0) + (size 1.2 1.75) + (drill 0.75) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 35 "SIG_A2") + (pinfunction "Pin_2") + (pintype "passive") + (uuid "aaca7a91-2895-4b11-98c9-7d1bac0f417a") + ) + (pad "3" thru_hole oval + (at 4 0) + (size 1.2 1.75) + (drill 0.75) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 3 "VDD33") + (pinfunction "Pin_3") + (pintype "passive") + (uuid "b692c2d6-4b04-4b65-a9eb-096307ca74e1") + ) + (pad "4" thru_hole oval + (at 6 0) + (size 1.2 1.75) + (drill 0.75) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 1 "GND") + (pinfunction "Pin_4") + (pintype "passive") + (uuid "45238739-8786-4c3d-b4de-3df46f43b83d") + ) + (embedded_fonts no) + (model "${KICAD9_3DMODEL_DIR}/Connector_JST.3dshapes/JST_PH_S4B-PH-K_1x04_P2.00mm_Horizontal.step" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Connector_JST:JST_XH_S2B-XH-A-1_1x02_P2.50mm_Horizontal" + (layer "F.Cu") + (uuid "ebb79d4e-496d-417e-b71e-83754ee4c8d9") + (at 189.95 133.15) + (descr "JST XH series connector, S2B-XH-A-1 (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator") + (tags "connector JST XH horizontal") + (property "Reference" "J15" + (at 1.25 -5.1 0) + (layer "F.SilkS") + (uuid "acbe292a-c090-4d14-a35e-99ff89ce1acc") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "Conn_01x02_Socket" + (at 1.25 8.8 0) + (layer "F.Fab") + (uuid "495f4158-836b-4cee-8875-2f18f0130621") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "~" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "8788b4fc-6203-4ff7-adf0-d5591b941f86") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "Generic connector, single row, 01x02, script generated" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "23e02b90-768c-445f-be30-39484c81ade0") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "Connector*:*_1x??_*") + (path "/71700133-5a76-4621-894b-ab40bc34f790") + (sheetname "/") + (sheetfile "SmartFuseBox.kicad_sch") + (attr through_hole) + (fp_line + (start -2.56 -4.01) + (end -1.14 -4.01) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "2b12f012-cf66-4460-9fcf-67ff6bab5daf") + ) + (fp_line + (start -2.56 7.71) + (end -2.56 -4.01) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "bea85770-3b6c-4eaf-8738-df98aacb7326") + ) + (fp_line + (start -1.14 -4.01) + (end -1.14 0.49) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "66a35eda-bbd6-4e20-9313-872161fe3167") + ) + (fp_line + (start -0.3 -2.1) + (end 0.3 -2.1) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "3a7742af-1f82-4dd8-b44c-2a22633ee4c9") + ) + (fp_line + (start 0 -1.5) + (end -0.3 -2.1) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "34b28766-bfbd-42df-85f0-e164cb87c563") + ) + (fp_line + (start 0.3 -2.1) + (end 0 -1.5) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "959d94a5-e3c1-47c7-85ab-9455f815213f") + ) + (fp_line + (start 1.25 7.71) + (end -2.56 7.71) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "4c67c731-a9a5-4d13-9225-8343c8e5d5ab") + ) + (fp_line + (start 1.25 7.71) + (end 5.06 7.71) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "e4cf199a-a1d2-4d65-a7ac-37c28c97b9e2") + ) + (fp_line + (start 3.64 -4.01) + (end 3.64 0.49) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "38c2ebe9-747d-4c27-b857-63b769238b08") + ) + (fp_line + (start 5.06 -4.01) + (end 3.64 -4.01) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "438240f0-d7d4-4233-8442-0211b23f8eb9") + ) + (fp_line + (start 5.06 7.71) + (end 5.06 -4.01) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "1d23b769-9b01-45cd-9482-90bb16896e8f") + ) + (fp_rect + (start -0.25 1.6) + (end 0.25 7.1) + (stroke + (width 0.12) + (type solid) + ) + (fill no) + (layer "F.SilkS") + (uuid "7e5b8c6c-899e-48f7-a1af-fe1a986ddf3c") + ) + (fp_rect + (start 2.25 1.6) + (end 2.75 7.1) + (stroke + (width 0.12) + (type solid) + ) + (fill no) + (layer "F.SilkS") + (uuid "fd060130-b754-4084-a97d-187b885eb6f0") + ) + (fp_rect + (start -2.95 -4.4) + (end 5.45 8.1) + (stroke + (width 0.05) + (type solid) + ) + (fill no) + (layer "F.CrtYd") + (uuid "f45dba46-5215-4fda-8041-28cd42495daa") + ) + (fp_line + (start -2.45 -3.9) + (end -1.25 -3.9) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "6cd2817b-bf0e-4025-8238-c4973c563e57") + ) + (fp_line + (start -2.45 7.6) + (end -2.45 -3.9) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "52996d08-3278-4768-95d3-a980efde62fd") + ) + (fp_line + (start -1.25 -3.9) + (end -1.25 0.6) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "b7197465-faa1-4c0f-9eae-9f0b5ea538b0") + ) + (fp_line + (start -1.25 0.6) + (end 1.25 0.6) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "dfdabb5a-f0f7-4198-b957-7184e2c489e8") + ) + (fp_line + (start -0.625 0.6) + (end 0 -0.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "4578f25d-9aea-4888-be6f-86f2c476ea56") + ) + (fp_line + (start 0 -0.4) + (end 0.625 0.6) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "c65ecb02-2014-43a8-a3bb-79946722fa49") + ) + (fp_line + (start 1.25 7.6) + (end -2.45 7.6) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "cd0b411c-8104-45ef-be99-424face6b2d9") + ) + (fp_line + (start 1.25 7.6) + (end 4.95 7.6) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "ff7355ca-1c3f-4a1e-853c-2fee1d1febae") + ) + (fp_line + (start 3.75 -3.9) + (end 3.75 0.6) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "220712a1-b261-420e-ac7e-e32f2928f48a") + ) + (fp_line + (start 3.75 0.6) + (end 1.25 0.6) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "2317eb98-1329-4fa8-963b-f7a7d1c14dbe") + ) + (fp_line + (start 4.95 -3.9) + (end 3.75 -3.9) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "a5b0c282-eb12-43d6-9e27-e1beb3fcdaa4") + ) + (fp_line + (start 4.95 7.6) + (end 4.95 -3.9) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "3cf5c721-c2c8-4c31-b0c5-67c57a85fe06") + ) + (fp_text user "${REFERENCE}" + (at 1.25 1.85 0) + (layer "F.Fab") + (uuid "fd86680c-2bc3-4e34-a544-814bab57f592") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (pad "1" thru_hole roundrect + (at 0 0) + (size 1.7 2) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (roundrect_rratio 0.147059) + (net 69 "Net-(D1-A)") + (pinfunction "Pin_1") + (pintype "passive") + (uuid "a558fa72-1dfc-47b3-801f-ae884c8bedb8") + ) + (pad "2" thru_hole oval + (at 2.5 0) + (size 1.7 2) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 2 "5V") + (pinfunction "Pin_2") + (pintype "passive") + (uuid "c31c59ff-5840-4856-b15a-4b514e881300") + ) + (embedded_fonts no) + (model "${KICAD9_3DMODEL_DIR}/Connector_JST.3dshapes/JST_XH_S2B-XH-A-1_1x02_P2.50mm_Horizontal.step" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "TerminalBlock:TerminalBlock_MaiXu_MX126-5.0-03P_1x03_P5.00mm" + (layer "F.Cu") + (uuid "ec5b0897-f805-4f22-9d98-7bb236fc6bec") + (at 123.06 135.62) + (descr "terminal block MaiXu MX126-5.0-03P, 3 pins, pitch 5mm, size 15.5x7.8mm, drill diameter 1.3mm, pad diameter 2.8mm, https://www.lcsc.com/datasheet/lcsc_datasheet_2309150913_MAX-MX126-5-0-03P-GN01-Cu-S-A_C5188435.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_MaiXu") + (tags "THT terminal block MaiXu MX126-5.0-03P pitch 5mm size 15.5x7.8mm drill 1.3mm pad 2.8mm") + (property "Reference" "J7" + (at -3.86 -1.62 90) + (layer "F.SilkS") + (uuid "30007ad8-2721-45ef-8b48-fc676f254b17") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "Conn_01x03_Socket" + (at 4.75 4.92 0) + (layer "F.Fab") + (uuid "e7ffa731-a968-41a7-9eca-9221dcb306c4") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "~" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "fe821f22-db80-4a3e-b882-91425db3af80") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "Generic connector, single row, 01x03, script generated" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "357aacbf-1d5b-4dbe-be6a-025a7647c58a") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "Connector*:*_1x??_*") + (path "/35424935-2dd3-44cd-aee3-5d3a6c2ab593") + (sheetname "/") + (sheetfile "SmartFuseBox.kicad_sch") + (attr through_hole) + (fp_line + (start -3.12 -4.12) + (end 12.62 -4.12) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "a70bf716-86a5-4c2b-95bc-d12e91c32d53") + ) + (fp_line + (start -3.12 -0.5) + (end -1.88 -0.5) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "35113ad3-39f6-42a0-954c-98ed39757682") + ) + (fp_line + (start -3.12 0.5) + (end -1.88 0.5) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "da19aa6a-766b-4b31-adfd-97a1eed337d6") + ) + (fp_line + (start -3.12 1.8) + (end -1.88 1.8) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "9fccb41e-501c-48a7-babf-d3b8cd970b64") + ) + (fp_line + (start -3.12 3.92) + (end -3.12 -4.12) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "bcbd7cd9-63df-4894-b1d2-8494b1b3903e") + ) + (fp_line + (start -0.3 3.92) + (end -3.12 3.92) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "826740c8-516a-4101-a6dd-b3f0b0c24dc6") + ) + (fp_line + (start 1.88 -0.5) + (end 3.188 -0.5) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "a09f37c7-cbc5-4956-996a-20bdb0b148f9") + ) + (fp_line + (start 1.88 0.5) + (end 3.188 0.5) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "a344bd5c-c2e5-4540-ba81-57093511641c") + ) + (fp_line + (start 1.88 1.8) + (end 4.457 1.8) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "addd9f26-cb71-4517-8019-1c251354c2c4") + ) + (fp_line + (start 5.543 1.8) + (end 9.457 1.8) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "bc7e5260-242a-47bd-8949-69d351806992") + ) + (fp_line + (start 6.812 -0.5) + (end 8.188 -0.5) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "cdbe8748-2f4c-469e-abfa-2ae405c06fcf") + ) + (fp_line + (start 6.812 0.5) + (end 8.188 0.5) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "550c2715-07e8-41ad-8680-5176480f805a") + ) + (fp_line + (start 10.543 1.8) + (end 12.62 1.8) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "b1167632-2b11-4f40-9782-b63786cec6dd") + ) + (fp_line + (start 11.812 -0.5) + (end 12.62 -0.5) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "4ae032c6-d0e4-429f-990c-bece0faaface") + ) + (fp_line + (start 11.812 0.5) + (end 12.62 0.5) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "f688bd16-122e-44fe-a912-edda85c2efed") + ) + (fp_line + (start 12.62 -4.12) + (end 12.62 3.92) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "51201ca5-0829-4af9-819e-615620b57bc6") + ) + (fp_line + (start 12.62 3.92) + (end 0.3 3.92) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "ed37f03b-2a63-4885-9a62-98befd99a6f6") + ) + (fp_poly + (pts + (xy 0 3.92) (xy 0.44 4.53) (xy -0.44 4.53) + ) + (stroke + (width 0.12) + (type solid) + ) + (fill yes) + (layer "F.SilkS") + (uuid "4e9d500e-8a8b-4c34-8ffc-6da826e5e484") + ) + (fp_rect + (start -3.5 -4.5) + (end 13 4.31) + (stroke + (width 0.05) + (type solid) + ) + (fill no) + (layer "F.CrtYd") + (uuid "5eb7d9a3-f9fe-4732-8dc1-b62886123993") + ) + (fp_line + (start -3 -4) + (end 12.5 -4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "82ab3559-c7eb-4c2a-8059-73bd8d543acc") + ) + (fp_line + (start -3 -0.5) + (end 12.5 -0.5) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "5a13aa06-e950-40c4-a637-67be9ac5d1b0") + ) + (fp_line + (start -3 0.5) + (end 12.5 0.5) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "f659ec06-d071-4aa6-a305-4f1c10b8c921") + ) + (fp_line + (start -3 1.8) + (end 12.5 1.8) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "84d42b05-426f-4b48-89d3-a77d4f62b697") + ) + (fp_line + (start -3 1.85) + (end -3 -4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "68118b08-0f80-40c4-a27f-9faa9b4394fa") + ) + (fp_line + (start -1.05 3.8) + (end -3 1.85) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "f0a3ef45-186c-43e2-9cce-186a6cdae360") + ) + (fp_line + (start 1.018 -1.213) + (end -1.213 1.018) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "3b2dcb73-5f82-49a5-aadf-cf8177421049") + ) + (fp_line + (start 1.213 -1.018) + (end -1.018 1.213) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "99710d17-5bd4-4247-bbe7-68e97af32b6b") + ) + (fp_line + (start 6.018 -1.213) + (end 3.787 1.018) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "782c5cf9-7971-49bc-a5b2-74b08e074a4f") + ) + (fp_line + (start 6.213 -1.018) + (end 3.982 1.213) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "c7f5e020-19e0-4c45-ac4a-f33945fc3ebd") + ) + (fp_line + (start 11.018 -1.213) + (end 8.787 1.018) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "9c5b091c-f0d8-4141-89f0-ece2e6b8513f") + ) + (fp_line + (start 11.213 -1.018) + (end 8.982 1.213) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "8801a28c-b8fb-49bb-b4a3-3c51354a959b") + ) + (fp_line + (start 12.5 -4) + (end 12.5 3.8) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "95dda4a4-18bc-42a1-9dfd-ed4df4ca8848") + ) + (fp_line + (start 12.5 3.8) + (end -1.05 3.8) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "e9ac9896-6b94-4a17-8d29-a5da9dbbd72c") + ) + (fp_circle + (center 0 0) + (end 1.6 0) + (stroke + (width 0.1) + (type solid) + ) + (fill no) + (layer "F.Fab") + (uuid "2e946035-75aa-45fd-9d5f-adbb3c848cae") + ) + (fp_circle + (center 5 0) + (end 6.6 0) + (stroke + (width 0.1) + (type solid) + ) + (fill no) + (layer "F.Fab") + (uuid "c60d999f-6fd2-48ef-87f8-b4db01182f1a") + ) + (fp_circle + (center 10 0) + (end 11.6 0) + (stroke + (width 0.1) + (type solid) + ) + (fill no) + (layer "F.Fab") + (uuid "4e6eff58-8223-4895-9918-15a0de8997a0") + ) + (fp_text user "${REFERENCE}" + (at 4.75 2.65 0) + (layer "F.Fab") + (uuid "1ffefb7b-2cd5-4855-9ac5-34008e192394") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (pad "1" thru_hole roundrect + (at 0 0) + (size 2.8 2.8) + (drill 1.3) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (roundrect_rratio 0.089286) + (net 22 "NO_5") + (pinfunction "Pin_1") + (pintype "passive") + (uuid "0de711b9-1d28-4bf7-a184-a8e1776a1093") + ) + (pad "2" thru_hole circle + (at 5 0) + (size 2.8 2.8) + (drill 1.3) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 24 "COM_5") + (pinfunction "Pin_2") + (pintype "passive") + (uuid "c3a2a51e-4b0e-49cf-a391-41fdc4438756") + ) + (pad "3" thru_hole circle + (at 10 0) + (size 2.8 2.8) + (drill 1.3) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 23 "NC_5") + (pinfunction "Pin_3") + (pintype "passive") + (uuid "244f31e8-56cc-4b9e-b445-b82ee4a26a04") + ) + (embedded_fonts no) + (model "${KICAD9_3DMODEL_DIR}/TerminalBlock_Phoenix.3dshapes/TerminalBlock_Phoenix_MKDS-1,5-3_1x03_P5.00mm_Horizontal.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "TerminalBlock:TerminalBlock_MaiXu_MX126-5.0-02P_1x02_P5.00mm" + (placed yes) + (layer "F.Cu") + (uuid "f3dd13b1-5bb2-48a2-8a5b-39b83c6d3bde") + (at 197.91 76.61 -90) + (descr "terminal block MaiXu MX126-5.0-02P, 2 pins, pitch 5mm, size 10.5x7.8mm, drill diameter 1.3mm, pad diameter 2.8mm, https://www.lcsc.com/datasheet/lcsc_datasheet_2309150913_MAX-MX126-5-0-03P-GN01-Cu-S-A_C5188435.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_MaiXu") + (tags "THT terminal block MaiXu MX126-5.0-02P pitch 5mm size 10.5x7.8mm drill 1.3mm pad 2.8mm") + (property "Reference" "J3" + (at -4.21 -2.69 90) + (layer "F.SilkS") + (uuid "91500e7e-81a6-45de-b499-8e92cd982e20") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "Conn_01x02_Socket" + (at 2.25 4.92 90) + (layer "F.Fab") + (uuid "1b6daa29-0725-4aa9-a8ea-9dc744d6b7c8") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "~" + (at 0 0 90) + (layer "F.Fab") + (hide yes) + (uuid "035d0f1a-e742-4577-a1fb-1126f22a57dd") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "Generic connector, single row, 01x02, script generated" + (at 0 0 90) + (layer "F.Fab") + (hide yes) + (uuid "207898a9-d32e-4dda-8c82-e8090d5f4a78") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "Connector*:*_1x??_*") + (path "/19b65a85-2370-4bb1-8d8b-9562c3235b89") + (sheetname "/") + (sheetfile "SmartFuseBox.kicad_sch") + (attr through_hole) + (fp_line + (start -3.12 3.92) + (end -3.12 -4.12) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "b9bf61d4-5fcd-4515-aca6-5a2cada1f361") + ) + (fp_line + (start -0.3 3.92) + (end -3.12 3.92) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "a7752985-9f8b-45fb-a9f1-ba4a2cfb2d71") + ) + (fp_line + (start 7.62 3.92) + (end 0.3 3.92) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "b7ddabaa-0aec-404b-a7c7-659bb231d0ce") + ) + (fp_line + (start -3.12 1.8) + (end -1.88 1.8) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "019b682f-b054-4afd-b65e-7f144ce06750") + ) + (fp_line + (start 1.88 1.8) + (end 4.457 1.8) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "a6a5c3df-f1ef-4ff2-b8f2-78b3908bcfd2") + ) + (fp_line + (start 5.543 1.8) + (end 7.62 1.8) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "cc1e4db7-3f96-42cf-8f33-cc9946474505") + ) + (fp_line + (start -3.12 0.5) + (end -1.88 0.5) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "d0a8583c-a83e-4e68-8cff-837c000d3cc5") + ) + (fp_line + (start 1.88 0.5) + (end 3.188 0.5) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "625ad7ae-6889-493f-8dd6-caecc3de66e2") + ) + (fp_line + (start 6.812 0.5) + (end 7.62 0.5) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "31845abb-addf-46b8-a9a5-9c9cd01e0701") + ) + (fp_line + (start -3.12 -0.5) + (end -1.88 -0.5) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "0e8cc5ed-e33c-4abe-9160-136aaa92e15a") + ) + (fp_line + (start 1.88 -0.5) + (end 3.188 -0.5) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "4017380c-fcca-4366-bcc4-2d1ff8beb6df") + ) + (fp_line + (start 6.812 -0.5) + (end 7.62 -0.5) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "24915e16-1053-4e8c-a775-180503da0988") + ) + (fp_line + (start -3.12 -4.12) + (end 7.62 -4.12) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "163f3350-43a8-4095-a221-5785dd62a662") + ) + (fp_line + (start 7.62 -4.12) + (end 7.62 3.92) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "cf207667-e946-4ba5-853c-ce0da88047ce") + ) + (fp_poly + (pts + (xy 0 3.92) (xy 0.44 4.53) (xy -0.44 4.53) + ) + (stroke + (width 0.12) + (type solid) + ) + (fill yes) + (layer "F.SilkS") + (uuid "8bc5e366-7272-4911-a0e4-b1bcb32cd306") + ) + (fp_rect + (start -3.5 -4.5) + (end 8 4.31) + (stroke + (width 0.05) + (type solid) + ) + (fill no) + (layer "F.CrtYd") + (uuid "2ff8ee9a-902a-488e-a3eb-4da5df676a68") + ) + (fp_line + (start -1.05 3.8) + (end -3 1.85) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "59d19e08-32ab-4fc6-897c-d07180300296") + ) + (fp_line + (start 7.5 3.8) + (end -1.05 3.8) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "de6033a0-12eb-4033-b3ad-f5c3463cd613") + ) + (fp_line + (start -3 1.85) + (end -3 -4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "5f7ca372-68f1-4890-b535-284e69c9ab12") + ) + (fp_line + (start -3 1.8) + (end 7.5 1.8) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "1ff7edb6-cdf0-4109-ba24-98c1be6e2620") + ) + (fp_line + (start -3 0.5) + (end 7.5 0.5) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "0854253d-9154-4220-986c-4c793b6f6dcf") + ) + (fp_line + (start -3 -0.5) + (end 7.5 -0.5) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "d35b43be-9bce-4687-86e7-68c6145b3211") + ) + (fp_line + (start 1.213 -1.018) + (end -1.018 1.213) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "75c9d1ce-1505-4cb5-abcf-a572ce3bf11e") + ) + (fp_line + (start 6.213 -1.018) + (end 3.982 1.213) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "c5e7675b-3301-48f0-afbb-affe88e14fc7") + ) + (fp_line + (start 1.018 -1.213) + (end -1.213 1.018) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "8e597d9d-d480-4f4b-a6c6-9d60c43037e3") + ) + (fp_line + (start 6.018 -1.213) + (end 3.787 1.018) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "95153148-6a6b-465d-8b6a-9ccccba5705a") + ) + (fp_line + (start -3 -4) + (end 7.5 -4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "c7149578-eb4b-4d59-b51e-fa9ad932c1c0") + ) + (fp_line + (start 7.5 -4) + (end 7.5 3.8) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "1d5de05e-eca3-4546-bd7d-f455b04bcc2c") + ) + (fp_circle + (center 0 0) + (end 1.6 0) + (stroke + (width 0.1) + (type solid) + ) + (fill no) + (layer "F.Fab") + (uuid "130a2bcc-0110-4cbd-bda9-b9bf821355b2") + ) + (fp_circle + (center 5 0) + (end 6.6 0) + (stroke + (width 0.1) + (type solid) + ) + (fill no) + (layer "F.Fab") + (uuid "21618c79-7868-4586-a7a6-4bca33949d60") + ) + (fp_text user "${REFERENCE}" + (at 2.25 2.65 90) + (layer "F.Fab") + (uuid "0dfaf132-1a1a-45a2-aa97-20fbc1629cb5") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (pad "1" thru_hole roundrect + (at 0 0 270) + (size 2.8 2.8) + (drill 1.3) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (roundrect_rratio 0.089286) + (net 11 "/CANH") + (pinfunction "Pin_1") + (pintype "passive") + (uuid "3c18585f-1d85-487c-b28a-0a796587b59d") + ) + (pad "2" thru_hole circle + (at 5 0 270) + (size 2.8 2.8) + (drill 1.3) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 12 "/CANL") + (pinfunction "Pin_2") + (pintype "passive") + (uuid "519ec935-d610-4998-832a-c32d60cd0b37") + ) + (embedded_fonts no) + (model "${KICAD9_3DMODEL_DIR}/TerminalBlock.3dshapes/TerminalBlock_MaiXu_MX126-5.0-02P_1x02_P5.00mm.step" + (hide yes) + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz -0 -0 -0) + ) + ) + (model "${KICAD9_3DMODEL_DIR}/TerminalBlock_Phoenix.3dshapes/TerminalBlock_Phoenix_MKDS-1,5-2-5.08_1x02_P5.08mm_Horizontal.step" + (offset + (xyz 5 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz -0 -0 -180) + ) + ) + ) + (footprint "Capacitor_SMD:CP_Elec_10x10.5" + (layer "F.Cu") + (uuid "f4730076-2861-414c-8d58-b19526a10e4e") + (at 70.35 98.55 180) + (descr "SMD capacitor, aluminum electrolytic, Vishay 1010, 10.0x10.5mm, http://www.vishay.com/docs/28395/150crz.pdf") + (tags "capacitor electrolytic") + (property "Reference" "C4" + (at 0 -6.3 0) + (layer "F.SilkS") + (uuid "2ba2fea9-ae0d-41e8-973b-c1ea9c08ee32") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "470uf" + (at 0 6.3 0) + (layer "F.Fab") + (uuid "34f424d8-709f-485e-bb84-49d85f2ef1cc") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "~" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "8763a7fc-caa3-488a-a87e-b4dfc2797914") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "Polarized capacitor" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "9f1fe617-3e25-48e8-82ed-591e97ef61a3") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Link" "https://robu.in/product/efft6r3ada681m0677-follon-680uf-6-3v-%C2%B120-smdd6-3xl7-7mm-aluminum-electrolytic-capacitors-smd-rohs/" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "2665a334-9c5b-4c04-a6fc-686540d3e4c8") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "CP_*") + (path "/7a901010-01b6-4a27-b4d1-3731c85482ac") + (sheetname "/") + (sheetfile "SmartFuseBox.kicad_sch") + (attr smd) + (fp_line + (start 5.36 5.36) + (end 5.36 1.51) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "4823bbf9-21d1-4984-8326-bb241e805953") + ) + (fp_line + (start 5.36 -5.36) + (end 5.36 -1.51) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "ffb6ccb9-7f57-49f3-b9cf-7001dbd13d6d") + ) + (fp_line + (start -4.295563 5.36) + (end 5.36 5.36) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "7d1e9071-6f0b-4507-b443-61d380de0d85") + ) + (fp_line + (start -4.295563 -5.36) + (end 5.36 -5.36) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "22f9d511-53fa-4b5a-8aaa-fa94a9f300f5") + ) + (fp_line + (start -5.36 4.295563) + (end -4.295563 5.36) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "ad424bd3-fc72-4838-b2b3-b7899da75ff1") + ) + (fp_line + (start -5.36 4.295563) + (end -5.36 1.51) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "ed609823-70a5-4ca8-bfbc-48db51094321") + ) + (fp_line + (start -5.36 -4.295563) + (end -4.295563 -5.36) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "37bda6aa-85c3-4768-b7a1-56a00fb7f135") + ) + (fp_line + (start -5.36 -4.295563) + (end -5.36 -1.51) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "6ff60288-a589-46c9-9ebe-3258998a588a") + ) + (fp_line + (start -6.225 -3.385) + (end -6.225 -2.135) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "42782ddf-280e-4866-8bce-fc3b287ee463") + ) + (fp_line + (start -6.85 -2.76) + (end -5.6 -2.76) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "04d7ecb6-f0d6-4f18-aab1-11af4f3dc4e8") + ) + (fp_line + (start 6.65 1.5) + (end 5.5 1.5) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "8b3a6176-04e6-4d1d-b8b8-a6780e1f4423") + ) + (fp_line + (start 6.65 -1.5) + (end 6.65 1.5) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "b4f30780-cb4d-48d2-94b5-3618de8304a0") + ) + (fp_line + (start 5.5 1.5) + (end 5.5 5.5) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "ddf9a55e-b484-42b4-bdcd-cee0ea2ae6df") + ) + (fp_line + (start 5.5 -1.5) + (end 6.65 -1.5) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "f3259ad9-3714-4d27-91e9-9ada1371e280") + ) + (fp_line + (start 5.5 -5.5) + (end 5.5 -1.5) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "1a2ed2bb-26ba-4475-9dda-a6f022b0a53e") + ) + (fp_line + (start -4.35 5.5) + (end 5.5 5.5) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "2f2c9c80-538c-4bfc-a40c-8ab55a63bf65") + ) + (fp_line + (start -4.35 -5.5) + (end 5.5 -5.5) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "c4e85524-bfff-4348-aa4d-0942071b80c8") + ) + (fp_line + (start -5.5 4.35) + (end -4.35 5.5) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "425ed3eb-c496-422e-9075-7d4ef0697e2f") + ) + (fp_line + (start -5.5 1.5) + (end -5.5 4.35) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "dc8d8fab-0125-4316-a6ff-6899fb33f226") + ) + (fp_line + (start -5.5 -1.5) + (end -6.65 -1.5) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "e40a5c40-bcfe-4ad5-a397-4e7798d31d14") + ) + (fp_line + (start -5.5 -4.35) + (end -4.35 -5.5) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "067bf004-ddea-4ad9-bce9-19dbe2d001ca") + ) + (fp_line + (start -5.5 -4.35) + (end -5.5 -1.5) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "8bbee6a7-f371-4d54-a34c-23de375b8c3d") + ) + (fp_line + (start -6.65 1.5) + (end -5.5 1.5) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "e5d42cdc-80e2-4851-af89-66cc003a67a6") + ) + (fp_line + (start -6.65 -1.5) + (end -6.65 1.5) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "41fb9e2b-cf12-467c-b120-04525c17c3ce") + ) + (fp_line + (start 5.25 -5.25) + (end 5.25 5.25) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "f2f28533-a23c-4e3b-8e7a-5079cf37302e") + ) + (fp_line + (start -4.058325 -2.2) + (end -4.058325 -1.2) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "644197f0-3e9b-4868-9517-ebf52df4671f") + ) + (fp_line + (start -4.25 5.25) + (end 5.25 5.25) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "8e8d3a66-5ad2-4f7c-98c1-88854ddb2bd2") + ) + (fp_line + (start -4.25 -5.25) + (end 5.25 -5.25) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "e50bb99f-a9f4-4c5f-a492-f7e84f573396") + ) + (fp_line + (start -4.558325 -1.7) + (end -3.558325 -1.7) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "7a1e3281-dcf8-49bd-8cf6-9dc2819b846d") + ) + (fp_line + (start -5.25 4.25) + (end -4.25 5.25) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "b452c253-bac4-4ead-b79c-c9b60829fa37") + ) + (fp_line + (start -5.25 -4.25) + (end -4.25 -5.25) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "19f2a9aa-ce8d-4c90-84e0-c4576550675b") + ) + (fp_line + (start -5.25 -4.25) + (end -5.25 4.25) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "1c0cb37f-9f2c-484c-8d83-ec2014e70ad5") + ) + (fp_circle + (center 0 0) + (end 5 0) + (stroke + (width 0.1) + (type solid) + ) + (fill no) + (layer "F.Fab") + (uuid "6023404d-924a-4596-aa6f-ba2f547712fb") + ) + (fp_text user "${REFERENCE}" + (at 0 0 0) + (layer "F.Fab") + (uuid "e84c5fd8-4c7f-47a6-9eb0-1acd7cdfe119") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (pad "1" smd roundrect + (at -4.2 0 180) + (size 4.4 2.5) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.1) + (net 81 "/12V_DC-Regulated") + (pintype "passive") + (uuid "7136e946-6fe2-4898-ab58-6367f4e0638c") + ) + (pad "2" smd roundrect + (at 4.2 0 180) + (size 4.4 2.5) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.1) + (net 1 "GND") + (pintype "passive") + (uuid "318d1cf0-6235-4e86-9b25-5a82e370fe34") + ) + (embedded_fonts no) + (model "${KICAD9_3DMODEL_DIR}/Capacitor_SMD.3dshapes/CP_Elec_10x10.5.step" + (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" + (placed yes) + (layer "F.Cu") + (uuid "f52cdff6-bb8f-43ff-94f2-f1e2446f94ed") + (at 132.4225 107.02 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 "Reference" "C20" + (at 0 -1.68 0) + (layer "F.SilkS") + (uuid "aa28c364-4a90-46fe-b479-0173f7f3924b") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "10uf" + (at 0 1.68 0) + (layer "F.Fab") + (uuid "514cf279-b10c-4d99-afb6-62623aebcfcd") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "~" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "17886e75-6405-4908-8c0a-3eb490a83100") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "Unpolarized capacitor" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "d3453105-126f-44c3-a9ab-732a3948fb53") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Link" "https://robu.in/product/0402x104k100nt-fh-smd-multilayer-ceramic-capacitor-0-1-%C2%B5f100nf-10-v-0402-1005-metric-%C2%B1-10-x5r/" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "d59393a6-3efd-4f92-b367-c71433b7e532") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "C_*") + (path "/d3dd2247-1da2-4e09-87b2-3873a599d5f5") + (sheetname "/") + (sheetfile "SmartFuseBox.kicad_sch") + (attr smd) + (fp_line + (start -0.261252 0.735) + (end 0.261252 0.735) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "2b7ac159-73c5-4dca-83a2-53b70cdb8949") + ) + (fp_line + (start -0.261252 -0.735) + (end 0.261252 -0.735) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "8f67107e-5dac-408b-849a-63cc2b76f023") + ) + (fp_rect + (start -1.88 -0.98) + (end 1.88 0.98) + (stroke + (width 0.05) + (type solid) + ) + (fill no) + (layer "F.CrtYd") + (uuid "93076647-3099-42b2-b119-5e3e6907311f") + ) + (fp_rect + (start -1 -0.625) + (end 1 0.625) + (stroke + (width 0.1) + (type solid) + ) + (fill no) + (layer "F.Fab") + (uuid "ce105a08-aaee-458a-b152-61e1b96fc946") + ) + (fp_text user "${REFERENCE}" + (at 0 0 0) + (layer "F.Fab") + (uuid "b5d54a2e-93a6-41d0-bfc7-481f5c60c709") + (effects + (font + (size 0.5 0.5) + (thickness 0.08) + ) + ) + ) + (pad "1" smd roundrect + (at -1.0375 0 180) + (size 1.175 1.45) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.212766) + (net 81 "/12V_DC-Regulated") + (pintype "passive") + (uuid "6aab06e2-15fa-48d7-88f9-767212d65e0c") + ) + (pad "2" smd roundrect + (at 1.0375 0 180) + (size 1.175 1.45) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.212766) + (net 1 "GND") + (pintype "passive") + (uuid "6a5bf140-3298-4f6c-984f-c3547dba17fc") + ) + (embedded_fonts no) + (model "${KICAD9_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.step" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Semiconductors:FUSE_BK-6013" + (layer "F.Cu") + (uuid "fbabc351-4c1f-47dc-bdb8-2d14ca3bcd31") + (at 198.66 121.725 -90) + (property "Reference" "XF1" + (at 8.895 0.55 0) + (layer "F.SilkS") + (uuid "632fea81-f1bd-48b8-aebe-c6e647762782") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "BK-6013" + (at 0.32 3.635 90) + (layer "F.Fab") + (uuid "e2d6cea2-fe8c-4150-b6c9-6d8c39973a66") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 90) + (layer "F.Fab") + (hide yes) + (uuid "4d21f32b-3023-427b-8253-0091cfa68de1") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "" + (at 0 0 90) + (layer "F.Fab") + (hide yes) + (uuid "e7afc39c-78b6-4f35-a742-76eb7373cc0f") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "MF" "MPD (Memory Protection Devices)" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "4dde0963-ce5b-43dc-8c09-454de1686d50") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "MAXIMUM_PACKAGE_HEIGHT" "8.9mm" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "5b6eaf94-0e6e-486b-81fd-8fd305936e4e") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Package" "Non-Standard MPD" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "46991ce0-3482-414b-ab9d-871016a0cf20") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Price" "None" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "f5abfedd-8674-489b-b441-319b1e173c80") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Check_prices" "https://www.snapeda.com/parts/BK-6013/MPD/view-part/?ref=eda" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "f1aa843b-c5a5-489d-9d5e-bc2eebf17218") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "STANDARD" "Manufacturer recommendations" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "91234849-1e7c-42e3-ba32-0af928b3f78a") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "PARTREV" "02/07/14" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "e799b0b5-443e-42ea-b9c6-95c5d4e15166") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "SnapEDA_Link" "https://www.snapeda.com/parts/BK-6013/MPD/view-part/?ref=snap" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "85b0de1a-4edb-4e96-b3a9-6090f274d7c9") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "MP" "BK-6013" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "8f43dd00-c6a1-42f6-af93-e6a5d0286e4a") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Description_1" "Fuse Holder 1 Circuit Blade Through Hole" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "f3a9af79-842a-468b-b388-e1cbb43e1ec2") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Availability" "In Stock" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "c822eed0-e0d6-4bd3-ad95-bbc28a8caf8f") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "MANUFACTURER" "MPD" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "d15b2ae9-3318-4b96-9984-4eaea50bcd0a") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (path "/c0155433-374e-4efa-81f7-cbb97e329c57") + (sheetname "/") + (sheetfile "SmartFuseBox.kicad_sch") + (attr through_hole) + (fp_line + (start -7.35 2.375) + (end 7.35 2.375) + (stroke + (width 0.127) + (type solid) + ) + (layer "F.SilkS") + (uuid "eb8c82d0-7fbe-45b1-8447-b85001f41e62") + ) + (fp_line + (start 7.35 2.375) + (end 7.35 1.56) + (stroke + (width 0.127) + (type solid) + ) + (layer "F.SilkS") + (uuid "bce11cb4-bf55-4237-8fca-e6e3b00ecd9e") + ) + (fp_line + (start -7.35 1.56) + (end -7.35 2.375) + (stroke + (width 0.127) + (type solid) + ) + (layer "F.SilkS") + (uuid "fa0ab2de-7946-4a66-8c20-2b0f54be93fa") + ) + (fp_line + (start 7.35 -1.56) + (end 7.35 -2.375) + (stroke + (width 0.127) + (type solid) + ) + (layer "F.SilkS") + (uuid "9cadbb02-64dd-424a-bb5c-9a268ce9e116") + ) + (fp_line + (start -7.35 -2.375) + (end -7.35 -1.56) + (stroke + (width 0.127) + (type solid) + ) + (layer "F.SilkS") + (uuid "63f5af8a-3b83-4bd0-bf83-f5c46e7a2c76") + ) + (fp_line + (start 7.35 -2.375) + (end -7.35 -2.375) + (stroke + (width 0.127) + (type solid) + ) + (layer "F.SilkS") + (uuid "5c7ba00e-6619-42f8-8f65-ac8f4ac18e82") + ) + (fp_circle + (center -7.9 -1.8) + (end -7.8 -1.8) + (stroke + (width 0.2) + (type solid) + ) + (fill no) + (layer "F.SilkS") + (uuid "86fb0de4-6d42-4dd4-b1f4-14ba99c4ac1f") + ) + (fp_line + (start -7.6 2.625) + (end -7.6 -2.625) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "eaf4d18e-200b-46c8-bcd2-286f4785b4e6") + ) + (fp_line + (start 7.6 2.625) + (end -7.6 2.625) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "d72376ec-1254-40d0-ac8c-e190094f505e") + ) + (fp_line + (start -7.6 -2.625) + (end 7.6 -2.625) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "455703dc-494d-4b9b-903e-8df9a92ee070") + ) + (fp_line + (start 7.6 -2.625) + (end 7.6 2.625) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "a11758be-095b-4771-bdcf-b263394e3571") + ) + (fp_line + (start -7.35 2.375) + (end 7.35 2.375) + (stroke + (width 0.127) + (type solid) + ) + (layer "F.Fab") + (uuid "274da293-7abe-46d2-a61a-2f30a88b8bba") + ) + (fp_line + (start 7.35 2.375) + (end 7.35 -2.375) + (stroke + (width 0.127) + (type solid) + ) + (layer "F.Fab") + (uuid "980df6ef-c5b5-40cc-8956-f5185881f7c0") + ) + (fp_line + (start -7.35 -2.375) + (end -7.35 2.375) + (stroke + (width 0.127) + (type solid) + ) + (layer "F.Fab") + (uuid "55833672-94e1-4730-8e15-cb25f47d4eb6") + ) + (fp_line + (start 7.35 -2.375) + (end -7.35 -2.375) + (stroke + (width 0.127) + (type solid) + ) + (layer "F.Fab") + (uuid "eaa0cb1a-f4ba-452b-a956-78fd6ef82ba1") + ) + (fp_circle + (center -7.9 -1.8) + (end -7.8 -1.8) + (stroke + (width 0.2) + (type solid) + ) + (fill no) + (layer "F.Fab") + (uuid "79316fc4-2d8c-4606-b394-171e624923fa") + ) + (pad "1" thru_hole rect + (at -5.895 0 270) + (size 2.48 2.48) + (drill 1.65) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 80 "Net-(J1-Pin_1)") + (pintype "passive") + (solder_mask_margin 0.102) + (uuid "e836bbcc-3866-470a-bdb9-7b971ae7b67c") + ) + (pad "2" thru_hole circle + (at -2.235 0 270) + (size 2.48 2.48) + (drill 1.65) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 80 "Net-(J1-Pin_1)") + (pintype "passive") + (solder_mask_margin 0.102) + (uuid "f7341a42-3d90-43af-9cf5-b301e10e97c6") + ) + (pad "3" thru_hole circle + (at 2.235 0 270) + (size 2.48 2.48) + (drill 1.65) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 4 "12V_INPUT") + (pintype "passive") + (solder_mask_margin 0.102) + (uuid "16dc1c98-ce17-484e-b9a5-86ff27ee3796") + ) + (pad "4" thru_hole circle + (at 5.895 0 270) + (size 2.48 2.48) + (drill 1.65) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 4 "12V_INPUT") + (pintype "passive") + (solder_mask_margin 0.102) + (uuid "f4e7b755-ba9a-47d4-9b81-0ae9dc8e2094") + ) + (embedded_fonts no) + (model "${KICAD_USER_SNAPEDA_DIR}/BK-6013/BK-6013.step" + (offset + (xyz 0 0 -2) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz -90 -0 -0) + ) + ) + ) + (gr_line + (start 15.439284 179.744) + (end 138.767859 179.744) + (stroke + (width 0.1) + (type default) + ) + (layer "Dwgs.User") + (uuid "1485917a-1066-41d2-9d0e-879d4ce7927e") + ) + (gr_line + (start 15.439284 150.896) + (end 138.767859 150.896) + (stroke + (width 0.1) + (type default) + ) + (layer "Dwgs.User") + (uuid "1a08e0e6-53e6-4eed-89d4-1a8cf05b7ef9") + ) + (gr_line + (start 15.439284 161.714) + (end 138.767859 161.714) + (stroke + (width 0.1) + (type default) + ) + (layer "Dwgs.User") + (uuid "204c7b23-16f7-400d-b2e5-13baeeb7ebb7") + ) + (gr_line + (start 30.824998 146.588) + (end 30.824998 197.774) + (stroke + (width 0.1) + (type default) + ) + (layer "Dwgs.User") + (uuid "28a4bd0e-6bd7-42d5-a97c-18d1c9697d31") + ) + (gr_line + (start 72.396427 146.588) + (end 72.396427 197.774) + (stroke + (width 0.1) + (type default) + ) + (layer "Dwgs.User") + (uuid "2c4be950-8575-4309-870f-448177508db8") + ) + (gr_line + (start 15.439284 154.502) + (end 138.767859 154.502) + (stroke + (width 0.1) + (type default) + ) + (layer "Dwgs.User") + (uuid "304cd513-577b-4552-a5ef-fa131a5f607d") + ) + (gr_line + (start 55.896426 146.588) + (end 55.896426 197.774) + (stroke + (width 0.1) + (type default) + ) + (layer "Dwgs.User") + (uuid "3a3ef275-0f6b-4f7c-94ce-b183826490db") + ) + (gr_line + (start 15.439284 190.562) + (end 138.767859 190.562) + (stroke + (width 0.1) + (type default) + ) + (layer "Dwgs.User") + (uuid "408f51fb-6c74-4582-84ea-942b5bdd11c2") + ) + (gr_line + (start 15.439284 176.138) + (end 138.767859 176.138) + (stroke + (width 0.1) + (type default) + ) + (layer "Dwgs.User") + (uuid "54fc6c4a-8e1b-411d-a8be-5a3a01dfb77e") + ) + (gr_line + (start 15.439284 158.108) + (end 138.767859 158.108) + (stroke + (width 0.1) + (type default) + ) + (layer "Dwgs.User") + (uuid "5e5939b6-9102-4702-893d-93f05182dd43") + ) + (gr_line + (start 138.767859 146.588) + (end 138.767859 197.774) + (stroke + (width 0.1) + (type default) + ) + (layer "Dwgs.User") + (uuid "6b26dfca-9948-4823-aec4-6584ee83a9ae") + ) + (gr_line + (start 15.439284 146.588) + (end 15.439284 197.774) + (stroke + (width 0.1) + (type default) + ) + (layer "Dwgs.User") + (uuid "77e32de8-48e0-4827-9809-f9d3d2c5c452") + ) + (gr_line + (start 15.439284 183.35) + (end 138.767859 183.35) + (stroke + (width 0.1) + (type default) + ) + (layer "Dwgs.User") + (uuid "84af7fb5-41e5-4e35-8cb1-3950ff29d048") + ) + (gr_line + (start 15.439284 172.532) + (end 138.767859 172.532) + (stroke + (width 0.1) + (type default) + ) + (layer "Dwgs.User") + (uuid "88177001-3a3f-4d41-be13-e8f848a57866") + ) + (gr_line + (start 15.439284 186.956) + (end 138.767859 186.956) + (stroke + (width 0.1) + (type default) + ) + (layer "Dwgs.User") + (uuid "898e5c87-95f9-4cb1-a05c-6aba925dd718") + ) + (gr_line + (start 121.810715 146.588) + (end 121.810715 197.774) + (stroke + (width 0.1) + (type default) + ) + (layer "Dwgs.User") + (uuid "8b9afba3-a0e9-4eb5-95ed-1540d1f24c8c") + ) + (gr_line + (start 15.439284 194.168) + (end 138.767859 194.168) + (stroke + (width 0.1) + (type default) + ) + (layer "Dwgs.User") + (uuid "a47c2945-1b33-4929-970a-4fc7b239bce7") + ) + (gr_line + (start 15.439284 168.926) + (end 138.767859 168.926) + (stroke + (width 0.1) + (type default) + ) + (layer "Dwgs.User") + (uuid "b22198c0-cf0b-4e5e-acad-3bcdd102b0ff") + ) + (gr_line + (start 15.439284 197.774) + (end 138.767859 197.774) + (stroke + (width 0.1) + (type default) + ) + (layer "Dwgs.User") + (uuid "b289fe5b-cd0d-4958-b5ed-71663a06e6e1") + ) + (gr_line + (start 108.925 146.588) + (end 108.925 197.774) + (stroke + (width 0.1) + (type default) + ) + (layer "Dwgs.User") + (uuid "bb630b73-56f7-49b5-ac1a-ede409f1c47c") + ) + (gr_line + (start 15.439284 165.32) + (end 138.767859 165.32) + (stroke + (width 0.1) + (type default) + ) + (layer "Dwgs.User") + (uuid "c2893b13-6b69-4b25-b98f-2263b1047cea") + ) + (gr_line + (start 92.424999 146.588) + (end 92.424999 197.774) + (stroke + (width 0.1) + (type default) + ) + (layer "Dwgs.User") + (uuid "c3abe9a3-5582-46b4-9d92-b9d0136eedbd") + ) + (gr_line + (start 15.439284 146.588) + (end 138.767859 146.588) + (stroke + (width 0.1) + (type default) + ) + (layer "Dwgs.User") + (uuid "f59e966a-c6dd-4e2b-88e3-ad18c8e084ed") + ) + (gr_arc + (start 59.95 139.76) + (mid 58.535786 139.174214) + (end 57.95 137.76) + (stroke + (width 0.05) + (type default) + ) + (layer "Edge.Cuts") + (uuid "14d6f539-55a9-45a3-ab8a-295b66ec5280") + ) + (gr_line + (start 57.95 137.76) + (end 57.95 58.96) + (stroke + (width 0.05) + (type default) + ) + (layer "Edge.Cuts") + (uuid "2279d210-a2ef-4d77-972e-4c00b28b6690") + ) + (gr_line + (start 200.18 139.76) + (end 59.95 139.76) + (stroke + (width 0.05) + (type default) + ) + (layer "Edge.Cuts") + (uuid "521728d1-cc5b-4e22-91cd-8cebdec46ff5") + ) + (gr_arc + (start 57.95 58.96) + (mid 58.535786 57.545786) + (end 59.95 56.96) + (stroke + (width 0.05) + (type default) + ) + (layer "Edge.Cuts") + (uuid "5d5e08c5-4f2c-4422-9f92-a4360dc31511") + ) + (gr_line + (start 202.18 58.96) + (end 202.18 137.76) + (stroke + (width 0.05) + (type default) + ) + (layer "Edge.Cuts") + (uuid "60aeba39-854f-41ab-8e37-8221a7c4999f") + ) + (gr_line + (start 59.95 56.96) + (end 200.18 56.96) + (stroke + (width 0.05) + (type default) + ) + (layer "Edge.Cuts") + (uuid "612c187a-db30-4d51-859a-9ea98d998b82") + ) + (gr_arc + (start 200.18 56.96) + (mid 201.594214 57.545786) + (end 202.18 58.96) + (stroke + (width 0.05) + (type default) + ) + (layer "Edge.Cuts") + (uuid "c41cf2e4-d158-49e8-af8d-d98bc15570d0") + ) + (gr_arc + (start 202.18 137.76) + (mid 201.594214 139.174214) + (end 200.18 139.76) + (stroke + (width 0.05) + (type default) + ) + (layer "Edge.Cuts") + (uuid "eb87b68d-6948-48bd-bac9-e732b9fd9ca5") + ) + (gr_text "COM\n" + (at 71.4 130.8 0) + (layer "F.SilkS" knockout) + (uuid "053a563d-a318-4388-a35c-17214c0415bd") + (effects + (font + (face "Arial Black") + (size 1 1) + (thickness 0.2) + (bold yes) + ) + (justify left bottom) + ) + (render_cache "COM\n" 0 + (polygon + (pts + (xy 72.169181 130.219672) (xy 72.440413 130.30192) (xy 72.417822 130.375829) (xy 72.388994 130.438645) + (xy 72.354317 130.491819) (xy 72.311839 130.538622) (xy 72.263419 130.576788) (xy 72.208443 130.606857) + (xy 72.149099 130.627379) (xy 72.076111 130.640773) (xy 71.986793 130.645631) (xy 71.878407 130.639676) + (xy 71.790649 130.623321) (xy 71.720019 130.59837) (xy 71.671732 130.571392) (xy 71.626024 130.535407) + (xy 71.582593 130.489423) (xy 71.541355 130.432102) (xy 71.509861 130.371682) (xy 71.486388 130.301831) + (xy 71.471509 130.221006) (xy 71.46625 130.127409) (xy 71.47231 130.026668) (xy 71.489434 129.940181) + (xy 71.516451 129.865846) (xy 71.552777 129.80189) (xy 71.598447 129.746939) (xy 71.653251 129.700774) + (xy 71.716589 129.6642) (xy 71.789735 129.637105) (xy 71.874358 129.61999) (xy 71.972444 129.613949) + (xy 72.068375 129.619466) (xy 72.148318 129.634834) (xy 72.214791 129.658679) (xy 72.269931 129.690214) + (xy 72.318847 129.731661) (xy 72.361951 129.783495) (xy 72.399379 129.847132) (xy 72.430826 129.924443) + (xy 72.15758 129.985198) (xy 72.141712 129.943008) (xy 72.127538 129.918276) (xy 72.098508 129.886704) + (xy 72.063974 129.863627) (xy 72.024699 129.849408) (xy 71.979954 129.844515) (xy 71.929347 129.850041) + (xy 71.88664 129.865842) (xy 71.850105 129.891757) (xy 71.818754 129.928961) (xy 71.797112 129.97304) + (xy 71.782133 130.036542) (xy 71.776378 130.125699) (xy 71.780597 130.212966) (xy 71.791646 130.276736) + (xy 71.80753 130.322124) (xy 71.826936 130.353456) (xy 71.854328 130.380069) (xy 71.886439 130.399094) + (xy 71.924209 130.410903) (xy 71.969024 130.415066) (xy 72.026093 130.408885) (xy 72.069776 130.391911) + (xy 72.103236 130.365057) (xy 72.129236 130.329277) (xy 72.151447 130.281719) + ) + ) + (polygon + (pts + (xy 73.170681 129.620067) (xy 73.258143 129.637367) (xy 73.33345 129.664684) (xy 73.398369 129.701439) + (xy 73.454265 129.747672) (xy 73.501383 129.80321) (xy 73.538602 129.867033) (xy 73.566095 129.94036) + (xy 73.583415 130.024801) (xy 73.589515 130.12228) (xy 73.585311 130.211106) (xy 73.573471 130.287459) + (xy 73.55495 130.352984) (xy 73.530408 130.409143) (xy 73.497481 130.462155) (xy 73.458303 130.508539) + (xy 73.412548 130.54884) (xy 73.359621 130.583349) (xy 73.303253 130.609502) (xy 73.238896 130.628985) + (xy 73.16535 130.641298) (xy 73.081245 130.645631) (xy 72.969146 130.638962) (xy 72.876771 130.620472) + (xy 72.800854 130.591898) (xy 72.748578 130.561504) (xy 72.701388 130.523436) (xy 72.658868 130.477132) + (xy 72.620847 130.421721) (xy 72.591818 130.362775) (xy 72.570249 130.295478) (xy 72.556637 130.218537) + (xy 72.551955 130.132416) (xy 72.861304 130.132416) (xy 72.865715 130.21016) (xy 72.877564 130.269946) + (xy 72.895204 130.315304) (xy 72.917663 130.349181) (xy 72.948047 130.377755) (xy 72.983056 130.398103) + (xy 73.023608 130.410664) (xy 73.071048 130.415066) (xy 73.120047 130.410666) (xy 73.161169 130.398221) + (xy 73.195936 130.378269) (xy 73.225409 130.350525) (xy 73.246624 130.317542) (xy 73.263769 130.270769) + (xy 73.275579 130.20615) (xy 73.280059 130.11886) (xy 73.2757 130.046867) (xy 73.263881 129.990515) + (xy 73.246059 129.946823) (xy 73.223028 129.91333) (xy 73.192391 129.885238) (xy 73.157076 129.865177) + (xy 73.116157 129.852772) (xy 73.0683 129.848422) (xy 73.022703 129.852762) (xy 72.983191 129.865228) + (xy 72.948552 129.88558) (xy 72.917969 129.914368) (xy 72.895419 129.948228) (xy 72.877683 129.993741) + (xy 72.865752 130.053929) (xy 72.861304 130.132416) (xy 72.551955 130.132416) (xy 72.551849 130.130462) + (xy 72.558008 130.031585) (xy 72.575501 129.945876) (xy 72.603271 129.871401) (xy 72.640863 129.806537) + (xy 72.688442 129.750054) (xy 72.745121 129.702631) (xy 72.810111 129.665168) (xy 72.884633 129.6375) + (xy 72.970283 129.62008) (xy 73.068972 129.613949) + ) + ) + (polygon + (pts + (xy 73.752913 129.629581) (xy 74.160066 129.629581) (xy 74.317175 130.237868) (xy 74.473613 129.629581) + (xy 74.879361 129.629581) (xy 74.879361 130.63) (xy 74.626631 130.63) (xy 74.626631 129.866252) + (xy 74.430565 130.63) (xy 74.201709 130.63) (xy 74.006376 129.866252) (xy 74.006376 130.63) (xy 73.752913 130.63) + ) + ) + ) + ) + (gr_text "CH-1" + (at 138.2 87.8 90) + (layer "F.SilkS" knockout) + (uuid "05d55c8d-d444-43a5-aa77-8a32c119be32") + (effects + (font + (face "Arial Black") + (size 1 1) + (thickness 0.2) + (bold yes) + ) + (justify left bottom) + ) + (render_cache "CH-1" 90 + (polygon + (pts + (xy 137.619672 87.030818) (xy 137.70192 86.759586) (xy 137.775829 86.782177) (xy 137.838645 86.811005) + (xy 137.891819 86.845682) (xy 137.938622 86.88816) (xy 137.976788 86.93658) (xy 138.006857 86.991556) + (xy 138.027379 87.0509) (xy 138.040773 87.123888) (xy 138.045631 87.213206) (xy 138.039676 87.321592) + (xy 138.023321 87.40935) (xy 137.99837 87.47998) (xy 137.971392 87.528267) (xy 137.935407 87.573975) + (xy 137.889423 87.617406) (xy 137.832102 87.658644) (xy 137.771682 87.690138) (xy 137.701831 87.713611) + (xy 137.621006 87.72849) (xy 137.527409 87.733749) (xy 137.426668 87.727689) (xy 137.340181 87.710565) + (xy 137.265846 87.683548) (xy 137.20189 87.647222) (xy 137.146939 87.601552) (xy 137.100774 87.546748) + (xy 137.0642 87.48341) (xy 137.037105 87.410264) (xy 137.01999 87.325641) (xy 137.013949 87.227555) + (xy 137.019466 87.131624) (xy 137.034834 87.051681) (xy 137.058679 86.985208) (xy 137.090214 86.930068) + (xy 137.131661 86.881152) (xy 137.183495 86.838048) (xy 137.247132 86.80062) (xy 137.324443 86.769173) + (xy 137.385198 87.042419) (xy 137.343008 87.058287) (xy 137.318276 87.072461) (xy 137.286704 87.101491) + (xy 137.263627 87.136025) (xy 137.249408 87.1753) (xy 137.244515 87.220045) (xy 137.250041 87.270652) + (xy 137.265842 87.313359) (xy 137.291757 87.349894) (xy 137.328961 87.381245) (xy 137.37304 87.402887) + (xy 137.436542 87.417866) (xy 137.525699 87.423621) (xy 137.612966 87.419402) (xy 137.676736 87.408353) + (xy 137.722124 87.392469) (xy 137.753456 87.373063) (xy 137.780069 87.345671) (xy 137.799094 87.31356) + (xy 137.810903 87.27579) (xy 137.815066 87.230975) (xy 137.808885 87.173906) (xy 137.791911 87.130223) + (xy 137.765057 87.096763) (xy 137.729277 87.070763) (xy 137.681719 87.048552) + ) + ) + (polygon + (pts + (xy 137.029581 86.607789) (xy 137.029581 86.298394) (xy 137.377383 86.298394) (xy 137.377383 85.96024) + (xy 137.029581 85.96024) (xy 137.029581 85.64938) (xy 138.03 85.64938) (xy 138.03 85.96024) (xy 137.623579 85.96024) + (xy 137.623579 86.298394) (xy 138.03 86.298394) (xy 138.03 86.607789) + ) + ) + (polygon + (pts + (xy 137.557145 85.515413) (xy 137.557145 85.111008) (xy 137.772079 85.111008) (xy 137.772079 85.515413) + ) + ) + (polygon + (pts + (xy 137.013949 84.392201) (xy 138.03 84.392201) (xy 138.03 84.67363) (xy 137.36572 84.67363) (xy 137.413376 84.742415) + (xy 137.44919 84.805826) (xy 137.479017 84.874229) (xy 137.510251 84.96605) (xy 137.283593 84.96605) + (xy 137.248473 84.872842) (xy 137.211482 84.800449) (xy 137.173135 84.745376) (xy 137.126931 84.696913) + (xy 137.074089 84.656032) (xy 137.013949 84.6224) + ) + ) + ) + ) + (gr_text "COM\n" + (at 89.8 130.8 0) + (layer "F.SilkS" knockout) + (uuid "07c67484-0cf5-492f-ad25-3969e45dcfb0") + (effects + (font + (face "Arial Black") + (size 1 1) + (thickness 0.2) + (bold yes) + ) + (justify left bottom) + ) + (render_cache "COM\n" 0 + (polygon + (pts + (xy 90.569181 130.219672) (xy 90.840413 130.30192) (xy 90.817822 130.375829) (xy 90.788994 130.438645) + (xy 90.754317 130.491819) (xy 90.711839 130.538622) (xy 90.663419 130.576788) (xy 90.608443 130.606857) + (xy 90.549099 130.627379) (xy 90.476111 130.640773) (xy 90.386793 130.645631) (xy 90.278407 130.639676) + (xy 90.190649 130.623321) (xy 90.120019 130.59837) (xy 90.071732 130.571392) (xy 90.026024 130.535407) + (xy 89.982593 130.489423) (xy 89.941355 130.432102) (xy 89.909861 130.371682) (xy 89.886388 130.301831) + (xy 89.871509 130.221006) (xy 89.86625 130.127409) (xy 89.87231 130.026668) (xy 89.889434 129.940181) + (xy 89.916451 129.865846) (xy 89.952777 129.80189) (xy 89.998447 129.746939) (xy 90.053251 129.700774) + (xy 90.116589 129.6642) (xy 90.189735 129.637105) (xy 90.274358 129.61999) (xy 90.372444 129.613949) + (xy 90.468375 129.619466) (xy 90.548318 129.634834) (xy 90.614791 129.658679) (xy 90.669931 129.690214) + (xy 90.718847 129.731661) (xy 90.761951 129.783495) (xy 90.799379 129.847132) (xy 90.830826 129.924443) + (xy 90.55758 129.985198) (xy 90.541712 129.943008) (xy 90.527538 129.918276) (xy 90.498508 129.886704) + (xy 90.463974 129.863627) (xy 90.424699 129.849408) (xy 90.379954 129.844515) (xy 90.329347 129.850041) + (xy 90.28664 129.865842) (xy 90.250105 129.891757) (xy 90.218754 129.928961) (xy 90.197112 129.97304) + (xy 90.182133 130.036542) (xy 90.176378 130.125699) (xy 90.180597 130.212966) (xy 90.191646 130.276736) + (xy 90.20753 130.322124) (xy 90.226936 130.353456) (xy 90.254328 130.380069) (xy 90.286439 130.399094) + (xy 90.324209 130.410903) (xy 90.369024 130.415066) (xy 90.426093 130.408885) (xy 90.469776 130.391911) + (xy 90.503236 130.365057) (xy 90.529236 130.329277) (xy 90.551447 130.281719) + ) + ) + (polygon + (pts + (xy 91.570681 129.620067) (xy 91.658143 129.637367) (xy 91.73345 129.664684) (xy 91.798369 129.701439) + (xy 91.854265 129.747672) (xy 91.901383 129.80321) (xy 91.938602 129.867033) (xy 91.966095 129.94036) + (xy 91.983415 130.024801) (xy 91.989515 130.12228) (xy 91.985311 130.211106) (xy 91.973471 130.287459) + (xy 91.95495 130.352984) (xy 91.930408 130.409143) (xy 91.897481 130.462155) (xy 91.858303 130.508539) + (xy 91.812548 130.54884) (xy 91.759621 130.583349) (xy 91.703253 130.609502) (xy 91.638896 130.628985) + (xy 91.56535 130.641298) (xy 91.481245 130.645631) (xy 91.369146 130.638962) (xy 91.276771 130.620472) + (xy 91.200854 130.591898) (xy 91.148578 130.561504) (xy 91.101388 130.523436) (xy 91.058868 130.477132) + (xy 91.020847 130.421721) (xy 90.991818 130.362775) (xy 90.970249 130.295478) (xy 90.956637 130.218537) + (xy 90.951955 130.132416) (xy 91.261304 130.132416) (xy 91.265715 130.21016) (xy 91.277564 130.269946) + (xy 91.295204 130.315304) (xy 91.317663 130.349181) (xy 91.348047 130.377755) (xy 91.383056 130.398103) + (xy 91.423608 130.410664) (xy 91.471048 130.415066) (xy 91.520047 130.410666) (xy 91.561169 130.398221) + (xy 91.595936 130.378269) (xy 91.625409 130.350525) (xy 91.646624 130.317542) (xy 91.663769 130.270769) + (xy 91.675579 130.20615) (xy 91.680059 130.11886) (xy 91.6757 130.046867) (xy 91.663881 129.990515) + (xy 91.646059 129.946823) (xy 91.623028 129.91333) (xy 91.592391 129.885238) (xy 91.557076 129.865177) + (xy 91.516157 129.852772) (xy 91.4683 129.848422) (xy 91.422703 129.852762) (xy 91.383191 129.865228) + (xy 91.348552 129.88558) (xy 91.317969 129.914368) (xy 91.295419 129.948228) (xy 91.277683 129.993741) + (xy 91.265752 130.053929) (xy 91.261304 130.132416) (xy 90.951955 130.132416) (xy 90.951849 130.130462) + (xy 90.958008 130.031585) (xy 90.975501 129.945876) (xy 91.003271 129.871401) (xy 91.040863 129.806537) + (xy 91.088442 129.750054) (xy 91.145121 129.702631) (xy 91.210111 129.665168) (xy 91.284633 129.6375) + (xy 91.370283 129.62008) (xy 91.468972 129.613949) + ) + ) + (polygon + (pts + (xy 92.152913 129.629581) (xy 92.560066 129.629581) (xy 92.717175 130.237868) (xy 92.873613 129.629581) + (xy 93.279361 129.629581) (xy 93.279361 130.63) (xy 93.026631 130.63) (xy 93.026631 129.866252) + (xy 92.830565 130.63) (xy 92.601709 130.63) (xy 92.406376 129.866252) (xy 92.406376 130.63) (xy 92.152913 130.63) + ) + ) + ) + ) + (gr_text "COM\n" + (at 126.6 130.8 0) + (layer "F.SilkS" knockout) + (uuid "0b9153e4-a5e3-4243-8635-3c8d86121922") + (effects + (font + (face "Arial Black") + (size 1 1) + (thickness 0.2) + (bold yes) + ) + (justify left bottom) + ) + (render_cache "COM\n" 0 + (polygon + (pts + (xy 127.369181 130.219672) (xy 127.640413 130.30192) (xy 127.617822 130.375829) (xy 127.588994 130.438645) + (xy 127.554317 130.491819) (xy 127.511839 130.538622) (xy 127.463419 130.576788) (xy 127.408443 130.606857) + (xy 127.349099 130.627379) (xy 127.276111 130.640773) (xy 127.186793 130.645631) (xy 127.078407 130.639676) + (xy 126.990649 130.623321) (xy 126.920019 130.59837) (xy 126.871732 130.571392) (xy 126.826024 130.535407) + (xy 126.782593 130.489423) (xy 126.741355 130.432102) (xy 126.709861 130.371682) (xy 126.686388 130.301831) + (xy 126.671509 130.221006) (xy 126.66625 130.127409) (xy 126.67231 130.026668) (xy 126.689434 129.940181) + (xy 126.716451 129.865846) (xy 126.752777 129.80189) (xy 126.798447 129.746939) (xy 126.853251 129.700774) + (xy 126.916589 129.6642) (xy 126.989735 129.637105) (xy 127.074358 129.61999) (xy 127.172444 129.613949) + (xy 127.268375 129.619466) (xy 127.348318 129.634834) (xy 127.414791 129.658679) (xy 127.469931 129.690214) + (xy 127.518847 129.731661) (xy 127.561951 129.783495) (xy 127.599379 129.847132) (xy 127.630826 129.924443) + (xy 127.35758 129.985198) (xy 127.341712 129.943008) (xy 127.327538 129.918276) (xy 127.298508 129.886704) + (xy 127.263974 129.863627) (xy 127.224699 129.849408) (xy 127.179954 129.844515) (xy 127.129347 129.850041) + (xy 127.08664 129.865842) (xy 127.050105 129.891757) (xy 127.018754 129.928961) (xy 126.997112 129.97304) + (xy 126.982133 130.036542) (xy 126.976378 130.125699) (xy 126.980597 130.212966) (xy 126.991646 130.276736) + (xy 127.00753 130.322124) (xy 127.026936 130.353456) (xy 127.054328 130.380069) (xy 127.086439 130.399094) + (xy 127.124209 130.410903) (xy 127.169024 130.415066) (xy 127.226093 130.408885) (xy 127.269776 130.391911) + (xy 127.303236 130.365057) (xy 127.329236 130.329277) (xy 127.351447 130.281719) + ) + ) + (polygon + (pts + (xy 128.370681 129.620067) (xy 128.458143 129.637367) (xy 128.53345 129.664684) (xy 128.598369 129.701439) + (xy 128.654265 129.747672) (xy 128.701383 129.80321) (xy 128.738602 129.867033) (xy 128.766095 129.94036) + (xy 128.783415 130.024801) (xy 128.789515 130.12228) (xy 128.785311 130.211106) (xy 128.773471 130.287459) + (xy 128.75495 130.352984) (xy 128.730408 130.409143) (xy 128.697481 130.462155) (xy 128.658303 130.508539) + (xy 128.612548 130.54884) (xy 128.559621 130.583349) (xy 128.503253 130.609502) (xy 128.438896 130.628985) + (xy 128.36535 130.641298) (xy 128.281245 130.645631) (xy 128.169146 130.638962) (xy 128.076771 130.620472) + (xy 128.000854 130.591898) (xy 127.948578 130.561504) (xy 127.901388 130.523436) (xy 127.858868 130.477132) + (xy 127.820847 130.421721) (xy 127.791818 130.362775) (xy 127.770249 130.295478) (xy 127.756637 130.218537) + (xy 127.751955 130.132416) (xy 128.061304 130.132416) (xy 128.065715 130.21016) (xy 128.077564 130.269946) + (xy 128.095204 130.315304) (xy 128.117663 130.349181) (xy 128.148047 130.377755) (xy 128.183056 130.398103) + (xy 128.223608 130.410664) (xy 128.271048 130.415066) (xy 128.320047 130.410666) (xy 128.361169 130.398221) + (xy 128.395936 130.378269) (xy 128.425409 130.350525) (xy 128.446624 130.317542) (xy 128.463769 130.270769) + (xy 128.475579 130.20615) (xy 128.480059 130.11886) (xy 128.4757 130.046867) (xy 128.463881 129.990515) + (xy 128.446059 129.946823) (xy 128.423028 129.91333) (xy 128.392391 129.885238) (xy 128.357076 129.865177) + (xy 128.316157 129.852772) (xy 128.2683 129.848422) (xy 128.222703 129.852762) (xy 128.183191 129.865228) + (xy 128.148552 129.88558) (xy 128.117969 129.914368) (xy 128.095419 129.948228) (xy 128.077683 129.993741) + (xy 128.065752 130.053929) (xy 128.061304 130.132416) (xy 127.751955 130.132416) (xy 127.751849 130.130462) + (xy 127.758008 130.031585) (xy 127.775501 129.945876) (xy 127.803271 129.871401) (xy 127.840863 129.806537) + (xy 127.888442 129.750054) (xy 127.945121 129.702631) (xy 128.010111 129.665168) (xy 128.084633 129.6375) + (xy 128.170283 129.62008) (xy 128.268972 129.613949) + ) + ) + (polygon + (pts + (xy 128.952913 129.629581) (xy 129.360066 129.629581) (xy 129.517175 130.237868) (xy 129.673613 129.629581) + (xy 130.079361 129.629581) (xy 130.079361 130.63) (xy 129.826631 130.63) (xy 129.826631 129.866252) + (xy 129.630565 130.63) (xy 129.401709 130.63) (xy 129.206376 129.866252) (xy 129.206376 130.63) + (xy 128.952913 130.63) + ) + ) + ) + ) + (gr_text "CH-4\n" + (at 82.2 87.6 90) + (layer "F.SilkS" knockout) + (uuid "0d540b59-f285-46d8-9999-a84f897bbb3c") + (effects + (font + (face "Arial Black") + (size 1 1) + (thickness 0.2) + (bold yes) + ) + (justify left bottom) + ) + (render_cache "CH-4\n" 90 + (polygon + (pts + (xy 81.619672 86.830818) (xy 81.70192 86.559586) (xy 81.775829 86.582177) (xy 81.838645 86.611005) + (xy 81.891819 86.645682) (xy 81.938622 86.68816) (xy 81.976788 86.73658) (xy 82.006857 86.791556) + (xy 82.027379 86.8509) (xy 82.040773 86.923888) (xy 82.045631 87.013206) (xy 82.039676 87.121592) + (xy 82.023321 87.20935) (xy 81.99837 87.27998) (xy 81.971392 87.328267) (xy 81.935407 87.373975) + (xy 81.889423 87.417406) (xy 81.832102 87.458644) (xy 81.771682 87.490138) (xy 81.701831 87.513611) + (xy 81.621006 87.52849) (xy 81.527409 87.533749) (xy 81.426668 87.527689) (xy 81.340181 87.510565) + (xy 81.265846 87.483548) (xy 81.20189 87.447222) (xy 81.146939 87.401552) (xy 81.100774 87.346748) + (xy 81.0642 87.28341) (xy 81.037105 87.210264) (xy 81.01999 87.125641) (xy 81.013949 87.027555) + (xy 81.019466 86.931624) (xy 81.034834 86.851681) (xy 81.058679 86.785208) (xy 81.090214 86.730068) + (xy 81.131661 86.681152) (xy 81.183495 86.638048) (xy 81.247132 86.60062) (xy 81.324443 86.569173) + (xy 81.385198 86.842419) (xy 81.343008 86.858287) (xy 81.318276 86.872461) (xy 81.286704 86.901491) + (xy 81.263627 86.936025) (xy 81.249408 86.9753) (xy 81.244515 87.020045) (xy 81.250041 87.070652) + (xy 81.265842 87.113359) (xy 81.291757 87.149894) (xy 81.328961 87.181245) (xy 81.37304 87.202887) + (xy 81.436542 87.217866) (xy 81.525699 87.223621) (xy 81.612966 87.219402) (xy 81.676736 87.208353) + (xy 81.722124 87.192469) (xy 81.753456 87.173063) (xy 81.780069 87.145671) (xy 81.799094 87.11356) + (xy 81.810903 87.07579) (xy 81.815066 87.030975) (xy 81.808885 86.973906) (xy 81.791911 86.930223) + (xy 81.765057 86.896763) (xy 81.729277 86.870763) (xy 81.681719 86.848552) + ) + ) + (polygon + (pts + (xy 81.029581 86.407789) (xy 81.029581 86.098394) (xy 81.377383 86.098394) (xy 81.377383 85.76024) + (xy 81.029581 85.76024) (xy 81.029581 85.44938) (xy 82.03 85.44938) (xy 82.03 85.76024) (xy 81.623579 85.76024) + (xy 81.623579 86.098394) (xy 82.03 86.098394) (xy 82.03 86.407789) + ) + ) + (polygon + (pts + (xy 81.557145 85.315413) (xy 81.557145 84.911008) (xy 81.772079 84.911008) (xy 81.772079 85.315413) + ) + ) + (polygon + (pts + (xy 81.842421 84.102015) (xy 82.03 84.102015) (xy 82.03 84.344548) (xy 81.842421 84.344548) (xy 81.842421 84.851413) + (xy 81.614359 84.851413) (xy 81.013949 84.344548) (xy 81.31046 84.344548) (xy 81.627487 84.612299) + (xy 81.627487 84.344548) (xy 81.31046 84.344548) (xy 81.013949 84.344548) (xy 81.013949 84.102015) + (xy 81.627487 84.102015) (xy 81.627487 83.976352) (xy 81.842421 83.976352) + ) + ) + ) + ) + (gr_text "NO" + (at 79.2 66 180) + (layer "F.SilkS" knockout) + (uuid "0db61987-300d-4212-8775-7f9112adbfa5") + (effects + (font + (face "Arial Black") + (size 1 1) + (thickness 0.2) + (bold yes) + ) + (justify left bottom) + ) + (render_cache "NO" 180 + (polygon + (pts + (xy 79.095464 67.170418) (xy 78.806524 67.170418) (xy 78.429413 66.617086) (xy 78.429413 67.170418) + (xy 78.137726 67.170418) (xy 78.137726 66.17) (xy 78.429413 66.17) (xy 78.804448 66.720218) (xy 78.804448 66.17) + (xy 79.095464 66.17) + ) + ) + (polygon + (pts + (xy 77.553672 66.161037) (xy 77.646047 66.179527) (xy 77.721964 66.208101) (xy 77.77424 66.238495) + (xy 77.82143 66.276563) (xy 77.86395 66.322867) (xy 77.901971 66.378278) (xy 77.931001 66.437224) + (xy 77.952569 66.504521) (xy 77.966182 66.581462) (xy 77.970969 66.669537) (xy 77.96481 66.768414) + (xy 77.947317 66.854123) (xy 77.919547 66.928598) (xy 77.881955 66.993462) (xy 77.834377 67.049945) + (xy 77.777698 67.097368) (xy 77.712707 67.134831) (xy 77.638186 67.162499) (xy 77.552535 67.179919) + (xy 77.453846 67.18605) (xy 77.352137 67.179932) (xy 77.264675 67.162632) (xy 77.189368 67.135315) + (xy 77.12445 67.09856) (xy 77.068553 67.052327) (xy 77.021435 66.996789) (xy 76.984216 66.932966) + (xy 76.956723 66.859639) (xy 76.939403 66.775198) (xy 76.933518 66.681139) (xy 77.242759 66.681139) + (xy 77.247119 66.753132) (xy 77.258937 66.809484) (xy 77.276759 66.853176) (xy 77.29979 66.886669) + (xy 77.330428 66.914761) (xy 77.365742 66.934822) (xy 77.406661 66.947227) (xy 77.454518 66.951577) + (xy 77.500115 66.947237) (xy 77.539627 66.934771) (xy 77.574266 66.914419) (xy 77.604849 66.885631) + (xy 77.6274 66.851771) (xy 77.645136 66.806258) (xy 77.657066 66.74607) (xy 77.661514 66.667583) + (xy 77.657103 66.589839) (xy 77.645254 66.530053) (xy 77.627615 66.484695) (xy 77.605155 66.450818) + (xy 77.574771 66.422244) (xy 77.539762 66.401896) (xy 77.49921 66.389335) (xy 77.45177 66.384933) + (xy 77.402771 66.389333) (xy 77.36165 66.401778) (xy 77.326882 66.42173) (xy 77.297409 66.449474) + (xy 77.276195 66.482457) (xy 77.259049 66.52923) (xy 77.247239 66.593849) (xy 77.242759 66.681139) + (xy 76.933518 66.681139) (xy 76.933304 66.677719) (xy 76.937508 66.588893) (xy 76.949347 66.51254) + (xy 76.967868 66.447015) (xy 76.992411 66.390856) (xy 77.025338 66.337844) (xy 77.064515 66.29146) + (xy 77.110271 66.251159) (xy 77.163197 66.21665) (xy 77.219565 66.190497) (xy 77.283922 66.171014) + (xy 77.357468 66.158701) (xy 77.441573 66.154368) + ) + ) + ) + ) + (gr_text "COM\n" + (at 111 66.2 180) + (layer "F.SilkS" knockout) + (uuid "12e0363c-4ca6-4622-b9ca-12e59ee8d062") + (effects + (font + (face "Arial Black") + (size 1 1) + (thickness 0.2) + (bold yes) + ) + (justify left bottom) + ) + (render_cache "COM\n" 180 + (polygon + (pts + (xy 110.230818 66.780327) (xy 109.959586 66.698079) (xy 109.982177 66.62417) (xy 110.011005 66.561354) + (xy 110.045682 66.50818) (xy 110.08816 66.461377) (xy 110.13658 66.423211) (xy 110.191556 66.393142) + (xy 110.2509 66.37262) (xy 110.323888 66.359226) (xy 110.413206 66.354368) (xy 110.521592 66.360323) + (xy 110.60935 66.376678) (xy 110.67998 66.401629) (xy 110.728267 66.428607) (xy 110.773975 66.464592) + (xy 110.817406 66.510576) (xy 110.858644 66.567897) (xy 110.890138 66.628317) (xy 110.913611 66.698168) + (xy 110.92849 66.778993) (xy 110.933749 66.87259) (xy 110.927689 66.973331) (xy 110.910565 67.059818) + (xy 110.883548 67.134153) (xy 110.847222 67.198109) (xy 110.801552 67.25306) (xy 110.746748 67.299225) + (xy 110.68341 67.335799) (xy 110.610264 67.362894) (xy 110.525641 67.380009) (xy 110.427555 67.38605) + (xy 110.331624 67.380533) (xy 110.251681 67.365165) (xy 110.185208 67.34132) (xy 110.130068 67.309785) + (xy 110.081152 67.268338) (xy 110.038048 67.216504) (xy 110.00062 67.152867) (xy 109.969173 67.075556) + (xy 110.242419 67.014801) (xy 110.258287 67.056991) (xy 110.272461 67.081723) (xy 110.301491 67.113295) + (xy 110.336025 67.136372) (xy 110.3753 67.150591) (xy 110.420045 67.155484) (xy 110.470652 67.149958) + (xy 110.513359 67.134157) (xy 110.549894 67.108242) (xy 110.581245 67.071038) (xy 110.602887 67.026959) + (xy 110.617866 66.963457) (xy 110.623621 66.8743) (xy 110.619402 66.787033) (xy 110.608353 66.723263) + (xy 110.592469 66.677875) (xy 110.573063 66.646543) (xy 110.545671 66.61993) (xy 110.51356 66.600905) + (xy 110.47579 66.589096) (xy 110.430975 66.584933) (xy 110.373906 66.591114) (xy 110.330223 66.608088) + (xy 110.296763 66.634942) (xy 110.270763 66.670722) (xy 110.248552 66.71828) + ) + ) + (polygon + (pts + (xy 109.430853 66.361037) (xy 109.523228 66.379527) (xy 109.599145 66.408101) (xy 109.651421 66.438495) + (xy 109.698611 66.476563) (xy 109.741131 66.522867) (xy 109.779152 66.578278) (xy 109.808181 66.637224) + (xy 109.82975 66.704521) (xy 109.843362 66.781462) (xy 109.84815 66.869537) (xy 109.841991 66.968414) + (xy 109.824498 67.054123) (xy 109.796728 67.128598) (xy 109.759136 67.193462) (xy 109.711557 67.249945) + (xy 109.654878 67.297368) (xy 109.589888 67.334831) (xy 109.515366 67.362499) (xy 109.429716 67.379919) + (xy 109.331027 67.38605) (xy 109.229318 67.379932) (xy 109.141856 67.362632) (xy 109.066549 67.335315) + (xy 109.00163 67.29856) (xy 108.945734 67.252327) (xy 108.898616 67.196789) (xy 108.861397 67.132966) + (xy 108.833904 67.059639) (xy 108.816584 66.975198) (xy 108.810698 66.881139) (xy 109.11994 66.881139) + (xy 109.124299 66.953132) (xy 109.136118 67.009484) (xy 109.15394 67.053176) (xy 109.176971 67.086669) + (xy 109.207608 67.114761) (xy 109.242923 67.134822) (xy 109.283842 67.147227) (xy 109.331699 67.151577) + (xy 109.377296 67.147237) (xy 109.416808 67.134771) (xy 109.451447 67.114419) (xy 109.48203 67.085631) + (xy 109.50458 67.051771) (xy 109.522316 67.006258) (xy 109.534247 66.94607) (xy 109.538695 66.867583) + (xy 109.534284 66.789839) (xy 109.522435 66.730053) (xy 109.504795 66.684695) (xy 109.482336 66.650818) + (xy 109.451952 66.622244) (xy 109.416943 66.601896) (xy 109.376391 66.589335) (xy 109.328951 66.584933) + (xy 109.279952 66.589333) (xy 109.23883 66.601778) (xy 109.204063 66.62173) (xy 109.17459 66.649474) + (xy 109.153375 66.682457) (xy 109.13623 66.72923) (xy 109.12442 66.793849) (xy 109.11994 66.881139) + (xy 108.810698 66.881139) (xy 108.810484 66.877719) (xy 108.814688 66.788893) (xy 108.826528 66.71254) + (xy 108.845049 66.647015) (xy 108.869591 66.590856) (xy 108.902518 66.537844) (xy 108.941696 66.49146) + (xy 108.987451 66.451159) (xy 109.040378 66.41665) (xy 109.096746 66.390497) (xy 109.161103 66.371014) + (xy 109.234649 66.358701) (xy 109.318754 66.354368) + ) + ) + (polygon + (pts + (xy 108.647086 67.370418) (xy 108.239933 67.370418) (xy 108.082824 66.762131) (xy 107.926386 67.370418) + (xy 107.520638 67.370418) (xy 107.520638 66.37) (xy 107.773368 66.37) (xy 107.773368 67.133747) + (xy 107.969434 66.37) (xy 108.19829 66.37) (xy 108.393623 67.133747) (xy 108.393623 66.37) (xy 108.647086 66.37) + ) + ) + ) + ) + (gr_text "SDA SCL 3V3 GND" + (at 164.2 130.8 0) + (layer "F.SilkS") + (uuid "276eaa69-a296-41bd-a53b-7822803610c7") + (effects + (font + (face "Arial Narrow") + (size 0.7 0.8) + (thickness 0.1) + ) + (justify left bottom) + ) + (render_cache "SDA SCL 3V3 GND" 0 + (polygon + (pts + (xy 164.241521 130.451216) (xy 164.323489 130.445745) (xy 164.33033 130.48392) (xy 164.340476 130.513375) + (xy 164.353237 130.53576) (xy 164.381018 130.56447) (xy 164.419672 130.587564) (xy 164.464947 130.602116) + (xy 164.516978 130.60714) (xy 164.5674 130.603048) (xy 164.606745 130.591814) (xy 164.637438 130.574271) + (xy 164.661256 130.550202) (xy 164.675455 130.522147) (xy 164.680376 130.488829) (xy 164.676341 130.459534) + (xy 164.664794 130.435102) (xy 164.645707 130.414587) (xy 164.617801 130.397489) (xy 164.576976 130.382399) + (xy 164.482002 130.355302) (xy 164.396567 130.328615) (xy 164.34972 130.306575) (xy 164.314738 130.279148) + (xy 164.288513 130.24524) (xy 164.272294 130.206219) (xy 164.266678 130.161122) (xy 164.270829 130.119822) + (xy 164.282768 130.083688) (xy 164.302205 130.051753) (xy 164.329497 130.023321) (xy 164.362626 130.000458) + (xy 164.40116 129.983839) (xy 164.446142 129.973435) (xy 164.498953 129.969764) (xy 164.547071 129.972732) + (xy 164.589482 129.981241) (xy 164.627083 129.99494) (xy 164.661071 130.014206) (xy 164.689311 130.038115) + (xy 164.712323 130.067089) (xy 164.729065 130.099368) (xy 164.740033 130.135964) (xy 164.744856 130.177664) + (xy 164.661228 130.183135) (xy 164.652317 130.139084) (xy 164.636442 130.106206) (xy 164.61448 130.082006) + (xy 164.585552 130.064356) (xy 164.548708 130.053155) (xy 164.501688 130.049094) (xy 164.453493 130.052759) + (xy 164.416827 130.062682) (xy 164.389092 130.077903) (xy 164.3675 130.099016) (xy 164.354717 130.123452) + (xy 164.350307 130.152318) (xy 164.353749 130.17947) (xy 164.36334 130.200919) (xy 164.378736 130.21797) + (xy 164.399986 130.23098) (xy 164.439776 130.246713) (xy 164.506573 130.265457) (xy 164.596217 130.289683) + (xy 164.643203 130.306575) (xy 164.680908 130.327066) (xy 164.710821 130.350604) (xy 164.733914 130.377314) + (xy 164.750582 130.40746) (xy 164.760925 130.441908) (xy 164.764542 130.481563) (xy 164.760878 130.52087) + (xy 164.75012 130.557173) (xy 164.732302 130.591069) (xy 164.708 130.621593) (xy 164.678896 130.646467) + (xy 164.64457 130.666211) (xy 164.606541 130.680105) (xy 164.562396 130.688854) (xy 164.510969 130.691942) + (xy 164.450855 130.687543) (xy 164.399409 130.67503) (xy 164.35506 130.654925) (xy 164.31665 130.627058) + (xy 164.285633 130.592861) (xy 164.262663 130.552922) (xy 164.247735 130.506174) + ) + ) + (polygon + (pts + (xy 165.18665 129.984463) (xy 165.235491 129.993615) (xy 165.271652 130.00764) (xy 165.304664 130.027825) + (xy 165.334947 130.054779) (xy 165.36017 130.085832) (xy 165.382112 130.122872) (xy 165.400551 130.166765) + (xy 165.413113 130.21226) (xy 165.421178 130.265328) (xy 165.424047 130.327049) (xy 165.419161 130.405846) + (xy 165.405476 130.472511) (xy 165.384138 130.528836) (xy 165.353126 130.581394) (xy 165.318944 130.61969) + (xy 165.281702 130.646378) (xy 165.238235 130.664824) (xy 165.184467 130.676703) (xy 165.118011 130.681) + (xy 164.880851 130.681) (xy 164.880851 130.598934) (xy 164.967704 130.598934) (xy 165.107606 130.598934) + (xy 165.163768 130.595743) (xy 165.205512 130.58728) (xy 165.236029 130.574784) (xy 165.262018 130.556214) + (xy 165.28443 130.530736) (xy 165.303244 130.49695) (xy 165.319936 130.448662) (xy 165.330613 130.39214) + (xy 165.33441 130.326066) (xy 165.330101 130.254948) (xy 165.31853 130.200054) (xy 165.301339 130.158259) + (xy 165.275685 130.120261) (xy 165.247404 130.093791) (xy 165.216343 130.076663) (xy 165.176041 130.0669) + (xy 165.105408 130.062772) (xy 164.967704 130.062772) (xy 164.967704 130.598934) (xy 164.880851 130.598934) + (xy 164.880851 129.980706) (xy 165.107655 129.980706) + ) + ) + (polygon + (pts + (xy 166.088485 130.681) (xy 165.988981 130.681) (xy 165.912484 130.470364) (xy 165.63815 130.470364) + (xy 165.566001 130.681) (xy 165.473677 130.681) (xy 165.577221 130.39377) (xy 165.663307 130.39377) + (xy 165.885715 130.39377) (xy 165.817424 130.199676) (xy 165.770969 130.054352) (xy 165.755849 130.121389) + (xy 165.735457 130.188221) (xy 165.663307 130.39377) (xy 165.577221 130.39377) (xy 165.726127 129.980706) + (xy 165.819574 129.980706) + ) + ) + (polygon + (pts + (xy 166.587815 130.451216) (xy 166.669783 130.445745) (xy 166.676624 130.48392) (xy 166.68677 130.513375) + (xy 166.699532 130.53576) (xy 166.727312 130.56447) (xy 166.765966 130.587564) (xy 166.811241 130.602116) + (xy 166.863272 130.60714) (xy 166.913695 130.603048) (xy 166.953039 130.591814) (xy 166.983733 130.574271) + (xy 167.00755 130.550202) (xy 167.02175 130.522147) (xy 167.026671 130.488829) (xy 167.022636 130.459534) + (xy 167.011088 130.435102) (xy 166.992001 130.414587) (xy 166.964096 130.397489) (xy 166.923271 130.382399) + (xy 166.828297 130.355302) (xy 166.742861 130.328615) (xy 166.696015 130.306575) (xy 166.661033 130.279148) + (xy 166.634808 130.24524) (xy 166.618588 130.206219) (xy 166.612972 130.161122) (xy 166.617123 130.119822) + (xy 166.629063 130.083688) (xy 166.6485 130.051753) (xy 166.675792 130.023321) (xy 166.70892 130.000458) + (xy 166.747454 129.983839) (xy 166.792436 129.973435) (xy 166.845247 129.969764) (xy 166.893365 129.972732) + (xy 166.935777 129.981241) (xy 166.973377 129.99494) (xy 167.007366 130.014206) (xy 167.035605 130.038115) + (xy 167.058618 130.067089) (xy 167.07536 130.099368) (xy 167.086327 130.135964) (xy 167.091151 130.177664) + (xy 167.007522 130.183135) (xy 166.998611 130.139084) (xy 166.982737 130.106206) (xy 166.960774 130.082006) + (xy 166.931846 130.064356) (xy 166.895002 130.053155) (xy 166.847983 130.049094) (xy 166.799788 130.052759) + (xy 166.763121 130.062682) (xy 166.735387 130.077903) (xy 166.713794 130.099016) (xy 166.701011 130.123452) + (xy 166.696601 130.152318) (xy 166.700044 130.17947) (xy 166.709634 130.200919) (xy 166.725031 130.21797) + (xy 166.74628 130.23098) (xy 166.78607 130.246713) (xy 166.852868 130.265457) (xy 166.942511 130.289683) + (xy 166.989497 130.306575) (xy 167.027202 130.327066) (xy 167.057115 130.350604) (xy 167.080209 130.377314) + (xy 167.096877 130.40746) (xy 167.107219 130.441908) (xy 167.110837 130.481563) (xy 167.107172 130.52087) + (xy 167.096414 130.557173) (xy 167.078597 130.591069) (xy 167.054295 130.621593) (xy 167.02519 130.646467) + (xy 166.990865 130.666211) (xy 166.952835 130.680105) (xy 166.90869 130.688854) (xy 166.857264 130.691942) + (xy 166.797149 130.687543) (xy 166.745704 130.67503) (xy 166.701354 130.654925) (xy 166.662944 130.627058) + (xy 166.631927 130.592861) (xy 166.608958 130.552922) (xy 166.594029 130.506174) + ) + ) + (polygon + (pts + (xy 167.695457 130.434803) (xy 167.782896 130.456687) (xy 167.764231 130.515952) (xy 167.74078 130.564107) + (xy 167.713126 130.602858) (xy 167.681486 130.633598) (xy 167.643387 130.65909) (xy 167.60184 130.677156) + (xy 167.556129 130.688157) (xy 167.505289 130.691942) (xy 167.44583 130.687379) (xy 167.394318 130.674313) + (xy 167.349267 130.653131) (xy 167.310559 130.623784) (xy 167.275163 130.583056) (xy 167.243217 130.528537) + (xy 167.220994 130.470295) (xy 167.206943 130.403291) (xy 167.201988 130.326109) (xy 167.20703 130.249806) + (xy 167.221155 130.185385) (xy 167.243217 130.131032) (xy 167.275051 130.080779) (xy 167.312271 130.041083) + (xy 167.354982 130.010498) (xy 167.403748 129.987894) (xy 167.455871 129.974359) (xy 167.512372 129.969764) + (xy 167.559048 129.973098) (xy 167.601335 129.982807) (xy 167.640037 129.998757) (xy 167.675771 130.021226) + (xy 167.706099 130.04856) (xy 167.732236 130.082159) (xy 167.754131 130.122969) (xy 167.771416 130.172193) + (xy 167.686175 130.194077) (xy 167.667045 130.145508) (xy 167.643804 130.109108) (xy 167.616972 130.08254) + (xy 167.586437 130.064121) (xy 167.55146 130.052968) (xy 167.51076 130.049094) (xy 167.468115 130.052493) + (xy 167.430554 130.062307) (xy 167.39709 130.078373) (xy 167.368365 130.100396) (xy 167.342739 130.130266) + (xy 167.3203 130.169543) (xy 167.305142 130.211543) (xy 167.295224 130.263127) (xy 167.291625 130.326109) + (xy 167.296035 130.399693) (xy 167.308056 130.458359) (xy 167.326215 130.504708) (xy 167.34956 130.540975) + (xy 167.381696 130.572935) (xy 167.417483 130.594906) (xy 167.457678 130.608078) (xy 167.503628 130.612612) + (xy 167.548982 130.607685) (xy 167.589441 130.593184) (xy 167.626336 130.568544) (xy 167.655351 130.536417) + (xy 167.678691 130.492819) + ) + ) + (polygon + (pts + (xy 167.88665 130.681) (xy 167.88665 129.980706) (xy 167.973503 129.980706) (xy 167.973503 130.598934) + (xy 168.297027 130.598934) (xy 168.297027 130.681) + ) + ) + (polygon + (pts + (xy 169.100146 130.494984) (xy 169.181039 130.486778) (xy 169.196587 130.541104) (xy 169.217549 130.578088) + (xy 169.242777 130.602106) (xy 169.272517 130.616032) (xy 169.308387 130.620818) (xy 169.343099 130.616405) + (xy 169.374586 130.603189) (xy 169.403984 130.580084) (xy 169.425975 130.551087) (xy 169.439606 130.516385) + (xy 169.444431 130.474468) (xy 169.439953 130.434974) (xy 169.427386 130.402744) (xy 169.407257 130.376245) + (xy 169.380187 130.35535) (xy 169.350158 130.343186) (xy 169.316008 130.33906) (xy 169.29196 130.341182) + (xy 169.259148 130.348634) (xy 169.268478 130.273407) (xy 169.281032 130.27439) (xy 169.319276 130.270643) + (xy 169.351036 130.259984) (xy 169.377752 130.242547) (xy 169.398057 130.219463) (xy 169.41052 130.19156) + (xy 169.414926 130.157447) (xy 169.411192 130.125869) (xy 169.400683 130.100067) (xy 169.383761 130.0788) + (xy 169.361228 130.062152) (xy 169.336221 130.052407) (xy 169.307801 130.049094) (xy 169.278406 130.052574) + (xy 169.252585 130.062813) (xy 169.229351 130.080339) (xy 169.211777 130.102772) (xy 169.197935 130.133543) + (xy 169.18866 130.174928) (xy 169.108353 130.158515) (xy 169.119266 130.113863) (xy 169.134669 130.077295) + (xy 169.154038 130.047542) (xy 169.17718 130.023577) (xy 169.215504 129.998184) (xy 169.258196 129.983122) + (xy 169.306727 129.977971) (xy 169.345378 129.981237) (xy 169.380347 129.990793) (xy 169.412445 130.006682) + (xy 169.442233 130.029476) (xy 169.466416 130.056595) (xy 169.483684 130.086797) (xy 169.49429 130.120684) + (xy 169.497969 130.159071) (xy 169.495205 130.190288) (xy 169.487208 130.218226) (xy 169.47418 130.243445) + (xy 169.456245 130.266176) (xy 169.434245 130.285301) (xy 169.407794 130.301104) (xy 169.444261 130.31399) + (xy 169.472812 130.332563) (xy 169.495451 130.357361) (xy 169.514333 130.391205) (xy 169.526096 130.429302) + (xy 169.530209 130.473185) (xy 169.525848 130.520694) (xy 169.513359 130.562118) (xy 169.49319 130.598516) + (xy 169.465191 130.630692) (xy 169.430337 130.657962) (xy 169.393225 130.676835) (xy 169.353239 130.688109) + (xy 169.309462 130.691942) (xy 169.268618 130.688542) (xy 169.231757 130.678609) (xy 169.198024 130.662132) + (xy 169.166824 130.638556) (xy 169.141445 130.610516) (xy 169.121786 130.577793) (xy 169.107874 130.539614) + ) + ) + (polygon + (pts + (xy 169.832386 130.681) (xy 169.577739 129.980706) (xy 169.671723 129.980706) (xy 169.842742 130.489257) + (xy 169.87718 130.604405) (xy 169.912156 130.489257) (xy 170.089769 129.980706) (xy 170.178332 129.980706) + (xy 169.921437 130.681) + ) + ) + (polygon + (pts + (xy 170.222491 130.494984) (xy 170.303384 130.486778) (xy 170.318931 130.541104) (xy 170.339893 130.578088) + (xy 170.365122 130.602106) (xy 170.394862 130.616032) (xy 170.430732 130.620818) (xy 170.465444 130.616405) + (xy 170.496931 130.603189) (xy 170.526329 130.580084) (xy 170.54832 130.551087) (xy 170.561951 130.516385) + (xy 170.566775 130.474468) (xy 170.562298 130.434974) (xy 170.549731 130.402744) (xy 170.529602 130.376245) + (xy 170.502531 130.35535) (xy 170.472503 130.343186) (xy 170.438353 130.33906) (xy 170.414305 130.341182) + (xy 170.381493 130.348634) (xy 170.390823 130.273407) (xy 170.403377 130.27439) (xy 170.44162 130.270643) + (xy 170.473381 130.259984) (xy 170.500097 130.242547) (xy 170.520402 130.219463) (xy 170.532865 130.19156) + (xy 170.537271 130.157447) (xy 170.533536 130.125869) (xy 170.523028 130.100067) (xy 170.506106 130.0788) + (xy 170.483573 130.062152) (xy 170.458565 130.052407) (xy 170.430146 130.049094) (xy 170.400751 130.052574) + (xy 170.37493 130.062813) (xy 170.351695 130.080339) (xy 170.334121 130.102772) (xy 170.32028 130.133543) + (xy 170.311004 130.174928) (xy 170.230697 130.158515) (xy 170.241611 130.113863) (xy 170.257014 130.077295) + (xy 170.276382 130.047542) (xy 170.299525 130.023577) (xy 170.337849 129.998184) (xy 170.38054 129.983122) + (xy 170.429071 129.977971) (xy 170.467723 129.981237) (xy 170.502691 129.990793) (xy 170.53479 130.006682) + (xy 170.564577 130.029476) (xy 170.588761 130.056595) (xy 170.606029 130.086797) (xy 170.616635 130.120684) + (xy 170.620314 130.159071) (xy 170.61755 130.190288) (xy 170.609553 130.218226) (xy 170.596524 130.243445) + (xy 170.57859 130.266176) (xy 170.55659 130.285301) (xy 170.530139 130.301104) (xy 170.566606 130.31399) + (xy 170.595157 130.332563) (xy 170.617795 130.357361) (xy 170.636678 130.391205) (xy 170.648441 130.429302) + (xy 170.652554 130.473185) (xy 170.648193 130.520694) (xy 170.635703 130.562118) (xy 170.615535 130.598516) + (xy 170.587536 130.630692) (xy 170.552681 130.657962) (xy 170.51557 130.676835) (xy 170.475583 130.688109) + (xy 170.431807 130.691942) (xy 170.390963 130.688542) (xy 170.354102 130.678609) (xy 170.320368 130.662132) + (xy 170.289169 130.638556) (xy 170.26379 130.610516) (xy 170.244131 130.577793) (xy 170.230219 130.539614) + ) + ) + (polygon + (pts + (xy 171.840453 130.407448) (xy 171.840453 130.325382) (xy 172.118597 130.325382) (xy 172.118597 130.581751) + (xy 172.074167 130.616211) (xy 172.030144 130.643487) (xy 171.986315 130.664287) (xy 171.939964 130.679755) + (xy 171.893303 130.6889) (xy 171.845875 130.691942) (xy 171.783162 130.687141) (xy 171.72635 130.673133) + (xy 171.67427 130.650011) (xy 171.628307 130.61847) (xy 171.588572 130.578087) (xy 171.554836 130.527597) + (xy 171.531159 130.472619) (xy 171.516173 130.408682) (xy 171.510872 130.334187) (xy 171.516151 130.258735) + (xy 171.531189 130.192829) (xy 171.555129 130.135092) (xy 171.589141 130.081598) (xy 171.627754 130.040542) + (xy 171.670997 130.010028) (xy 171.72057 129.988022) (xy 171.776565 129.974475) (xy 171.840404 129.969764) + (xy 171.887897 129.972535) (xy 171.929685 129.980467) (xy 171.966629 129.993187) (xy 172.000659 130.011025) + (xy 172.030229 130.033069) (xy 172.055729 130.059609) (xy 172.075862 130.089581) (xy 172.09354 130.12833) + (xy 172.108192 130.177664) (xy 172.030083 130.199548) (xy 172.010808 130.14511) (xy 171.990174 130.111498) + (xy 171.962543 130.085629) (xy 171.926769 130.065721) (xy 171.885629 130.053374) (xy 171.838255 130.049094) + (xy 171.791563 130.052631) (xy 171.75085 130.062785) (xy 171.71501 130.079271) (xy 171.683983 130.102031) + (xy 171.656275 130.132785) (xy 171.631919 130.173048) (xy 171.615124 130.216341) (xy 171.604355 130.267646) + (xy 171.600509 130.328374) (xy 171.605523 130.399407) (xy 171.619267 130.456327) (xy 171.640261 130.501677) + (xy 171.667725 130.537556) (xy 171.704072 130.568142) (xy 171.744668 130.589591) (xy 171.790397 130.602629) + (xy 171.842602 130.60714) (xy 171.893702 130.602041) (xy 171.947822 130.586026) (xy 171.997483 130.562063) + (xy 172.033356 130.535718) (xy 172.033356 130.407448) + ) + ) + (polygon + (pts + (xy 172.242721 130.681) (xy 172.242721 129.980706) (xy 172.331821 129.980706) (xy 172.677229 130.532042) + (xy 172.677229 129.980706) (xy 172.760272 129.980706) (xy 172.760272 130.681) (xy 172.671172 130.681) + (xy 172.32635 130.130519) (xy 172.32635 130.681) + ) + ) + (polygon + (pts + (xy 173.211884 129.984463) (xy 173.260725 129.993615) (xy 173.296886 130.00764) (xy 173.329898 130.027825) + (xy 173.360181 130.054779) (xy 173.385404 130.085832) (xy 173.407346 130.122872) (xy 173.425785 130.166765) + (xy 173.438347 130.21226) (xy 173.446412 130.265328) (xy 173.449281 130.327049) (xy 173.444395 130.405846) + (xy 173.43071 130.472511) (xy 173.409371 130.528836) (xy 173.37836 130.581394) (xy 173.344178 130.61969) + (xy 173.306936 130.646378) (xy 173.263469 130.664824) (xy 173.209701 130.676703) (xy 173.143244 130.681) + (xy 172.906085 130.681) (xy 172.906085 130.598934) (xy 172.992937 130.598934) (xy 173.13284 130.598934) + (xy 173.189002 130.595743) (xy 173.230746 130.58728) (xy 173.261263 130.574784) (xy 173.287252 130.556214) + (xy 173.309664 130.530736) (xy 173.328478 130.49695) (xy 173.34517 130.448662) (xy 173.355847 130.39214) + (xy 173.359644 130.326066) (xy 173.355335 130.254948) (xy 173.343764 130.200054) (xy 173.326573 130.158259) + (xy 173.300919 130.120261) (xy 173.272638 130.093791) (xy 173.241577 130.076663) (xy 173.201274 130.0669) + (xy 173.130642 130.062772) (xy 172.992937 130.062772) (xy 172.992937 130.598934) (xy 172.906085 130.598934) + (xy 172.906085 129.980706) (xy 173.132889 129.980706) + ) + ) + ) + ) + (gr_text "CH-3\n" + (at 100.6 87.4 90) + (layer "F.SilkS" knockout) + (uuid "2abadff1-d366-4a30-b6c2-098296d39166") + (effects + (font + (face "Arial Black") + (size 1 1) + (thickness 0.2) + (bold yes) + ) + (justify left bottom) + ) + (render_cache "CH-3\n" 90 + (polygon + (pts + (xy 100.019672 86.630818) (xy 100.10192 86.359586) (xy 100.175829 86.382177) (xy 100.238645 86.411005) + (xy 100.291819 86.445682) (xy 100.338622 86.48816) (xy 100.376788 86.53658) (xy 100.406857 86.591556) + (xy 100.427379 86.6509) (xy 100.440773 86.723888) (xy 100.445631 86.813206) (xy 100.439676 86.921592) + (xy 100.423321 87.00935) (xy 100.39837 87.07998) (xy 100.371392 87.128267) (xy 100.335407 87.173975) + (xy 100.289423 87.217406) (xy 100.232102 87.258644) (xy 100.171682 87.290138) (xy 100.101831 87.313611) + (xy 100.021006 87.32849) (xy 99.927409 87.333749) (xy 99.826668 87.327689) (xy 99.740181 87.310565) + (xy 99.665846 87.283548) (xy 99.60189 87.247222) (xy 99.546939 87.201552) (xy 99.500774 87.146748) + (xy 99.4642 87.08341) (xy 99.437105 87.010264) (xy 99.41999 86.925641) (xy 99.413949 86.827555) + (xy 99.419466 86.731624) (xy 99.434834 86.651681) (xy 99.458679 86.585208) (xy 99.490214 86.530068) + (xy 99.531661 86.481152) (xy 99.583495 86.438048) (xy 99.647132 86.40062) (xy 99.724443 86.369173) + (xy 99.785198 86.642419) (xy 99.743008 86.658287) (xy 99.718276 86.672461) (xy 99.686704 86.701491) + (xy 99.663627 86.736025) (xy 99.649408 86.7753) (xy 99.644515 86.820045) (xy 99.650041 86.870652) + (xy 99.665842 86.913359) (xy 99.691757 86.949894) (xy 99.728961 86.981245) (xy 99.77304 87.002887) + (xy 99.836542 87.017866) (xy 99.925699 87.023621) (xy 100.012966 87.019402) (xy 100.076736 87.008353) + (xy 100.122124 86.992469) (xy 100.153456 86.973063) (xy 100.180069 86.945671) (xy 100.199094 86.91356) + (xy 100.210903 86.87579) (xy 100.215066 86.830975) (xy 100.208885 86.773906) (xy 100.191911 86.730223) + (xy 100.165057 86.696763) (xy 100.129277 86.670763) (xy 100.081719 86.648552) + ) + ) + (polygon + (pts + (xy 99.429581 86.207789) (xy 99.429581 85.898394) (xy 99.777383 85.898394) (xy 99.777383 85.56024) + (xy 99.429581 85.56024) (xy 99.429581 85.24938) (xy 100.43 85.24938) (xy 100.43 85.56024) (xy 100.023579 85.56024) + (xy 100.023579 85.898394) (xy 100.43 85.898394) (xy 100.43 86.207789) + ) + ) + (polygon + (pts + (xy 99.957145 85.115413) (xy 99.957145 84.711008) (xy 100.172079 84.711008) (xy 100.172079 85.115413) + ) + ) + (polygon + (pts + (xy 99.718764 84.352887) (xy 99.671992 84.615875) (xy 99.611505 84.594972) (xy 99.560196 84.567007) + (xy 99.516814 84.532091) (xy 99.480505 84.489846) (xy 99.453204 84.442406) (xy 99.432381 84.384097) + (xy 99.418844 84.31275) (xy 99.413949 84.225819) (xy 99.419607 84.12478) (xy 99.434834 84.046689) + (xy 99.457545 83.987109) (xy 99.486489 83.942315) (xy 99.525864 83.903443) (xy 99.568761 83.876542) + (xy 99.616001 83.860403) (xy 99.668878 83.854876) (xy 99.710689 83.858875) (xy 99.749284 83.870668) + (xy 99.785443 83.890413) (xy 99.817474 83.916804) (xy 99.847977 83.952057) (xy 99.876973 83.997697) + (xy 99.893627 83.943535) (xy 99.910434 83.908853) (xy 99.946126 83.864418) (xy 99.991339 83.831306) + (xy 100.02578 83.816318) (xy 100.065379 83.80694) (xy 100.11114 83.803646) (xy 100.168218 83.808666) + (xy 100.223831 83.823764) (xy 100.278752 83.849441) (xy 100.327925 83.884255) (xy 100.368902 83.92786) + (xy 100.402278 83.981271) (xy 100.425128 84.040277) (xy 100.440141 84.114534) (xy 100.445631 84.207379) + (xy 100.441461 84.29865) (xy 100.430278 84.369215) (xy 100.413757 84.422923) (xy 100.388834 84.473002) + (xy 100.357782 84.516017) (xy 100.320396 84.552739) (xy 100.277388 84.583133) (xy 100.226265 84.609274) + (xy 100.165851 84.630896) (xy 100.129092 84.352887) (xy 100.184015 84.338278) (xy 100.221232 84.321036) + (xy 100.24523 84.302023) (xy 100.26299 84.277345) (xy 100.273809 84.248472) (xy 100.277592 84.214218) + (xy 100.272954 84.178659) (xy 100.259436 84.147994) (xy 100.236559 84.120978) (xy 100.207161 84.100804) + (xy 100.171239 84.088219) (xy 100.127016 84.083731) (xy 100.081824 84.088172) (xy 100.046534 84.100401) + (xy 100.018939 84.119635) (xy 99.997998 84.145755) (xy 99.985146 84.177632) (xy 99.980593 84.216966) + (xy 99.984084 84.25243) (xy 99.997018 84.307152) (xy 99.797472 84.292803) (xy 99.80083 84.256594) + (xy 99.796856 84.22153) (xy 99.785408 84.191523) (xy 99.766453 84.16543) (xy 99.741676 84.144834) + (xy 99.714813 84.132882) (xy 99.684937 84.128855) (xy 99.655996 84.132104) (xy 99.632375 84.141282) + (xy 99.612885 84.15621) (xy 99.598282 84.175953) (xy 99.589164 84.200527) (xy 99.585896 84.231315) + (xy 99.589372 84.262899) (xy 99.599254 84.289152) (xy 99.615389 84.311243) (xy 99.637201 84.327961) + (xy 99.670382 84.342158) + ) + ) + ) + ) + (gr_text "COM\n" + (at 74 66 180) + (layer "F.SilkS" knockout) + (uuid "30f3ecfd-5515-479c-a979-5bd46d58b422") + (effects + (font + (face "Arial Black") + (size 1 1) + (thickness 0.2) + (bold yes) + ) + (justify left bottom) + ) + (render_cache "COM\n" 180 + (polygon + (pts + (xy 73.230818 66.580327) (xy 72.959586 66.498079) (xy 72.982177 66.42417) (xy 73.011005 66.361354) + (xy 73.045682 66.30818) (xy 73.08816 66.261377) (xy 73.13658 66.223211) (xy 73.191556 66.193142) + (xy 73.2509 66.17262) (xy 73.323888 66.159226) (xy 73.413206 66.154368) (xy 73.521592 66.160323) + (xy 73.60935 66.176678) (xy 73.67998 66.201629) (xy 73.728267 66.228607) (xy 73.773975 66.264592) + (xy 73.817406 66.310576) (xy 73.858644 66.367897) (xy 73.890138 66.428317) (xy 73.913611 66.498168) + (xy 73.92849 66.578993) (xy 73.933749 66.67259) (xy 73.927689 66.773331) (xy 73.910565 66.859818) + (xy 73.883548 66.934153) (xy 73.847222 66.998109) (xy 73.801552 67.05306) (xy 73.746748 67.099225) + (xy 73.68341 67.135799) (xy 73.610264 67.162894) (xy 73.525641 67.180009) (xy 73.427555 67.18605) + (xy 73.331624 67.180533) (xy 73.251681 67.165165) (xy 73.185208 67.14132) (xy 73.130068 67.109785) + (xy 73.081152 67.068338) (xy 73.038048 67.016504) (xy 73.00062 66.952867) (xy 72.969173 66.875556) + (xy 73.242419 66.814801) (xy 73.258287 66.856991) (xy 73.272461 66.881723) (xy 73.301491 66.913295) + (xy 73.336025 66.936372) (xy 73.3753 66.950591) (xy 73.420045 66.955484) (xy 73.470652 66.949958) + (xy 73.513359 66.934157) (xy 73.549894 66.908242) (xy 73.581245 66.871038) (xy 73.602887 66.826959) + (xy 73.617866 66.763457) (xy 73.623621 66.6743) (xy 73.619402 66.587033) (xy 73.608353 66.523263) + (xy 73.592469 66.477875) (xy 73.573063 66.446543) (xy 73.545671 66.41993) (xy 73.51356 66.400905) + (xy 73.47579 66.389096) (xy 73.430975 66.384933) (xy 73.373906 66.391114) (xy 73.330223 66.408088) + (xy 73.296763 66.434942) (xy 73.270763 66.470722) (xy 73.248552 66.51828) + ) + ) + (polygon + (pts + (xy 72.430853 66.161037) (xy 72.523228 66.179527) (xy 72.599145 66.208101) (xy 72.651421 66.238495) + (xy 72.698611 66.276563) (xy 72.741131 66.322867) (xy 72.779152 66.378278) (xy 72.808181 66.437224) + (xy 72.82975 66.504521) (xy 72.843362 66.581462) (xy 72.84815 66.669537) (xy 72.841991 66.768414) + (xy 72.824498 66.854123) (xy 72.796728 66.928598) (xy 72.759136 66.993462) (xy 72.711557 67.049945) + (xy 72.654878 67.097368) (xy 72.589888 67.134831) (xy 72.515366 67.162499) (xy 72.429716 67.179919) + (xy 72.331027 67.18605) (xy 72.229318 67.179932) (xy 72.141856 67.162632) (xy 72.066549 67.135315) + (xy 72.00163 67.09856) (xy 71.945734 67.052327) (xy 71.898616 66.996789) (xy 71.861397 66.932966) + (xy 71.833904 66.859639) (xy 71.816584 66.775198) (xy 71.810698 66.681139) (xy 72.11994 66.681139) + (xy 72.124299 66.753132) (xy 72.136118 66.809484) (xy 72.15394 66.853176) (xy 72.176971 66.886669) + (xy 72.207608 66.914761) (xy 72.242923 66.934822) (xy 72.283842 66.947227) (xy 72.331699 66.951577) + (xy 72.377296 66.947237) (xy 72.416808 66.934771) (xy 72.451447 66.914419) (xy 72.48203 66.885631) + (xy 72.50458 66.851771) (xy 72.522316 66.806258) (xy 72.534247 66.74607) (xy 72.538695 66.667583) + (xy 72.534284 66.589839) (xy 72.522435 66.530053) (xy 72.504795 66.484695) (xy 72.482336 66.450818) + (xy 72.451952 66.422244) (xy 72.416943 66.401896) (xy 72.376391 66.389335) (xy 72.328951 66.384933) + (xy 72.279952 66.389333) (xy 72.23883 66.401778) (xy 72.204063 66.42173) (xy 72.17459 66.449474) + (xy 72.153375 66.482457) (xy 72.13623 66.52923) (xy 72.12442 66.593849) (xy 72.11994 66.681139) + (xy 71.810698 66.681139) (xy 71.810484 66.677719) (xy 71.814688 66.588893) (xy 71.826528 66.51254) + (xy 71.845049 66.447015) (xy 71.869591 66.390856) (xy 71.902518 66.337844) (xy 71.941696 66.29146) + (xy 71.987451 66.251159) (xy 72.040378 66.21665) (xy 72.096746 66.190497) (xy 72.161103 66.171014) + (xy 72.234649 66.158701) (xy 72.318754 66.154368) + ) + ) + (polygon + (pts + (xy 71.647086 67.170418) (xy 71.239933 67.170418) (xy 71.082824 66.562131) (xy 70.926386 67.170418) + (xy 70.520638 67.170418) (xy 70.520638 66.17) (xy 70.773368 66.17) (xy 70.773368 66.933747) (xy 70.969434 66.17) + (xy 71.19829 66.17) (xy 71.393623 66.933747) (xy 71.393623 66.17) (xy 71.647086 66.17) + ) + ) + ) + ) + (gr_text "NC" + (at 123.6 66.4 180) + (layer "F.SilkS" knockout) + (uuid "38f5d4d1-3b14-4c5b-9a10-90eb3c27ac14") + (effects + (font + (face "Arial Black") + (size 1 1) + (thickness 0.2) + (bold yes) + ) + (justify left bottom) + ) + (render_cache "NC" 180 + (polygon + (pts + (xy 123.495464 67.570418) (xy 123.206524 67.570418) (xy 122.829413 67.017086) (xy 122.829413 67.570418) + (xy 122.537726 67.570418) (xy 122.537726 66.57) (xy 122.829413 66.57) (xy 123.204448 67.120218) + (xy 123.204448 66.57) (xy 123.495464 66.57) + ) + ) + (polygon + (pts + (xy 121.665291 66.980327) (xy 121.394059 66.898079) (xy 121.41665 66.82417) (xy 121.445478 66.761354) + (xy 121.480155 66.70818) (xy 121.522633 66.661377) (xy 121.571053 66.623211) (xy 121.626029 66.593142) + (xy 121.685373 66.57262) (xy 121.758361 66.559226) (xy 121.847679 66.554368) (xy 121.956065 66.560323) + (xy 122.043823 66.576678) (xy 122.114453 66.601629) (xy 122.16274 66.628607) (xy 122.208448 66.664592) + (xy 122.251879 66.710576) (xy 122.293117 66.767897) (xy 122.324611 66.828317) (xy 122.348084 66.898168) + (xy 122.362963 66.978993) (xy 122.368222 67.07259) (xy 122.362162 67.173331) (xy 122.345038 67.259818) + (xy 122.318021 67.334153) (xy 122.281695 67.398109) (xy 122.236025 67.45306) (xy 122.181222 67.499225) + (xy 122.117883 67.535799) (xy 122.044737 67.562894) (xy 121.960114 67.580009) (xy 121.862028 67.58605) + (xy 121.766097 67.580533) (xy 121.686154 67.565165) (xy 121.619681 67.54132) (xy 121.564541 67.509785) + (xy 121.515625 67.468338) (xy 121.472522 67.416504) (xy 121.435093 67.352867) (xy 121.403646 67.275556) + (xy 121.676892 67.214801) (xy 121.692761 67.256991) (xy 121.706934 67.281723) (xy 121.735965 67.313295) + (xy 121.770498 67.336372) (xy 121.809773 67.350591) (xy 121.854518 67.355484) (xy 121.905125 67.349958) + (xy 121.947832 67.334157) (xy 121.984367 67.308242) (xy 122.015718 67.271038) (xy 122.03736 67.226959) + (xy 122.052339 67.163457) (xy 122.058094 67.0743) (xy 122.053875 66.987033) (xy 122.042827 66.923263) + (xy 122.026942 66.877875) (xy 122.007536 66.846543) (xy 121.980144 66.81993) (xy 121.948033 66.800905) + (xy 121.910263 66.789096) (xy 121.865448 66.784933) (xy 121.80838 66.791114) (xy 121.764696 66.808088) + (xy 121.731236 66.834942) (xy 121.705237 66.870722) (xy 121.683025 66.91828) + ) + ) + ) + ) + (gr_text "CANH" + (at 193.6 78.86 90) + (layer "F.SilkS" knockout) + (uuid "3ad1bccb-6460-4326-a288-c1e63710ba7c") + (effects + (font + (face "Arial Black") + (size 1 1) + (thickness 0.2) + (bold yes) + ) + (justify left bottom) + ) + (render_cache "CANH" 90 + (polygon + (pts + (xy 193.019672 78.090818) (xy 193.10192 77.819586) (xy 193.175829 77.842177) (xy 193.238645 77.871005) + (xy 193.291819 77.905682) (xy 193.338622 77.94816) (xy 193.376788 77.99658) (xy 193.406857 78.051556) + (xy 193.427379 78.1109) (xy 193.440773 78.183888) (xy 193.445631 78.273206) (xy 193.439676 78.381592) + (xy 193.423321 78.46935) (xy 193.39837 78.53998) (xy 193.371392 78.588267) (xy 193.335407 78.633975) + (xy 193.289423 78.677406) (xy 193.232102 78.718644) (xy 193.171682 78.750138) (xy 193.101831 78.773611) + (xy 193.021006 78.78849) (xy 192.927409 78.793749) (xy 192.826668 78.787689) (xy 192.740181 78.770565) + (xy 192.665846 78.743548) (xy 192.60189 78.707222) (xy 192.546939 78.661552) (xy 192.500774 78.606748) + (xy 192.4642 78.54341) (xy 192.437105 78.470264) (xy 192.41999 78.385641) (xy 192.413949 78.287555) + (xy 192.419466 78.191624) (xy 192.434834 78.111681) (xy 192.458679 78.045208) (xy 192.490214 77.990068) + (xy 192.531661 77.941152) (xy 192.583495 77.898048) (xy 192.647132 77.86062) (xy 192.724443 77.829173) + (xy 192.785198 78.102419) (xy 192.743008 78.118287) (xy 192.718276 78.132461) (xy 192.686704 78.161491) + (xy 192.663627 78.196025) (xy 192.649408 78.2353) (xy 192.644515 78.280045) (xy 192.650041 78.330652) + (xy 192.665842 78.373359) (xy 192.691757 78.409894) (xy 192.728961 78.441245) (xy 192.77304 78.462887) + (xy 192.836542 78.477866) (xy 192.925699 78.483621) (xy 193.012966 78.479402) (xy 193.076736 78.468353) + (xy 193.122124 78.452469) (xy 193.153456 78.433063) (xy 193.180069 78.405671) (xy 193.199094 78.37356) + (xy 193.210903 78.33579) (xy 193.215066 78.290975) (xy 193.208885 78.233906) (xy 193.191911 78.190223) + (xy 193.165057 78.156763) (xy 193.129277 78.130763) (xy 193.081719 78.108552) + ) + ) + (polygon + (pts + (xy 193.43 77.003815) (xy 193.265868 77.05303) (xy 193.265868 77.405472) (xy 193.43 77.454016) + (xy 193.43 77.77031) (xy 192.429581 77.393871) (xy 192.429581 77.228579) (xy 192.689883 77.228579) + (xy 193.050935 77.33855) (xy 193.050935 77.117937) (xy 192.689883 77.228579) (xy 192.429581 77.228579) + (xy 192.429581 77.056449) (xy 193.43 76.68001) + ) + ) + (polygon + (pts + (xy 192.429581 76.578771) (xy 192.429581 76.289832) (xy 192.982913 75.912721) (xy 192.429581 75.912721) + (xy 192.429581 75.621034) (xy 193.43 75.621034) (xy 193.43 75.912721) (xy 192.879781 76.287756) + (xy 193.43 76.287756) (xy 193.43 76.578771) + ) + ) + (polygon + (pts + (xy 192.429581 75.413916) (xy 192.429581 75.104521) (xy 192.777383 75.104521) (xy 192.777383 74.766367) + (xy 192.429581 74.766367) (xy 192.429581 74.455507) (xy 193.43 74.455507) (xy 193.43 74.766367) + (xy 193.023579 74.766367) (xy 193.023579 75.104521) (xy 193.43 75.104521) (xy 193.43 75.413916) + ) + ) + ) + ) + (gr_text "NC" + (at 132.2 130.8 0) + (layer "F.SilkS" knockout) + (uuid "3d60fc32-280d-4d67-987c-faa5b6473e29") + (effects + (font + (face "Arial Black") + (size 1 1) + (thickness 0.2) + (bold yes) + ) + (justify left bottom) + ) + (render_cache "NC" 0 + (polygon + (pts + (xy 132.304535 129.629581) (xy 132.593475 129.629581) (xy 132.970586 130.182913) (xy 132.970586 129.629581) + (xy 133.262273 129.629581) (xy 133.262273 130.63) (xy 132.970586 130.63) (xy 132.595551 130.079781) + (xy 132.595551 130.63) (xy 132.304535 130.63) + ) + ) + (polygon + (pts + (xy 134.134708 130.219672) (xy 134.40594 130.30192) (xy 134.383349 130.375829) (xy 134.354521 130.438645) + (xy 134.319844 130.491819) (xy 134.277366 130.538622) (xy 134.228946 130.576788) (xy 134.17397 130.606857) + (xy 134.114626 130.627379) (xy 134.041638 130.640773) (xy 133.95232 130.645631) (xy 133.843934 130.639676) + (xy 133.756176 130.623321) (xy 133.685546 130.59837) (xy 133.637259 130.571392) (xy 133.591551 130.535407) + (xy 133.54812 130.489423) (xy 133.506882 130.432102) (xy 133.475388 130.371682) (xy 133.451915 130.301831) + (xy 133.437036 130.221006) (xy 133.431777 130.127409) (xy 133.437837 130.026668) (xy 133.454961 129.940181) + (xy 133.481978 129.865846) (xy 133.518304 129.80189) (xy 133.563974 129.746939) (xy 133.618777 129.700774) + (xy 133.682116 129.6642) (xy 133.755262 129.637105) (xy 133.839885 129.61999) (xy 133.937971 129.613949) + (xy 134.033902 129.619466) (xy 134.113845 129.634834) (xy 134.180318 129.658679) (xy 134.235458 129.690214) + (xy 134.284374 129.731661) (xy 134.327477 129.783495) (xy 134.364906 129.847132) (xy 134.396353 129.924443) + (xy 134.123107 129.985198) (xy 134.107238 129.943008) (xy 134.093065 129.918276) (xy 134.064034 129.886704) + (xy 134.029501 129.863627) (xy 133.990226 129.849408) (xy 133.945481 129.844515) (xy 133.894874 129.850041) + (xy 133.852167 129.865842) (xy 133.815632 129.891757) (xy 133.784281 129.928961) (xy 133.762639 129.97304) + (xy 133.74766 130.036542) (xy 133.741905 130.125699) (xy 133.746124 130.212966) (xy 133.757172 130.276736) + (xy 133.773057 130.322124) (xy 133.792463 130.353456) (xy 133.819855 130.380069) (xy 133.851966 130.399094) + (xy 133.889736 130.410903) (xy 133.934551 130.415066) (xy 133.991619 130.408885) (xy 134.035303 130.391911) + (xy 134.068763 130.365057) (xy 134.094762 130.329277) (xy 134.116974 130.281719) + ) + ) + ) + ) + (gr_text "NO" + (at 121.2 130.8 0) + (layer "F.SilkS" knockout) + (uuid "3feebbf4-7664-4a6f-8fcc-a548da59b46f") + (effects + (font + (face "Arial Black") + (size 1 1) + (thickness 0.2) + (bold yes) + ) + (justify left bottom) + ) + (render_cache "NO" 0 + (polygon + (pts + (xy 121.304535 129.629581) (xy 121.593475 129.629581) (xy 121.970586 130.182913) (xy 121.970586 129.629581) + (xy 122.262273 129.629581) (xy 122.262273 130.63) (xy 121.970586 130.63) (xy 121.595551 130.079781) + (xy 121.595551 130.63) (xy 121.304535 130.63) + ) + ) + (polygon + (pts + (xy 123.047862 129.620067) (xy 123.135324 129.637367) (xy 123.210631 129.664684) (xy 123.275549 129.701439) + (xy 123.331446 129.747672) (xy 123.378564 129.80321) (xy 123.415783 129.867033) (xy 123.443276 129.94036) + (xy 123.460596 130.024801) (xy 123.466695 130.12228) (xy 123.462491 130.211106) (xy 123.450652 130.287459) + (xy 123.432131 130.352984) (xy 123.407588 130.409143) (xy 123.374661 130.462155) (xy 123.335484 130.508539) + (xy 123.289728 130.54884) (xy 123.236802 130.583349) (xy 123.180434 130.609502) (xy 123.116077 130.628985) + (xy 123.042531 130.641298) (xy 122.958426 130.645631) (xy 122.846327 130.638962) (xy 122.753952 130.620472) + (xy 122.678035 130.591898) (xy 122.625759 130.561504) (xy 122.578569 130.523436) (xy 122.536049 130.477132) + (xy 122.498028 130.421721) (xy 122.468998 130.362775) (xy 122.44743 130.295478) (xy 122.433817 130.218537) + (xy 122.429136 130.132416) (xy 122.738485 130.132416) (xy 122.742896 130.21016) (xy 122.754745 130.269946) + (xy 122.772384 130.315304) (xy 122.794844 130.349181) (xy 122.825228 130.377755) (xy 122.860237 130.398103) + (xy 122.900789 130.410664) (xy 122.948229 130.415066) (xy 122.997228 130.410666) (xy 123.038349 130.398221) + (xy 123.073117 130.378269) (xy 123.10259 130.350525) (xy 123.123804 130.317542) (xy 123.14095 130.270769) + (xy 123.15276 130.20615) (xy 123.15724 130.11886) (xy 123.15288 130.046867) (xy 123.141062 129.990515) + (xy 123.12324 129.946823) (xy 123.100209 129.91333) (xy 123.069571 129.885238) (xy 123.034257 129.865177) + (xy 122.993338 129.852772) (xy 122.945481 129.848422) (xy 122.899884 129.852762) (xy 122.860372 129.865228) + (xy 122.825733 129.88558) (xy 122.79515 129.914368) (xy 122.772599 129.948228) (xy 122.754863 129.993741) + (xy 122.742933 130.053929) (xy 122.738485 130.132416) (xy 122.429136 130.132416) (xy 122.42903 130.130462) + (xy 122.435189 130.031585) (xy 122.452682 129.945876) (xy 122.480452 129.871401) (xy 122.518044 129.806537) + (xy 122.565622 129.750054) (xy 122.622301 129.702631) (xy 122.687292 129.665168) (xy 122.761813 129.6375) + (xy 122.847464 129.62008) (xy 122.946153 129.613949) + ) + ) + ) + ) + (gr_text "NC" + (at 86.4 66 180) + (layer "F.SilkS" knockout) + (uuid "485fb2be-0c11-4a87-b57c-e0490909ad57") + (effects + (font + (face "Arial Black") + (size 1 1) + (thickness 0.2) + (bold yes) + ) + (justify left bottom) + ) + (render_cache "NC" 180 + (polygon + (pts + (xy 86.295464 67.170418) (xy 86.006524 67.170418) (xy 85.629413 66.617086) (xy 85.629413 67.170418) + (xy 85.337726 67.170418) (xy 85.337726 66.17) (xy 85.629413 66.17) (xy 86.004448 66.720218) (xy 86.004448 66.17) + (xy 86.295464 66.17) + ) + ) + (polygon + (pts + (xy 84.465291 66.580327) (xy 84.194059 66.498079) (xy 84.21665 66.42417) (xy 84.245478 66.361354) + (xy 84.280155 66.30818) (xy 84.322633 66.261377) (xy 84.371053 66.223211) (xy 84.426029 66.193142) + (xy 84.485373 66.17262) (xy 84.558361 66.159226) (xy 84.647679 66.154368) (xy 84.756065 66.160323) + (xy 84.843823 66.176678) (xy 84.914453 66.201629) (xy 84.96274 66.228607) (xy 85.008448 66.264592) + (xy 85.051879 66.310576) (xy 85.093117 66.367897) (xy 85.124611 66.428317) (xy 85.148084 66.498168) + (xy 85.162963 66.578993) (xy 85.168222 66.67259) (xy 85.162162 66.773331) (xy 85.145038 66.859818) + (xy 85.118021 66.934153) (xy 85.081695 66.998109) (xy 85.036025 67.05306) (xy 84.981222 67.099225) + (xy 84.917883 67.135799) (xy 84.844737 67.162894) (xy 84.760114 67.180009) (xy 84.662028 67.18605) + (xy 84.566097 67.180533) (xy 84.486154 67.165165) (xy 84.419681 67.14132) (xy 84.364541 67.109785) + (xy 84.315625 67.068338) (xy 84.272522 67.016504) (xy 84.235093 66.952867) (xy 84.203646 66.875556) + (xy 84.476892 66.814801) (xy 84.492761 66.856991) (xy 84.506934 66.881723) (xy 84.535965 66.913295) + (xy 84.570498 66.936372) (xy 84.609773 66.950591) (xy 84.654518 66.955484) (xy 84.705125 66.949958) + (xy 84.747832 66.934157) (xy 84.784367 66.908242) (xy 84.815718 66.871038) (xy 84.83736 66.826959) + (xy 84.852339 66.763457) (xy 84.858094 66.6743) (xy 84.853875 66.587033) (xy 84.842827 66.523263) + (xy 84.826942 66.477875) (xy 84.807536 66.446543) (xy 84.780144 66.41993) (xy 84.748033 66.400905) + (xy 84.710263 66.389096) (xy 84.665448 66.384933) (xy 84.60838 66.391114) (xy 84.564696 66.408088) + (xy 84.531236 66.434942) (xy 84.505237 66.470722) (xy 84.483025 66.51828) + ) + ) + ) + ) + (gr_text "SDA SCL 3V3 GND" + (at 152 130.8 0) + (layer "F.SilkS") + (uuid "5cfe7d5f-a529-4b6f-800d-fb94af50f029") + (effects + (font + (face "Arial Narrow") + (size 0.7 0.8) + (thickness 0.1) + ) + (justify left bottom) + ) + (render_cache "SDA SCL 3V3 GND" 0 + (polygon + (pts + (xy 152.041521 130.451216) (xy 152.123489 130.445745) (xy 152.13033 130.48392) (xy 152.140476 130.513375) + (xy 152.153237 130.53576) (xy 152.181018 130.56447) (xy 152.219672 130.587564) (xy 152.264947 130.602116) + (xy 152.316978 130.60714) (xy 152.3674 130.603048) (xy 152.406745 130.591814) (xy 152.437438 130.574271) + (xy 152.461256 130.550202) (xy 152.475455 130.522147) (xy 152.480376 130.488829) (xy 152.476341 130.459534) + (xy 152.464794 130.435102) (xy 152.445707 130.414587) (xy 152.417801 130.397489) (xy 152.376976 130.382399) + (xy 152.282002 130.355302) (xy 152.196567 130.328615) (xy 152.14972 130.306575) (xy 152.114738 130.279148) + (xy 152.088513 130.24524) (xy 152.072294 130.206219) (xy 152.066678 130.161122) (xy 152.070829 130.119822) + (xy 152.082768 130.083688) (xy 152.102205 130.051753) (xy 152.129497 130.023321) (xy 152.162626 130.000458) + (xy 152.20116 129.983839) (xy 152.246142 129.973435) (xy 152.298953 129.969764) (xy 152.347071 129.972732) + (xy 152.389482 129.981241) (xy 152.427083 129.99494) (xy 152.461071 130.014206) (xy 152.489311 130.038115) + (xy 152.512323 130.067089) (xy 152.529065 130.099368) (xy 152.540033 130.135964) (xy 152.544856 130.177664) + (xy 152.461228 130.183135) (xy 152.452317 130.139084) (xy 152.436442 130.106206) (xy 152.41448 130.082006) + (xy 152.385552 130.064356) (xy 152.348708 130.053155) (xy 152.301688 130.049094) (xy 152.253493 130.052759) + (xy 152.216827 130.062682) (xy 152.189092 130.077903) (xy 152.1675 130.099016) (xy 152.154717 130.123452) + (xy 152.150307 130.152318) (xy 152.153749 130.17947) (xy 152.16334 130.200919) (xy 152.178736 130.21797) + (xy 152.199986 130.23098) (xy 152.239776 130.246713) (xy 152.306573 130.265457) (xy 152.396217 130.289683) + (xy 152.443203 130.306575) (xy 152.480908 130.327066) (xy 152.510821 130.350604) (xy 152.533914 130.377314) + (xy 152.550582 130.40746) (xy 152.560925 130.441908) (xy 152.564542 130.481563) (xy 152.560878 130.52087) + (xy 152.55012 130.557173) (xy 152.532302 130.591069) (xy 152.508 130.621593) (xy 152.478896 130.646467) + (xy 152.44457 130.666211) (xy 152.406541 130.680105) (xy 152.362396 130.688854) (xy 152.310969 130.691942) + (xy 152.250855 130.687543) (xy 152.199409 130.67503) (xy 152.15506 130.654925) (xy 152.11665 130.627058) + (xy 152.085633 130.592861) (xy 152.062663 130.552922) (xy 152.047735 130.506174) + ) + ) + (polygon + (pts + (xy 152.98665 129.984463) (xy 153.035491 129.993615) (xy 153.071652 130.00764) (xy 153.104664 130.027825) + (xy 153.134947 130.054779) (xy 153.16017 130.085832) (xy 153.182112 130.122872) (xy 153.200551 130.166765) + (xy 153.213113 130.21226) (xy 153.221178 130.265328) (xy 153.224047 130.327049) (xy 153.219161 130.405846) + (xy 153.205476 130.472511) (xy 153.184138 130.528836) (xy 153.153126 130.581394) (xy 153.118944 130.61969) + (xy 153.081702 130.646378) (xy 153.038235 130.664824) (xy 152.984467 130.676703) (xy 152.918011 130.681) + (xy 152.680851 130.681) (xy 152.680851 130.598934) (xy 152.767704 130.598934) (xy 152.907606 130.598934) + (xy 152.963768 130.595743) (xy 153.005512 130.58728) (xy 153.036029 130.574784) (xy 153.062018 130.556214) + (xy 153.08443 130.530736) (xy 153.103244 130.49695) (xy 153.119936 130.448662) (xy 153.130613 130.39214) + (xy 153.13441 130.326066) (xy 153.130101 130.254948) (xy 153.11853 130.200054) (xy 153.101339 130.158259) + (xy 153.075685 130.120261) (xy 153.047404 130.093791) (xy 153.016343 130.076663) (xy 152.976041 130.0669) + (xy 152.905408 130.062772) (xy 152.767704 130.062772) (xy 152.767704 130.598934) (xy 152.680851 130.598934) + (xy 152.680851 129.980706) (xy 152.907655 129.980706) + ) + ) + (polygon + (pts + (xy 153.888485 130.681) (xy 153.788981 130.681) (xy 153.712484 130.470364) (xy 153.43815 130.470364) + (xy 153.366001 130.681) (xy 153.273677 130.681) (xy 153.377221 130.39377) (xy 153.463307 130.39377) + (xy 153.685715 130.39377) (xy 153.617424 130.199676) (xy 153.570969 130.054352) (xy 153.555849 130.121389) + (xy 153.535457 130.188221) (xy 153.463307 130.39377) (xy 153.377221 130.39377) (xy 153.526127 129.980706) + (xy 153.619574 129.980706) + ) + ) + (polygon + (pts + (xy 154.387815 130.451216) (xy 154.469783 130.445745) (xy 154.476624 130.48392) (xy 154.48677 130.513375) + (xy 154.499532 130.53576) (xy 154.527312 130.56447) (xy 154.565966 130.587564) (xy 154.611241 130.602116) + (xy 154.663272 130.60714) (xy 154.713695 130.603048) (xy 154.753039 130.591814) (xy 154.783733 130.574271) + (xy 154.80755 130.550202) (xy 154.82175 130.522147) (xy 154.826671 130.488829) (xy 154.822636 130.459534) + (xy 154.811088 130.435102) (xy 154.792001 130.414587) (xy 154.764096 130.397489) (xy 154.723271 130.382399) + (xy 154.628297 130.355302) (xy 154.542861 130.328615) (xy 154.496015 130.306575) (xy 154.461033 130.279148) + (xy 154.434808 130.24524) (xy 154.418588 130.206219) (xy 154.412972 130.161122) (xy 154.417123 130.119822) + (xy 154.429063 130.083688) (xy 154.4485 130.051753) (xy 154.475792 130.023321) (xy 154.50892 130.000458) + (xy 154.547454 129.983839) (xy 154.592436 129.973435) (xy 154.645247 129.969764) (xy 154.693365 129.972732) + (xy 154.735777 129.981241) (xy 154.773377 129.99494) (xy 154.807366 130.014206) (xy 154.835605 130.038115) + (xy 154.858618 130.067089) (xy 154.87536 130.099368) (xy 154.886327 130.135964) (xy 154.891151 130.177664) + (xy 154.807522 130.183135) (xy 154.798611 130.139084) (xy 154.782737 130.106206) (xy 154.760774 130.082006) + (xy 154.731846 130.064356) (xy 154.695002 130.053155) (xy 154.647983 130.049094) (xy 154.599788 130.052759) + (xy 154.563121 130.062682) (xy 154.535387 130.077903) (xy 154.513794 130.099016) (xy 154.501011 130.123452) + (xy 154.496601 130.152318) (xy 154.500044 130.17947) (xy 154.509634 130.200919) (xy 154.525031 130.21797) + (xy 154.54628 130.23098) (xy 154.58607 130.246713) (xy 154.652868 130.265457) (xy 154.742511 130.289683) + (xy 154.789497 130.306575) (xy 154.827202 130.327066) (xy 154.857115 130.350604) (xy 154.880209 130.377314) + (xy 154.896877 130.40746) (xy 154.907219 130.441908) (xy 154.910837 130.481563) (xy 154.907172 130.52087) + (xy 154.896414 130.557173) (xy 154.878597 130.591069) (xy 154.854295 130.621593) (xy 154.82519 130.646467) + (xy 154.790865 130.666211) (xy 154.752835 130.680105) (xy 154.70869 130.688854) (xy 154.657264 130.691942) + (xy 154.597149 130.687543) (xy 154.545704 130.67503) (xy 154.501354 130.654925) (xy 154.462944 130.627058) + (xy 154.431927 130.592861) (xy 154.408958 130.552922) (xy 154.394029 130.506174) + ) + ) + (polygon + (pts + (xy 155.495457 130.434803) (xy 155.582896 130.456687) (xy 155.564231 130.515952) (xy 155.54078 130.564107) + (xy 155.513126 130.602858) (xy 155.481486 130.633598) (xy 155.443387 130.65909) (xy 155.40184 130.677156) + (xy 155.356129 130.688157) (xy 155.305289 130.691942) (xy 155.24583 130.687379) (xy 155.194318 130.674313) + (xy 155.149267 130.653131) (xy 155.110559 130.623784) (xy 155.075163 130.583056) (xy 155.043217 130.528537) + (xy 155.020994 130.470295) (xy 155.006943 130.403291) (xy 155.001988 130.326109) (xy 155.00703 130.249806) + (xy 155.021155 130.185385) (xy 155.043217 130.131032) (xy 155.075051 130.080779) (xy 155.112271 130.041083) + (xy 155.154982 130.010498) (xy 155.203748 129.987894) (xy 155.255871 129.974359) (xy 155.312372 129.969764) + (xy 155.359048 129.973098) (xy 155.401335 129.982807) (xy 155.440037 129.998757) (xy 155.475771 130.021226) + (xy 155.506099 130.04856) (xy 155.532236 130.082159) (xy 155.554131 130.122969) (xy 155.571416 130.172193) + (xy 155.486175 130.194077) (xy 155.467045 130.145508) (xy 155.443804 130.109108) (xy 155.416972 130.08254) + (xy 155.386437 130.064121) (xy 155.35146 130.052968) (xy 155.31076 130.049094) (xy 155.268115 130.052493) + (xy 155.230554 130.062307) (xy 155.19709 130.078373) (xy 155.168365 130.100396) (xy 155.142739 130.130266) + (xy 155.1203 130.169543) (xy 155.105142 130.211543) (xy 155.095224 130.263127) (xy 155.091625 130.326109) + (xy 155.096035 130.399693) (xy 155.108056 130.458359) (xy 155.126215 130.504708) (xy 155.14956 130.540975) + (xy 155.181696 130.572935) (xy 155.217483 130.594906) (xy 155.257678 130.608078) (xy 155.303628 130.612612) + (xy 155.348982 130.607685) (xy 155.389441 130.593184) (xy 155.426336 130.568544) (xy 155.455351 130.536417) + (xy 155.478691 130.492819) + ) + ) + (polygon + (pts + (xy 155.68665 130.681) (xy 155.68665 129.980706) (xy 155.773503 129.980706) (xy 155.773503 130.598934) + (xy 156.097027 130.598934) (xy 156.097027 130.681) + ) + ) + (polygon + (pts + (xy 156.900146 130.494984) (xy 156.981039 130.486778) (xy 156.996587 130.541104) (xy 157.017549 130.578088) + (xy 157.042777 130.602106) (xy 157.072517 130.616032) (xy 157.108387 130.620818) (xy 157.143099 130.616405) + (xy 157.174586 130.603189) (xy 157.203984 130.580084) (xy 157.225975 130.551087) (xy 157.239606 130.516385) + (xy 157.244431 130.474468) (xy 157.239953 130.434974) (xy 157.227386 130.402744) (xy 157.207257 130.376245) + (xy 157.180187 130.35535) (xy 157.150158 130.343186) (xy 157.116008 130.33906) (xy 157.09196 130.341182) + (xy 157.059148 130.348634) (xy 157.068478 130.273407) (xy 157.081032 130.27439) (xy 157.119276 130.270643) + (xy 157.151036 130.259984) (xy 157.177752 130.242547) (xy 157.198057 130.219463) (xy 157.21052 130.19156) + (xy 157.214926 130.157447) (xy 157.211192 130.125869) (xy 157.200683 130.100067) (xy 157.183761 130.0788) + (xy 157.161228 130.062152) (xy 157.136221 130.052407) (xy 157.107801 130.049094) (xy 157.078406 130.052574) + (xy 157.052585 130.062813) (xy 157.029351 130.080339) (xy 157.011777 130.102772) (xy 156.997935 130.133543) + (xy 156.98866 130.174928) (xy 156.908353 130.158515) (xy 156.919266 130.113863) (xy 156.934669 130.077295) + (xy 156.954038 130.047542) (xy 156.97718 130.023577) (xy 157.015504 129.998184) (xy 157.058196 129.983122) + (xy 157.106727 129.977971) (xy 157.145378 129.981237) (xy 157.180347 129.990793) (xy 157.212445 130.006682) + (xy 157.242233 130.029476) (xy 157.266416 130.056595) (xy 157.283684 130.086797) (xy 157.29429 130.120684) + (xy 157.297969 130.159071) (xy 157.295205 130.190288) (xy 157.287208 130.218226) (xy 157.27418 130.243445) + (xy 157.256245 130.266176) (xy 157.234245 130.285301) (xy 157.207794 130.301104) (xy 157.244261 130.31399) + (xy 157.272812 130.332563) (xy 157.295451 130.357361) (xy 157.314333 130.391205) (xy 157.326096 130.429302) + (xy 157.330209 130.473185) (xy 157.325848 130.520694) (xy 157.313359 130.562118) (xy 157.29319 130.598516) + (xy 157.265191 130.630692) (xy 157.230337 130.657962) (xy 157.193225 130.676835) (xy 157.153239 130.688109) + (xy 157.109462 130.691942) (xy 157.068618 130.688542) (xy 157.031757 130.678609) (xy 156.998024 130.662132) + (xy 156.966824 130.638556) (xy 156.941445 130.610516) (xy 156.921786 130.577793) (xy 156.907874 130.539614) + ) + ) + (polygon + (pts + (xy 157.632386 130.681) (xy 157.377739 129.980706) (xy 157.471723 129.980706) (xy 157.642742 130.489257) + (xy 157.67718 130.604405) (xy 157.712156 130.489257) (xy 157.889769 129.980706) (xy 157.978332 129.980706) + (xy 157.721437 130.681) + ) + ) + (polygon + (pts + (xy 158.022491 130.494984) (xy 158.103384 130.486778) (xy 158.118931 130.541104) (xy 158.139893 130.578088) + (xy 158.165122 130.602106) (xy 158.194862 130.616032) (xy 158.230732 130.620818) (xy 158.265444 130.616405) + (xy 158.296931 130.603189) (xy 158.326329 130.580084) (xy 158.34832 130.551087) (xy 158.361951 130.516385) + (xy 158.366775 130.474468) (xy 158.362298 130.434974) (xy 158.349731 130.402744) (xy 158.329602 130.376245) + (xy 158.302531 130.35535) (xy 158.272503 130.343186) (xy 158.238353 130.33906) (xy 158.214305 130.341182) + (xy 158.181493 130.348634) (xy 158.190823 130.273407) (xy 158.203377 130.27439) (xy 158.24162 130.270643) + (xy 158.273381 130.259984) (xy 158.300097 130.242547) (xy 158.320402 130.219463) (xy 158.332865 130.19156) + (xy 158.337271 130.157447) (xy 158.333536 130.125869) (xy 158.323028 130.100067) (xy 158.306106 130.0788) + (xy 158.283573 130.062152) (xy 158.258565 130.052407) (xy 158.230146 130.049094) (xy 158.200751 130.052574) + (xy 158.17493 130.062813) (xy 158.151695 130.080339) (xy 158.134121 130.102772) (xy 158.12028 130.133543) + (xy 158.111004 130.174928) (xy 158.030697 130.158515) (xy 158.041611 130.113863) (xy 158.057014 130.077295) + (xy 158.076382 130.047542) (xy 158.099525 130.023577) (xy 158.137849 129.998184) (xy 158.18054 129.983122) + (xy 158.229071 129.977971) (xy 158.267723 129.981237) (xy 158.302691 129.990793) (xy 158.33479 130.006682) + (xy 158.364577 130.029476) (xy 158.388761 130.056595) (xy 158.406029 130.086797) (xy 158.416635 130.120684) + (xy 158.420314 130.159071) (xy 158.41755 130.190288) (xy 158.409553 130.218226) (xy 158.396524 130.243445) + (xy 158.37859 130.266176) (xy 158.35659 130.285301) (xy 158.330139 130.301104) (xy 158.366606 130.31399) + (xy 158.395157 130.332563) (xy 158.417795 130.357361) (xy 158.436678 130.391205) (xy 158.448441 130.429302) + (xy 158.452554 130.473185) (xy 158.448193 130.520694) (xy 158.435703 130.562118) (xy 158.415535 130.598516) + (xy 158.387536 130.630692) (xy 158.352681 130.657962) (xy 158.31557 130.676835) (xy 158.275583 130.688109) + (xy 158.231807 130.691942) (xy 158.190963 130.688542) (xy 158.154102 130.678609) (xy 158.120368 130.662132) + (xy 158.089169 130.638556) (xy 158.06379 130.610516) (xy 158.044131 130.577793) (xy 158.030219 130.539614) + ) + ) + (polygon + (pts + (xy 159.640453 130.407448) (xy 159.640453 130.325382) (xy 159.918597 130.325382) (xy 159.918597 130.581751) + (xy 159.874167 130.616211) (xy 159.830144 130.643487) (xy 159.786315 130.664287) (xy 159.739964 130.679755) + (xy 159.693303 130.6889) (xy 159.645875 130.691942) (xy 159.583162 130.687141) (xy 159.52635 130.673133) + (xy 159.47427 130.650011) (xy 159.428307 130.61847) (xy 159.388572 130.578087) (xy 159.354836 130.527597) + (xy 159.331159 130.472619) (xy 159.316173 130.408682) (xy 159.310872 130.334187) (xy 159.316151 130.258735) + (xy 159.331189 130.192829) (xy 159.355129 130.135092) (xy 159.389141 130.081598) (xy 159.427754 130.040542) + (xy 159.470997 130.010028) (xy 159.52057 129.988022) (xy 159.576565 129.974475) (xy 159.640404 129.969764) + (xy 159.687897 129.972535) (xy 159.729685 129.980467) (xy 159.766629 129.993187) (xy 159.800659 130.011025) + (xy 159.830229 130.033069) (xy 159.855729 130.059609) (xy 159.875862 130.089581) (xy 159.89354 130.12833) + (xy 159.908192 130.177664) (xy 159.830083 130.199548) (xy 159.810808 130.14511) (xy 159.790174 130.111498) + (xy 159.762543 130.085629) (xy 159.726769 130.065721) (xy 159.685629 130.053374) (xy 159.638255 130.049094) + (xy 159.591563 130.052631) (xy 159.55085 130.062785) (xy 159.51501 130.079271) (xy 159.483983 130.102031) + (xy 159.456275 130.132785) (xy 159.431919 130.173048) (xy 159.415124 130.216341) (xy 159.404355 130.267646) + (xy 159.400509 130.328374) (xy 159.405523 130.399407) (xy 159.419267 130.456327) (xy 159.440261 130.501677) + (xy 159.467725 130.537556) (xy 159.504072 130.568142) (xy 159.544668 130.589591) (xy 159.590397 130.602629) + (xy 159.642602 130.60714) (xy 159.693702 130.602041) (xy 159.747822 130.586026) (xy 159.797483 130.562063) + (xy 159.833356 130.535718) (xy 159.833356 130.407448) + ) + ) + (polygon + (pts + (xy 160.042721 130.681) (xy 160.042721 129.980706) (xy 160.131821 129.980706) (xy 160.477229 130.532042) + (xy 160.477229 129.980706) (xy 160.560272 129.980706) (xy 160.560272 130.681) (xy 160.471172 130.681) + (xy 160.12635 130.130519) (xy 160.12635 130.681) + ) + ) + (polygon + (pts + (xy 161.011884 129.984463) (xy 161.060725 129.993615) (xy 161.096886 130.00764) (xy 161.129898 130.027825) + (xy 161.160181 130.054779) (xy 161.185404 130.085832) (xy 161.207346 130.122872) (xy 161.225785 130.166765) + (xy 161.238347 130.21226) (xy 161.246412 130.265328) (xy 161.249281 130.327049) (xy 161.244395 130.405846) + (xy 161.23071 130.472511) (xy 161.209371 130.528836) (xy 161.17836 130.581394) (xy 161.144178 130.61969) + (xy 161.106936 130.646378) (xy 161.063469 130.664824) (xy 161.009701 130.676703) (xy 160.943244 130.681) + (xy 160.706085 130.681) (xy 160.706085 130.598934) (xy 160.792937 130.598934) (xy 160.93284 130.598934) + (xy 160.989002 130.595743) (xy 161.030746 130.58728) (xy 161.061263 130.574784) (xy 161.087252 130.556214) + (xy 161.109664 130.530736) (xy 161.128478 130.49695) (xy 161.14517 130.448662) (xy 161.155847 130.39214) + (xy 161.159644 130.326066) (xy 161.155335 130.254948) (xy 161.143764 130.200054) (xy 161.126573 130.158259) + (xy 161.100919 130.120261) (xy 161.072638 130.093791) (xy 161.041577 130.076663) (xy 161.001274 130.0669) + (xy 160.930642 130.062772) (xy 160.792937 130.062772) (xy 160.792937 130.598934) (xy 160.706085 130.598934) + (xy 160.706085 129.980706) (xy 160.932889 129.980706) + ) + ) + ) + ) + (gr_text "CANL" + (at 193.6 84.61 90) + (layer "F.SilkS" knockout) + (uuid "6d869efe-d03c-4fc9-9b75-5e397ee445a1") + (effects + (font + (face "Arial Black") + (size 1 1) + (thickness 0.2) + (bold yes) + ) + (justify left bottom) + ) + (render_cache "CANL" 90 + (polygon + (pts + (xy 193.019672 83.840818) (xy 193.10192 83.569586) (xy 193.175829 83.592177) (xy 193.238645 83.621005) + (xy 193.291819 83.655682) (xy 193.338622 83.69816) (xy 193.376788 83.74658) (xy 193.406857 83.801556) + (xy 193.427379 83.8609) (xy 193.440773 83.933888) (xy 193.445631 84.023206) (xy 193.439676 84.131592) + (xy 193.423321 84.21935) (xy 193.39837 84.28998) (xy 193.371392 84.338267) (xy 193.335407 84.383975) + (xy 193.289423 84.427406) (xy 193.232102 84.468644) (xy 193.171682 84.500138) (xy 193.101831 84.523611) + (xy 193.021006 84.53849) (xy 192.927409 84.543749) (xy 192.826668 84.537689) (xy 192.740181 84.520565) + (xy 192.665846 84.493548) (xy 192.60189 84.457222) (xy 192.546939 84.411552) (xy 192.500774 84.356748) + (xy 192.4642 84.29341) (xy 192.437105 84.220264) (xy 192.41999 84.135641) (xy 192.413949 84.037555) + (xy 192.419466 83.941624) (xy 192.434834 83.861681) (xy 192.458679 83.795208) (xy 192.490214 83.740068) + (xy 192.531661 83.691152) (xy 192.583495 83.648048) (xy 192.647132 83.61062) (xy 192.724443 83.579173) + (xy 192.785198 83.852419) (xy 192.743008 83.868287) (xy 192.718276 83.882461) (xy 192.686704 83.911491) + (xy 192.663627 83.946025) (xy 192.649408 83.9853) (xy 192.644515 84.030045) (xy 192.650041 84.080652) + (xy 192.665842 84.123359) (xy 192.691757 84.159894) (xy 192.728961 84.191245) (xy 192.77304 84.212887) + (xy 192.836542 84.227866) (xy 192.925699 84.233621) (xy 193.012966 84.229402) (xy 193.076736 84.218353) + (xy 193.122124 84.202469) (xy 193.153456 84.183063) (xy 193.180069 84.155671) (xy 193.199094 84.12356) + (xy 193.210903 84.08579) (xy 193.215066 84.040975) (xy 193.208885 83.983906) (xy 193.191911 83.940223) + (xy 193.165057 83.906763) (xy 193.129277 83.880763) (xy 193.081719 83.858552) + ) + ) + (polygon + (pts + (xy 193.43 82.753815) (xy 193.265868 82.80303) (xy 193.265868 83.155472) (xy 193.43 83.204016) + (xy 193.43 83.52031) (xy 192.429581 83.143871) (xy 192.429581 82.978579) (xy 192.689883 82.978579) + (xy 193.050935 83.08855) (xy 193.050935 82.867937) (xy 192.689883 82.978579) (xy 192.429581 82.978579) + (xy 192.429581 82.806449) (xy 193.43 82.43001) + ) + ) + (polygon + (pts + (xy 192.429581 82.328771) (xy 192.429581 82.039832) (xy 192.982913 81.662721) (xy 192.429581 81.662721) + (xy 192.429581 81.371034) (xy 193.43 81.371034) (xy 193.43 81.662721) (xy 192.879781 82.037756) + (xy 193.43 82.037756) (xy 193.43 82.328771) + ) + ) + (polygon + (pts + (xy 192.429581 81.165321) (xy 192.429581 80.855865) (xy 193.183803 80.855865) (xy 193.183803 80.372875) + (xy 193.43 80.372875) (xy 193.43 81.165321) + ) + ) + ) + ) + (gr_text "COM\n" + (at 129.2 66.4 180) + (layer "F.SilkS" knockout) + (uuid "7917da8b-3892-468c-8b98-2634a0000d14") + (effects + (font + (face "Arial Black") + (size 1 1) + (thickness 0.2) + (bold yes) + ) + (justify left bottom) + ) + (render_cache "COM\n" 180 + (polygon + (pts + (xy 128.430818 66.980327) (xy 128.159586 66.898079) (xy 128.182177 66.82417) (xy 128.211005 66.761354) + (xy 128.245682 66.70818) (xy 128.28816 66.661377) (xy 128.33658 66.623211) (xy 128.391556 66.593142) + (xy 128.4509 66.57262) (xy 128.523888 66.559226) (xy 128.613206 66.554368) (xy 128.721592 66.560323) + (xy 128.80935 66.576678) (xy 128.87998 66.601629) (xy 128.928267 66.628607) (xy 128.973975 66.664592) + (xy 129.017406 66.710576) (xy 129.058644 66.767897) (xy 129.090138 66.828317) (xy 129.113611 66.898168) + (xy 129.12849 66.978993) (xy 129.133749 67.07259) (xy 129.127689 67.173331) (xy 129.110565 67.259818) + (xy 129.083548 67.334153) (xy 129.047222 67.398109) (xy 129.001552 67.45306) (xy 128.946748 67.499225) + (xy 128.88341 67.535799) (xy 128.810264 67.562894) (xy 128.725641 67.580009) (xy 128.627555 67.58605) + (xy 128.531624 67.580533) (xy 128.451681 67.565165) (xy 128.385208 67.54132) (xy 128.330068 67.509785) + (xy 128.281152 67.468338) (xy 128.238048 67.416504) (xy 128.20062 67.352867) (xy 128.169173 67.275556) + (xy 128.442419 67.214801) (xy 128.458287 67.256991) (xy 128.472461 67.281723) (xy 128.501491 67.313295) + (xy 128.536025 67.336372) (xy 128.5753 67.350591) (xy 128.620045 67.355484) (xy 128.670652 67.349958) + (xy 128.713359 67.334157) (xy 128.749894 67.308242) (xy 128.781245 67.271038) (xy 128.802887 67.226959) + (xy 128.817866 67.163457) (xy 128.823621 67.0743) (xy 128.819402 66.987033) (xy 128.808353 66.923263) + (xy 128.792469 66.877875) (xy 128.773063 66.846543) (xy 128.745671 66.81993) (xy 128.71356 66.800905) + (xy 128.67579 66.789096) (xy 128.630975 66.784933) (xy 128.573906 66.791114) (xy 128.530223 66.808088) + (xy 128.496763 66.834942) (xy 128.470763 66.870722) (xy 128.448552 66.91828) + ) + ) + (polygon + (pts + (xy 127.630853 66.561037) (xy 127.723228 66.579527) (xy 127.799145 66.608101) (xy 127.851421 66.638495) + (xy 127.898611 66.676563) (xy 127.941131 66.722867) (xy 127.979152 66.778278) (xy 128.008181 66.837224) + (xy 128.02975 66.904521) (xy 128.043362 66.981462) (xy 128.04815 67.069537) (xy 128.041991 67.168414) + (xy 128.024498 67.254123) (xy 127.996728 67.328598) (xy 127.959136 67.393462) (xy 127.911557 67.449945) + (xy 127.854878 67.497368) (xy 127.789888 67.534831) (xy 127.715366 67.562499) (xy 127.629716 67.579919) + (xy 127.531027 67.58605) (xy 127.429318 67.579932) (xy 127.341856 67.562632) (xy 127.266549 67.535315) + (xy 127.20163 67.49856) (xy 127.145734 67.452327) (xy 127.098616 67.396789) (xy 127.061397 67.332966) + (xy 127.033904 67.259639) (xy 127.016584 67.175198) (xy 127.010698 67.081139) (xy 127.31994 67.081139) + (xy 127.324299 67.153132) (xy 127.336118 67.209484) (xy 127.35394 67.253176) (xy 127.376971 67.286669) + (xy 127.407608 67.314761) (xy 127.442923 67.334822) (xy 127.483842 67.347227) (xy 127.531699 67.351577) + (xy 127.577296 67.347237) (xy 127.616808 67.334771) (xy 127.651447 67.314419) (xy 127.68203 67.285631) + (xy 127.70458 67.251771) (xy 127.722316 67.206258) (xy 127.734247 67.14607) (xy 127.738695 67.067583) + (xy 127.734284 66.989839) (xy 127.722435 66.930053) (xy 127.704795 66.884695) (xy 127.682336 66.850818) + (xy 127.651952 66.822244) (xy 127.616943 66.801896) (xy 127.576391 66.789335) (xy 127.528951 66.784933) + (xy 127.479952 66.789333) (xy 127.43883 66.801778) (xy 127.404063 66.82173) (xy 127.37459 66.849474) + (xy 127.353375 66.882457) (xy 127.33623 66.92923) (xy 127.32442 66.993849) (xy 127.31994 67.081139) + (xy 127.010698 67.081139) (xy 127.010484 67.077719) (xy 127.014688 66.988893) (xy 127.026528 66.91254) + (xy 127.045049 66.847015) (xy 127.069591 66.790856) (xy 127.102518 66.737844) (xy 127.141696 66.69146) + (xy 127.187451 66.651159) (xy 127.240378 66.61665) (xy 127.296746 66.590497) (xy 127.361103 66.571014) + (xy 127.434649 66.558701) (xy 127.518754 66.554368) + ) + ) + (polygon + (pts + (xy 126.847086 67.570418) (xy 126.439933 67.570418) (xy 126.282824 66.962131) (xy 126.126386 67.570418) + (xy 125.720638 67.570418) (xy 125.720638 66.57) (xy 125.973368 66.57) (xy 125.973368 67.333747) + (xy 126.169434 66.57) (xy 126.39829 66.57) (xy 126.593623 67.333747) (xy 126.593623 66.57) (xy 126.847086 66.57) + ) + ) + ) + ) + (gr_text "NO" + (at 134.6 66.4 180) + (layer "F.SilkS" knockout) + (uuid "7a75e052-2c4c-42ce-b3b5-b971f2a59536") + (effects + (font + (face "Arial Black") + (size 1 1) + (thickness 0.2) + (bold yes) + ) + (justify left bottom) + ) + (render_cache "NO" 180 + (polygon + (pts + (xy 134.495464 67.570418) (xy 134.206524 67.570418) (xy 133.829413 67.017086) (xy 133.829413 67.570418) + (xy 133.537726 67.570418) (xy 133.537726 66.57) (xy 133.829413 66.57) (xy 134.204448 67.120218) + (xy 134.204448 66.57) (xy 134.495464 66.57) + ) + ) + (polygon + (pts + (xy 132.953672 66.561037) (xy 133.046047 66.579527) (xy 133.121964 66.608101) (xy 133.17424 66.638495) + (xy 133.22143 66.676563) (xy 133.26395 66.722867) (xy 133.301971 66.778278) (xy 133.331001 66.837224) + (xy 133.352569 66.904521) (xy 133.366182 66.981462) (xy 133.370969 67.069537) (xy 133.36481 67.168414) + (xy 133.347317 67.254123) (xy 133.319547 67.328598) (xy 133.281955 67.393462) (xy 133.234377 67.449945) + (xy 133.177698 67.497368) (xy 133.112707 67.534831) (xy 133.038186 67.562499) (xy 132.952535 67.579919) + (xy 132.853846 67.58605) (xy 132.752137 67.579932) (xy 132.664675 67.562632) (xy 132.589368 67.535315) + (xy 132.52445 67.49856) (xy 132.468553 67.452327) (xy 132.421435 67.396789) (xy 132.384216 67.332966) + (xy 132.356723 67.259639) (xy 132.339403 67.175198) (xy 132.333518 67.081139) (xy 132.642759 67.081139) + (xy 132.647119 67.153132) (xy 132.658937 67.209484) (xy 132.676759 67.253176) (xy 132.69979 67.286669) + (xy 132.730428 67.314761) (xy 132.765742 67.334822) (xy 132.806661 67.347227) (xy 132.854518 67.351577) + (xy 132.900115 67.347237) (xy 132.939627 67.334771) (xy 132.974266 67.314419) (xy 133.004849 67.285631) + (xy 133.0274 67.251771) (xy 133.045136 67.206258) (xy 133.057066 67.14607) (xy 133.061514 67.067583) + (xy 133.057103 66.989839) (xy 133.045254 66.930053) (xy 133.027615 66.884695) (xy 133.005155 66.850818) + (xy 132.974771 66.822244) (xy 132.939762 66.801896) (xy 132.89921 66.789335) (xy 132.85177 66.784933) + (xy 132.802771 66.789333) (xy 132.76165 66.801778) (xy 132.726882 66.82173) (xy 132.697409 66.849474) + (xy 132.676195 66.882457) (xy 132.659049 66.92923) (xy 132.647239 66.993849) (xy 132.642759 67.081139) + (xy 132.333518 67.081139) (xy 132.333304 67.077719) (xy 132.337508 66.988893) (xy 132.349347 66.91254) + (xy 132.367868 66.847015) (xy 132.392411 66.790856) (xy 132.425338 66.737844) (xy 132.464515 66.69146) + (xy 132.510271 66.651159) (xy 132.563197 66.61665) (xy 132.619565 66.590497) (xy 132.683922 66.571014) + (xy 132.757468 66.558701) (xy 132.841573 66.554368) + ) + ) + ) + ) + (gr_text "A5 A6 3V3 GND" + (at 139.8 131 0) + (layer "F.SilkS") + (uuid "88f0fff0-cd93-4535-ac04-777676e440e5") + (effects + (font + (face "Arial Narrow") + (size 0.7 0.8) + (thickness 0.1) + ) + (justify left bottom) + ) + (render_cache "A5 A6 3V3 GND" 0 + (polygon + (pts + (xy 140.413733 130.881) (xy 140.314228 130.881) (xy 140.237732 130.670364) (xy 139.963398 130.670364) + (xy 139.891249 130.881) (xy 139.798925 130.881) (xy 139.902469 130.59377) (xy 139.988555 130.59377) + (xy 140.210963 130.59377) (xy 140.142672 130.399676) (xy 140.096217 130.254352) (xy 140.081097 130.321389) + (xy 140.060704 130.388221) (xy 139.988555 130.59377) (xy 139.902469 130.59377) (xy 140.051374 130.180706) + (xy 140.144822 130.180706) + ) + ) + (polygon + (pts + (xy 140.448611 130.694984) (xy 140.533314 130.689513) (xy 140.54355 130.732752) (xy 140.558663 130.764917) + (xy 140.577815 130.788377) (xy 140.602823 130.80674) (xy 140.629411 130.817294) (xy 140.658464 130.820818) + (xy 140.694293 130.815913) (xy 140.726849 130.80112) (xy 140.757383 130.774913) (xy 140.779544 130.742418) + (xy 140.793748 130.701382) (xy 140.798904 130.649549) (xy 140.793883 130.60093) (xy 140.780133 130.563106) + (xy 140.75875 130.533717) (xy 140.729376 130.51066) (xy 140.696226 130.497163) (xy 140.657927 130.492556) + (xy 140.622589 130.496944) (xy 140.589295 130.510251) (xy 140.560918 130.531169) (xy 140.538785 130.55949) + (xy 140.462777 130.549019) (xy 140.52672 130.188913) (xy 140.852979 130.188913) (xy 140.852979 130.268243) + (xy 140.591249 130.268243) (xy 140.555687 130.460413) (xy 140.596806 130.435068) (xy 140.637812 130.42067) + (xy 140.679762 130.415961) (xy 140.71922 130.419709) (xy 140.75575 130.430831) (xy 140.790218 130.449689) + (xy 140.823182 130.477339) (xy 140.848943 130.509259) (xy 140.867912 130.546722) (xy 140.879896 130.590779) + (xy 140.884145 130.642753) (xy 140.880106 130.693637) (xy 140.868424 130.73942) (xy 140.849459 130.780889) + (xy 140.823182 130.818681) (xy 140.789546 130.851166) (xy 140.751728 130.873665) (xy 140.708875 130.887246) + (xy 140.659539 130.891942) (xy 140.618053 130.88859) (xy 140.580755 130.878825) (xy 140.546783 130.862689) + (xy 140.515533 130.83971) (xy 140.4902 130.812226) (xy 140.470473 130.77958) (xy 140.456433 130.740881) + ) + ) + (polygon + (pts + (xy 142.27545 130.881) (xy 142.175945 130.881) (xy 142.099448 130.670364) (xy 141.825115 130.670364) + (xy 141.752965 130.881) (xy 141.660642 130.881) (xy 141.764186 130.59377) (xy 141.850272 130.59377) + (xy 142.072679 130.59377) (xy 142.004389 130.399676) (xy 141.957934 130.254352) (xy 141.942814 130.321389) + (xy 141.922421 130.388221) (xy 141.850272 130.59377) (xy 141.764186 130.59377) (xy 141.913091 130.180706) + (xy 142.006538 130.180706) + ) + ) + (polygon + (pts + (xy 142.564786 130.18308) (xy 142.606058 130.197918) (xy 142.6424 130.222808) (xy 142.670462 130.255293) + (xy 142.691254 130.297851) (xy 142.7039 130.353044) (xy 142.623593 130.358515) (xy 142.613616 130.323171) + (xy 142.602123 130.298613) (xy 142.589692 130.282263) (xy 142.566173 130.263493) (xy 142.540636 130.252712) + (xy 142.512121 130.249094) (xy 142.480068 130.253443) (xy 142.45115 130.266515) (xy 142.424226 130.289621) + (xy 142.398988 130.325561) (xy 142.380223 130.370915) (xy 142.367081 130.43425) (xy 142.361814 130.520552) + (xy 142.382673 130.491476) (xy 142.405968 130.468439) (xy 142.431765 130.450668) (xy 142.460745 130.437323) + (xy 142.490263 130.429504) (xy 142.520816 130.426903) (xy 142.557971 130.43062) (xy 142.59256 130.441699) + (xy 142.625443 130.460625) (xy 142.657152 130.488623) (xy 142.681707 130.520566) (xy 142.699841 130.558003) + (xy 142.711313 130.601956) (xy 142.71538 130.653695) (xy 142.711993 130.699841) (xy 142.702149 130.741976) + (xy 142.68612 130.780683) (xy 142.663723 130.816762) (xy 142.638669 130.844354) (xy 142.61099 130.8648) + (xy 142.579222 130.879925) (xy 142.545731 130.88891) (xy 142.509874 130.891942) (xy 142.462606 130.887112) + (xy 142.420294 130.872922) (xy 142.381644 130.848961) (xy 142.345938 130.813723) (xy 142.32072 130.774316) + (xy 142.300459 130.720376) (xy 142.287757 130.653866) (xy 142.374368 130.653866) (xy 142.379377 130.702964) + (xy 142.393326 130.742724) (xy 142.415352 130.775041) (xy 142.445477 130.801364) (xy 142.476784 130.816018) + (xy 142.51046 130.820818) (xy 142.539872 130.816389) (xy 142.567827 130.802681) (xy 142.595408 130.777648) + (xy 142.615327 130.747185) (xy 142.628186 130.708393) (xy 142.632875 130.65908) (xy 142.628187 130.610723) + (xy 142.615407 130.573252) (xy 142.595701 130.544317) (xy 142.56834 130.521158) (xy 142.538498 130.507931) + (xy 142.504989 130.503498) (xy 142.472083 130.507842) (xy 142.441934 130.520943) (xy 142.413447 130.54406) + (xy 142.39246 130.572916) (xy 142.379161 130.608884) (xy 142.374368 130.653866) (xy 142.287757 130.653866) + (xy 142.286645 130.648042) (xy 142.281458 130.552823) (xy 142.284955 130.465742) (xy 142.294476 130.395883) + (xy 142.308725 130.340554) (xy 142.326663 130.297323) (xy 142.34755 130.264054) (xy 142.376945 130.231718) + (xy 142.408185 130.207843) (xy 142.441528 130.191272) (xy 142.47753 130.181349) (xy 142.517006 130.177971) + ) + ) + (polygon + (pts + (xy 143.560607 130.694984) (xy 143.6415 130.686778) (xy 143.657047 130.741104) (xy 143.678009 130.778088) + (xy 143.703238 130.802106) (xy 143.732977 130.816032) (xy 143.768848 130.820818) (xy 143.803559 130.816405) + (xy 143.835047 130.803189) (xy 143.864445 130.780084) (xy 143.886435 130.751087) (xy 143.900067 130.716385) + (xy 143.904891 130.674468) (xy 143.900414 130.634974) (xy 143.887847 130.602744) (xy 143.867718 130.576245) + (xy 143.840647 130.55535) (xy 143.810619 130.543186) (xy 143.776468 130.53906) (xy 143.752421 130.541182) + (xy 143.719609 130.548634) (xy 143.728939 130.473407) (xy 143.741493 130.47439) (xy 143.779736 130.470643) + (xy 143.811497 130.459984) (xy 143.838213 130.442547) (xy 143.858518 130.419463) (xy 143.870981 130.39156) + (xy 143.875387 130.357447) (xy 143.871652 130.325869) (xy 143.861144 130.300067) (xy 143.844221 130.2788) + (xy 143.821689 130.262152) (xy 143.796681 130.252407) (xy 143.768262 130.249094) (xy 143.738867 130.252574) + (xy 143.713046 130.262813) (xy 143.689811 130.280339) (xy 143.672237 130.302772) (xy 143.658396 130.333543) + (xy 143.64912 130.374928) (xy 143.568813 130.358515) (xy 143.579726 130.313863) (xy 143.59513 130.277295) + (xy 143.614498 130.247542) (xy 143.637641 130.223577) (xy 143.675965 130.198184) (xy 143.718656 130.183122) + (xy 143.767187 130.177971) (xy 143.805839 130.181237) (xy 143.840807 130.190793) (xy 143.872906 130.206682) + (xy 143.902693 130.229476) (xy 143.926877 130.256595) (xy 143.944145 130.286797) (xy 143.954751 130.320684) + (xy 143.958429 130.359071) (xy 143.955666 130.390288) (xy 143.947669 130.418226) (xy 143.93464 130.443445) + (xy 143.916706 130.466176) (xy 143.894706 130.485301) (xy 143.868255 130.501104) (xy 143.904722 130.51399) + (xy 143.933272 130.532563) (xy 143.955911 130.557361) (xy 143.974794 130.591205) (xy 143.986557 130.629302) + (xy 143.990669 130.673185) (xy 143.986309 130.720694) (xy 143.973819 130.762118) (xy 143.953651 130.798516) + (xy 143.925652 130.830692) (xy 143.890797 130.857962) (xy 143.853686 130.876835) (xy 143.813699 130.888109) + (xy 143.769923 130.891942) (xy 143.729078 130.888542) (xy 143.692218 130.878609) (xy 143.658484 130.862132) + (xy 143.627285 130.838556) (xy 143.601905 130.810516) (xy 143.582247 130.777793) (xy 143.568335 130.739614) + ) + ) + (polygon + (pts + (xy 144.292847 130.881) (xy 144.038199 130.180706) (xy 144.132184 130.180706) (xy 144.303203 130.689257) + (xy 144.337641 130.804405) (xy 144.372616 130.689257) (xy 144.55023 130.180706) (xy 144.638792 130.180706) + (xy 144.381898 130.881) + ) + ) + (polygon + (pts + (xy 144.682951 130.694984) (xy 144.763845 130.686778) (xy 144.779392 130.741104) (xy 144.800354 130.778088) + (xy 144.825582 130.802106) (xy 144.855322 130.816032) (xy 144.891193 130.820818) (xy 144.925904 130.816405) + (xy 144.957392 130.803189) (xy 144.986789 130.780084) (xy 145.00878 130.751087) (xy 145.022412 130.716385) + (xy 145.027236 130.674468) (xy 145.022759 130.634974) (xy 145.010191 130.602744) (xy 144.990062 130.576245) + (xy 144.962992 130.55535) (xy 144.932964 130.543186) (xy 144.898813 130.53906) (xy 144.874766 130.541182) + (xy 144.841953 130.548634) (xy 144.851284 130.473407) (xy 144.863838 130.47439) (xy 144.902081 130.470643) + (xy 144.933841 130.459984) (xy 144.960558 130.442547) (xy 144.980862 130.419463) (xy 144.993325 130.39156) + (xy 144.997732 130.357447) (xy 144.993997 130.325869) (xy 144.983488 130.300067) (xy 144.966566 130.2788) + (xy 144.944034 130.262152) (xy 144.919026 130.252407) (xy 144.890607 130.249094) (xy 144.861211 130.252574) + (xy 144.83539 130.262813) (xy 144.812156 130.280339) (xy 144.794582 130.302772) (xy 144.780741 130.333543) + (xy 144.771465 130.374928) (xy 144.691158 130.358515) (xy 144.702071 130.313863) (xy 144.717474 130.277295) + (xy 144.736843 130.247542) (xy 144.759986 130.223577) (xy 144.79831 130.198184) (xy 144.841001 130.183122) + (xy 144.889532 130.177971) (xy 144.928183 130.181237) (xy 144.963152 130.190793) (xy 144.995251 130.206682) + (xy 145.025038 130.229476) (xy 145.049222 130.256595) (xy 145.06649 130.286797) (xy 145.077095 130.320684) + (xy 145.080774 130.359071) (xy 145.07801 130.390288) (xy 145.070014 130.418226) (xy 145.056985 130.443445) + (xy 145.039051 130.466176) (xy 145.017051 130.485301) (xy 144.9906 130.501104) (xy 145.027066 130.51399) + (xy 145.055617 130.532563) (xy 145.078256 130.557361) (xy 145.097138 130.591205) (xy 145.108902 130.629302) + (xy 145.113014 130.673185) (xy 145.108654 130.720694) (xy 145.096164 130.762118) (xy 145.075996 130.798516) + (xy 145.047997 130.830692) (xy 145.013142 130.857962) (xy 144.97603 130.876835) (xy 144.936044 130.888109) + (xy 144.892267 130.891942) (xy 144.851423 130.888542) (xy 144.814562 130.878609) (xy 144.780829 130.862132) + (xy 144.74963 130.838556) (xy 144.72425 130.810516) (xy 144.704592 130.777793) (xy 144.690679 130.739614) + ) + ) + (polygon + (pts + (xy 146.300914 130.607448) (xy 146.300914 130.525382) (xy 146.579057 130.525382) (xy 146.579057 130.781751) + (xy 146.534628 130.816211) (xy 146.490605 130.843487) (xy 146.446775 130.864287) (xy 146.400425 130.879755) + (xy 146.353764 130.8889) (xy 146.306336 130.891942) (xy 146.243623 130.887141) (xy 146.186811 130.873133) + (xy 146.134731 130.850011) (xy 146.088768 130.81847) (xy 146.049033 130.778087) (xy 146.015296 130.727597) + (xy 145.991619 130.672619) (xy 145.976634 130.608682) (xy 145.971332 130.534187) (xy 145.976612 130.458735) + (xy 145.991649 130.392829) (xy 146.015589 130.335092) (xy 146.049601 130.281598) (xy 146.088215 130.240542) + (xy 146.131458 130.210028) (xy 146.181031 130.188022) (xy 146.237025 130.174475) (xy 146.300865 130.169764) + (xy 146.348358 130.172535) (xy 146.390146 130.180467) (xy 146.42709 130.193187) (xy 146.46112 130.211025) + (xy 146.490689 130.233069) (xy 146.516189 130.259609) (xy 146.536323 130.289581) (xy 146.554001 130.32833) + (xy 146.568653 130.377664) (xy 146.490544 130.399548) (xy 146.471269 130.34511) (xy 146.450635 130.311498) + (xy 146.423003 130.285629) (xy 146.387229 130.265721) (xy 146.346089 130.253374) (xy 146.298715 130.249094) + (xy 146.252023 130.252631) (xy 146.211311 130.262785) (xy 146.175471 130.279271) (xy 146.144443 130.302031) + (xy 146.116736 130.332785) (xy 146.092379 130.373048) (xy 146.075585 130.416341) (xy 146.064815 130.467646) + (xy 146.060969 130.528374) (xy 146.065984 130.599407) (xy 146.079728 130.656327) (xy 146.100721 130.701677) + (xy 146.128185 130.737556) (xy 146.164532 130.768142) (xy 146.205129 130.789591) (xy 146.250857 130.802629) + (xy 146.303063 130.80714) (xy 146.354162 130.802041) (xy 146.408283 130.786026) (xy 146.457944 130.762063) + (xy 146.493817 130.735718) (xy 146.493817 130.607448) + ) + ) + (polygon + (pts + (xy 146.703182 130.881) (xy 146.703182 130.180706) (xy 146.792281 130.180706) (xy 147.13769 130.732042) + (xy 147.13769 130.180706) (xy 147.220732 130.180706) (xy 147.220732 130.881) (xy 147.131632 130.881) + (xy 146.78681 130.330519) (xy 146.78681 130.881) + ) + ) + (polygon + (pts + (xy 147.672345 130.184463) (xy 147.721186 130.193615) (xy 147.757346 130.20764) (xy 147.790358 130.227825) + (xy 147.820642 130.254779) (xy 147.845865 130.285832) (xy 147.867806 130.322872) (xy 147.886245 130.366765) + (xy 147.898807 130.41226) (xy 147.906872 130.465328) (xy 147.909741 130.527049) (xy 147.904856 130.605846) + (xy 147.89117 130.672511) (xy 147.869832 130.728836) (xy 147.838821 130.781394) (xy 147.804638 130.81969) + (xy 147.767397 130.846378) (xy 147.723929 130.864824) (xy 147.670161 130.876703) (xy 147.603705 130.881) + (xy 147.366545 130.881) (xy 147.366545 130.798934) (xy 147.453398 130.798934) (xy 147.5933 130.798934) + (xy 147.649462 130.795743) (xy 147.691207 130.78728) (xy 147.721723 130.774784) (xy 147.747712 130.756214) + (xy 147.770124 130.730736) (xy 147.788939 130.69695) (xy 147.805631 130.648662) (xy 147.816307 130.59214) + (xy 147.820104 130.526066) (xy 147.815796 130.454948) (xy 147.804225 130.400054) (xy 147.787034 130.358259) + (xy 147.761379 130.320261) (xy 147.733099 130.293791) (xy 147.702037 130.276663) (xy 147.661735 130.2669) + (xy 147.591102 130.262772) (xy 147.453398 130.262772) (xy 147.453398 130.798934) (xy 147.366545 130.798934) + (xy 147.366545 130.180706) (xy 147.593349 130.180706) + ) + ) + ) + ) + (gr_text "A3 A4 3V3 GND" + (at 177.4 131.2 0) + (layer "F.SilkS") + (uuid "8c8ffb75-792b-47e7-8629-da0c10b8fffb") + (effects + (font + (face "Arial Narrow") + (size 0.7 0.8) + (thickness 0.1) + ) + (justify left bottom) + ) + (render_cache "A3 A4 3V3 GND" 0 + (polygon + (pts + (xy 178.013733 131.081) (xy 177.914228 131.081) (xy 177.837732 130.870364) (xy 177.563398 130.870364) + (xy 177.491249 131.081) (xy 177.398925 131.081) (xy 177.502469 130.79377) (xy 177.588555 130.79377) + (xy 177.810963 130.79377) (xy 177.742672 130.599676) (xy 177.696217 130.454352) (xy 177.681097 130.521389) + (xy 177.660704 130.588221) (xy 177.588555 130.79377) (xy 177.502469 130.79377) (xy 177.651374 130.380706) + (xy 177.744822 130.380706) + ) + ) + (polygon + (pts + (xy 178.049148 130.894984) (xy 178.130041 130.886778) (xy 178.145589 130.941104) (xy 178.166551 130.978088) + (xy 178.191779 131.002106) (xy 178.221519 131.016032) (xy 178.25739 131.020818) (xy 178.292101 131.016405) + (xy 178.323588 131.003189) (xy 178.352986 130.980084) (xy 178.374977 130.951087) (xy 178.388608 130.916385) + (xy 178.393433 130.874468) (xy 178.388955 130.834974) (xy 178.376388 130.802744) (xy 178.356259 130.776245) + (xy 178.329189 130.75535) (xy 178.29916 130.743186) (xy 178.26501 130.73906) (xy 178.240962 130.741182) + (xy 178.20815 130.748634) (xy 178.21748 130.673407) (xy 178.230034 130.67439) (xy 178.268278 130.670643) + (xy 178.300038 130.659984) (xy 178.326755 130.642547) (xy 178.347059 130.619463) (xy 178.359522 130.59156) + (xy 178.363928 130.557447) (xy 178.360194 130.525869) (xy 178.349685 130.500067) (xy 178.332763 130.4788) + (xy 178.31023 130.462152) (xy 178.285223 130.452407) (xy 178.256803 130.449094) (xy 178.227408 130.452574) + (xy 178.201587 130.462813) (xy 178.178353 130.480339) (xy 178.160779 130.502772) (xy 178.146937 130.533543) + (xy 178.137662 130.574928) (xy 178.057355 130.558515) (xy 178.068268 130.513863) (xy 178.083671 130.477295) + (xy 178.10304 130.447542) (xy 178.126182 130.423577) (xy 178.164507 130.398184) (xy 178.207198 130.383122) + (xy 178.255729 130.377971) (xy 178.29438 130.381237) (xy 178.329349 130.390793) (xy 178.361447 130.406682) + (xy 178.391235 130.429476) (xy 178.415418 130.456595) (xy 178.432686 130.486797) (xy 178.443292 130.520684) + (xy 178.446971 130.559071) (xy 178.444207 130.590288) (xy 178.43621 130.618226) (xy 178.423182 130.643445) + (xy 178.405247 130.666176) (xy 178.383247 130.685301) (xy 178.356796 130.701104) (xy 178.393263 130.71399) + (xy 178.421814 130.732563) (xy 178.444453 130.757361) (xy 178.463335 130.791205) (xy 178.475098 130.829302) + (xy 178.479211 130.873185) (xy 178.47485 130.920694) (xy 178.462361 130.962118) (xy 178.442192 130.998516) + (xy 178.414193 131.030692) (xy 178.379339 131.057962) (xy 178.342227 131.076835) (xy 178.302241 131.088109) + (xy 178.258464 131.091942) (xy 178.21762 131.088542) (xy 178.180759 131.078609) (xy 178.147026 131.062132) + (xy 178.115826 131.038556) (xy 178.090447 131.010516) (xy 178.070788 130.977793) (xy 178.056876 130.939614) + ) + ) + (polygon + (pts + (xy 179.87545 131.081) (xy 179.775945 131.081) (xy 179.699448 130.870364) (xy 179.425115 130.870364) + (xy 179.352965 131.081) (xy 179.260642 131.081) (xy 179.364186 130.79377) (xy 179.450272 130.79377) + (xy 179.672679 130.79377) (xy 179.604389 130.599676) (xy 179.557934 130.454352) (xy 179.542814 130.521389) + (xy 179.522421 130.588221) (xy 179.450272 130.79377) (xy 179.364186 130.79377) (xy 179.513091 130.380706) + (xy 179.606538 130.380706) + ) + ) + (polygon + (pts + (xy 180.224668 130.834803) (xy 180.313768 130.834803) (xy 180.313768 130.914133) (xy 180.224668 130.914133) + (xy 180.224668 131.081) (xy 180.143775 131.081) (xy 180.143775 130.914133) (xy 179.859085 130.914133) + (xy 179.859085 130.834803) (xy 179.938318 130.834803) (xy 180.143775 130.834803) (xy 180.143775 130.51885) + (xy 179.938318 130.834803) (xy 179.859085 130.834803) (xy 180.159113 130.380706) (xy 180.224668 130.380706) + ) + ) + (polygon + (pts + (xy 181.160607 130.894984) (xy 181.2415 130.886778) (xy 181.257047 130.941104) (xy 181.278009 130.978088) + (xy 181.303238 131.002106) (xy 181.332977 131.016032) (xy 181.368848 131.020818) (xy 181.403559 131.016405) + (xy 181.435047 131.003189) (xy 181.464445 130.980084) (xy 181.486435 130.951087) (xy 181.500067 130.916385) + (xy 181.504891 130.874468) (xy 181.500414 130.834974) (xy 181.487847 130.802744) (xy 181.467718 130.776245) + (xy 181.440647 130.75535) (xy 181.410619 130.743186) (xy 181.376468 130.73906) (xy 181.352421 130.741182) + (xy 181.319609 130.748634) (xy 181.328939 130.673407) (xy 181.341493 130.67439) (xy 181.379736 130.670643) + (xy 181.411497 130.659984) (xy 181.438213 130.642547) (xy 181.458518 130.619463) (xy 181.470981 130.59156) + (xy 181.475387 130.557447) (xy 181.471652 130.525869) (xy 181.461144 130.500067) (xy 181.444221 130.4788) + (xy 181.421689 130.462152) (xy 181.396681 130.452407) (xy 181.368262 130.449094) (xy 181.338867 130.452574) + (xy 181.313046 130.462813) (xy 181.289811 130.480339) (xy 181.272237 130.502772) (xy 181.258396 130.533543) + (xy 181.24912 130.574928) (xy 181.168813 130.558515) (xy 181.179726 130.513863) (xy 181.19513 130.477295) + (xy 181.214498 130.447542) (xy 181.237641 130.423577) (xy 181.275965 130.398184) (xy 181.318656 130.383122) + (xy 181.367187 130.377971) (xy 181.405839 130.381237) (xy 181.440807 130.390793) (xy 181.472906 130.406682) + (xy 181.502693 130.429476) (xy 181.526877 130.456595) (xy 181.544145 130.486797) (xy 181.554751 130.520684) + (xy 181.558429 130.559071) (xy 181.555666 130.590288) (xy 181.547669 130.618226) (xy 181.53464 130.643445) + (xy 181.516706 130.666176) (xy 181.494706 130.685301) (xy 181.468255 130.701104) (xy 181.504722 130.71399) + (xy 181.533272 130.732563) (xy 181.555911 130.757361) (xy 181.574794 130.791205) (xy 181.586557 130.829302) + (xy 181.590669 130.873185) (xy 181.586309 130.920694) (xy 181.573819 130.962118) (xy 181.553651 130.998516) + (xy 181.525652 131.030692) (xy 181.490797 131.057962) (xy 181.453686 131.076835) (xy 181.413699 131.088109) + (xy 181.369923 131.091942) (xy 181.329078 131.088542) (xy 181.292218 131.078609) (xy 181.258484 131.062132) + (xy 181.227285 131.038556) (xy 181.201905 131.010516) (xy 181.182247 130.977793) (xy 181.168335 130.939614) + ) + ) + (polygon + (pts + (xy 181.892847 131.081) (xy 181.638199 130.380706) (xy 181.732184 130.380706) (xy 181.903203 130.889257) + (xy 181.937641 131.004405) (xy 181.972616 130.889257) (xy 182.15023 130.380706) (xy 182.238792 130.380706) + (xy 181.981898 131.081) + ) + ) + (polygon + (pts + (xy 182.282951 130.894984) (xy 182.363845 130.886778) (xy 182.379392 130.941104) (xy 182.400354 130.978088) + (xy 182.425582 131.002106) (xy 182.455322 131.016032) (xy 182.491193 131.020818) (xy 182.525904 131.016405) + (xy 182.557392 131.003189) (xy 182.586789 130.980084) (xy 182.60878 130.951087) (xy 182.622412 130.916385) + (xy 182.627236 130.874468) (xy 182.622759 130.834974) (xy 182.610191 130.802744) (xy 182.590062 130.776245) + (xy 182.562992 130.75535) (xy 182.532964 130.743186) (xy 182.498813 130.73906) (xy 182.474766 130.741182) + (xy 182.441953 130.748634) (xy 182.451284 130.673407) (xy 182.463838 130.67439) (xy 182.502081 130.670643) + (xy 182.533841 130.659984) (xy 182.560558 130.642547) (xy 182.580862 130.619463) (xy 182.593325 130.59156) + (xy 182.597732 130.557447) (xy 182.593997 130.525869) (xy 182.583488 130.500067) (xy 182.566566 130.4788) + (xy 182.544034 130.462152) (xy 182.519026 130.452407) (xy 182.490607 130.449094) (xy 182.461211 130.452574) + (xy 182.43539 130.462813) (xy 182.412156 130.480339) (xy 182.394582 130.502772) (xy 182.380741 130.533543) + (xy 182.371465 130.574928) (xy 182.291158 130.558515) (xy 182.302071 130.513863) (xy 182.317474 130.477295) + (xy 182.336843 130.447542) (xy 182.359986 130.423577) (xy 182.39831 130.398184) (xy 182.441001 130.383122) + (xy 182.489532 130.377971) (xy 182.528183 130.381237) (xy 182.563152 130.390793) (xy 182.595251 130.406682) + (xy 182.625038 130.429476) (xy 182.649222 130.456595) (xy 182.66649 130.486797) (xy 182.677095 130.520684) + (xy 182.680774 130.559071) (xy 182.67801 130.590288) (xy 182.670014 130.618226) (xy 182.656985 130.643445) + (xy 182.639051 130.666176) (xy 182.617051 130.685301) (xy 182.5906 130.701104) (xy 182.627066 130.71399) + (xy 182.655617 130.732563) (xy 182.678256 130.757361) (xy 182.697138 130.791205) (xy 182.708902 130.829302) + (xy 182.713014 130.873185) (xy 182.708654 130.920694) (xy 182.696164 130.962118) (xy 182.675996 130.998516) + (xy 182.647997 131.030692) (xy 182.613142 131.057962) (xy 182.57603 131.076835) (xy 182.536044 131.088109) + (xy 182.492267 131.091942) (xy 182.451423 131.088542) (xy 182.414562 131.078609) (xy 182.380829 131.062132) + (xy 182.34963 131.038556) (xy 182.32425 131.010516) (xy 182.304592 130.977793) (xy 182.290679 130.939614) + ) + ) + (polygon + (pts + (xy 183.900914 130.807448) (xy 183.900914 130.725382) (xy 184.179057 130.725382) (xy 184.179057 130.981751) + (xy 184.134628 131.016211) (xy 184.090605 131.043487) (xy 184.046775 131.064287) (xy 184.000425 131.079755) + (xy 183.953764 131.0889) (xy 183.906336 131.091942) (xy 183.843623 131.087141) (xy 183.786811 131.073133) + (xy 183.734731 131.050011) (xy 183.688768 131.01847) (xy 183.649033 130.978087) (xy 183.615296 130.927597) + (xy 183.591619 130.872619) (xy 183.576634 130.808682) (xy 183.571332 130.734187) (xy 183.576612 130.658735) + (xy 183.591649 130.592829) (xy 183.615589 130.535092) (xy 183.649601 130.481598) (xy 183.688215 130.440542) + (xy 183.731458 130.410028) (xy 183.781031 130.388022) (xy 183.837025 130.374475) (xy 183.900865 130.369764) + (xy 183.948358 130.372535) (xy 183.990146 130.380467) (xy 184.02709 130.393187) (xy 184.06112 130.411025) + (xy 184.090689 130.433069) (xy 184.116189 130.459609) (xy 184.136323 130.489581) (xy 184.154001 130.52833) + (xy 184.168653 130.577664) (xy 184.090544 130.599548) (xy 184.071269 130.54511) (xy 184.050635 130.511498) + (xy 184.023003 130.485629) (xy 183.987229 130.465721) (xy 183.946089 130.453374) (xy 183.898715 130.449094) + (xy 183.852023 130.452631) (xy 183.811311 130.462785) (xy 183.775471 130.479271) (xy 183.744443 130.502031) + (xy 183.716736 130.532785) (xy 183.692379 130.573048) (xy 183.675585 130.616341) (xy 183.664815 130.667646) + (xy 183.660969 130.728374) (xy 183.665984 130.799407) (xy 183.679728 130.856327) (xy 183.700721 130.901677) + (xy 183.728185 130.937556) (xy 183.764532 130.968142) (xy 183.805129 130.989591) (xy 183.850857 131.002629) + (xy 183.903063 131.00714) (xy 183.954162 131.002041) (xy 184.008283 130.986026) (xy 184.057944 130.962063) + (xy 184.093817 130.935718) (xy 184.093817 130.807448) + ) + ) + (polygon + (pts + (xy 184.303182 131.081) (xy 184.303182 130.380706) (xy 184.392281 130.380706) (xy 184.73769 130.932042) + (xy 184.73769 130.380706) (xy 184.820732 130.380706) (xy 184.820732 131.081) (xy 184.731632 131.081) + (xy 184.38681 130.530519) (xy 184.38681 131.081) + ) + ) + (polygon + (pts + (xy 185.272345 130.384463) (xy 185.321186 130.393615) (xy 185.357346 130.40764) (xy 185.390358 130.427825) + (xy 185.420642 130.454779) (xy 185.445865 130.485832) (xy 185.467806 130.522872) (xy 185.486245 130.566765) + (xy 185.498807 130.61226) (xy 185.506872 130.665328) (xy 185.509741 130.727049) (xy 185.504856 130.805846) + (xy 185.49117 130.872511) (xy 185.469832 130.928836) (xy 185.438821 130.981394) (xy 185.404638 131.01969) + (xy 185.367397 131.046378) (xy 185.323929 131.064824) (xy 185.270161 131.076703) (xy 185.203705 131.081) + (xy 184.966545 131.081) (xy 184.966545 130.998934) (xy 185.053398 130.998934) (xy 185.1933 130.998934) + (xy 185.249462 130.995743) (xy 185.291207 130.98728) (xy 185.321723 130.974784) (xy 185.347712 130.956214) + (xy 185.370124 130.930736) (xy 185.388939 130.89695) (xy 185.405631 130.848662) (xy 185.416307 130.79214) + (xy 185.420104 130.726066) (xy 185.415796 130.654948) (xy 185.404225 130.600054) (xy 185.387034 130.558259) + (xy 185.361379 130.520261) (xy 185.333099 130.493791) (xy 185.302037 130.476663) (xy 185.261735 130.4669) + (xy 185.191102 130.462772) (xy 185.053398 130.462772) (xy 185.053398 130.998934) (xy 184.966545 130.998934) + (xy 184.966545 130.380706) (xy 185.193349 130.380706) + ) + ) + ) + ) + (gr_text "CH-8\n" + (at 82.2 113.2 90) + (layer "F.SilkS" knockout) + (uuid "8e89a498-1e80-4dba-b934-6835aee96b63") + (effects + (font + (face "Arial Black") + (size 1 1) + (thickness 0.2) + (bold yes) + ) + (justify left bottom) + ) + (render_cache "CH-8\n" 90 + (polygon + (pts + (xy 81.619672 112.430818) (xy 81.70192 112.159586) (xy 81.775829 112.182177) (xy 81.838645 112.211005) + (xy 81.891819 112.245682) (xy 81.938622 112.28816) (xy 81.976788 112.33658) (xy 82.006857 112.391556) + (xy 82.027379 112.4509) (xy 82.040773 112.523888) (xy 82.045631 112.613206) (xy 82.039676 112.721592) + (xy 82.023321 112.80935) (xy 81.99837 112.87998) (xy 81.971392 112.928267) (xy 81.935407 112.973975) + (xy 81.889423 113.017406) (xy 81.832102 113.058644) (xy 81.771682 113.090138) (xy 81.701831 113.113611) + (xy 81.621006 113.12849) (xy 81.527409 113.133749) (xy 81.426668 113.127689) (xy 81.340181 113.110565) + (xy 81.265846 113.083548) (xy 81.20189 113.047222) (xy 81.146939 113.001552) (xy 81.100774 112.946748) + (xy 81.0642 112.88341) (xy 81.037105 112.810264) (xy 81.01999 112.725641) (xy 81.013949 112.627555) + (xy 81.019466 112.531624) (xy 81.034834 112.451681) (xy 81.058679 112.385208) (xy 81.090214 112.330068) + (xy 81.131661 112.281152) (xy 81.183495 112.238048) (xy 81.247132 112.20062) (xy 81.324443 112.169173) + (xy 81.385198 112.442419) (xy 81.343008 112.458287) (xy 81.318276 112.472461) (xy 81.286704 112.501491) + (xy 81.263627 112.536025) (xy 81.249408 112.5753) (xy 81.244515 112.620045) (xy 81.250041 112.670652) + (xy 81.265842 112.713359) (xy 81.291757 112.749894) (xy 81.328961 112.781245) (xy 81.37304 112.802887) + (xy 81.436542 112.817866) (xy 81.525699 112.823621) (xy 81.612966 112.819402) (xy 81.676736 112.808353) + (xy 81.722124 112.792469) (xy 81.753456 112.773063) (xy 81.780069 112.745671) (xy 81.799094 112.71356) + (xy 81.810903 112.67579) (xy 81.815066 112.630975) (xy 81.808885 112.573906) (xy 81.791911 112.530223) + (xy 81.765057 112.496763) (xy 81.729277 112.470763) (xy 81.681719 112.448552) + ) + ) + (polygon + (pts + (xy 81.029581 112.007789) (xy 81.029581 111.698394) (xy 81.377383 111.698394) (xy 81.377383 111.36024) + (xy 81.029581 111.36024) (xy 81.029581 111.04938) (xy 82.03 111.04938) (xy 82.03 111.36024) (xy 81.623579 111.36024) + (xy 81.623579 111.698394) (xy 82.03 111.698394) (xy 82.03 112.007789) + ) + ) + (polygon + (pts + (xy 81.557145 110.915413) (xy 81.557145 110.511008) (xy 81.772079 110.511008) (xy 81.772079 110.915413) + ) + ) + (polygon + (pts + (xy 81.784635 109.60825) (xy 81.831243 109.619724) (xy 81.875821 109.638878) (xy 81.917233 109.664487) + (xy 81.950497 109.692706) (xy 81.976632 109.723569) (xy 82.006733 109.778169) (xy 82.0289 109.84856) + (xy 82.041344 109.924855) (xy 82.045631 110.008112) (xy 82.040594 110.114596) (xy 82.027315 110.193743) + (xy 82.008079 110.251256) (xy 81.978521 110.30356) (xy 81.94177 110.345734) (xy 81.897376 110.378995) + (xy 81.847067 110.403153) (xy 81.792943 110.41774) (xy 81.734038 110.422714) (xy 81.676487 110.417851) + (xy 81.627207 110.404008) (xy 81.584684 110.381742) (xy 81.548144 110.350708) (xy 81.516588 110.309232) + (xy 81.49004 110.255347) (xy 81.451692 110.31423) (xy 81.412859 110.351029) (xy 81.372371 110.373663) + (xy 81.328022 110.387321) (xy 81.27877 110.392001) (xy 81.219917 110.384778) (xy 81.167319 110.363512) + (xy 81.119268 110.327396) (xy 81.074888 110.273848) (xy 81.049507 110.226967) (xy 81.030455 110.171709) + (xy 81.018283 110.106613) (xy 81.013949 110.029972) (xy 81.014722 110.016233) (xy 81.181988 110.016233) + (xy 81.185666 110.048649) (xy 81.196155 110.075706) (xy 81.213374 110.098604) (xy 81.235985 110.116051) + (xy 81.262677 110.126646) (xy 81.294645 110.130355) (xy 81.327464 110.126547) (xy 81.354593 110.115712) + (xy 81.377322 110.097932) (xy 81.394369 110.074556) (xy 81.404907 110.046201) (xy 81.408133 110.016233) + (xy 81.572777 110.016233) (xy 81.57725 110.049157) (xy 81.590576 110.079006) (xy 81.613627 110.106786) + (xy 81.642994 110.127688) (xy 81.679125 110.140721) (xy 81.723902 110.145376) (xy 81.766321 110.140649) + (xy 81.801794 110.127169) (xy 81.831857 110.105076) (xy 81.855565 110.076169) (xy 81.86916 110.045759) + (xy 81.873684 110.012875) (xy 81.869145 109.981385) (xy 81.855388 109.951867) (xy 81.831125 109.92336) + (xy 81.800711 109.901603) (xy 81.765223 109.888359) (xy 81.72323 109.883731) (xy 81.680823 109.88842) + (xy 81.645259 109.901799) (xy 81.615031 109.923726) (xy 81.591116 109.952449) (xy 81.577367 109.982949) + (xy 81.572777 110.016233) (xy 81.408133 110.016233) (xy 81.408646 110.01147) (xy 81.405049 109.980894) + (xy 81.394724 109.955084) (xy 81.377627 109.932946) (xy 81.355289 109.916054) (xy 81.328913 109.905774) + (xy 81.297332 109.902172) (xy 81.264513 109.905933) (xy 81.237161 109.916662) (xy 81.214045 109.934289) + (xy 81.196383 109.957408) (xy 81.185707 109.984346) (xy 81.181988 110.016233) (xy 81.014722 110.016233) + (xy 81.019748 109.926924) (xy 81.035496 109.845663) (xy 81.059235 109.782196) (xy 81.089787 109.733155) + (xy 81.131231 109.690268) (xy 81.17622 109.660782) (xy 81.225604 109.64318) (xy 81.280785 109.637168) + (xy 81.324363 109.641387) (xy 81.365885 109.653997) (xy 81.406081 109.675392) (xy 81.446827 109.710244) + (xy 81.49004 109.765579) (xy 81.519847 109.714537) (xy 81.554201 109.674647) (xy 81.593232 109.644373) + (xy 81.637484 109.62219) (xy 81.684586 109.60889) (xy 81.735382 109.604378) + ) + ) + ) + ) + (gr_text "NC" + (at 105.2 66 180) + (layer "F.SilkS" knockout) + (uuid "93d0c47b-6ca4-4fd3-8e96-07b263211400") + (effects + (font + (face "Arial Black") + (size 1 1) + (thickness 0.2) + (bold yes) + ) + (justify left bottom) + ) + (render_cache "NC" 180 + (polygon + (pts + (xy 105.095464 67.170418) (xy 104.806524 67.170418) (xy 104.429413 66.617086) (xy 104.429413 67.170418) + (xy 104.137726 67.170418) (xy 104.137726 66.17) (xy 104.429413 66.17) (xy 104.804448 66.720218) + (xy 104.804448 66.17) (xy 105.095464 66.17) + ) + ) + (polygon + (pts + (xy 103.265291 66.580327) (xy 102.994059 66.498079) (xy 103.01665 66.42417) (xy 103.045478 66.361354) + (xy 103.080155 66.30818) (xy 103.122633 66.261377) (xy 103.171053 66.223211) (xy 103.226029 66.193142) + (xy 103.285373 66.17262) (xy 103.358361 66.159226) (xy 103.447679 66.154368) (xy 103.556065 66.160323) + (xy 103.643823 66.176678) (xy 103.714453 66.201629) (xy 103.76274 66.228607) (xy 103.808448 66.264592) + (xy 103.851879 66.310576) (xy 103.893117 66.367897) (xy 103.924611 66.428317) (xy 103.948084 66.498168) + (xy 103.962963 66.578993) (xy 103.968222 66.67259) (xy 103.962162 66.773331) (xy 103.945038 66.859818) + (xy 103.918021 66.934153) (xy 103.881695 66.998109) (xy 103.836025 67.05306) (xy 103.781222 67.099225) + (xy 103.717883 67.135799) (xy 103.644737 67.162894) (xy 103.560114 67.180009) (xy 103.462028 67.18605) + (xy 103.366097 67.180533) (xy 103.286154 67.165165) (xy 103.219681 67.14132) (xy 103.164541 67.109785) + (xy 103.115625 67.068338) (xy 103.072522 67.016504) (xy 103.035093 66.952867) (xy 103.003646 66.875556) + (xy 103.276892 66.814801) (xy 103.292761 66.856991) (xy 103.306934 66.881723) (xy 103.335965 66.913295) + (xy 103.370498 66.936372) (xy 103.409773 66.950591) (xy 103.454518 66.955484) (xy 103.505125 66.949958) + (xy 103.547832 66.934157) (xy 103.584367 66.908242) (xy 103.615718 66.871038) (xy 103.63736 66.826959) + (xy 103.652339 66.763457) (xy 103.658094 66.6743) (xy 103.653875 66.587033) (xy 103.642827 66.523263) + (xy 103.626942 66.477875) (xy 103.607536 66.446543) (xy 103.580144 66.41993) (xy 103.548033 66.400905) + (xy 103.510263 66.389096) (xy 103.465448 66.384933) (xy 103.40838 66.391114) (xy 103.364696 66.408088) + (xy 103.331236 66.434942) (xy 103.305237 66.470722) (xy 103.283025 66.51828) + ) + ) + ) + ) + (gr_text "COM\n" + (at 92.6 66.2 180) + (layer "F.SilkS" knockout) + (uuid "9f47a54d-1ddf-458f-abd2-a8ee6ae8cfee") + (effects + (font + (face "Arial Black") + (size 1 1) + (thickness 0.2) + (bold yes) + ) + (justify left bottom) + ) + (render_cache "COM\n" 180 + (polygon + (pts + (xy 91.830818 66.780327) (xy 91.559586 66.698079) (xy 91.582177 66.62417) (xy 91.611005 66.561354) + (xy 91.645682 66.50818) (xy 91.68816 66.461377) (xy 91.73658 66.423211) (xy 91.791556 66.393142) + (xy 91.8509 66.37262) (xy 91.923888 66.359226) (xy 92.013206 66.354368) (xy 92.121592 66.360323) + (xy 92.20935 66.376678) (xy 92.27998 66.401629) (xy 92.328267 66.428607) (xy 92.373975 66.464592) + (xy 92.417406 66.510576) (xy 92.458644 66.567897) (xy 92.490138 66.628317) (xy 92.513611 66.698168) + (xy 92.52849 66.778993) (xy 92.533749 66.87259) (xy 92.527689 66.973331) (xy 92.510565 67.059818) + (xy 92.483548 67.134153) (xy 92.447222 67.198109) (xy 92.401552 67.25306) (xy 92.346748 67.299225) + (xy 92.28341 67.335799) (xy 92.210264 67.362894) (xy 92.125641 67.380009) (xy 92.027555 67.38605) + (xy 91.931624 67.380533) (xy 91.851681 67.365165) (xy 91.785208 67.34132) (xy 91.730068 67.309785) + (xy 91.681152 67.268338) (xy 91.638048 67.216504) (xy 91.60062 67.152867) (xy 91.569173 67.075556) + (xy 91.842419 67.014801) (xy 91.858287 67.056991) (xy 91.872461 67.081723) (xy 91.901491 67.113295) + (xy 91.936025 67.136372) (xy 91.9753 67.150591) (xy 92.020045 67.155484) (xy 92.070652 67.149958) + (xy 92.113359 67.134157) (xy 92.149894 67.108242) (xy 92.181245 67.071038) (xy 92.202887 67.026959) + (xy 92.217866 66.963457) (xy 92.223621 66.8743) (xy 92.219402 66.787033) (xy 92.208353 66.723263) + (xy 92.192469 66.677875) (xy 92.173063 66.646543) (xy 92.145671 66.61993) (xy 92.11356 66.600905) + (xy 92.07579 66.589096) (xy 92.030975 66.584933) (xy 91.973906 66.591114) (xy 91.930223 66.608088) + (xy 91.896763 66.634942) (xy 91.870763 66.670722) (xy 91.848552 66.71828) + ) + ) + (polygon + (pts + (xy 91.030853 66.361037) (xy 91.123228 66.379527) (xy 91.199145 66.408101) (xy 91.251421 66.438495) + (xy 91.298611 66.476563) (xy 91.341131 66.522867) (xy 91.379152 66.578278) (xy 91.408181 66.637224) + (xy 91.42975 66.704521) (xy 91.443362 66.781462) (xy 91.44815 66.869537) (xy 91.441991 66.968414) + (xy 91.424498 67.054123) (xy 91.396728 67.128598) (xy 91.359136 67.193462) (xy 91.311557 67.249945) + (xy 91.254878 67.297368) (xy 91.189888 67.334831) (xy 91.115366 67.362499) (xy 91.029716 67.379919) + (xy 90.931027 67.38605) (xy 90.829318 67.379932) (xy 90.741856 67.362632) (xy 90.666549 67.335315) + (xy 90.60163 67.29856) (xy 90.545734 67.252327) (xy 90.498616 67.196789) (xy 90.461397 67.132966) + (xy 90.433904 67.059639) (xy 90.416584 66.975198) (xy 90.410698 66.881139) (xy 90.71994 66.881139) + (xy 90.724299 66.953132) (xy 90.736118 67.009484) (xy 90.75394 67.053176) (xy 90.776971 67.086669) + (xy 90.807608 67.114761) (xy 90.842923 67.134822) (xy 90.883842 67.147227) (xy 90.931699 67.151577) + (xy 90.977296 67.147237) (xy 91.016808 67.134771) (xy 91.051447 67.114419) (xy 91.08203 67.085631) + (xy 91.10458 67.051771) (xy 91.122316 67.006258) (xy 91.134247 66.94607) (xy 91.138695 66.867583) + (xy 91.134284 66.789839) (xy 91.122435 66.730053) (xy 91.104795 66.684695) (xy 91.082336 66.650818) + (xy 91.051952 66.622244) (xy 91.016943 66.601896) (xy 90.976391 66.589335) (xy 90.928951 66.584933) + (xy 90.879952 66.589333) (xy 90.83883 66.601778) (xy 90.804063 66.62173) (xy 90.77459 66.649474) + (xy 90.753375 66.682457) (xy 90.73623 66.72923) (xy 90.72442 66.793849) (xy 90.71994 66.881139) + (xy 90.410698 66.881139) (xy 90.410484 66.877719) (xy 90.414688 66.788893) (xy 90.426528 66.71254) + (xy 90.445049 66.647015) (xy 90.469591 66.590856) (xy 90.502518 66.537844) (xy 90.541696 66.49146) + (xy 90.587451 66.451159) (xy 90.640378 66.41665) (xy 90.696746 66.390497) (xy 90.761103 66.371014) + (xy 90.834649 66.358701) (xy 90.918754 66.354368) + ) + ) + (polygon + (pts + (xy 90.247086 67.370418) (xy 89.839933 67.370418) (xy 89.682824 66.762131) (xy 89.526386 67.370418) + (xy 89.120638 67.370418) (xy 89.120638 66.37) (xy 89.373368 66.37) (xy 89.373368 67.133747) (xy 89.569434 66.37) + (xy 89.79829 66.37) (xy 89.993623 67.133747) (xy 89.993623 66.37) (xy 90.247086 66.37) + ) + ) + ) + ) + (gr_text "NC" + (at 68.2 66 180) + (layer "F.SilkS" knockout) + (uuid "a228397c-535e-4c4c-8e6e-ed9534715ab9") + (effects + (font + (face "Arial Black") + (size 1 1) + (thickness 0.2) + (bold yes) + ) + (justify left bottom) + ) + (render_cache "NC" 180 + (polygon + (pts + (xy 68.095464 67.170418) (xy 67.806524 67.170418) (xy 67.429413 66.617086) (xy 67.429413 67.170418) + (xy 67.137726 67.170418) (xy 67.137726 66.17) (xy 67.429413 66.17) (xy 67.804448 66.720218) (xy 67.804448 66.17) + (xy 68.095464 66.17) + ) + ) + (polygon + (pts + (xy 66.265291 66.580327) (xy 65.994059 66.498079) (xy 66.01665 66.42417) (xy 66.045478 66.361354) + (xy 66.080155 66.30818) (xy 66.122633 66.261377) (xy 66.171053 66.223211) (xy 66.226029 66.193142) + (xy 66.285373 66.17262) (xy 66.358361 66.159226) (xy 66.447679 66.154368) (xy 66.556065 66.160323) + (xy 66.643823 66.176678) (xy 66.714453 66.201629) (xy 66.76274 66.228607) (xy 66.808448 66.264592) + (xy 66.851879 66.310576) (xy 66.893117 66.367897) (xy 66.924611 66.428317) (xy 66.948084 66.498168) + (xy 66.962963 66.578993) (xy 66.968222 66.67259) (xy 66.962162 66.773331) (xy 66.945038 66.859818) + (xy 66.918021 66.934153) (xy 66.881695 66.998109) (xy 66.836025 67.05306) (xy 66.781222 67.099225) + (xy 66.717883 67.135799) (xy 66.644737 67.162894) (xy 66.560114 67.180009) (xy 66.462028 67.18605) + (xy 66.366097 67.180533) (xy 66.286154 67.165165) (xy 66.219681 67.14132) (xy 66.164541 67.109785) + (xy 66.115625 67.068338) (xy 66.072522 67.016504) (xy 66.035093 66.952867) (xy 66.003646 66.875556) + (xy 66.276892 66.814801) (xy 66.292761 66.856991) (xy 66.306934 66.881723) (xy 66.335965 66.913295) + (xy 66.370498 66.936372) (xy 66.409773 66.950591) (xy 66.454518 66.955484) (xy 66.505125 66.949958) + (xy 66.547832 66.934157) (xy 66.584367 66.908242) (xy 66.615718 66.871038) (xy 66.63736 66.826959) + (xy 66.652339 66.763457) (xy 66.658094 66.6743) (xy 66.653875 66.587033) (xy 66.642827 66.523263) + (xy 66.626942 66.477875) (xy 66.607536 66.446543) (xy 66.580144 66.41993) (xy 66.548033 66.400905) + (xy 66.510263 66.389096) (xy 66.465448 66.384933) (xy 66.40838 66.391114) (xy 66.364696 66.408088) + (xy 66.331236 66.434942) (xy 66.305237 66.470722) (xy 66.283025 66.51828) + ) + ) + ) + ) + (gr_text "NO" + (at 97.4 66 180) + (layer "F.SilkS" knockout) + (uuid "b128c634-7b18-4aeb-b96d-43f92abd8727") + (effects + (font + (face "Arial Black") + (size 1 1) + (thickness 0.2) + (bold yes) + ) + (justify left bottom) + ) + (render_cache "NO" 180 + (polygon + (pts + (xy 97.295464 67.170418) (xy 97.006524 67.170418) (xy 96.629413 66.617086) (xy 96.629413 67.170418) + (xy 96.337726 67.170418) (xy 96.337726 66.17) (xy 96.629413 66.17) (xy 97.004448 66.720218) (xy 97.004448 66.17) + (xy 97.295464 66.17) + ) + ) + (polygon + (pts + (xy 95.753672 66.161037) (xy 95.846047 66.179527) (xy 95.921964 66.208101) (xy 95.97424 66.238495) + (xy 96.02143 66.276563) (xy 96.06395 66.322867) (xy 96.101971 66.378278) (xy 96.131001 66.437224) + (xy 96.152569 66.504521) (xy 96.166182 66.581462) (xy 96.170969 66.669537) (xy 96.16481 66.768414) + (xy 96.147317 66.854123) (xy 96.119547 66.928598) (xy 96.081955 66.993462) (xy 96.034377 67.049945) + (xy 95.977698 67.097368) (xy 95.912707 67.134831) (xy 95.838186 67.162499) (xy 95.752535 67.179919) + (xy 95.653846 67.18605) (xy 95.552137 67.179932) (xy 95.464675 67.162632) (xy 95.389368 67.135315) + (xy 95.32445 67.09856) (xy 95.268553 67.052327) (xy 95.221435 66.996789) (xy 95.184216 66.932966) + (xy 95.156723 66.859639) (xy 95.139403 66.775198) (xy 95.133518 66.681139) (xy 95.442759 66.681139) + (xy 95.447119 66.753132) (xy 95.458937 66.809484) (xy 95.476759 66.853176) (xy 95.49979 66.886669) + (xy 95.530428 66.914761) (xy 95.565742 66.934822) (xy 95.606661 66.947227) (xy 95.654518 66.951577) + (xy 95.700115 66.947237) (xy 95.739627 66.934771) (xy 95.774266 66.914419) (xy 95.804849 66.885631) + (xy 95.8274 66.851771) (xy 95.845136 66.806258) (xy 95.857066 66.74607) (xy 95.861514 66.667583) + (xy 95.857103 66.589839) (xy 95.845254 66.530053) (xy 95.827615 66.484695) (xy 95.805155 66.450818) + (xy 95.774771 66.422244) (xy 95.739762 66.401896) (xy 95.69921 66.389335) (xy 95.65177 66.384933) + (xy 95.602771 66.389333) (xy 95.56165 66.401778) (xy 95.526882 66.42173) (xy 95.497409 66.449474) + (xy 95.476195 66.482457) (xy 95.459049 66.52923) (xy 95.447239 66.593849) (xy 95.442759 66.681139) + (xy 95.133518 66.681139) (xy 95.133304 66.677719) (xy 95.137508 66.588893) (xy 95.149347 66.51254) + (xy 95.167868 66.447015) (xy 95.192411 66.390856) (xy 95.225338 66.337844) (xy 95.264515 66.29146) + (xy 95.310271 66.251159) (xy 95.363197 66.21665) (xy 95.419565 66.190497) (xy 95.483922 66.171014) + (xy 95.557468 66.158701) (xy 95.641573 66.154368) + ) + ) + ) + ) + (gr_text "NO" + (at 66.2 130.8 0) + (layer "F.SilkS" knockout) + (uuid "c2eb25cf-c6d4-4af2-a6c9-752200d00a52") + (effects + (font + (face "Arial Black") + (size 1 1) + (thickness 0.2) + (bold yes) + ) + (justify left bottom) + ) + (render_cache "NO" 0 + (polygon + (pts + (xy 66.304535 129.629581) (xy 66.593475 129.629581) (xy 66.970586 130.182913) (xy 66.970586 129.629581) + (xy 67.262273 129.629581) (xy 67.262273 130.63) (xy 66.970586 130.63) (xy 66.595551 130.079781) + (xy 66.595551 130.63) (xy 66.304535 130.63) + ) + ) + (polygon + (pts + (xy 68.047862 129.620067) (xy 68.135324 129.637367) (xy 68.210631 129.664684) (xy 68.275549 129.701439) + (xy 68.331446 129.747672) (xy 68.378564 129.80321) (xy 68.415783 129.867033) (xy 68.443276 129.94036) + (xy 68.460596 130.024801) (xy 68.466695 130.12228) (xy 68.462491 130.211106) (xy 68.450652 130.287459) + (xy 68.432131 130.352984) (xy 68.407588 130.409143) (xy 68.374661 130.462155) (xy 68.335484 130.508539) + (xy 68.289728 130.54884) (xy 68.236802 130.583349) (xy 68.180434 130.609502) (xy 68.116077 130.628985) + (xy 68.042531 130.641298) (xy 67.958426 130.645631) (xy 67.846327 130.638962) (xy 67.753952 130.620472) + (xy 67.678035 130.591898) (xy 67.625759 130.561504) (xy 67.578569 130.523436) (xy 67.536049 130.477132) + (xy 67.498028 130.421721) (xy 67.468998 130.362775) (xy 67.44743 130.295478) (xy 67.433817 130.218537) + (xy 67.429136 130.132416) (xy 67.738485 130.132416) (xy 67.742896 130.21016) (xy 67.754745 130.269946) + (xy 67.772384 130.315304) (xy 67.794844 130.349181) (xy 67.825228 130.377755) (xy 67.860237 130.398103) + (xy 67.900789 130.410664) (xy 67.948229 130.415066) (xy 67.997228 130.410666) (xy 68.038349 130.398221) + (xy 68.073117 130.378269) (xy 68.10259 130.350525) (xy 68.123804 130.317542) (xy 68.14095 130.270769) + (xy 68.15276 130.20615) (xy 68.15724 130.11886) (xy 68.15288 130.046867) (xy 68.141062 129.990515) + (xy 68.12324 129.946823) (xy 68.100209 129.91333) (xy 68.069571 129.885238) (xy 68.034257 129.865177) + (xy 67.993338 129.852772) (xy 67.945481 129.848422) (xy 67.899884 129.852762) (xy 67.860372 129.865228) + (xy 67.825733 129.88558) (xy 67.79515 129.914368) (xy 67.772599 129.948228) (xy 67.754863 129.993741) + (xy 67.742933 130.053929) (xy 67.738485 130.132416) (xy 67.429136 130.132416) (xy 67.42903 130.130462) + (xy 67.435189 130.031585) (xy 67.452682 129.945876) (xy 67.480452 129.871401) (xy 67.518044 129.806537) + (xy 67.565622 129.750054) (xy 67.622301 129.702631) (xy 67.687292 129.665168) (xy 67.761813 129.6375) + (xy 67.847464 129.62008) (xy 67.946153 129.613949) + ) + ) + ) + ) + (gr_text "NC" + (at 77.2 130.8 0) + (layer "F.SilkS" knockout) + (uuid "c6ad3618-0b34-4e53-96d7-a8bf261df999") + (effects + (font + (face "Arial Black") + (size 1 1) + (thickness 0.2) + (bold yes) + ) + (justify left bottom) + ) + (render_cache "NC" 0 + (polygon + (pts + (xy 77.304535 129.629581) (xy 77.593475 129.629581) (xy 77.970586 130.182913) (xy 77.970586 129.629581) + (xy 78.262273 129.629581) (xy 78.262273 130.63) (xy 77.970586 130.63) (xy 77.595551 130.079781) + (xy 77.595551 130.63) (xy 77.304535 130.63) + ) + ) + (polygon + (pts + (xy 79.134708 130.219672) (xy 79.40594 130.30192) (xy 79.383349 130.375829) (xy 79.354521 130.438645) + (xy 79.319844 130.491819) (xy 79.277366 130.538622) (xy 79.228946 130.576788) (xy 79.17397 130.606857) + (xy 79.114626 130.627379) (xy 79.041638 130.640773) (xy 78.95232 130.645631) (xy 78.843934 130.639676) + (xy 78.756176 130.623321) (xy 78.685546 130.59837) (xy 78.637259 130.571392) (xy 78.591551 130.535407) + (xy 78.54812 130.489423) (xy 78.506882 130.432102) (xy 78.475388 130.371682) (xy 78.451915 130.301831) + (xy 78.437036 130.221006) (xy 78.431777 130.127409) (xy 78.437837 130.026668) (xy 78.454961 129.940181) + (xy 78.481978 129.865846) (xy 78.518304 129.80189) (xy 78.563974 129.746939) (xy 78.618777 129.700774) + (xy 78.682116 129.6642) (xy 78.755262 129.637105) (xy 78.839885 129.61999) (xy 78.937971 129.613949) + (xy 79.033902 129.619466) (xy 79.113845 129.634834) (xy 79.180318 129.658679) (xy 79.235458 129.690214) + (xy 79.284374 129.731661) (xy 79.327477 129.783495) (xy 79.364906 129.847132) (xy 79.396353 129.924443) + (xy 79.123107 129.985198) (xy 79.107238 129.943008) (xy 79.093065 129.918276) (xy 79.064034 129.886704) + (xy 79.029501 129.863627) (xy 78.990226 129.849408) (xy 78.945481 129.844515) (xy 78.894874 129.850041) + (xy 78.852167 129.865842) (xy 78.815632 129.891757) (xy 78.784281 129.928961) (xy 78.762639 129.97304) + (xy 78.74766 130.036542) (xy 78.741905 130.125699) (xy 78.746124 130.212966) (xy 78.757172 130.276736) + (xy 78.773057 130.322124) (xy 78.792463 130.353456) (xy 78.819855 130.380069) (xy 78.851966 130.399094) + (xy 78.889736 130.410903) (xy 78.934551 130.415066) (xy 78.991619 130.408885) (xy 79.035303 130.391911) + (xy 79.068763 130.365057) (xy 79.094762 130.329277) (xy 79.116974 130.281719) + ) + ) + ) + ) + (gr_text "NC" + (at 95.8 130.8 0) + (layer "F.SilkS" knockout) + (uuid "c895ea2a-0f9f-4902-90a3-d8ef87dd3c10") + (effects + (font + (face "Arial Black") + (size 1 1) + (thickness 0.2) + (bold yes) + ) + (justify left bottom) + ) + (render_cache "NC" 0 + (polygon + (pts + (xy 95.904535 129.629581) (xy 96.193475 129.629581) (xy 96.570586 130.182913) (xy 96.570586 129.629581) + (xy 96.862273 129.629581) (xy 96.862273 130.63) (xy 96.570586 130.63) (xy 96.195551 130.079781) + (xy 96.195551 130.63) (xy 95.904535 130.63) + ) + ) + (polygon + (pts + (xy 97.734708 130.219672) (xy 98.00594 130.30192) (xy 97.983349 130.375829) (xy 97.954521 130.438645) + (xy 97.919844 130.491819) (xy 97.877366 130.538622) (xy 97.828946 130.576788) (xy 97.77397 130.606857) + (xy 97.714626 130.627379) (xy 97.641638 130.640773) (xy 97.55232 130.645631) (xy 97.443934 130.639676) + (xy 97.356176 130.623321) (xy 97.285546 130.59837) (xy 97.237259 130.571392) (xy 97.191551 130.535407) + (xy 97.14812 130.489423) (xy 97.106882 130.432102) (xy 97.075388 130.371682) (xy 97.051915 130.301831) + (xy 97.037036 130.221006) (xy 97.031777 130.127409) (xy 97.037837 130.026668) (xy 97.054961 129.940181) + (xy 97.081978 129.865846) (xy 97.118304 129.80189) (xy 97.163974 129.746939) (xy 97.218777 129.700774) + (xy 97.282116 129.6642) (xy 97.355262 129.637105) (xy 97.439885 129.61999) (xy 97.537971 129.613949) + (xy 97.633902 129.619466) (xy 97.713845 129.634834) (xy 97.780318 129.658679) (xy 97.835458 129.690214) + (xy 97.884374 129.731661) (xy 97.927477 129.783495) (xy 97.964906 129.847132) (xy 97.996353 129.924443) + (xy 97.723107 129.985198) (xy 97.707238 129.943008) (xy 97.693065 129.918276) (xy 97.664034 129.886704) + (xy 97.629501 129.863627) (xy 97.590226 129.849408) (xy 97.545481 129.844515) (xy 97.494874 129.850041) + (xy 97.452167 129.865842) (xy 97.415632 129.891757) (xy 97.384281 129.928961) (xy 97.362639 129.97304) + (xy 97.34766 130.036542) (xy 97.341905 130.125699) (xy 97.346124 130.212966) (xy 97.357172 130.276736) + (xy 97.373057 130.322124) (xy 97.392463 130.353456) (xy 97.419855 130.380069) (xy 97.451966 130.399094) + (xy 97.489736 130.410903) (xy 97.534551 130.415066) (xy 97.591619 130.408885) (xy 97.635303 130.391911) + (xy 97.668763 130.365057) (xy 97.694762 130.329277) (xy 97.716974 130.281719) + ) + ) + ) + ) + (gr_text "COM\n" + (at 108 130.6 0) + (layer "F.SilkS" knockout) + (uuid "d471e6f0-c6ee-4da0-acd8-5cd798a5ccb3") + (effects + (font + (face "Arial Black") + (size 1 1) + (thickness 0.2) + (bold yes) + ) + (justify left bottom) + ) + (render_cache "COM\n" 0 + (polygon + (pts + (xy 108.769181 130.019672) (xy 109.040413 130.10192) (xy 109.017822 130.175829) (xy 108.988994 130.238645) + (xy 108.954317 130.291819) (xy 108.911839 130.338622) (xy 108.863419 130.376788) (xy 108.808443 130.406857) + (xy 108.749099 130.427379) (xy 108.676111 130.440773) (xy 108.586793 130.445631) (xy 108.478407 130.439676) + (xy 108.390649 130.423321) (xy 108.320019 130.39837) (xy 108.271732 130.371392) (xy 108.226024 130.335407) + (xy 108.182593 130.289423) (xy 108.141355 130.232102) (xy 108.109861 130.171682) (xy 108.086388 130.101831) + (xy 108.071509 130.021006) (xy 108.06625 129.927409) (xy 108.07231 129.826668) (xy 108.089434 129.740181) + (xy 108.116451 129.665846) (xy 108.152777 129.60189) (xy 108.198447 129.546939) (xy 108.253251 129.500774) + (xy 108.316589 129.4642) (xy 108.389735 129.437105) (xy 108.474358 129.41999) (xy 108.572444 129.413949) + (xy 108.668375 129.419466) (xy 108.748318 129.434834) (xy 108.814791 129.458679) (xy 108.869931 129.490214) + (xy 108.918847 129.531661) (xy 108.961951 129.583495) (xy 108.999379 129.647132) (xy 109.030826 129.724443) + (xy 108.75758 129.785198) (xy 108.741712 129.743008) (xy 108.727538 129.718276) (xy 108.698508 129.686704) + (xy 108.663974 129.663627) (xy 108.624699 129.649408) (xy 108.579954 129.644515) (xy 108.529347 129.650041) + (xy 108.48664 129.665842) (xy 108.450105 129.691757) (xy 108.418754 129.728961) (xy 108.397112 129.77304) + (xy 108.382133 129.836542) (xy 108.376378 129.925699) (xy 108.380597 130.012966) (xy 108.391646 130.076736) + (xy 108.40753 130.122124) (xy 108.426936 130.153456) (xy 108.454328 130.180069) (xy 108.486439 130.199094) + (xy 108.524209 130.210903) (xy 108.569024 130.215066) (xy 108.626093 130.208885) (xy 108.669776 130.191911) + (xy 108.703236 130.165057) (xy 108.729236 130.129277) (xy 108.751447 130.081719) + ) + ) + (polygon + (pts + (xy 109.770681 129.420067) (xy 109.858143 129.437367) (xy 109.93345 129.464684) (xy 109.998369 129.501439) + (xy 110.054265 129.547672) (xy 110.101383 129.60321) (xy 110.138602 129.667033) (xy 110.166095 129.74036) + (xy 110.183415 129.824801) (xy 110.189515 129.92228) (xy 110.185311 130.011106) (xy 110.173471 130.087459) + (xy 110.15495 130.152984) (xy 110.130408 130.209143) (xy 110.097481 130.262155) (xy 110.058303 130.308539) + (xy 110.012548 130.34884) (xy 109.959621 130.383349) (xy 109.903253 130.409502) (xy 109.838896 130.428985) + (xy 109.76535 130.441298) (xy 109.681245 130.445631) (xy 109.569146 130.438962) (xy 109.476771 130.420472) + (xy 109.400854 130.391898) (xy 109.348578 130.361504) (xy 109.301388 130.323436) (xy 109.258868 130.277132) + (xy 109.220847 130.221721) (xy 109.191818 130.162775) (xy 109.170249 130.095478) (xy 109.156637 130.018537) + (xy 109.151955 129.932416) (xy 109.461304 129.932416) (xy 109.465715 130.01016) (xy 109.477564 130.069946) + (xy 109.495204 130.115304) (xy 109.517663 130.149181) (xy 109.548047 130.177755) (xy 109.583056 130.198103) + (xy 109.623608 130.210664) (xy 109.671048 130.215066) (xy 109.720047 130.210666) (xy 109.761169 130.198221) + (xy 109.795936 130.178269) (xy 109.825409 130.150525) (xy 109.846624 130.117542) (xy 109.863769 130.070769) + (xy 109.875579 130.00615) (xy 109.880059 129.91886) (xy 109.8757 129.846867) (xy 109.863881 129.790515) + (xy 109.846059 129.746823) (xy 109.823028 129.71333) (xy 109.792391 129.685238) (xy 109.757076 129.665177) + (xy 109.716157 129.652772) (xy 109.6683 129.648422) (xy 109.622703 129.652762) (xy 109.583191 129.665228) + (xy 109.548552 129.68558) (xy 109.517969 129.714368) (xy 109.495419 129.748228) (xy 109.477683 129.793741) + (xy 109.465752 129.853929) (xy 109.461304 129.932416) (xy 109.151955 129.932416) (xy 109.151849 129.930462) + (xy 109.158008 129.831585) (xy 109.175501 129.745876) (xy 109.203271 129.671401) (xy 109.240863 129.606537) + (xy 109.288442 129.550054) (xy 109.345121 129.502631) (xy 109.410111 129.465168) (xy 109.484633 129.4375) + (xy 109.570283 129.42008) (xy 109.668972 129.413949) + ) + ) + (polygon + (pts + (xy 110.352913 129.429581) (xy 110.760066 129.429581) (xy 110.917175 130.037868) (xy 111.073613 129.429581) + (xy 111.479361 129.429581) (xy 111.479361 130.43) (xy 111.226631 130.43) (xy 111.226631 129.666252) + (xy 111.030565 130.43) (xy 110.801709 130.43) (xy 110.606376 129.666252) (xy 110.606376 130.43) + (xy 110.352913 130.43) + ) + ) + ) + ) + (gr_text "CH-7\n" + (at 100.6 113 90) + (layer "F.SilkS" knockout) + (uuid "d5d937a0-f5eb-49d1-8b42-00ede1eaccee") + (effects + (font + (face "Arial Black") + (size 1 1) + (thickness 0.2) + (bold yes) + ) + (justify left bottom) + ) + (render_cache "CH-7\n" 90 + (polygon + (pts + (xy 100.019672 112.230818) (xy 100.10192 111.959586) (xy 100.175829 111.982177) (xy 100.238645 112.011005) + (xy 100.291819 112.045682) (xy 100.338622 112.08816) (xy 100.376788 112.13658) (xy 100.406857 112.191556) + (xy 100.427379 112.2509) (xy 100.440773 112.323888) (xy 100.445631 112.413206) (xy 100.439676 112.521592) + (xy 100.423321 112.60935) (xy 100.39837 112.67998) (xy 100.371392 112.728267) (xy 100.335407 112.773975) + (xy 100.289423 112.817406) (xy 100.232102 112.858644) (xy 100.171682 112.890138) (xy 100.101831 112.913611) + (xy 100.021006 112.92849) (xy 99.927409 112.933749) (xy 99.826668 112.927689) (xy 99.740181 112.910565) + (xy 99.665846 112.883548) (xy 99.60189 112.847222) (xy 99.546939 112.801552) (xy 99.500774 112.746748) + (xy 99.4642 112.68341) (xy 99.437105 112.610264) (xy 99.41999 112.525641) (xy 99.413949 112.427555) + (xy 99.419466 112.331624) (xy 99.434834 112.251681) (xy 99.458679 112.185208) (xy 99.490214 112.130068) + (xy 99.531661 112.081152) (xy 99.583495 112.038048) (xy 99.647132 112.00062) (xy 99.724443 111.969173) + (xy 99.785198 112.242419) (xy 99.743008 112.258287) (xy 99.718276 112.272461) (xy 99.686704 112.301491) + (xy 99.663627 112.336025) (xy 99.649408 112.3753) (xy 99.644515 112.420045) (xy 99.650041 112.470652) + (xy 99.665842 112.513359) (xy 99.691757 112.549894) (xy 99.728961 112.581245) (xy 99.77304 112.602887) + (xy 99.836542 112.617866) (xy 99.925699 112.623621) (xy 100.012966 112.619402) (xy 100.076736 112.608353) + (xy 100.122124 112.592469) (xy 100.153456 112.573063) (xy 100.180069 112.545671) (xy 100.199094 112.51356) + (xy 100.210903 112.47579) (xy 100.215066 112.430975) (xy 100.208885 112.373906) (xy 100.191911 112.330223) + (xy 100.165057 112.296763) (xy 100.129277 112.270763) (xy 100.081719 112.248552) + ) + ) + (polygon + (pts + (xy 99.429581 111.807789) (xy 99.429581 111.498394) (xy 99.777383 111.498394) (xy 99.777383 111.16024) + (xy 99.429581 111.16024) (xy 99.429581 110.84938) (xy 100.43 110.84938) (xy 100.43 111.16024) (xy 100.023579 111.16024) + (xy 100.023579 111.498394) (xy 100.43 111.498394) (xy 100.43 111.807789) + ) + ) + (polygon + (pts + (xy 99.957145 110.715413) (xy 99.957145 110.311008) (xy 100.172079 110.311008) (xy 100.172079 110.715413) + ) + ) + (polygon + (pts + (xy 99.429581 110.217951) (xy 99.429581 109.405722) (xy 99.617037 109.405722) (xy 99.683378 109.473265) + (xy 99.752268 109.532055) (xy 99.82385 109.582615) (xy 99.916232 109.635396) (xy 100.016351 109.680742) + (xy 100.124879 109.718536) (xy 100.211612 109.741097) (xy 100.31272 109.75912) (xy 100.43 109.771842) + (xy 100.43 110.049241) (xy 100.267189 110.021486) (xy 100.131396 109.986696) (xy 100.019061 109.946109) + (xy 99.911845 109.893405) (xy 99.793968 109.820225) (xy 99.664054 109.72336) (xy 99.664054 110.217951) + ) + ) + ) + ) + (gr_text "+" + (at 194 129 0) + (layer "F.SilkS" knockout) + (uuid "dd046fe0-698b-4160-82d4-95f50cb20652") + (effects + (font + (face "Arial Black") + (size 1 1) + (thickness 0.2) + (bold yes) + ) + (justify left bottom) + ) + (render_cache "+" 0 + (polygon + (pts + (xy 194.086767 128.220369) (xy 194.348412 128.220369) (xy 194.348412 127.958541) (xy 194.569024 127.958541) + (xy 194.569024 128.220369) (xy 194.832013 128.220369) (xy 194.832013 128.439211) (xy 194.569024 128.439211) + (xy 194.569024 128.701039) (xy 194.348412 128.701039) (xy 194.348412 128.439211) (xy 194.086767 128.439211) + ) + ) + ) + ) + (gr_text "FAN" + (at 189.6 130.6 0) + (layer "F.SilkS" knockout) + (uuid "de697d11-6d7b-4bb4-894f-662e281d8970") + (effects + (font + (face "Arial Black") + (size 1 1) + (thickness 0.2) + (bold yes) + ) + (justify left bottom) + ) + (render_cache "FAN" 0 + (polygon + (pts + (xy 189.703864 129.429581) (xy 190.468954 129.429581) (xy 190.468954 129.644515) (xy 190.014663 129.644515) + (xy 190.014663 129.816461) (xy 190.402643 129.816461) (xy 190.402643 130.019672) (xy 190.014663 130.019672) + (xy 190.014663 130.43) (xy 189.703864 130.43) + ) + ) + (polygon + (pts + (xy 191.492759 130.43) (xy 191.168954 130.43) (xy 191.11974 130.265868) (xy 190.767297 130.265868) + (xy 190.718754 130.43) (xy 190.402459 130.43) (xy 190.545094 130.050935) (xy 190.83422 130.050935) + (xy 191.054832 130.050935) (xy 190.94419 129.689883) (xy 190.83422 130.050935) (xy 190.545094 130.050935) + (xy 190.778899 129.429581) (xy 191.11632 129.429581) + ) + ) + (polygon + (pts + (xy 191.593998 129.429581) (xy 191.882937 129.429581) (xy 192.260048 129.982913) (xy 192.260048 129.429581) + (xy 192.551735 129.429581) (xy 192.551735 130.43) (xy 192.260048 130.43) (xy 191.885013 129.879781) + (xy 191.885013 130.43) (xy 191.593998 130.43) + ) + ) + ) + ) + (gr_text "GND" + (at 193.6 105.8 90) + (layer "F.SilkS" knockout) + (uuid "df31663f-bc4d-476a-a191-ef225c87ca72") + (effects + (font + (face "Arial Black") + (size 1 1) + (thickness 0.2) + (bold yes) + ) + (justify left bottom) + ) + (render_cache "GND" 90 + (polygon + (pts + (xy 193.066566 105.194094) (xy 192.859448 105.194094) (xy 192.859448 104.715867) (xy 193.284736 104.715867) + (xy 193.343899 104.809979) (xy 193.385278 104.890305) (xy 193.411926 104.958766) (xy 193.429961 105.02988) + (xy 193.441522 105.112741) (xy 193.445631 105.209054) (xy 193.441305 105.299646) (xy 193.429146 105.377155) + (xy 193.410165 105.443341) (xy 193.385059 105.499764) (xy 193.351249 105.552554) (xy 193.310306 105.5989) + (xy 193.261739 105.639303) (xy 193.204747 105.67397) (xy 193.122808 105.707715) (xy 193.031723 105.728545) + (xy 192.92979 105.735764) (xy 192.848103 105.731237) (xy 192.77415 105.718157) (xy 192.706956 105.697056) + (xy 192.645675 105.668169) (xy 192.589055 105.630521) (xy 192.53994 105.585358) (xy 192.49775 105.532151) + (xy 192.462248 105.470027) (xy 192.437002 105.400371) (xy 192.420169 105.310592) (xy 192.413949 105.196109) + (xy 192.418076 105.084439) (xy 192.42879 105.003927) (xy 192.44393 104.947775) (xy 192.46785 104.89549) + (xy 192.498744 104.850226) (xy 192.536864 104.811182) (xy 192.58111 104.778864) (xy 192.633905 104.75156) + (xy 192.696538 104.729544) (xy 192.750027 105.02807) (xy 192.714324 105.043629) (xy 192.685644 105.064413) + (xy 192.662955 105.090596) (xy 192.64672 105.121307) (xy 192.636455 105.158273) (xy 192.632791 105.202948) + (xy 192.637461 105.252619) (xy 192.650835 105.295381) (xy 192.67259 105.332596) (xy 192.703255 105.365186) + (xy 192.739516 105.389554) (xy 192.786864 105.408454) (xy 192.847973 105.421004) (xy 192.926065 105.425636) + (xy 193.009558 105.420836) (xy 193.073449 105.407969) (xy 193.121653 105.388844) (xy 193.157424 105.364515) + (xy 193.187217 105.331719) (xy 193.208676 105.29322) (xy 193.222062 105.24788) (xy 193.226789 105.194094) + (xy 193.223004 105.14305) (xy 193.21183 105.095054) (xy 193.192726 105.047042) (xy 193.160661 104.987098) + (xy 193.066566 104.987098) + ) + ) + (polygon + (pts + (xy 192.429581 104.529937) (xy 192.429581 104.240997) (xy 192.982913 103.863886) (xy 192.429581 103.863886) + (xy 192.429581 103.572199) (xy 193.43 103.572199) (xy 193.43 103.863886) (xy 192.879781 104.238921) + (xy 193.43 104.238921) (xy 193.43 104.529937) + ) + ) + (polygon + (pts + (xy 193.033655 102.445721) (xy 193.114861 102.458615) (xy 193.175132 102.477442) (xy 193.231634 102.505396) + (xy 193.280739 102.53917) (xy 193.323204 102.578864) (xy 193.359337 102.624311) (xy 193.385525 102.670604) + (xy 193.402705 102.718204) (xy 193.423602 102.818133) (xy 193.43 102.902669) (xy 193.43 103.362395) + (xy 192.429581 103.362395) (xy 192.429581 102.975758) (xy 192.656238 102.975758) (xy 192.656238 103.052939) + (xy 193.203342 103.052939) (xy 193.203342 102.977102) (xy 193.200277 102.911813) (xy 193.192523 102.86764) + (xy 193.181849 102.839105) (xy 193.164675 102.814595) (xy 193.140119 102.793234) (xy 193.106683 102.77493) + (xy 193.069735 102.763336) (xy 193.013835 102.754954) (xy 192.932843 102.751666) (xy 192.849561 102.75597) + (xy 192.788621 102.767261) (xy 192.745126 102.78356) (xy 192.714979 102.803628) (xy 192.690925 102.831327) + (xy 192.672664 102.867709) (xy 192.660661 102.914925) (xy 192.656238 102.975758) (xy 192.429581 102.975758) + (xy 192.429581 102.902669) (xy 192.434286 102.812206) (xy 192.447105 102.740061) (xy 192.466461 102.683033) + (xy 192.494842 102.630075) (xy 192.529989 102.58421) (xy 192.572219 102.544731) (xy 192.620144 102.51195) + (xy 192.673393 102.48553) (xy 192.732625 102.465474) (xy 192.825846 102.447136) (xy 192.926371 102.440867) + ) + ) + ) + ) + (gr_text "CH-2\n" + (at 119 87.4 90) + (layer "F.SilkS" knockout) + (uuid "e3655be7-e723-43be-9f38-81e916f017af") + (effects + (font + (face "Arial Black") + (size 1 1) + (thickness 0.2) + (bold yes) + ) + (justify left bottom) + ) + (render_cache "CH-2\n" 90 + (polygon + (pts + (xy 118.419672 86.630818) (xy 118.50192 86.359586) (xy 118.575829 86.382177) (xy 118.638645 86.411005) + (xy 118.691819 86.445682) (xy 118.738622 86.48816) (xy 118.776788 86.53658) (xy 118.806857 86.591556) + (xy 118.827379 86.6509) (xy 118.840773 86.723888) (xy 118.845631 86.813206) (xy 118.839676 86.921592) + (xy 118.823321 87.00935) (xy 118.79837 87.07998) (xy 118.771392 87.128267) (xy 118.735407 87.173975) + (xy 118.689423 87.217406) (xy 118.632102 87.258644) (xy 118.571682 87.290138) (xy 118.501831 87.313611) + (xy 118.421006 87.32849) (xy 118.327409 87.333749) (xy 118.226668 87.327689) (xy 118.140181 87.310565) + (xy 118.065846 87.283548) (xy 118.00189 87.247222) (xy 117.946939 87.201552) (xy 117.900774 87.146748) + (xy 117.8642 87.08341) (xy 117.837105 87.010264) (xy 117.81999 86.925641) (xy 117.813949 86.827555) + (xy 117.819466 86.731624) (xy 117.834834 86.651681) (xy 117.858679 86.585208) (xy 117.890214 86.530068) + (xy 117.931661 86.481152) (xy 117.983495 86.438048) (xy 118.047132 86.40062) (xy 118.124443 86.369173) + (xy 118.185198 86.642419) (xy 118.143008 86.658287) (xy 118.118276 86.672461) (xy 118.086704 86.701491) + (xy 118.063627 86.736025) (xy 118.049408 86.7753) (xy 118.044515 86.820045) (xy 118.050041 86.870652) + (xy 118.065842 86.913359) (xy 118.091757 86.949894) (xy 118.128961 86.981245) (xy 118.17304 87.002887) + (xy 118.236542 87.017866) (xy 118.325699 87.023621) (xy 118.412966 87.019402) (xy 118.476736 87.008353) + (xy 118.522124 86.992469) (xy 118.553456 86.973063) (xy 118.580069 86.945671) (xy 118.599094 86.91356) + (xy 118.610903 86.87579) (xy 118.615066 86.830975) (xy 118.608885 86.773906) (xy 118.591911 86.730223) + (xy 118.565057 86.696763) (xy 118.529277 86.670763) (xy 118.481719 86.648552) + ) + ) + (polygon + (pts + (xy 117.829581 86.207789) (xy 117.829581 85.898394) (xy 118.177383 85.898394) (xy 118.177383 85.56024) + (xy 117.829581 85.56024) (xy 117.829581 85.24938) (xy 118.83 85.24938) (xy 118.83 85.56024) (xy 118.423579 85.56024) + (xy 118.423579 85.898394) (xy 118.83 85.898394) (xy 118.83 86.207789) + ) + ) + (polygon + (pts + (xy 118.357145 85.115413) (xy 118.357145 84.711008) (xy 118.572079 84.711008) (xy 118.572079 85.115413) + ) + ) + (polygon + (pts + (xy 118.83 83.808469) (xy 118.83 84.64323) (xy 118.749907 84.627323) (xy 118.672849 84.598525) + (xy 118.597969 84.556158) (xy 118.530125 84.501843) (xy 118.445877 84.414236) (xy 118.341758 84.283217) + (xy 118.254129 84.173833) (xy 118.204494 84.126779) (xy 118.156951 84.100482) (xy 118.115528 84.092646) + (xy 118.086592 84.096418) (xy 118.060967 84.107523) (xy 118.037737 84.126474) (xy 118.019938 84.150691) + (xy 118.009177 84.178677) (xy 118.005436 84.211531) (xy 118.00936 84.245636) (xy 118.020586 84.274247) + (xy 118.03908 84.298604) (xy 118.063879 84.316889) (xy 118.10194 84.332417) (xy 118.157843 84.344033) + (xy 118.13519 84.622714) (xy 118.057317 84.607499) (xy 117.996961 84.587119) (xy 117.950908 84.56263) + (xy 117.910636 84.52996) (xy 117.876864 84.489231) (xy 117.849303 84.439349) (xy 117.830993 84.384966) + (xy 117.818587 84.312939) (xy 117.813949 84.219042) (xy 117.818374 84.120753) (xy 117.830142 84.046131) + (xy 117.847349 83.990553) (xy 117.873966 83.939436) (xy 117.908036 83.896971) (xy 117.949993 83.862142) + (xy 117.997902 83.836153) (xy 118.04925 83.820594) (xy 118.105087 83.815308) (xy 118.164471 83.821143) + (xy 118.222338 83.838748) (xy 118.279659 83.86892) (xy 118.331175 83.909149) (xy 118.39142 83.972049) + (xy 118.461987 84.063948) (xy 118.542892 84.17636) (xy 118.603342 84.242916) (xy 118.603342 83.808469) + ) + ) + ) + ) + (gr_text "CH-6" + (at 119 112.8 90) + (layer "F.SilkS" knockout) + (uuid "e60fe136-2713-40c8-a08d-653f1fac1ab4") + (effects + (font + (face "Arial Black") + (size 1 1) + (thickness 0.2) + (bold yes) + ) + (justify left bottom) + ) + (render_cache "CH-6" 90 + (polygon + (pts + (xy 118.419672 112.030818) (xy 118.50192 111.759586) (xy 118.575829 111.782177) (xy 118.638645 111.811005) + (xy 118.691819 111.845682) (xy 118.738622 111.88816) (xy 118.776788 111.93658) (xy 118.806857 111.991556) + (xy 118.827379 112.0509) (xy 118.840773 112.123888) (xy 118.845631 112.213206) (xy 118.839676 112.321592) + (xy 118.823321 112.40935) (xy 118.79837 112.47998) (xy 118.771392 112.528267) (xy 118.735407 112.573975) + (xy 118.689423 112.617406) (xy 118.632102 112.658644) (xy 118.571682 112.690138) (xy 118.501831 112.713611) + (xy 118.421006 112.72849) (xy 118.327409 112.733749) (xy 118.226668 112.727689) (xy 118.140181 112.710565) + (xy 118.065846 112.683548) (xy 118.00189 112.647222) (xy 117.946939 112.601552) (xy 117.900774 112.546748) + (xy 117.8642 112.48341) (xy 117.837105 112.410264) (xy 117.81999 112.325641) (xy 117.813949 112.227555) + (xy 117.819466 112.131624) (xy 117.834834 112.051681) (xy 117.858679 111.985208) (xy 117.890214 111.930068) + (xy 117.931661 111.881152) (xy 117.983495 111.838048) (xy 118.047132 111.80062) (xy 118.124443 111.769173) + (xy 118.185198 112.042419) (xy 118.143008 112.058287) (xy 118.118276 112.072461) (xy 118.086704 112.101491) + (xy 118.063627 112.136025) (xy 118.049408 112.1753) (xy 118.044515 112.220045) (xy 118.050041 112.270652) + (xy 118.065842 112.313359) (xy 118.091757 112.349894) (xy 118.128961 112.381245) (xy 118.17304 112.402887) + (xy 118.236542 112.417866) (xy 118.325699 112.423621) (xy 118.412966 112.419402) (xy 118.476736 112.408353) + (xy 118.522124 112.392469) (xy 118.553456 112.373063) (xy 118.580069 112.345671) (xy 118.599094 112.31356) + (xy 118.610903 112.27579) (xy 118.615066 112.230975) (xy 118.608885 112.173906) (xy 118.591911 112.130223) + (xy 118.565057 112.096763) (xy 118.529277 112.070763) (xy 118.481719 112.048552) + ) + ) + (polygon + (pts + (xy 117.829581 111.607789) (xy 117.829581 111.298394) (xy 118.177383 111.298394) (xy 118.177383 110.96024) + (xy 117.829581 110.96024) (xy 117.829581 110.64938) (xy 118.83 110.64938) (xy 118.83 110.96024) + (xy 118.423579 110.96024) (xy 118.423579 111.298394) (xy 118.83 111.298394) (xy 118.83 111.607789) + ) + ) + (polygon + (pts + (xy 118.357145 110.515413) (xy 118.357145 110.111008) (xy 118.572079 110.111008) (xy 118.572079 110.515413) + ) + ) + (polygon + (pts + (xy 118.565523 109.201444) (xy 118.62508 109.217057) (xy 118.680889 109.242969) (xy 118.730924 109.278361) + (xy 118.771669 109.321359) (xy 118.803927 109.372723) (xy 118.826176 109.42956) (xy 118.84049 109.498131) + (xy 118.845631 109.580757) (xy 118.839182 109.680072) (xy 118.821538 109.759191) (xy 118.794584 109.821885) + (xy 118.755041 109.877012) (xy 118.701492 109.92532) (xy 118.631613 109.967088) (xy 118.575876 109.989314) + (xy 118.509142 110.00636) (xy 118.429597 110.017407) (xy 118.335225 110.021371) (xy 118.222408 110.015749) + (xy 118.129251 110.000188) (xy 118.052738 109.976297) (xy 117.990231 109.945168) (xy 117.939551 109.907309) + (xy 117.895228 109.859305) (xy 117.860623 109.80478) (xy 117.835315 109.742805) (xy 117.819494 109.672082) + (xy 117.813949 109.591015) (xy 117.817582 109.511125) (xy 117.827328 109.449286) (xy 117.841732 109.402154) + (xy 117.863399 109.358049) (xy 117.890431 109.319895) (xy 117.923004 109.287055) (xy 117.96052 109.259688) + (xy 118.004985 109.236376) (xy 118.057398 109.217323) (xy 118.091409 109.493989) (xy 118.039246 109.509886) + (xy 118.00971 109.530565) (xy 117.99196 109.558851) (xy 117.985896 109.593702) (xy 117.990079 109.625338) + (xy 118.002313 109.652793) (xy 118.023112 109.677167) (xy 118.054223 109.698909) (xy 118.089575 109.712795) + (xy 118.155042 109.726758) (xy 118.264577 109.739209) (xy 118.219696 109.687323) (xy 118.1899 109.636749) + (xy 118.17578 109.593091) (xy 118.337606 109.593091) (xy 118.342403 109.629909) (xy 118.356429 109.661938) + (xy 118.380226 109.690422) (xy 118.41088 109.711366) (xy 118.450571 109.724784) (xy 118.50192 109.729684) + (xy 118.554087 109.724645) (xy 118.595348 109.710704) (xy 118.628072 109.688712) (xy 118.653652 109.658968) + (xy 118.668603 109.625907) (xy 118.673684 109.588267) (xy 118.669063 109.55366) (xy 118.655525 109.523547) + (xy 118.632468 109.496737) (xy 118.602747 109.477306) (xy 118.562754 109.464583) (xy 118.50937 109.459856) + (xy 118.454703 109.464714) (xy 118.413088 109.477884) (xy 118.38157 109.498142) (xy 118.356921 109.526021) + (xy 118.342513 109.557254) (xy 118.337606 109.593091) (xy 118.17578 109.593091) (xy 118.171986 109.581359) + (xy 118.165659 109.515177) (xy 118.171735 109.450074) (xy 118.189456 109.391463) (xy 118.218779 109.337989) + (xy 118.260608 109.288703) (xy 118.310756 109.248512) (xy 118.366742 109.219847) (xy 118.429717 109.202245) + (xy 118.501249 109.196135) + ) + ) + ) + ) + (gr_text "CH-5" + (at 137.2 113.2 90) + (layer "F.SilkS" knockout) + (uuid "e761be5b-4ac7-4c53-91cf-082204d0b3f0") + (effects + (font + (face "Arial Black") + (size 1 1) + (thickness 0.2) + (bold yes) + ) + (justify left bottom) + ) + (render_cache "CH-5" 90 + (polygon + (pts + (xy 136.619672 112.430818) (xy 136.70192 112.159586) (xy 136.775829 112.182177) (xy 136.838645 112.211005) + (xy 136.891819 112.245682) (xy 136.938622 112.28816) (xy 136.976788 112.33658) (xy 137.006857 112.391556) + (xy 137.027379 112.4509) (xy 137.040773 112.523888) (xy 137.045631 112.613206) (xy 137.039676 112.721592) + (xy 137.023321 112.80935) (xy 136.99837 112.87998) (xy 136.971392 112.928267) (xy 136.935407 112.973975) + (xy 136.889423 113.017406) (xy 136.832102 113.058644) (xy 136.771682 113.090138) (xy 136.701831 113.113611) + (xy 136.621006 113.12849) (xy 136.527409 113.133749) (xy 136.426668 113.127689) (xy 136.340181 113.110565) + (xy 136.265846 113.083548) (xy 136.20189 113.047222) (xy 136.146939 113.001552) (xy 136.100774 112.946748) + (xy 136.0642 112.88341) (xy 136.037105 112.810264) (xy 136.01999 112.725641) (xy 136.013949 112.627555) + (xy 136.019466 112.531624) (xy 136.034834 112.451681) (xy 136.058679 112.385208) (xy 136.090214 112.330068) + (xy 136.131661 112.281152) (xy 136.183495 112.238048) (xy 136.247132 112.20062) (xy 136.324443 112.169173) + (xy 136.385198 112.442419) (xy 136.343008 112.458287) (xy 136.318276 112.472461) (xy 136.286704 112.501491) + (xy 136.263627 112.536025) (xy 136.249408 112.5753) (xy 136.244515 112.620045) (xy 136.250041 112.670652) + (xy 136.265842 112.713359) (xy 136.291757 112.749894) (xy 136.328961 112.781245) (xy 136.37304 112.802887) + (xy 136.436542 112.817866) (xy 136.525699 112.823621) (xy 136.612966 112.819402) (xy 136.676736 112.808353) + (xy 136.722124 112.792469) (xy 136.753456 112.773063) (xy 136.780069 112.745671) (xy 136.799094 112.71356) + (xy 136.810903 112.67579) (xy 136.815066 112.630975) (xy 136.808885 112.573906) (xy 136.791911 112.530223) + (xy 136.765057 112.496763) (xy 136.729277 112.470763) (xy 136.681719 112.448552) + ) + ) + (polygon + (pts + (xy 136.029581 112.007789) (xy 136.029581 111.698394) (xy 136.377383 111.698394) (xy 136.377383 111.36024) + (xy 136.029581 111.36024) (xy 136.029581 111.04938) (xy 137.03 111.04938) (xy 137.03 111.36024) + (xy 136.623579 111.36024) (xy 136.623579 111.698394) (xy 137.03 111.698394) (xy 137.03 112.007789) + ) + ) + (polygon + (pts + (xy 136.557145 110.915413) (xy 136.557145 110.511008) (xy 136.772079 110.511008) (xy 136.772079 110.915413) + ) + ) + (polygon + (pts + (xy 136.029581 110.309996) (xy 136.029581 109.649441) (xy 136.256238 109.649441) (xy 136.256238 110.096894) + (xy 136.405409 110.120769) (xy 136.386106 110.074022) (xy 136.372681 110.028872) (xy 136.36445 109.983425) + (xy 136.361751 109.939052) (xy 136.367809 109.864922) (xy 136.385125 109.800667) (xy 136.413051 109.744541) + (xy 136.451816 109.695237) (xy 136.499779 109.654276) (xy 136.5528 109.625346) (xy 136.611929 109.607719) + (xy 136.678656 109.601631) (xy 136.741545 109.606922) (xy 136.802893 109.622823) (xy 136.863487 109.649808) + (xy 136.918195 109.686558) (xy 136.963042 109.731816) (xy 136.99892 109.7864) (xy 137.023752 109.847181) + (xy 137.039823 109.92171) (xy 137.045631 110.012875) (xy 137.040594 110.108224) (xy 137.027008 110.182623) + (xy 137.003236 110.249261) (xy 136.971503 110.302852) (xy 136.931606 110.348161) (xy 136.88785 110.383086) + (xy 136.837311 110.41037) (xy 136.771285 110.434316) (xy 136.740816 110.152887) (xy 136.783903 110.142328) + (xy 136.817237 110.126238) (xy 136.842726 110.105076) (xy 136.862143 110.078362) (xy 136.873661 110.04886) + (xy 136.877592 110.015622) (xy 136.872684 109.978875) (xy 136.85838 109.947323) (xy 136.834117 109.919635) + (xy 136.802851 109.899693) (xy 136.76068 109.886591) (xy 136.704302 109.881716) (xy 136.646529 109.886733) + (xy 136.604693 109.900029) (xy 136.574853 109.920001) (xy 136.552263 109.947829) (xy 136.538527 109.981188) + (xy 136.533698 110.021728) (xy 136.538524 110.061107) (xy 136.553237 110.099581) (xy 136.571583 110.127075) + (xy 136.604528 110.161069) (xy 136.570762 110.398107) + ) + ) + ) + ) + (gr_text "NO" + (at 116.2 66 180) + (layer "F.SilkS" knockout) + (uuid "ebd28efc-45dd-47f9-afe4-bce14c8d7a4c") + (effects + (font + (face "Arial Black") + (size 1 1) + (thickness 0.2) + (bold yes) + ) + (justify left bottom) + ) + (render_cache "NO" 180 + (polygon + (pts + (xy 116.095464 67.170418) (xy 115.806524 67.170418) (xy 115.429413 66.617086) (xy 115.429413 67.170418) + (xy 115.137726 67.170418) (xy 115.137726 66.17) (xy 115.429413 66.17) (xy 115.804448 66.720218) + (xy 115.804448 66.17) (xy 116.095464 66.17) + ) + ) + (polygon + (pts + (xy 114.553672 66.161037) (xy 114.646047 66.179527) (xy 114.721964 66.208101) (xy 114.77424 66.238495) + (xy 114.82143 66.276563) (xy 114.86395 66.322867) (xy 114.901971 66.378278) (xy 114.931001 66.437224) + (xy 114.952569 66.504521) (xy 114.966182 66.581462) (xy 114.970969 66.669537) (xy 114.96481 66.768414) + (xy 114.947317 66.854123) (xy 114.919547 66.928598) (xy 114.881955 66.993462) (xy 114.834377 67.049945) + (xy 114.777698 67.097368) (xy 114.712707 67.134831) (xy 114.638186 67.162499) (xy 114.552535 67.179919) + (xy 114.453846 67.18605) (xy 114.352137 67.179932) (xy 114.264675 67.162632) (xy 114.189368 67.135315) + (xy 114.12445 67.09856) (xy 114.068553 67.052327) (xy 114.021435 66.996789) (xy 113.984216 66.932966) + (xy 113.956723 66.859639) (xy 113.939403 66.775198) (xy 113.933518 66.681139) (xy 114.242759 66.681139) + (xy 114.247119 66.753132) (xy 114.258937 66.809484) (xy 114.276759 66.853176) (xy 114.29979 66.886669) + (xy 114.330428 66.914761) (xy 114.365742 66.934822) (xy 114.406661 66.947227) (xy 114.454518 66.951577) + (xy 114.500115 66.947237) (xy 114.539627 66.934771) (xy 114.574266 66.914419) (xy 114.604849 66.885631) + (xy 114.6274 66.851771) (xy 114.645136 66.806258) (xy 114.657066 66.74607) (xy 114.661514 66.667583) + (xy 114.657103 66.589839) (xy 114.645254 66.530053) (xy 114.627615 66.484695) (xy 114.605155 66.450818) + (xy 114.574771 66.422244) (xy 114.539762 66.401896) (xy 114.49921 66.389335) (xy 114.45177 66.384933) + (xy 114.402771 66.389333) (xy 114.36165 66.401778) (xy 114.326882 66.42173) (xy 114.297409 66.449474) + (xy 114.276195 66.482457) (xy 114.259049 66.52923) (xy 114.247239 66.593849) (xy 114.242759 66.681139) + (xy 113.933518 66.681139) (xy 113.933304 66.677719) (xy 113.937508 66.588893) (xy 113.949347 66.51254) + (xy 113.967868 66.447015) (xy 113.992411 66.390856) (xy 114.025338 66.337844) (xy 114.064515 66.29146) + (xy 114.110271 66.251159) (xy 114.163197 66.21665) (xy 114.219565 66.190497) (xy 114.283922 66.171014) + (xy 114.357468 66.158701) (xy 114.441573 66.154368) + ) + ) + ) + ) + (gr_text "NC" + (at 113.8 130.8 0) + (layer "F.SilkS" knockout) + (uuid "ef318606-c9a2-4eed-863a-f8caba9a4383") + (effects + (font + (face "Arial Black") + (size 1 1) + (thickness 0.2) + (bold yes) + ) + (justify left bottom) + ) + (render_cache "NC" 0 + (polygon + (pts + (xy 113.904535 129.629581) (xy 114.193475 129.629581) (xy 114.570586 130.182913) (xy 114.570586 129.629581) + (xy 114.862273 129.629581) (xy 114.862273 130.63) (xy 114.570586 130.63) (xy 114.195551 130.079781) + (xy 114.195551 130.63) (xy 113.904535 130.63) + ) + ) + (polygon + (pts + (xy 115.734708 130.219672) (xy 116.00594 130.30192) (xy 115.983349 130.375829) (xy 115.954521 130.438645) + (xy 115.919844 130.491819) (xy 115.877366 130.538622) (xy 115.828946 130.576788) (xy 115.77397 130.606857) + (xy 115.714626 130.627379) (xy 115.641638 130.640773) (xy 115.55232 130.645631) (xy 115.443934 130.639676) + (xy 115.356176 130.623321) (xy 115.285546 130.59837) (xy 115.237259 130.571392) (xy 115.191551 130.535407) + (xy 115.14812 130.489423) (xy 115.106882 130.432102) (xy 115.075388 130.371682) (xy 115.051915 130.301831) + (xy 115.037036 130.221006) (xy 115.031777 130.127409) (xy 115.037837 130.026668) (xy 115.054961 129.940181) + (xy 115.081978 129.865846) (xy 115.118304 129.80189) (xy 115.163974 129.746939) (xy 115.218777 129.700774) + (xy 115.282116 129.6642) (xy 115.355262 129.637105) (xy 115.439885 129.61999) (xy 115.537971 129.613949) + (xy 115.633902 129.619466) (xy 115.713845 129.634834) (xy 115.780318 129.658679) (xy 115.835458 129.690214) + (xy 115.884374 129.731661) (xy 115.927477 129.783495) (xy 115.964906 129.847132) (xy 115.996353 129.924443) + (xy 115.723107 129.985198) (xy 115.707238 129.943008) (xy 115.693065 129.918276) (xy 115.664034 129.886704) + (xy 115.629501 129.863627) (xy 115.590226 129.849408) (xy 115.545481 129.844515) (xy 115.494874 129.850041) + (xy 115.452167 129.865842) (xy 115.415632 129.891757) (xy 115.384281 129.928961) (xy 115.362639 129.97304) + (xy 115.34766 130.036542) (xy 115.341905 130.125699) (xy 115.346124 130.212966) (xy 115.357172 130.276736) + (xy 115.373057 130.322124) (xy 115.392463 130.353456) (xy 115.419855 130.380069) (xy 115.451966 130.399094) + (xy 115.489736 130.410903) (xy 115.534551 130.415066) (xy 115.591619 130.408885) (xy 115.635303 130.391911) + (xy 115.668763 130.365057) (xy 115.694762 130.329277) (xy 115.716974 130.281719) + ) + ) + ) + ) + (gr_text "NO" + (at 102.8 130.8 0) + (layer "F.SilkS" knockout) + (uuid "f3528c46-68d9-4bcc-ad77-319f2952d0f9") + (effects + (font + (face "Arial Black") + (size 1 1) + (thickness 0.2) + (bold yes) + ) + (justify left bottom) + ) + (render_cache "NO" 0 + (polygon + (pts + (xy 102.904535 129.629581) (xy 103.193475 129.629581) (xy 103.570586 130.182913) (xy 103.570586 129.629581) + (xy 103.862273 129.629581) (xy 103.862273 130.63) (xy 103.570586 130.63) (xy 103.195551 130.079781) + (xy 103.195551 130.63) (xy 102.904535 130.63) + ) + ) + (polygon + (pts + (xy 104.647862 129.620067) (xy 104.735324 129.637367) (xy 104.810631 129.664684) (xy 104.875549 129.701439) + (xy 104.931446 129.747672) (xy 104.978564 129.80321) (xy 105.015783 129.867033) (xy 105.043276 129.94036) + (xy 105.060596 130.024801) (xy 105.066695 130.12228) (xy 105.062491 130.211106) (xy 105.050652 130.287459) + (xy 105.032131 130.352984) (xy 105.007588 130.409143) (xy 104.974661 130.462155) (xy 104.935484 130.508539) + (xy 104.889728 130.54884) (xy 104.836802 130.583349) (xy 104.780434 130.609502) (xy 104.716077 130.628985) + (xy 104.642531 130.641298) (xy 104.558426 130.645631) (xy 104.446327 130.638962) (xy 104.353952 130.620472) + (xy 104.278035 130.591898) (xy 104.225759 130.561504) (xy 104.178569 130.523436) (xy 104.136049 130.477132) + (xy 104.098028 130.421721) (xy 104.068998 130.362775) (xy 104.04743 130.295478) (xy 104.033817 130.218537) + (xy 104.029136 130.132416) (xy 104.338485 130.132416) (xy 104.342896 130.21016) (xy 104.354745 130.269946) + (xy 104.372384 130.315304) (xy 104.394844 130.349181) (xy 104.425228 130.377755) (xy 104.460237 130.398103) + (xy 104.500789 130.410664) (xy 104.548229 130.415066) (xy 104.597228 130.410666) (xy 104.638349 130.398221) + (xy 104.673117 130.378269) (xy 104.70259 130.350525) (xy 104.723804 130.317542) (xy 104.74095 130.270769) + (xy 104.75276 130.20615) (xy 104.75724 130.11886) (xy 104.75288 130.046867) (xy 104.741062 129.990515) + (xy 104.72324 129.946823) (xy 104.700209 129.91333) (xy 104.669571 129.885238) (xy 104.634257 129.865177) + (xy 104.593338 129.852772) (xy 104.545481 129.848422) (xy 104.499884 129.852762) (xy 104.460372 129.865228) + (xy 104.425733 129.88558) (xy 104.39515 129.914368) (xy 104.372599 129.948228) (xy 104.354863 129.993741) + (xy 104.342933 130.053929) (xy 104.338485 130.132416) (xy 104.029136 130.132416) (xy 104.02903 130.130462) + (xy 104.035189 130.031585) (xy 104.052682 129.945876) (xy 104.080452 129.871401) (xy 104.118044 129.806537) + (xy 104.165622 129.750054) (xy 104.222301 129.702631) (xy 104.287292 129.665168) (xy 104.361813 129.6375) + (xy 104.447464 129.62008) (xy 104.546153 129.613949) + ) + ) + ) + ) + (gr_text "+12" + (at 193.6 110.4 90) + (layer "F.SilkS" knockout) + (uuid "f706f889-eec3-4eed-b4b2-8b2945c45fdc") + (effects + (font + (face "Arial Black") + (size 1 1) + (thickness 0.2) + (bold yes) + ) + (justify left bottom) + ) + (render_cache "+12" 90 + (polygon + (pts + (xy 192.820369 110.313232) (xy 192.820369 110.051587) (xy 192.558541 110.051587) (xy 192.558541 109.830975) + (xy 192.820369 109.830975) (xy 192.820369 109.567986) (xy 193.039211 109.567986) (xy 193.039211 109.830975) + (xy 193.301039 109.830975) (xy 193.301039 110.051587) (xy 193.039211 110.051587) (xy 193.039211 110.313232) + ) + ) + (polygon + (pts + (xy 192.413949 108.787875) (xy 193.43 108.787875) (xy 193.43 109.069303) (xy 192.76572 109.069303) + (xy 192.813376 109.138088) (xy 192.84919 109.2015) (xy 192.879017 109.269902) (xy 192.910251 109.361723) + (xy 192.683593 109.361723) (xy 192.648473 109.268516) (xy 192.611482 109.196122) (xy 192.573135 109.14105) + (xy 192.526931 109.092587) (xy 192.474089 109.051705) (xy 192.413949 109.018073) + ) + ) + (polygon + (pts + (xy 193.43 107.671135) (xy 193.43 108.505896) (xy 193.349907 108.489989) (xy 193.272849 108.461191) + (xy 193.197969 108.418824) (xy 193.130125 108.364509) (xy 193.045877 108.276902) (xy 192.941758 108.145882) + (xy 192.854129 108.036498) (xy 192.804494 107.989445) (xy 192.756951 107.963148) (xy 192.715528 107.955312) + (xy 192.686592 107.959083) (xy 192.660967 107.970188) (xy 192.637737 107.989139) (xy 192.619938 108.013357) + (xy 192.609177 108.041343) (xy 192.605436 108.074197) (xy 192.60936 108.108302) (xy 192.620586 108.136913) + (xy 192.63908 108.16127) (xy 192.663879 108.179554) (xy 192.70194 108.195082) (xy 192.757843 108.206699) + (xy 192.73519 108.48538) (xy 192.657317 108.470165) (xy 192.596961 108.449785) (xy 192.550908 108.425296) + (xy 192.510636 108.392626) (xy 192.476864 108.351897) (xy 192.449303 108.302015) (xy 192.430993 108.247632) + (xy 192.418587 108.175604) (xy 192.413949 108.081707) (xy 192.418374 107.983419) (xy 192.430142 107.908797) + (xy 192.447349 107.853218) (xy 192.473966 107.802102) (xy 192.508036 107.759637) (xy 192.549993 107.724808) + (xy 192.597902 107.698818) (xy 192.64925 107.68326) (xy 192.705087 107.677974) (xy 192.764471 107.683808) + (xy 192.822338 107.701414) (xy 192.879659 107.731585) (xy 192.931175 107.771815) (xy 192.99142 107.834715) + (xy 193.061987 107.926613) (xy 193.142892 108.039026) (xy 193.203342 108.105582) (xy 193.203342 107.671135) + ) + ) + ) + ) + (gr_text "NO" + (at 84.8 130.8 0) + (layer "F.SilkS" knockout) + (uuid "fdee9077-7f83-4324-8263-43111a8a6dec") + (effects + (font + (face "Arial Black") + (size 1 1) + (thickness 0.2) + (bold yes) + ) + (justify left bottom) + ) + (render_cache "NO" 0 + (polygon + (pts + (xy 84.904535 129.629581) (xy 85.193475 129.629581) (xy 85.570586 130.182913) (xy 85.570586 129.629581) + (xy 85.862273 129.629581) (xy 85.862273 130.63) (xy 85.570586 130.63) (xy 85.195551 130.079781) + (xy 85.195551 130.63) (xy 84.904535 130.63) + ) + ) + (polygon + (pts + (xy 86.647862 129.620067) (xy 86.735324 129.637367) (xy 86.810631 129.664684) (xy 86.875549 129.701439) + (xy 86.931446 129.747672) (xy 86.978564 129.80321) (xy 87.015783 129.867033) (xy 87.043276 129.94036) + (xy 87.060596 130.024801) (xy 87.066695 130.12228) (xy 87.062491 130.211106) (xy 87.050652 130.287459) + (xy 87.032131 130.352984) (xy 87.007588 130.409143) (xy 86.974661 130.462155) (xy 86.935484 130.508539) + (xy 86.889728 130.54884) (xy 86.836802 130.583349) (xy 86.780434 130.609502) (xy 86.716077 130.628985) + (xy 86.642531 130.641298) (xy 86.558426 130.645631) (xy 86.446327 130.638962) (xy 86.353952 130.620472) + (xy 86.278035 130.591898) (xy 86.225759 130.561504) (xy 86.178569 130.523436) (xy 86.136049 130.477132) + (xy 86.098028 130.421721) (xy 86.068998 130.362775) (xy 86.04743 130.295478) (xy 86.033817 130.218537) + (xy 86.029136 130.132416) (xy 86.338485 130.132416) (xy 86.342896 130.21016) (xy 86.354745 130.269946) + (xy 86.372384 130.315304) (xy 86.394844 130.349181) (xy 86.425228 130.377755) (xy 86.460237 130.398103) + (xy 86.500789 130.410664) (xy 86.548229 130.415066) (xy 86.597228 130.410666) (xy 86.638349 130.398221) + (xy 86.673117 130.378269) (xy 86.70259 130.350525) (xy 86.723804 130.317542) (xy 86.74095 130.270769) + (xy 86.75276 130.20615) (xy 86.75724 130.11886) (xy 86.75288 130.046867) (xy 86.741062 129.990515) + (xy 86.72324 129.946823) (xy 86.700209 129.91333) (xy 86.669571 129.885238) (xy 86.634257 129.865177) + (xy 86.593338 129.852772) (xy 86.545481 129.848422) (xy 86.499884 129.852762) (xy 86.460372 129.865228) + (xy 86.425733 129.88558) (xy 86.39515 129.914368) (xy 86.372599 129.948228) (xy 86.354863 129.993741) + (xy 86.342933 130.053929) (xy 86.338485 130.132416) (xy 86.029136 130.132416) (xy 86.02903 130.130462) + (xy 86.035189 130.031585) (xy 86.052682 129.945876) (xy 86.080452 129.871401) (xy 86.118044 129.806537) + (xy 86.165622 129.750054) (xy 86.222301 129.702631) (xy 86.287292 129.665168) (xy 86.361813 129.6375) + (xy 86.447464 129.62008) (xy 86.546153 129.613949) + ) + ) + ) + ) + (gr_text "In2.Cu" + (at 16.189284 176.888 0) + (layer "Dwgs.User") + (uuid "009a23d7-ae08-4bc0-9510-02123581c408") + (effects + (font + (size 1.5 1.5) + (thickness 0.1) + ) + (justify left top) + ) + ) + (gr_text "FR4" + (at 56.646426 173.282 0) + (layer "Dwgs.User") + (uuid "01ac2c1f-abd8-4559-bba0-89d4016bc5ec") + (effects + (font + (size 1.5 1.5) + (thickness 0.1) + ) + (justify left top) + ) + ) + (gr_text "Not specified" + (at 93.174999 166.07 0) + (layer "Dwgs.User") + (uuid "085333b1-b4fd-43d9-b07d-3893e7c9f80f") + (effects + (font + (size 1.5 1.5) + (thickness 0.1) + ) + (justify left top) + ) + ) + (gr_text "1" + (at 109.675 176.888 0) + (layer "Dwgs.User") + (uuid "09a68a35-101b-48ed-90b7-edb107b2b9b9") + (effects + (font + (size 1.5 1.5) + (thickness 0.1) + ) + (justify left top) + ) + ) + (gr_text "None" + (at 93.732143 37.19 0) + (layer "Dwgs.User") + (uuid "0a7119a0-8127-4590-a0c8-b5231a556b8a") + (effects + (font + (size 1.5 1.5) + (thickness 0.2) + ) + (justify left top) + ) + ) + (gr_text "1" + (at 109.675 194.918 0) + (layer "Dwgs.User") + (uuid "0fb9b365-0dfe-41f4-9c79-c46276ae5c3e") + (effects + (font + (size 1.5 1.5) + (thickness 0.1) + ) + (justify left top) + ) + ) + (gr_text "1" + (at 109.675 151.646 0) + (layer "Dwgs.User") + (uuid "123a8d3a-e686-42a8-a57b-92649db68ce9") + (effects + (font + (size 1.5 1.5) + (thickness 0.1) + ) + (justify left top) + ) + ) + (gr_text "0" + (at 122.560715 155.252 0) + (layer "Dwgs.User") + (uuid "12b75cb6-f342-486c-be64-a195bf5fb8f9") + (effects + (font + (size 1.5 1.5) + (thickness 0.1) + ) + (justify left top) + ) + ) + (gr_text "" + (at 93.174999 184.1 0) + (layer "Dwgs.User") + (uuid "13e80652-0312-4f7d-8a77-48c7ff547079") + (effects + (font + (size 1.5 1.5) + (thickness 0.1) + ) + (justify left top) + ) + ) + (gr_text "4" + (at 93.732143 25.319 0) + (layer "Dwgs.User") + (uuid "1b71d465-bf8d-4cf3-a89f-23aead2bbadd") + (effects + (font + (size 1.5 1.5) + (thickness 0.2) + ) + (justify left top) + ) + ) + (gr_text "No" + (at 154.260709 41.147 0) + (layer "Dwgs.User") + (uuid "21c59d6a-bfae-470d-856e-4242a930da70") + (effects + (font + (size 1.5 1.5) + (thickness 0.2) + ) + (justify left top) + ) + ) + (gr_text "4.5" + (at 109.675 173.282 0) + (layer "Dwgs.User") + (uuid "256145a3-0ad7-41af-94d3-b9cd4fed2926") + (effects + (font + (size 1.5 1.5) + (thickness 0.1) + ) + (justify left top) + ) + ) + (gr_text "0" + (at 122.560715 184.1 0) + (layer "Dwgs.User") + (uuid "2a83b24a-b0c6-460a-b8eb-3dc1c37d6f63") + (effects + (font + (size 1.5 1.5) + (thickness 0.1) + ) + (justify left top) + ) + ) + (gr_text "" + (at 56.646426 162.464 0) + (layer "Dwgs.User") + (uuid "2bf8b61b-148a-419f-b520-87f3e09f2fdf") + (effects + (font + (size 1.5 1.5) + (thickness 0.1) + ) + (justify left top) + ) + ) + (gr_text "Bottom Solder Paste" + (at 31.574998 191.312 0) + (layer "Dwgs.User") + (uuid "2cf29177-f6dd-4992-89fa-9a92e2eb09a0") + (effects + (font + (size 1.5 1.5) + (thickness 0.1) + ) + (justify left top) + ) + ) + (gr_text "prepreg" + (at 31.574998 180.494 0) + (layer "Dwgs.User") + (uuid "2d77e7a5-b22a-4170-b2cd-96e0fa141699") + (effects + (font + (size 1.5 1.5) + (thickness 0.1) + ) + (justify left top) + ) + ) + (gr_text "Impedance Control: " + (at 129.317852 37.19 0) + (layer "Dwgs.User") + (uuid "2d7a2378-a1a9-4f42-8622-76f85288e8c5") + (effects + (font + (size 1.5 1.5) + (thickness 0.2) + ) + (justify left top) + ) + ) + (gr_text "" + (at 93.174999 155.252 0) + (layer "Dwgs.User") + (uuid "2e6d7440-75be-43a2-a417-addbd427c081") + (effects + (font + (size 1.5 1.5) + (thickness 0.1) + ) + (justify left top) + ) + ) + (gr_text "0" + (at 122.560715 169.676 0) + (layer "Dwgs.User") + (uuid "32020c0f-e37d-455a-a5fc-f44a53548fda") + (effects + (font + (size 1.5 1.5) + (thickness 0.1) + ) + (justify left top) + ) + ) + (gr_text "B.Cu" + (at 16.189284 184.1 0) + (layer "Dwgs.User") + (uuid "32d3a54e-1328-4f78-b6ba-98a0e7d0f2d4") + (effects + (font + (size 1.5 1.5) + (thickness 0.1) + ) + (justify left top) + ) + ) + (gr_text "Type" + (at 31.574998 147.338 0) + (layer "Dwgs.User") + (uuid "3375b3d7-822c-49f7-be26-75de5a691e09") + (effects + (font + (size 1.5 1.5) + (thickness 0.3) + ) + (justify left top) + ) + ) + (gr_text "Board Thickness: " + (at 129.317852 25.319 0) + (layer "Dwgs.User") + (uuid "351492f9-6281-4792-a3ec-b41709a8a08f") + (effects + (font + (size 1.5 1.5) + (thickness 0.2) + ) + (justify left top) + ) + ) + (gr_text "140.8000 mm x 82.8000 mm" + (at 93.732143 29.276 0) + (layer "Dwgs.User") + (uuid "35b53a2e-5435-402a-8e0e-97e0af74dfe9") + (effects + (font + (size 1.5 1.5) + (thickness 0.2) + ) + (justify left top) + ) + ) + (gr_text "0" + (at 122.560715 176.888 0) + (layer "Dwgs.User") + (uuid "36bcb5d9-484f-4698-828d-c4f4648b4485") + (effects + (font + (size 1.5 1.5) + (thickness 0.1) + ) + (justify left top) + ) + ) + (gr_text "" + (at 56.646426 155.252 0) + (layer "Dwgs.User") + (uuid "37654cc4-9d9e-49b8-bea5-d8ac6076ae78") + (effects + (font + (size 1.5 1.5) + (thickness 0.1) + ) + (justify left top) + ) + ) + (gr_text "Castellated pads: " + (at 61.075 41.147 0) + (layer "Dwgs.User") + (uuid "3d0d0b1f-d595-4533-b85e-65920c6b8c5d") + (effects + (font + (size 1.5 1.5) + (thickness 0.2) + ) + (justify left top) + ) + ) + (gr_text "" + (at 93.174999 169.676 0) + (layer "Dwgs.User") + (uuid "3e3fb319-899c-48c9-bc4c-826a8930422c") + (effects + (font + (size 1.5 1.5) + (thickness 0.1) + ) + (justify left top) + ) + ) + (gr_text "Color" + (at 93.174999 147.338 0) + (layer "Dwgs.User") + (uuid "3fde7d65-8639-4366-a8d7-6ef977ebbe3b") + (effects + (font + (size 1.5 1.5) + (thickness 0.3) + ) + (justify left top) + ) + ) + (gr_text "0" + (at 122.560715 191.312 0) + (layer "Dwgs.User") + (uuid "41edaaab-51cf-499d-af1e-9833d9674290") + (effects + (font + (size 1.5 1.5) + (thickness 0.1) + ) + (justify left top) + ) + ) + (gr_text "copper" + (at 31.574998 176.888 0) + (layer "Dwgs.User") + (uuid "43d55592-06d9-47c1-bc1b-3bf75c2d4f7e") + (effects + (font + (size 1.5 1.5) + (thickness 0.1) + ) + (justify left top) + ) + ) + (gr_text "0.035 mm" + (at 73.146427 184.1 0) + (layer "Dwgs.User") + (uuid "4439e608-e535-49cb-a0bc-80c6c82c6acf") + (effects + (font + (size 1.5 1.5) + (thickness 0.1) + ) + (justify left top) + ) + ) + (gr_text "" + (at 56.646426 176.888 0) + (layer "Dwgs.User") + (uuid "45bec16f-4385-4472-9cb7-3a41f343d352") + (effects + (font + (size 1.5 1.5) + (thickness 0.1) + ) + (justify left top) + ) + ) + (gr_text "Dielectric" + (at 16.189284 166.07 0) + (layer "Dwgs.User") + (uuid "4661ca4b-f232-4161-9313-c0b9ae453dc7") + (effects + (font + (size 1.5 1.5) + (thickness 0.1) + ) + (justify left top) + ) + ) + (gr_text "Not specified" + (at 56.646426 187.706 0) + (layer "Dwgs.User") + (uuid "4780ebfc-4110-4d15-abd8-58f87a21c5b1") + (effects + (font + (size 1.5 1.5) + (thickness 0.1) + ) + (justify left top) + ) + ) + (gr_text "" + (at 56.646426 191.312 0) + (layer "Dwgs.User") + (uuid "47c06181-3f69-4f63-96ae-f5cf3e6c40a6") + (effects + (font + (size 1.5 1.5) + (thickness 0.1) + ) + (justify left top) + ) + ) + (gr_text "0" + (at 122.560715 158.858 0) + (layer "Dwgs.User") + (uuid "4f72e358-b009-479b-85eb-b9981f1dc500") + (effects + (font + (size 1.5 1.5) + (thickness 0.1) + ) + (justify left top) + ) + ) + (gr_text "0.1 mm" + (at 73.146427 180.494 0) + (layer "Dwgs.User") + (uuid "50903b5b-85c0-4501-a83b-823374ff0925") + (effects + (font + (size 1.5 1.5) + (thickness 0.1) + ) + (justify left top) + ) + ) + (gr_text "copper" + (at 31.574998 184.1 0) + (layer "Dwgs.User") + (uuid "533921f7-3260-4bbb-8c61-d934517af77a") + (effects + (font + (size 1.5 1.5) + (thickness 0.1) + ) + (justify left top) + ) + ) + (gr_text "0.01 mm" + (at 73.146427 187.706 0) + (layer "Dwgs.User") + (uuid "5867eb57-af30-4b3e-8662-f301efc4733f") + (effects + (font + (size 1.5 1.5) + (thickness 0.1) + ) + (justify left top) + ) + ) + (gr_text "Not specified" + (at 93.174999 194.918 0) + (layer "Dwgs.User") + (uuid "5ae2f48c-4bf6-427d-b49b-16403c114577") + (effects + (font + (size 1.5 1.5) + (thickness 0.1) + ) + (justify left top) + ) + ) + (gr_text "Not specified" + (at 56.646426 151.646 0) + (layer "Dwgs.User") + (uuid "5b00a827-f514-4007-b090-c1eb7c500bf1") + (effects + (font + (size 1.5 1.5) + (thickness 0.1) + ) + (justify left top) + ) + ) + (gr_text "" + (at 93.174999 176.888 0) + (layer "Dwgs.User") + (uuid "5c2510fc-bc21-43e3-9b31-91fed8d2b6cf") + (effects + (font + (size 1.5 1.5) + (thickness 0.1) + ) + (justify left top) + ) + ) + (gr_text "Epsilon R" + (at 109.675 147.338 0) + (layer "Dwgs.User") + (uuid "5c2f4bb7-8efe-4589-bb4a-65b102d76cd4") + (effects + (font + (size 1.5 1.5) + (thickness 0.3) + ) + (justify left top) + ) + ) + (gr_text "0.1500 mm / 0.1500 mm" + (at 93.732143 33.233 0) + (layer "Dwgs.User") + (uuid "5d551370-5d1d-4416-8d52-3f7779ac89d2") + (effects + (font + (size 1.5 1.5) + (thickness 0.2) + ) + (justify left top) + ) + ) + (gr_text "0.3000 mm" + (at 154.260709 33.233 0) + (layer "Dwgs.User") + (uuid "612800a5-e0df-467d-b860-9c0d9684d6a4") + (effects + (font + (size 1.5 1.5) + (thickness 0.2) + ) + (justify left top) + ) + ) + (gr_text "prepreg" + (at 31.574998 166.07 0) + (layer "Dwgs.User") + (uuid "65cfec05-3536-4d3d-9387-f98b21d8f66c") + (effects + (font + (size 1.5 1.5) + (thickness 0.1) + ) + (justify left top) + ) + ) + (gr_text "1" + (at 109.675 184.1 0) + (layer "Dwgs.User") + (uuid "677eeddd-d076-47b5-841d-28fee4d3775d") + (effects + (font + (size 1.5 1.5) + (thickness 0.1) + ) + (justify left top) + ) + ) + (gr_text "0.035 mm" + (at 73.146427 169.676 0) + (layer "Dwgs.User") + (uuid "6c002b70-b2eb-47a9-a35c-456543a3d438") + (effects + (font + (size 1.5 1.5) + (thickness 0.1) + ) + (justify left top) + ) + ) + (gr_text "Material" + (at 56.646426 147.338 0) + (layer "Dwgs.User") + (uuid "6fb0a1e4-e9d0-4bcf-9584-63875f4cbb52") + (effects + (font + (size 1.5 1.5) + (thickness 0.3) + ) + (justify left top) + ) + ) + (gr_text "4.5" + (at 109.675 180.494 0) + (layer "Dwgs.User") + (uuid "6fd70013-2a30-4708-91a1-fc485cceb310") + (effects + (font + (size 1.5 1.5) + (thickness 0.1) + ) + (justify left top) + ) + ) + (gr_text "0" + (at 122.560715 151.646 0) + (layer "Dwgs.User") + (uuid "70839f0d-0635-44aa-a04a-5bd6269ea85b") + (effects + (font + (size 1.5 1.5) + (thickness 0.1) + ) + (justify left top) + ) + ) + (gr_text "0 mm" + (at 73.146427 155.252 0) + (layer "Dwgs.User") + (uuid "70b06379-a968-4dad-b4f3-3f74d3d02fe8") + (effects + (font + (size 1.5 1.5) + (thickness 0.1) + ) + (justify left top) + ) + ) + (gr_text "Not specified" + (at 93.174999 158.858 0) + (layer "Dwgs.User") + (uuid "748b628d-9254-48af-8452-2a2d9f564a29") + (effects + (font + (size 1.5 1.5) + (thickness 0.1) + ) + (justify left top) + ) + ) + (gr_text "B.Silkscreen" + (at 16.189284 194.918 0) + (layer "Dwgs.User") + (uuid "75da59fa-c6e1-412b-895d-5c86bdc0c730") + (effects + (font + (size 1.5 1.5) + (thickness 0.1) + ) + (justify left top) + ) + ) + (gr_text "" + (at 154.260709 29.276 0) + (layer "Dwgs.User") + (uuid "76442408-cac2-472b-8938-d61c04a87f4c") + (effects + (font + (size 1.5 1.5) + (thickness 0.2) + ) + (justify left top) + ) + ) + (gr_text "1" + (at 109.675 191.312 0) + (layer "Dwgs.User") + (uuid "7707d748-9981-4937-bd09-3af2b253e7bd") + (effects + (font + (size 1.5 1.5) + (thickness 0.1) + ) + (justify left top) + ) + ) + (gr_text "0.035 mm" + (at 73.146427 162.464 0) + (layer "Dwgs.User") + (uuid "7866b8b7-24f1-443f-912a-c4d37951c2f2") + (effects + (font + (size 1.5 1.5) + (thickness 0.1) + ) + (justify left top) + ) + ) + (gr_text "1" + (at 109.675 162.464 0) + (layer "Dwgs.User") + (uuid "7a0cb82b-52cf-44dc-8811-d567a990945d") + (effects + (font + (size 1.5 1.5) + (thickness 0.1) + ) + (justify left top) + ) + ) + (gr_text "Copper Finish: " + (at 61.075 37.19 0) + (layer "Dwgs.User") + (uuid "7d0c8ce1-05f7-4336-b7f4-7599911f2ec1") + (effects + (font + (size 1.5 1.5) + (thickness 0.2) + ) + (justify left top) + ) + ) + (gr_text "" + (at 129.317852 29.276 0) + (layer "Dwgs.User") + (uuid "7e15a456-ef9a-4040-870e-eb976f178580") + (effects + (font + (size 1.5 1.5) + (thickness 0.2) + ) + (justify left top) + ) + ) + (gr_text "1.6000 mm" + (at 154.260709 25.319 0) + (layer "Dwgs.User") + (uuid "82060cc2-ea8c-49ed-b4f6-23a8921921f4") + (effects + (font + (size 1.5 1.5) + (thickness 0.2) + ) + (justify left top) + ) + ) + (gr_text "Plated Board Edge: " + (at 129.317852 41.147 0) + (layer "Dwgs.User") + (uuid "869ce8e3-50c0-4cee-bc0a-7b9d7924bf26") + (effects + (font + (size 1.5 1.5) + (thickness 0.2) + ) + (justify left top) + ) + ) + (gr_text "0 mm" + (at 73.146427 191.312 0) + (layer "Dwgs.User") + (uuid "8854e799-aef1-45c9-b908-61c72610a6c9") + (effects + (font + (size 1.5 1.5) + (thickness 0.1) + ) + (justify left top) + ) + ) + (gr_text "B.Paste" + (at 16.189284 191.312 0) + (layer "Dwgs.User") + (uuid "88acc656-1b1b-4bd1-85a2-169f827baee5") + (effects + (font + (size 1.5 1.5) + (thickness 0.1) + ) + (justify left top) + ) + ) + (gr_text "1" + (at 109.675 155.252 0) + (layer "Dwgs.User") + (uuid "88f78641-f7f8-458d-8985-37951b1c77fe") + (effects + (font + (size 1.5 1.5) + (thickness 0.1) + ) + (justify left top) + ) + ) + (gr_text "1.24 mm" + (at 73.146427 173.282 0) + (layer "Dwgs.User") + (uuid "8c5cbe45-355a-4850-83b4-3c1339ed9691") + (effects + (font + (size 1.5 1.5) + (thickness 0.1) + ) + (justify left top) + ) + ) + (gr_text "BOARD CHARACTERISTICS" + (at 60.325 19.825 0) + (layer "Dwgs.User") + (uuid "91610a62-9aba-40b5-9e2e-6217b36eb26e") + (effects + (font + (size 2 2) + (thickness 0.4) + ) + (justify left top) + ) + ) + (gr_text "0.035 mm" + (at 73.146427 176.888 0) + (layer "Dwgs.User") + (uuid "9667a164-851f-446b-8608-59f4d5f51c36") + (effects + (font + (size 1.5 1.5) + (thickness 0.1) + ) + (justify left top) + ) + ) + (gr_text "Layer Name" + (at 16.189284 147.338 0) + (layer "Dwgs.User") + (uuid "96a0fe57-11b5-460b-8f4a-18a68a481163") + (effects + (font + (size 1.5 1.5) + (thickness 0.3) + ) + (justify left top) + ) + ) + (gr_text "Thickness (mm)" + (at 73.146427 147.338 0) + (layer "Dwgs.User") + (uuid "99b7eae8-29be-4dc2-affc-0b01a449e535") + (effects + (font + (size 1.5 1.5) + (thickness 0.3) + ) + (justify left top) + ) + ) + (gr_text "Not specified" + (at 93.174999 187.706 0) + (layer "Dwgs.User") + (uuid "9aae0be2-9630-44a5-bd6d-f248f4cc9222") + (effects + (font + (size 1.5 1.5) + (thickness 0.1) + ) + (justify left top) + ) + ) + (gr_text "Not specified" + (at 93.174999 173.282 0) + (layer "Dwgs.User") + (uuid "9aef5ad6-24f5-4b4c-84ab-fec5a0206c89") + (effects + (font + (size 1.5 1.5) + (thickness 0.1) + ) + (justify left top) + ) + ) + (gr_text "In1.Cu" + (at 16.189284 169.676 0) + (layer "Dwgs.User") + (uuid "9b3f7cfb-0ee5-4a66-8009-b490cd110803") + (effects + (font + (size 1.5 1.5) + (thickness 0.1) + ) + (justify left top) + ) + ) + (gr_text "0.02" + (at 122.560715 180.494 0) + (layer "Dwgs.User") + (uuid "9e93d958-f007-47cb-b485-6eebf29e87f4") + (effects + (font + (size 1.5 1.5) + (thickness 0.1) + ) + (justify left top) + ) + ) + (gr_text "Not specified" + (at 93.174999 180.494 0) + (layer "Dwgs.User") + (uuid "9eabf41a-1ce1-45a9-821d-c1fa06f846eb") + (effects + (font + (size 1.5 1.5) + (thickness 0.1) + ) + (justify left top) + ) + ) + (gr_text "4.5" + (at 109.675 166.07 0) + (layer "Dwgs.User") + (uuid "a7c37a65-afdc-42fa-9119-463bdf6de708") + (effects + (font + (size 1.5 1.5) + (thickness 0.1) + ) + (justify left top) + ) + ) + (gr_text "FR4" + (at 56.646426 180.494 0) + (layer "Dwgs.User") + (uuid "aa17ac04-358e-4260-b16d-2965c52161aa") + (effects + (font + (size 1.5 1.5) + (thickness 0.1) + ) + (justify left top) + ) + ) + (gr_text "0 mm" + (at 73.146427 151.646 0) + (layer "Dwgs.User") + (uuid "ab0ea630-9d42-468f-938f-fa84040688e5") + (effects + (font + (size 1.5 1.5) + (thickness 0.1) + ) + (justify left top) + ) + ) + (gr_text "Edge card connectors: " + (at 61.075 45.104 0) + (layer "Dwgs.User") + (uuid "abaadafe-cac7-45f4-98bb-3e5d3b920c83") + (effects + (font + (size 1.5 1.5) + (thickness 0.2) + ) + (justify left top) + ) + ) + (gr_text "" + (at 56.646426 184.1 0) + (layer "Dwgs.User") + (uuid "adb5df42-22b7-4f89-a0ca-f5fe26fd830d") + (effects + (font + (size 1.5 1.5) + (thickness 0.1) + ) + (justify left top) + ) + ) + (gr_text "Not specified" + (at 56.646426 194.918 0) + (layer "Dwgs.User") + (uuid "b0bf5226-aa05-474c-996a-77161b80a58e") + (effects + (font + (size 1.5 1.5) + (thickness 0.1) + ) + (justify left top) + ) + ) + (gr_text "No" + (at 154.260709 37.19 0) + (layer "Dwgs.User") + (uuid "b10e2ab9-eaee-4b40-ac7f-709a0d68970f") + (effects + (font + (size 1.5 1.5) + (thickness 0.2) + ) + (justify left top) + ) + ) + (gr_text "Board overall dimensions: " + (at 61.075 29.276 0) + (layer "Dwgs.User") + (uuid "b16785e5-7116-43e5-9d02-67e6d299f6d8") + (effects + (font + (size 1.5 1.5) + (thickness 0.2) + ) + (justify left top) + ) + ) + (gr_text "Top Solder Mask" + (at 31.574998 158.858 0) + (layer "Dwgs.User") + (uuid "b1c10e42-7a73-49ea-a452-ede90b3c430f") + (effects + (font + (size 1.5 1.5) + (thickness 0.1) + ) + (justify left top) + ) + ) + (gr_text "Bottom Solder Mask" + (at 31.574998 187.706 0) + (layer "Dwgs.User") + (uuid "b1f3f240-ca2b-41ea-b206-18f0a5828010") + (effects + (font + (size 1.5 1.5) + (thickness 0.1) + ) + (justify left top) + ) + ) + (gr_text "" + (at 56.646426 169.676 0) + (layer "Dwgs.User") + (uuid "b6043349-f418-4b3b-99a5-9116a5762c1d") + (effects + (font + (size 1.5 1.5) + (thickness 0.1) + ) + (justify left top) + ) + ) + (gr_text "core" + (at 31.574998 173.282 0) + (layer "Dwgs.User") + (uuid "b6b1c058-2e19-495b-9971-b0883b7144a5") + (effects + (font + (size 1.5 1.5) + (thickness 0.1) + ) + (justify left top) + ) + ) + (gr_text "1" + (at 109.675 169.676 0) + (layer "Dwgs.User") + (uuid "b8876dec-2ddf-4d91-a23b-b2a3f767fd28") + (effects + (font + (size 1.5 1.5) + (thickness 0.1) + ) + (justify left top) + ) + ) + (gr_text "0" + (at 122.560715 162.464 0) + (layer "Dwgs.User") + (uuid "ba138485-5fb7-4cdd-95a7-0013e58888b2") + (effects + (font + (size 1.5 1.5) + (thickness 0.1) + ) + (justify left top) + ) + ) + (gr_text "0.02" + (at 122.560715 166.07 0) + (layer "Dwgs.User") + (uuid "bb6fe073-e4e6-4d23-a6d5-4f4e62cf8adb") + (effects + (font + (size 1.5 1.5) + (thickness 0.1) + ) + (justify left top) + ) + ) + (gr_text "0.01 mm" + (at 73.146427 158.858 0) + (layer "Dwgs.User") + (uuid "bba97ed1-d46f-40c8-8235-c99780b44f9c") + (effects + (font + (size 1.5 1.5) + (thickness 0.1) + ) + (justify left top) + ) + ) + (gr_text "No" + (at 93.732143 41.147 0) + (layer "Dwgs.User") + (uuid "c0d130e7-8983-411d-9ffd-ba346524065e") + (effects + (font + (size 1.5 1.5) + (thickness 0.2) + ) + (justify left top) + ) + ) + (gr_text "F.Paste" + (at 16.189284 155.252 0) + (layer "Dwgs.User") + (uuid "c27bb6c1-aa23-4d6c-8d94-e32b2f983ca7") + (effects + (font + (size 1.5 1.5) + (thickness 0.1) + ) + (justify left top) + ) + ) + (gr_text "0" + (at 122.560715 194.918 0) + (layer "Dwgs.User") + (uuid "c8167199-a5fa-4397-a7af-11e95065ba94") + (effects + (font + (size 1.5 1.5) + (thickness 0.1) + ) + (justify left top) + ) + ) + (gr_text "B.Mask" + (at 16.189284 187.706 0) + (layer "Dwgs.User") + (uuid "c881e1b1-b5e8-4513-83cc-e1ad89abb42d") + (effects + (font + (size 1.5 1.5) + (thickness 0.1) + ) + (justify left top) + ) + ) + (gr_text "F.Silkscreen" + (at 16.189284 151.646 0) + (layer "Dwgs.User") + (uuid "c91b93b8-154c-42d7-a980-fd5dc0bd24a4") + (effects + (font + (size 1.5 1.5) + (thickness 0.1) + ) + (justify left top) + ) + ) + (gr_text "Not specified" + (at 56.646426 158.858 0) + (layer "Dwgs.User") + (uuid "cecb8b59-7ea0-4049-a130-2d9a86e63697") + (effects + (font + (size 1.5 1.5) + (thickness 0.1) + ) + (justify left top) + ) + ) + (gr_text "Min track/spacing: " + (at 61.075 33.233 0) + (layer "Dwgs.User") + (uuid "d01586d4-4d66-42f9-b230-7d54786f4782") + (effects + (font + (size 1.5 1.5) + (thickness 0.2) + ) + (justify left top) + ) + ) + (gr_text "copper" + (at 31.574998 169.676 0) + (layer "Dwgs.User") + (uuid "d1152874-defc-4365-aebf-7345295798e1") + (effects + (font + (size 1.5 1.5) + (thickness 0.1) + ) + (justify left top) + ) + ) + (gr_text "F.Mask" + (at 16.189284 158.858 0) + (layer "Dwgs.User") + (uuid "d2e31aca-549d-4ace-a4c1-d79ac713a4f5") + (effects + (font + (size 1.5 1.5) + (thickness 0.1) + ) + (justify left top) + ) + ) + (gr_text "0 mm" + (at 73.146427 194.918 0) + (layer "Dwgs.User") + (uuid "d3c182bc-b5c4-4381-a3d6-9f786e804c3d") + (effects + (font + (size 1.5 1.5) + (thickness 0.1) + ) + (justify left top) + ) + ) + (gr_text "copper" + (at 31.574998 162.464 0) + (layer "Dwgs.User") + (uuid "d9797895-b2b8-4ebe-97d1-b54c83c38ebf") + (effects + (font + (size 1.5 1.5) + (thickness 0.1) + ) + (justify left top) + ) + ) + (gr_text "" + (at 93.174999 191.312 0) + (layer "Dwgs.User") + (uuid "dbc72154-a486-4345-a283-bf5d3de25514") + (effects + (font + (size 1.5 1.5) + (thickness 0.1) + ) + (justify left top) + ) + ) + (gr_text "0" + (at 122.560715 187.706 0) + (layer "Dwgs.User") + (uuid "deb952a6-23a2-4a71-9238-2bdca8aeebca") + (effects + (font + (size 1.5 1.5) + (thickness 0.1) + ) + (justify left top) + ) + ) + (gr_text "Dielectric" + (at 16.189284 173.282 0) + (layer "Dwgs.User") + (uuid "e19cdbf9-1367-4f4a-ba4e-6427d9520d27") + (effects + (font + (size 1.5 1.5) + (thickness 0.1) + ) + (justify left top) + ) + ) + (gr_text "FR4" + (at 56.646426 166.07 0) + (layer "Dwgs.User") + (uuid "e59b0680-5b46-4d2f-9a60-77a942f7e1fc") + (effects + (font + (size 1.5 1.5) + (thickness 0.1) + ) + (justify left top) + ) + ) + (gr_text "3.3" + (at 109.675 158.858 0) + (layer "Dwgs.User") + (uuid "e6e613fa-b80a-4cf7-97c8-a211f71aecec") + (effects + (font + (size 1.5 1.5) + (thickness 0.1) + ) + (justify left top) + ) + ) + (gr_text "" + (at 93.174999 162.464 0) + (layer "Dwgs.User") + (uuid "ecd16730-a9ec-4bd0-94dd-720bc7a4ffde") + (effects + (font + (size 1.5 1.5) + (thickness 0.1) + ) + (justify left top) + ) + ) + (gr_text "Loss Tangent" + (at 122.560715 147.338 0) + (layer "Dwgs.User") + (uuid "ed605791-c8be-4986-9ae2-50ab615fb922") + (effects + (font + (size 1.5 1.5) + (thickness 0.3) + ) + (justify left top) + ) + ) + (gr_text "No" + (at 93.732143 45.104 0) + (layer "Dwgs.User") + (uuid "f130f6ce-7f50-48e4-9e7e-f42f0bc912ba") + (effects + (font + (size 1.5 1.5) + (thickness 0.2) + ) + (justify left top) + ) + ) + (gr_text "F.Cu" + (at 16.189284 162.464 0) + (layer "Dwgs.User") + (uuid "f21c19ae-6288-4f32-8cd5-6dae708ccb1e") + (effects + (font + (size 1.5 1.5) + (thickness 0.1) + ) + (justify left top) + ) + ) + (gr_text "Top Solder Paste" + (at 31.574998 155.252 0) + (layer "Dwgs.User") + (uuid "f32371a9-8d51-4161-85ac-c1e858cf337a") + (effects + (font + (size 1.5 1.5) + (thickness 0.1) + ) + (justify left top) + ) + ) + (gr_text "Bottom Silk Screen" + (at 31.574998 194.918 0) + (layer "Dwgs.User") + (uuid "f39d1349-35f4-4350-b407-c6919e293dc3") + (effects + (font + (size 1.5 1.5) + (thickness 0.1) + ) + (justify left top) + ) + ) + (gr_text "Copper Layer Count: " + (at 61.075 25.319 0) + (layer "Dwgs.User") + (uuid "f3fc6b4a-e3b6-43a8-86ce-ccc11cd9ecfe") + (effects + (font + (size 1.5 1.5) + (thickness 0.2) + ) + (justify left top) + ) + ) + (gr_text "Dielectric" + (at 16.189284 180.494 0) + (layer "Dwgs.User") + (uuid "f44e24d8-79a4-4eed-8c61-d9916d9a5d0a") + (effects + (font + (size 1.5 1.5) + (thickness 0.1) + ) + (justify left top) + ) + ) + (gr_text "0.02" + (at 122.560715 173.282 0) + (layer "Dwgs.User") + (uuid "f4c900df-c53b-4555-8490-c168e061bf3e") + (effects + (font + (size 1.5 1.5) + (thickness 0.1) + ) + (justify left top) + ) + ) + (gr_text "Top Silk Screen" + (at 31.574998 151.646 0) + (layer "Dwgs.User") + (uuid "f5a1297a-70dc-4886-8d5a-db9fb504b0f0") + (effects + (font + (size 1.5 1.5) + (thickness 0.1) + ) + (justify left top) + ) + ) + (gr_text "Min hole diameter: " + (at 129.317852 33.233 0) + (layer "Dwgs.User") + (uuid "f7cafe70-6486-46df-b79c-2bca0452520a") + (effects + (font + (size 1.5 1.5) + (thickness 0.2) + ) + (justify left top) + ) + ) + (gr_text "Not specified" + (at 93.174999 151.646 0) + (layer "Dwgs.User") + (uuid "fbfc65da-2c66-427f-9381-c90c0d08cc64") + (effects + (font + (size 1.5 1.5) + (thickness 0.1) + ) + (justify left top) + ) + ) + (gr_text "3.3" + (at 109.675 187.706 0) + (layer "Dwgs.User") + (uuid "ff1c5bfb-2f05-4c30-b881-a1cad02e959d") + (effects + (font + (size 1.5 1.5) + (thickness 0.1) + ) + (justify left top) + ) + ) + (gr_text "0.1 mm" + (at 73.146427 166.07 0) + (layer "Dwgs.User") + (uuid "ff40ded9-98ed-43d5-ae69-45c9b96f94ef") + (effects + (font + (size 1.5 1.5) + (thickness 0.1) + ) + (justify left top) + ) + ) + (segment + (start 189.76 106.4575) + (end 191.4225 106.4575) + (width 1) + (layer "F.Cu") + (net 1) + (uuid "2809a903-3150-4eb5-806b-2524775b7232") + ) + (segment + (start 66.15 98.55) + (end 66 98.55) + (width 2) + (layer "F.Cu") + (net 1) + (uuid "4a34488e-d93c-499b-b93f-a02bb3b51198") + ) + (segment + (start 143.26 65.62) + (end 141.46 65.62) + (width 1) + (layer "F.Cu") + (net 1) + (uuid "a81dacfd-cefb-41b6-8e50-16306910b30b") + ) + (segment + (start 191.4225 106.4575) + (end 191.46 106.42) + (width 1) + (layer "F.Cu") + (net 1) + (uuid "cc4680d1-87a7-4d3a-b2b7-fe3240781eb5") + ) + (segment + (start 179.32 78.28) + (end 179.26 78.22) + (width 0.8) + (layer "F.Cu") + (net 1) + (uuid "d4cb55b7-1462-4322-b32b-6d44504509db") + ) + (segment + (start 181.66 78.28) + (end 179.32 78.28) + (width 0.8) + (layer "F.Cu") + (net 1) + (uuid "f712260c-8f45-4ea8-b212-5f9270d30a7f") + ) + (via + (at 63.25 93.3) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 1) + (uuid "35a2c3c6-5517-4b7b-9cd4-867ee3c0479c") + ) + (via + (at 141.46 65.62) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 1) + (uuid "3b547257-6ea3-455e-af02-3a865d3d4fff") + ) + (via + (at 191.46 106.42) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 1) + (uuid "94cd6fc5-3429-4410-b2eb-d10d2be1e930") + ) + (via + (at 179.26 78.22) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 1) + (uuid "fab7ae60-802b-4386-9e7c-42eaa8611354") + ) + (segment + (start 184.2 125.2) + (end 186 125.2) + (width 1) + (layer "F.Cu") + (net 2) + (uuid "05dbb995-8105-4f56-a42c-b54156796d85") + ) + (segment + (start 175.16 98.47) + (end 174.36 99.27) + (width 1) + (layer "F.Cu") + (net 2) + (uuid "108fc726-d671-4309-bc79-aebbc92d511e") + ) + (segment + (start 174.36 99.27) + (end 174.36 101.2) + (width 1) + (layer "F.Cu") + (net 2) + (uuid "18e16dc5-3f2f-44a6-acc5-46ec58f97ec7") + ) + (segment + (start 180.31 114.02) + (end 177.86 114.02) + (width 1) + (layer "F.Cu") + (net 2) + (uuid "3a5474e2-638c-49a2-8608-1383d1994540") + ) + (segment + (start 175.16 95.02) + (end 175.16 98.47) + (width 1) + (layer "F.Cu") + (net 2) + (uuid "3fc2a178-3894-459d-b749-57fe6e3f7592") + ) + (segment + (start 189.8975 60.8325) + (end 189.86 60.87) + (width 1) + (layer "F.Cu") + (net 2) + (uuid "40d898f4-003a-464d-bbfc-fab6d824f645") + ) + (segment + (start 174.36 101.2) + (end 174.36 102.32) + (width 1) + (layer "F.Cu") + (net 2) + (uuid "468fcc16-6d04-4dd2-a25c-2ba067db46ad") + ) + (segment + (start 198.96 90.37) + (end 197.96 89.37) + (width 1) + (layer "F.Cu") + (net 2) + (uuid "4bba6ac8-0304-49e5-acb5-a29b0a085f36") + ) + (segment + (start 177.86 114.02) + (end 177.2 114.02) + (width 1) + (layer "F.Cu") + (net 2) + (uuid "4e5bf62b-cca1-43b9-aafe-aeda2b964a1e") + ) + (segment + (start 174.36 102.32) + (end 174.36 104.495) + (width 1) + (layer "F.Cu") + (net 2) + (uuid "654aea0c-2952-433f-bf05-fffafafc947a") + ) + (segment + (start 176.86 61.97) + (end 176.86 64.42) + (width 1) + (layer "F.Cu") + (net 2) + (uuid "66db7931-9cf4-49ce-9e3a-a77bd755db1c") + ) + (segment + (start 192.8225 60.8325) + (end 189.8975 60.8325) + (width 1) + (layer "F.Cu") + (net 2) + (uuid "69f34703-b63c-4a61-aa6b-ba8b05f5deb8") + ) + (segment + (start 192.45 131.65) + (end 192.45 133.15) + (width 1) + (layer "F.Cu") + (net 2) + (uuid "6dc2a3c1-9076-499a-93d8-31e3c9d4505b") + ) + (segment + (start 176.36 107.3575) + (end 175.1975 107.3575) + (width 1) + (layer "F.Cu") + (net 2) + (uuid "6ec1fcf0-374c-4316-b658-a8028eec347d") + ) + (segment + (start 184.2 123.4) + (end 181.6 120.8) + (width 1) + (layer "F.Cu") + (net 2) + (uuid "770e0cd4-f811-47a9-9950-1407db2b5f2b") + ) + (segment + (start 176.36 113.18) + (end 177.2 114.02) + (width 1) + (layer "F.Cu") + (net 2) + (uuid "850b08a3-2c7b-4823-bec9-5d958302dfe7") + ) + (segment + (start 174.36 106.52) + (end 174.36 105.52) + (width 1) + (layer "F.Cu") + (net 2) + (uuid "85fa4e46-326f-4c67-b097-07c73b6927cc") + ) + (segment + (start 177.11 89.37) + (end 175.16 91.32) + (width 1) + (layer "F.Cu") + (net 2) + (uuid "9a52af44-e997-4530-b923-1afe7d589fc6") + ) + (segment + (start 198.96 91.77) + (end 198.96 90.37) + (width 1) + (layer "F.Cu") + (net 2) + (uuid "a0dfe0a4-af27-4779-842a-4d06fb01ee05") + ) + (segment + (start 176.36 107.3575) + (end 176.36 113.18) + (width 1) + (layer "F.Cu") + (net 2) + (uuid "a89dd6fd-45dd-4067-91af-f7fc191eb61a") + ) + (segment + (start 186 125.2) + (end 192.45 131.65) + (width 1) + (layer "F.Cu") + (net 2) + (uuid "b332ec11-ccb4-46fb-a2d3-c580fb1c3a3d") + ) + (segment + (start 175.1975 107.3575) + (end 174.36 106.52) + (width 1) + (layer "F.Cu") + (net 2) + (uuid "baa1ea80-181f-42de-a631-49ca1fb906b1") + ) + (segment + (start 184.2 125.2) + (end 184.2 123.4) + (width 1) + (layer "F.Cu") + (net 2) + (uuid "c06d76b4-3ff2-4a8e-8c34-7bf52336c438") + ) + (segment + (start 197.96 89.37) + (end 177.11 89.37) + (width 1) + (layer "F.Cu") + (net 2) + (uuid "c0c3aebd-6649-4da5-9c07-4e0ae3eb949e") + ) + (segment + (start 175.16 91.32) + (end 175.16 95.02) + (width 1) + (layer "F.Cu") + (net 2) + (uuid "c8c0a4c5-1c66-478b-917e-5ca054a666df") + ) + (segment + (start 189.86 60.87) + (end 177.96 60.87) + (width 1) + (layer "F.Cu") + (net 2) + (uuid "ce9354db-ff75-491c-9484-2ceb2564fcee") + ) + (segment + (start 174.36 102.32) + (end 174.36 105.52) + (width 1) + (layer "F.Cu") + (net 2) + (uuid "d56522df-d072-4157-bc53-7d6c9b9cf9bd") + ) + (segment + (start 177.96 60.87) + (end 176.86 61.97) + (width 1) + (layer "F.Cu") + (net 2) + (uuid "ead47fbe-4e2b-48fb-9c10-f9909d91c29e") + ) + (via + (at 174.36 100.8) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "08e5ee7d-d0e3-4db0-ad1a-f05f0dbfd9b9") + ) + (via + (at 177.86 114.02) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "3e61facc-428e-4496-9d5a-a053ac613f06") + ) + (via + (at 181.6 120.8) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "f84e0069-1325-47bf-9aee-3c1efbe1d81d") + ) + (segment + (start 181.6 120.8) + (end 180.22 119.42) + (width 1) + (layer "B.Cu") + (net 2) + (uuid "23043d80-157a-49e3-9aec-cfb449e69054") + ) + (segment + (start 180.22 119.42) + (end 177.86 119.42) + (width 1) + (layer "B.Cu") + (net 2) + (uuid "51f50b15-4212-42dd-8f55-cebd626c5831") + ) + (segment + (start 155.5 117.26) + (end 161.26 123.02) + (width 2) + (layer "B.Cu") + (net 2) + (uuid "75510fb3-aa39-4ae3-8cc7-37238f4be217") + ) + (segment + (start 161.26 123.02) + (end 174.26 123.02) + (width 2) + (layer "B.Cu") + (net 2) + (uuid "84c5bac3-462a-457c-b03f-72c0b99ec07e") + ) + (segment + (start 174.26 123.02) + (end 177.86 119.42) + (width 2) + (layer "B.Cu") + (net 2) + (uuid "ba23cb56-d6fb-4749-ae96-9b06f9936758") + ) + (segment + (start 148.6 117.26) + (end 155.5 117.26) + (width 2) + (layer "B.Cu") + (net 2) + (uuid "e3ad10a6-bfe9-4c3f-ab0d-a6d1d82bbdbc") + ) + (segment + (start 177.86 119.42) + (end 177.86 114.02) + (width 2) + (layer "B.Cu") + (net 2) + (uuid "ee076af6-ba20-443a-bc17-33cb85ee6698") + ) + (segment + (start 141.26 67.22) + (end 145.335 67.22) + (width 1) + (layer "F.Cu") + (net 3) + (uuid "00a8a344-9754-4d87-8ce2-e3cd6cb3e89f") + ) + (segment + (start 140.3725 68.1075) + (end 141.26 67.22) + (width 1) + (layer "F.Cu") + (net 3) + (uuid "0f3dfb80-624c-487a-a699-6e7c8b3d28de") + ) + (segment + (start 173.46 65.02) + (end 173.46 66.42) + (width 0.8) + (layer "F.Cu") + (net 3) + (uuid "193c2ea3-3e55-4f6a-9de0-15286092fe8b") + ) + (segment + (start 145.26 60.62) + (end 145.26 71.8475) + (width 1) + (layer "F.Cu") + (net 3) + (uuid "1f43e5c9-359b-4488-8d84-8c396b86c575") + ) + (segment + (start 145.335 67.22) + (end 145.335 68.9125) + (width 1) + (layer "F.Cu") + (net 3) + (uuid "204b87ce-e0ff-4de7-8aa8-10dc30665941") + ) + (segment + (start 145.335 68.9125) + (end 145.3725 68.95) + (width 1) + (layer "F.Cu") + (net 3) + (uuid "205bccee-434e-40ef-8528-8009e4c60644") + ) + (segment + (start 185.46 82.22) + (end 185.735 82.495) + (width 0.5) + (layer "F.Cu") + (net 3) + (uuid "226436a2-6743-476c-a329-6a4cd49747cb") + ) + (segment + (start 184.26 80.62) + (end 184.26 81.42) + (width 0.5) + (layer "F.Cu") + (net 3) + (uuid "254c88ae-27b4-4462-b579-2024a72351bb") + ) + (segment + (start 148.6 69) + (end 145.4225 69) + (width 1) + (layer "F.Cu") + (net 3) + (uuid "2c5e3111-d04e-4392-95a6-11d7fbdd0f98") + ) + (segment + (start 140.3725 71.9125) + (end 140.41 71.95) + (width 1) + (layer "F.Cu") + (net 3) + (uuid "2d768e44-86af-46c0-91eb-864b9404b6b7") + ) + (segment + (start 145.26 63.02) + (end 145.26 65.545) + (width 1) + (layer "F.Cu") + (net 3) + (uuid "41086dfd-1385-4344-8c41-c4ccc14abbf1") + ) + (segment + (start 182.26 67.02) + (end 184.26 69.02) + (width 0.8) + (layer "F.Cu") + (net 3) + (uuid "41ff97a1-8be5-4d28-9b3c-c9c278759d22") + ) + (segment + (start 148.6 65.68) + (end 149.86 64.42) + (width 0.8) + (layer "F.Cu") + (net 3) + (uuid "42283978-998b-4ce9-8a50-d93c6caa9764") + ) + (segment + (start 184.26 69.02) + (end 184.26 80.62) + (width 0.8) + (layer "F.Cu") + (net 3) + (uuid "44953345-dd9a-4ed8-a991-d974bd0b4e93") + ) + (segment + (start 181.86 129.46) + (end 181.86 133.17) + (width 1) + (layer "F.Cu") + (net 3) + (uuid "4a48bb61-7432-4eae-8378-b8803361f739") + ) + (segment + (start 184.26 81.82) + (end 184.66 82.22) + (width 0.5) + (layer "F.Cu") + (net 3) + (uuid "4cd22481-84a5-4f13-bcdb-e9597ca82a55") + ) + (segment + (start 145.335 65.62) + (end 145.335 67.22) + (width 1) + (layer "F.Cu") + (net 3) + (uuid "51d6667b-2192-4f43-9736-a828a9c541c3") + ) + (segment + (start 185.735 82.495) + (end 185.735 84.01) + (width 0.5) + (layer "F.Cu") + (net 3) + (uuid "7ef8fb08-4653-479d-8a62-279b1d09a9dc") + ) + (segment + (start 145.3725 71.96) + (end 145.3725 68.95) + (width 1) + (layer "F.Cu") + (net 3) + (uuid "8015ab5f-30b5-4d76-8033-d9175fa80c60") + ) + (segment + (start 146.9 66.46) + (end 146.06 65.62) + (width 1) + (layer "F.Cu") + (net 3) + (uuid "82978295-b807-4827-af6d-bcf0daf6c05e") + ) + (segment + (start 173.46 66.42) + (end 174.06 67.02) + (width 0.8) + (layer "F.Cu") + (net 3) + (uuid "85501142-2df4-48b5-9c82-22659b9199c3") + ) + (segment + (start 175.46 127.22) + (end 178.41 127.22) + (width 1) + (layer "F.Cu") + (net 3) + (uuid "870250c6-de8b-48eb-b1b0-ff91801e08e2") + ) + (segment + (start 184.66 82.22) + (end 185.46 82.22) + (width 0.5) + (layer "F.Cu") + (net 3) + (uuid "8a047707-22c6-4f30-9a88-acff3361d6d0") + ) + (segment + (start 145.4225 69) + (end 145.3725 68.95) + (width 1) + (layer "F.Cu") + (net 3) + (uuid "8febdf44-7038-4558-8905-ff2b69fcf0a6") + ) + (segment + (start 174.06 67.02) + (end 182.26 67.02) + (width 0.8) + (layer "F.Cu") + (net 3) + (uuid "9511a960-f672-48d0-9627-ad41c1e5a3fd") + ) + (segment + (start 148.6 66.46) + (end 148.6 65.68) + (width 0.8) + (layer "F.Cu") + (net 3) + (uuid "9828dbf7-6b4a-460a-ae31-c590ca7c26aa") + ) + (segment + (start 181.66 79.55) + (end 183.99 79.55) + (width 0.5) + (layer "F.Cu") + (net 3) + (uuid "9a8bf16c-61ee-4695-9207-fdde01c7efe3") + ) + (segment + (start 184.26 81.42) + (end 184.26 81.82) + (width 0.5) + (layer "F.Cu") + (net 3) + (uuid "a3f60777-629a-4ca0-95e0-aa8105c392f0") + ) + (segment + (start 184.26 79.82) + (end 184.26 80.62) + (width 0.5) + (layer "F.Cu") + (net 3) + (uuid "a8d7302d-4270-41a6-a5f2-61e628d69602") + ) + (segment + (start 172.86 64.42) + (end 173.46 65.02) + (width 0.8) + (layer "F.Cu") + (net 3) + (uuid "ac5c528d-f7ed-4bfd-9204-9758bd85debe") + ) + (segment + (start 140.3725 68.95) + (end 140.3725 71.9125) + (width 1) + (layer "F.Cu") + (net 3) + (uuid "af034ea8-823e-4f2b-a195-ec44b89f2e7d") + ) + (segment + (start 145.26 65.545) + (end 145.335 65.62) + (width 1) + (layer "F.Cu") + (net 3) + (uuid "b604f335-0270-4924-bb29-071d25ac9d71") + ) + (segment + (start 179.62 127.22) + (end 181.86 129.46) + (width 1) + (layer "F.Cu") + (net 3) + (uuid "ba1990e2-e24a-4cec-ac03-601f4990f721") + ) + (segment + (start 149.86 64.42) + (end 172.86 64.42) + (width 0.8) + (layer "F.Cu") + (net 3) + (uuid "c2dd1960-79d4-42f6-a1d1-2b5af0520494") + ) + (segment + (start 140.3725 68.95) + (end 140.3725 68.1075) + (width 1) + (layer "F.Cu") + (net 3) + (uuid "d005de60-186a-42ff-a428-774f854c01d5") + ) + (segment + (start 146.06 65.62) + (end 145.335 65.62) + (width 1) + (layer "F.Cu") + (net 3) + (uuid "d25c6396-8b9d-4670-86b0-3b4dede53361") + ) + (segment + (start 183.99 79.55) + (end 184.26 79.82) + (width 0.5) + (layer "F.Cu") + (net 3) + (uuid "d30f2b94-20e7-4823-a085-d8965c6c276b") + ) + (segment + (start 178.41 127.22) + (end 179.62 127.22) + (width 1) + (layer "F.Cu") + (net 3) + (uuid "da3aaafe-6021-4ff1-a071-6546c6479ff9") + ) + (segment + (start 148.6 66.46) + (end 146.9 66.46) + (width 1) + (layer "F.Cu") + (net 3) + (uuid "e6a07994-1b72-46c2-9560-ff961bc4c457") + ) + (segment + (start 145.26 71.8475) + (end 145.3725 71.96) + (width 1) + (layer "F.Cu") + (net 3) + (uuid "e6ec18b0-d223-4dc6-b13c-bb6bddedc173") + ) + (segment + (start 185.735 86.61) + (end 185.735 84.01) + (width 1) + (layer "F.Cu") + (net 3) + (uuid "f43dfabc-4bd9-47d4-9b1f-cde73b539a95") + ) + (segment + (start 190.92 123.96) + (end 190.86 124.02) + (width 2) + (layer "F.Cu") + (net 4) + (uuid "9866a802-bd38-414a-afa6-f5e85edaeead") + ) + (segment + (start 198.66 123.96) + (end 198.66 127.62) + (width 2) + (layer "F.Cu") + (net 4) + (uuid "e14cc6ad-d584-4cd8-bf63-afc575c258f8") + ) + (segment + (start 198.66 123.96) + (end 190.92 123.96) + (width 2) + (layer "F.Cu") + (net 4) + (uuid "ef888e47-c913-416c-aad7-a11085017014") + ) + (segment + (start 189.61102 65.42) + (end 185.46 65.42) + (width 1) + (layer "F.Cu") + (net 5) + (uuid "7719ea6d-239b-4df2-8b29-0886d0ee171c") + ) + (segment + (start 185.46 65.42) + (end 184.46 64.42) + (width 1) + (layer "F.Cu") + (net 5) + (uuid "a262222f-74aa-46ba-af8f-cdd6cf906c9d") + ) + (segment + (start 182.6 101.02) + (end 182.6 99.23) + (width 0.5) + (layer "F.Cu") + (net 6) + (uuid "6dbc1a97-3c82-4f01-aa17-3a9c23c00bd8") + ) + (segment + (start 182.6 103.7225) + (end 182.6 101.02) + (width 0.5) + (layer "F.Cu") + (net 6) + (uuid "7c4c6b89-9dff-451f-84ee-d6ca9c61814e") + ) + (segment + (start 189.76 101.92) + (end 188.86 101.02) + (width 0.8) + (layer "F.Cu") + (net 6) + (uuid "8fbcd899-b360-4e41-b92b-55afb95f69ee") + ) + (segment + (start 182.6 99.23) + (end 183.36 98.47) + (width 0.5) + (layer "F.Cu") + (net 6) + (uuid "938526b9-e625-45f4-a595-d6a3ba83e186") + ) + (segment + (start 189.76 103.4575) + (end 189.76 101.92) + (width 0.8) + (layer "F.Cu") + (net 6) + (uuid "99091ee9-a375-4d84-ae83-acf7e6a72f67") + ) + (segment + (start 183.36 98.47) + (end 183.36 95.02) + (width 0.5) + (layer "F.Cu") + (net 6) + (uuid "9f13d250-9a85-4942-8b8d-e2990d7ff43d") + ) + (via + (at 182.6 101.02) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 6) + (uuid "45d1f06b-99c7-42e2-a488-2bfefed742c4") + ) + (via + (at 188.86 101.02) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 6) + (uuid "fe170dce-ab36-4bf7-9420-3a6974798fa3") + ) + (segment + (start 188.86 101.02) + (end 182.6 101.02) + (width 1) + (layer "B.Cu") + (net 6) + (uuid "74aa3514-2b5b-482d-8971-73e2485c6784") + ) + (segment + (start 187.42 103.7225) + (end 187.685 103.4575) + (width 0.5) + (layer "F.Cu") + (net 7) + (uuid "63daee2c-961a-4292-b1b8-3423f52c91c3") + ) + (segment + (start 185.14 103.7225) + (end 187.42 103.7225) + (width 0.5) + (layer "F.Cu") + (net 7) + (uuid "dee5019e-3375-4903-8936-a6f7a66431a7") + ) + (segment + (start 127.46 86.42) + (end 127.61 86.57) + (width 3) + (layer "B.Cu") + (net 8) + (uuid "8008c67f-9935-4076-8023-6df3e9f13e75") + ) + (segment + (start 127.46 61.72) + (end 127.46 86.42) + (width 3) + (layer "B.Cu") + (net 8) + (uuid "90f07a94-2329-4747-860b-4ae7974c0d96") + ) + (segment + (start 122.46 61.72) + (end 122.46 71.52) + (width 3) + (layer "B.Cu") + (net 9) + (uuid "1585b04f-7822-4d77-91b1-91642d8c7711") + ) + (segment + (start 122.46 71.52) + (end 121.61 72.37) + (width 3) + (layer "B.Cu") + (net 9) + (uuid "74564682-6911-4cd9-9e94-d30774bd26a0") + ) + (segment + (start 132.46 61.72) + (end 132.46 71.22) + (width 3) + (layer "B.Cu") + (net 10) + (uuid "be4b5407-0eb6-4b33-9b6d-e5a575ac3981") + ) + (segment + (start 132.46 71.22) + (end 133.66 72.42) + (width 3) + (layer "B.Cu") + (net 10) + (uuid "c8731c54-b598-4aa1-9f46-55983fb9f880") + ) + (segment + (start 189.42 77.81) + (end 190.86 77.81) + (width 0.5) + (layer "F.Cu") + (net 11) + (uuid "15cba4b6-e526-44ca-be04-4320606fdb55") + ) + (segment + (start 186.61 78.28) + (end 188.95 78.28) + (width 0.5) + (layer "F.Cu") + (net 11) + (uuid "34885101-b85d-4ba0-bf7c-f4e50b649ba4") + ) + (segment + (start 193.47 77.81) + (end 194.67 76.61) + (width 1) + (layer "F.Cu") + (net 11) + (uuid "5679352b-479d-4d51-a5a9-3359757b8067") + ) + (segment + (start 190.86 77.81) + (end 193.47 77.81) + (width 1) + (layer "F.Cu") + (net 11) + (uuid "5e1075f0-2a5b-432d-a25a-1326515f0560") + ) + (segment + (start 194.67 76.61) + (end 197.91 76.61) + (width 1) + (layer "F.Cu") + (net 11) + (uuid "98eafb24-b51b-48bb-8067-ba09cde5fe02") + ) + (segment + (start 188.95 78.28) + (end 189.42 77.81) + (width 0.5) + (layer "F.Cu") + (net 11) + (uuid "ba2a797b-9cbc-48b5-b441-40f346a7ae43") + ) + (segment + (start 193.25 79.81) + (end 195.06 81.62) + (width 1) + (layer "F.Cu") + (net 12) + (uuid "054bfeb6-2517-4960-8aaf-80505d601edd") + ) + (segment + (start 190.86 79.81) + (end 193.25 79.81) + (width 1) + (layer "F.Cu") + (net 12) + (uuid "48268bc3-c943-45a8-b364-f61cd20e1340") + ) + (segment + (start 197.9 81.62) + (end 197.91 81.61) + (width 1) + (layer "F.Cu") + (net 12) + (uuid "77d65cb3-9f9d-4aaa-a70f-cfb9caac3de7") + ) + (segment + (start 190.86 79.81) + (end 189.05 79.81) + (width 0.5) + (layer "F.Cu") + (net 12) + (uuid "ce53aaa6-0cc3-49cd-b4b2-9f6c624609fb") + ) + (segment + (start 188.79 79.55) + (end 189.05 79.81) + (width 0.5) + (layer "F.Cu") + (net 12) + (uuid "d82a6762-79a2-44fd-a874-417f383742f9") + ) + (segment + (start 195.06 81.62) + (end 197.9 81.62) + (width 1) + (layer "F.Cu") + (net 12) + (uuid "fcbf2107-3b4e-4b30-a8c1-fa6b5d510cf8") + ) + (segment + (start 186.61 79.55) + (end 188.79 79.55) + (width 0.5) + (layer "F.Cu") + (net 12) + (uuid "fe5e9e37-492f-47a5-86e2-dbd74167cdb8") + ) + (segment + (start 114.126667 61.62) + (end 114.126667 70.7525) + (width 3) + (layer "B.Cu") + (net 13) + (uuid "ac333586-1193-49d4-9fde-ac12192b886d") + ) + (segment + (start 114.126667 70.7525) + (end 115.326667 71.9525) + (width 3) + (layer "B.Cu") + (net 13) + (uuid "cea64890-93bf-40ac-9025-45ed26ff41a3") + ) + (segment + (start 109.126667 85.9525) + (end 109.276667 86.1025) + (width 3) + (layer "B.Cu") + (net 14) + (uuid "7280bbfc-a707-42a4-8206-464c984dc4f9") + ) + (segment + (start 109.126667 61.62) + (end 109.126667 85.9525) + (width 3) + (layer "B.Cu") + (net 14) + (uuid "df1aa86c-37b5-458c-bd93-4856303a420d") + ) + (segment + (start 104.126667 71.0525) + (end 103.276667 71.9025) + (width 3) + (layer "B.Cu") + (net 15) + (uuid "18932270-1d85-446e-ade2-f27513880d3a") + ) + (segment + (start 104.126667 61.62) + (end 104.126667 71.0525) + (width 3) + (layer "B.Cu") + (net 15) + (uuid "a8940758-86ec-4c37-800a-44ac1ede4b5e") + ) + (segment + (start 90.793333 85.87) + (end 90.943333 86.02) + (width 3) + (layer "B.Cu") + (net 16) + (uuid "33713ba3-105c-4e52-a5c5-f1ac8ab11773") + ) + (segment + (start 90.793333 61.62) + (end 90.793333 85.87) + (width 3) + (layer "B.Cu") + (net 16) + (uuid "ef7759e0-54f8-466d-bb25-dd7508e02f40") + ) + (segment + (start 85.793333 70.97) + (end 84.943333 71.82) + (width 3) + (layer "B.Cu") + (net 17) + (uuid "199c942c-a543-4b90-9131-f6ae1dc44cc0") + ) + (segment + (start 85.793333 61.62) + (end 85.793333 70.97) + (width 3) + (layer "B.Cu") + (net 17) + (uuid "d23dddae-b2f4-4411-ae66-5efbdabe19a3") + ) + (segment + (start 95.793333 70.67) + (end 96.993333 71.87) + (width 3) + (layer "B.Cu") + (net 18) + (uuid "d0914ed0-2154-4074-b006-31f393a901aa") + ) + (segment + (start 95.793333 61.62) + (end 95.793333 70.67) + (width 3) + (layer "B.Cu") + (net 18) + (uuid "d50e40c8-60d5-48d7-8551-1a01e15994ad") + ) + (segment + (start 72.46 61.42) + (end 72.46 86.07) + (width 3) + (layer "B.Cu") + (net 19) + (uuid "01378a72-c61c-474a-8aa1-0ddcab418f09") + ) + (segment + (start 72.46 86.07) + (end 72.61 86.22) + (width 3) + (layer "B.Cu") + (net 19) + (uuid "0bbab77d-f548-4089-86a1-322ed351b075") + ) + (segment + (start 67.46 61.42) + (end 67.46 71.17) + (width 3) + (layer "B.Cu") + (net 20) + (uuid "64434ee5-85db-4779-b318-a13132686d14") + ) + (segment + (start 67.46 71.17) + (end 66.61 72.02) + (width 3) + (layer "B.Cu") + (net 20) + (uuid "f3c1a79f-af9f-4e67-84fc-ade5f827b1ba") + ) + (segment + (start 77.46 70.87) + (end 78.66 72.07) + (width 3) + (layer "B.Cu") + (net 21) + (uuid "1367bbcd-843e-4421-b9a9-d95b51fd2a62") + ) + (segment + (start 77.46 61.42) + (end 77.46 70.87) + (width 3) + (layer "B.Cu") + (net 21) + (uuid "71584210-fe6f-46a5-97e2-de5e30c5cd1e") + ) + (segment + (start 123.06 126.32) + (end 121.61 124.87) + (width 3) + (layer "B.Cu") + (net 22) + (uuid "98116128-81dc-41b5-bf26-08399a76b574") + ) + (segment + (start 123.06 135.62) + (end 123.06 126.32) + (width 3) + (layer "B.Cu") + (net 22) + (uuid "eb7ffdbd-4d00-4099-be1c-ee101bdbd1ca") + ) + (segment + (start 133.06 125.52) + (end 133.66 124.92) + (width 3) + (layer "B.Cu") + (net 23) + (uuid "5216fe79-1238-4149-b298-14cbcaa3c98c") + ) + (segment + (start 133.06 135.62) + (end 133.06 125.52) + (width 3) + (layer "B.Cu") + (net 23) + (uuid "8101e52c-2d52-4827-be42-e7f9b54a79ba") + ) + (segment + (start 128.06 135.62) + (end 128.06 111.12) + (width 3) + (layer "B.Cu") + (net 24) + (uuid "77779710-5fe2-4914-b217-6d1a30640420") + ) + (segment + (start 128.06 111.12) + (end 127.66 110.72) + (width 3) + (layer "B.Cu") + (net 24) + (uuid "ba739a90-d309-4028-b15d-ad21f79706cd") + ) + (segment + (start 104.726667 126.12) + (end 103.276667 124.67) + (width 3) + (layer "B.Cu") + (net 25) + (uuid "1bb3ba97-55b5-431a-9f38-13942a70e027") + ) + (segment + (start 104.726667 135.42) + (end 104.726667 126.12) + (width 3) + (layer "B.Cu") + (net 25) + (uuid "5bc46e21-c790-40b9-bc5f-0c6f5ae2fb6b") + ) + (segment + (start 114.726667 135.42) + (end 114.726667 125.32) + (width 3) + (layer "B.Cu") + (net 26) + (uuid "2ddb7183-54bb-4a85-bb6e-76838d3a3271") + ) + (segment + (start 114.726667 125.32) + (end 115.326667 124.72) + (width 3) + (layer "B.Cu") + (net 26) + (uuid "668f8745-465c-496a-adcb-8f174c59f27d") + ) + (segment + (start 109.726667 110.92) + (end 109.326667 110.52) + (width 3) + (layer "B.Cu") + (net 27) + (uuid "6d70312e-73a6-4e15-a791-1eb81f75c15f") + ) + (segment + (start 109.726667 135.42) + (end 109.726667 110.92) + (width 3) + (layer "B.Cu") + (net 27) + (uuid "99d2718e-91ed-4c8d-bf4e-393fd2484a73") + ) + (segment + (start 84.943333 124.72) + (end 84.943333 134.02) + (width 3) + (layer "B.Cu") + (net 28) + (uuid "719c7cc8-c29b-4cdd-9feb-aa4741286051") + ) + (segment + (start 84.943333 134.02) + (end 86.393333 135.47) + (width 3) + (layer "B.Cu") + (net 28) + (uuid "75580f79-2fea-4673-b908-342a3e58fa2b") + ) + (segment + (start 96.393333 125.37) + (end 96.993333 124.77) + (width 3) + (layer "B.Cu") + (net 29) + (uuid "5038f372-0607-46d8-b39a-fb4dd66a3129") + ) + (segment + (start 96.393333 135.47) + (end 96.393333 125.37) + (width 3) + (layer "B.Cu") + (net 29) + (uuid "51961c4a-9b65-4ba8-b487-6fce2b9b2569") + ) + (segment + (start 91.393333 110.97) + (end 90.993333 110.57) + (width 3) + (layer "B.Cu") + (net 30) + (uuid "08d518c0-e23a-466b-8edf-cc03e64e12aa") + ) + (segment + (start 91.393333 135.47) + (end 91.393333 110.97) + (width 3) + (layer "B.Cu") + (net 30) + (uuid "34dfeb3d-3b95-4510-baac-7e14e4563fe2") + ) + (segment + (start 78.06 125.32) + (end 78.66 124.72) + (width 3) + (layer "B.Cu") + (net 31) + (uuid "524985a9-d28f-4e21-94cd-d5a9c816e176") + ) + (segment + (start 78.06 135.42) + (end 78.06 125.32) + (width 3) + (layer "B.Cu") + (net 31) + (uuid "f31868e3-0a04-4ca6-826f-148a57cb406c") + ) + (segment + (start 73.06 110.92) + (end 72.66 110.52) + (width 3) + (layer "B.Cu") + (net 32) + (uuid "26874268-6b37-46fc-a069-1f48092446f4") + ) + (segment + (start 73.06 135.42) + (end 73.06 110.92) + (width 3) + (layer "B.Cu") + (net 32) + (uuid "907d89e8-036b-4c3a-9270-72ab1c39aec1") + ) + (segment + (start 68.06 135.42) + (end 68.06 126.12) + (width 3) + (layer "B.Cu") + (net 33) + (uuid "42603145-95c1-4dc7-8f35-ae94778e0a34") + ) + (segment + (start 68.06 126.12) + (end 66.61 124.67) + (width 3) + (layer "B.Cu") + (net 33) + (uuid "d04964ea-b18d-4c8d-9362-b8df0942e3a0") + ) + (segment + (start 167.66 129.22) + (end 167.66 98.62) + (width 1) + (layer "F.Cu") + (net 34) + (uuid "725a13ee-7748-422d-922e-29954b4a223c") + ) + (segment + (start 175.46 129.22) + (end 167.66 129.22) + (width 1) + (layer "F.Cu") + (net 34) + (uuid "76a14557-e4f3-4415-a44f-e9d76387d6a3") + ) + (segment + (start 163.44 94.4) + (end 148.6 94.4) + (width 1) + (layer "F.Cu") + (net 34) + (uuid "859d42c9-e268-4f22-b630-42392b14fa45") + ) + (segment + (start 165.46 130.42) + (end 165.46 133.17) + (width 1) + (layer "F.Cu") + (net 34) + (uuid "86384379-584d-495c-91a9-4a1679eed92a") + ) + (segment + (start 166.66 129.22) + (end 165.46 130.42) + (width 1) + (layer "F.Cu") + (net 34) + (uuid "95a6b713-3562-46c5-a1db-077f3e8f5417") + ) + (segment + (start 167.66 129.22) + (end 166.66 129.22) + (width 1) + (layer "F.Cu") + (net 34) + (uuid "b9d8cef0-8e6a-4cd0-a3f6-a8de8e1648a0") + ) + (segment + (start 167.66 98.62) + (end 163.44 94.4) + (width 1) + (layer "F.Cu") + (net 34) + (uuid "fbb46803-216e-4db7-a6df-ac009f23b8c9") + ) + (segment + (start 165.46 134.42) + (end 164.26 135.62) + (width 1) + (layer "B.Cu") + (net 34) + (uuid "07757d48-a0ed-4d34-a5cb-c8830d4bda97") + ) + (segment + (start 152.86 133.17) + (end 152.86 134.62) + (width 1) + (layer "B.Cu") + (net 34) + (uuid "aa822994-e62e-4043-b88c-f36359ef143e") + ) + (segment + (start 165.46 134.42) + (end 165.46 133.17) + (width 1) + (layer "B.Cu") + (net 34) + (uuid "b763d797-969c-4495-aa5b-e0df1bcab7fa") + ) + (segment + (start 153.86 135.62) + (end 164.26 135.62) + (width 1) + (layer "B.Cu") + (net 34) + (uuid "eb1b813d-7257-4a6e-bdc1-b140140cc418") + ) + (segment + (start 152.86 134.62) + (end 153.86 135.62) + (width 1) + (layer "B.Cu") + (net 34) + (uuid "f846bc80-bb25-4046-a359-2f39dde19734") + ) + (segment + (start 154.86 135.02) + (end 155.86 136.02) + (width 1) + (layer "F.Cu") + (net 35) + (uuid "1fa41881-7bfd-4a54-8e06-e29ed9418f33") + ) + (segment + (start 166.46 136.02) + (end 163.26 136.02) + (width 1) + (layer "F.Cu") + (net 35) + (uuid "4bf7c410-7f36-4711-94b2-b3a1944066e3") + ) + (segment + (start 167.46 132.02) + (end 167.46 133.17) + (width 1) + (layer "F.Cu") + (net 35) + (uuid "6b95ea8e-c22a-4443-b105-c68e82daff90") + ) + (segment + (start 178.41 129.22) + (end 178.41 130.27) + (width 1) + (layer "F.Cu") + (net 35) + (uuid "6fd9cb31-147e-47ea-ad97-d32c2fb60988") + ) + (segment + (start 178.41 130.27) + (end 177.66 131.02) + (width 1) + (layer "F.Cu") + (net 35) + (uuid "7788f9b3-1a6d-48c2-a227-39551fd98901") + ) + (segment + (start 154.86 133.17) + (end 154.86 135.02) + (width 1) + (layer "F.Cu") + (net 35) + (uuid "8cab41ce-6ce2-4e0e-a489-cb51495778fc") + ) + (segment + (start 162.26 135.02) + (end 162.26 103.62) + (width 1) + (layer "F.Cu") + (net 35) + (uuid "8d165399-8c8f-49ee-ae95-907ceaa58797") + ) + (segment + (start 167.46 133.17) + (end 167.46 135.02) + (width 1) + (layer "F.Cu") + (net 35) + (uuid "8f0dfd58-7035-4cb4-ad1f-94bf23875ca9") + ) + (segment + (start 161.46 136.02) + (end 163.26 136.02) + (width 1) + (layer "F.Cu") + (net 35) + (uuid "96398a10-ac93-4b17-89f1-2decf1fc3eb2") + ) + (segment + (start 160.66 102.02) + (end 148.6 102.02) + (width 1) + (layer "F.Cu") + (net 35) + (uuid "9e8e7d0b-05a3-4775-9ef2-98dca3baf7c6") + ) + (segment + (start 162.26 103.62) + (end 160.66 102.02) + (width 1) + (layer "F.Cu") + (net 35) + (uuid "c273b3a1-9da9-4129-935c-3063e5c5b043") + ) + (segment + (start 168.46 131.02) + (end 167.46 132.02) + (width 1) + (layer "F.Cu") + (net 35) + (uuid "c3481a5f-0a96-4fae-babf-2efa07825312") + ) + (segment + (start 163.26 136.02) + (end 162.26 135.02) + (width 1) + (layer "F.Cu") + (net 35) + (uuid "c5661efa-c6f8-4c6e-95d4-9c6336191006") + ) + (segment + (start 162.26 135.22) + (end 162.26 135.02) + (width 1) + (layer "F.Cu") + (net 35) + (uuid "ccc02280-900f-43e8-8adb-c0c5fb59f3f4") + ) + (segment + (start 167.46 135.02) + (end 166.46 136.02) + (width 1) + (layer "F.Cu") + (net 35) + (uuid "ce80ed33-df83-4a36-ac6b-04d029b40513") + ) + (segment + (start 161.46 136.02) + (end 162.26 135.22) + (width 1) + (layer "F.Cu") + (net 35) + (uuid "f55f0c62-9afb-4b5b-bc37-f5c51b03e8f4") + ) + (segment + (start 155.86 136.02) + (end 161.46 136.02) + (width 1) + (layer "F.Cu") + (net 35) + (uuid "fd9ea24e-b47c-4b7b-9f40-b954b60a1b4a") + ) + (segment + (start 177.66 131.02) + (end 168.46 131.02) + (width 1) + (layer "F.Cu") + (net 35) + (uuid "ff7831d0-0d1c-4b6e-a85b-ded28f16bf5b") + ) + (segment + (start 177.86 137.82) + (end 151.82 137.82) + (width 1) + (layer "F.Cu") + (net 36) + (uuid "1d217dac-7499-4968-935d-4be4ecf3d35a") + ) + (segment + (start 155.6 110.96) + (end 151.74 107.1) + (width 1) + (layer "F.Cu") + (net 36) + (uuid "236d4a6e-b1dd-494e-987c-620d695af1b5") + ) + (segment + (start 150.2 136.2) + (end 150.2 128.8) + (width 1) + (layer "F.Cu") + (net 36) + (uuid "34adad1d-fc5a-4e5e-b6ae-014bf4985f74") + ) + (segment + (start 179.86 135.82) + (end 177.86 137.82) + (width 1) + (layer "F.Cu") + (net 36) + (uuid "673cc894-71d6-472a-b2d4-80b829eed7d9") + ) + (segment + (start 151.82 137.82) + (end 150.2 136.2) + (width 1) + (layer "F.Cu") + (net 36) + (uuid "859d8443-3325-4746-9809-5f750d0ecac5") + ) + (segment + (start 151.74 107.1) + (end 148.6 107.1) + (width 1) + (layer "F.Cu") + (net 36) + (uuid "921bb700-e95d-415c-8d9c-7894517d7149") + ) + (segment + (start 155.6 123.4) + (end 155.6 110.96) + (width 1) + (layer "F.Cu") + (net 36) + (uuid "b284c4bd-4b2a-41c0-bf1c-d97c69d52115") + ) + (segment + (start 150.2 128.8) + (end 155.6 123.4) + (width 1) + (layer "F.Cu") + (net 36) + (uuid "c89ab745-c85d-4d68-a004-135dc6fb5f6c") + ) + (segment + (start 179.86 133.17) + (end 179.86 135.82) + (width 1) + (layer "F.Cu") + (net 36) + (uuid "deb98b34-55bf-4d35-81f4-79723520f0d7") + ) + (segment + (start 148.6 104.56) + (end 146.04 104.56) + (width 1) + (layer "F.Cu") + (net 37) + (uuid "0d94424d-d5aa-4d2e-a6e7-92f4323dce7a") + ) + (segment + (start 137.8 135.4) + (end 139.8 137.4) + (width 1) + (layer "F.Cu") + (net 37) + (uuid "11383e9c-1628-4883-8acb-5e43c8c440ed") + ) + (segment + (start 146.04 104.56) + (end 143.6 107) + (width 1) + (layer "F.Cu") + (net 37) + (uuid "1e73e06a-62c9-4dd7-abfc-0b8f9918405c") + ) + (segment + (start 143.6 107) + (end 143.6 118.6) + (width 1) + (layer "F.Cu") + (net 37) + (uuid "309186a2-04d6-4da1-ada1-1ee1cc71a57f") + ) + (segment + (start 137.8 124.4) + (end 137.8 135.4) + (width 1) + (layer "F.Cu") + (net 37) + (uuid "46d47e0d-9fed-4df3-ad3f-8bbf2db0f982") + ) + (segment + (start 143.6 118.6) + (end 137.8 124.4) + (width 1) + (layer "F.Cu") + (net 37) + (uuid "6a5ecb06-7b7c-42c3-acc8-ea455006ba64") + ) + (segment + (start 139.8 137.4) + (end 146.6 137.4) + (width 1) + (layer "F.Cu") + (net 37) + (uuid "f47a2cb5-5b0f-4a1d-ae97-389ac421fe07") + ) + (via + (at 146.6 137.4) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 37) + (uuid "0f64af52-dcad-4c79-a313-6b199c78f936") + ) + (segment + (start 146.6 137.4) + (end 176.8 137.4) + (width 1) + (layer "B.Cu") + (net 37) + (uuid "7852399c-cbbc-4e38-82f8-5920f09c8b8a") + ) + (segment + (start 176.8 137.4) + (end 177.86 136.34) + (width 1) + (layer "B.Cu") + (net 37) + (uuid "9dcfd9ac-0faf-4afe-af18-979edf6f5007") + ) + (segment + (start 177.86 136.34) + (end 177.86 133.17) + (width 1) + (layer "B.Cu") + (net 37) + (uuid "9e4400a2-9cf8-4666-b799-9e9471a2be31") + ) + (segment + (start 191.61 66.37) + (end 191.61 70.22) + (width 0.8) + (layer "F.Cu") + (net 38) + (uuid "1d91eaca-c42a-488a-8a46-4ed000f5d613") + ) + (segment + (start 191.61 70.22) + (end 191.56 70.27) + (width 0.8) + (layer "F.Cu") + (net 38) + (uuid "d74cf5b1-17f3-4891-991e-9c46ab063c40") + ) + (segment + (start 140.66 83.54) + (end 140.66 81.94) + (width 0.5) + (layer "F.Cu") + (net 39) + (uuid "2f77a30c-21ab-498c-bd5d-ba34a1ac8083") + ) + (segment + (start 134.26 94.62) + (end 134.86 94.02) + (width 0.5) + (layer "F.Cu") + (net 39) + (uuid "720d9766-5f2a-4429-bfcf-f4997fd1fa14") + ) + (segment + (start 140.66 81.94) + (end 148.52 74.08) + (width 0.5) + (layer "F.Cu") + (net 39) + (uuid "79aec363-01dd-434a-ab1f-47b6da61edbf") + ) + (segment + (start 148.52 74.08) + (end 148.6 74.08) + (width 0.5) + (layer "F.Cu") + (net 39) + (uuid "8335fb1d-fa37-40da-bbea-6cce906fadb4") + ) + (segment + (start 134.86 89.34) + (end 140.66 83.54) + (width 0.5) + (layer "F.Cu") + (net 39) + (uuid "96a7823b-0bee-43e0-bde2-3e296bd7f9b8") + ) + (segment + (start 132.26 94.62) + (end 134.26 94.62) + (width 0.5) + (layer "F.Cu") + (net 39) + (uuid "9b9c6904-16e2-4d6e-a09c-5aa7551a1070") + ) + (segment + (start 134.86 94.02) + (end 134.86 89.34) + (width 0.5) + (layer "F.Cu") + (net 39) + (uuid "e4cd26b3-76e7-4a12-9b62-c82f593c5d13") + ) + (segment + (start 148.58 76.62) + (end 142.6 82.6) + (width 0.5) + (layer "F.Cu") + (net 40) + (uuid "39a78339-2df3-471e-8b29-b83671450eb6") + ) + (segment + (start 136.36 94.92) + (end 135.39 95.89) + (width 0.5) + (layer "F.Cu") + (net 40) + (uuid "48f06afe-48ad-4a9d-937a-f2ffe96d9e9f") + ) + (segment + (start 148.6 76.62) + (end 148.58 76.62) + (width 0.5) + (layer "F.Cu") + (net 40) + (uuid "5ff5bcac-3f50-4434-aea7-36ff7710b433") + ) + (segment + (start 142.6 83.4) + (end 136.36 89.64) + (width 0.5) + (layer "F.Cu") + (net 40) + (uuid "6e4c4728-f711-42d0-8e2a-3a0ddff4c5f3") + ) + (segment + (start 136.36 89.64) + (end 136.36 94.92) + (width 0.5) + (layer "F.Cu") + (net 40) + (uuid "8bc2e807-6550-4c29-ae85-82964263851a") + ) + (segment + (start 142.6 82.6) + (end 142.6 83.4) + (width 0.5) + (layer "F.Cu") + (net 40) + (uuid "c0547f35-2e00-4206-87de-4c80b0bf0a33") + ) + (segment + (start 135.39 95.89) + (end 132.26 95.89) + (width 0.5) + (layer "F.Cu") + (net 40) + (uuid "e8dd73fe-4a48-477b-83a0-24b838b76120") + ) + (segment + (start 137.86 95.42) + (end 137.86 90.14) + (width 0.5) + (layer "F.Cu") + (net 41) + (uuid "355ad3ad-dd2a-4d78-8961-150676927175") + ) + (segment + (start 132.26 97.16) + (end 136.12 97.16) + (width 0.5) + (layer "F.Cu") + (net 41) + (uuid "605f318c-7055-4503-b7a2-de888e252264") + ) + (segment + (start 148.6 79.4) + (end 148.6 79.16) + (width 0.5) + (layer "F.Cu") + (net 41) + (uuid "ae52691b-ebe1-4d51-9350-57ddc94e2c91") + ) + (segment + (start 136.12 97.16) + (end 137.86 95.42) + (width 0.5) + (layer "F.Cu") + (net 41) + (uuid "c52dff01-f66b-450d-aaeb-ce93e432fb6a") + ) + (segment + (start 137.86 90.14) + (end 148.6 79.4) + (width 0.5) + (layer "F.Cu") + (net 41) + (uuid "f349781f-5e3a-4ec4-8ca8-2450ea079966") + ) + (segment + (start 148.38 81.7) + (end 148.6 81.7) + (width 0.5) + (layer "F.Cu") + (net 42) + (uuid "22c646ed-35fe-42a6-983b-a8e17644b3b6") + ) + (segment + (start 137.25 98.43) + (end 139.16 96.52) + (width 0.5) + (layer "F.Cu") + (net 42) + (uuid "391657a1-196f-4a2b-a59c-27945443a1cb") + ) + (segment + (start 139.16 90.92) + (end 148.38 81.7) + (width 0.5) + (layer "F.Cu") + (net 42) + (uuid "42f434c6-902f-4948-b72b-5fda6776a547") + ) + (segment + (start 139.16 96.52) + (end 139.16 90.92) + (width 0.5) + (layer "F.Cu") + (net 42) + (uuid "7ad10907-4320-4d93-84b3-22dc8099c55a") + ) + (segment + (start 132.26 98.43) + (end 137.25 98.43) + (width 0.5) + (layer "F.Cu") + (net 42) + (uuid "ff75f4bc-b4de-4503-a4b7-c35910f9eb5c") + ) + (segment + (start 189.56 73.92) + (end 189.46 74.02) + (width 1) + (layer "F.Cu") + (net 43) + (uuid "636f724e-7b14-4e67-97f5-1f56216f9589") + ) + (segment + (start 189.56 70.27) + (end 189.56 73.92) + (width 1) + (layer "F.Cu") + (net 43) + (uuid "d4ce3d3c-15a6-4e6c-b08e-e8e6bf80ec4f") + ) + (via + (at 189.46 74.02) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 43) + (uuid "243bd52d-9267-4cc0-8e50-df22ae1101c2") + ) + (segment + (start 189.46 74.02) + (end 189.4 74.08) + (width 1) + (layer "B.Cu") + (net 43) + (uuid "7c08725e-c1bd-42c0-92dc-dc427fdda954") + ) + (segment + (start 189.4 74.08) + (end 171.46 74.08) + (width 1) + (layer "B.Cu") + (net 43) + (uuid "b6065acb-bd67-4a89-9371-38a0823db53c") + ) + (segment + (start 140.66 98.14) + (end 140.66 91.82) + (width 0.5) + (layer "F.Cu") + (net 44) + (uuid "449b04a4-c1eb-4066-bced-e6b5bd70b020") + ) + (segment + (start 139.1 99.7) + (end 140.66 98.14) + (width 0.5) + (layer "F.Cu") + (net 44) + (uuid "73e1d994-b8e0-4922-82ae-f9b899f3f88a") + ) + (segment + (start 132.26 99.7) + (end 139.1 99.7) + (width 0.5) + (layer "F.Cu") + (net 44) + (uuid "84cb6d48-503f-4228-a502-44314edf9f50") + ) + (segment + (start 140.66 91.82) + (end 148.24 84.24) + (width 0.5) + (layer "F.Cu") + (net 44) + (uuid "dc6e8661-25de-48aa-be94-d8fec26e8272") + ) + (segment + (start 148.24 84.24) + (end 148.6 84.24) + (width 0.5) + (layer "F.Cu") + (net 44) + (uuid "ed40a58b-dc5b-48cc-a881-a160ac577331") + ) + (segment + (start 142.055682 99.344318) + (end 142.055682 93.324318) + (width 0.5) + (layer "F.Cu") + (net 45) + (uuid "466239fc-c977-4c40-a05f-3ff11f221b39") + ) + (segment + (start 142.055682 93.324318) + (end 148.6 86.78) + (width 0.5) + (layer "F.Cu") + (net 45) + (uuid "4b6cb36f-d3d3-4b63-815f-c15be0beca40") + ) + (segment + (start 132.26 100.97) + (end 140.43 100.97) + (width 0.5) + (layer "F.Cu") + (net 45) + (uuid "68e5b29c-14f3-4b5c-b405-cd03801ebf24") + ) + (segment + (start 140.43 100.97) + (end 142.055682 99.344318) + (width 0.5) + (layer "F.Cu") + (net 45) + (uuid "6f0c5683-1247-4533-b49a-36d73a1f76ff") + ) + (segment + (start 186.61 73.27) + (end 186.66 73.22) + (width 0.5) + (layer "F.Cu") + (net 46) + (uuid "bac80679-e5ad-4d5b-957e-6138566d2735") + ) + (segment + (start 186.61 77.01) + (end 186.61 73.27) + (width 0.5) + (layer "F.Cu") + (net 46) + (uuid "c0c56afd-17a1-47f4-83b0-00b378b85b20") + ) + (segment + (start 143.86 94.06) + (end 148.6 89.32) + (width 0.5) + (layer "F.Cu") + (net 47) + (uuid "20481ad1-5297-4a1d-a1bb-5e4e267927da") + ) + (segment + (start 141.96 102.24) + (end 143.86 100.34) + (width 0.5) + (layer "F.Cu") + (net 47) + (uuid "a1327828-5a34-4550-bbe5-05b898e70687") + ) + (segment + (start 132.26 102.24) + (end 141.96 102.24) + (width 0.5) + (layer "F.Cu") + (net 47) + (uuid "b48dcdfe-2e8c-4ac7-b195-d27dbe420c73") + ) + (segment + (start 143.86 100.34) + (end 143.86 94.06) + (width 0.5) + (layer "F.Cu") + (net 47) + (uuid "c4d4c606-3ea9-4080-acc2-f2a9c1a8d889") + ) + (segment + (start 132.26 103.51) + (end 143.49 103.51) + (width 0.5) + (layer "F.Cu") + (net 48) + (uuid "21843f61-fac2-40cb-8c2c-11dea7f4e34d") + ) + (segment + (start 143.49 103.51) + (end 145.255682 101.744318) + (width 0.5) + (layer "F.Cu") + (net 48) + (uuid "27dcfa60-477d-4c0a-87a3-86afb4df6c72") + ) + (segment + (start 145.255682 101.744318) + (end 145.255682 95.204318) + (width 0.5) + (layer "F.Cu") + (net 48) + (uuid "893ab480-2581-48e6-8e75-0e9308da8624") + ) + (segment + (start 145.255682 95.204318) + (end 148.6 91.86) + (width 0.5) + (layer "F.Cu") + (net 48) + (uuid "9efa04b5-7cb1-48c2-814e-1c67a53cadb3") + ) + (segment + (start 139.66 63.02) + (end 143.26 63.02) + (width 1) + (layer "F.Cu") + (net 49) + (uuid "64db7255-9e97-4d45-bb47-35c817341e0a") + ) + (segment + (start 161.26 66.42) + (end 161.26 73.82) + (width 1) + (layer "B.Cu") + (net 49) + (uuid "01745692-fba8-4822-8303-f20affe2b214") + ) + (segment + (start 139.66 63.02) + (end 143.46 63.02) + (width 1) + (layer "B.Cu") + (net 49) + (uuid "1aea0f67-4e40-4355-ac4f-e5016572d453") + ) + (segment + (start 161.26 73.82) + (end 164.06 76.62) + (width 1) + (layer "B.Cu") + (net 49) + (uuid "1d012125-db27-4832-b00c-a228ef749f25") + ) + (segment + (start 144.961 64.521) + (end 159.361 64.521) + (width 1) + (layer "B.Cu") + (net 49) + (uuid "36a290ea-5e28-46c2-96cf-2cfaf5188502") + ) + (segment + (start 164.06 76.62) + (end 171.46 76.62) + (width 1) + (layer "B.Cu") + (net 49) + (uuid "975c4af5-7614-4511-b288-4c9559e55e4b") + ) + (segment + (start 143.46 63.02) + (end 144.961 64.521) + (width 1) + (layer "B.Cu") + (net 49) + (uuid "ccbbbaf4-ff4e-43cd-884a-d384d7321258") + ) + (segment + (start 159.361 64.521) + (end 161.26 66.42) + (width 1) + (layer "B.Cu") + (net 49) + (uuid "d3f3dfde-598b-41ea-86d7-a2266a0ed47f") + ) + (segment + (start 181.66 73.22) + (end 181.66 77.01) + (width 0.5) + (layer "F.Cu") + (net 51) + (uuid "2ad850f0-ca51-47cf-b4b4-8e0f13cc8202") + ) + (segment + (start 177.44 69) + (end 181.66 73.22) + (width 0.5) + (layer "F.Cu") + (net 51) + (uuid "55582425-040c-4cec-856c-7e4a51888f38") + ) + (segment + (start 171.46 69) + (end 177.44 69) + (width 0.5) + (layer "F.Cu") + (net 51) + (uuid "6e79541f-7e2d-4ba8-bf6d-7b73e9000e33") + ) + (segment + (start 176.41 73.47) + (end 174.48 71.54) + (width 0.5) + (layer "F.Cu") + (net 52) + (uuid "0529864f-e69d-4ed8-80a4-8aa5dd14a9d4") + ) + (segment + (start 176.41 79.57) + (end 176.41 73.47) + (width 0.5) + (layer "F.Cu") + (net 52) + (uuid "26d311a5-92f3-4970-a6ac-acaa1be355d7") + ) + (segment + (start 181.66 80.82) + (end 177.66 80.82) + (width 0.5) + (layer "F.Cu") + (net 52) + (uuid "2d70bd9b-b8ed-4ae1-ab79-fa72a2ea31a1") + ) + (segment + (start 174.48 71.54) + (end 171.46 71.54) + (width 0.5) + (layer "F.Cu") + (net 52) + (uuid "bd165639-7f52-441f-87f2-b8bcce0d1431") + ) + (segment + (start 177.66 80.82) + (end 176.41 79.57) + (width 0.5) + (layer "F.Cu") + (net 52) + (uuid "ce43ea92-181e-444f-b65f-4290720e9392") + ) + (segment + (start 142.26 127.94) + (end 144.6 125.6) + (width 1) + (layer "F.Cu") + (net 53) + (uuid "0e3a9944-d3c8-4f44-a468-dbf59c590b86") + ) + (segment + (start 142.26 133.17) + (end 142.26 127.94) + (width 1) + (layer "F.Cu") + (net 53) + (uuid "18804f83-7b9d-4130-9bb7-2dab4e46ec04") + ) + (segment + (start 150.98 112.18) + (end 148.6 112.18) + (width 1) + (layer "F.Cu") + (net 53) + (uuid "64f279c7-f22e-4aa0-8389-4dbb47ccbd1d") + ) + (segment + (start 148.6 125.6) + (end 152.2 122) + (width 1) + (layer "F.Cu") + (net 53) + (uuid "9a56b985-cbe8-4367-874f-9ec27ed71408") + ) + (segment + (start 152.2 122) + (end 152.2 113.4) + (width 1) + (layer "F.Cu") + (net 53) + (uuid "cc55d23b-68e6-4a2a-aa7d-b264ab59c500") + ) + (segment + (start 144.6 125.6) + (end 148.6 125.6) + (width 1) + (layer "F.Cu") + (net 53) + (uuid "f3a5b891-6043-469f-960d-aefe29b845af") + ) + (segment + (start 152.2 113.4) + (end 150.98 112.18) + (width 1) + (layer "F.Cu") + (net 53) + (uuid "fcd08bd7-b294-4174-90e4-dc4e1bc96013") + ) + (segment + (start 146.36 109.64) + (end 148.6 109.64) + (width 1) + (layer "F.Cu") + (net 64) + (uuid "2cbc2b6a-206c-4ebc-ad8a-edc1d6fa257e") + ) + (segment + (start 140.26 133.17) + (end 140.26 126.14) + (width 1) + (layer "F.Cu") + (net 64) + (uuid "39504fb4-6bc8-4571-9325-f66836c34337") + ) + (segment + (start 140.26 126.14) + (end 145.6 120.8) + (width 1) + (layer "F.Cu") + (net 64) + (uuid "8d49fa92-9c4e-41fb-8990-dd3fd4c20ad7") + ) + (segment + (start 145.6 110.4) + (end 146.36 109.64) + (width 1) + (layer "F.Cu") + (net 64) + (uuid "ab0f97a5-b2e9-4db5-bf8a-68cc401fc1d8") + ) + (segment + (start 145.6 120.8) + (end 145.6 110.4) + (width 1) + (layer "F.Cu") + (net 64) + (uuid "e91fa0ba-8ac5-4341-96cb-1c9710a5a803") + ) + (segment + (start 179.2 124) + (end 179.2 123.6) + (width 1) + (layer "F.Cu") + (net 69) + (uuid "280a9d2e-86ad-4586-b7a3-bc278620726a") + ) + (segment + (start 186.2 129.2) + (end 189.95 132.95) + (width 1) + (layer "F.Cu") + (net 69) + (uuid "65b12663-bc43-4e88-9471-e7d36f842628") + ) + (segment + (start 186.2 129.2) + (end 184.2 129.2) + (width 1) + (layer "F.Cu") + (net 69) + (uuid "7263fc4a-228c-43ec-a9a4-7d59868aed9a") + ) + (segment + (start 184.2 129) + (end 179.2 124) + (width 1) + (layer "F.Cu") + (net 69) + (uuid "8e1966f4-47aa-4b9e-82bd-4824929850e3") + ) + (segment + (start 184.2 129.2) + (end 184.2 129) + (width 1) + (layer "F.Cu") + (net 69) + (uuid "df424b45-4f68-4006-ab6c-a200fa699957") + ) + (segment + (start 189.95 132.95) + (end 189.95 133.15) + (width 1) + (layer "F.Cu") + (net 69) + (uuid "f0a4391e-def1-40e8-ae23-6bdef33d9a58") + ) + (segment + (start 186.8225 106.4575) + (end 187.685 106.4575) + (width 0.5) + (layer "F.Cu") + (net 74) + (uuid "005e679c-16db-4568-a54e-ddd5f31776ca") + ) + (segment + (start 185.8475 108.6825) + (end 186.26 108.27) + (width 0.5) + (layer "F.Cu") + (net 74) + (uuid "0aee4752-1243-4b3e-b9d8-885b97669eaf") + ) + (segment + (start 185.14 108.6825) + (end 185.8475 108.6825) + (width 0.5) + (layer "F.Cu") + (net 74) + (uuid "2d6004cf-7996-4715-9d1a-4dc060508abe") + ) + (segment + (start 186.26 107.02) + (end 186.8225 106.4575) + (width 0.5) + (layer "F.Cu") + (net 74) + (uuid "8e15a159-5f63-4a71-820b-55e273a2eee9") + ) + (segment + (start 186.26 108.27) + (end 186.26 107.02) + (width 0.5) + (layer "F.Cu") + (net 74) + (uuid "e3a4ae83-d34f-42fb-8d96-e7f74712d838") + ) + (segment + (start 182.96 114.095) + (end 182.96 117.42) + (width 1) + (layer "F.Cu") + (net 75) + (uuid "f136c92d-fe00-4a00-92d6-5c7cb319d6df") + ) + (segment + (start 182.6 110.36) + (end 182.6 108.6825) + (width 0.5) + (layer "F.Cu") + (net 76) + (uuid "37981d08-d753-4543-be5e-44dae55c2481") + ) + (segment + (start 182.96 112.02) + (end 182.96 110.72) + (width 0.5) + (layer "F.Cu") + (net 76) + (uuid "7dcec47f-af7c-4c90-8694-e576b26a4dbb") + ) + (segment + (start 182.96 110.72) + (end 182.6 110.36) + (width 0.5) + (layer "F.Cu") + (net 76) + (uuid "8a95e3ab-6e3f-46af-884e-bc50abfa5a06") + ) + (segment + (start 196.91 94.82) + (end 196.91 91.82) + (width 1) + (layer "F.Cu") + (net 77) + (uuid "5c792534-9626-4d3e-915b-dea72c8ba424") + ) + (segment + (start 196.91 91.82) + (end 196.96 91.77) + (width 1) + (layer "F.Cu") + (net 77) + (uuid "ce8b8ba5-4e3b-4871-97f1-725c4f3169e8") + ) + (segment + (start 183.87 110.13) + (end 185.36 111.62) + (width 0.5) + (layer "F.Cu") + (net 78) + (uuid "109f8e10-2454-4901-a22f-2905d506f087") + ) + (segment + (start 183.87 108.6825) + (end 183.87 110.13) + (width 0.5) + (layer "F.Cu") + (net 78) + (uuid "73d13c7f-bd84-4cc3-9d58-370d579543ce") + ) + (segment + (start 185.36 111.62) + (end 185.36 112.0575) + (width 0.5) + (layer "F.Cu") + (net 78) + (uuid "d00d77e0-6c20-4d10-bf4c-a41651f3df71") + ) + (segment + (start 181.33 108.6825) + (end 179.3225 108.6825) + (width 0.5) + (layer "F.Cu") + (net 79) + (uuid "07935f57-be83-4ccd-8acf-e0b89726f5ef") + ) + (segment + (start 179.3225 108.6825) + (end 179.06 108.42) + (width 0.5) + (layer "F.Cu") + (net 79) + (uuid "237bc62a-bdc2-40b7-b178-4e2a2153397c") + ) + (segment + (start 181.33 110.1) + (end 180.31 111.12) + (width 0.5) + (layer "F.Cu") + (net 79) + (uuid "370f62a9-6d38-4599-8f53-d8d101b03259") + ) + (segment + (start 181.33 108.6825) + (end 181.33 110.1) + (width 0.5) + (layer "F.Cu") + (net 79) + (uuid "6e56d425-4764-4c2e-a0d9-63d64b7ed34d") + ) + (segment + (start 180.31 111.12) + (end 180.31 112.02) + (width 0.5) + (layer "F.Cu") + (net 79) + (uuid "ac34d7cd-f0f2-42fe-afe3-14e45343893e") + ) + (segment + (start 179.06 108.42) + (end 179.06 107.37) + (width 0.5) + (layer "F.Cu") + (net 79) + (uuid "cf761b26-bc63-4c5f-9486-c28beb9ba850") + ) + (segment + (start 198.26 115.43) + (end 198.66 115.83) + (width 2) + (layer "F.Cu") + (net 80) + (uuid "9e5235d4-a4ca-4e31-bb15-fe6e4b9bc662") + ) + (segment + (start 198.66 115.83) + (end 198.66 119.49) + (width 2) + (layer "F.Cu") + (net 80) + (uuid "c6528640-41dc-42d5-8bbb-025e07a55706") + ) + (segment + (start 198.26 108.82) + (end 198.26 115.43) + (width 2) + (layer "F.Cu") + (net 80) + (uuid "f6e7883e-333f-4d65-9057-947effbd9e71") + ) + (segment + (start 121.66 85.82) + (end 121.66 84.62) + (width 1) + (layer "F.Cu") + (net 81) + (uuid "00d45754-82b6-49f0-a21d-9dccacad8a1a") + ) + (segment + (start 82.61 84.07) + (end 82.06 84.62) + (width 1) + (layer "F.Cu") + (net 81) + (uuid "0505056f-1909-469c-8a2c-e2fdb5c08e95") + ) + (segment + (start 77.26 104.9825) + (end 78.4225 104.9825) + (width 1) + (layer "F.Cu") + (net 81) + (uuid "0692b92f-4b57-48a0-bd18-ef8406069e09") + ) + (segment + (start 63.46 90.42) + (end 63.46 84.82) + (width 1) + (layer "F.Cu") + (net 81) + (uuid "0c602373-69d2-44a8-ac86-ad27686cfb37") + ) + (segment + (start 103.26 92.0575) + (end 101.6975 92.0575) + (width 1) + (layer "F.Cu") + (net 81) + (uuid "0f5de150-6d21-4f4a-8967-79ca8a037212") + ) + (segment + (start 107.06 92.0575) + (end 110.2225 92.0575) + (width 1) + (layer "F.Cu") + (net 81) + (uuid "109ef058-c187-4c58-9ee5-094c4af45551") + ) + (segment + (start 124.13 93.35) + (end 122.96 93.35) + (width 0.5) + (layer "F.Cu") + (net 81) + (uuid "11edba01-3e21-43da-8dd2-b9ca19280aa3") + ) + (segment + (start 74.66 90.62) + (end 73.6225 91.6575) + (width 1) + (layer "F.Cu") + (net 81) + (uuid "1535ea5e-b438-41ab-9bbb-895746cbffdf") + ) + (segment + (start 117.41 112.47) + (end 115.276667 112.47) + (width 1) + (layer "F.Cu") + (net 81) + (uuid "161bcd62-80af-4f58-892d-118eb03d6a96") + ) + (segment + (start 64.6975 91.6575) + (end 63.46 90.42) + (width 1) + (layer "F.Cu") + (net 81) + (uuid "161c180c-2b76-4bee-a4ca-a93668edee8a") + ) + (segment + (start 190.86 97.82) + (end 187.56 97.82) + (width 1) + (layer "F.Cu") + (net 81) + (uuid "1703cdab-098b-4c80-9416-9e763630ff57") + ) + (segment + (start 124.735 92.745) + (end 124.13 93.35) + (width 0.5) + (layer "F.Cu") + (net 81) + (uuid "18f0a023-2090-462a-9607-d98d2a096a56") + ) + (segment + (start 93.26 90.62) + (end 92.385 91.495) + (width 1) + (layer "F.Cu") + (net 81) + (uuid "19aeee5f-70a9-4a9e-8bd3-18350eb7272f") + ) + (segment + (start 63.46 84.82) + (end 64.01 84.27) + (width 1) + (layer "F.Cu") + (net 81) + (uuid "1cae5b77-8499-4932-9ff7-d64814537019") + ) + (segment + (start 99.46 111.22) + (end 98.16 112.52) + (width 1) + (layer "F.Cu") + (net 81) + (uuid "1ccbebd7-d922-4ffe-b10e-7aba23917f2a") + ) + (segment + (start 92.26 105.1825) + (end 89.6975 105.1825) + (width 1) + (layer "F.Cu") + (net 81) + (uuid "20ebe3b2-1162-49e3-890f-c841d96b18e1") + ) + (segment + (start 185.36 115.22) + (end 186.01 115.87) + (width 1) + (layer "F.Cu") + (net 81) + (uuid "21f6ff14-2e2c-4ae0-bb5e-2fd35cef0451") + ) + (segment + (start 187.685 112.0575) + (end 187.685 115.695) + (width 1) + (layer "F.Cu") + (net 81) + (uuid "236f4a8b-f0d4-475b-b8c5-b87272952fa4") + ) + (segment + (start 116.06 105.22) + (end 118.06 105.22) + (width 1) + (layer "F.Cu") + (net 81) + (uuid "26bdc8f0-a514-46ad-b0ae-3676213cd8be") + ) + (segment + (start 187.685 115.695) + (end 187.86 115.87) + (width 1) + (layer "F.Cu") + (net 81) + (uuid "2b3c8afe-90a5-4f5b-8de7-33cce8960498") + ) + (segment + (start 183.87 101.51) + (end 183.87 103.7225) + (width 0.5) + (layer "F.Cu") + (net 81) + (uuid "2d8bc57b-971b-45bd-b2c8-4c6cd473d478") + ) + (segment + (start 133.46 112.52) + (end 133.61 112.67) + (width 1) + (layer "F.Cu") + (net 81) + (uuid "31e2b97a-706e-4966-acb3-8fdf57f3dbb4") + ) + (segment + (start 89.6975 105.1825) + (end 88.66 106.22) + (width 1) + (layer "F.Cu") + (net 81) + (uuid "32df1534-8b30-438e-a5a7-9f799b1f2c21") + ) + (segment + (start 187.685 110.595) + (end 188.96 109.32) + (width 1) + (layer "F.Cu") + (net 81) + (uuid "348a741b-f481-4546-a555-89e92073247f") + ) + (segment + (start 119.46 92.62) + (end 119.46 92.02) + (width 0.5) + (layer "F.Cu") + (net 81) + (uuid "36704623-5c78-491b-b8bf-2ffdac99b211") + ) + (segment + (start 106.86 106.22) + (end 107.86 105.22) + (width 1) + (layer "F.Cu") + (net 81) + (uuid "39440036-b59f-4751-a40f-97d389ad3eec") + ) + (segment + (start 89.26 91.495) + (end 85.06 91.495) + (width 1) + (layer "F.Cu") + (net 81) + (uuid "3ddd23fe-e4e6-4d3f-a7d3-d05473fe73b2") + ) + (segment + (start 133.46 107.02) + (end 133.46 112.52) + (width 1) + (layer "F.Cu") + (net 81) + (uuid "3df61df4-459b-4d70-a783-3bc21a61544b") + ) + (segment + (start 133.46 107.02) + (end 139.86 107.02) + (width 1) + (layer "F.Cu") + (net 81) + (uuid "4582affd-454e-47d1-b4fe-737171e9d9d1") + ) + (segment + (start 190.86 116.97) + (end 190.01 116.12) + (width 2) + (layer "F.Cu") + (net 81) + (uuid "4ede0769-f752-4987-b6c7-11d443f26d59") + ) + (segment + (start 125.46 76.22) + (end 121.66 80.02) + (width 0.5) + (layer "F.Cu") + (net 81) + (uuid "501f8f6f-773a-47a1-8973-60a972e23b03") + ) + (segment + (start 107.86 105.22) + (end 111.66 105.22) + (width 1) + (layer "F.Cu") + (net 81) + (uuid "57c83b75-893b-4791-9662-5a3cdd4a1a22") + ) + (segment + (start 79.86 106.42) + (end 79.859999 111.220001) + (width 1) + (layer "F.Cu") + (net 81) + (uuid "58071eb3-0cee-423e-bd32-af086b0e38da") + ) + (segment + (start 96.66 105.1825) + (end 98.4225 105.1825) + (width 1) + (layer "F.Cu") + (net 81) + (uuid "587d6638-2ee2-43b3-be41-78d5195f8d44") + ) + (segment + (start 118.06 105.22) + (end 118.66 105.82) + (width 1) + (layer "F.Cu") + (net 81) + (uuid "5ee62d54-d150-40c7-8962-48c64749a14f") + ) + (segment + (start 73.86 104.9825) + (end 71.0975 104.9825) + (width 1) + (layer "F.Cu") + (net 81) + (uuid "602820b8-bed5-428a-9c6c-4281eb0a3ee8") + ) + (segment + (start 138.26 76.22) + (end 125.46 76.22) + (width 0.5) + (layer "F.Cu") + (net 81) + (uuid "6336bcb1-769e-41d6-98b6-2be80acbd5bb") + ) + (segment + (start 83.135 91.495) + (end 85.06 91.495) + (width 1) + (layer "F.Cu") + (net 81) + (uuid "652b558c-ddf7-466e-a435-981cd4ceab90") + ) + (segment + (start 187.56 94.82) + (end 187.56 97.82) + (width 0.5) + (layer "F.Cu") + (net 81) + (uuid "6d37787a-90b3-46f4-b091-6e0bb8a1066f") + ) + (segment + (start 74.55 98.55) + (end 78.559 98.55) + (width 2) + (layer "F.Cu") + (net 81) + (uuid "6f42c2a9-1caa-40fb-803a-11a0e77f5180") + ) + (segment + (start 78.4225 104.9825) + (end 79.86 106.42) + (width 1) + (layer "F.Cu") + (net 81) + (uuid "7013e836-e4c7-4ace-ad7e-c5ebaaea0380") + ) + (segment + (start 124.735 90.02) + (end 124.735 92.745) + (width 0.5) + (layer "F.Cu") + (net 81) + (uuid "72f777da-1eff-4253-a378-eddb90332bd5") + ) + (segment + (start 98.4225 105.1825) + (end 99.46 106.22) + (width 1) + (layer "F.Cu") + (net 81) + (uuid "7355ee0d-e09f-4537-8988-dec519b7c7e7") + ) + (segment + (start 96.66 105.1825) + (end 92.26 105.1825) + (width 1) + (layer "F.Cu") + (net 81) + (uuid "73c5ed5b-d15a-4d87-9839-c775c65c0d0d") + ) + (segment + (start 192.81 99.77) + (end 190.86 97.82) + (width 1) + (layer "F.Cu") + (net 81) + (uuid "73eeb776-4ac7-4f86-bd63-aca80dd5d601") + ) + (segment + (start 139.81 112.67) + (end 139.86 112.62) + (width 1) + (layer "F.Cu") + (net 81) + (uuid "78cec257-698f-4af3-87d2-d20a9204b6f2") + ) + (segment + (start 118.66 111.22) + (end 117.41 112.47) + (width 1) + (layer "F.Cu") + (net 81) + (uuid "79a1ef30-52aa-4752-87ca-247c6081b8a5") + ) + (segment + (start 192.81 108.32) + (end 192.81 99.77) + (width 1) + (layer "F.Cu") + (net 81) + (uuid "7d003759-e1dd-479a-b234-c3cbca24e56c") + ) + (segment + (start 120.19 93.35) + (end 119.46 92.62) + (width 0.5) + (layer "F.Cu") + (net 81) + (uuid "7e7e56bf-4f8c-4e4d-950d-ddf65ef48c5c") + ) + (segment + (start 101.6975 92.0575) + (end 100.86 91.22) + (width 1) + (layer "F.Cu") + (net 81) + (uuid "80203743-5d58-4767-95d3-e48b9197e965") + ) + (segment + (start 92.385 91.495) + (end 89.26 91.495) + (width 1) + (layer "F.Cu") + (net 81) + (uuid "806260e2-8d76-42d3-a3f5-ccf3d63fad58") + ) + (segment + (start 190.86 120.02) + (end 190.86 118.82) + (width 2) + (layer "F.Cu") + (net 81) + (uuid "8186d94d-c3d8-4d77-99c0-53380dd1fa93") + ) + (segment + (start 187.56 97.82) + (end 183.87 101.51) + (width 0.5) + (layer "F.Cu") + (net 81) + (uuid "84bce261-8f82-4380-9771-808c7d5f58cc") + ) + (segment + (start 110.2225 92.0575) + (end 111.06 91.22) + (width 1) + (layer "F.Cu") + (net 81) + (uuid "85162959-e763-452a-9497-3169778f1219") + ) + (segment + (start 84.993333 84.07) + (end 82.61 84.07) + (width 1) + (layer "F.Cu") + (net 81) + (uuid "87791200-5722-40e9-bd5f-b276c3ad428b") + ) + (segment + (start 64.01 84.27) + (end 66.66 84.27) + (width 1) + (layer "F.Cu") + (net 81) + (uuid "87ce7d81-b36f-4c7f-b977-905d24869a07") + ) + (segment + (start 78.559 98.55) + (end 78.86 98.249) + (width 2) + (layer "F.Cu") + (net 81) + (uuid "884441e8-19ce-4594-b03e-696ad4e0bde3") + ) + (segment + (start 190.86 118.82) + (end 190.86 116.97) + (width 2) + (layer "F.Cu") + (net 81) + (uuid "8ab991a8-1a52-4d21-84b8-e8b7ad4dec4a") + ) + (segment + (start 187.685 112.0575) + (end 187.685 110.595) + (width 1) + (layer "F.Cu") + (net 81) + (uuid "8b4df800-1dae-4a1f-8b1f-ea3fd41d4cfc") + ) + (segment + (start 103.26 92.0575) + (end 107.06 92.0575) + (width 1) + (layer "F.Cu") + (net 81) + (uuid "93fd894a-bad0-4684-9068-e68260d45ad5") + ) + (segment + (start 66.46 91.6575) + (end 64.6975 91.6575) + (width 1) + (layer "F.Cu") + (net 81) + (uuid "94226260-5570-4c95-a29e-f473bd97f68a") + ) + (segment + (start 191.81 109.32) + (end 192.81 108.32) + (width 1) + (layer "F.Cu") + (net 81) + (uuid "969cfeb2-3082-48e8-befd-481c3dfc5172") + ) + (segment + (start 185.36 114.0575) + (end 185.36 115.22) + (width 1) + (layer "F.Cu") + (net 81) + (uuid "a1333952-0046-4df7-981d-f8f1f2efe5ca") + ) + (segment + (start 190.01 116.12) + (end 189.76 115.87) + (width 2) + (layer "F.Cu") + (net 81) + (uuid "aa1b3af9-de56-47d6-8920-ea413e3728d1") + ) + (segment + (start 122.96 93.35) + (end 120.19 93.35) + (width 0.5) + (layer "F.Cu") + (net 81) + (uuid "b0911d45-972d-4c48-98e5-8c169b4a557a") + ) + (segment + (start 71.0975 104.9825) + (end 69.86 106.22) + (width 1) + (layer "F.Cu") + (net 81) + (uuid "b307a214-75d0-41cf-ae1d-8d255c5ca397") + ) + (segment + (start 66.46 91.6575) + (end 69.86 91.6575) + (width 1) + (layer "F.Cu") + (net 81) + (uuid "bbf42ca1-4122-4448-a5ec-c9eed539c95a") + ) + (segment + (start 188.96 109.32) + (end 191.81 109.32) + (width 1) + (layer "F.Cu") + (net 81) + (uuid "bd60faef-1381-45ab-8166-2787413da7a8") + ) + (segment + (start 133.61 112.67) + (end 139.81 112.67) + (width 1) + (layer "F.Cu") + (net 81) + (uuid "bd8562de-901b-483d-a3cb-66b8d6a499e9") + ) + (segment + (start 100.86 85.3525) + (end 102.06 84.1525) + (width 1) + (layer "F.Cu") + (net 81) + (uuid "bea12495-4212-4eab-a01f-dfee661688aa") + ) + (segment + (start 187.86 115.87) + (end 186.01 115.87) + (width 1) + (layer "F.Cu") + (net 81) + (uuid "c23ccbb7-d675-45ff-9e77-64500d872dbc") + ) + (segment + (start 124.735 90.02) + (end 124.735 88.895) + (width 1) + (layer "F.Cu") + (net 81) + (uuid "c2b5bf6d-88c2-4cb3-a5d2-4553b155150d") + ) + (segment + (start 100.86 91.22) + (end 100.86 85.3525) + (width 1) + (layer "F.Cu") + (net 81) + (uuid "cd3c56d0-2908-4e58-b254-da47af503c97") + ) + (segment + (start 118.66 105.82) + (end 118.66 111.22) + (width 1) + (layer "F.Cu") + (net 81) + (uuid "cd8bacd6-6ed2-4775-a6d8-7b662cb0b3af") + ) + (segment + (start 111.66 105.22) + (end 116.06 105.22) + (width 1) + (layer "F.Cu") + (net 81) + (uuid "d50cf55c-fb1f-4629-8db0-2d32ad0fa77f") + ) + (segment + (start 121.66 80.02) + (end 121.66 84.62) + (width 0.5) + (layer "F.Cu") + (net 81) + (uuid "da61cba3-3b41-4fde-bd6b-16fb5c7315ab") + ) + (segment + (start 189.76 115.87) + (end 187.86 115.87) + (width 2) + (layer "F.Cu") + (net 81) + (uuid "e192f85b-09e7-40d5-b1ea-afb9afafe7b7") + ) + (segment + (start 124.735 88.895) + (end 121.66 85.82) + (width 1) + (layer "F.Cu") + (net 81) + (uuid "e3c9259f-7199-4451-98de-406a9b5ba605") + ) + (segment + (start 77.26 104.9825) + (end 73.86 104.9825) + (width 1) + (layer "F.Cu") + (net 81) + (uuid "e41599ab-30b8-4bcd-9918-148a45620332") + ) + (segment + (start 79.859999 111.220001) + (end 78.61 112.47) + (width 1) + (layer "F.Cu") + (net 81) + (uuid "ea99be64-6a84-4286-8ee5-94f0322dd1f1") + ) + (segment + (start 82.06 90.42) + (end 83.135 91.495) + (width 1) + (layer "F.Cu") + (net 81) + (uuid "efba92b6-f952-4281-bba5-5a83861f30eb") + ) + (segment + (start 82.06 84.62) + (end 82.06 90.42) + (width 1) + (layer "F.Cu") + (net 81) + (uuid "f3f77b4f-ce8e-4ec3-856a-11945836f3d0") + ) + (segment + (start 73.6225 91.6575) + (end 69.86 91.6575) + (width 1) + (layer "F.Cu") + (net 81) + (uuid "f579f3e4-322e-4713-9d5a-7d9347dd480e") + ) + (segment + (start 98.16 112.52) + (end 96.943333 112.52) + (width 1) + (layer "F.Cu") + (net 81) + (uuid "fc051a37-d970-4733-9963-ddac8084f141") + ) + (segment + (start 99.46 106.22) + (end 99.46 111.22) + (width 1) + (layer "F.Cu") + (net 81) + (uuid "fc74c5ed-6005-4def-8d69-1bf0fe819de9") + ) + (segment + (start 102.06 84.1525) + (end 103.326667 84.1525) + (width 1) + (layer "F.Cu") + (net 81) + (uuid "fde0d2d5-cfa5-411c-8fbd-5d87b54134dc") + ) + (via + (at 193 122) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (free yes) + (net 81) + (uuid "0ca2e06e-a15c-407d-99b9-ebeaafc37112") + ) + (via + (at 187.86 120) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 81) + (uuid "1298935a-4687-429c-82fb-eda93b215a91") + ) + (via + (at 185 117.8) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (free yes) + (net 81) + (uuid "1ac61965-52fe-4a28-a7d8-77fc7626b956") + ) + (via + (at 190.6 116) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (free yes) + (net 81) + (uuid "22a88df6-1d19-42bb-baef-6b284a397b60") + ) + (via + (at 191.2 114.2) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (free yes) + (net 81) + (uuid "30dc0ab4-d64c-442e-9053-1442a5f8ebbf") + ) + (via + (at 195 127.6) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 81) + (uuid "6349baf2-e2b1-4680-97a8-cfb14f49340a") + ) + (via + (at 193 116) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (free yes) + (net 81) + (uuid "69579581-f192-45c8-906e-d1bc8f78c515") + ) + (via + (at 190.8 118) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (free yes) + (net 81) + (uuid "6c42de71-5880-4498-8e41-cdccba961e80") + ) + (via + (at 193 120) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (free yes) + (net 81) + (uuid "742ec54e-d74b-4fa7-8f83-ef0f95496dea") + ) + (via + (at 193 118) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (free yes) + (net 81) + (uuid "779e5a21-9e8b-42b8-bfd3-5727cc794f84") + ) + (via + (at 187.86 122) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 81) + (uuid "782c8b82-e3e6-4bdf-9c1d-53a9dc56c7be") + ) + (via + (at 190.8 122) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (free yes) + (net 81) + (uuid "83d7f681-49b9-429f-8b33-e54e3fad8703") + ) + (via + (at 185 122) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (free yes) + (net 81) + (uuid "85d638cd-13b3-4d03-b7aa-bd0bf3b9473a") + ) + (via + (at 186 124) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (free yes) + (net 81) + (uuid "9df18867-b62a-4f36-9cc8-eb13a1802d33") + ) + (via + (at 187.86 124.6) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 81) + (uuid "a89e128e-ca84-4ef1-98e3-441cdbe57b26") + ) + (via + (at 78.86 98.249) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 81) + (uuid "ae8fe677-c4f8-4078-82bd-d4d8485ed9f1") + ) + (via + (at 193 127.6) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (free yes) + (net 81) + (uuid "c9774cdf-2f25-4af0-92fb-1e4585f3c382") + ) + (via + (at 185 120) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (free yes) + (net 81) + (uuid "def49fed-4bb5-4acb-a81c-202a797b7e5a") + ) + (via + (at 187.86 118) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 81) + (uuid "e151e684-d758-41c0-976d-9fda45c7deae") + ) + (via + (at 190.8 127.6) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (free yes) + (net 81) + (uuid "e1cbc153-2cb5-4efc-8e42-8b77ee88008a") + ) + (via + (at 185 115.8) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (free yes) + (net 81) + (uuid "ec3555a9-280f-4bab-a583-34e6d5a65fe3") + ) + (via + (at 187.86 115.87) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 81) + (uuid "f36a29d8-6dfd-44e5-95e1-7e832b5b5e54") + ) + (segment + (start 66.66 84.27) + (end 66.66 96.62) + (width 3) + (layer "B.Cu") + (net 81) + (uuid "0160ce93-569b-4302-8cb9-9f2614ce4f26") + ) + (segment + (start 104.66 98.82) + (end 96.66 98.82) + (width 12) + (layer "B.Cu") + (net 81) + (uuid "0ed23513-8e6b-4170-a6be-aac6af2b06e0") + ) + (segment + (start 84.993333 97.753333) + (end 86.06 98.82) + (width 3) + (layer "B.Cu") + (net 81) + (uuid "18ad3667-4fd3-41cb-bfe1-972330296159") + ) + (segment + (start 103.326667 84.1525) + (end 103.326667 97.486667) + (width 3) + (layer "B.Cu") + (net 81) + (uuid "1c853743-c488-4a70-9ce8-6623dad7be7d") + ) + (segment + (start 132.66 98.82) + (end 122.26 98.82) + (width 12) + (layer "B.Cu") + (net 81) + (uuid "1dd68ee2-b61e-402f-8397-99623b94420a") + ) + (segment + (start 84.993333 84.07) + (end 84.993333 97.753333) + (width 3) + (layer "B.Cu") + (net 81) + (uuid "27c76a7d-b1c4-4852-b15d-f556bac10c45") + ) + (segment + (start 187.04 127.04) + (end 187.86 126.22) + (width 2.5) + (layer "B.Cu") + (net 81) + (uuid "28be6471-b284-4cfa-9529-8090e0b5aafa") + ) + (segment + (start 115.276667 99.436667) + (end 114.66 98.82) + (width 3) + (layer "B.Cu") + (net 81) + (uuid "2d71ce77-367a-472d-b5bc-1153e2dad9bf") + ) + (segment + (start 133.66 103.72) + (end 133.66 99.82) + (width 3) + (layer "B.Cu") + (net 81) + (uuid "44e0b973-beca-4052-8706-b4773ffc00e4") + ) + (segment + (start 121.66 98.22) + (end 122.26 98.82) + (width 3) + (layer "B.Cu") + (net 81) + (uuid "4533dc71-efe0-42f0-b817-dd700e7020bf") + ) + (segment + (start 182.66 129.42) + (end 184.66 129.42) + (width 2.5) + (layer "B.Cu") + (net 81) + (uuid "4a61dcac-76b3-4dc0-a891-a33c50fb00ed") + ) + (segment + (start 133.61 112.67) + (end 133.61 103.77) + (width 3) + (layer "B.Cu") + (net 81) + (uuid "4da9266d-b8e2-433a-82d6-92ecce29e7b3") + ) + (segment + (start 103.326667 97.486667) + (end 104.66 98.82) + (width 3) + (layer "B.Cu") + (net 81) + (uuid "51199338-d729-4d15-8209-8a8cbf4dc5bf") + ) + (segment + (start 66.66 96.62) + (end 68.86 98.82) + (width 3) + (layer "B.Cu") + (net 81) + (uuid "51ac7657-4dac-4534-9958-fa9e20d5ae61") + ) + (segment + (start 96.66 98.82) + (end 86.06 98.82) + (width 12) + (layer "B.Cu") + (net 81) + (uuid "5417db79-f79d-4a14-87d3-ef18f00530df") + ) + (segment + (start 141.46 124.42) + (end 146.46 129.42) + (width 2.5) + (layer "B.Cu") + (net 81) + (uuid "552ac69d-d399-4458-95f1-246d02f777e0") + ) + (segment + (start 96.943333 99.103333) + (end 96.66 98.82) + (width 3) + (layer "B.Cu") + (net 81) + (uuid "60f701a6-8f6b-4c98-b697-3a7d666846ae") + ) + (segment + (start 78.86 98.82) + (end 68.86 98.82) + (width 12) + (layer "B.Cu") + (net 81) + (uuid "68c76a45-46ba-4783-a553-ef4f74ae6d12") + ) + (segment + (start 133.61 112.67) + (end 138.91 112.67) + (width 2.5) + (layer "B.Cu") + (net 81) + (uuid "6af24750-1016-46dc-ac92-b05977b88ca5") + ) + (segment + (start 187.86 122) + (end 187.86 120) + (width 2.5) + (layer "B.Cu") + (net 81) + (uuid "6d2a5828-8477-49e7-b0c3-4942218f29bd") + ) + (segment + (start 78.61 99.07) + (end 78.86 98.82) + (width 3) + (layer "B.Cu") + (net 81) + (uuid "7bb75571-2097-4bb2-9904-2bffbdd4af19") + ) + (segment + (start 146.46 129.42) + (end 182.66 129.42) + (width 2.5) + (layer "B.Cu") + (net 81) + (uuid "7dc40a2f-77f6-48e6-b489-35b43356b97e") + ) + (segment + (start 133.66 99.82) + (end 132.66 98.82) + (width 12) + (layer "B.Cu") + (net 81) + (uuid "831312e8-f47f-49a4-bfbd-172075f56559") + ) + (segment + (start 187.86 118) + (end 187.86 115.87) + (width 2.5) + (layer "B.Cu") + (net 81) + (uuid "9473c764-1e53-42f1-9ed9-360f3e5f743c") + ) + (segment + (start 138.91 112.67) + (end 141.46 115.22) + (width 2.5) + (layer "B.Cu") + (net 81) + (uuid "9918b435-099d-4f93-90b8-8d872c5aa206") + ) + (segment + (start 114.66 98.82) + (end 104.66 98.82) + (width 12) + (layer "B.Cu") + (net 81) + (uuid "998f0c6d-b713-4f30-b659-6eee0a67d9ab") + ) + (segment + (start 141.46 115.22) + (end 141.46 124.42) + (width 2.5) + (layer "B.Cu") + (net 81) + (uuid "9a5210e8-2290-42ea-bacd-bb7cdd151c7b") + ) + (segment + (start 187.86 126.22) + (end 187.86 124.6) + (width 2.5) + (layer "B.Cu") + (net 81) + (uuid "9ecfab5e-2e66-485b-866d-735904ad1fbd") + ) + (segment + (start 133.61 103.77) + (end 133.66 103.72) + (width 3) + (layer "B.Cu") + (net 81) + (uuid "b3de0b9f-a1ce-45f1-8cd7-ac2fdd656a88") + ) + (segment + (start 115.276667 112.47) + (end 115.276667 99.436667) + (width 3) + (layer "B.Cu") + (net 81) + (uuid "b8821628-d73a-475f-a00c-d6a40dcf1fc6") + ) + (segment + (start 122.26 98.82) + (end 114.66 98.82) + (width 12) + (layer "B.Cu") + (net 81) + (uuid "c0aedfb5-34f0-45d2-9abd-00416bad0681") + ) + (segment + (start 121.66 84.62) + (end 121.66 98.22) + (width 3) + (layer "B.Cu") + (net 81) + (uuid "caa3acd6-18fb-437d-b7bf-357d0d79e364") + ) + (segment + (start 187.86 124.6) + (end 187.86 122) + (width 2.5) + (layer "B.Cu") + (net 81) + (uuid "cf062da9-90ac-456c-8ed2-faa3e1f46755") + ) + (segment + (start 96.943333 112.52) + (end 96.943333 99.103333) + (width 3) + (layer "B.Cu") + (net 81) + (uuid "da225e58-bdde-4418-9dc4-ca498ebcf3c0") + ) + (segment + (start 78.61 112.47) + (end 78.61 99.07) + (width 3) + (layer "B.Cu") + (net 81) + (uuid "dd79e757-3f5f-4f44-8578-bc9c8ca66e8a") + ) + (segment + (start 187.86 120) + (end 187.86 118) + (width 2.5) + (layer "B.Cu") + (net 81) + (uuid "e1cac7f1-7ed5-4731-a739-535af8559719") + ) + (segment + (start 86.06 98.82) + (end 78.86 98.82) + (width 12) + (layer "B.Cu") + (net 81) + (uuid "ec3fac18-ebc2-4c8d-b637-553cf6d91ff9") + ) + (segment + (start 184.66 129.42) + (end 187.04 127.04) + (width 2.5) + (layer "B.Cu") + (net 81) + (uuid "ef4cc2e0-a76b-42d3-86d3-1fba4c8e4ee4") + ) + (segment + (start 127.26 94.62) + (end 122.96 94.62) + (width 0.5) + (layer "F.Cu") + (net 82) + (uuid "0d4f8f66-4a88-4499-b95f-694d249ac728") + ) + (segment + (start 138.26 82.22) + (end 135.86 84.62) + (width 0.5) + (layer "F.Cu") + (net 82) + (uuid "8c927b37-22ab-4bd4-840f-4c3b6534557d") + ) + (segment + (start 133.66 88.22) + (end 127.26 94.62) + (width 0.5) + (layer "F.Cu") + (net 82) + (uuid "8f242cbe-e516-4294-9e95-102dfca32e03") + ) + (segment + (start 135.86 84.62) + (end 133.66 84.62) + (width 0.5) + (layer "F.Cu") + (net 82) + (uuid "e2644f06-34ef-485e-bcdc-6479c45f37e5") + ) + (segment + (start 138.26 80.22) + (end 138.26 82.22) + (width 0.5) + (layer "F.Cu") + (net 82) + (uuid "e3928266-e048-4470-b181-6efdeb74f6ac") + ) + (segment + (start 133.66 84.62) + (end 133.66 88.22) + (width 0.5) + (layer "F.Cu") + (net 82) + (uuid "f5d44d24-d35a-4086-847f-52ec4c2290fe") + ) + (segment + (start 115.06 86.42) + (end 115.326667 86.153333) + (width 1) + (layer "F.Cu") + (net 83) + (uuid "26246438-5269-4863-b9ed-a3cedc553d17") + ) + (segment + (start 115.326667 86.153333) + (end 115.326667 84.1525) + (width 1) + (layer "F.Cu") + (net 83) + (uuid "7da9897d-582c-430d-9409-7b452c50e9f5") + ) + (segment + (start 122.96 95.89) + (end 117.13 95.89) + (width 0.5) + (layer "F.Cu") + (net 83) + (uuid "a49ea776-6e77-4d40-83dd-7bcc2959e146") + ) + (segment + (start 117.13 95.89) + (end 115.06 93.82) + (width 0.5) + (layer "F.Cu") + (net 83) + (uuid "a8f3c678-6a47-499c-8486-3f17552d1ef5") + ) + (segment + (start 115.06 93.82) + (end 115.06 91.22) + (width 0.5) + (layer "F.Cu") + (net 83) + (uuid "c431fab0-fe5f-4165-a611-71eea33861d2") + ) + (segment + (start 115.06 91.22) + (end 115.06 86.42) + (width 1) + (layer "F.Cu") + (net 83) + (uuid "d0ea2843-8f69-43f0-b81f-40b7baace624") + ) + (segment + (start 122.96 97.16) + (end 100.6 97.16) + (width 0.5) + (layer "F.Cu") + (net 84) + (uuid "556b54fc-acf1-491f-a5d3-2a88df1e82bb") + ) + (segment + (start 97.26 90.62) + (end 97.26 84.336667) + (width 1) + (layer "F.Cu") + (net 84) + (uuid "60976f1f-1433-441e-bc5c-e55cefbf6b4d") + ) + (segment + (start 100.6 97.16) + (end 97.26 93.82) + (width 0.5) + (layer "F.Cu") + (net 84) + (uuid "9a704f9f-f6b4-4c61-90b4-e5517519657b") + ) + (segment + (start 97.26 93.82) + (end 97.26 90.62) + (width 0.5) + (layer "F.Cu") + (net 84) + (uuid "a88bf435-b69e-48a6-bbbe-55ca60c9840d") + ) + (segment + (start 97.26 84.336667) + (end 96.993333 84.07) + (width 1) + (layer "F.Cu") + (net 84) + (uuid "af9d534c-d8e6-486c-9926-fec045351da2") + ) + (segment + (start 78.66 84.27) + (end 78.66 90.62) + (width 1) + (layer "F.Cu") + (net 85) + (uuid "0532b136-a6db-4573-9e63-87adf42b82b9") + ) + (segment + (start 78.66 92.82) + (end 78.66 90.62) + (width 0.5) + (layer "F.Cu") + (net 85) + (uuid "61c185bf-2361-4625-88a6-9e84f4c517f4") + ) + (segment + (start 84.27 98.43) + (end 78.66 92.82) + (width 0.5) + (layer "F.Cu") + (net 85) + (uuid "7b504d30-09c7-4d01-9eaa-8ae45a82ad6f") + ) + (segment + (start 122.96 98.43) + (end 84.27 98.43) + (width 0.5) + (layer "F.Cu") + (net 85) + (uuid "9152511c-55b0-4d6d-838a-e6064b30ff82") + ) + (segment + (start 139.86 116.62) + (end 123.66 116.62) + (width 1) + (layer "F.Cu") + (net 86) + (uuid "04074261-1262-4af0-ac45-b09e5c274c92") + ) + (segment + (start 121.06 112.12) + (end 121.61 112.67) + (width 0.5) + (layer "F.Cu") + (net 86) + (uuid "1a596280-1f44-4d64-845f-a0e25f6806c9") + ) + (segment + (start 121.77 103.51) + (end 121.06 104.22) + (width 0.5) + (layer "F.Cu") + (net 86) + (uuid "355e7bb1-2025-45b9-8e89-2fe45c591ccc") + ) + (segment + (start 121.06 104.22) + (end 121.06 112.12) + (width 0.5) + (layer "F.Cu") + (net 86) + (uuid "379dd442-b277-49ea-915f-6730ae253bc7") + ) + (segment + (start 121.61 114.57) + (end 121.61 112.67) + (width 1) + (layer "F.Cu") + (net 86) + (uuid "42487c93-972c-492b-bd52-a99d90e1ef9a") + ) + (segment + (start 122.96 103.51) + (end 121.77 103.51) + (width 0.5) + (layer "F.Cu") + (net 86) + (uuid "5693e3be-8474-415a-a51b-30350eeba6eb") + ) + (segment + (start 123.66 116.62) + (end 121.61 114.57) + (width 1) + (layer "F.Cu") + (net 86) + (uuid "7c38f1f9-9b92-4a23-a699-5bf64454de0b") + ) + (segment + (start 102.86 104.22) + (end 102.86 106.22) + (width 0.5) + (layer "F.Cu") + (net 87) + (uuid "1293b1f3-7136-4817-83cd-4e8998258534") + ) + (segment + (start 104.84 102.24) + (end 102.86 104.22) + (width 0.5) + (layer "F.Cu") + (net 87) + (uuid "2ae116f6-ddaa-4405-8205-87469d1fa11b") + ) + (segment + (start 102.86 109.42) + (end 102.86 106.22) + (width 1) + (layer "F.Cu") + (net 87) + (uuid "6897e289-5345-43d2-8c4c-8e49b8d5604a") + ) + (segment + (start 122.96 102.24) + (end 104.84 102.24) + (width 0.5) + (layer "F.Cu") + (net 87) + (uuid "ab985b96-45c8-42e2-9a65-bfc259a72859") + ) + (segment + (start 103.276667 109.836667) + (end 102.86 109.42) + (width 1) + (layer "F.Cu") + (net 87) + (uuid "efe84bfc-1847-41c1-a236-5f6d70809c4b") + ) + (segment + (start 103.276667 112.47) + (end 103.276667 109.836667) + (width 1) + (layer "F.Cu") + (net 87) + (uuid "f167b330-73bc-415c-bae6-0eab1a8ce9a3") + ) + (segment + (start 84.943333 112.52) + (end 84.943333 106.503333) + (width 1) + (layer "F.Cu") + (net 88) + (uuid "47dcc495-a8db-47ab-b4ef-575d8d44299d") + ) + (segment + (start 84.66 103.42) + (end 84.66 106.22) + (width 0.5) + (layer "F.Cu") + (net 88) + (uuid "7cac688d-41d4-407a-87ab-f3df1d6042ac") + ) + (segment + (start 84.943333 106.503333) + (end 84.66 106.22) + (width 1) + (layer "F.Cu") + (net 88) + (uuid "85502d35-0044-4d6c-b4c9-7f714cd3b71c") + ) + (segment + (start 122.96 100.97) + (end 87.11 100.97) + (width 0.5) + (layer "F.Cu") + (net 88) + (uuid "94d3559d-8710-4cb7-a095-a2278f0678f2") + ) + (segment + (start 87.11 100.97) + (end 84.66 103.42) + (width 0.5) + (layer "F.Cu") + (net 88) + (uuid "a9e9f3f5-2ad4-4b22-ab1c-216df74a6cec") + ) + (segment + (start 79.55 101.425) + (end 81.275 99.7) + (width 0.5) + (layer "F.Cu") + (net 89) + (uuid "2f50366e-8c9f-4e10-a7bf-87ce865ea4e3") + ) + (segment + (start 67.055 101.425) + (end 79.55 101.425) + (width 0.5) + (layer "F.Cu") + (net 89) + (uuid "48d7c9ac-2d2b-4b23-b908-f1553af6d080") + ) + (segment + (start 65.86 106.22) + (end 65.86 102.62) + (width 0.5) + (layer "F.Cu") + (net 89) + (uuid "b195e3ce-4d62-4a81-ab20-f30dd6062540") + ) + (segment + (start 66.61 112.47) + (end 66.61 109.57) + (width 1) + (layer "F.Cu") + (net 89) + (uuid "c2d89444-96b8-41a9-bf9c-781c2e056b1d") + ) + (segment + (start 65.86 108.82) + (end 65.86 106.22) + (width 1) + (layer "F.Cu") + (net 89) + (uuid "d146c256-116f-422c-9887-db8142113621") + ) + (segment + (start 65.86 102.62) + (end 67.055 101.425) + (width 0.5) + (layer "F.Cu") + (net 89) + (uuid "d3181c11-2c7b-42e7-93ed-4eeaa4902343") + ) + (segment + (start 81.275 99.7) + (end 122.96 99.7) + (width 0.5) + (layer "F.Cu") + (net 89) + (uuid "d3a0dda4-7891-447f-954a-694a5e2d03d8") + ) + (segment + (start 66.61 109.57) + (end 65.86 108.82) + (width 1) + (layer "F.Cu") + (net 89) + (uuid "de38bbc5-32ec-4096-b567-09d3d5671360") + ) + (segment + (start 178.25 119.45) + (end 178.2 119.4) + (width 1) + (layer "F.Cu") + (net 90) + (uuid "09dc4a25-b02e-4df0-a432-d64bfc1a8689") + ) + (segment + (start 178.25 121.6) + (end 178.25 119.45) + (width 1) + (layer "F.Cu") + (net 90) + (uuid "22e1851b-b1cf-4bcd-85f3-9c254623f735") + ) + (segment + (start 171.46 109.64) + (end 173.44 109.64) + (width 1) + (layer "F.Cu") + (net 91) + (uuid "1e975750-0470-415d-8286-fd431a9e7141") + ) + (segment + (start 175.8 117.4) + (end 178.2 117.4) + (width 1) + (layer "F.Cu") + (net 91) + (uuid "57044b2b-25dd-491d-be5c-8552af8d42d9") + ) + (segment + (start 173.44 109.64) + (end 174.4 110.6) + (width 1) + (layer "F.Cu") + (net 91) + (uuid "6ebfd049-74c7-4b13-9c07-8512db7f4238") + ) + (segment + (start 174.4 110.6) + (end 174.4 116) + (width 1) + (layer "F.Cu") + (net 91) + (uuid "a1b136a8-750e-4711-a2c9-a0ee142d7331") + ) + (segment + (start 174.4 116) + (end 175.8 117.4) + (width 1) + (layer "F.Cu") + (net 91) + (uuid "f066a2cd-db4c-42c8-a698-1a1120843591") + ) + (zone + (net 0) + (net_name "") + (layers "F.Cu" "B.Cu" "In1.Cu" "In2.Cu") + (uuid "dd76ae48-3177-48b5-a9bc-082d2c1c6f6f") + (hatch edge 0.5) + (connect_pads + (clearance 0) + ) + (min_thickness 0.25) + (filled_areas_thickness no) + (keepout + (tracks not_allowed) + (vias not_allowed) + (pads not_allowed) + (copperpour not_allowed) + (footprints allowed) + ) + (placement + (enabled no) + (sheetname "/") + ) + (fill + (thermal_gap 0.5) + (thermal_bridge_width 0.5) + ) + (polygon + (pts + (xy 147.06 57.22) (xy 147.06 64.02) (xy 173.06 64.02) (xy 173.06 57.22) + ) + ) + ) + (zone + (net 1) + (net_name "GND") + (layers "F.Cu" "In1.Cu") + (uuid "13987459-1369-402d-b675-1b4078bbb9db") + (hatch edge 0.5) + (connect_pads + (clearance 0.5) + ) + (min_thickness 0.25) + (filled_areas_thickness no) + (fill yes + (thermal_gap 0.5) + (thermal_bridge_width 0.5) + ) + (polygon + (pts + (xy 54.72 55.22) (xy 205.06 54.62) (xy 204.66 142.62) (xy 55.12 142.02) + ) + ) + (filled_polygon + (layer "F.Cu") + (pts + (xy 147.003039 57.480185) (xy 147.048794 57.532989) (xy 147.06 57.5845) (xy 147.06 64.02) (xy 148.687138 64.02) + (xy 148.754177 64.039685) (xy 148.799932 64.092489) (xy 148.809876 64.161647) (xy 148.780851 64.225203) + (xy 148.774819 64.231681) (xy 147.900537 65.105962) (xy 147.900536 65.105964) (xy 147.891516 65.119464) + (xy 147.891514 65.119467) (xy 147.891513 65.119466) (xy 147.877785 65.140013) (xy 147.824174 65.184819) + (xy 147.787935 65.194414) (xy 147.727516 65.200908) (xy 147.592671 65.251202) (xy 147.592664 65.251206) + (xy 147.477455 65.337452) (xy 147.477453 65.337454) (xy 147.441164 65.385929) (xy 147.385229 65.427799) + (xy 147.315538 65.432782) (xy 147.254218 65.399297) (xy 146.844209 64.989289) (xy 146.844206 64.989285) + (xy 146.844206 64.989286) (xy 146.837139 64.982219) (xy 146.837139 64.982218) (xy 146.697782 64.842861) + (xy 146.697781 64.84286) (xy 146.69778 64.842859) (xy 146.53392 64.733371) (xy 146.533907 64.733364) + (xy 146.420104 64.686226) (xy 146.396245 64.676344) (xy 146.351836 64.657949) (xy 146.34792 64.65717) + (xy 146.338738 64.653524) (xy 146.315122 64.63506) (xy 146.290058 64.61863) (xy 146.28789 64.613768) + (xy 146.283695 64.610488) (xy 146.273811 64.582188) (xy 146.261608 64.554815) (xy 146.26098 64.545448) + (xy 146.260658 64.544525) (xy 146.260861 64.543675) (xy 146.2605 64.538277) (xy 146.2605 63.880132) + (xy 146.27896 63.815036) (xy 146.294814 63.789334) (xy 146.349999 63.622797) (xy 146.3605 63.520009) + (xy 146.360499 62.519992) (xy 146.356222 62.478127) (xy 146.349999 62.417203) (xy 146.349998 62.4172) + (xy 146.339136 62.38442) (xy 146.294814 62.250666) (xy 146.283429 62.232207) (xy 146.27896 62.224961) + (xy 146.2605 62.159867) (xy 146.2605 61.484866) (xy 146.278962 61.419768) (xy 146.282314 61.414334) + (xy 146.337499 61.247797) (xy 146.348 61.145009) (xy 146.347999 60.094992) (xy 146.347781 60.092861) + (xy 146.337499 59.992203) (xy 146.337498 59.9922) (xy 146.323734 59.950664) (xy 146.282314 59.825666) + (xy 146.190212 59.676344) (xy 146.066156 59.552288) (xy 145.916834 59.460186) (xy 145.750297 59.405001) + (xy 145.750295 59.405) (xy 145.64751 59.3945) (xy 144.872498 59.3945) (xy 144.87248 59.394501) (xy 144.769703 59.405) + (xy 144.7697 59.405001) (xy 144.603168 59.460185) (xy 144.603163 59.460187) (xy 144.453842 59.552289) + (xy 144.329788 59.676343) (xy 144.329783 59.676349) (xy 144.327741 59.679661) (xy 144.325747 59.681453) + (xy 144.325307 59.682011) (xy 144.325211 59.681935) (xy 144.275791 59.726383) (xy 144.206828 59.737602) + (xy 144.142747 59.709755) (xy 144.116668 59.679656) (xy 144.114819 59.676659) (xy 144.114816 59.676655) + (xy 143.990845 59.552684) (xy 143.841624 59.460643) (xy 143.841619 59.460641) (xy 143.675197 59.405494) + (xy 143.67519 59.405493) (xy 143.572486 59.395) (xy 143.435 59.395) (xy 143.435 60.496) (xy 143.415315 60.563039) + (xy 143.362511 60.608794) (xy 143.311 60.62) (xy 143.185 60.62) (xy 143.185 60.746) (xy 143.165315 60.813039) + (xy 143.112511 60.858794) (xy 143.061 60.87) (xy 142.097501 60.87) (xy 142.097501 61.144986) (xy 142.107994 61.247697) + (xy 142.163141 61.414119) (xy 142.163143 61.414124) (xy 142.255184 61.563345) (xy 142.379154 61.687315) + (xy 142.474203 61.745942) (xy 142.496264 61.77047) (xy 142.519111 61.794255) (xy 142.519517 61.796322) + (xy 142.520927 61.79789) (xy 142.526226 61.830455) (xy 142.532587 61.862813) (xy 142.531811 61.864771) + (xy 142.53215 61.866853) (xy 142.519005 61.897104) (xy 142.506859 61.927773) (xy 142.504928 61.929501) + (xy 142.504306 61.930935) (xy 142.481405 61.952222) (xy 142.477872 61.954757) (xy 142.441344 61.977288) + (xy 142.428293 61.990338) (xy 142.420069 61.996241) (xy 142.396264 62.004578) (xy 142.374128 62.016666) + (xy 142.356271 62.018585) (xy 142.354127 62.019337) (xy 142.352623 62.018978) (xy 142.34777 62.0195) + (xy 141.028078 62.0195) (xy 140.961039 61.999815) (xy 140.915284 61.947011) (xy 140.90534 61.877853) + (xy 140.906461 61.871307) (xy 140.9105 61.851003) (xy 140.9105 61.648996) (xy 140.910499 61.648992) + (xy 140.889726 61.544558) (xy 140.871091 61.450873) (xy 140.793786 61.264244) (xy 140.793784 61.264241) + (xy 140.793782 61.264237) (xy 140.681558 61.096281) (xy 140.538718 60.953441) (xy 140.370762 60.841217) + (xy 140.370752 60.841212) (xy 140.184127 60.763909) (xy 140.184119 60.763907) (xy 139.986007 60.7245) + (xy 139.986003 60.7245) (xy 139.333997 60.7245) (xy 139.333992 60.7245) (xy 139.13588 60.763907) + (xy 139.135872 60.763909) (xy 138.949247 60.841212) (xy 138.949237 60.841217) (xy 138.781281 60.953441) + (xy 138.638441 61.096281) (xy 138.526217 61.264237) (xy 138.526212 61.264247) (xy 138.448909 61.450872) + (xy 138.448907 61.45088) (xy 138.4095 61.648992) (xy 138.4095 61.851007) (xy 138.448907 62.049119) + (xy 138.448909 62.049127) (xy 138.526213 62.235755) (xy 138.579904 62.316109) (xy 138.600782 62.382787) + (xy 138.582297 62.450167) (xy 138.579908 62.453883) (xy 138.574244 62.462361) (xy 138.526213 62.534244) + (xy 138.448909 62.720872) (xy 138.448907 62.72088) (xy 138.4095 62.918992) (xy 138.4095 63.121007) + (xy 138.448907 63.319119) (xy 138.44891 63.319131) (xy 138.482547 63.400338) (xy 138.490016 63.469807) + (xy 138.470405 63.514864) (xy 138.470895 63.515132) (xy 138.46791 63.520596) (xy 138.46726 63.522092) + (xy 138.466646 63.522911) (xy 138.466645 63.522913) (xy 138.416403 63.65762) (xy 138.416401 63.657627) + (xy 138.41 63.717155) (xy 138.41 64.04) (xy 139.294134 64.04) (xy 139.318326 64.042383) (xy 139.321123 64.042939) + (xy 139.333995 64.045499) (xy 139.333996 64.0455) (xy 139.333997 64.0455) (xy 139.37417 64.0455) + (xy 139.359925 64.059745) (xy 139.310556 64.145255) (xy 139.285 64.24063) (xy 139.285 64.33937) + (xy 139.310556 64.434745) (xy 139.359925 64.520255) (xy 139.37967 64.54) (xy 138.41 64.54) (xy 138.41 64.862844) + (xy 138.416401 64.922372) (xy 138.416403 64.922379) (xy 138.466645 65.057086) (xy 138.466649 65.057093) + (xy 138.552809 65.172187) (xy 138.552812 65.17219) (xy 138.667906 65.25835) (xy 138.667913 65.258354) + (xy 138.80262 65.308596) (xy 138.802627 65.308598) (xy 138.862155 65.314999) (xy 138.862172 65.315) + (xy 139.41 65.315) (xy 139.41 64.57033) (xy 139.429745 64.590075) (xy 139.515255 64.639444) (xy 139.61063 64.665) + (xy 139.70937 64.665) (xy 139.804745 64.639444) (xy 139.890255 64.590075) (xy 139.91 64.57033) (xy 139.91 65.315) + (xy 140.457828 65.315) (xy 140.457844 65.314999) (xy 140.517372 65.308598) (xy 140.517379 65.308596) + (xy 140.652086 65.258354) (xy 140.652093 65.25835) (xy 140.767187 65.17219) (xy 140.76719 65.172187) + (xy 140.85335 65.057093) (xy 140.853354 65.057086) (xy 140.903596 64.922379) (xy 140.903598 64.922372) + (xy 140.909999 64.862844) (xy 140.91 64.862827) (xy 140.91 64.54) (xy 139.94033 64.54) (xy 139.960075 64.520255) + (xy 140.009444 64.434745) (xy 140.035 64.33937) (xy 140.035 64.24063) (xy 140.009444 64.145255) + (xy 139.960075 64.059745) (xy 139.94583 64.0455) (xy 139.986004 64.0455) (xy 140.001673 64.042383) + (xy 140.025866 64.04) (xy 140.923983 64.04) (xy 140.954504 64.023334) (xy 140.980862 64.0205) (xy 142.34777 64.0205) + (xy 142.414809 64.040185) (xy 142.435451 64.056819) (xy 142.441344 64.062712) (xy 142.590666 64.154814) + (xy 142.703273 64.192128) (xy 142.760718 64.231901) (xy 142.787541 64.296417) (xy 142.775226 64.365192) + (xy 142.727683 64.416392) (xy 142.703273 64.42754) (xy 142.60338 64.460641) (xy 142.603375 64.460643) + (xy 142.454154 64.552684) (xy 142.330184 64.676654) (xy 142.238143 64.825875) (xy 142.238141 64.82588) + (xy 142.182994 64.992302) (xy 142.182993 64.992309) (xy 142.1725 65.095013) (xy 142.1725 65.37) + (xy 143.136 65.37) (xy 143.203039 65.389685) (xy 143.248794 65.442489) (xy 143.26 65.494) (xy 143.26 65.746) + (xy 143.240315 65.813039) (xy 143.187511 65.858794) (xy 143.136 65.87) (xy 142.172501 65.87) (xy 142.172501 66.0955) + (xy 142.152816 66.162539) (xy 142.100012 66.208294) (xy 142.048501 66.2195) (xy 141.364675 66.2195) + (xy 141.364655 66.219499) (xy 141.358541 66.219499) (xy 141.16146 66.219499) (xy 141.161457 66.219499) + (xy 140.968172 66.257946) (xy 140.968164 66.257948) (xy 140.786088 66.333366) (xy 140.786079 66.333371) + (xy 140.622219 66.442859) (xy 140.622215 66.442862) (xy 139.942074 67.123005) (xy 139.73472 67.330359) + (xy 139.734718 67.330361) (xy 139.693129 67.37195) (xy 139.595359 67.469719) (xy 139.485871 67.63358) + (xy 139.485866 67.633589) (xy 139.445522 67.73099) (xy 139.443861 67.735001) (xy 139.410449 67.815664) + (xy 139.402071 67.857782) (xy 139.400209 67.867143) (xy 139.393635 67.90019) (xy 139.361248 67.9621) + (xy 139.300531 67.996672) (xy 139.230762 67.99293) (xy 139.184337 67.963676) (xy 139.103345 67.882684) + (xy 138.954124 67.790643) (xy 138.954119 67.790641) (xy 138.787697 67.735494) (xy 138.78769 67.735493) + (xy 138.684986 67.725) (xy 138.5475 67.725) (xy 138.5475 70.174999) (xy 138.684972 70.174999) (xy 138.684986 70.174998) + (xy 138.787697 70.164505) (xy 138.954119 70.109358) (xy 138.954124 70.109356) (xy 139.103345 70.017315) + (xy 139.160319 69.960342) (xy 139.221642 69.926857) (xy 139.291334 69.931841) (xy 139.347267 69.973713) + (xy 139.371684 70.039177) (xy 139.372 70.048023) (xy 139.372 70.814477) (xy 139.352315 70.881516) + (xy 139.299511 70.927271) (xy 139.230353 70.937215) (xy 139.166797 70.90819) (xy 139.160319 70.902158) + (xy 139.140845 70.882684) (xy 138.991624 70.790643) (xy 138.991619 70.790641) (xy 138.825197 70.735494) + (xy 138.82519 70.735493) (xy 138.722486 70.725) (xy 138.585 70.725) (xy 138.585 73.174999) (xy 138.722472 73.174999) + (xy 138.722486 73.174998) (xy 138.825197 73.164505) (xy 138.991619 73.109358) (xy 138.991624 73.109356) + (xy 139.140845 73.017315) (xy 139.264818 72.893342) (xy 139.266665 72.890348) (xy 139.268469 72.888724) + (xy 139.269298 72.887677) (xy 139.269476 72.887818) (xy 139.31861 72.843621) (xy 139.387573 72.832396) + (xy 139.451656 72.860236) (xy 139.477743 72.890341) (xy 139.479788 72.893656) (xy 139.603844 73.017712) + (xy 139.753166 73.109814) (xy 139.919703 73.164999) (xy 140.022491 73.1755) (xy 140.797508 73.175499) + (xy 140.797516 73.175498) (xy 140.797519 73.175498) (xy 140.853802 73.169748) (xy 140.900297 73.164999) + (xy 141.066834 73.109814) (xy 141.216156 73.017712) (xy 141.340212 72.893656) (xy 141.432314 72.744334) + (xy 141.487499 72.577797) (xy 141.496981 72.484986) (xy 142.210001 72.484986) (xy 142.220494 72.587697) + (xy 142.275641 72.754119) (xy 142.275643 72.754124) (xy 142.367684 72.903345) (xy 142.491654 73.027315) + (xy 142.640875 73.119356) (xy 142.64088 73.119358) (xy 142.807302 73.174505) (xy 142.807309 73.174506) + (xy 142.910019 73.184999) (xy 143.047499 73.184999) (xy 143.0475 73.184998) (xy 143.0475 72.21) + (xy 142.210001 72.21) (xy 142.210001 72.484986) (xy 141.496981 72.484986) (xy 141.498 72.475009) + (xy 141.497999 71.946041) (xy 141.497999 71.435013) (xy 142.21 71.435013) (xy 142.21 71.71) (xy 143.0475 71.71) + (xy 143.0475 70.735) (xy 142.910027 70.735) (xy 142.910012 70.735001) (xy 142.807302 70.745494) + (xy 142.64088 70.800641) (xy 142.640875 70.800643) (xy 142.491654 70.892684) (xy 142.367684 71.016654) + (xy 142.275643 71.165875) (xy 142.275641 71.16588) (xy 142.220494 71.332302) (xy 142.220493 71.332309) + (xy 142.21 71.435013) (xy 141.497999 71.435013) (xy 141.497999 71.431864) (xy 141.497999 71.424998) + (xy 141.497998 71.42498) (xy 141.487499 71.322203) (xy 141.487498 71.3222) (xy 141.466251 71.258081) + (xy 141.432314 71.155666) (xy 141.41852 71.133303) (xy 141.391461 71.089432) (xy 141.373 71.024336) + (xy 141.373 69.814866) (xy 141.391462 69.749768) (xy 141.394814 69.744334) (xy 141.449999 69.577797) + (xy 141.4605 69.475009) (xy 141.4605 69.474986) (xy 142.210001 69.474986) (xy 142.220494 69.577697) + (xy 142.275641 69.744119) (xy 142.275643 69.744124) (xy 142.367684 69.893345) (xy 142.491654 70.017315) + (xy 142.640875 70.109356) (xy 142.64088 70.109358) (xy 142.807302 70.164505) (xy 142.807309 70.164506) + (xy 142.910019 70.174999) (xy 143.047499 70.174999) (xy 143.0475 70.174998) (xy 143.0475 69.2) (xy 142.210001 69.2) + (xy 142.210001 69.474986) (xy 141.4605 69.474986) (xy 141.460499 68.95) (xy 141.460499 68.485783) + (xy 141.469145 68.456336) (xy 141.475667 68.426356) (xy 141.47942 68.421342) (xy 141.480183 68.418744) + (xy 141.496813 68.398107) (xy 141.638103 68.256817) (xy 141.699425 68.223334) (xy 141.725783 68.2205) + (xy 142.093581 68.2205) (xy 142.16062 68.240185) (xy 142.206375 68.292989) (xy 142.216939 68.357103) + (xy 142.21 68.425013) (xy 142.21 68.7) (xy 143.1735 68.7) (xy 143.240539 68.719685) (xy 143.286294 68.772489) + (xy 143.2975 68.824) (xy 143.2975 68.95) (xy 143.4235 68.95) (xy 143.490539 68.969685) (xy 143.536294 69.022489) + (xy 143.5475 69.074) (xy 143.5475 70.174999) (xy 143.684972 70.174999) (xy 143.684986 70.174998) + (xy 143.787697 70.164505) (xy 143.954119 70.109358) (xy 143.95413 70.109353) (xy 144.070403 70.037635) + (xy 144.137795 70.019194) (xy 144.204459 70.040116) (xy 144.249228 70.093758) (xy 144.2595 70.143173) + (xy 144.2595 70.766826) (xy 144.239815 70.833865) (xy 144.187011 70.87962) (xy 144.117853 70.889564) + (xy 144.070403 70.872365) (xy 143.954124 70.800643) (xy 143.954119 70.800641) (xy 143.787697 70.745494) + (xy 143.78769 70.745493) (xy 143.684986 70.735) (xy 143.5475 70.735) (xy 143.5475 73.184999) (xy 143.684972 73.184999) + (xy 143.684986 73.184998) (xy 143.787697 73.174505) (xy 143.954119 73.119358) (xy 143.954124 73.119356) + (xy 144.103345 73.027315) (xy 144.227318 72.903342) (xy 144.229165 72.900348) (xy 144.230969 72.898724) + (xy 144.231798 72.897677) (xy 144.231976 72.897818) (xy 144.28111 72.853621) (xy 144.350073 72.842396) + (xy 144.414156 72.870236) (xy 144.440243 72.900341) (xy 144.442288 72.903656) (xy 144.566344 73.027712) + (xy 144.715666 73.119814) (xy 144.882203 73.174999) (xy 144.984991 73.1855) (xy 145.760008 73.185499) + (xy 145.760016 73.185498) (xy 145.760019 73.185498) (xy 145.857892 73.1755) (xy 145.862797 73.174999) + (xy 146.029334 73.119814) (xy 146.178656 73.027712) (xy 146.302712 72.903656) (xy 146.394814 72.754334) + (xy 146.449999 72.587797) (xy 146.4605 72.485009) (xy 146.460499 71.434992) (xy 146.460179 71.431864) + (xy 146.449999 71.332203) (xy 146.449998 71.3322) (xy 146.44354 71.31271) (xy 146.394814 71.165666) + (xy 146.391458 71.160225) (xy 146.373 71.095134) (xy 146.373 70.1245) (xy 146.392685 70.057461) + (xy 146.445489 70.011706) (xy 146.497 70.0005) (xy 147.783783 70.0005) (xy 147.850822 70.020185) + (xy 147.85666 70.024175) (xy 147.936734 70.082353) (xy 148.006453 70.117877) (xy 148.088172 70.159515) + (xy 148.138968 70.20749) (xy 148.155763 70.275311) (xy 148.133225 70.341446) (xy 148.088172 70.380485) + (xy 147.936733 70.457647) (xy 147.84479 70.524447) (xy 147.775582 70.574731) (xy 147.77558 70.574733) + (xy 147.775579 70.574733) (xy 147.634733 70.715579) (xy 147.634733 70.71558) (xy 147.634731 70.715582) + (xy 147.595182 70.770016) (xy 147.517647 70.876733) (xy 147.427213 71.054219) (xy 147.365661 71.243656) + (xy 147.365661 71.243659) (xy 147.336943 71.42498) (xy 147.3345 71.440403) (xy 147.3345 71.639597) + (xy 147.342306 71.68888) (xy 147.365661 71.83634) (xy 147.365661 71.836343) (xy 147.427213 72.02578) + (xy 147.481317 72.131964) (xy 147.517647 72.203266) (xy 147.634731 72.364418) (xy 147.775582 72.505269) + (xy 147.936734 72.622353) (xy 147.965575 72.637048) (xy 148.088172 72.699515) (xy 148.138968 72.74749) + (xy 148.155763 72.815311) (xy 148.133225 72.881446) (xy 148.088172 72.920485) (xy 147.936733 72.997647) + (xy 147.895353 73.027712) (xy 147.775582 73.114731) (xy 147.77558 73.114733) (xy 147.775579 73.114733) + (xy 147.634733 73.255579) (xy 147.634733 73.25558) (xy 147.634731 73.255582) (xy 147.621088 73.27436) + (xy 147.517647 73.416733) (xy 147.427213 73.594219) (xy 147.365661 73.783656) (xy 147.365661 73.783659) + (xy 147.3345 73.980403) (xy 147.3345 74.15277) (xy 147.314815 74.219809) (xy 147.298181 74.240451) + (xy 140.077048 81.461583) (xy 140.061345 81.485086) (xy 140.037042 81.521459) (xy 139.994919 81.584499) + (xy 139.994912 81.584511) (xy 139.938343 81.721082) (xy 139.93834 81.721092) (xy 139.9095 81.866079) + (xy 139.9095 83.177769) (xy 139.889815 83.244808) (xy 139.873181 83.26545) (xy 134.591728 88.546902) + (xy 134.530405 88.580387) (xy 134.460713 88.575403) (xy 134.40478 88.533531) (xy 134.380363 88.468067) + (xy 134.382429 88.435033) (xy 134.4105 88.293918) (xy 134.4105 86.279593) (xy 134.430185 86.212554) + (xy 134.4725 86.172206) (xy 134.50901 86.151127) (xy 134.634612 86.078611) (xy 134.816661 85.938919) + (xy 134.816665 85.938914) (xy 134.81667 85.938911) (xy 134.978911 85.77667) (xy 134.978914 85.776665) + (xy 134.978919 85.776661) (xy 135.118611 85.594612) (xy 135.212206 85.432499) (xy 135.262773 85.384284) + (xy 135.319593 85.3705) (xy 135.93392 85.3705) (xy 136.031462 85.351096) (xy 136.078913 85.341658) + (xy 136.215495 85.285084) (xy 136.289703 85.2355) (xy 136.328776 85.209392) (xy 136.338412 85.202955) + (xy 136.338412 85.202954) (xy 136.338416 85.202952) (xy 138.842952 82.698415) (xy 138.870205 82.657627) + (xy 138.925084 82.575495) (xy 138.961511 82.487553) (xy 138.981659 82.438912) (xy 139.009605 82.298416) + (xy 139.0105 82.293918) (xy 139.0105 82.066869) (xy 139.030185 81.99983) (xy 139.082989 81.954075) + (xy 139.095486 81.949166) (xy 139.229334 81.904814) (xy 139.378656 81.812712) (xy 139.502712 81.688656) + (xy 139.594814 81.539334) (xy 139.649999 81.372797) (xy 139.6605 81.270009) (xy 139.660499 79.169992) + (xy 139.654375 79.110046) (xy 139.649999 79.067203) (xy 139.649998 79.0672) (xy 139.638619 79.032861) + (xy 139.594814 78.900666) (xy 139.502712 78.751344) (xy 139.378656 78.627288) (xy 139.229334 78.535186) + (xy 139.062797 78.480001) (xy 139.062795 78.48) (xy 138.96001 78.4695) (xy 137.559998 78.4695) (xy 137.559981 78.469501) + (xy 137.457203 78.48) (xy 137.4572 78.480001) (xy 137.290668 78.535185) (xy 137.290663 78.535187) + (xy 137.141342 78.627289) (xy 137.017289 78.751342) (xy 136.925187 78.900663) (xy 136.925185 78.900668) + (xy 136.906194 78.95798) (xy 136.870001 79.067203) (xy 136.870001 79.067204) (xy 136.87 79.067204) + (xy 136.8595 79.169983) (xy 136.8595 81.270001) (xy 136.859501 81.270018) (xy 136.87 81.372796) + (xy 136.870001 81.372799) (xy 136.925185 81.539331) (xy 136.925187 81.539336) (xy 136.953051 81.584511) + (xy 137.017288 81.688656) (xy 137.141344 81.812712) (xy 137.290666 81.904814) (xy 137.290668 81.904814) + (xy 137.29521 81.907616) (xy 137.341935 81.959563) (xy 137.353158 82.028526) (xy 137.325315 82.092608) + (xy 137.317795 82.100836) (xy 135.585451 83.833181) (xy 135.558523 83.847884) (xy 135.532705 83.864477) + (xy 135.526504 83.865368) (xy 135.524128 83.866666) (xy 135.49777 83.8695) (xy 135.319593 83.8695) + (xy 135.252554 83.849815) (xy 135.212206 83.8075) (xy 135.166174 83.72777) (xy 135.118611 83.645388) + (xy 135.118608 83.645385) (xy 135.118607 83.645382) (xy 135.01174 83.506112) (xy 134.978919 83.463339) + (xy 134.978918 83.463338) (xy 134.978911 83.46333) (xy 134.81667 83.301089) (xy 134.816661 83.301081) + (xy 134.634617 83.161392) (xy 134.62813 83.157647) (xy 134.4725 83.067794) (xy 134.43589 83.046657) + (xy 134.435876 83.04665) (xy 134.223887 82.958842) (xy 134.194922 82.951081) (xy 134.002238 82.899452) + (xy 133.964215 82.894446) (xy 133.774741 82.8695) (xy 133.774734 82.8695) (xy 133.545266 82.8695) + (xy 133.545258 82.8695) (xy 133.328715 82.898009) (xy 133.317762 82.899452) (xy 133.265931 82.91334) + (xy 133.096112 82.958842) (xy 132.884123 83.04665) (xy 132.884109 83.046657) (xy 132.685382 83.161392) + (xy 132.503338 83.301081) (xy 132.341081 83.463338) (xy 132.201392 83.645382) (xy 132.086657 83.844109) + (xy 132.08665 83.844123) (xy 131.999829 84.05373) (xy 131.998842 84.056113) (xy 131.954405 84.221958) + (xy 131.939453 84.277759) (xy 131.939451 84.27777) (xy 131.9095 84.505258) (xy 131.9095 84.734741) + (xy 131.931013 84.89814) (xy 131.939452 84.962238) (xy 131.994949 85.169358) (xy 131.998842 85.183887) + (xy 132.08665 85.395876) (xy 132.086657 85.39589) (xy 132.130259 85.471411) (xy 132.190401 85.575581) + (xy 132.201392 85.594617) (xy 132.341081 85.776661) (xy 132.341089 85.77667) (xy 132.50333 85.938911) + (xy 132.503338 85.938918) (xy 132.685382 86.078607) (xy 132.685385 86.078608) (xy 132.685388 86.078611) + (xy 132.810966 86.151113) (xy 132.8475 86.172206) (xy 132.895716 86.222773) (xy 132.9095 86.279593) + (xy 132.9095 87.85777) (xy 132.889815 87.924809) (xy 132.873181 87.945451) (xy 126.985451 93.833181) + (xy 126.924128 93.866666) (xy 126.89777 93.8695) (xy 124.97123 93.8695) (xy 124.904191 93.849815) + (xy 124.858436 93.797011) (xy 124.848492 93.727853) (xy 124.877517 93.664297) (xy 124.883549 93.657819) + (xy 125.31795 93.223418) (xy 125.317951 93.223416) (xy 125.400084 93.100495) (xy 125.401113 93.098012) + (xy 125.425592 93.038913) (xy 125.456658 92.963913) (xy 125.473105 92.88123) (xy 125.4855 92.81892) + (xy 125.4855 91.191248) (xy 125.505185 91.124209) (xy 125.536496 91.093471) (xy 125.535487 91.092195) + (xy 125.541154 91.087713) (xy 125.541153 91.087713) (xy 125.541156 91.087712) (xy 125.665212 90.963656) + (xy 125.757314 90.814334) (xy 125.812499 90.647797) (xy 125.823 90.545009) (xy 125.822999 89.494992) + (xy 125.812499 89.392203) (xy 125.757314 89.225666) (xy 125.753958 89.220225) (xy 125.7355 89.155134) + (xy 125.7355 88.796458) (xy 125.735499 88.796457) (xy 125.727661 88.757049) (xy 125.697052 88.603165) + (xy 125.621632 88.421086) (xy 125.621628 88.421079) (xy 125.51214 88.257219) (xy 125.512137 88.257215) + (xy 123.777423 86.522502) (xy 123.693793 86.438872) (xy 125.6095 86.438872) (xy 125.6095 86.701127) + (xy 125.633812 86.885783) (xy 125.64373 86.961116) (xy 125.690326 87.135016) (xy 125.711602 87.214418) + (xy 125.711605 87.214428) (xy 125.811953 87.45669) (xy 125.811958 87.4567) (xy 125.943075 87.683803) + (xy 126.102718 87.891851) (xy 126.102726 87.89186) (xy 126.28814 88.077274) (xy 126.288148 88.077281) + (xy 126.496196 88.236924) (xy 126.723299 88.368041) (xy 126.723309 88.368046) (xy 126.964782 88.468067) + (xy 126.965581 88.468398) (xy 127.218884 88.53627) (xy 127.47888 88.5705) (xy 127.478887 88.5705) + (xy 127.741113 88.5705) (xy 127.74112 88.5705) (xy 128.001116 88.53627) (xy 128.254419 88.468398) + (xy 128.448468 88.38802) (xy 128.49669 88.368046) (xy 128.496691 88.368045) (xy 128.496697 88.368043) + (xy 128.723803 88.236924) (xy 128.931851 88.077282) (xy 128.931855 88.077277) (xy 128.93186 88.077274) + (xy 129.117274 87.89186) (xy 129.117277 87.891855) (xy 129.117282 87.891851) (xy 129.276924 87.683803) + (xy 129.408043 87.456697) (xy 129.42982 87.404124) (xy 129.487122 87.265783) (xy 129.508398 87.214419) + (xy 129.57627 86.961116) (xy 129.6105 86.70112) (xy 129.6105 86.43888) (xy 129.57627 86.178884) + (xy 129.508398 85.925581) (xy 129.499044 85.902999) (xy 129.408046 85.683309) (xy 129.408041 85.683299) + (xy 129.276924 85.456196) (xy 129.142365 85.280838) (xy 129.117282 85.248149) (xy 129.117281 85.248148) + (xy 129.117274 85.24814) (xy 128.93186 85.062726) (xy 128.931851 85.062718) (xy 128.723803 84.903075) + (xy 128.4967 84.771958) (xy 128.49669 84.771953) (xy 128.254428 84.671605) (xy 128.254421 84.671603) + (xy 128.254419 84.671602) (xy 128.001116 84.60373) (xy 127.943339 84.596123) (xy 127.741127 84.5695) + (xy 127.74112 84.5695) (xy 127.47888 84.5695) (xy 127.478872 84.5695) (xy 127.247772 84.599926) + (xy 127.218884 84.60373) (xy 127.091744 84.637797) (xy 126.965581 84.671602) (xy 126.965571 84.671605) + (xy 126.723309 84.771953) (xy 126.723299 84.771958) (xy 126.496196 84.903075) (xy 126.288148 85.062718) + (xy 126.102718 85.248148) (xy 125.943075 85.456196) (xy 125.811958 85.683299) (xy 125.811953 85.683309) + (xy 125.711605 85.925571) (xy 125.711602 85.925581) (xy 125.64552 86.172206) (xy 125.64373 86.178885) + (xy 125.6095 86.438872) (xy 123.693793 86.438872) (xy 123.078677 85.823757) (xy 123.045192 85.762434) + (xy 123.050176 85.692743) (xy 123.067979 85.660595) (xy 123.118611 85.594612) (xy 123.233344 85.395888) + (xy 123.321158 85.183887) (xy 123.380548 84.962238) (xy 123.4105 84.734734) (xy 123.4105 84.505266) + (xy 123.380548 84.277762) (xy 123.321158 84.056113) (xy 123.24386 83.8695) (xy 123.233349 83.844123) + (xy 123.233346 83.844117) (xy 123.233344 83.844112) (xy 123.118611 83.645388) (xy 123.118608 83.645385) + (xy 123.118607 83.645382) (xy 123.01174 83.506112) (xy 122.978919 83.463339) (xy 122.978918 83.463338) + (xy 122.978911 83.46333) (xy 122.81667 83.301089) (xy 122.816661 83.301081) (xy 122.634617 83.161392) + (xy 122.634612 83.161389) (xy 122.472499 83.067793) (xy 122.424284 83.017227) (xy 122.4105 82.960407) + (xy 122.4105 80.382229) (xy 122.430185 80.31519) (xy 122.446819 80.294548) (xy 125.734548 77.006819) + (xy 125.795871 76.973334) (xy 125.822229 76.9705) (xy 136.735501 76.9705) (xy 136.80254 76.990185) + (xy 136.848295 77.042989) (xy 136.859501 77.0945) (xy 136.859501 77.270018) (xy 136.87 77.372796) + (xy 136.870001 77.372799) (xy 136.909892 77.493181) (xy 136.925186 77.539334) (xy 137.017288 77.688656) + (xy 137.141344 77.812712) (xy 137.290666 77.904814) (xy 137.457203 77.959999) (xy 137.559991 77.9705) + (xy 138.960008 77.970499) (xy 139.062797 77.959999) (xy 139.229334 77.904814) (xy 139.378656 77.812712) + (xy 139.502712 77.688656) (xy 139.594814 77.539334) (xy 139.649999 77.372797) (xy 139.6605 77.270009) + (xy 139.660499 75.169992) (xy 139.649999 75.067203) (xy 139.594814 74.900666) (xy 139.502712 74.751344) + (xy 139.378656 74.627288) (xy 139.229334 74.535186) (xy 139.062797 74.480001) (xy 139.062795 74.48) + (xy 138.96001 74.4695) (xy 137.559998 74.4695) (xy 137.559981 74.469501) (xy 137.457203 74.48) (xy 137.4572 74.480001) + (xy 137.290668 74.535185) (xy 137.290663 74.535187) (xy 137.141342 74.627289) (xy 137.017289 74.751342) + (xy 136.925187 74.900663) (xy 136.925185 74.900668) (xy 136.923209 74.906631) (xy 136.870001 75.067203) + (xy 136.870001 75.067204) (xy 136.87 75.067204) (xy 136.8595 75.169983) (xy 136.8595 75.3455) (xy 136.839815 75.412539) + (xy 136.787011 75.458294) (xy 136.7355 75.4695) (xy 125.386076 75.4695) (xy 125.357242 75.475234) + (xy 125.357243 75.475235) (xy 125.241093 75.498339) (xy 125.241083 75.498342) (xy 125.161081 75.531479) + (xy 125.161082 75.53148) (xy 125.104506 75.554915) (xy 125.022814 75.6095) (xy 124.981582 75.637049) + (xy 124.981579 75.637052) (xy 121.077052 79.541578) (xy 121.077049 79.541581) (xy 121.037289 79.601086) + (xy 121.03729 79.601087) (xy 120.994914 79.664508) (xy 120.938343 79.801082) (xy 120.93834 79.801092) + (xy 120.9095 79.946079) (xy 120.9095 82.960407) (xy 120.889815 83.027446) (xy 120.8475 83.067794) + (xy 120.685382 83.161392) (xy 120.503338 83.301081) (xy 120.341081 83.463338) (xy 120.201392 83.645382) + (xy 120.086657 83.844109) (xy 120.08665 83.844123) (xy 119.999829 84.05373) (xy 119.998842 84.056113) + (xy 119.954405 84.221958) (xy 119.939453 84.277759) (xy 119.939451 84.27777) (xy 119.9095 84.505258) + (xy 119.9095 84.734741) (xy 119.931013 84.89814) (xy 119.939452 84.962238) (xy 119.994949 85.169358) + (xy 119.998842 85.183887) (xy 120.08665 85.395876) (xy 120.086657 85.39589) (xy 120.130259 85.471411) + (xy 120.190401 85.575581) (xy 120.201392 85.594617) (xy 120.341081 85.776661) (xy 120.341089 85.77667) + (xy 120.50333 85.938911) (xy 120.503338 85.938918) (xy 120.657266 86.057033) (xy 120.667025 86.06975) + (xy 120.678325 86.077595) (xy 120.696337 86.107948) (xy 120.707892 86.135839) (xy 120.707895 86.135847) + (xy 120.773364 86.293906) (xy 120.773371 86.293919) (xy 120.811587 86.351113) (xy 120.882861 86.457782) + (xy 121.022218 86.597139) (xy 121.02222 86.59714) (xy 121.029286 86.604206) (xy 121.029285 86.604206) + (xy 121.029288 86.604208) (xy 123.008399 88.58332) (xy 123.041884 88.644642) (xy 123.0369 88.714334) + (xy 122.995028 88.770267) (xy 122.929564 88.794684) (xy 122.920718 88.795) (xy 122.91 88.795) (xy 122.91 91.244999) + (xy 123.047472 91.244999) (xy 123.047486 91.244998) (xy 123.150197 91.234505) (xy 123.316619 91.179358) + (xy 123.316624 91.179356) (xy 123.465845 91.087315) (xy 123.589818 90.963342) (xy 123.591665 90.960348) + (xy 123.593469 90.958724) (xy 123.594298 90.957677) (xy 123.594476 90.957818) (xy 123.64361 90.913621) + (xy 123.712573 90.902396) (xy 123.776656 90.930236) (xy 123.785554 90.938431) (xy 123.795388 90.948416) + (xy 123.804788 90.963656) (xy 123.928844 91.087712) (xy 123.938339 91.093568) (xy 123.948848 91.104239) + (xy 123.958565 91.122362) (xy 123.97232 91.137654) (xy 123.976407 91.155638) (xy 123.981864 91.165816) + (xy 123.981051 91.176073) (xy 123.9845 91.191248) (xy 123.9845 92.38277) (xy 123.964815 92.449809) + (xy 123.948181 92.470451) (xy 123.905451 92.513181) (xy 123.844128 92.546666) (xy 123.81777 92.5495) + (xy 122.019298 92.5495) (xy 121.982432 92.552401) (xy 121.982426 92.552402) (xy 121.837267 92.594576) + (xy 121.802672 92.5995) (xy 120.803199 92.5995) (xy 120.73616 92.579815) (xy 120.690405 92.527011) + (xy 120.679841 92.462898) (xy 120.6855 92.407509) (xy 120.685499 91.632492) (xy 120.674999 91.529703) + (xy 120.619814 91.363166) (xy 120.527712 91.213844) (xy 120.403656 91.089788) (xy 120.400342 91.087743) + (xy 120.398546 91.085748) (xy 120.397989 91.085307) (xy 120.398064 91.085211) (xy 120.353618 91.035797) + (xy 120.342397 90.966834) (xy 120.37024 90.902752) (xy 120.400348 90.876665) (xy 120.403342 90.874818) + (xy 120.527315 90.750845) (xy 120.619356 90.601624) (xy 120.619358 90.601619) (xy 120.638124 90.544986) + (xy 121.572501 90.544986) (xy 121.582994 90.647697) (xy 121.638141 90.814119) (xy 121.638143 90.814124) + (xy 121.730184 90.963345) (xy 121.854154 91.087315) (xy 122.003375 91.179356) (xy 122.00338 91.179358) + (xy 122.169802 91.234505) (xy 122.169809 91.234506) (xy 122.272519 91.244999) (xy 122.409999 91.244999) + (xy 122.41 91.244998) (xy 122.41 90.27) (xy 121.572501 90.27) (xy 121.572501 90.544986) (xy 120.638124 90.544986) + (xy 120.674505 90.435197) (xy 120.674506 90.43519) (xy 120.684999 90.332486) (xy 120.685 90.332473) + (xy 120.685 90.195) (xy 118.235001 90.195) (xy 118.235001 90.332486) (xy 118.245494 90.435197) (xy 118.300641 90.601619) + (xy 118.300643 90.601624) (xy 118.392684 90.750845) (xy 118.516655 90.874816) (xy 118.516659 90.874819) + (xy 118.519656 90.876668) (xy 118.521279 90.878472) (xy 118.522323 90.879298) (xy 118.522181 90.879476) + (xy 118.566381 90.928616) (xy 118.577602 90.997579) (xy 118.549759 91.061661) (xy 118.519661 91.087741) + (xy 118.516349 91.089783) (xy 118.516343 91.089788) (xy 118.392289 91.213842) (xy 118.300187 91.363163) + (xy 118.300185 91.363168) (xy 118.272349 91.44717) (xy 118.245001 91.529703) (xy 118.245001 91.529704) + (xy 118.245 91.529704) (xy 118.2345 91.632483) (xy 118.2345 92.407501) (xy 118.234501 92.407519) + (xy 118.245 92.510296) (xy 118.245001 92.510299) (xy 118.300185 92.676831) (xy 118.300187 92.676836) + (xy 118.329865 92.724951) (xy 118.392288 92.826156) (xy 118.516344 92.950212) (xy 118.665666 93.042314) + (xy 118.768718 93.076462) (xy 118.832199 93.097498) (xy 118.8322 93.097498) (xy 118.832203 93.097499) + (xy 118.837237 93.098013) (xy 118.901927 93.124403) (xy 118.912322 93.13369) (xy 119.711586 93.932954) + (xy 119.738091 93.950663) (xy 119.78527 93.982186) (xy 119.834505 94.015084) (xy 119.834506 94.015084) + (xy 119.834507 94.015085) (xy 119.834509 94.015086) (xy 119.962594 94.06814) (xy 119.971087 94.071658) + (xy 119.971091 94.071658) (xy 119.971092 94.071659) (xy 120.116079 94.1005) (xy 120.116082 94.1005) + (xy 120.116083 94.1005) (xy 120.263917 94.1005) (xy 121.3498 94.1005) (xy 121.416839 94.120185) + (xy 121.462594 94.172989) (xy 121.472538 94.242147) (xy 121.468876 94.259095) (xy 121.437402 94.367426) + (xy 121.437401 94.367432) (xy 121.4345 94.404298) (xy 121.4345 94.835701) (xy 121.437401 94.872567) + (xy 121.437402 94.872573) (xy 121.468876 94.980905) (xy 121.468677 95.050775) (xy 121.430735 95.109445) + (xy 121.367096 95.138288) (xy 121.3498 95.1395) (xy 117.49223 95.1395) (xy 117.425191 95.119815) + (xy 117.404549 95.103181) (xy 115.846819 93.545451) (xy 115.813334 93.484128) (xy 115.8105 93.45777) + (xy 115.8105 92.744499) (xy 115.830185 92.67746) (xy 115.882989 92.631705) (xy 115.9345 92.620499) + (xy 116.110002 92.620499) (xy 116.110008 92.620499) (xy 116.212797 92.609999) (xy 116.379334 92.554814) + (xy 116.528656 92.462712) (xy 116.652712 92.338656) (xy 116.744814 92.189334) (xy 116.799999 92.022797) + (xy 116.8105 91.920009) (xy 116.810499 90.519992) (xy 116.805368 90.469767) (xy 116.799999 90.417203) + (xy 116.799998 90.4172) (xy 116.775789 90.344142) (xy 116.744814 90.250666) (xy 116.652712 90.101344) + (xy 116.528656 89.977288) (xy 116.397006 89.896086) (xy 116.379336 89.885187) (xy 116.379331 89.885185) + (xy 116.377862 89.884698) (xy 116.212797 89.830001) (xy 116.212795 89.83) (xy 116.171896 89.825822) + (xy 116.169458 89.824827) (xy 116.166853 89.825202) (xy 116.137291 89.811701) (xy 116.107205 89.799425) + (xy 116.105692 89.79727) (xy 116.103297 89.796177) (xy 116.085725 89.768835) (xy 116.067054 89.742244) + (xy 116.066508 89.738932) (xy 116.065523 89.737399) (xy 116.0605 89.702464) (xy 116.0605 89.557513) + (xy 118.235 89.557513) (xy 118.235 89.695) (xy 119.21 89.695) (xy 119.71 89.695) (xy 120.684999 89.695) + (xy 120.684999 89.557528) (xy 120.684998 89.557513) (xy 120.679579 89.504466) (xy 120.679579 89.504465) + (xy 120.678613 89.495013) (xy 121.5725 89.495013) (xy 121.5725 89.77) (xy 122.41 89.77) (xy 122.41 88.795) + (xy 122.272527 88.795) (xy 122.272512 88.795001) (xy 122.169802 88.805494) (xy 122.00338 88.860641) + (xy 122.003375 88.860643) (xy 121.854154 88.952684) (xy 121.730184 89.076654) (xy 121.638143 89.225875) + (xy 121.638141 89.22588) (xy 121.582994 89.392302) (xy 121.582993 89.392309) (xy 121.5725 89.495013) + (xy 120.678613 89.495013) (xy 120.674506 89.454803) (xy 120.619358 89.28838) (xy 120.619356 89.288375) + (xy 120.527315 89.139154) (xy 120.403345 89.015184) (xy 120.254124 88.923143) (xy 120.254119 88.923141) + (xy 120.087697 88.867994) (xy 120.08769 88.867993) (xy 119.984986 88.8575) (xy 119.71 88.8575) (xy 119.71 89.695) + (xy 119.21 89.695) (xy 119.21 88.8575) (xy 118.935029 88.8575) (xy 118.935012 88.857501) (xy 118.832302 88.867994) + (xy 118.66588 88.923141) (xy 118.665875 88.923143) (xy 118.516654 89.015184) (xy 118.392684 89.139154) + (xy 118.300643 89.288375) (xy 118.300641 89.28838) (xy 118.245494 89.454802) (xy 118.245493 89.454809) + (xy 118.235 89.557513) (xy 116.0605 89.557513) (xy 116.0605 86.885783) (xy 116.080185 86.818744) + (xy 116.096823 86.798098) (xy 116.103806 86.791115) (xy 116.213299 86.627247) (xy 116.219981 86.611116) + (xy 116.267137 86.49727) (xy 116.267137 86.497269) (xy 116.270393 86.489409) (xy 116.288718 86.445169) + (xy 116.313325 86.32146) (xy 116.327167 86.251874) (xy 116.327167 85.652396) (xy 116.346852 85.585357) + (xy 116.375681 85.55402) (xy 116.43997 85.504689) (xy 116.483328 85.471419) (xy 116.560247 85.3945) + (xy 116.645578 85.30917) (xy 116.645581 85.309165) (xy 116.645586 85.309161) (xy 116.785278 85.127112) + (xy 116.900011 84.928388) (xy 116.987825 84.716387) (xy 117.047215 84.494738) (xy 117.077167 84.267234) + (xy 117.077167 84.037766) (xy 117.047215 83.810262) (xy 116.987825 83.588613) (xy 116.916152 83.415579) + (xy 116.900016 83.376623) (xy 116.900013 83.376617) (xy 116.900011 83.376612) (xy 116.785278 83.177888) + (xy 116.785275 83.177885) (xy 116.785274 83.177882) (xy 116.645585 82.995838) (xy 116.645578 82.99583) + (xy 116.483337 82.833589) (xy 116.483328 82.833581) (xy 116.301284 82.693892) (xy 116.251707 82.665269) + (xy 116.15839 82.611392) (xy 116.102557 82.579157) (xy 116.102543 82.57915) (xy 115.890554 82.491342) + (xy 115.855062 82.481832) (xy 115.668905 82.431952) (xy 115.630882 82.426946) (xy 115.441408 82.402) + (xy 115.441401 82.402) (xy 115.211933 82.402) (xy 115.211925 82.402) (xy 114.995382 82.430509) (xy 114.984429 82.431952) + (xy 114.958454 82.438912) (xy 114.762779 82.491342) (xy 114.55079 82.57915) (xy 114.550776 82.579157) + (xy 114.352049 82.693892) (xy 114.170005 82.833581) (xy 114.007748 82.995838) (xy 113.868059 83.177882) + (xy 113.753324 83.376609) (xy 113.753317 83.376623) (xy 113.665509 83.588612) (xy 113.60612 83.810259) + (xy 113.606118 83.81027) (xy 113.576167 84.037758) (xy 113.576167 84.267241) (xy 113.596537 84.421957) + (xy 113.606119 84.494738) (xy 113.644424 84.637697) (xy 113.665509 84.716387) (xy 113.753317 84.928376) + (xy 113.753324 84.92839) (xy 113.868059 85.127117) (xy 114.007748 85.309161) (xy 114.007756 85.30917) + (xy 114.17 85.471414) (xy 114.170007 85.47142) (xy 114.277653 85.55402) (xy 114.279901 85.557098) + (xy 114.28337 85.558683) (xy 114.300345 85.585097) (xy 114.318856 85.610448) (xy 114.319681 85.615185) + (xy 114.321144 85.617461) (xy 114.326167 85.652396) (xy 114.326167 85.687549) (xy 114.306482 85.754588) + (xy 114.289848 85.77523) (xy 114.282863 85.782214) (xy 114.28286 85.782218) (xy 114.173371 85.946079) + (xy 114.173366 85.946089) (xy 114.154951 85.990548) (xy 114.120038 86.074834) (xy 114.118474 86.078611) + (xy 114.09795 86.128159) (xy 114.097948 86.128166) (xy 114.093382 86.151122) (xy 114.0595 86.321454) + (xy 114.0595 89.702465) (xy 114.039815 89.769504) (xy 113.987011 89.815259) (xy 113.948102 89.825823) + (xy 113.907202 89.830001) (xy 113.9072 89.830001) (xy 113.740668 89.885185) (xy 113.740663 89.885187) + (xy 113.591342 89.977289) (xy 113.467289 90.101342) (xy 113.375187 90.250663) (xy 113.375185 90.250668) + (xy 113.362385 90.289297) (xy 113.320001 90.417203) (xy 113.320001 90.417204) (xy 113.32 90.417204) + (xy 113.3095 90.519983) (xy 113.3095 91.920001) (xy 113.309501 91.920018) (xy 113.32 92.022796) + (xy 113.320001 92.022799) (xy 113.375185 92.189331) (xy 113.375187 92.189336) (xy 113.391999 92.216593) + (xy 113.467288 92.338656) (xy 113.591344 92.462712) (xy 113.740666 92.554814) (xy 113.907203 92.609999) + (xy 114.009991 92.6205) (xy 114.1855 92.620499) (xy 114.252539 92.640183) (xy 114.298294 92.692987) + (xy 114.3095 92.744499) (xy 114.3095 93.893918) (xy 114.3095 93.89392) (xy 114.309499 93.89392) + (xy 114.33834 94.038907) (xy 114.338343 94.038917) (xy 114.394913 94.17549) (xy 114.394914 94.175491) + (xy 114.394916 94.175495) (xy 114.410182 94.198342) (xy 114.42464 94.219981) (xy 114.477051 94.29842) + (xy 114.477052 94.298421) (xy 116.376451 96.197819) (xy 116.409936 96.259142) (xy 116.404952 96.328834) + (xy 116.36308 96.384767) (xy 116.297616 96.409184) (xy 116.28877 96.4095) (xy 100.962229 96.4095) + (xy 100.89519 96.389815) (xy 100.874548 96.373181) (xy 98.046819 93.545451) (xy 98.013334 93.484128) + (xy 98.0105 93.45777) (xy 98.0105 92.144499) (xy 98.030185 92.07746) (xy 98.082989 92.031705) (xy 98.1345 92.020499) + (xy 98.310002 92.020499) (xy 98.310008 92.020499) (xy 98.412797 92.009999) (xy 98.579334 91.954814) + (xy 98.728656 91.862712) (xy 98.852712 91.738656) (xy 98.944814 91.589334) (xy 98.999999 91.422797) + (xy 99.0105 91.320009) (xy 99.010499 89.919992) (xy 99.009498 89.910197) (xy 98.999999 89.817203) + (xy 98.999998 89.8172) (xy 98.97516 89.742244) (xy 98.944814 89.650666) (xy 98.852712 89.501344) + (xy 98.728656 89.377288) (xy 98.608728 89.303316) (xy 98.579336 89.285187) (xy 98.579331 89.285185) + (xy 98.570187 89.282155) (xy 98.412797 89.230001) (xy 98.412795 89.23) (xy 98.371896 89.225822) + (xy 98.307205 89.199425) (xy 98.267054 89.142244) (xy 98.2605 89.102464) (xy 98.2605 85.329775) + (xy 98.267562 85.305724) (xy 98.270565 85.280838) (xy 98.278161 85.269627) (xy 98.280185 85.262736) + (xy 98.286602 85.253956) (xy 99.8595 85.253956) (xy 99.8595 91.318541) (xy 99.868376 91.363166) + (xy 99.868874 91.365665) (xy 99.897949 91.511836) (xy 99.904713 91.528165) (xy 99.908656 91.537685) + (xy 99.908657 91.537688) (xy 99.973364 91.693907) (xy 99.973371 91.69392) (xy 100.08286 91.857781) + (xy 100.082863 91.857785) (xy 100.226537 92.001459) (xy 100.226559 92.001479) (xy 100.917235 92.692155) + (xy 100.917264 92.692186) (xy 101.059714 92.834636) (xy 101.059718 92.834639) (xy 101.223579 92.944128) + (xy 101.223583 92.94413) (xy 101.223586 92.944132) (xy 101.345198 92.994505) (xy 101.405664 93.019551) + (xy 101.472196 93.032785) (xy 101.554055 93.049068) (xy 101.598956 93.058) (xy 101.598959 93.058) + (xy 101.59896 93.058) (xy 101.79604 93.058) (xy 102.395134 93.058) (xy 102.460231 93.076461) (xy 102.465666 93.079814) + (xy 102.632203 93.134999) (xy 102.734991 93.1455) (xy 103.785008 93.145499) (xy 103.785016 93.145498) + (xy 103.785019 93.145498) (xy 103.841302 93.139748) (xy 103.887797 93.134999) (xy 104.054334 93.079814) + (xy 104.059768 93.076461) (xy 104.124866 93.058) (xy 106.195134 93.058) (xy 106.260231 93.076461) + (xy 106.265666 93.079814) (xy 106.432203 93.134999) (xy 106.534991 93.1455) (xy 107.585008 93.145499) + (xy 107.585016 93.145498) (xy 107.585019 93.145498) (xy 107.641302 93.139748) (xy 107.687797 93.134999) + (xy 107.854334 93.079814) (xy 107.859768 93.076461) (xy 107.924866 93.058) (xy 110.321043 93.058) + (xy 110.350976 93.052045) (xy 110.447804 93.032785) (xy 110.514336 93.019551) (xy 110.574802 92.994505) + (xy 110.696414 92.944132) (xy 110.860282 92.834639) (xy 110.999639 92.695282) (xy 110.999641 92.695278) + (xy 111.038104 92.656814) (xy 111.099426 92.623332) (xy 111.125782 92.620499) (xy 112.110002 92.620499) + (xy 112.110008 92.620499) (xy 112.212797 92.609999) (xy 112.379334 92.554814) (xy 112.528656 92.462712) + (xy 112.652712 92.338656) (xy 112.744814 92.189334) (xy 112.799999 92.022797) (xy 112.8105 91.920009) + (xy 112.810499 90.519992) (xy 112.805368 90.469767) (xy 112.799999 90.417203) (xy 112.799998 90.4172) + (xy 112.775789 90.344142) (xy 112.744814 90.250666) (xy 112.652712 90.101344) (xy 112.528656 89.977288) + (xy 112.397006 89.896086) (xy 112.379336 89.885187) (xy 112.379331 89.885185) (xy 112.377862 89.884698) + (xy 112.212797 89.830001) (xy 112.212795 89.83) (xy 112.11001 89.8195) (xy 110.009998 89.8195) (xy 110.009981 89.819501) + (xy 109.907203 89.83) (xy 109.9072 89.830001) (xy 109.740668 89.885185) (xy 109.740663 89.885187) + (xy 109.591342 89.977289) (xy 109.467289 90.101342) (xy 109.375187 90.250663) (xy 109.375185 90.250668) + (xy 109.362385 90.289297) (xy 109.320001 90.417203) (xy 109.320001 90.417204) (xy 109.32 90.417204) + (xy 109.3095 90.519983) (xy 109.3095 90.933) (xy 109.289815 91.000039) (xy 109.237011 91.045794) + (xy 109.1855 91.057) (xy 108.158023 91.057) (xy 108.090984 91.037315) (xy 108.045229 90.984511) + (xy 108.035285 90.915353) (xy 108.06431 90.851797) (xy 108.070342 90.845319) (xy 108.127315 90.788345) + (xy 108.219356 90.639124) (xy 108.219358 90.639119) (xy 108.274505 90.472697) (xy 108.274506 90.47269) + (xy 108.284999 90.369986) (xy 108.285 90.369973) (xy 108.285 90.2325) (xy 105.835001 90.2325) (xy 105.835001 90.369986) + (xy 105.845494 90.472697) (xy 105.900641 90.639119) (xy 105.900643 90.639124) (xy 105.992684 90.788345) + (xy 106.049658 90.845319) (xy 106.083143 90.906642) (xy 106.078159 90.976334) (xy 106.036287 91.032267) + (xy 105.970823 91.056684) (xy 105.961977 91.057) (xy 104.358023 91.057) (xy 104.290984 91.037315) + (xy 104.245229 90.984511) (xy 104.235285 90.915353) (xy 104.26431 90.851797) (xy 104.270342 90.845319) + (xy 104.327315 90.788345) (xy 104.419356 90.639124) (xy 104.419358 90.639119) (xy 104.474505 90.472697) + (xy 104.474506 90.47269) (xy 104.484999 90.369986) (xy 104.485 90.369973) (xy 104.485 90.2325) (xy 103.384 90.2325) + (xy 103.316961 90.212815) (xy 103.271206 90.160011) (xy 103.26 90.1085) (xy 103.26 89.9825) (xy 103.134 89.9825) + (xy 103.066961 89.962815) (xy 103.021206 89.910011) (xy 103.01 89.8585) (xy 103.01 89.7325) (xy 103.51 89.7325) + (xy 104.484999 89.7325) (xy 104.484999 89.595029) (xy 104.484998 89.595013) (xy 105.835 89.595013) + (xy 105.835 89.7325) (xy 106.81 89.7325) (xy 107.31 89.7325) (xy 108.284999 89.7325) (xy 108.284999 89.595028) + (xy 108.284998 89.595013) (xy 108.274505 89.492302) (xy 108.219358 89.32588) (xy 108.219356 89.325875) + (xy 108.127315 89.176654) (xy 108.003345 89.052684) (xy 107.854124 88.960643) (xy 107.854119 88.960641) + (xy 107.687697 88.905494) (xy 107.68769 88.905493) (xy 107.584986 88.895) (xy 107.31 88.895) (xy 107.31 89.7325) + (xy 106.81 89.7325) (xy 106.81 88.895) (xy 106.535029 88.895) (xy 106.535012 88.895001) (xy 106.432302 88.905494) + (xy 106.26588 88.960641) (xy 106.265875 88.960643) (xy 106.116654 89.052684) (xy 105.992684 89.176654) + (xy 105.900643 89.325875) (xy 105.900641 89.32588) (xy 105.845494 89.492302) (xy 105.845493 89.492309) + (xy 105.835 89.595013) (xy 104.484998 89.595013) (xy 104.484998 89.595012) (xy 104.474505 89.492302) + (xy 104.419358 89.32588) (xy 104.419356 89.325875) (xy 104.327315 89.176654) (xy 104.203345 89.052684) + (xy 104.054124 88.960643) (xy 104.054119 88.960641) (xy 103.887697 88.905494) (xy 103.88769 88.905493) + (xy 103.784986 88.895) (xy 103.51 88.895) (xy 103.51 89.7325) (xy 103.01 89.7325) (xy 103.01 88.895) + (xy 102.735029 88.895) (xy 102.735012 88.895001) (xy 102.632302 88.905494) (xy 102.46588 88.960641) + (xy 102.465875 88.960643) (xy 102.316654 89.052684) (xy 102.192684 89.176654) (xy 102.100643 89.325875) + (xy 102.097592 89.332421) (xy 102.095187 89.331299) (xy 102.062425 89.37861) (xy 101.997907 89.405428) + (xy 101.929132 89.393107) (xy 101.877936 89.34556) (xy 101.8605 89.282155) (xy 101.8605 85.971372) + (xy 107.276167 85.971372) (xy 107.276167 86.233627) (xy 107.299535 86.411114) (xy 107.310397 86.493616) + (xy 107.365999 86.701127) (xy 107.378269 86.746918) (xy 107.378272 86.746928) (xy 107.47862 86.98919) + (xy 107.478625 86.9892) (xy 107.609742 87.216303) (xy 107.769385 87.424351) (xy 107.769393 87.42436) + (xy 107.954807 87.609774) (xy 107.954815 87.609781) (xy 108.162863 87.769424) (xy 108.389966 87.900541) + (xy 108.389976 87.900546) (xy 108.599878 87.98749) (xy 108.632248 88.000898) (xy 108.885551 88.06877) + (xy 109.145547 88.103) (xy 109.145554 88.103) (xy 109.40778 88.103) (xy 109.407787 88.103) (xy 109.667783 88.06877) + (xy 109.921086 88.000898) (xy 110.120268 87.918394) (xy 110.163357 87.900546) (xy 110.163358 87.900545) + (xy 110.163364 87.900543) (xy 110.39047 87.769424) (xy 110.598518 87.609782) (xy 110.598522 87.609777) + (xy 110.598527 87.609774) (xy 110.783941 87.42436) (xy 110.783944 87.424355) (xy 110.783949 87.424351) + (xy 110.943591 87.216303) (xy 111.07471 86.989197) (xy 111.079875 86.976729) (xy 111.108886 86.90669) + (xy 111.175065 86.746919) (xy 111.242937 86.493616) (xy 111.277167 86.23362) (xy 111.277167 85.97138) + (xy 111.242937 85.711384) (xy 111.175065 85.458081) (xy 111.162483 85.427706) (xy 111.074713 85.215809) + (xy 111.074708 85.215799) (xy 110.943591 84.988696) (xy 110.783948 84.780648) (xy 110.783941 84.78064) + (xy 110.598527 84.595226) (xy 110.598518 84.595218) (xy 110.39047 84.435575) (xy 110.163367 84.304458) + (xy 110.163357 84.304453) (xy 109.921095 84.204105) (xy 109.921088 84.204103) (xy 109.921086 84.204102) + (xy 109.667783 84.13623) (xy 109.610006 84.128623) (xy 109.407794 84.102) (xy 109.407787 84.102) + (xy 109.145547 84.102) (xy 109.145539 84.102) (xy 108.914439 84.132426) (xy 108.885551 84.13623) + (xy 108.713921 84.182218) (xy 108.632248 84.204102) (xy 108.632238 84.204105) (xy 108.389976 84.304453) + (xy 108.389966 84.304458) (xy 108.162863 84.435575) (xy 107.954815 84.595218) (xy 107.769385 84.780648) + (xy 107.609742 84.988696) (xy 107.478625 85.215799) (xy 107.47862 85.215809) (xy 107.378272 85.458071) + (xy 107.378269 85.458081) (xy 107.310397 85.711384) (xy 107.308129 85.728611) (xy 107.276167 85.971372) + (xy 101.8605 85.971372) (xy 101.8605 85.818281) (xy 101.880185 85.751242) (xy 101.896815 85.730604) + (xy 102.085188 85.54223) (xy 102.146509 85.508747) (xy 102.2162 85.513731) (xy 102.248354 85.531538) + (xy 102.352049 85.611107) (xy 102.352052 85.611108) (xy 102.352055 85.611111) (xy 102.550779 85.725844) + (xy 102.550784 85.725846) (xy 102.55079 85.725849) (xy 102.601523 85.746863) (xy 102.76278 85.813658) + (xy 102.984429 85.873048) (xy 103.211933 85.903) (xy 103.21194 85.903) (xy 103.441394 85.903) (xy 103.441401 85.903) + (xy 103.668905 85.873048) (xy 103.890554 85.813658) (xy 104.102555 85.725844) (xy 104.301279 85.611111) + (xy 104.483328 85.471419) (xy 104.483332 85.471414) (xy 104.483337 85.471411) (xy 104.645578 85.30917) + (xy 104.645581 85.309165) (xy 104.645586 85.309161) (xy 104.785278 85.127112) (xy 104.900011 84.928388) + (xy 104.987825 84.716387) (xy 105.047215 84.494738) (xy 105.077167 84.267234) (xy 105.077167 84.037766) + (xy 105.047215 83.810262) (xy 104.987825 83.588613) (xy 104.916152 83.415579) (xy 104.900016 83.376623) + (xy 104.900013 83.376617) (xy 104.900011 83.376612) (xy 104.785278 83.177888) (xy 104.785275 83.177885) + (xy 104.785274 83.177882) (xy 104.645585 82.995838) (xy 104.645578 82.99583) (xy 104.483337 82.833589) + (xy 104.483328 82.833581) (xy 104.301284 82.693892) (xy 104.251707 82.665269) (xy 104.15839 82.611392) + (xy 104.102557 82.579157) (xy 104.102543 82.57915) (xy 103.890554 82.491342) (xy 103.855062 82.481832) + (xy 103.668905 82.431952) (xy 103.630882 82.426946) (xy 103.441408 82.402) (xy 103.441401 82.402) + (xy 103.211933 82.402) (xy 103.211925 82.402) (xy 102.995382 82.430509) (xy 102.984429 82.431952) + (xy 102.958454 82.438912) (xy 102.762779 82.491342) (xy 102.55079 82.57915) (xy 102.550776 82.579157) + (xy 102.352049 82.693892) (xy 102.170005 82.833581) (xy 102.007748 82.995839) (xy 101.903084 83.132237) + (xy 101.846655 83.173439) (xy 101.828903 83.178366) (xy 101.768162 83.190449) (xy 101.768158 83.19045) + (xy 101.714834 83.212537) (xy 101.714834 83.212538) (xy 101.675647 83.22877) (xy 101.586089 83.265866) + (xy 101.586079 83.265871) (xy 101.459425 83.3505) (xy 101.459424 83.350501) (xy 101.422215 83.375362) + (xy 101.422214 83.375363) (xy 100.51982 84.277759) (xy 100.22222 84.575359) (xy 100.222218 84.575361) + (xy 100.185352 84.612227) (xy 100.082859 84.714719) (xy 99.973371 84.878579) (xy 99.973364 84.878592) + (xy 99.931225 84.980328) (xy 99.931225 84.980329) (xy 99.89795 85.060661) (xy 99.897947 85.060669) + (xy 99.890439 85.098418) (xy 99.8595 85.253956) (xy 98.286602 85.253956) (xy 98.288967 85.250721) + (xy 98.292684 85.246228) (xy 98.312252 85.226661) (xy 98.451944 85.044612) (xy 98.566677 84.845888) + (xy 98.654491 84.633887) (xy 98.713881 84.412238) (xy 98.743833 84.184734) (xy 98.743833 83.955266) + (xy 98.713881 83.727762) (xy 98.654491 83.506113) (xy 98.60085 83.376612) (xy 98.566682 83.294123) + (xy 98.566679 83.294117) (xy 98.566677 83.294112) (xy 98.451944 83.095388) (xy 98.451941 83.095385) + (xy 98.45194 83.095382) (xy 98.312251 82.913338) (xy 98.312244 82.91333) (xy 98.150003 82.751089) + (xy 98.149994 82.751081) (xy 97.96795 82.611392) (xy 97.769223 82.496657) (xy 97.769209 82.49665) + (xy 97.55722 82.408842) (xy 97.453654 82.381092) (xy 97.335571 82.349452) (xy 97.297548 82.344446) + (xy 97.108074 82.3195) (xy 97.108067 82.3195) (xy 96.878599 82.3195) (xy 96.878591 82.3195) (xy 96.662048 82.348009) + (xy 96.651095 82.349452) (xy 96.592755 82.365084) (xy 96.429445 82.408842) (xy 96.217456 82.49665) + (xy 96.217442 82.496657) (xy 96.018715 82.611392) (xy 95.836671 82.751081) (xy 95.674414 82.913338) + (xy 95.534725 83.095382) (xy 95.41999 83.294109) (xy 95.419983 83.294123) (xy 95.332175 83.506112) + (xy 95.272786 83.727759) (xy 95.272784 83.72777) (xy 95.242833 83.955258) (xy 95.242833 84.184741) + (xy 95.264996 84.353075) (xy 95.272785 84.412238) (xy 95.321814 84.595218) (xy 95.332175 84.633887) + (xy 95.419983 84.845876) (xy 95.41999 84.84589) (xy 95.450157 84.89814) (xy 95.528429 85.033713) + (xy 95.534725 85.044617) (xy 95.674414 85.226661) (xy 95.674422 85.22667) (xy 95.836663 85.388911) + (xy 95.836671 85.388918) (xy 95.836672 85.388919) (xy 95.845754 85.395888) (xy 96.018715 85.528607) + (xy 96.018718 85.528608) (xy 96.018721 85.528611) (xy 96.197501 85.631829) (xy 96.245715 85.682395) + (xy 96.2595 85.739215) (xy 96.2595 89.102465) (xy 96.239815 89.169504) (xy 96.187011 89.215259) + (xy 96.148102 89.225823) (xy 96.107202 89.230001) (xy 96.1072 89.230001) (xy 95.940668 89.285185) + (xy 95.940663 89.285187) (xy 95.791342 89.377289) (xy 95.667289 89.501342) (xy 95.575187 89.650663) + (xy 95.575186 89.650666) (xy 95.520001 89.817203) (xy 95.520001 89.817204) (xy 95.52 89.817204) + (xy 95.5095 89.919983) (xy 95.5095 91.320001) (xy 95.509501 91.320018) (xy 95.52 91.422796) (xy 95.520001 91.422799) + (xy 95.575185 91.589331) (xy 95.575187 91.589336) (xy 95.6018 91.632483) (xy 95.667288 91.738656) + (xy 95.791344 91.862712) (xy 95.940666 91.954814) (xy 96.107203 92.009999) (xy 96.209991 92.0205) + (xy 96.3855 92.020499) (xy 96.452539 92.040183) (xy 96.498294 92.092987) (xy 96.5095 92.144499) + (xy 96.5095 93.893918) (xy 96.5095 93.89392) (xy 96.509499 93.89392) (xy 96.53834 94.038907) (xy 96.538343 94.038917) + (xy 96.594913 94.17549) (xy 96.594914 94.175491) (xy 96.594916 94.175495) (xy 96.610182 94.198342) + (xy 96.62464 94.219981) (xy 96.677051 94.29842) (xy 96.677052 94.298421) (xy 99.846452 97.467819) + (xy 99.879937 97.529142) (xy 99.874953 97.598834) (xy 99.833081 97.654767) (xy 99.767617 97.679184) + (xy 99.758771 97.6795) (xy 84.632229 97.6795) (xy 84.56519 97.659815) (xy 84.544548 97.643181) (xy 79.446819 92.545451) + (xy 79.413334 92.484128) (xy 79.4105 92.45777) (xy 79.4105 92.144499) (xy 79.430185 92.07746) (xy 79.482989 92.031705) + (xy 79.5345 92.020499) (xy 79.710002 92.020499) (xy 79.710008 92.020499) (xy 79.812797 92.009999) + (xy 79.979334 91.954814) (xy 80.128656 91.862712) (xy 80.252712 91.738656) (xy 80.344814 91.589334) + (xy 80.399999 91.422797) (xy 80.4105 91.320009) (xy 80.410499 89.919992) (xy 80.409498 89.910197) + (xy 80.399999 89.817203) (xy 80.399998 89.8172) (xy 80.37516 89.742244) (xy 80.344814 89.650666) + (xy 80.252712 89.501344) (xy 80.128656 89.377288) (xy 80.008728 89.303316) (xy 79.979336 89.285187) + (xy 79.979331 89.285185) (xy 79.970187 89.282155) (xy 79.812797 89.230001) (xy 79.812795 89.23) + (xy 79.771896 89.225822) (xy 79.707205 89.199425) (xy 79.667054 89.142244) (xy 79.6605 89.102464) + (xy 79.6605 85.769896) (xy 79.680185 85.702857) (xy 79.709014 85.67152) (xy 79.769938 85.624771) + (xy 79.816661 85.588919) (xy 79.896833 85.508747) (xy 79.978911 85.42667) (xy 79.978914 85.426665) + (xy 79.978919 85.426661) (xy 80.118611 85.244612) (xy 80.233344 85.045888) (xy 80.321158 84.833887) + (xy 80.380548 84.612238) (xy 80.392499 84.521459) (xy 81.0595 84.521459) (xy 81.0595 84.527149) + (xy 81.0595 90.518543) (xy 81.072819 90.585499) (xy 81.072819 90.5855) (xy 81.097947 90.711828) + (xy 81.09795 90.71184) (xy 81.110271 90.741584) (xy 81.173366 90.893911) (xy 81.173371 90.89392) + (xy 81.282859 91.05778) (xy 81.28286 91.057781) (xy 81.282861 91.057782) (xy 81.422218 91.197139) + (xy 81.422219 91.197139) (xy 81.429286 91.204206) (xy 81.429285 91.204206) (xy 81.429289 91.204209) + (xy 82.497215 92.272137) (xy 82.497219 92.27214) (xy 82.661079 92.381628) (xy 82.661085 92.381631) + (xy 82.661086 92.381632) (xy 82.843165 92.457052) (xy 83.018839 92.491996) (xy 83.036455 92.4955) + (xy 83.036458 92.495501) (xy 83.03646 92.495501) (xy 83.239655 92.495501) (xy 83.239675 92.4955) + (xy 84.195134 92.4955) (xy 84.260231 92.513961) (xy 84.265666 92.517314) (xy 84.432203 92.572499) + (xy 84.534991 92.583) (xy 85.585008 92.582999) (xy 85.585016 92.582998) (xy 85.585019 92.582998) + (xy 85.641302 92.577248) (xy 85.687797 92.572499) (xy 85.854334 92.517314) (xy 85.859768 92.513961) + (xy 85.924866 92.4955) (xy 88.395134 92.4955) (xy 88.460231 92.513961) (xy 88.465666 92.517314) + (xy 88.632203 92.572499) (xy 88.734991 92.583) (xy 89.785008 92.582999) (xy 89.785016 92.582998) + (xy 89.785019 92.582998) (xy 89.841302 92.577248) (xy 89.887797 92.572499) (xy 90.054334 92.517314) + (xy 90.059768 92.513961) (xy 90.124866 92.4955) (xy 92.483543 92.4955) (xy 92.54679 92.482918) (xy 92.648376 92.462712) + (xy 92.676836 92.457051) (xy 92.730943 92.434639) (xy 92.858914 92.381632) (xy 93.022782 92.272139) + (xy 93.162139 92.132782) (xy 93.162141 92.132778) (xy 93.238103 92.056815) (xy 93.299425 92.023333) + (xy 93.325782 92.020499) (xy 94.310002 92.020499) (xy 94.310008 92.020499) (xy 94.412797 92.009999) + (xy 94.579334 91.954814) (xy 94.728656 91.862712) (xy 94.852712 91.738656) (xy 94.944814 91.589334) + (xy 94.999999 91.422797) (xy 95.0105 91.320009) (xy 95.010499 89.919992) (xy 95.009498 89.910197) + (xy 94.999999 89.817203) (xy 94.999998 89.8172) (xy 94.97516 89.742244) (xy 94.944814 89.650666) + (xy 94.852712 89.501344) (xy 94.728656 89.377288) (xy 94.608728 89.303316) (xy 94.579336 89.285187) + (xy 94.579331 89.285185) (xy 94.570187 89.282155) (xy 94.412797 89.230001) (xy 94.412795 89.23) + (xy 94.31001 89.2195) (xy 92.209998 89.2195) (xy 92.209981 89.219501) (xy 92.107203 89.23) (xy 92.1072 89.230001) + (xy 91.940668 89.285185) (xy 91.940663 89.285187) (xy 91.791342 89.377289) (xy 91.667289 89.501342) + (xy 91.575187 89.650663) (xy 91.575186 89.650666) (xy 91.520001 89.817203) (xy 91.520001 89.817204) + (xy 91.52 89.817204) (xy 91.5095 89.919983) (xy 91.5095 90.3705) (xy 91.489815 90.437539) (xy 91.437011 90.483294) + (xy 91.3855 90.4945) (xy 90.358023 90.4945) (xy 90.290984 90.474815) (xy 90.245229 90.422011) (xy 90.235285 90.352853) + (xy 90.26431 90.289297) (xy 90.270342 90.282819) (xy 90.327315 90.225845) (xy 90.419356 90.076624) + (xy 90.419358 90.076619) (xy 90.474505 89.910197) (xy 90.474506 89.91019) (xy 90.484999 89.807486) + (xy 90.485 89.807473) (xy 90.485 89.67) (xy 88.035001 89.67) (xy 88.035001 89.807486) (xy 88.045494 89.910197) + (xy 88.100641 90.076619) (xy 88.100643 90.076624) (xy 88.192684 90.225845) (xy 88.249658 90.282819) + (xy 88.283143 90.344142) (xy 88.278159 90.413834) (xy 88.236287 90.469767) (xy 88.170823 90.494184) + (xy 88.161977 90.4945) (xy 86.158023 90.4945) (xy 86.090984 90.474815) (xy 86.045229 90.422011) + (xy 86.035285 90.352853) (xy 86.06431 90.289297) (xy 86.070342 90.282819) (xy 86.127315 90.225845) + (xy 86.219356 90.076624) (xy 86.219358 90.076619) (xy 86.274505 89.910197) (xy 86.274506 89.91019) + (xy 86.284999 89.807486) (xy 86.285 89.807473) (xy 86.285 89.67) (xy 83.835001 89.67) (xy 83.835001 89.807486) + (xy 83.845494 89.910197) (xy 83.900641 90.076619) (xy 83.900643 90.076624) (xy 83.992684 90.225845) + (xy 84.049658 90.282819) (xy 84.083143 90.344142) (xy 84.078159 90.413834) (xy 84.036287 90.469767) + (xy 83.970823 90.494184) (xy 83.961977 90.4945) (xy 83.600783 90.4945) (xy 83.533744 90.474815) + (xy 83.513102 90.458181) (xy 83.096819 90.041898) (xy 83.063334 89.980575) (xy 83.0605 89.954217) + (xy 83.0605 89.032513) (xy 83.835 89.032513) (xy 83.835 89.17) (xy 84.81 89.17) (xy 85.31 89.17) + (xy 86.284999 89.17) (xy 86.284999 89.032529) (xy 86.284998 89.032513) (xy 88.035 89.032513) (xy 88.035 89.17) + (xy 89.01 89.17) (xy 89.51 89.17) (xy 90.484999 89.17) (xy 90.484999 89.032528) (xy 90.484998 89.032513) + (xy 90.474505 88.929802) (xy 90.419358 88.76338) (xy 90.419356 88.763375) (xy 90.327315 88.614154) + (xy 90.203345 88.490184) (xy 90.054124 88.398143) (xy 90.054119 88.398141) (xy 89.887697 88.342994) + (xy 89.88769 88.342993) (xy 89.784986 88.3325) (xy 89.51 88.3325) (xy 89.51 89.17) (xy 89.01 89.17) + (xy 89.01 88.3325) (xy 88.735029 88.3325) (xy 88.735012 88.332501) (xy 88.632302 88.342994) (xy 88.46588 88.398141) + (xy 88.465875 88.398143) (xy 88.316654 88.490184) (xy 88.192684 88.614154) (xy 88.100643 88.763375) + (xy 88.100641 88.76338) (xy 88.045494 88.929802) (xy 88.045493 88.929809) (xy 88.035 89.032513) + (xy 86.284998 89.032513) (xy 86.284998 89.032512) (xy 86.274505 88.929802) (xy 86.219358 88.76338) + (xy 86.219356 88.763375) (xy 86.127315 88.614154) (xy 86.003345 88.490184) (xy 85.854124 88.398143) + (xy 85.854119 88.398141) (xy 85.687697 88.342994) (xy 85.68769 88.342993) (xy 85.584986 88.3325) + (xy 85.31 88.3325) (xy 85.31 89.17) (xy 84.81 89.17) (xy 84.81 88.3325) (xy 84.535029 88.3325) (xy 84.535012 88.332501) + (xy 84.432302 88.342994) (xy 84.26588 88.398141) (xy 84.265875 88.398143) (xy 84.116654 88.490184) + (xy 83.992684 88.614154) (xy 83.900643 88.763375) (xy 83.900641 88.76338) (xy 83.845494 88.929802) + (xy 83.845493 88.929809) (xy 83.835 89.032513) (xy 83.0605 89.032513) (xy 83.0605 85.888872) (xy 88.942833 85.888872) + (xy 88.942833 86.151127) (xy 88.961673 86.294219) (xy 88.977063 86.411116) (xy 89.044935 86.664418) + (xy 89.044938 86.664428) (xy 89.145286 86.90669) (xy 89.145291 86.9067) (xy 89.276408 87.133803) + (xy 89.436051 87.341851) (xy 89.436059 87.34186) (xy 89.621473 87.527274) (xy 89.621481 87.527281) + (xy 89.621482 87.527282) (xy 89.651542 87.550348) (xy 89.829529 87.686924) (xy 90.056632 87.818041) + (xy 90.056642 87.818046) (xy 90.276544 87.909132) (xy 90.298914 87.918398) (xy 90.552217 87.98627) + (xy 90.812213 88.0205) (xy 90.81222 88.0205) (xy 91.074446 88.0205) (xy 91.074453 88.0205) (xy 91.334449 87.98627) + (xy 91.587752 87.918398) (xy 91.814427 87.824506) (xy 91.830023 87.818046) (xy 91.830024 87.818045) + (xy 91.83003 87.818043) (xy 92.057136 87.686924) (xy 92.265184 87.527282) (xy 92.265188 87.527277) + (xy 92.265193 87.527274) (xy 92.450607 87.34186) (xy 92.45061 87.341855) (xy 92.450615 87.341851) + (xy 92.610257 87.133803) (xy 92.741376 86.906697) (xy 92.841731 86.664419) (xy 92.909603 86.411116) + (xy 92.943833 86.15112) (xy 92.943833 85.88888) (xy 92.909603 85.628884) (xy 92.841731 85.375581) + (xy 92.841265 85.374456) (xy 92.741379 85.133309) (xy 92.741374 85.133299) (xy 92.610257 84.906196) + (xy 92.471817 84.72578) (xy 92.450615 84.698149) (xy 92.450614 84.698148) (xy 92.450607 84.69814) + (xy 92.265193 84.512726) (xy 92.265184 84.512718) (xy 92.057136 84.353075) (xy 91.830033 84.221958) + (xy 91.830023 84.221953) (xy 91.587761 84.121605) (xy 91.587754 84.121603) (xy 91.587752 84.121602) + (xy 91.334449 84.05373) (xy 91.276672 84.046123) (xy 91.07446 84.0195) (xy 91.074453 84.0195) (xy 90.812213 84.0195) + (xy 90.812205 84.0195) (xy 90.581105 84.049926) (xy 90.552217 84.05373) (xy 90.37207 84.102) (xy 90.298914 84.121602) + (xy 90.298904 84.121605) (xy 90.056642 84.221953) (xy 90.056632 84.221958) (xy 89.829529 84.353075) + (xy 89.621481 84.512718) (xy 89.436051 84.698148) (xy 89.276408 84.906196) (xy 89.145291 85.133299) + (xy 89.145286 85.133309) (xy 89.044938 85.375571) (xy 89.044935 85.375581) (xy 88.977063 85.628884) + (xy 88.976295 85.634715) (xy 88.942833 85.888872) (xy 83.0605 85.888872) (xy 83.0605 85.1945) (xy 83.080185 85.127461) + (xy 83.132989 85.081706) (xy 83.1845 85.0705) (xy 83.493437 85.0705) (xy 83.560476 85.090185) (xy 83.591813 85.119014) + (xy 83.674412 85.226659) (xy 83.674418 85.226666) (xy 83.836663 85.388911) (xy 83.836671 85.388918) + (xy 83.836672 85.388919) (xy 83.845754 85.395888) (xy 84.018715 85.528607) (xy 84.018718 85.528608) + (xy 84.018721 85.528611) (xy 84.217445 85.643344) (xy 84.21745 85.643346) (xy 84.217456 85.643349) + (xy 84.308813 85.68119) (xy 84.429446 85.731158) (xy 84.651095 85.790548) (xy 84.878599 85.8205) + (xy 84.878606 85.8205) (xy 85.10806 85.8205) (xy 85.108067 85.8205) (xy 85.335571 85.790548) (xy 85.55722 85.731158) + (xy 85.769221 85.643344) (xy 85.967945 85.528611) (xy 86.149994 85.388919) (xy 86.149998 85.388914) + (xy 86.150003 85.388911) (xy 86.312244 85.22667) (xy 86.312247 85.226665) (xy 86.312252 85.226661) + (xy 86.451944 85.044612) (xy 86.566677 84.845888) (xy 86.654491 84.633887) (xy 86.713881 84.412238) + (xy 86.743833 84.184734) (xy 86.743833 83.955266) (xy 86.713881 83.727762) (xy 86.654491 83.506113) + (xy 86.60085 83.376612) (xy 86.566682 83.294123) (xy 86.566679 83.294117) (xy 86.566677 83.294112) + (xy 86.451944 83.095388) (xy 86.451941 83.095385) (xy 86.45194 83.095382) (xy 86.312251 82.913338) + (xy 86.312244 82.91333) (xy 86.150003 82.751089) (xy 86.149994 82.751081) (xy 85.96795 82.611392) + (xy 85.769223 82.496657) (xy 85.769209 82.49665) (xy 85.55722 82.408842) (xy 85.453654 82.381092) + (xy 85.335571 82.349452) (xy 85.297548 82.344446) (xy 85.108074 82.3195) (xy 85.108067 82.3195) + (xy 84.878599 82.3195) (xy 84.878591 82.3195) (xy 84.662048 82.348009) (xy 84.651095 82.349452) + (xy 84.592755 82.365084) (xy 84.429445 82.408842) (xy 84.217456 82.49665) (xy 84.217442 82.496657) + (xy 84.018715 82.611392) (xy 83.836671 82.751081) (xy 83.836663 82.751089) (xy 83.674418 82.913333) + (xy 83.674412 82.91334) (xy 83.591813 83.020986) (xy 83.535385 83.062189) (xy 83.493437 83.0695) + (xy 82.511456 83.0695) (xy 82.318171 83.107946) (xy 82.318167 83.107948) (xy 82.318165 83.107948) + (xy 82.318164 83.107949) (xy 82.305149 83.11334) (xy 82.242743 83.139189) (xy 82.136089 83.183366) + (xy 82.136079 83.183371) (xy 81.972218 83.29286) (xy 81.972214 83.292863) (xy 81.558967 83.706112) + (xy 81.42222 83.842859) (xy 81.422218 83.842861) (xy 81.352538 83.91254) (xy 81.282859 83.982219) + (xy 81.173371 84.146079) (xy 81.173364 84.146092) (xy 81.135244 84.238125) (xy 81.09795 84.32816) + (xy 81.097947 84.328172) (xy 81.090002 84.368114) (xy 81.089976 84.368244) (xy 81.089918 84.368541) + (xy 81.0595 84.521459) (xy 80.392499 84.521459) (xy 80.4105 84.384734) (xy 80.4105 84.155266) (xy 80.380548 83.927762) + (xy 80.321158 83.706113) (xy 80.247436 83.528132) (xy 80.233349 83.494123) (xy 80.233346 83.494117) + (xy 80.233344 83.494112) (xy 80.118611 83.295388) (xy 80.118608 83.295385) (xy 80.118607 83.295382) + (xy 80.012918 83.157647) (xy 79.978919 83.113339) (xy 79.978918 83.113338) (xy 79.978911 83.11333) + (xy 79.81667 82.951089) (xy 79.816661 82.951081) (xy 79.634617 82.811392) (xy 79.588906 82.785001) + (xy 79.438938 82.698417) (xy 79.43589 82.696657) (xy 79.435876 82.69665) (xy 79.223887 82.608842) + (xy 79.002238 82.549452) (xy 78.964215 82.544446) (xy 78.774741 82.5195) (xy 78.774734 82.5195) + (xy 78.545266 82.5195) (xy 78.545258 82.5195) (xy 78.328715 82.548009) (xy 78.317762 82.549452) + (xy 78.228688 82.573319) (xy 78.096112 82.608842) (xy 77.884123 82.69665) (xy 77.884109 82.696657) + (xy 77.685382 82.811392) (xy 77.503338 82.951081) (xy 77.341081 83.113338) (xy 77.201392 83.295382) + (xy 77.086657 83.494109) (xy 77.08665 83.494123) (xy 76.998842 83.706112) (xy 76.964795 83.833181) + (xy 76.955823 83.866666) (xy 76.939453 83.927759) (xy 76.939451 83.92777) (xy 76.9095 84.155258) + (xy 76.9095 84.384741) (xy 76.92946 84.536343) (xy 76.939452 84.612238) (xy 76.992379 84.809768) + (xy 76.998842 84.833887) (xy 77.08665 85.045876) (xy 77.086657 85.04589) (xy 77.201392 85.244617) + (xy 77.341081 85.426661) (xy 77.341089 85.42667) (xy 77.503333 85.588914) (xy 77.50334 85.58892) + (xy 77.610986 85.67152) (xy 77.652189 85.727948) (xy 77.6595 85.769896) (xy 77.6595 89.102465) (xy 77.639815 89.169504) + (xy 77.587011 89.215259) (xy 77.548102 89.225823) (xy 77.507202 89.230001) (xy 77.5072 89.230001) + (xy 77.340668 89.285185) (xy 77.340663 89.285187) (xy 77.191342 89.377289) (xy 77.067289 89.501342) + (xy 76.975187 89.650663) (xy 76.975186 89.650666) (xy 76.920001 89.817203) (xy 76.920001 89.817204) + (xy 76.92 89.817204) (xy 76.9095 89.919983) (xy 76.9095 91.320001) (xy 76.909501 91.320018) (xy 76.92 91.422796) + (xy 76.920001 91.422799) (xy 76.975185 91.589331) (xy 76.975187 91.589336) (xy 77.0018 91.632483) + (xy 77.067288 91.738656) (xy 77.191344 91.862712) (xy 77.340666 91.954814) (xy 77.507203 92.009999) + (xy 77.609991 92.0205) (xy 77.7855 92.020499) (xy 77.852539 92.040183) (xy 77.898294 92.092987) + (xy 77.9095 92.144499) (xy 77.9095 92.893918) (xy 77.9095 92.89392) (xy 77.909499 92.89392) (xy 77.93834 93.038907) + (xy 77.938343 93.038917) (xy 77.994913 93.17549) (xy 77.994914 93.175492) (xy 78.026936 93.223416) + (xy 78.026937 93.223418) (xy 78.077043 93.29841) (xy 78.077047 93.298415) (xy 78.077048 93.298416) + (xy 80.833446 96.054814) (xy 83.516452 98.737819) (xy 83.549937 98.799142) (xy 83.544953 98.868834) + (xy 83.503081 98.924767) (xy 83.437617 98.949184) (xy 83.428771 98.9495) (xy 81.20108 98.9495) (xy 81.056092 98.97834) + (xy 81.056082 98.978343) (xy 80.919511 99.034912) (xy 80.919503 99.034917) (xy 80.796584 99.117048) + (xy 80.79658 99.117051) (xy 79.275451 100.638181) (xy 79.214128 100.671666) (xy 79.18777 100.6745) + (xy 66.98108 100.6745) (xy 66.836092 100.70334) (xy 66.836082 100.703343) (xy 66.699511 100.759912) + (xy 66.699498 100.759919) (xy 66.576584 100.842048) (xy 66.57658 100.842051) (xy 65.27705 102.14158) + (xy 65.277044 102.141588) (xy 65.227812 102.215268) (xy 65.227813 102.215269) (xy 65.194921 102.264496) + (xy 65.194914 102.264508) (xy 65.138342 102.401086) (xy 65.13834 102.401092) (xy 65.1095 102.546079) + (xy 65.1095 104.6955) (xy 65.089815 104.762539) (xy 65.037011 104.808294) (xy 64.985501 104.8195) + (xy 64.809999 104.8195) (xy 64.80998 104.819501) (xy 64.707203 104.83) (xy 64.7072 104.830001) (xy 64.540668 104.885185) + (xy 64.540663 104.885187) (xy 64.391342 104.977289) (xy 64.267289 105.101342) (xy 64.175187 105.250663) + (xy 64.175186 105.250666) (xy 64.120001 105.417203) (xy 64.120001 105.417204) (xy 64.12 105.417204) + (xy 64.1095 105.519983) (xy 64.1095 106.920001) (xy 64.109501 106.920018) (xy 64.12 107.022796) + (xy 64.120001 107.022799) (xy 64.175185 107.189331) (xy 64.175187 107.189336) (xy 64.181516 107.199597) + (xy 64.267288 107.338656) (xy 64.391344 107.462712) (xy 64.540666 107.554814) (xy 64.707203 107.609999) + (xy 64.748103 107.614177) (xy 64.812793 107.640573) (xy 64.852945 107.697753) (xy 64.8595 107.737535) + (xy 64.8595 108.918543) (xy 64.866597 108.954218) (xy 64.874044 108.991658) (xy 64.897949 109.111836) + (xy 64.910302 109.141658) (xy 64.913813 109.150136) (xy 64.913814 109.150137) (xy 64.973364 109.293907) + (xy 64.973371 109.29392) (xy 65.08286 109.457781) (xy 65.082863 109.457785) (xy 65.226537 109.601459) + (xy 65.226559 109.601479) (xy 65.573181 109.948101) (xy 65.606666 110.009424) (xy 65.6095 110.035782) + (xy 65.6095 110.970103) (xy 65.589815 111.037142) (xy 65.560988 111.068478) (xy 65.453339 111.151081) + (xy 65.291081 111.313338) (xy 65.151392 111.495382) (xy 65.036657 111.694109) (xy 65.03665 111.694123) + (xy 64.948842 111.906112) (xy 64.889453 112.127759) (xy 64.889451 112.12777) (xy 64.8595 112.355258) + (xy 64.8595 112.584741) (xy 64.882537 112.759716) (xy 64.889452 112.812238) (xy 64.935256 112.983181) + (xy 64.948842 113.033887) (xy 65.03665 113.245876) (xy 65.036657 113.24589) (xy 65.068739 113.301457) + (xy 65.147667 113.438166) (xy 65.151392 113.444617) (xy 65.291081 113.626661) (xy 65.291089 113.62667) + (xy 65.45333 113.788911) (xy 65.453338 113.788918) (xy 65.453339 113.788919) (xy 65.496436 113.821989) + (xy 65.635382 113.928607) (xy 65.635385 113.928608) (xy 65.635388 113.928611) (xy 65.834112 114.043344) + (xy 65.834117 114.043346) (xy 65.834123 114.043349) (xy 65.92548 114.08119) (xy 66.046113 114.131158) + (xy 66.267762 114.190548) (xy 66.495266 114.2205) (xy 66.495273 114.2205) (xy 66.724727 114.2205) + (xy 66.724734 114.2205) (xy 66.952238 114.190548) (xy 67.173887 114.131158) (xy 67.385888 114.043344) + (xy 67.584612 113.928611) (xy 67.766661 113.788919) (xy 67.766665 113.788914) (xy 67.76667 113.788911) + (xy 67.928911 113.62667) (xy 67.928914 113.626665) (xy 67.928919 113.626661) (xy 68.068611 113.444612) + (xy 68.183344 113.245888) (xy 68.271158 113.033887) (xy 68.330548 112.812238) (xy 68.3605 112.584734) + (xy 68.3605 112.355266) (xy 68.330548 112.127762) (xy 68.271158 111.906113) (xy 68.22119 111.78548) + (xy 68.183349 111.694123) (xy 68.183346 111.694117) (xy 68.183344 111.694112) (xy 68.068611 111.495388) + (xy 68.068608 111.495385) (xy 68.068607 111.495382) (xy 67.932911 111.318542) (xy 67.928919 111.313339) + (xy 67.766661 111.151081) (xy 67.659012 111.068478) (xy 67.61781 111.01205) (xy 67.6105 110.970103) + (xy 67.6105 110.388872) (xy 70.6595 110.388872) (xy 70.6595 110.651127) (xy 70.684159 110.838416) + (xy 70.69373 110.911116) (xy 70.761602 111.164418) (xy 70.761605 111.164428) (xy 70.861953 111.40669) + (xy 70.861956 111.406695) (xy 70.861957 111.406697) (xy 70.885366 111.447243) (xy 70.993075 111.633803) + (xy 71.152718 111.841851) (xy 71.152726 111.84186) (xy 71.33814 112.027274) (xy 71.338148 112.027281) + (xy 71.546196 112.186924) (xy 71.773299 112.318041) (xy 71.773309 112.318046) (xy 72.012923 112.417297) + (xy 72.015581 112.418398) (xy 72.268884 112.48627) (xy 72.52888 112.5205) (xy 72.528887 112.5205) + (xy 72.791113 112.5205) (xy 72.79112 112.5205) (xy 73.051116 112.48627) (xy 73.304419 112.418398) + (xy 73.546697 112.318043) (xy 73.773803 112.186924) (xy 73.981851 112.027282) (xy 73.981855 112.027277) + (xy 73.98186 112.027274) (xy 74.167274 111.84186) (xy 74.167277 111.841855) (xy 74.167282 111.841851) + (xy 74.326924 111.633803) (xy 74.458043 111.406697) (xy 74.468589 111.381238) (xy 74.501962 111.300668) + (xy 74.558398 111.164419) (xy 74.62627 110.911116) (xy 74.6605 110.65112) (xy 74.6605 110.38888) + (xy 74.62627 110.128884) (xy 74.558398 109.875581) (xy 74.558394 109.875571) (xy 74.458046 109.633309) + (xy 74.458041 109.633299) (xy 74.326924 109.406196) (xy 74.167281 109.198148) (xy 74.167274 109.19814) + (xy 73.98186 109.012726) (xy 73.981851 109.012718) (xy 73.773803 108.853075) (xy 73.5467 108.721958) + (xy 73.54669 108.721953) (xy 73.304428 108.621605) (xy 73.304421 108.621603) (xy 73.304419 108.621602) + (xy 73.051116 108.55373) (xy 72.993339 108.546123) (xy 72.791127 108.5195) (xy 72.79112 108.5195) + (xy 72.52888 108.5195) (xy 72.528872 108.5195) (xy 72.297772 108.549926) (xy 72.268884 108.55373) + (xy 72.082281 108.60373) (xy 72.015581 108.621602) (xy 72.015571 108.621605) (xy 71.773309 108.721953) + (xy 71.773299 108.721958) (xy 71.546196 108.853075) (xy 71.338148 109.012718) (xy 71.152718 109.198148) + (xy 70.993075 109.406196) (xy 70.861958 109.633299) (xy 70.861953 109.633309) (xy 70.761605 109.875571) + (xy 70.761602 109.875581) (xy 70.695362 110.122796) (xy 70.69373 110.128885) (xy 70.6595 110.388872) + (xy 67.6105 110.388872) (xy 67.6105 109.471456) (xy 67.599901 109.418173) (xy 67.585975 109.348164) + (xy 67.572051 109.278164) (xy 67.539212 109.198885) (xy 67.496632 109.096086) (xy 67.472203 109.059525) + (xy 67.387139 108.932217) (xy 67.244686 108.789764) (xy 67.244655 108.789735) (xy 66.896819 108.441899) + (xy 66.863334 108.380576) (xy 66.8605 108.354218) (xy 66.8605 107.737534) (xy 66.880185 107.670495) + (xy 66.932989 107.62474) (xy 66.971897 107.614176) (xy 67.012797 107.609999) (xy 67.179334 107.554814) + (xy 67.328656 107.462712) (xy 67.452712 107.338656) (xy 67.544814 107.189334) (xy 67.599999 107.022797) + (xy 67.6105 106.920009) (xy 67.610499 105.519992) (xy 67.610498 105.519983) (xy 68.1095 105.519983) + (xy 68.1095 106.920001) (xy 68.109501 106.920018) (xy 68.12 107.022796) (xy 68.120001 107.022799) + (xy 68.175185 107.189331) (xy 68.175187 107.189336) (xy 68.181516 107.199597) (xy 68.267288 107.338656) + (xy 68.391344 107.462712) (xy 68.540666 107.554814) (xy 68.707203 107.609999) (xy 68.809991 107.6205) + (xy 70.910008 107.620499) (xy 71.012797 107.609999) (xy 71.179334 107.554814) (xy 71.328656 107.462712) + (xy 71.346382 107.444986) (xy 72.635001 107.444986) (xy 72.645494 107.547697) (xy 72.700641 107.714119) + (xy 72.700643 107.714124) (xy 72.792684 107.863345) (xy 72.916654 107.987315) (xy 73.065875 108.079356) + (xy 73.06588 108.079358) (xy 73.232302 108.134505) (xy 73.232309 108.134506) (xy 73.335019 108.144999) + (xy 73.609999 108.144999) (xy 74.11 108.144999) (xy 74.384972 108.144999) (xy 74.384986 108.144998) + (xy 74.487697 108.134505) (xy 74.654119 108.079358) (xy 74.654124 108.079356) (xy 74.803345 107.987315) + (xy 74.927315 107.863345) (xy 75.019356 107.714124) (xy 75.019358 107.714119) (xy 75.074505 107.547697) + (xy 75.074506 107.54769) (xy 75.084999 107.444986) (xy 76.035001 107.444986) (xy 76.045494 107.547697) + (xy 76.100641 107.714119) (xy 76.100643 107.714124) (xy 76.192684 107.863345) (xy 76.316654 107.987315) + (xy 76.465875 108.079356) (xy 76.46588 108.079358) (xy 76.632302 108.134505) (xy 76.632309 108.134506) + (xy 76.735019 108.144999) (xy 77.009999 108.144999) (xy 77.51 108.144999) (xy 77.784972 108.144999) + (xy 77.784986 108.144998) (xy 77.887697 108.134505) (xy 78.054119 108.079358) (xy 78.054124 108.079356) + (xy 78.203345 107.987315) (xy 78.327315 107.863345) (xy 78.419356 107.714124) (xy 78.419358 107.714119) + (xy 78.474505 107.547697) (xy 78.474506 107.54769) (xy 78.484999 107.444986) (xy 78.485 107.444973) + (xy 78.485 107.3075) (xy 77.51 107.3075) (xy 77.51 108.144999) (xy 77.009999 108.144999) (xy 77.01 108.144998) + (xy 77.01 107.3075) (xy 76.035001 107.3075) (xy 76.035001 107.444986) (xy 75.084999 107.444986) + (xy 75.085 107.444973) (xy 75.085 107.3075) (xy 74.11 107.3075) (xy 74.11 108.144999) (xy 73.609999 108.144999) + (xy 73.61 108.144998) (xy 73.61 107.3075) (xy 72.635001 107.3075) (xy 72.635001 107.444986) (xy 71.346382 107.444986) + (xy 71.452712 107.338656) (xy 71.544814 107.189334) (xy 71.599999 107.022797) (xy 71.6105 106.920009) + (xy 71.610499 106.106999) (xy 71.630183 106.039961) (xy 71.682987 105.994206) (xy 71.734499 105.983) + (xy 72.761977 105.983) (xy 72.829016 106.002685) (xy 72.874771 106.055489) (xy 72.884715 106.124647) + (xy 72.85569 106.188203) (xy 72.849658 106.194681) (xy 72.792684 106.251654) (xy 72.700643 106.400875) + (xy 72.700641 106.40088) (xy 72.645494 106.567302) (xy 72.645493 106.567309) (xy 72.635 106.670013) + (xy 72.635 106.8075) (xy 75.084999 106.8075) (xy 75.084999 106.670028) (xy 75.084998 106.670013) + (xy 75.074505 106.567302) (xy 75.019358 106.40088) (xy 75.019356 106.400875) (xy 74.927315 106.251654) + (xy 74.870342 106.194681) (xy 74.836857 106.133358) (xy 74.841841 106.063666) (xy 74.883713 106.007733) + (xy 74.949177 105.983316) (xy 74.958023 105.983) (xy 76.161977 105.983) (xy 76.229016 106.002685) + (xy 76.274771 106.055489) (xy 76.284715 106.124647) (xy 76.25569 106.188203) (xy 76.249658 106.194681) + (xy 76.192684 106.251654) (xy 76.100643 106.400875) (xy 76.100641 106.40088) (xy 76.045494 106.567302) + (xy 76.045493 106.567309) (xy 76.035 106.670013) (xy 76.035 106.8075) (xy 78.484999 106.8075) (xy 78.484999 106.759281) + (xy 78.491237 106.738035) (xy 78.492817 106.715947) (xy 78.500889 106.705163) (xy 78.504684 106.692242) + (xy 78.521417 106.677742) (xy 78.534689 106.660014) (xy 78.547309 106.655306) (xy 78.557488 106.646487) + (xy 78.579405 106.643335) (xy 78.600153 106.635597) (xy 78.613313 106.638459) (xy 78.626646 106.636543) + (xy 78.646789 106.645742) (xy 78.668426 106.650449) (xy 78.686151 106.663717) (xy 78.690202 106.665568) + (xy 78.69668 106.6716) (xy 78.82318 106.7981) (xy 78.856665 106.859423) (xy 78.859499 106.885781) + (xy 78.859499 110.595939) (xy 78.839814 110.662978) (xy 78.78701 110.708733) (xy 78.728793 110.719418) + (xy 78.728793 110.7195) (xy 78.728347 110.7195) (xy 78.727399 110.719674) (xy 78.724741 110.7195) + (xy 78.724734 110.7195) (xy 78.495266 110.7195) (xy 78.495258 110.7195) (xy 78.278715 110.748009) + (xy 78.267762 110.749452) (xy 78.192941 110.7695) (xy 78.046112 110.808842) (xy 77.834123 110.89665) + (xy 77.834109 110.896657) (xy 77.635382 111.011392) (xy 77.453338 111.151081) (xy 77.291081 111.313338) + (xy 77.151392 111.495382) (xy 77.036657 111.694109) (xy 77.03665 111.694123) (xy 76.948842 111.906112) + (xy 76.889453 112.127759) (xy 76.889451 112.12777) (xy 76.8595 112.355258) (xy 76.8595 112.584741) + (xy 76.882537 112.759716) (xy 76.889452 112.812238) (xy 76.935256 112.983181) (xy 76.948842 113.033887) + (xy 77.03665 113.245876) (xy 77.036657 113.24589) (xy 77.068739 113.301457) (xy 77.147667 113.438166) + (xy 77.151392 113.444617) (xy 77.291081 113.626661) (xy 77.291089 113.62667) (xy 77.45333 113.788911) + (xy 77.453338 113.788918) (xy 77.453339 113.788919) (xy 77.496436 113.821989) (xy 77.635382 113.928607) + (xy 77.635385 113.928608) (xy 77.635388 113.928611) (xy 77.834112 114.043344) (xy 77.834117 114.043346) + (xy 77.834123 114.043349) (xy 77.92548 114.08119) (xy 78.046113 114.131158) (xy 78.267762 114.190548) + (xy 78.495266 114.2205) (xy 78.495273 114.2205) (xy 78.724727 114.2205) (xy 78.724734 114.2205) + (xy 78.952238 114.190548) (xy 79.173887 114.131158) (xy 79.385888 114.043344) (xy 79.584612 113.928611) + (xy 79.766661 113.788919) (xy 79.766665 113.788914) (xy 79.76667 113.788911) (xy 79.928911 113.62667) + (xy 79.928914 113.626665) (xy 79.928919 113.626661) (xy 80.068611 113.444612) (xy 80.183344 113.245888) + (xy 80.271158 113.033887) (xy 80.330548 112.812238) (xy 80.3605 112.584734) (xy 80.3605 112.355266) + (xy 80.342788 112.220736) (xy 80.353553 112.151705) (xy 80.37804 112.116879) (xy 80.637139 111.857782) + (xy 80.746631 111.693915) (xy 80.822051 111.511836) (xy 80.8605 111.318541) (xy 80.8605 111.12146) + (xy 80.8605 111.121459) (xy 80.8605 111.115347) (xy 80.860499 111.115325) (xy 80.860499 108.721953) + (xy 80.8605 106.321459) (xy 80.837237 106.204507) (xy 80.822051 106.128164) (xy 80.788053 106.046086) + (xy 80.785516 106.039961) (xy 80.746635 105.946092) (xy 80.746628 105.946079) (xy 80.637139 105.782218) + (xy 80.637136 105.782214) (xy 80.494686 105.639764) (xy 80.494655 105.639735) (xy 79.203979 104.349059) + (xy 79.203959 104.349037) (xy 79.060285 104.205363) (xy 79.060281 104.20536) (xy 78.89642 104.095871) + (xy 78.896411 104.095866) (xy 78.774587 104.045405) (xy 78.774585 104.045404) (xy 78.767665 104.042538) + (xy 78.714336 104.020449) (xy 78.616997 104.001087) (xy 78.582006 103.994126) (xy 78.521043 103.982) + (xy 78.521041 103.982) (xy 78.124866 103.982) (xy 78.059768 103.963538) (xy 78.054338 103.960188) + (xy 78.054335 103.960186) (xy 78.054334 103.960186) (xy 77.887797 103.905001) (xy 77.887795 103.905) + (xy 77.78501 103.8945) (xy 76.734998 103.8945) (xy 76.73498 103.894501) (xy 76.632203 103.905) (xy 76.6322 103.905001) + (xy 76.465668 103.960185) (xy 76.465661 103.960188) (xy 76.460232 103.963538) (xy 76.395134 103.982) + (xy 74.724866 103.982) (xy 74.659768 103.963538) (xy 74.654338 103.960188) (xy 74.654335 103.960186) + (xy 74.654334 103.960186) (xy 74.487797 103.905001) (xy 74.487795 103.905) (xy 74.38501 103.8945) + (xy 73.334998 103.8945) (xy 73.33498 103.894501) (xy 73.232203 103.905) (xy 73.2322 103.905001) + (xy 73.065668 103.960185) (xy 73.065661 103.960188) (xy 73.060232 103.963538) (xy 72.995134 103.982) + (xy 70.998957 103.982) (xy 70.934988 103.994724) (xy 70.903003 104.001087) (xy 70.805667 104.020447) + (xy 70.805659 104.02045) (xy 70.752334 104.042537) (xy 70.752334 104.042538) (xy 70.745413 104.045405) + (xy 70.623589 104.095866) (xy 70.623579 104.095871) (xy 70.494681 104.181999) (xy 70.46637 104.200916) + (xy 70.465039 104.201805) (xy 70.459722 104.205357) (xy 70.459714 104.205364) (xy 69.881897 104.783181) + (xy 69.820574 104.816666) (xy 69.794216 104.8195) (xy 68.809998 104.8195) (xy 68.80998 104.819501) + (xy 68.707203 104.83) (xy 68.7072 104.830001) (xy 68.540668 104.885185) (xy 68.540663 104.885187) + (xy 68.391342 104.977289) (xy 68.267289 105.101342) (xy 68.175187 105.250663) (xy 68.175186 105.250666) + (xy 68.120001 105.417203) (xy 68.120001 105.417204) (xy 68.12 105.417204) (xy 68.1095 105.519983) + (xy 67.610498 105.519983) (xy 67.610467 105.519683) (xy 67.599999 105.417203) (xy 67.599998 105.4172) + (xy 67.590915 105.389789) (xy 67.544814 105.250666) (xy 67.452712 105.101344) (xy 67.328656 104.977288) + (xy 67.179334 104.885186) (xy 67.012797 104.830001) (xy 67.012795 104.83) (xy 66.910016 104.8195) + (xy 66.910009 104.8195) (xy 66.7345 104.8195) (xy 66.667461 104.799815) (xy 66.621706 104.747011) + (xy 66.6105 104.6955) (xy 66.6105 102.982229) (xy 66.630185 102.91519) (xy 66.646819 102.894548) + (xy 67.329548 102.211819) (xy 67.390871 102.178334) (xy 67.417229 102.1755) (xy 79.62392 102.1755) + (xy 79.721462 102.156096) (xy 79.768913 102.146658) (xy 79.905495 102.090084) (xy 79.998164 102.028165) + (xy 80.028416 102.007952) (xy 81.549548 100.486818) (xy 81.610871 100.453334) (xy 81.637229 100.4505) + (xy 86.268771 100.4505) (xy 86.33581 100.470185) (xy 86.381565 100.522989) (xy 86.391509 100.592147) + (xy 86.362484 100.655703) (xy 86.356452 100.662181) (xy 84.077047 102.941584) (xy 84.077043 102.941589) + (xy 84.043533 102.991743) (xy 84.043533 102.991744) (xy 83.994913 103.064508) (xy 83.938343 103.201082) + (xy 83.93834 103.201092) (xy 83.9095 103.346079) (xy 83.9095 104.6955) (xy 83.889815 104.762539) + (xy 83.837011 104.808294) (xy 83.785501 104.8195) (xy 83.609999 104.8195) (xy 83.60998 104.819501) + (xy 83.507203 104.83) (xy 83.5072 104.830001) (xy 83.340668 104.885185) (xy 83.340663 104.885187) + (xy 83.191342 104.977289) (xy 83.067289 105.101342) (xy 82.975187 105.250663) (xy 82.975186 105.250666) + (xy 82.920001 105.417203) (xy 82.920001 105.417204) (xy 82.92 105.417204) (xy 82.9095 105.519983) + (xy 82.9095 106.920001) (xy 82.909501 106.920018) (xy 82.92 107.022796) (xy 82.920001 107.022799) + (xy 82.975185 107.189331) (xy 82.975187 107.189336) (xy 82.981516 107.199597) (xy 83.067288 107.338656) + (xy 83.191344 107.462712) (xy 83.340666 107.554814) (xy 83.507203 107.609999) (xy 83.609991 107.6205) + (xy 83.818833 107.620499) (xy 83.885872 107.640183) (xy 83.931627 107.692987) (xy 83.942833 107.744499) + (xy 83.942833 111.020103) (xy 83.923148 111.087142) (xy 83.894321 111.118478) (xy 83.786672 111.201081) + (xy 83.624414 111.363338) (xy 83.484725 111.545382) (xy 83.36999 111.744109) (xy 83.369983 111.744123) + (xy 83.282175 111.956112) (xy 83.222786 112.177759) (xy 83.222784 112.17777) (xy 83.192833 112.405258) + (xy 83.192833 112.634741) (xy 83.216345 112.81332) (xy 83.222785 112.862238) (xy 83.268778 113.033887) + (xy 83.282175 113.083887) (xy 83.369983 113.295876) (xy 83.369989 113.295888) (xy 83.459701 113.451275) + (xy 83.484725 113.494617) (xy 83.624414 113.676661) (xy 83.624422 113.67667) (xy 83.786663 113.838911) + (xy 83.786671 113.838918) (xy 83.786672 113.838919) (xy 83.797335 113.847101) (xy 83.968715 113.978607) + (xy 83.968718 113.978608) (xy 83.968721 113.978611) (xy 84.167445 114.093344) (xy 84.16745 114.093346) + (xy 84.167456 114.093349) (xy 84.250986 114.127948) (xy 84.379446 114.181158) (xy 84.601095 114.240548) + (xy 84.828599 114.2705) (xy 84.828606 114.2705) (xy 85.05806 114.2705) (xy 85.058067 114.2705) (xy 85.285571 114.240548) + (xy 85.50722 114.181158) (xy 85.719221 114.093344) (xy 85.917945 113.978611) (xy 86.099994 113.838919) + (xy 86.099998 113.838914) (xy 86.100003 113.838911) (xy 86.262244 113.67667) (xy 86.262249 113.676664) + (xy 86.262252 113.676661) (xy 86.401944 113.494612) (xy 86.516677 113.295888) (xy 86.604491 113.083887) + (xy 86.663881 112.862238) (xy 86.693833 112.634734) (xy 86.693833 112.405266) (xy 86.663881 112.177762) + (xy 86.604491 111.956113) (xy 86.516677 111.744112) (xy 86.401944 111.545388) (xy 86.401941 111.545385) + (xy 86.40194 111.545382) (xy 86.289941 111.399424) (xy 86.262252 111.363339) (xy 86.099994 111.201081) + (xy 85.992345 111.118478) (xy 85.951143 111.06205) (xy 85.943833 111.020103) (xy 85.943833 110.438872) + (xy 88.992833 110.438872) (xy 88.992833 110.701127) (xy 89.016384 110.880001) (xy 89.027063 110.961116) + (xy 89.094781 111.213844) (xy 89.094935 111.214418) (xy 89.094938 111.214428) (xy 89.195286 111.45669) + (xy 89.195291 111.4567) (xy 89.326408 111.683803) (xy 89.486051 111.891851) (xy 89.486059 111.89186) + (xy 89.671473 112.077274) (xy 89.671481 112.077281) (xy 89.671482 112.077282) (xy 89.709054 112.106112) + (xy 89.879529 112.236924) (xy 90.106632 112.368041) (xy 90.106642 112.368046) (xy 90.348904 112.468394) + (xy 90.348914 112.468398) (xy 90.602217 112.53627) (xy 90.862213 112.5705) (xy 90.86222 112.5705) + (xy 91.124446 112.5705) (xy 91.124453 112.5705) (xy 91.384449 112.53627) (xy 91.637752 112.468398) + (xy 91.88003 112.368043) (xy 92.107136 112.236924) (xy 92.315184 112.077282) (xy 92.315188 112.077277) + (xy 92.315193 112.077274) (xy 92.500607 111.89186) (xy 92.50061 111.891855) (xy 92.500615 111.891851) + (xy 92.660257 111.683803) (xy 92.791376 111.456697) (xy 92.795027 111.447884) (xy 92.83326 111.35558) + (xy 92.891731 111.214419) (xy 92.959603 110.961116) (xy 92.993833 110.70112) (xy 92.993833 110.43888) + (xy 92.959603 110.178884) (xy 92.891731 109.925581) (xy 92.876392 109.888549) (xy 92.791379 109.683309) + (xy 92.791374 109.683299) (xy 92.660257 109.456196) (xy 92.513892 109.265452) (xy 92.500615 109.248149) + (xy 92.500614 109.248148) (xy 92.500607 109.24814) (xy 92.315193 109.062726) (xy 92.315184 109.062718) + (xy 92.107136 108.903075) (xy 91.880033 108.771958) (xy 91.880023 108.771953) (xy 91.637761 108.671605) + (xy 91.637754 108.671603) (xy 91.637752 108.671602) (xy 91.384449 108.60373) (xy 91.326672 108.596123) + (xy 91.12446 108.5695) (xy 91.124453 108.5695) (xy 90.862213 108.5695) (xy 90.862205 108.5695) (xy 90.631105 108.599926) + (xy 90.602217 108.60373) (xy 90.396976 108.658724) (xy 90.348914 108.671602) (xy 90.348904 108.671605) + (xy 90.106642 108.771953) (xy 90.106632 108.771958) (xy 89.879529 108.903075) (xy 89.671481 109.062718) + (xy 89.486051 109.248148) (xy 89.326408 109.456196) (xy 89.195291 109.683299) (xy 89.195286 109.683309) + (xy 89.094938 109.925571) (xy 89.094935 109.925581) (xy 89.027063 110.178884) (xy 89.026539 110.182862) + (xy 88.992833 110.438872) (xy 85.943833 110.438872) (xy 85.943833 107.645917) (xy 85.944106 107.644986) + (xy 91.035001 107.644986) (xy 91.045494 107.747697) (xy 91.100641 107.914119) (xy 91.100643 107.914124) + (xy 91.192684 108.063345) (xy 91.316654 108.187315) (xy 91.465875 108.279356) (xy 91.46588 108.279358) + (xy 91.632302 108.334505) (xy 91.632309 108.334506) (xy 91.735019 108.344999) (xy 92.009999 108.344999) + (xy 92.51 108.344999) (xy 92.784972 108.344999) (xy 92.784986 108.344998) (xy 92.887697 108.334505) + (xy 93.054119 108.279358) (xy 93.054124 108.279356) (xy 93.203345 108.187315) (xy 93.327315 108.063345) + (xy 93.419356 107.914124) (xy 93.419358 107.914119) (xy 93.474505 107.747697) (xy 93.474506 107.74769) + (xy 93.484999 107.644986) (xy 95.435001 107.644986) (xy 95.445494 107.747697) (xy 95.500641 107.914119) + (xy 95.500643 107.914124) (xy 95.592684 108.063345) (xy 95.716654 108.187315) (xy 95.865875 108.279356) + (xy 95.86588 108.279358) (xy 96.032302 108.334505) (xy 96.032309 108.334506) (xy 96.135019 108.344999) + (xy 96.409999 108.344999) (xy 96.91 108.344999) (xy 97.184972 108.344999) (xy 97.184986 108.344998) + (xy 97.287697 108.334505) (xy 97.454119 108.279358) (xy 97.454124 108.279356) (xy 97.603345 108.187315) + (xy 97.727315 108.063345) (xy 97.819356 107.914124) (xy 97.819358 107.914119) (xy 97.874505 107.747697) + (xy 97.874506 107.74769) (xy 97.884999 107.644986) (xy 97.885 107.644973) (xy 97.885 107.5075) (xy 96.91 107.5075) + (xy 96.91 108.344999) (xy 96.409999 108.344999) (xy 96.41 108.344998) (xy 96.41 107.5075) (xy 95.435001 107.5075) + (xy 95.435001 107.644986) (xy 93.484999 107.644986) (xy 93.485 107.644973) (xy 93.485 107.5075) + (xy 92.51 107.5075) (xy 92.51 108.344999) (xy 92.009999 108.344999) (xy 92.01 108.344998) (xy 92.01 107.5075) + (xy 91.035001 107.5075) (xy 91.035001 107.644986) (xy 85.944106 107.644986) (xy 85.963518 107.578878) + (xy 86.002734 107.54038) (xy 86.128656 107.462712) (xy 86.252712 107.338656) (xy 86.344814 107.189334) + (xy 86.399999 107.022797) (xy 86.4105 106.920009) (xy 86.410499 105.519992) (xy 86.410498 105.519983) + (xy 86.9095 105.519983) (xy 86.9095 106.920001) (xy 86.909501 106.920018) (xy 86.92 107.022796) + (xy 86.920001 107.022799) (xy 86.975185 107.189331) (xy 86.975187 107.189336) (xy 86.981516 107.199597) + (xy 87.067288 107.338656) (xy 87.191344 107.462712) (xy 87.340666 107.554814) (xy 87.507203 107.609999) + (xy 87.609991 107.6205) (xy 89.710008 107.620499) (xy 89.812797 107.609999) (xy 89.979334 107.554814) + (xy 90.128656 107.462712) (xy 90.252712 107.338656) (xy 90.344814 107.189334) (xy 90.399999 107.022797) + (xy 90.4105 106.920009) (xy 90.410499 106.306999) (xy 90.430183 106.239961) (xy 90.482987 106.194206) + (xy 90.534499 106.183) (xy 91.161977 106.183) (xy 91.229016 106.202685) (xy 91.274771 106.255489) + (xy 91.284715 106.324647) (xy 91.25569 106.388203) (xy 91.249658 106.394681) (xy 91.192684 106.451654) + (xy 91.100643 106.600875) (xy 91.100641 106.60088) (xy 91.045494 106.767302) (xy 91.045493 106.767309) + (xy 91.035 106.870013) (xy 91.035 107.0075) (xy 93.484999 107.0075) (xy 93.484999 106.870028) (xy 93.484998 106.870013) + (xy 93.474505 106.767302) (xy 93.419358 106.60088) (xy 93.419356 106.600875) (xy 93.327315 106.451654) + (xy 93.270342 106.394681) (xy 93.236857 106.333358) (xy 93.241841 106.263666) (xy 93.283713 106.207733) + (xy 93.349177 106.183316) (xy 93.358023 106.183) (xy 95.561977 106.183) (xy 95.629016 106.202685) + (xy 95.674771 106.255489) (xy 95.684715 106.324647) (xy 95.65569 106.388203) (xy 95.649658 106.394681) + (xy 95.592684 106.451654) (xy 95.500643 106.600875) (xy 95.500641 106.60088) (xy 95.445494 106.767302) + (xy 95.445493 106.767309) (xy 95.435 106.870013) (xy 95.435 107.0075) (xy 97.884999 107.0075) (xy 97.884999 106.870028) + (xy 97.884998 106.870013) (xy 97.874505 106.767302) (xy 97.819358 106.60088) (xy 97.819356 106.600875) + (xy 97.727315 106.451654) (xy 97.670342 106.394681) (xy 97.659729 106.375244) (xy 97.645229 106.358511) + (xy 97.643312 106.345179) (xy 97.636857 106.333358) (xy 97.638436 106.311271) (xy 97.635285 106.289353) + (xy 97.64088 106.277101) (xy 97.641841 106.263666) (xy 97.655111 106.245939) (xy 97.66431 106.225797) + (xy 97.675641 106.218514) (xy 97.683713 106.207733) (xy 97.704458 106.199995) (xy 97.723088 106.188023) + (xy 97.745006 106.184871) (xy 97.749177 106.183316) (xy 97.758023 106.183) (xy 97.956718 106.183) + (xy 98.023757 106.202685) (xy 98.044399 106.219319) (xy 98.423181 106.598101) (xy 98.456666 106.659424) + (xy 98.4595 106.685782) (xy 98.4595 110.754216) (xy 98.439815 110.821255) (xy 98.423181 110.841897) + (xy 98.15652 111.108557) (xy 98.095197 111.142042) (xy 98.025505 111.137058) (xy 97.993352 111.119251) + (xy 97.91795 111.061392) (xy 97.899841 111.050937) (xy 97.740671 110.95904) (xy 97.719223 110.946657) + (xy 97.719209 110.94665) (xy 97.50722 110.858842) (xy 97.500275 110.856981) (xy 97.285571 110.799452) + (xy 97.247548 110.794446) (xy 97.058074 110.7695) (xy 97.058067 110.7695) (xy 96.828599 110.7695) + (xy 96.828591 110.7695) (xy 96.612048 110.798009) (xy 96.601095 110.799452) (xy 96.566051 110.808842) + (xy 96.379445 110.858842) (xy 96.167456 110.94665) (xy 96.167442 110.946657) (xy 95.968715 111.061392) + (xy 95.786671 111.201081) (xy 95.624414 111.363338) (xy 95.484725 111.545382) (xy 95.36999 111.744109) + (xy 95.369983 111.744123) (xy 95.282175 111.956112) (xy 95.222786 112.177759) (xy 95.222784 112.17777) + (xy 95.192833 112.405258) (xy 95.192833 112.634741) (xy 95.216345 112.81332) (xy 95.222785 112.862238) + (xy 95.268778 113.033887) (xy 95.282175 113.083887) (xy 95.369983 113.295876) (xy 95.369989 113.295888) + (xy 95.459701 113.451275) (xy 95.484725 113.494617) (xy 95.624414 113.676661) (xy 95.624422 113.67667) + (xy 95.786663 113.838911) (xy 95.786671 113.838918) (xy 95.786672 113.838919) (xy 95.797335 113.847101) + (xy 95.968715 113.978607) (xy 95.968718 113.978608) (xy 95.968721 113.978611) (xy 96.167445 114.093344) + (xy 96.16745 114.093346) (xy 96.167456 114.093349) (xy 96.250986 114.127948) (xy 96.379446 114.181158) + (xy 96.601095 114.240548) (xy 96.828599 114.2705) (xy 96.828606 114.2705) (xy 97.05806 114.2705) + (xy 97.058067 114.2705) (xy 97.285571 114.240548) (xy 97.50722 114.181158) (xy 97.719221 114.093344) + (xy 97.917945 113.978611) (xy 98.099994 113.838919) (xy 98.099998 113.838914) (xy 98.100003 113.838911) + (xy 98.262244 113.67667) (xy 98.262249 113.676664) (xy 98.262252 113.676661) (xy 98.375922 113.528523) + (xy 98.430303 113.488078) (xy 98.439961 113.484412) (xy 98.451836 113.482051) (xy 98.511788 113.457218) + (xy 98.633914 113.406632) (xy 98.797782 113.297139) (xy 98.937139 113.157782) (xy 98.937139 113.15778) + (xy 98.947347 113.147573) (xy 98.947348 113.14757) (xy 100.23714 111.857781) (xy 100.346632 111.693914) + (xy 100.422052 111.511835) (xy 100.4605 111.31854) (xy 100.4605 111.121459) (xy 100.4605 106.324675) + (xy 100.460501 106.324647) (xy 100.460501 106.121457) (xy 100.4605 106.121455) (xy 100.449005 106.063666) + (xy 100.422052 105.928165) (xy 100.355498 105.76749) (xy 100.346633 105.746088) (xy 100.346628 105.746079) + (xy 100.23714 105.582219) (xy 100.237137 105.582215) (xy 99.206709 104.551789) (xy 99.206706 104.551785) + (xy 99.206706 104.551786) (xy 99.199639 104.544719) (xy 99.199639 104.544718) (xy 99.060282 104.405361) + (xy 99.060281 104.40536) (xy 99.06028 104.405359) (xy 98.89642 104.295871) (xy 98.896411 104.295866) + (xy 98.774971 104.245564) (xy 98.774969 104.245563) (xy 98.767665 104.242538) (xy 98.714336 104.220449) + (xy 98.599899 104.197686) (xy 98.586396 104.195) (xy 98.521043 104.182) (xy 98.521041 104.182) (xy 97.524866 104.182) + (xy 97.459768 104.163538) (xy 97.454338 104.160188) (xy 97.454335 104.160186) (xy 97.454334 104.160186) + (xy 97.287797 104.105001) (xy 97.287795 104.105) (xy 97.18501 104.0945) (xy 96.134998 104.0945) + (xy 96.13498 104.094501) (xy 96.032203 104.105) (xy 96.0322 104.105001) (xy 95.865668 104.160185) + (xy 95.865661 104.160188) (xy 95.860232 104.163538) (xy 95.795134 104.182) (xy 93.124866 104.182) + (xy 93.059768 104.163538) (xy 93.054338 104.160188) (xy 93.054335 104.160186) (xy 93.054334 104.160186) + (xy 92.887797 104.105001) (xy 92.887795 104.105) (xy 92.78501 104.0945) (xy 91.734998 104.0945) + (xy 91.73498 104.094501) (xy 91.632203 104.105) (xy 91.6322 104.105001) (xy 91.465668 104.160185) + (xy 91.465661 104.160188) (xy 91.460232 104.163538) (xy 91.395134 104.182) (xy 89.802175 104.182) + (xy 89.802155 104.181999) (xy 89.796041 104.181999) (xy 89.59896 104.181999) (xy 89.598957 104.181999) + (xy 89.405672 104.220446) (xy 89.405664 104.220448) (xy 89.223588 104.295866) (xy 89.223579 104.295871) + (xy 89.059719 104.405359) (xy 89.059715 104.405362) (xy 88.681896 104.783181) (xy 88.620573 104.816666) + (xy 88.594215 104.8195) (xy 87.609998 104.8195) (xy 87.60998 104.819501) (xy 87.507203 104.83) (xy 87.5072 104.830001) + (xy 87.340668 104.885185) (xy 87.340663 104.885187) (xy 87.191342 104.977289) (xy 87.067289 105.101342) + (xy 86.975187 105.250663) (xy 86.975186 105.250666) (xy 86.920001 105.417203) (xy 86.920001 105.417204) + (xy 86.92 105.417204) (xy 86.9095 105.519983) (xy 86.410498 105.519983) (xy 86.410467 105.519683) + (xy 86.399999 105.417203) (xy 86.399998 105.4172) (xy 86.390915 105.389789) (xy 86.344814 105.250666) + (xy 86.252712 105.101344) (xy 86.128656 104.977288) (xy 85.979334 104.885186) (xy 85.812797 104.830001) + (xy 85.812795 104.83) (xy 85.710016 104.8195) (xy 85.710009 104.8195) (xy 85.5345 104.8195) (xy 85.467461 104.799815) + (xy 85.421706 104.747011) (xy 85.4105 104.6955) (xy 85.4105 103.782229) (xy 85.430185 103.71519) + (xy 85.446819 103.694548) (xy 87.384548 101.756819) (xy 87.445871 101.723334) (xy 87.472229 101.7205) + (xy 103.99877 101.7205) (xy 104.065809 101.740185) (xy 104.111564 101.792989) (xy 104.121508 101.862147) + (xy 104.092483 101.925703) (xy 104.086451 101.932181) (xy 102.277047 103.741584) (xy 102.277045 103.741586) + (xy 102.240413 103.796414) (xy 102.240411 103.796417) (xy 102.194919 103.864499) (xy 102.194912 103.864511) + (xy 102.138343 104.001082) (xy 102.138342 104.001087) (xy 102.1095 104.146079) (xy 102.1095 104.6955) + (xy 102.089815 104.762539) (xy 102.037011 104.808294) (xy 101.985501 104.8195) (xy 101.809999 104.8195) + (xy 101.80998 104.819501) (xy 101.707203 104.83) (xy 101.7072 104.830001) (xy 101.540668 104.885185) + (xy 101.540663 104.885187) (xy 101.391342 104.977289) (xy 101.267289 105.101342) (xy 101.175187 105.250663) + (xy 101.175186 105.250666) (xy 101.120001 105.417203) (xy 101.120001 105.417204) (xy 101.12 105.417204) + (xy 101.1095 105.519983) (xy 101.1095 106.920001) (xy 101.109501 106.920018) (xy 101.12 107.022796) + (xy 101.120001 107.022799) (xy 101.175185 107.189331) (xy 101.175187 107.189336) (xy 101.181516 107.199597) + (xy 101.267288 107.338656) (xy 101.391344 107.462712) (xy 101.540666 107.554814) (xy 101.707203 107.609999) + (xy 101.748103 107.614177) (xy 101.812793 107.640573) (xy 101.852945 107.697753) (xy 101.8595 107.737534) + (xy 101.8595 109.518541) (xy 101.869637 109.569501) (xy 101.894583 109.694916) (xy 101.894584 109.694919) + (xy 101.894583 109.694919) (xy 101.897948 109.711831) (xy 101.897949 109.711837) (xy 101.973364 109.893907) + (xy 101.973371 109.89392) (xy 102.08286 110.057781) (xy 102.082863 110.057785) (xy 102.226537 110.201459) + (xy 102.226559 110.201479) (xy 102.239848 110.214768) (xy 102.273333 110.276091) (xy 102.276167 110.302449) + (xy 102.276167 110.970103) (xy 102.256482 111.037142) (xy 102.227655 111.068478) (xy 102.120006 111.151081) + (xy 101.957748 111.313338) (xy 101.818059 111.495382) (xy 101.703324 111.694109) (xy 101.703317 111.694123) + (xy 101.615509 111.906112) (xy 101.55612 112.127759) (xy 101.556118 112.12777) (xy 101.526167 112.355258) + (xy 101.526167 112.584741) (xy 101.549204 112.759716) (xy 101.556119 112.812238) (xy 101.601923 112.983181) + (xy 101.615509 113.033887) (xy 101.703317 113.245876) (xy 101.703324 113.24589) (xy 101.735406 113.301457) + (xy 101.814334 113.438166) (xy 101.818059 113.444617) (xy 101.957748 113.626661) (xy 101.957756 113.62667) + (xy 102.119997 113.788911) (xy 102.120005 113.788918) (xy 102.120006 113.788919) (xy 102.163103 113.821989) + (xy 102.302049 113.928607) (xy 102.302052 113.928608) (xy 102.302055 113.928611) (xy 102.500779 114.043344) + (xy 102.500784 114.043346) (xy 102.50079 114.043349) (xy 102.592147 114.08119) (xy 102.71278 114.131158) + (xy 102.934429 114.190548) (xy 103.161933 114.2205) (xy 103.16194 114.2205) (xy 103.391394 114.2205) + (xy 103.391401 114.2205) (xy 103.618905 114.190548) (xy 103.840554 114.131158) (xy 104.052555 114.043344) + (xy 104.251279 113.928611) (xy 104.433328 113.788919) (xy 104.433332 113.788914) (xy 104.433337 113.788911) + (xy 104.595578 113.62667) (xy 104.595581 113.626665) (xy 104.595586 113.626661) (xy 104.735278 113.444612) + (xy 104.850011 113.245888) (xy 104.937825 113.033887) (xy 104.997215 112.812238) (xy 105.027167 112.584734) + (xy 105.027167 112.355266) (xy 104.997215 112.127762) (xy 104.937825 111.906113) (xy 104.887857 111.78548) + (xy 104.850016 111.694123) (xy 104.850013 111.694117) (xy 104.850011 111.694112) (xy 104.735278 111.495388) + (xy 104.735275 111.495385) (xy 104.735274 111.495382) (xy 104.599578 111.318542) (xy 104.595586 111.313339) + (xy 104.433328 111.151081) (xy 104.325679 111.068478) (xy 104.284477 111.01205) (xy 104.277167 110.970103) + (xy 104.277167 110.388872) (xy 107.326167 110.388872) (xy 107.326167 110.651127) (xy 107.350826 110.838416) + (xy 107.360397 110.911116) (xy 107.428269 111.164418) (xy 107.428272 111.164428) (xy 107.52862 111.40669) + (xy 107.528623 111.406695) (xy 107.528624 111.406697) (xy 107.552033 111.447243) (xy 107.659742 111.633803) + (xy 107.819385 111.841851) (xy 107.819393 111.84186) (xy 108.004807 112.027274) (xy 108.004815 112.027281) + (xy 108.212863 112.186924) (xy 108.439966 112.318041) (xy 108.439976 112.318046) (xy 108.67959 112.417297) + (xy 108.682248 112.418398) (xy 108.935551 112.48627) (xy 109.195547 112.5205) (xy 109.195554 112.5205) + (xy 109.45778 112.5205) (xy 109.457787 112.5205) (xy 109.717783 112.48627) (xy 109.971086 112.418398) + (xy 110.213364 112.318043) (xy 110.44047 112.186924) (xy 110.648518 112.027282) (xy 110.648522 112.027277) + (xy 110.648527 112.027274) (xy 110.833941 111.84186) (xy 110.833944 111.841855) (xy 110.833949 111.841851) + (xy 110.993591 111.633803) (xy 111.12471 111.406697) (xy 111.135256 111.381238) (xy 111.168629 111.300668) + (xy 111.225065 111.164419) (xy 111.292937 110.911116) (xy 111.327167 110.65112) (xy 111.327167 110.38888) + (xy 111.292937 110.128884) (xy 111.225065 109.875581) (xy 111.225061 109.875571) (xy 111.124713 109.633309) + (xy 111.124708 109.633299) (xy 110.993591 109.406196) (xy 110.833948 109.198148) (xy 110.833941 109.19814) + (xy 110.648527 109.012726) (xy 110.648518 109.012718) (xy 110.44047 108.853075) (xy 110.213367 108.721958) + (xy 110.213357 108.721953) (xy 109.971095 108.621605) (xy 109.971088 108.621603) (xy 109.971086 108.621602) + (xy 109.717783 108.55373) (xy 109.660006 108.546123) (xy 109.457794 108.5195) (xy 109.457787 108.5195) + (xy 109.195547 108.5195) (xy 109.195539 108.5195) (xy 108.964439 108.549926) (xy 108.935551 108.55373) + (xy 108.748948 108.60373) (xy 108.682248 108.621602) (xy 108.682238 108.621605) (xy 108.439976 108.721953) + (xy 108.439966 108.721958) (xy 108.212863 108.853075) (xy 108.004815 109.012718) (xy 107.819385 109.198148) + (xy 107.659742 109.406196) (xy 107.528625 109.633299) (xy 107.52862 109.633309) (xy 107.428272 109.875571) + (xy 107.428269 109.875581) (xy 107.362029 110.122796) (xy 107.360397 110.128885) (xy 107.326167 110.388872) + (xy 104.277167 110.388872) (xy 104.277167 109.738123) (xy 104.249123 109.597141) (xy 104.238718 109.544832) + (xy 104.237321 109.54146) (xy 104.216628 109.491501) (xy 104.18045 109.404159) (xy 104.163302 109.362759) + (xy 104.163295 109.362746) (xy 104.053806 109.198884) (xy 103.911353 109.056431) (xy 103.911322 109.056402) + (xy 103.896819 109.041899) (xy 103.863334 108.980576) (xy 103.8605 108.954218) (xy 103.8605 107.737534) + (xy 103.876664 107.682486) (xy 110.435001 107.682486) (xy 110.445494 107.785197) (xy 110.500641 107.951619) + (xy 110.500643 107.951624) (xy 110.592684 108.100845) (xy 110.716654 108.224815) (xy 110.865875 108.316856) + (xy 110.86588 108.316858) (xy 111.032302 108.372005) (xy 111.032309 108.372006) (xy 111.135019 108.382499) + (xy 111.409999 108.382499) (xy 111.91 108.382499) (xy 112.184972 108.382499) (xy 112.184986 108.382498) + (xy 112.287697 108.372005) (xy 112.454119 108.316858) (xy 112.454124 108.316856) (xy 112.603345 108.224815) + (xy 112.727315 108.100845) (xy 112.819356 107.951624) (xy 112.819358 107.951619) (xy 112.874505 107.785197) + (xy 112.874506 107.78519) (xy 112.884999 107.682486) (xy 114.835001 107.682486) (xy 114.845494 107.785197) + (xy 114.900641 107.951619) (xy 114.900643 107.951624) (xy 114.992684 108.100845) (xy 115.116654 108.224815) + (xy 115.265875 108.316856) (xy 115.26588 108.316858) (xy 115.432302 108.372005) (xy 115.432309 108.372006) + (xy 115.535019 108.382499) (xy 115.809999 108.382499) (xy 116.31 108.382499) (xy 116.584972 108.382499) + (xy 116.584986 108.382498) (xy 116.687697 108.372005) (xy 116.854119 108.316858) (xy 116.854124 108.316856) + (xy 117.003345 108.224815) (xy 117.127315 108.100845) (xy 117.219356 107.951624) (xy 117.219358 107.951619) + (xy 117.274505 107.785197) (xy 117.274506 107.78519) (xy 117.284999 107.682486) (xy 117.285 107.682473) + (xy 117.285 107.545) (xy 116.31 107.545) (xy 116.31 108.382499) (xy 115.809999 108.382499) (xy 115.81 108.382498) + (xy 115.81 107.545) (xy 114.835001 107.545) (xy 114.835001 107.682486) (xy 112.884999 107.682486) + (xy 112.885 107.682473) (xy 112.885 107.545) (xy 111.91 107.545) (xy 111.91 108.382499) (xy 111.409999 108.382499) + (xy 111.41 108.382498) (xy 111.41 107.545) (xy 110.435001 107.545) (xy 110.435001 107.682486) (xy 103.876664 107.682486) + (xy 103.880185 107.670495) (xy 103.932989 107.62474) (xy 103.971897 107.614176) (xy 104.012797 107.609999) + (xy 104.179334 107.554814) (xy 104.328656 107.462712) (xy 104.452712 107.338656) (xy 104.544814 107.189334) + (xy 104.599999 107.022797) (xy 104.6105 106.920009) (xy 104.610499 105.519992) (xy 104.610498 105.519983) + (xy 105.1095 105.519983) (xy 105.1095 106.920001) (xy 105.109501 106.920018) (xy 105.12 107.022796) + (xy 105.120001 107.022799) (xy 105.175185 107.189331) (xy 105.175187 107.189336) (xy 105.181516 107.199597) + (xy 105.267288 107.338656) (xy 105.391344 107.462712) (xy 105.540666 107.554814) (xy 105.707203 107.609999) + (xy 105.809991 107.6205) (xy 107.910008 107.620499) (xy 108.012797 107.609999) (xy 108.179334 107.554814) + (xy 108.328656 107.462712) (xy 108.452712 107.338656) (xy 108.544814 107.189334) (xy 108.599999 107.022797) + (xy 108.6105 106.920009) (xy 108.6105 106.3445) (xy 108.630185 106.277461) (xy 108.682989 106.231706) + (xy 108.7345 106.2205) (xy 110.561977 106.2205) (xy 110.629016 106.240185) (xy 110.674771 106.292989) + (xy 110.684715 106.362147) (xy 110.65569 106.425703) (xy 110.649658 106.432181) (xy 110.592684 106.489154) + (xy 110.500643 106.638375) (xy 110.500641 106.63838) (xy 110.445494 106.804802) (xy 110.445493 106.804809) + (xy 110.435 106.907513) (xy 110.435 107.045) (xy 112.884999 107.045) (xy 112.884999 106.907519) + (xy 112.884998 106.907513) (xy 112.874505 106.804802) (xy 112.819358 106.63838) (xy 112.819356 106.638375) + (xy 112.727315 106.489154) (xy 112.670342 106.432181) (xy 112.636857 106.370858) (xy 112.641841 106.301166) + (xy 112.683713 106.245233) (xy 112.749177 106.220816) (xy 112.758023 106.2205) (xy 114.961977 106.2205) + (xy 115.029016 106.240185) (xy 115.074771 106.292989) (xy 115.084715 106.362147) (xy 115.05569 106.425703) + (xy 115.049658 106.432181) (xy 114.992684 106.489154) (xy 114.900643 106.638375) (xy 114.900641 106.63838) + (xy 114.845494 106.804802) (xy 114.845493 106.804809) (xy 114.835 106.907513) (xy 114.835 107.045) + (xy 117.284999 107.045) (xy 117.284999 106.907519) (xy 117.284998 106.907513) (xy 117.274505 106.804802) + (xy 117.219358 106.63838) (xy 117.219356 106.638375) (xy 117.127315 106.489154) (xy 117.070342 106.432181) + (xy 117.036857 106.370858) (xy 117.041841 106.301166) (xy 117.083713 106.245233) (xy 117.149177 106.220816) + (xy 117.158023 106.2205) (xy 117.5355 106.2205) (xy 117.602539 106.240185) (xy 117.648294 106.292989) + (xy 117.6595 106.3445) (xy 117.6595 110.754218) (xy 117.639815 110.821257) (xy 117.623181 110.841899) + (xy 117.031899 111.433181) (xy 117.004971 111.447884) (xy 116.979153 111.464477) (xy 116.972952 111.465368) + (xy 116.970576 111.466666) (xy 116.944218 111.4695) (xy 116.776563 111.4695) (xy 116.709524 111.449815) + (xy 116.678187 111.420986) (xy 116.595587 111.31334) (xy 116.595581 111.313333) (xy 116.433337 111.151089) + (xy 116.433328 111.151081) (xy 116.251284 111.011392) (xy 116.247868 111.00942) (xy 116.119291 110.935186) + (xy 116.052557 110.896657) (xy 116.052543 110.89665) (xy 115.840554 110.808842) (xy 115.812552 110.801339) + (xy 115.618905 110.749452) (xy 115.580882 110.744446) (xy 115.391408 110.7195) (xy 115.391401 110.7195) + (xy 115.161933 110.7195) (xy 115.161925 110.7195) (xy 114.945382 110.748009) (xy 114.934429 110.749452) + (xy 114.859608 110.7695) (xy 114.712779 110.808842) (xy 114.50079 110.89665) (xy 114.500776 110.896657) + (xy 114.302049 111.011392) (xy 114.120005 111.151081) (xy 113.957748 111.313338) (xy 113.818059 111.495382) + (xy 113.703324 111.694109) (xy 113.703317 111.694123) (xy 113.615509 111.906112) (xy 113.55612 112.127759) + (xy 113.556118 112.12777) (xy 113.526167 112.355258) (xy 113.526167 112.584741) (xy 113.549204 112.759716) + (xy 113.556119 112.812238) (xy 113.601923 112.983181) (xy 113.615509 113.033887) (xy 113.703317 113.245876) + (xy 113.703324 113.24589) (xy 113.735406 113.301457) (xy 113.814334 113.438166) (xy 113.818059 113.444617) + (xy 113.957748 113.626661) (xy 113.957756 113.62667) (xy 114.119997 113.788911) (xy 114.120005 113.788918) + (xy 114.120006 113.788919) (xy 114.163103 113.821989) (xy 114.302049 113.928607) (xy 114.302052 113.928608) + (xy 114.302055 113.928611) (xy 114.500779 114.043344) (xy 114.500784 114.043346) (xy 114.50079 114.043349) + (xy 114.592147 114.08119) (xy 114.71278 114.131158) (xy 114.934429 114.190548) (xy 115.161933 114.2205) + (xy 115.16194 114.2205) (xy 115.391394 114.2205) (xy 115.391401 114.2205) (xy 115.618905 114.190548) + (xy 115.840554 114.131158) (xy 116.052555 114.043344) (xy 116.251279 113.928611) (xy 116.433328 113.788919) + (xy 116.433332 113.788914) (xy 116.433337 113.788911) (xy 116.595581 113.626666) (xy 116.595586 113.626661) + (xy 116.678187 113.519014) (xy 116.734615 113.477811) (xy 116.776563 113.4705) (xy 117.508542 113.4705) + (xy 117.550718 113.46211) (xy 117.605188 113.451275) (xy 117.701836 113.432051) (xy 117.763205 113.406631) + (xy 117.883914 113.356632) (xy 118.047782 113.247139) (xy 118.187139 113.107782) (xy 118.18714 113.10778) + (xy 118.194206 113.100714) (xy 118.194209 113.10071) (xy 119.297778 111.997141) (xy 119.297782 111.997139) + (xy 119.437139 111.857782) (xy 119.546632 111.693914) (xy 119.604295 111.554703) (xy 119.622051 111.511836) + (xy 119.642964 111.406697) (xy 119.65504 111.345991) (xy 119.6605 111.318542) (xy 119.6605 105.721458) + (xy 119.660499 105.721457) (xy 119.637834 105.607509) (xy 119.622051 105.528164) (xy 119.592331 105.456414) + (xy 119.589958 105.450684) (xy 119.546635 105.346092) (xy 119.546628 105.346079) (xy 119.437139 105.182218) + (xy 119.437136 105.182214) (xy 119.294686 105.039764) (xy 119.294655 105.039735) (xy 118.841479 104.586559) + (xy 118.841459 104.586537) (xy 118.697785 104.442863) (xy 118.697781 104.44286) (xy 118.53392 104.333371) + (xy 118.533907 104.333364) (xy 118.384844 104.271621) (xy 118.38484 104.27162) (xy 118.376499 104.268165) + (xy 118.351836 104.257949) (xy 118.255188 104.238724) (xy 118.252099 104.238109) (xy 118.252085 104.238106) + (xy 118.158544 104.2195) (xy 118.158541 104.2195) (xy 116.924866 104.2195) (xy 116.859768 104.201038) + (xy 116.85957 104.200916) (xy 116.857778 104.19981) (xy 116.854338 104.197688) (xy 116.854335 104.197686) + (xy 116.854334 104.197686) (xy 116.687797 104.142501) (xy 116.687795 104.1425) (xy 116.58501 104.132) + (xy 115.534998 104.132) (xy 115.53498 104.132001) (xy 115.432203 104.1425) (xy 115.4322 104.142501) + (xy 115.265668 104.197685) (xy 115.265661 104.197688) (xy 115.261315 104.200369) (xy 115.26043 104.200916) + (xy 115.260232 104.201038) (xy 115.195134 104.2195) (xy 112.524866 104.2195) (xy 112.459768 104.201038) + (xy 112.45957 104.200916) (xy 112.457778 104.19981) (xy 112.454338 104.197688) (xy 112.454335 104.197686) + (xy 112.454334 104.197686) (xy 112.287797 104.142501) (xy 112.287795 104.1425) (xy 112.18501 104.132) + (xy 111.134998 104.132) (xy 111.13498 104.132001) (xy 111.032203 104.1425) (xy 111.0322 104.142501) + (xy 110.865668 104.197685) (xy 110.865661 104.197688) (xy 110.861315 104.200369) (xy 110.86043 104.200916) + (xy 110.860232 104.201038) (xy 110.795134 104.2195) (xy 107.964675 104.2195) (xy 107.964655 104.219499) + (xy 107.958541 104.219499) (xy 107.76146 104.219499) (xy 107.761457 104.219499) (xy 107.568172 104.257946) + (xy 107.568164 104.257948) (xy 107.386088 104.333366) (xy 107.386079 104.333371) (xy 107.222219 104.442859) + (xy 107.222215 104.442862) (xy 106.881896 104.783181) (xy 106.820573 104.816666) (xy 106.794215 104.8195) + (xy 105.809998 104.8195) (xy 105.80998 104.819501) (xy 105.707203 104.83) (xy 105.7072 104.830001) + (xy 105.540668 104.885185) (xy 105.540663 104.885187) (xy 105.391342 104.977289) (xy 105.267289 105.101342) + (xy 105.175187 105.250663) (xy 105.175186 105.250666) (xy 105.120001 105.417203) (xy 105.120001 105.417204) + (xy 105.12 105.417204) (xy 105.1095 105.519983) (xy 104.610498 105.519983) (xy 104.610467 105.519683) + (xy 104.599999 105.417203) (xy 104.599998 105.4172) (xy 104.590915 105.389789) (xy 104.544814 105.250666) + (xy 104.452712 105.101344) (xy 104.328656 104.977288) (xy 104.179334 104.885186) (xy 104.012797 104.830001) + (xy 104.012795 104.83) (xy 103.910016 104.8195) (xy 103.910009 104.8195) (xy 103.7345 104.8195) + (xy 103.725814 104.816949) (xy 103.716853 104.818238) (xy 103.692812 104.807259) (xy 103.667461 104.799815) + (xy 103.661533 104.792974) (xy 103.653297 104.789213) (xy 103.639007 104.766978) (xy 103.621706 104.747011) + (xy 103.619418 104.736496) (xy 103.615523 104.730435) (xy 103.6105 104.6955) (xy 103.6105 104.58223) + (xy 103.630185 104.515191) (xy 103.646819 104.494549) (xy 105.114549 103.026819) (xy 105.175872 102.993334) + (xy 105.20223 102.9905) (xy 120.928771 102.9905) (xy 120.99581 103.010185) (xy 121.041565 103.062989) + (xy 121.051509 103.132147) (xy 121.022484 103.195703) (xy 121.016452 103.202181) (xy 120.477047 103.741584) + (xy 120.477045 103.741586) (xy 120.440413 103.796414) (xy 120.440411 103.796417) (xy 120.394919 103.864499) + (xy 120.394912 103.864511) (xy 120.338343 104.001082) (xy 120.338342 104.001087) (xy 120.3095 104.146079) + (xy 120.3095 111.447243) (xy 120.289815 111.514282) (xy 120.283875 111.52273) (xy 120.151392 111.695382) + (xy 120.036657 111.894109) (xy 120.03665 111.894123) (xy 119.960784 112.077282) (xy 119.948842 112.106113) + (xy 119.892056 112.318046) (xy 119.889453 112.327759) (xy 119.889451 112.32777) (xy 119.8595 112.555258) + (xy 119.8595 112.784741) (xy 119.881741 112.95367) (xy 119.889452 113.012238) (xy 119.930327 113.164788) + (xy 119.948842 113.233887) (xy 120.03665 113.445876) (xy 120.036657 113.44589) (xy 120.062474 113.490606) + (xy 120.113052 113.578211) (xy 120.151392 113.644617) (xy 120.291081 113.826661) (xy 120.291089 113.82667) + (xy 120.453333 113.988914) (xy 120.45334 113.98892) (xy 120.560986 114.07152) (xy 120.602189 114.127948) + (xy 120.6095 114.169896) (xy 120.6095 114.668544) (xy 120.647947 114.861828) (xy 120.647949 114.861836) + (xy 120.664236 114.901156) (xy 120.664236 114.901157) (xy 120.723364 115.043907) (xy 120.723371 115.04392) + (xy 120.83286 115.207781) (xy 120.832863 115.207785) (xy 120.976537 115.351459) (xy 120.976559 115.351479) + (xy 122.879735 117.254655) (xy 122.879764 117.254686) (xy 123.022217 117.397139) (xy 123.091057 117.443136) + (xy 123.186086 117.506632) (xy 123.281113 117.545993) (xy 123.368164 117.582051) (xy 123.384654 117.585331) + (xy 123.459546 117.600228) (xy 123.561456 117.6205) (xy 123.561459 117.6205) (xy 123.56146 117.6205) + (xy 123.75854 117.6205) (xy 138.342465 117.6205) (xy 138.409504 117.640185) (xy 138.455259 117.692989) + (xy 138.465823 117.731898) (xy 138.470001 117.772797) (xy 138.470001 117.772799) (xy 138.505142 117.878846) + (xy 138.525186 117.939334) (xy 138.617288 118.088656) (xy 138.741344 118.212712) (xy 138.890666 118.304814) + (xy 139.057203 118.359999) (xy 139.159991 118.3705) (xy 140.560008 118.370499) (xy 140.662797 118.359999) + (xy 140.829334 118.304814) (xy 140.978656 118.212712) (xy 141.102712 118.088656) (xy 141.194814 117.939334) + (xy 141.249999 117.772797) (xy 141.2605 117.670009) (xy 141.260499 115.569992) (xy 141.258262 115.548097) + (xy 141.249999 115.467203) (xy 141.249998 115.4672) (xy 141.234629 115.420821) (xy 141.194814 115.300666) + (xy 141.102712 115.151344) (xy 140.978656 115.027288) (xy 140.829334 114.935186) (xy 140.662797 114.880001) + (xy 140.662795 114.88) (xy 140.56001 114.8695) (xy 139.159998 114.8695) (xy 139.159981 114.869501) + (xy 139.057203 114.88) (xy 139.0572 114.880001) (xy 138.890668 114.935185) (xy 138.890663 114.935187) + (xy 138.741342 115.027289) (xy 138.617289 115.151342) (xy 138.525187 115.300663) (xy 138.525185 115.300668) + (xy 138.519537 115.317713) (xy 138.485373 115.420815) (xy 138.470001 115.467204) (xy 138.47 115.467205) + (xy 138.465823 115.508102) (xy 138.439427 115.572793) (xy 138.382247 115.612945) (xy 138.342465 115.6195) + (xy 124.125782 115.6195) (xy 124.058743 115.599815) (xy 124.038101 115.583181) (xy 122.683981 114.229061) + (xy 122.650496 114.167738) (xy 122.65548 114.098046) (xy 122.696176 114.043004) (xy 122.766661 113.988919) + (xy 122.842043 113.913537) (xy 122.928911 113.82667) (xy 122.928914 113.826665) (xy 122.928919 113.826661) + (xy 123.068611 113.644612) (xy 123.183344 113.445888) (xy 123.271158 113.233887) (xy 123.330548 113.012238) + (xy 123.3605 112.784734) (xy 123.3605 112.555266) (xy 123.330548 112.327762) (xy 123.271158 112.106113) + (xy 123.183344 111.894112) (xy 123.068611 111.695388) (xy 123.068608 111.695385) (xy 123.068607 111.695382) + (xy 122.956502 111.549286) (xy 122.928919 111.513339) (xy 122.928918 111.513338) (xy 122.928911 111.51333) + (xy 122.76667 111.351089) (xy 122.766661 111.351081) (xy 122.584617 111.211392) (xy 122.554349 111.193917) + (xy 122.418224 111.115325) (xy 122.38589 111.096657) (xy 122.385876 111.09665) (xy 122.173887 111.008842) + (xy 122.167815 111.007215) (xy 121.952238 110.949452) (xy 121.952235 110.949451) (xy 121.952233 110.949451) + (xy 121.918311 110.944985) (xy 121.91761 110.944675) (xy 121.916853 110.944784) (xy 121.885701 110.930557) + (xy 121.854416 110.916716) (xy 121.853995 110.916077) (xy 121.853297 110.915759) (xy 121.834775 110.886937) + (xy 121.815946 110.858391) (xy 121.815799 110.85741) (xy 121.815523 110.856981) (xy 121.8105 110.822046) + (xy 121.8105 110.588872) (xy 125.6595 110.588872) (xy 125.6595 110.851127) (xy 125.683991 111.037142) + (xy 125.69373 111.111116) (xy 125.761313 111.363339) (xy 125.761602 111.364418) (xy 125.761605 111.364428) + (xy 125.861953 111.60669) (xy 125.861958 111.6067) (xy 125.993075 111.833803) (xy 126.152718 112.041851) + (xy 126.152726 112.04186) (xy 126.33814 112.227274) (xy 126.338148 112.227281) (xy 126.546196 112.386924) + (xy 126.773299 112.518041) (xy 126.773309 112.518046) (xy 127.015571 112.618394) (xy 127.015581 112.618398) + (xy 127.268884 112.68627) (xy 127.52888 112.7205) (xy 127.528887 112.7205) (xy 127.791113 112.7205) + (xy 127.79112 112.7205) (xy 128.051116 112.68627) (xy 128.304419 112.618398) (xy 128.536799 112.522143) + (xy 128.54669 112.518046) (xy 128.546691 112.518045) (xy 128.546697 112.518043) (xy 128.773803 112.386924) + (xy 128.981851 112.227282) (xy 128.981855 112.227277) (xy 128.98186 112.227274) (xy 129.167274 112.04186) + (xy 129.167277 112.041855) (xy 129.167282 112.041851) (xy 129.326924 111.833803) (xy 129.458043 111.606697) + (xy 129.558398 111.364419) (xy 129.62627 111.111116) (xy 129.6605 110.85112) (xy 129.6605 110.58888) + (xy 129.62627 110.328884) (xy 129.558398 110.075581) (xy 129.551027 110.057785) (xy 129.458046 109.833309) + (xy 129.458041 109.833299) (xy 129.326924 109.606196) (xy 129.194024 109.433) (xy 129.167282 109.398149) + (xy 129.167281 109.398148) (xy 129.167274 109.39814) (xy 128.98186 109.212726) (xy 128.981851 109.212718) + (xy 128.773803 109.053075) (xy 128.5467 108.921958) (xy 128.54669 108.921953) (xy 128.304428 108.821605) + (xy 128.304421 108.821603) (xy 128.304419 108.821602) (xy 128.051116 108.75373) (xy 127.993339 108.746123) + (xy 127.791127 108.7195) (xy 127.79112 108.7195) (xy 127.52888 108.7195) (xy 127.528872 108.7195) + (xy 127.297772 108.749926) (xy 127.268884 108.75373) (xy 127.038059 108.815579) (xy 127.015581 108.821602) + (xy 127.015571 108.821605) (xy 126.773309 108.921953) (xy 126.773299 108.921958) (xy 126.546196 109.053075) + (xy 126.338148 109.212718) (xy 126.152718 109.398148) (xy 125.993075 109.606196) (xy 125.861958 109.833299) + (xy 125.861953 109.833309) (xy 125.761605 110.075571) (xy 125.761602 110.075581) (xy 125.695977 110.3205) + (xy 125.69373 110.328885) (xy 125.6595 110.588872) (xy 121.8105 110.588872) (xy 121.8105 107.544986) + (xy 130.297501 107.544986) (xy 130.307994 107.647697) (xy 130.363141 107.814119) (xy 130.363143 107.814124) + (xy 130.455184 107.963345) (xy 130.579154 108.087315) (xy 130.728375 108.179356) (xy 130.72838 108.179358) + (xy 130.894802 108.234505) (xy 130.894809 108.234506) (xy 130.997519 108.244999) (xy 131.134999 108.244999) + (xy 131.135 108.244998) (xy 131.135 107.27) (xy 130.297501 107.27) (xy 130.297501 107.544986) (xy 121.8105 107.544986) + (xy 121.8105 106.495013) (xy 130.2975 106.495013) (xy 130.2975 106.77) (xy 131.135 106.77) (xy 131.135 105.795) + (xy 131.635 105.795) (xy 131.635 108.244999) (xy 131.772472 108.244999) (xy 131.772486 108.244998) + (xy 131.875197 108.234505) (xy 132.041619 108.179358) (xy 132.041624 108.179356) (xy 132.190845 108.087315) + (xy 132.247819 108.030342) (xy 132.309142 107.996857) (xy 132.378834 108.001841) (xy 132.434767 108.043713) + (xy 132.459184 108.109177) (xy 132.4595 108.118023) (xy 132.4595 111.293557) (xy 132.439815 111.360596) + (xy 132.423181 111.381238) (xy 132.291081 111.513338) (xy 132.151392 111.695382) (xy 132.036657 111.894109) + (xy 132.03665 111.894123) (xy 131.960784 112.077282) (xy 131.948842 112.106113) (xy 131.892056 112.318046) + (xy 131.889453 112.327759) (xy 131.889451 112.32777) (xy 131.8595 112.555258) (xy 131.8595 112.784741) + (xy 131.881741 112.95367) (xy 131.889452 113.012238) (xy 131.930327 113.164788) (xy 131.948842 113.233887) + (xy 132.03665 113.445876) (xy 132.036657 113.44589) (xy 132.062474 113.490606) (xy 132.113052 113.578211) + (xy 132.151392 113.644617) (xy 132.291081 113.826661) (xy 132.291089 113.82667) (xy 132.45333 113.988911) + (xy 132.453338 113.988918) (xy 132.453339 113.988919) (xy 132.489949 114.017011) (xy 132.635382 114.128607) + (xy 132.635385 114.128608) (xy 132.635388 114.128611) (xy 132.834112 114.243344) (xy 132.834117 114.243346) + (xy 132.834123 114.243349) (xy 132.899672 114.2705) (xy 133.046113 114.331158) (xy 133.267762 114.390548) + (xy 133.484312 114.419057) (xy 133.491536 114.420009) (xy 133.495266 114.4205) (xy 133.495273 114.4205) + (xy 133.724727 114.4205) (xy 133.724734 114.4205) (xy 133.952238 114.390548) (xy 134.173887 114.331158) + (xy 134.385888 114.243344) (xy 134.584612 114.128611) (xy 134.766661 113.988919) (xy 134.766665 113.988914) + (xy 134.76667 113.988911) (xy 134.928914 113.826666) (xy 134.928919 113.826661) (xy 135.01152 113.719014) + (xy 135.067948 113.677811) (xy 135.109896 113.6705) (xy 138.347837 113.6705) (xy 138.414876 113.690185) + (xy 138.460631 113.742989) (xy 138.469089 113.768541) (xy 138.469999 113.772792) (xy 138.525185 113.939331) + (xy 138.525187 113.939336) (xy 138.541325 113.9655) (xy 138.617288 114.088656) (xy 138.741344 114.212712) + (xy 138.890666 114.304814) (xy 139.057203 114.359999) (xy 139.159991 114.3705) (xy 140.560008 114.370499) + (xy 140.662797 114.359999) (xy 140.829334 114.304814) (xy 140.978656 114.212712) (xy 141.102712 114.088656) + (xy 141.194814 113.939334) (xy 141.249999 113.772797) (xy 141.2605 113.670009) (xy 141.260499 111.569992) + (xy 141.25667 111.532513) (xy 141.249999 111.467203) (xy 141.249998 111.4672) (xy 141.238725 111.433181) + (xy 141.194814 111.300666) (xy 141.102712 111.151344) (xy 140.978656 111.027288) (xy 140.881724 110.9675) + (xy 140.829336 110.935187) (xy 140.829331 110.935185) (xy 140.816071 110.930791) (xy 140.662797 110.880001) + (xy 140.662795 110.88) (xy 140.56001 110.8695) (xy 139.159998 110.8695) (xy 139.159981 110.869501) + (xy 139.057203 110.88) (xy 139.0572 110.880001) (xy 138.890668 110.935185) (xy 138.890663 110.935187) + (xy 138.741342 111.027289) (xy 138.617289 111.151342) (xy 138.525187 111.300663) (xy 138.525185 111.300668) + (xy 138.504418 111.363339) (xy 138.470905 111.464477) (xy 138.470001 111.467204) (xy 138.47 111.467205) + (xy 138.460714 111.558103) (xy 138.434317 111.622795) (xy 138.377136 111.662946) (xy 138.337356 111.6695) + (xy 135.109896 111.6695) (xy 135.042857 111.649815) (xy 135.01152 111.620986) (xy 134.92892 111.51334) + (xy 134.928914 111.513333) (xy 134.76667 111.351089) (xy 134.766661 111.351081) (xy 134.584622 111.211396) + (xy 134.584616 111.211392) (xy 134.584612 111.211389) (xy 134.522499 111.175528) (xy 134.474284 111.12496) + (xy 134.4605 111.068141) (xy 134.4605 109.482486) (xy 138.635001 109.482486) (xy 138.645494 109.585197) + (xy 138.700641 109.751619) (xy 138.700643 109.751624) (xy 138.792684 109.900845) (xy 138.916654 110.024815) + (xy 139.065875 110.116856) (xy 139.06588 110.116858) (xy 139.232302 110.172005) (xy 139.232309 110.172006) + (xy 139.335019 110.182499) (xy 139.609999 110.182499) (xy 140.11 110.182499) (xy 140.384972 110.182499) + (xy 140.384986 110.182498) (xy 140.487697 110.172005) (xy 140.654119 110.116858) (xy 140.654124 110.116856) + (xy 140.803345 110.024815) (xy 140.927315 109.900845) (xy 141.019356 109.751624) (xy 141.019358 109.751619) + (xy 141.074505 109.585197) (xy 141.074506 109.58519) (xy 141.084999 109.482486) (xy 141.085 109.482473) + (xy 141.085 109.345) (xy 140.11 109.345) (xy 140.11 110.182499) (xy 139.609999 110.182499) (xy 139.61 110.182498) + (xy 139.61 109.345) (xy 138.635001 109.345) (xy 138.635001 109.482486) (xy 134.4605 109.482486) + (xy 134.4605 108.1445) (xy 134.480185 108.077461) (xy 134.532989 108.031706) (xy 134.5845 108.0205) + (xy 138.761977 108.0205) (xy 138.829016 108.040185) (xy 138.874771 108.092989) (xy 138.884715 108.162147) + (xy 138.85569 108.225703) (xy 138.849658 108.232181) (xy 138.792684 108.289154) (xy 138.700643 108.438375) + (xy 138.700641 108.43838) (xy 138.645494 108.604802) (xy 138.645493 108.604809) (xy 138.635 108.707513) + (xy 138.635 108.845) (xy 141.084999 108.845) (xy 141.084999 108.707528) (xy 141.084998 108.707513) + (xy 141.074505 108.604802) (xy 141.019358 108.43838) (xy 141.019356 108.438375) (xy 140.927315 108.289154) + (xy 140.803344 108.165183) (xy 140.803341 108.165181) (xy 140.800339 108.163329) (xy 140.798713 108.161521) + (xy 140.797677 108.160702) (xy 140.797817 108.160524) (xy 140.753617 108.11138) (xy 140.742397 108.042417) + (xy 140.770243 107.978336) (xy 140.800344 107.952254) (xy 140.803656 107.950212) (xy 140.927712 107.826156) + (xy 141.019814 107.676834) (xy 141.074999 107.510297) (xy 141.0855 107.407509) (xy 141.085499 106.632492) + (xy 141.084073 106.618537) (xy 141.074999 106.529703) (xy 141.074998 106.5297) (xy 141.063504 106.495013) + (xy 141.019814 106.363166) (xy 140.927712 106.213844) (xy 140.803656 106.089788) (xy 140.670623 106.007733) + (xy 140.654336 105.997687) (xy 140.654331 105.997685) (xy 140.610968 105.983316) (xy 140.487797 105.942501) + (xy 140.487795 105.9425) (xy 140.38501 105.932) (xy 139.334998 105.932) (xy 139.33498 105.932001) + (xy 139.232203 105.9425) (xy 139.2322 105.942501) (xy 139.065668 105.997685) (xy 139.065661 105.997688) + (xy 139.060232 106.001038) (xy 138.995134 106.0195) (xy 134.38473 106.0195) (xy 134.317691 105.999815) + (xy 134.297049 105.983181) (xy 134.266157 105.952289) (xy 134.266156 105.952288) (xy 134.137118 105.872697) + (xy 134.116836 105.860187) (xy 134.116831 105.860185) (xy 134.115362 105.859698) (xy 133.950297 105.805001) + (xy 133.950295 105.805) (xy 133.84751 105.7945) (xy 133.072498 105.7945) (xy 133.07248 105.794501) + (xy 132.969703 105.805) (xy 132.9697 105.805001) (xy 132.803168 105.860185) (xy 132.803163 105.860187) + (xy 132.653842 105.952289) (xy 132.529788 106.076343) (xy 132.529783 106.076349) (xy 132.527741 106.079661) + (xy 132.525747 106.081453) (xy 132.525307 106.082011) (xy 132.525211 106.081935) (xy 132.475791 106.126383) + (xy 132.406828 106.137602) (xy 132.342747 106.109755) (xy 132.316668 106.079656) (xy 132.314819 106.076659) + (xy 132.314816 106.076655) (xy 132.190845 105.952684) (xy 132.041624 105.860643) (xy 132.041619 105.860641) + (xy 131.875197 105.805494) (xy 131.87519 105.805493) (xy 131.772486 105.795) (xy 131.635 105.795) + (xy 131.135 105.795) (xy 130.997527 105.795) (xy 130.997512 105.795001) (xy 130.894802 105.805494) + (xy 130.72838 105.860641) (xy 130.728375 105.860643) (xy 130.579154 105.952684) (xy 130.455184 106.076654) + (xy 130.363143 106.225875) (xy 130.363141 106.22588) (xy 130.307994 106.392302) (xy 130.307993 106.392309) + (xy 130.2975 106.495013) (xy 121.8105 106.495013) (xy 121.8105 104.582229) (xy 121.819144 104.552788) + (xy 121.825668 104.522802) (xy 121.829422 104.517786) (xy 121.830185 104.51519) (xy 121.846819 104.494548) + (xy 121.994548 104.346819) (xy 122.055871 104.313334) (xy 122.082229 104.3105) (xy 123.900686 104.3105) + (xy 123.900694 104.3105) (xy 123.937569 104.307598) (xy 123.937571 104.307597) (xy 123.937573 104.307597) + (xy 124.001156 104.289124) (xy 124.095398 104.261744) (xy 124.236865 104.178081) (xy 124.353081 104.061865) + (xy 124.436744 103.920398) (xy 124.482598 103.762569) (xy 124.4855 103.725694) (xy 124.4855 103.294306) + (xy 124.482598 103.257431) (xy 124.473899 103.22749) (xy 124.436745 103.099606) (xy 124.436744 103.099603) + (xy 124.436744 103.099602) (xy 124.353081 102.958135) (xy 124.353078 102.958132) (xy 124.348298 102.951969) + (xy 124.35075 102.950066) (xy 124.324155 102.901421) (xy 124.329104 102.831726) (xy 124.34994 102.799304) + (xy 124.348298 102.798031) (xy 124.353075 102.79187) (xy 124.353081 102.791865) (xy 124.436744 102.650398) + (xy 124.474823 102.519331) (xy 124.482597 102.492573) (xy 124.482598 102.492567) (xy 124.485499 102.455701) + (xy 124.4855 102.455694) (xy 124.4855 102.024306) (xy 124.482598 101.987431) (xy 124.475568 101.963235) + (xy 124.43724 101.831309) (xy 124.436744 101.829602) (xy 124.353081 101.688135) (xy 124.353078 101.688132) + (xy 124.348298 101.681969) (xy 124.35075 101.680066) (xy 124.324155 101.631421) (xy 124.329104 101.561726) + (xy 124.34994 101.529304) (xy 124.348298 101.528031) (xy 124.353075 101.52187) (xy 124.353081 101.521865) + (xy 124.436744 101.380398) (xy 124.470505 101.264191) (xy 124.482597 101.222573) (xy 124.482598 101.222567) + (xy 124.4855 101.185694) (xy 124.4855 100.754306) (xy 124.482598 100.717431) (xy 124.478504 100.70334) + (xy 124.436745 100.559606) (xy 124.436744 100.559603) (xy 124.436744 100.559602) (xy 124.353081 100.418135) + (xy 124.353078 100.418132) (xy 124.348298 100.411969) (xy 124.35075 100.410066) (xy 124.324155 100.361421) + (xy 124.329104 100.291726) (xy 124.34994 100.259304) (xy 124.348298 100.258031) (xy 124.353075 100.25187) + (xy 124.353081 100.251865) (xy 124.436744 100.110398) (xy 124.482598 99.952569) (xy 124.4855 99.915694) + (xy 124.4855 99.484306) (xy 124.482598 99.447431) (xy 124.463124 99.380403) (xy 124.436745 99.289606) + (xy 124.436744 99.289603) (xy 124.436744 99.289602) (xy 124.353081 99.148135) (xy 124.353078 99.148132) + (xy 124.348298 99.141969) (xy 124.35075 99.140066) (xy 124.324155 99.091421) (xy 124.329104 99.021726) + (xy 124.34994 98.989304) (xy 124.348298 98.988031) (xy 124.353075 98.98187) (xy 124.353081 98.981865) + (xy 124.436744 98.840398) (xy 124.482598 98.682569) (xy 124.4855 98.645694) (xy 124.4855 98.214306) + (xy 124.482598 98.177431) (xy 124.475328 98.152409) (xy 124.436745 98.019606) (xy 124.436744 98.019603) + (xy 124.436744 98.019602) (xy 124.353081 97.878135) (xy 124.353078 97.878132) (xy 124.348298 97.871969) + (xy 124.35075 97.870066) (xy 124.324155 97.821421) (xy 124.329104 97.751726) (xy 124.34994 97.719304) + (xy 124.348298 97.718031) (xy 124.353075 97.71187) (xy 124.353081 97.711865) (xy 124.436744 97.570398) + (xy 124.482598 97.412569) (xy 124.4855 97.375694) (xy 124.4855 96.944306) (xy 124.482598 96.907431) + (xy 124.470457 96.865643) (xy 124.436745 96.749606) (xy 124.436744 96.749603) (xy 124.436744 96.749602) + (xy 124.353081 96.608135) (xy 124.353078 96.608132) (xy 124.348298 96.601969) (xy 124.35075 96.600066) + (xy 124.324155 96.551421) (xy 124.329104 96.481726) (xy 124.34994 96.449304) (xy 124.348298 96.448031) + (xy 124.353075 96.44187) (xy 124.353081 96.441865) (xy 124.436744 96.300398) (xy 124.482598 96.142569) + (xy 124.4855 96.105694) (xy 124.4855 95.674306) (xy 124.482598 95.637431) (xy 124.4817 95.634339) + (xy 124.451124 95.529095) (xy 124.451323 95.459225) (xy 124.489265 95.400555) (xy 124.552904 95.371712) + (xy 124.5702 95.3705) (xy 127.33392 95.3705) (xy 127.431462 95.351096) (xy 127.478913 95.341658) + (xy 127.615495 95.285084) (xy 127.664729 95.252186) (xy 127.738416 95.202952) (xy 129.84137 93.099998) + (xy 130.737704 93.099998) (xy 130.737705 93.1) (xy 132.01 93.1) (xy 132.51 93.1) (xy 133.782295 93.1) + (xy 133.782295 93.099998) (xy 133.7821 93.097513) (xy 133.736281 92.939801) (xy 133.652685 92.798447) + (xy 133.652678 92.798438) (xy 133.536561 92.682321) (xy 133.536552 92.682314) (xy 133.395196 92.598717) + (xy 133.395193 92.598716) (xy 133.237495 92.5529) (xy 133.237489 92.552899) (xy 133.200649 92.55) + (xy 132.51 92.55) (xy 132.51 93.1) (xy 132.01 93.1) (xy 132.01 92.55) (xy 131.31935 92.55) (xy 131.28251 92.552899) + (xy 131.282504 92.5529) (xy 131.124806 92.598716) (xy 131.124803 92.598717) (xy 130.983447 92.682314) + (xy 130.983438 92.682321) (xy 130.867321 92.798438) (xy 130.867314 92.798447) (xy 130.783718 92.939801) + (xy 130.737899 93.097513) (xy 130.737704 93.099998) (xy 129.84137 93.099998) (xy 133.928271 89.013097) + (xy 133.989594 88.979612) (xy 134.059286 88.984596) (xy 134.115219 89.026468) (xy 134.139636 89.091932) + (xy 134.137569 89.12497) (xy 134.1095 89.266079) (xy 134.1095 93.65777) (xy 134.089815 93.724809) + (xy 134.073181 93.745451) (xy 133.985451 93.833181) (xy 133.958523 93.847884) (xy 133.932705 93.864477) + (xy 133.926504 93.865368) (xy 133.924128 93.866666) (xy 133.89777 93.8695) (xy 133.869679 93.8695) + (xy 133.80264 93.849815) (xy 133.756885 93.797011) (xy 133.746941 93.727853) (xy 133.750603 93.710905) + (xy 133.782099 93.602494) (xy 133.7821 93.602488) (xy 133.782295 93.600001) (xy 133.782295 93.6) + (xy 130.737705 93.6) (xy 130.737704 93.600001) (xy 130.737899 93.602486) (xy 130.783718 93.760198) + (xy 130.867314 93.901552) (xy 130.8721 93.907722) (xy 130.86964 93.909629) (xy 130.89621 93.958288) + (xy 130.891226 94.02798) (xy 130.870162 94.060781) (xy 130.871699 94.061974) (xy 130.866915 94.06814) + (xy 130.783255 94.209603) (xy 130.783254 94.209606) (xy 130.737402 94.367426) (xy 130.737401 94.367432) + (xy 130.7345 94.404298) (xy 130.7345 94.835701) (xy 130.737401 94.872567) (xy 130.737402 94.872573) + (xy 130.783254 95.030393) (xy 130.783255 95.030396) (xy 130.783256 95.030398) (xy 130.820681 95.093681) + (xy 130.866917 95.171862) (xy 130.871702 95.178031) (xy 130.869256 95.179927) (xy 130.895857 95.228642) + (xy 130.890873 95.298334) (xy 130.870069 95.330703) (xy 130.871702 95.331969) (xy 130.866917 95.338137) + (xy 130.783255 95.479603) (xy 130.783254 95.479606) (xy 130.737402 95.637426) (xy 130.737401 95.637432) + (xy 130.7345 95.674298) (xy 130.7345 96.105701) (xy 130.737401 96.142567) (xy 130.737402 96.142573) + (xy 130.783254 96.300393) (xy 130.783255 96.300396) (xy 130.866917 96.441862) (xy 130.871702 96.448031) + (xy 130.869256 96.449927) (xy 130.895857 96.498642) (xy 130.890873 96.568334) (xy 130.870069 96.600703) + (xy 130.871702 96.601969) (xy 130.866917 96.608137) (xy 130.783255 96.749603) (xy 130.783254 96.749606) + (xy 130.737402 96.907426) (xy 130.737401 96.907432) (xy 130.7345 96.944298) (xy 130.7345 97.375701) + (xy 130.737401 97.412567) (xy 130.737402 97.412573) (xy 130.783254 97.570393) (xy 130.783255 97.570396) + (xy 130.866917 97.711862) (xy 130.871702 97.718031) (xy 130.869256 97.719927) (xy 130.895857 97.768642) + (xy 130.890873 97.838334) (xy 130.870069 97.870703) (xy 130.871702 97.871969) (xy 130.866917 97.878137) + (xy 130.783255 98.019603) (xy 130.783254 98.019606) (xy 130.737402 98.177426) (xy 130.737401 98.177432) + (xy 130.7345 98.214298) (xy 130.7345 98.645694) (xy 130.737401 98.682567) (xy 130.737402 98.682573) + (xy 130.783254 98.840393) (xy 130.783255 98.840396) (xy 130.866917 98.981862) (xy 130.871702 98.988031) + (xy 130.869256 98.989927) (xy 130.895857 99.038642) (xy 130.890873 99.108334) (xy 130.870069 99.140703) + (xy 130.871702 99.141969) (xy 130.866917 99.148137) (xy 130.783255 99.289603) (xy 130.783254 99.289606) + (xy 130.737402 99.447426) (xy 130.737401 99.447432) (xy 130.7345 99.484298) (xy 130.7345 99.915701) + (xy 130.737401 99.952567) (xy 130.737402 99.952573) (xy 130.783254 100.110393) (xy 130.783255 100.110396) + (xy 130.866917 100.251862) (xy 130.871702 100.258031) (xy 130.869256 100.259927) (xy 130.895857 100.308642) + (xy 130.890873 100.378334) (xy 130.870069 100.410703) (xy 130.871702 100.411969) (xy 130.866917 100.418137) + (xy 130.783255 100.559603) (xy 130.783254 100.559606) (xy 130.737402 100.717426) (xy 130.737401 100.717432) + (xy 130.7345 100.754298) (xy 130.7345 101.185701) (xy 130.737401 101.222567) (xy 130.737402 101.222573) + (xy 130.783254 101.380393) (xy 130.783255 101.380396) (xy 130.783256 101.380398) (xy 130.784334 101.38222) + (xy 130.866917 101.521862) (xy 130.871702 101.528031) (xy 130.869256 101.529927) (xy 130.895857 101.578642) + (xy 130.890873 101.648334) (xy 130.870069 101.680703) (xy 130.871702 101.681969) (xy 130.866917 101.688137) + (xy 130.783255 101.829603) (xy 130.783254 101.829606) (xy 130.737402 101.987426) (xy 130.737401 101.987432) + (xy 130.7345 102.024298) (xy 130.7345 102.455701) (xy 130.737401 102.492567) (xy 130.737402 102.492573) + (xy 130.783254 102.650393) (xy 130.783255 102.650396) (xy 130.866917 102.791862) (xy 130.871702 102.798031) + (xy 130.869256 102.799927) (xy 130.895857 102.848642) (xy 130.890873 102.918334) (xy 130.870069 102.950703) + (xy 130.871702 102.951969) (xy 130.866917 102.958137) (xy 130.783255 103.099603) (xy 130.783254 103.099606) + (xy 130.737402 103.257426) (xy 130.737401 103.257432) (xy 130.7345 103.294298) (xy 130.7345 103.725701) + (xy 130.737401 103.762567) (xy 130.737402 103.762573) (xy 130.783254 103.920393) (xy 130.783255 103.920396) + (xy 130.783256 103.920398) (xy 130.806788 103.960188) (xy 130.866917 104.061862) (xy 130.866923 104.06187) + (xy 130.983129 104.178076) (xy 130.983133 104.178079) (xy 130.983135 104.178081) (xy 131.124602 104.261744) + (xy 131.153019 104.27) (xy 131.282426 104.307597) (xy 131.282429 104.307597) (xy 131.282431 104.307598) + (xy 131.319306 104.3105) (xy 131.319314 104.3105) (xy 133.200686 104.3105) (xy 133.200694 104.3105) + (xy 133.237569 104.307598) (xy 133.237571 104.307597) (xy 133.237573 104.307597) (xy 133.382733 104.265424) + (xy 133.417328 104.2605) (xy 143.56392 104.2605) (xy 143.661462 104.241096) (xy 143.708913 104.231658) + (xy 143.845495 104.175084) (xy 143.895521 104.141658) (xy 143.968416 104.092952) (xy 145.838633 102.222734) + (xy 145.920766 102.099813) (xy 145.924796 102.090085) (xy 145.950443 102.028166) (xy 145.97734 101.963231) + (xy 145.989238 101.903416) (xy 146.003921 101.829602) (xy 146.006182 101.818237) (xy 146.006182 95.566547) + (xy 146.025867 95.499508) (xy 146.042496 95.478871) (xy 147.122819 94.398547) (xy 147.184142 94.365063) + (xy 147.253834 94.370047) (xy 147.309767 94.411919) (xy 147.334184 94.477383) (xy 147.3345 94.486229) + (xy 147.3345 94.499596) (xy 147.365661 94.69634) (xy 147.365661 94.696343) (xy 147.427213 94.88578) + (xy 147.517647 95.063266) (xy 147.634731 95.224418) (xy 147.775582 95.365269) (xy 147.936734 95.482353) + (xy 148.006453 95.517877) (xy 148.088172 95.559515) (xy 148.138968 95.60749) (xy 148.155763 95.675311) + (xy 148.133225 95.741446) (xy 148.088172 95.780485) (xy 147.936733 95.857647) (xy 147.84479 95.924447) + (xy 147.775582 95.974731) (xy 147.77558 95.974733) (xy 147.775579 95.974733) (xy 147.634733 96.115579) + (xy 147.634733 96.11558) (xy 147.634731 96.115582) (xy 147.615124 96.142569) (xy 147.517647 96.276733) + (xy 147.427213 96.454219) (xy 147.365661 96.643656) (xy 147.365661 96.643659) (xy 147.340899 96.8) + (xy 147.3345 96.840403) (xy 147.3345 97.039597) (xy 147.347612 97.122384) (xy 147.365661 97.23634) + (xy 147.365661 97.236343) (xy 147.427213 97.42578) (xy 147.479381 97.528165) (xy 147.517647 97.603266) + (xy 147.634731 97.764418) (xy 147.775582 97.905269) (xy 147.936734 98.022353) (xy 148.006453 98.057877) + (xy 148.088172 98.099515) (xy 148.138968 98.14749) (xy 148.155763 98.215311) (xy 148.133225 98.281446) + (xy 148.088172 98.320485) (xy 147.936733 98.397647) (xy 147.84479 98.464447) (xy 147.775582 98.514731) + (xy 147.77558 98.514733) (xy 147.775579 98.514733) (xy 147.634733 98.655579) (xy 147.634733 98.65558) + (xy 147.634731 98.655582) (xy 147.615124 98.682569) (xy 147.517647 98.816733) (xy 147.427213 98.994219) + (xy 147.365661 99.183656) (xy 147.365661 99.183659) (xy 147.3345 99.380403) (xy 147.3345 99.579597) + (xy 147.341027 99.620805) (xy 147.365661 99.77634) (xy 147.365661 99.776343) (xy 147.427213 99.96578) + (xy 147.47038 100.0505) (xy 147.517647 100.143266) (xy 147.634731 100.304418) (xy 147.775582 100.445269) + (xy 147.936734 100.562353) (xy 147.995208 100.592147) (xy 148.088172 100.639515) (xy 148.138968 100.68749) + (xy 148.155763 100.755311) (xy 148.133225 100.821446) (xy 148.088172 100.860485) (xy 147.936733 100.937647) + (xy 147.876736 100.981238) (xy 147.775582 101.054731) (xy 147.77558 101.054733) (xy 147.775579 101.054733) + (xy 147.634733 101.195579) (xy 147.634733 101.19558) (xy 147.634731 101.195582) (xy 147.615124 101.222569) + (xy 147.517647 101.356733) (xy 147.427213 101.534219) (xy 147.365661 101.723656) (xy 147.365661 101.723659) + (xy 147.348881 101.829603) (xy 147.3345 101.920403) (xy 147.3345 102.119597) (xy 147.342138 102.16782) + (xy 147.365661 102.31634) (xy 147.365661 102.316343) (xy 147.427213 102.50578) (xy 147.507407 102.663168) + (xy 147.517647 102.683266) (xy 147.634731 102.844418) (xy 147.775582 102.985269) (xy 147.936734 103.102353) + (xy 147.995208 103.132147) (xy 148.088172 103.179515) (xy 148.138968 103.22749) (xy 148.155763 103.295311) + (xy 148.133225 103.361446) (xy 148.088172 103.400485) (xy 147.936733 103.477647) (xy 147.8893 103.51211) + (xy 147.856667 103.535818) (xy 147.790862 103.559298) (xy 147.783783 103.5595) (xy 145.941455 103.5595) + (xy 145.844812 103.578724) (xy 145.748167 103.597947) (xy 145.748161 103.597949) (xy 145.694834 103.620037) + (xy 145.694834 103.620038) (xy 145.649315 103.638892) (xy 145.566089 103.673366) (xy 145.566079 103.673371) + (xy 145.402219 103.782859) (xy 145.36508 103.819999) (xy 145.262861 103.922218) (xy 145.262858 103.922221) + (xy 142.962221 106.222858) (xy 142.962218 106.222861) (xy 142.92508 106.259999) (xy 142.822859 106.362219) + (xy 142.713371 106.52608) (xy 142.713364 106.526093) (xy 142.675073 106.618537) (xy 142.675073 106.61854) + (xy 142.639295 106.704916) (xy 142.63929 106.704928) (xy 142.637949 106.708163) (xy 142.637946 106.708173) + (xy 142.5995 106.901454) (xy 142.5995 118.134217) (xy 142.579815 118.201256) (xy 142.563181 118.221898) + (xy 137.16222 123.622859) (xy 137.162218 123.622861) (xy 137.116449 123.66863) (xy 137.022859 123.762219) + (xy 136.913371 123.92608) (xy 136.913364 123.926093) (xy 136.886721 123.990417) (xy 136.886713 123.990437) + (xy 136.885881 123.992447) (xy 136.837949 124.108164) (xy 136.834485 124.125581) (xy 136.832529 124.13541) + (xy 136.832528 124.135415) (xy 136.7995 124.301456) (xy 136.7995 124.301459) (xy 136.7995 135.498541) + (xy 136.7995 135.498543) (xy 136.799499 135.498543) (xy 136.837947 135.691829) (xy 136.83795 135.691839) + (xy 136.913364 135.873907) (xy 136.913371 135.87392) (xy 137.02286 136.037781) (xy 137.022863 136.037785) + (xy 137.166537 136.181459) (xy 137.166559 136.181479) (xy 139.019735 138.034655) (xy 139.019764 138.034686) + (xy 139.162214 138.177136) (xy 139.162218 138.177139) (xy 139.326079 138.286628) (xy 139.326092 138.286635) + (xy 139.454833 138.339961) (xy 139.493681 138.356052) (xy 139.508164 138.362051) (xy 139.604812 138.381275) + (xy 139.613057 138.382915) (xy 139.701458 138.4005) (xy 139.701459 138.4005) (xy 146.698543 138.4005) + (xy 146.828702 138.374609) (xy 146.891835 138.362051) (xy 147.073914 138.286632) (xy 147.237782 138.177139) + (xy 147.377139 138.037782) (xy 147.486632 137.873914) (xy 147.562051 137.691835) (xy 147.596132 137.5205) + (xy 147.6005 137.498543) (xy 147.6005 137.301456) (xy 147.562052 137.10817) (xy 147.562051 137.108169) + (xy 147.562051 137.108165) (xy 147.554252 137.089337) (xy 147.486635 136.926092) (xy 147.486628 136.926079) + (xy 147.377139 136.762218) (xy 147.377136 136.762214) (xy 147.237785 136.622863) (xy 147.237781 136.62286) + (xy 147.07392 136.513371) (xy 147.073907 136.513364) (xy 146.891839 136.43795) (xy 146.891829 136.437947) + (xy 146.698543 136.3995) (xy 146.698541 136.3995) (xy 140.265782 136.3995) (xy 140.198743 136.379815) + (xy 140.178101 136.363181) (xy 138.836819 135.021899) (xy 138.803334 134.960576) (xy 138.8005 134.934218) + (xy 138.8005 124.865782) (xy 138.820185 124.798743) (xy 138.836819 124.778101) (xy 141.597274 122.017647) + (xy 144.37714 119.237781) (xy 144.377143 119.237775) (xy 144.379642 119.234732) (xy 144.381361 119.23356) + (xy 144.381448 119.233474) (xy 144.381464 119.23349) (xy 144.437386 119.195394) (xy 144.50723 119.193519) + (xy 144.567001 119.229703) (xy 144.59772 119.292457) (xy 144.5995 119.313391) (xy 144.5995 120.334217) + (xy 144.579815 120.401256) (xy 144.563181 120.421898) (xy 139.62222 125.362859) (xy 139.622218 125.362861) + (xy 139.58458 125.400499) (xy 139.482859 125.502219) (xy 139.373371 125.666079) (xy 139.373364 125.666092) + (xy 139.332518 125.764705) (xy 139.332515 125.764713) (xy 139.330119 125.770499) (xy 139.297949 125.848164) + (xy 139.280435 125.936211) (xy 139.279282 125.942006) (xy 139.27928 125.942014) (xy 139.2595 126.041457) + (xy 139.2595 132.134867) (xy 139.24104 132.199961) (xy 139.225187 132.225663) (xy 139.225186 132.225665) + (xy 139.208155 132.277061) (xy 139.170001 132.392203) (xy 139.170001 132.392204) (xy 139.17 132.392204) + (xy 139.1595 132.494983) (xy 139.1595 133.845001) (xy 139.159501 133.845018) (xy 139.17 133.947796) + (xy 139.170001 133.947799) (xy 139.225185 134.114331) (xy 139.225187 134.114336) (xy 139.255958 134.164224) + (xy 139.317288 134.263656) (xy 139.441344 134.387712) (xy 139.590666 134.479814) (xy 139.757203 134.534999) + (xy 139.859991 134.5455) (xy 140.660008 134.545499) (xy 140.660016 134.545498) (xy 140.660019 134.545498) + (xy 140.716302 134.539748) (xy 140.762797 134.534999) (xy 140.929334 134.479814) (xy 141.078656 134.387712) + (xy 141.202712 134.263656) (xy 141.24231 134.199456) (xy 141.294258 134.152732) (xy 141.36322 134.141509) + (xy 141.427303 134.169352) (xy 141.43553 134.176872) (xy 141.543072 134.284414) (xy 141.683212 134.386232) + (xy 141.837555 134.464873) (xy 142.002299 134.518402) (xy 142.173389 134.5455) (xy 142.17339 134.5455) + (xy 142.34661 134.5455) (xy 142.346611 134.5455) (xy 142.517701 134.518402) (xy 142.682445 134.464873) + (xy 142.836788 134.386232) (xy 142.976928 134.284414) (xy 143.099414 134.161928) (xy 143.159682 134.078975) + (xy 143.215012 134.036311) (xy 143.284626 134.030332) (xy 143.346421 134.062938) (xy 143.360315 134.078973) + (xy 143.420586 134.161928) (xy 143.543072 134.284414) (xy 143.683212 134.386232) (xy 143.837555 134.464873) + (xy 144.002299 134.518402) (xy 144.173389 134.5455) (xy 144.17339 134.5455) (xy 144.34661 134.5455) + (xy 144.346611 134.5455) (xy 144.517701 134.518402) (xy 144.682445 134.464873) (xy 144.836788 134.386232) + (xy 144.976928 134.284414) (xy 145.099414 134.161928) (xy 145.159991 134.07855) (xy 145.215321 134.035885) + (xy 145.284934 134.029906) (xy 145.346729 134.062512) (xy 145.360628 134.078551) (xy 145.420967 134.161602) + (xy 145.543397 134.284032) (xy 145.683475 134.385804) (xy 145.837744 134.464408) (xy 146.002415 134.517914) + (xy 146.002414 134.517914) (xy 146.009999 134.519115) (xy 146.01 134.519114) (xy 146.01 133.45033) + (xy 146.029745 133.470075) (xy 146.115255 133.519444) (xy 146.21063 133.545) (xy 146.30937 133.545) + (xy 146.404745 133.519444) (xy 146.490255 133.470075) (xy 146.51 133.45033) (xy 146.51 134.519115) + (xy 146.517584 134.517914) (xy 146.682255 134.464408) (xy 146.836524 134.385804) (xy 146.976602 134.284032) + (xy 147.099032 134.161602) (xy 147.200804 134.021524) (xy 147.279408 133.867257) (xy 147.332914 133.702584) + (xy 147.36 133.531571) (xy 147.36 133.42) (xy 146.54033 133.42) (xy 146.560075 133.400255) (xy 146.609444 133.314745) + (xy 146.635 133.21937) (xy 146.635 133.12063) (xy 146.609444 133.025255) (xy 146.560075 132.939745) + (xy 146.54033 132.92) (xy 147.36 132.92) (xy 147.36 132.808428) (xy 147.332914 132.637415) (xy 147.279408 132.472742) + (xy 147.200804 132.318475) (xy 147.099032 132.178397) (xy 146.976602 132.055967) (xy 146.836524 131.954195) + (xy 146.682257 131.875591) (xy 146.517589 131.822087) (xy 146.517581 131.822085) (xy 146.51 131.820884) + (xy 146.51 132.88967) (xy 146.490255 132.869925) (xy 146.404745 132.820556) (xy 146.30937 132.795) + (xy 146.21063 132.795) (xy 146.115255 132.820556) (xy 146.029745 132.869925) (xy 146.01 132.88967) + (xy 146.01 131.820884) (xy 146.009999 131.820884) (xy 146.002418 131.822085) (xy 146.00241 131.822087) + (xy 145.837742 131.875591) (xy 145.683475 131.954195) (xy 145.543397 132.055967) (xy 145.420965 132.178399) + (xy 145.420961 132.178404) (xy 145.360627 132.261448) (xy 145.305297 132.304114) (xy 145.235684 132.310093) + (xy 145.173889 132.277488) (xy 145.159991 132.261449) (xy 145.15999 132.261448) (xy 145.099414 132.178072) + (xy 144.976928 132.055586) (xy 144.836788 131.953768) (xy 144.682445 131.875127) (xy 144.517701 131.821598) + (xy 144.517699 131.821597) (xy 144.517698 131.821597) (xy 144.369953 131.798197) (xy 144.346611 131.7945) + (xy 144.173389 131.7945) (xy 144.150047 131.798197) (xy 144.002302 131.821597) (xy 143.837552 131.875128) + (xy 143.683211 131.953768) (xy 143.603256 132.011859) (xy 143.543072 132.055586) (xy 143.54307 132.055588) + (xy 143.543069 132.055588) (xy 143.472181 132.126477) (xy 143.410858 132.159962) (xy 143.341166 132.154978) + (xy 143.285233 132.113106) (xy 143.260816 132.047642) (xy 143.2605 132.038796) (xy 143.2605 128.405782) + (xy 143.280185 128.338743) (xy 143.296819 128.318101) (xy 144.978102 126.636819) (xy 145.039425 126.603334) + (xy 145.065783 126.6005) (xy 148.698542 126.6005) (xy 148.726251 126.594987) (xy 148.795188 126.581275) + (xy 148.891836 126.562051) (xy 148.952497 126.536924) (xy 149.073914 126.486632) (xy 149.237782 126.377139) + (xy 149.377139 126.237782) (xy 149.37714 126.237779) (xy 149.384206 126.230714) (xy 149.384209 126.23071) + (xy 152.837778 122.777141) (xy 152.837782 122.777139) (xy 152.977139 122.637782) (xy 153.086632 122.473914) + (xy 153.092603 122.4595) (xy 153.144094 122.335187) (xy 153.162051 122.291835) (xy 153.17084 122.247651) + (xy 153.176441 122.219498) (xy 153.182358 122.189746) (xy 153.182358 122.189744) (xy 153.2005 122.098541) + (xy 153.2005 113.504675) (xy 153.200501 113.504654) (xy 153.200501 113.301457) (xy 153.2005 113.301455) + (xy 153.19939 113.295876) (xy 153.162052 113.108165) (xy 153.098573 112.954914) (xy 153.086633 112.926088) + (xy 153.086628 112.926079) (xy 152.97714 112.762219) (xy 152.977137 112.762215) (xy 151.764209 111.549289) + (xy 151.764206 111.549285) (xy 151.764206 111.549286) (xy 151.757139 111.542219) (xy 151.757139 111.542218) + (xy 151.617782 111.402861) (xy 151.617781 111.40286) (xy 151.61778 111.402859) (xy 151.45392 111.293371) + (xy 151.453907 111.293364) (xy 151.315835 111.236174) (xy 151.315833 111.236173) (xy 151.307643 111.232781) + (xy 151.271836 111.217949) (xy 151.151019 111.193917) (xy 151.147768 111.19327) (xy 151.147755 111.193267) + (xy 151.078543 111.1795) (xy 151.078541 111.1795) (xy 149.416217 111.1795) (xy 149.349178 111.159815) + (xy 149.343339 111.155824) (xy 149.263266 111.097647) (xy 149.193403 111.06205) (xy 149.111827 111.020485) + (xy 149.061031 110.97251) (xy 149.044236 110.904689) (xy 149.066773 110.838554) (xy 149.111827 110.799515) + (xy 149.153856 110.7781) (xy 149.263266 110.722353) (xy 149.424418 110.605269) (xy 149.565269 110.464418) + (xy 149.682353 110.303266) (xy 149.772785 110.125783) (xy 149.802028 110.035782) (xy 149.834338 109.936343) + (xy 149.834338 109.936342) (xy 149.834339 109.936339) (xy 149.8655 109.739597) (xy 149.8655 109.540403) + (xy 149.834339 109.343661) (xy 149.834338 109.343657) (xy 149.834338 109.343656) (xy 149.772786 109.154219) + (xy 149.726164 109.062718) (xy 149.682353 108.976734) (xy 149.565269 108.815582) (xy 149.424418 108.674731) + (xy 149.263266 108.557647) (xy 149.111827 108.480485) (xy 149.061031 108.43251) (xy 149.044236 108.364689) + (xy 149.066773 108.298554) (xy 149.111827 108.259515) (xy 149.142012 108.244135) (xy 149.263266 108.182353) + (xy 149.343332 108.124181) (xy 149.409138 108.100702) (xy 149.416217 108.1005) (xy 151.274218 108.1005) + (xy 151.341257 108.120185) (xy 151.361899 108.136819) (xy 154.563181 111.338101) (xy 154.596666 111.399424) + (xy 154.5995 111.425782) (xy 154.5995 122.934217) (xy 154.579815 123.001256) (xy 154.563181 123.021898) + (xy 152.070661 125.514418) (xy 149.562221 128.022858) (xy 149.562218 128.022861) (xy 149.496977 128.088102) + (xy 149.422859 128.162219) (xy 149.313371 128.32608) (xy 149.313364 128.326093) (xy 149.276989 128.413914) + (xy 149.242183 128.497944) (xy 149.242181 128.49795) (xy 149.237949 128.508164) (xy 149.237946 128.508175) + (xy 149.1995 128.701454) (xy 149.1995 128.701459) (xy 149.1995 136.298541) (xy 149.209249 136.347553) + (xy 149.237949 136.491836) (xy 149.25633 136.536211) (xy 149.259716 136.544387) (xy 149.259719 136.544396) + (xy 149.313364 136.673907) (xy 149.313371 136.67392) (xy 149.42286 136.837781) (xy 149.422863 136.837785) + (xy 149.566537 136.981459) (xy 149.566559 136.981479) (xy 151.039735 138.454655) (xy 151.039764 138.454686) + (xy 151.182217 138.597139) (xy 151.34608 138.706628) (xy 151.346086 138.706632) (xy 151.431386 138.741964) + (xy 151.528164 138.782051) (xy 151.55864 138.788113) (xy 151.65101 138.806486) (xy 151.721456 138.8205) + (xy 151.721459 138.8205) (xy 177.958543 138.8205) (xy 178.005506 138.811157) (xy 178.12136 138.788113) + (xy 178.151836 138.782051) (xy 178.248614 138.741964) (xy 178.333914 138.706632) (xy 178.497782 138.597139) + (xy 178.637139 138.457782) (xy 178.63714 138.457779) (xy 178.644206 138.450714) (xy 178.644209 138.45071) + (xy 180.497778 136.597141) (xy 180.497782 136.597139) (xy 180.61621 136.478711) (xy 197.1495 136.478711) + (xy 197.1495 136.721288) (xy 197.181161 136.961785) (xy 197.243947 137.196104) (xy 197.336773 137.420205) + (xy 197.336776 137.420212) (xy 197.458064 137.630289) (xy 197.458066 137.630292) (xy 197.458067 137.630293) + (xy 197.605733 137.822736) (xy 197.605739 137.822743) (xy 197.777256 137.99426) (xy 197.777263 137.994266) + (xy 197.833978 138.037785) (xy 197.969711 138.141936) (xy 198.179788 138.263224) (xy 198.4039 138.356054) + (xy 198.638211 138.418838) (xy 198.818586 138.442584) (xy 198.878711 138.4505) (xy 198.878712 138.4505) + (xy 199.121289 138.4505) (xy 199.169388 138.444167) (xy 199.361789 138.418838) (xy 199.5961 138.356054) + (xy 199.820212 138.263224) (xy 200.030289 138.141936) (xy 200.222738 137.994265) (xy 200.394265 137.822738) + (xy 200.541936 137.630289) (xy 200.663224 137.420212) (xy 200.756054 137.1961) (xy 200.818838 136.961789) + (xy 200.8505 136.721288) (xy 200.8505 136.478712) (xy 200.818838 136.238211) (xy 200.756054 136.0039) + (xy 200.663224 135.779788) (xy 200.541936 135.569711) (xy 200.443863 135.441899) (xy 200.394266 135.377263) + (xy 200.39426 135.377256) (xy 200.222743 135.205739) (xy 200.222736 135.205733) (xy 200.030293 135.058067) + (xy 200.030292 135.058066) (xy 200.030289 135.058064) (xy 199.820212 134.936776) (xy 199.820205 134.936773) + (xy 199.596104 134.843947) (xy 199.361785 134.781161) (xy 199.121289 134.7495) (xy 199.121288 134.7495) + (xy 198.878712 134.7495) (xy 198.878711 134.7495) (xy 198.638214 134.781161) (xy 198.403895 134.843947) + (xy 198.179794 134.936773) (xy 198.179785 134.936777) (xy 197.969706 135.058067) (xy 197.777263 135.205733) + (xy 197.777256 135.205739) (xy 197.605739 135.377256) (xy 197.605733 135.377263) (xy 197.458067 135.569706) + (xy 197.336777 135.779785) (xy 197.336773 135.779794) (xy 197.243947 136.003895) (xy 197.181161 136.238214) + (xy 197.1495 136.478711) (xy 180.61621 136.478711) (xy 180.637139 136.457782) (xy 180.746632 136.293914) + (xy 180.793212 136.181459) (xy 180.799961 136.165166) (xy 180.799961 136.165165) (xy 180.822051 136.111836) + (xy 180.859919 135.92146) (xy 180.859924 135.921461) (xy 180.859924 135.921434) (xy 180.8605 135.918541) + (xy 180.8605 134.301204) (xy 180.880185 134.234165) (xy 180.932989 134.18841) (xy 181.002147 134.178466) + (xy 181.065703 134.207491) (xy 181.072181 134.213523) (xy 181.143072 134.284414) (xy 181.283212 134.386232) + (xy 181.437555 134.464873) (xy 181.602299 134.518402) (xy 181.773389 134.5455) (xy 181.77339 134.5455) + (xy 181.94661 134.5455) (xy 181.946611 134.5455) (xy 182.117701 134.518402) (xy 182.282445 134.464873) + (xy 182.436788 134.386232) (xy 182.576928 134.284414) (xy 182.699414 134.161928) (xy 182.759991 134.07855) + (xy 182.815321 134.035885) (xy 182.884934 134.029906) (xy 182.946729 134.062512) (xy 182.960628 134.078551) + (xy 183.020967 134.161602) (xy 183.143397 134.284032) (xy 183.283475 134.385804) (xy 183.437744 134.464408) + (xy 183.602415 134.517914) (xy 183.602414 134.517914) (xy 183.609999 134.519115) (xy 183.61 134.519114) + (xy 183.61 133.45033) (xy 183.629745 133.470075) (xy 183.715255 133.519444) (xy 183.81063 133.545) + (xy 183.90937 133.545) (xy 184.004745 133.519444) (xy 184.090255 133.470075) (xy 184.11 133.45033) + (xy 184.11 134.519115) (xy 184.117584 134.517914) (xy 184.282255 134.464408) (xy 184.436524 134.385804) + (xy 184.576602 134.284032) (xy 184.699032 134.161602) (xy 184.800804 134.021524) (xy 184.879408 133.867257) + (xy 184.932914 133.702584) (xy 184.96 133.531571) (xy 184.96 133.42) (xy 184.14033 133.42) (xy 184.160075 133.400255) + (xy 184.209444 133.314745) (xy 184.235 133.21937) (xy 184.235 133.12063) (xy 184.209444 133.025255) + (xy 184.160075 132.939745) (xy 184.14033 132.92) (xy 184.96 132.92) (xy 184.96 132.808428) (xy 184.932914 132.637415) + (xy 184.879408 132.472742) (xy 184.800804 132.318475) (xy 184.699032 132.178397) (xy 184.576602 132.055967) + (xy 184.436524 131.954195) (xy 184.282257 131.875591) (xy 184.117589 131.822087) (xy 184.117581 131.822085) + (xy 184.11 131.820884) (xy 184.11 132.88967) (xy 184.090255 132.869925) (xy 184.004745 132.820556) + (xy 183.90937 132.795) (xy 183.81063 132.795) (xy 183.715255 132.820556) (xy 183.629745 132.869925) + (xy 183.61 132.88967) (xy 183.61 131.820884) (xy 183.609999 131.820884) (xy 183.602418 131.822085) + (xy 183.60241 131.822087) (xy 183.437742 131.875591) (xy 183.283475 131.954195) (xy 183.143397 132.055967) + (xy 183.072181 132.127184) (xy 183.010858 132.160669) (xy 182.941166 132.155685) (xy 182.885233 132.113813) + (xy 182.860816 132.048349) (xy 182.8605 132.039503) (xy 182.8605 130.87123) (xy 182.880185 130.804191) + (xy 182.932989 130.758436) (xy 183.002147 130.748492) (xy 183.065703 130.777517) (xy 183.072181 130.783549) + (xy 183.081344 130.792712) (xy 183.230666 130.884814) (xy 183.397203 130.939999) (xy 183.499991 130.9505) + (xy 184.900008 130.950499) (xy 185.002797 130.939999) (xy 185.169334 130.884814) (xy 185.318656 130.792712) + (xy 185.442712 130.668656) (xy 185.534814 130.519334) (xy 185.589999 130.352797) (xy 185.594177 130.311896) + (xy 185.595171 130.309459) (xy 185.594797 130.306853) (xy 185.6083 130.277285) (xy 185.620573 130.247207) + (xy 185.622727 130.245694) (xy 185.623822 130.243297) (xy 185.65117 130.225721) (xy 185.677753 130.207055) + (xy 185.681065 130.206509) (xy 185.6826 130.205523) (xy 185.717535 130.2005) (xy 185.734218 130.2005) + (xy 185.801257 130.220185) (xy 185.821899 130.236819) (xy 188.563181 132.978101) (xy 188.596666 133.039424) + (xy 188.5995 133.065782) (xy 188.5995 133.950001) (xy 188.599501 133.950019) (xy 188.61 134.052796) + (xy 188.610001 134.052799) (xy 188.654823 134.18806) (xy 188.665186 134.219334) (xy 188.757288 134.368656) + (xy 188.881344 134.492712) (xy 189.030666 134.584814) (xy 189.197203 134.639999) (xy 189.299991 134.6505) + (xy 190.600008 134.650499) (xy 190.702797 134.639999) (xy 190.869334 134.584814) (xy 191.018656 134.492712) + (xy 191.142712 134.368656) (xy 191.234814 134.219334) (xy 191.234814 134.219331) (xy 191.238178 134.213879) + (xy 191.290126 134.167154) (xy 191.359088 134.155931) (xy 191.42317 134.183774) (xy 191.431398 134.191294) + (xy 191.570213 134.330109) (xy 191.742179 134.455048) (xy 191.742181 134.455049) (xy 191.742184 134.455051) + (xy 191.931588 134.551557) (xy 192.133757 134.617246) (xy 192.343713 134.6505) (xy 192.343714 134.6505) + (xy 192.556286 134.6505) (xy 192.556287 134.6505) (xy 192.766243 134.617246) (xy 192.968412 134.551557) + (xy 193.157816 134.455051) (xy 193.231735 134.401346) (xy 193.329786 134.330109) (xy 193.329788 134.330106) + (xy 193.329792 134.330104) (xy 193.480104 134.179792) (xy 193.480106 134.179788) (xy 193.480109 134.179786) + (xy 193.605048 134.00782) (xy 193.605047 134.00782) (xy 193.605051 134.007816) (xy 193.701557 133.818412) + (xy 193.767246 133.616243) (xy 193.8005 133.406287) (xy 193.8005 132.893713) (xy 193.767246 132.683757) + (xy 193.701557 132.481588) (xy 193.605051 132.292184) (xy 193.605049 132.292181) (xy 193.605048 132.292179) + (xy 193.477241 132.116266) (xy 193.478108 132.115635) (xy 193.451641 132.056581) (xy 193.4505 132.0398) + (xy 193.4505 131.551458) (xy 193.449431 131.546086) (xy 193.44943 131.54608) (xy 193.425639 131.426477) + (xy 193.412051 131.358164) (xy 193.345352 131.197139) (xy 193.336632 131.176086) (xy 193.281885 131.094152) + (xy 193.22714 131.012219) (xy 193.165419 130.950498) (xy 193.087782 130.872861) (xy 193.087781 130.87286) + (xy 190.823165 128.608244) (xy 190.78968 128.546921) (xy 190.794664 128.477229) (xy 190.836536 128.421296) + (xy 190.886655 128.398946) (xy 190.910182 128.394265) (xy 191.033497 128.369737) (xy 191.169585 128.313368) + (xy 191.179172 128.309397) (xy 191.179172 128.309396) (xy 191.179179 128.309394) (xy 191.310289 128.221789) + (xy 191.421789 128.110289) (xy 191.509394 127.979179) (xy 191.517226 127.960272) (xy 191.5502 127.880663) + (xy 191.569737 127.833497) (xy 191.6005 127.678842) (xy 191.6005 127.521158) (xy 191.6005 127.521155) + (xy 191.600499 127.521153) (xy 192.1995 127.521153) (xy 192.1995 127.678846) (xy 192.230261 127.833489) + (xy 192.230264 127.833501) (xy 192.290602 127.979172) (xy 192.290609 127.979185) (xy 192.37821 128.110288) + (xy 192.378213 128.110292) (xy 192.489707 128.221786) (xy 192.489711 128.221789) (xy 192.620814 128.30939) + (xy 192.620827 128.309397) (xy 192.729524 128.35442) (xy 192.766503 128.369737) (xy 192.913346 128.398946) + (xy 192.921153 128.400499) (xy 192.921156 128.4005) (xy 192.921158 128.4005) (xy 193.078844 128.4005) + (xy 193.078845 128.400499) (xy 193.233497 128.369737) (xy 193.369585 128.313368) (xy 193.379172 128.309397) + (xy 193.379172 128.309396) (xy 193.379179 128.309394) (xy 193.510289 128.221789) (xy 193.621789 128.110289) + (xy 193.709394 127.979179) (xy 193.717226 127.960272) (xy 193.7502 127.880663) (xy 193.769737 127.833497) + (xy 193.8005 127.678842) (xy 193.8005 127.521158) (xy 193.8005 127.521155) (xy 193.800499 127.521153) + (xy 194.1995 127.521153) (xy 194.1995 127.678846) (xy 194.230261 127.833489) (xy 194.230264 127.833501) + (xy 194.290602 127.979172) (xy 194.290609 127.979185) (xy 194.37821 128.110288) (xy 194.378213 128.110292) + (xy 194.489707 128.221786) (xy 194.489711 128.221789) (xy 194.620814 128.30939) (xy 194.620827 128.309397) + (xy 194.729524 128.35442) (xy 194.766503 128.369737) (xy 194.913346 128.398946) (xy 194.921153 128.400499) + (xy 194.921156 128.4005) (xy 194.921158 128.4005) (xy 195.078844 128.4005) (xy 195.078845 128.400499) + (xy 195.233497 128.369737) (xy 195.369585 128.313368) (xy 195.379172 128.309397) (xy 195.379172 128.309396) + (xy 195.379179 128.309394) (xy 195.510289 128.221789) (xy 195.621789 128.110289) (xy 195.709394 127.979179) + (xy 195.717226 127.960272) (xy 195.7502 127.880663) (xy 195.769737 127.833497) (xy 195.8005 127.678842) + (xy 195.8005 127.521158) (xy 195.8005 127.521155) (xy 195.800499 127.521153) (xy 195.786246 127.4495) + (xy 195.769737 127.366503) (xy 195.744894 127.306526) (xy 195.709397 127.220827) (xy 195.70939 127.220814) + (xy 195.621789 127.089711) (xy 195.621786 127.089707) (xy 195.510292 126.978213) (xy 195.510288 126.97821) + (xy 195.379185 126.890609) (xy 195.379172 126.890602) (xy 195.233501 126.830264) (xy 195.233489 126.830261) + (xy 195.078845 126.7995) (xy 195.078842 126.7995) (xy 194.921158 126.7995) (xy 194.921155 126.7995) + (xy 194.76651 126.830261) (xy 194.766498 126.830264) (xy 194.620827 126.890602) (xy 194.620814 126.890609) + (xy 194.489711 126.97821) (xy 194.489707 126.978213) (xy 194.378213 127.089707) (xy 194.37821 127.089711) + (xy 194.290609 127.220814) (xy 194.290602 127.220827) (xy 194.230264 127.366498) (xy 194.230261 127.36651) + (xy 194.1995 127.521153) (xy 193.800499 127.521153) (xy 193.786246 127.4495) (xy 193.769737 127.366503) + (xy 193.744894 127.306526) (xy 193.709397 127.220827) (xy 193.70939 127.220814) (xy 193.621789 127.089711) + (xy 193.621786 127.089707) (xy 193.510292 126.978213) (xy 193.510288 126.97821) (xy 193.379185 126.890609) + (xy 193.379172 126.890602) (xy 193.233501 126.830264) (xy 193.233489 126.830261) (xy 193.078845 126.7995) + (xy 193.078842 126.7995) (xy 192.921158 126.7995) (xy 192.921155 126.7995) (xy 192.76651 126.830261) + (xy 192.766498 126.830264) (xy 192.620827 126.890602) (xy 192.620814 126.890609) (xy 192.489711 126.97821) + (xy 192.489707 126.978213) (xy 192.378213 127.089707) (xy 192.37821 127.089711) (xy 192.290609 127.220814) + (xy 192.290602 127.220827) (xy 192.230264 127.366498) (xy 192.230261 127.36651) (xy 192.1995 127.521153) + (xy 191.600499 127.521153) (xy 191.586246 127.4495) (xy 191.569737 127.366503) (xy 191.544894 127.306526) + (xy 191.509397 127.220827) (xy 191.50939 127.220814) (xy 191.421789 127.089711) (xy 191.421786 127.089707) + (xy 191.310292 126.978213) (xy 191.310288 126.97821) (xy 191.179185 126.890609) (xy 191.179172 126.890602) + (xy 191.033501 126.830264) (xy 191.033489 126.830261) (xy 190.878845 126.7995) (xy 190.878842 126.7995) + (xy 190.721158 126.7995) (xy 190.721155 126.7995) (xy 190.56651 126.830261) (xy 190.566498 126.830264) + (xy 190.420827 126.890602) (xy 190.420814 126.890609) (xy 190.289711 126.97821) (xy 190.289707 126.978213) + (xy 190.178213 127.089707) (xy 190.17821 127.089711) (xy 190.090609 127.220814) (xy 190.090602 127.220827) + (xy 190.030264 127.366498) (xy 190.030261 127.366508) (xy 190.001053 127.513345) (xy 189.968668 127.575256) + (xy 189.907952 127.60983) (xy 189.838182 127.606089) (xy 189.791755 127.576834) (xy 187.827102 125.612181) + (xy 187.793617 125.550858) (xy 187.798601 125.481166) (xy 187.840473 125.425233) (xy 187.905937 125.400816) + (xy 187.914783 125.4005) (xy 187.938844 125.4005) (xy 187.938845 125.400499) (xy 188.093497 125.369737) + (xy 188.227026 125.314428) (xy 188.239172 125.309397) (xy 188.239172 125.309396) (xy 188.239179 125.309394) + (xy 188.370289 125.221789) (xy 188.481789 125.110289) (xy 188.569394 124.979179) (xy 188.629737 124.833497) + (xy 188.6605 124.678842) (xy 188.6605 124.521158) (xy 188.6605 124.521155) (xy 188.660499 124.521153) + (xy 188.651104 124.47392) (xy 188.629737 124.366503) (xy 188.614155 124.328884) (xy 188.569397 124.220827) + (xy 188.56939 124.220814) (xy 188.481789 124.089711) (xy 188.481786 124.089707) (xy 188.370292 123.978213) + (xy 188.370288 123.97821) (xy 188.239185 123.890609) (xy 188.239172 123.890602) (xy 188.093501 123.830264) + (xy 188.093489 123.830261) (xy 187.938845 123.7995) (xy 187.938842 123.7995) (xy 187.781158 123.7995) + (xy 187.781155 123.7995) (xy 187.62651 123.830261) (xy 187.626498 123.830264) (xy 187.480827 123.890602) + (xy 187.480814 123.890609) (xy 187.349711 123.97821) (xy 187.349707 123.978213) (xy 187.238213 124.089707) + (xy 187.23821 124.089711) (xy 187.150609 124.220814) (xy 187.150602 124.220827) (xy 187.090264 124.366498) + (xy 187.090261 124.36651) (xy 187.0595 124.521153) (xy 187.0595 124.545218) (xy 187.053261 124.566463) + (xy 187.051682 124.588552) (xy 187.043609 124.599335) (xy 187.039815 124.612257) (xy 187.023081 124.626756) + (xy 187.00981 124.644485) (xy 186.997189 124.649192) (xy 186.987011 124.658012) (xy 186.965093 124.661163) + (xy 186.944346 124.668902) (xy 186.931185 124.666039) (xy 186.917853 124.667956) (xy 186.897709 124.658756) + (xy 186.876073 124.65405) (xy 186.858347 124.640781) (xy 186.854297 124.638931) (xy 186.847819 124.632899) + (xy 186.784209 124.569289) (xy 186.784207 124.569286) (xy 186.734212 124.519291) (xy 186.700727 124.457968) + (xy 186.705711 124.388276) (xy 186.707332 124.384158) (xy 186.752305 124.275581) (xy 186.769737 124.233497) + (xy 186.8005 124.078842) (xy 186.8005 123.921158) (xy 186.8005 123.921155) (xy 186.800499 123.921153) + (xy 186.792446 123.880668) (xy 186.769737 123.766503) (xy 186.755174 123.731344) (xy 186.709397 123.620827) + (xy 186.70939 123.620814) (xy 186.621789 123.489711) (xy 186.621786 123.489707) (xy 186.510292 123.378213) + (xy 186.510288 123.37821) (xy 186.379185 123.290609) (xy 186.379172 123.290602) (xy 186.233501 123.230264) + (xy 186.233489 123.230261) (xy 186.078845 123.1995) (xy 186.078842 123.1995) (xy 185.921158 123.1995) + (xy 185.921155 123.1995) (xy 185.76651 123.230261) (xy 185.766498 123.230264) (xy 185.620827 123.290602) + (xy 185.620814 123.290609) (xy 185.489711 123.37821) (xy 185.489707 123.378213) (xy 185.412181 123.45574) + (xy 185.350858 123.489225) (xy 185.281166 123.484241) (xy 185.225233 123.442369) (xy 185.200816 123.376905) + (xy 185.2005 123.368059) (xy 185.2005 123.301456) (xy 185.180219 123.1995) (xy 185.165616 123.126086) + (xy 185.162051 123.108164) (xy 185.132967 123.037949) (xy 185.09514 122.946626) (xy 185.094533 122.945038) + (xy 185.09189 122.91186) (xy 185.088331 122.878752) (xy 185.089127 122.877161) (xy 185.088986 122.875389) + (xy 185.104703 122.846044) (xy 185.119606 122.816273) (xy 185.121135 122.815365) (xy 185.121975 122.813798) + (xy 185.151057 122.797611) (xy 185.179694 122.78062) (xy 185.182888 122.779894) (xy 185.183025 122.779819) + (xy 185.18318 122.779828) (xy 185.186142 122.779156) (xy 185.233497 122.769737) (xy 185.379179 122.709394) + (xy 185.510289 122.621789) (xy 185.621789 122.510289) (xy 185.709394 122.379179) (xy 185.769737 122.233497) + (xy 185.8005 122.078842) (xy 185.8005 121.921158) (xy 185.8005 121.921155) (xy 185.800499 121.921153) + (xy 187.0595 121.921153) (xy 187.0595 122.078846) (xy 187.090261 122.233489) (xy 187.090264 122.233501) + (xy 187.150602 122.379172) (xy 187.150609 122.379185) (xy 187.23821 122.510288) (xy 187.238213 122.510292) + (xy 187.349707 122.621786) (xy 187.349711 122.621789) (xy 187.480814 122.70939) (xy 187.480827 122.709397) + (xy 187.587858 122.75373) (xy 187.626503 122.769737) (xy 187.766634 122.797611) (xy 187.781153 122.800499) + (xy 187.781156 122.8005) (xy 187.781158 122.8005) (xy 187.938844 122.8005) (xy 187.938845 122.800499) + (xy 188.093497 122.769737) (xy 188.239179 122.709394) (xy 188.370289 122.621789) (xy 188.481789 122.510289) + (xy 188.569394 122.379179) (xy 188.629737 122.233497) (xy 188.6605 122.078842) (xy 188.6605 121.921158) + (xy 188.6605 121.921155) (xy 188.660499 121.921153) (xy 188.645843 121.847474) (xy 188.629737 121.766503) + (xy 188.604184 121.704812) (xy 188.569397 121.620827) (xy 188.56939 121.620814) (xy 188.481789 121.489711) + (xy 188.481786 121.489707) (xy 188.370292 121.378213) (xy 188.370288 121.37821) (xy 188.239185 121.290609) + (xy 188.239172 121.290602) (xy 188.093501 121.230264) (xy 188.093489 121.230261) (xy 187.938845 121.1995) + (xy 187.938842 121.1995) (xy 187.781158 121.1995) (xy 187.781155 121.1995) (xy 187.62651 121.230261) + (xy 187.626498 121.230264) (xy 187.480827 121.290602) (xy 187.480814 121.290609) (xy 187.349711 121.37821) + (xy 187.349707 121.378213) (xy 187.238213 121.489707) (xy 187.23821 121.489711) (xy 187.150609 121.620814) + (xy 187.150602 121.620827) (xy 187.090264 121.766498) (xy 187.090261 121.76651) (xy 187.0595 121.921153) + (xy 185.800499 121.921153) (xy 185.785843 121.847474) (xy 185.769737 121.766503) (xy 185.744184 121.704812) + (xy 185.709397 121.620827) (xy 185.70939 121.620814) (xy 185.621789 121.489711) (xy 185.621786 121.489707) + (xy 185.510292 121.378213) (xy 185.510288 121.37821) (xy 185.379185 121.290609) (xy 185.379172 121.290602) + (xy 185.233501 121.230264) (xy 185.233489 121.230261) (xy 185.078845 121.1995) (xy 185.078842 121.1995) + (xy 184.921158 121.1995) (xy 184.921155 121.1995) (xy 184.76651 121.230261) (xy 184.766498 121.230264) + (xy 184.620827 121.290602) (xy 184.620814 121.290609) (xy 184.489711 121.37821) (xy 184.489707 121.378213) + (xy 184.378213 121.489707) (xy 184.37821 121.489711) (xy 184.290609 121.620814) (xy 184.290604 121.620824) + (xy 184.228397 121.771006) (xy 184.184556 121.825409) (xy 184.118262 121.847474) (xy 184.050562 121.830195) + (xy 184.026155 121.811234) (xy 182.746319 120.531398) (xy 182.712834 120.470075) (xy 182.71 120.443717) + (xy 182.71 119.67) (xy 183.21 119.67) (xy 183.21 120.519999) (xy 183.459972 120.519999) (xy 183.459986 120.519998) + (xy 183.562697 120.509505) (xy 183.729119 120.454358) (xy 183.729124 120.454356) (xy 183.878345 120.362315) + (xy 184.002315 120.238345) (xy 184.012583 120.221699) (xy 184.064531 120.174973) (xy 184.133493 120.16375) + (xy 184.197576 120.191593) (xy 184.232684 120.239342) (xy 184.290602 120.379172) (xy 184.290609 120.379185) + (xy 184.37821 120.510288) (xy 184.378213 120.510292) (xy 184.489707 120.621786) (xy 184.489711 120.621789) + (xy 184.620814 120.70939) (xy 184.620827 120.709397) (xy 184.766498 120.769735) (xy 184.766503 120.769737) + (xy 184.921153 120.800499) (xy 184.921156 120.8005) (xy 184.921158 120.8005) (xy 185.078844 120.8005) + (xy 185.078845 120.800499) (xy 185.233497 120.769737) (xy 185.346166 120.723067) (xy 185.379172 120.709397) + (xy 185.379172 120.709396) (xy 185.379179 120.709394) (xy 185.510289 120.621789) (xy 185.621789 120.510289) + (xy 185.709394 120.379179) (xy 185.716415 120.36223) (xy 185.748158 120.285594) (xy 185.769737 120.233497) + (xy 185.785639 120.153554) (xy 185.8005 120.078845) (xy 185.8005 119.921155) (xy 185.800499 119.921153) + (xy 187.0595 119.921153) (xy 187.0595 120.078845) (xy 187.090261 120.233489) (xy 187.090264 120.233501) + (xy 187.150602 120.379172) (xy 187.150609 120.379185) (xy 187.23821 120.510288) (xy 187.238213 120.510292) + (xy 187.349707 120.621786) (xy 187.349711 120.621789) (xy 187.480814 120.70939) (xy 187.480827 120.709397) + (xy 187.626498 120.769735) (xy 187.626503 120.769737) (xy 187.781153 120.800499) (xy 187.781156 120.8005) + (xy 187.781158 120.8005) (xy 187.938844 120.8005) (xy 187.938845 120.800499) (xy 188.093497 120.769737) + (xy 188.206166 120.723067) (xy 188.239172 120.709397) (xy 188.239172 120.709396) (xy 188.239179 120.709394) + (xy 188.370289 120.621789) (xy 188.481789 120.510289) (xy 188.569394 120.379179) (xy 188.576415 120.36223) + (xy 188.608158 120.285594) (xy 188.629737 120.233497) (xy 188.645639 120.153554) (xy 188.6605 120.078845) + (xy 188.6605 119.921155) (xy 188.660499 119.921153) (xy 188.656848 119.902797) (xy 188.629737 119.766503) + (xy 188.619811 119.742539) (xy 188.569397 119.620827) (xy 188.56939 119.620814) (xy 188.481789 119.489711) + (xy 188.481786 119.489707) (xy 188.370292 119.378213) (xy 188.370288 119.37821) (xy 188.239185 119.290609) + (xy 188.239172 119.290602) (xy 188.093501 119.230264) (xy 188.093489 119.230261) (xy 187.938845 119.1995) + (xy 187.938842 119.1995) (xy 187.781158 119.1995) (xy 187.781155 119.1995) (xy 187.62651 119.230261) + (xy 187.626498 119.230264) (xy 187.480827 119.290602) (xy 187.480814 119.290609) (xy 187.349711 119.37821) + (xy 187.349707 119.378213) (xy 187.238213 119.489707) (xy 187.23821 119.489711) (xy 187.150609 119.620814) + (xy 187.150602 119.620827) (xy 187.090264 119.766498) (xy 187.090261 119.76651) (xy 187.0595 119.921153) + (xy 185.800499 119.921153) (xy 185.796848 119.902797) (xy 185.769737 119.766503) (xy 185.759811 119.742539) + (xy 185.709397 119.620827) (xy 185.70939 119.620814) (xy 185.621789 119.489711) (xy 185.621786 119.489707) + (xy 185.510292 119.378213) (xy 185.510288 119.37821) (xy 185.379185 119.290609) (xy 185.379172 119.290602) + (xy 185.233501 119.230264) (xy 185.233489 119.230261) (xy 185.078845 119.1995) (xy 185.078842 119.1995) + (xy 184.921158 119.1995) (xy 184.921155 119.1995) (xy 184.76651 119.230261) (xy 184.766498 119.230264) + (xy 184.620827 119.290602) (xy 184.620814 119.290609) (xy 184.489711 119.37821) (xy 184.489707 119.378213) + (xy 184.378213 119.489707) (xy 184.37821 119.489711) (xy 184.294568 119.614891) (xy 184.240956 119.659696) + (xy 184.191466 119.67) (xy 183.21 119.67) (xy 182.71 119.67) (xy 181.760001 119.67) (xy 181.760001 119.6755) + (xy 181.740316 119.742539) (xy 181.687512 119.788294) (xy 181.636001 119.7995) (xy 181.501457 119.7995) + (xy 181.308171 119.837947) (xy 181.308163 119.837949) (xy 181.126089 119.913367) (xy 181.126079 119.913372) + (xy 180.962219 120.02286) (xy 180.962215 120.022863) (xy 180.822863 120.162215) (xy 180.82286 120.162219) + (xy 180.713372 120.326079) (xy 180.713367 120.326089) (xy 180.637949 120.508163) (xy 180.637947 120.508171) + (xy 180.629589 120.550191) (xy 180.597205 120.612102) (xy 180.536489 120.646676) (xy 180.507972 120.65) + (xy 180.4 120.65) (xy 180.4 122.55) (xy 180.597828 122.55) (xy 180.597844 122.549999) (xy 180.657372 122.543598) + (xy 180.657379 122.543596) (xy 180.792086 122.493354) (xy 180.792093 122.49335) (xy 180.907187 122.40719) + (xy 180.90719 122.407187) (xy 180.99335 122.292093) (xy 180.993354 122.292086) (xy 181.043596 122.157379) + (xy 181.043598 122.157372) (xy 181.049999 122.097844) (xy 181.05 122.097827) (xy 181.05 121.964282) + (xy 181.069685 121.897243) (xy 181.122489 121.851488) (xy 181.191647 121.841544) (xy 181.255203 121.870569) + (xy 181.261678 121.876598) (xy 182.127226 122.742147) (xy 182.949525 123.564446) (xy 182.98301 123.625769) + (xy 182.978026 123.695461) (xy 182.959124 123.729021) (xy 182.957293 123.731336) (xy 182.865187 123.880663) + (xy 182.865185 123.880668) (xy 182.861892 123.890606) (xy 182.810001 124.047203) (xy 182.810001 124.047204) + (xy 182.81 124.047204) (xy 182.7995 124.149983) (xy 182.7995 125.885218) (xy 182.779815 125.952257) + (xy 182.727011 125.998012) (xy 182.657853 126.007956) (xy 182.594297 125.978931) (xy 182.587819 125.972899) + (xy 180.236819 123.621899) (xy 180.203334 123.560576) (xy 180.2005 123.534218) (xy 180.2005 123.501456) + (xy 180.162052 123.30817) (xy 180.162051 123.308169) (xy 180.162051 123.308165) (xy 180.14323 123.262726) + (xy 180.109938 123.182351) (xy 180.100499 123.134899) (xy 180.100499 123.102129) (xy 180.100498 123.102123) + (xy 180.100497 123.102116) (xy 180.094091 123.042517) (xy 180.092387 123.037949) (xy 180.043797 122.907671) + (xy 180.043793 122.907664) (xy 179.957547 122.792455) (xy 179.900538 122.749777) (xy 179.858667 122.693842) + (xy 179.853684 122.624151) (xy 179.88717 122.562829) (xy 179.9 122.549999) (xy 179.9 120.65) (xy 179.702155 120.65) + (xy 179.642627 120.656401) (xy 179.64262 120.656403) (xy 179.507913 120.706645) (xy 179.50791 120.706647) + (xy 179.448811 120.750889) (xy 179.383346 120.775306) (xy 179.315073 120.760454) (xy 179.265668 120.711049) + (xy 179.2505 120.651622) (xy 179.2505 120.241195) (xy 179.26896 120.176099) (xy 179.334814 120.069334) + (xy 179.389999 119.902797) (xy 179.4005 119.800009) (xy 179.400499 118.999992) (xy 179.389999 118.897203) + (xy 179.334814 118.730666) (xy 179.242712 118.581344) (xy 179.149049 118.487681) (xy 179.115564 118.426358) + (xy 179.120548 118.356666) (xy 179.149049 118.312319) (xy 179.17474 118.286628) (xy 179.242712 118.218656) + (xy 179.334814 118.069334) (xy 179.389999 117.902797) (xy 179.4005 117.800009) (xy 179.400499 116.999992) + (xy 179.389999 116.897203) (xy 179.334814 116.730666) (xy 179.242712 116.581344) (xy 179.118656 116.457288) + (xy 178.99203 116.379185) (xy 178.969336 116.365187) (xy 178.969331 116.365185) (xy 178.963283 116.363181) + (xy 178.802797 116.310001) (xy 178.802795 116.31) (xy 178.70001 116.2995) (xy 177.699998 116.2995) + (xy 177.69998 116.299501) (xy 177.597203 116.31) (xy 177.5972 116.310001) (xy 177.430668 116.365185) + (xy 177.430663 116.365187) (xy 177.414933 116.374889) (xy 177.404963 116.381039) (xy 177.339868 116.3995) + (xy 176.265782 116.3995) (xy 176.198743 116.379815) (xy 176.178101 116.363181) (xy 175.436819 115.621899) + (xy 175.403334 115.560576) (xy 175.4005 115.534218) (xy 175.4005 113.934783) (xy 175.406738 113.913537) + (xy 175.408318 113.89145) (xy 175.41639 113.880666) (xy 175.420185 113.867744) (xy 175.436916 113.853245) + (xy 175.450189 113.835516) (xy 175.462811 113.830808) (xy 175.472989 113.821989) (xy 175.494904 113.818837) + (xy 175.515653 113.811099) (xy 175.528814 113.813962) (xy 175.542147 113.812045) (xy 175.562291 113.821244) + (xy 175.583926 113.825951) (xy 175.601651 113.839219) (xy 175.605703 113.84107) (xy 175.612166 113.847087) + (xy 175.722218 113.957139) (xy 175.72222 113.95714) (xy 176.42286 114.657781) (xy 176.422861 114.657782) + (xy 176.51691 114.751831) (xy 176.562219 114.79714) (xy 176.726079 114.906628) (xy 176.726086 114.906632) + (xy 176.795022 114.935186) (xy 176.908164 114.982051) (xy 177.097588 115.01973) (xy 177.101454 115.020499) + (xy 177.101457 115.0205) (xy 177.101459 115.0205) (xy 177.29854 115.0205) (xy 177.761459 115.0205) + (xy 179.449868 115.0205) (xy 179.514963 115.03896) (xy 179.540666 115.054814) (xy 179.707203 115.109999) + (xy 179.809991 115.1205) (xy 180.810008 115.120499) (xy 180.810016 115.120498) (xy 180.810019 115.120498) + (xy 180.866302 115.114748) (xy 180.912797 115.109999) (xy 181.079334 115.054814) (xy 181.228656 114.962712) + (xy 181.352712 114.838656) (xy 181.444814 114.689334) (xy 181.499999 114.522797) (xy 181.499999 114.522793) + (xy 181.50019 114.522218) (xy 181.539962 114.464773) (xy 181.604478 114.43795) (xy 181.673254 114.450265) + (xy 181.724454 114.497808) (xy 181.741254 114.548619) (xy 181.745001 114.585297) (xy 181.745001 114.585299) + (xy 181.800185 114.751831) (xy 181.800187 114.751836) (xy 181.817091 114.779242) (xy 181.892287 114.901155) + (xy 181.892289 114.901157) (xy 181.923181 114.932049) (xy 181.956666 114.993372) (xy 181.9595 115.01973) + (xy 181.9595 116.50777) (xy 181.939815 116.574809) (xy 181.923181 116.595451) (xy 181.917289 116.601342) + (xy 181.825187 116.750663) (xy 181.825185 116.750668) (xy 181.798218 116.832051) (xy 181.770001 116.917203) + (xy 181.770001 116.917204) (xy 181.77 116.917204) (xy 181.7595 117.019983) (xy 181.7595 117.820001) + (xy 181.759501 117.820019) (xy 181.77 117.922796) (xy 181.770001 117.922799) (xy 181.782615 117.960864) + (xy 181.825186 118.089334) (xy 181.917286 118.238653) (xy 181.917289 118.238657) (xy 182.011304 118.332672) + (xy 182.044789 118.393995) (xy 182.039805 118.463687) (xy 182.011305 118.508034) (xy 181.917682 118.601657) + (xy 181.825643 118.750875) (xy 181.825641 118.75088) (xy 181.770494 118.917302) (xy 181.770493 118.917309) + (xy 181.76 119.020013) (xy 181.76 119.17) (xy 184.159999 119.17) (xy 184.159999 119.020028) (xy 184.159998 119.020013) + (xy 184.149505 118.917302) (xy 184.094358 118.75088) (xy 184.094356 118.750875) (xy 184.002315 118.601654) + (xy 183.908695 118.508034) (xy 183.87521 118.446711) (xy 183.880194 118.377019) (xy 183.908691 118.332676) + (xy 184.002712 118.238656) (xy 184.06238 118.141917) (xy 184.114328 118.095193) (xy 184.18329 118.08397) + (xy 184.247373 118.111813) (xy 184.28248 118.159562) (xy 184.290602 118.179173) (xy 184.290609 118.179185) + (xy 184.37821 118.310288) (xy 184.378213 118.310292) (xy 184.489707 118.421786) (xy 184.489711 118.421789) + (xy 184.620814 118.50939) (xy 184.620827 118.509397) (xy 184.699894 118.542147) (xy 184.766503 118.569737) + (xy 184.921153 118.600499) (xy 184.921156 118.6005) (xy 184.921158 118.6005) (xy 185.078844 118.6005) + (xy 185.078845 118.600499) (xy 185.233497 118.569737) (xy 185.377021 118.510288) (xy 185.379172 118.509397) + (xy 185.379172 118.509396) (xy 185.379179 118.509394) (xy 185.510289 118.421789) (xy 185.621789 118.310289) + (xy 185.709394 118.179179) (xy 185.769737 118.033497) (xy 185.8005 117.878842) (xy 185.8005 117.721158) + (xy 185.8005 117.721155) (xy 185.800499 117.721153) (xy 185.790326 117.670009) (xy 185.769737 117.566503) + (xy 185.765479 117.556222) (xy 185.709397 117.420827) (xy 185.70939 117.420814) (xy 185.621789 117.289711) + (xy 185.621786 117.289707) (xy 185.510292 117.178213) (xy 185.510288 117.17821) (xy 185.379185 117.090609) + (xy 185.379172 117.090602) (xy 185.233501 117.030264) (xy 185.233489 117.030261) (xy 185.078845 116.9995) + (xy 185.078842 116.9995) (xy 184.921158 116.9995) (xy 184.921155 116.9995) (xy 184.76651 117.030261) + (xy 184.766498 117.030264) (xy 184.620827 117.090602) (xy 184.620814 117.090609) (xy 184.489711 117.17821) + (xy 184.489707 117.178213) (xy 184.373903 117.294018) (xy 184.372403 117.292518) (xy 184.322593 117.32644) + (xy 184.252748 117.328302) (xy 184.192984 117.292108) (xy 184.162275 117.229349) (xy 184.160499 117.208436) + (xy 184.160499 117.019998) (xy 184.160498 117.01998) (xy 184.149999 116.917203) (xy 184.149998 116.9172) + (xy 184.128362 116.851908) (xy 184.094814 116.750666) (xy 184.002712 116.601344) (xy 183.996819 116.595451) + (xy 183.963334 116.534128) (xy 183.9605 116.50777) (xy 183.9605 115.936301) (xy 183.980185 115.869262) + (xy 184.032989 115.823507) (xy 184.102147 115.813563) (xy 184.165703 115.842588) (xy 184.203477 115.901366) + (xy 184.206117 115.91211) (xy 184.230261 116.033489) (xy 184.230264 116.033501) (xy 184.290602 116.179172) + (xy 184.290609 116.179185) (xy 184.37821 116.310288) (xy 184.378213 116.310292) (xy 184.489707 116.421786) + (xy 184.489711 116.421789) (xy 184.620814 116.50939) (xy 184.620827 116.509397) (xy 184.723143 116.551777) + (xy 184.766503 116.569737) (xy 184.921153 116.600499) (xy 184.921156 116.6005) (xy 184.921158 116.6005) + (xy 185.078844 116.6005) (xy 185.175155 116.581342) (xy 185.219636 116.572494) (xy 185.289227 116.578721) + (xy 185.331508 116.60643) (xy 185.372217 116.647139) (xy 185.527153 116.750663) (xy 185.536086 116.756632) + (xy 185.641994 116.8005) (xy 185.718164 116.832051) (xy 185.76333 116.841035) (xy 185.857568 116.85978) + (xy 185.911456 116.8705) (xy 185.911459 116.8705) (xy 185.91146 116.8705) (xy 186.10854 116.8705) + (xy 186.687111 116.8705) (xy 186.75415 116.890185) (xy 186.774792 116.906819) (xy 186.88249 117.014517) + (xy 187.073567 117.153343) (xy 187.181693 117.208436) (xy 187.253397 117.244971) (xy 187.304193 117.292946) + (xy 187.320988 117.360767) (xy 187.298451 117.426902) (xy 187.284784 117.443136) (xy 187.238214 117.489706) + (xy 187.23821 117.489711) (xy 187.150609 117.620814) (xy 187.150602 117.620827) (xy 187.090264 117.766498) + (xy 187.090261 117.76651) (xy 187.0595 117.921153) (xy 187.0595 118.078846) (xy 187.090261 118.233489) + (xy 187.090264 118.233501) (xy 187.150602 118.379172) (xy 187.150609 118.379185) (xy 187.23821 118.510288) + (xy 187.238213 118.510292) (xy 187.349707 118.621786) (xy 187.349711 118.621789) (xy 187.480814 118.70939) + (xy 187.480827 118.709397) (xy 187.62096 118.767441) (xy 187.626503 118.769737) (xy 187.781153 118.800499) + (xy 187.781156 118.8005) (xy 187.781158 118.8005) (xy 187.938844 118.8005) (xy 187.938845 118.800499) + (xy 188.093497 118.769737) (xy 188.218221 118.718075) (xy 188.239172 118.709397) (xy 188.239172 118.709396) + (xy 188.239179 118.709394) (xy 188.370289 118.621789) (xy 188.481789 118.510289) (xy 188.569394 118.379179) + (xy 188.570037 118.377628) (xy 188.600197 118.304814) (xy 188.629737 118.233497) (xy 188.6605 118.078842) + (xy 188.6605 117.921158) (xy 188.6605 117.921155) (xy 188.660499 117.921153) (xy 188.656847 117.902795) + (xy 188.629737 117.766503) (xy 188.610955 117.721158) (xy 188.569397 117.620827) (xy 188.56939 117.620814) + (xy 188.531021 117.563391) (xy 188.510143 117.496714) (xy 188.528627 117.429333) (xy 188.580606 117.382643) + (xy 188.634123 117.3705) (xy 189.087111 117.3705) (xy 189.116551 117.379144) (xy 189.146538 117.385668) + (xy 189.151553 117.389422) (xy 189.15415 117.390185) (xy 189.174792 117.406819) (xy 189.323181 117.555208) + (xy 189.356666 117.616531) (xy 189.3595 117.642889) (xy 189.3595 120.138097) (xy 189.396446 120.371368) + (xy 189.453431 120.546747) (xy 189.4595 120.585065) (xy 189.4595 121.070001) (xy 189.459501 121.070019) + (xy 189.47 121.172796) (xy 189.470001 121.172799) (xy 189.525185 121.339331) (xy 189.525187 121.339336) + (xy 189.546876 121.374499) (xy 189.617288 121.488656) (xy 189.741344 121.612712) (xy 189.890666 121.704814) + (xy 189.929156 121.717568) (xy 189.986602 121.75734) (xy 190.013425 121.821856) (xy 190.011771 121.859464) + (xy 189.9995 121.921158) (xy 189.9995 122.078846) (xy 190.019235 122.17806) (xy 190.013008 122.247651) + (xy 189.970145 122.302829) (xy 189.936624 122.319956) (xy 189.890672 122.335183) (xy 189.890663 122.335187) + (xy 189.741342 122.427289) (xy 189.617289 122.551342) (xy 189.525187 122.700663) (xy 189.525185 122.700668) + (xy 189.508912 122.749777) (xy 189.470001 122.867203) (xy 189.470001 122.867204) (xy 189.47 122.867204) + (xy 189.4595 122.969983) (xy 189.4595 123.454934) (xy 189.453431 123.493252) (xy 189.396447 123.66863) + (xy 189.3595 123.901902) (xy 189.3595 124.138097) (xy 189.396446 124.371368) (xy 189.453431 124.546747) + (xy 189.4595 124.585065) (xy 189.4595 125.070001) (xy 189.459501 125.070019) (xy 189.47 125.172796) + (xy 189.470001 125.172799) (xy 189.515265 125.309394) (xy 189.525186 125.339334) (xy 189.617288 125.488656) + (xy 189.741344 125.612712) (xy 189.890666 125.704814) (xy 190.057203 125.759999) (xy 190.159991 125.7705) + (xy 191.560008 125.770499) (xy 191.662797 125.759999) (xy 191.829334 125.704814) (xy 191.978656 125.612712) + (xy 192.094549 125.496819) (xy 192.155872 125.463334) (xy 192.18223 125.4605) (xy 197.0355 125.4605) + (xy 197.102539 125.480185) (xy 197.148294 125.532989) (xy 197.1595 125.5845) (xy 197.1595 126.704715) + (xy 197.142887 126.766714) (xy 197.095648 126.848534) (xy 197.095637 126.848556) (xy 197.008331 127.059333) + (xy 196.949281 127.279714) (xy 196.949278 127.279727) (xy 196.9195 127.505921) (xy 196.9195 127.734078) + (xy 196.949278 127.960272) (xy 196.949279 127.960277) (xy 196.94928 127.960283) (xy 197.008103 128.179815) + (xy 197.008331 128.180666) (xy 197.095638 128.391446) (xy 197.095646 128.391462) (xy 197.209717 128.589037) + (xy 197.209728 128.589053) (xy 197.348613 128.770052) (xy 197.348619 128.770059) (xy 197.50994 128.93138) + (xy 197.509946 128.931385) (xy 197.690955 129.070278) (xy 197.690962 129.070282) (xy 197.888537 129.184353) + (xy 197.888553 129.184361) (xy 197.961123 129.21442) (xy 198.099334 129.271669) (xy 198.319717 129.33072) + (xy 198.479474 129.351752) (xy 198.545921 129.3605) (xy 198.545922 129.3605) (xy 198.774079 129.3605) + (xy 198.825438 129.353738) (xy 199.000283 129.33072) (xy 199.220666 129.271669) (xy 199.396727 129.198742) + (xy 199.431446 129.184361) (xy 199.431449 129.184359) (xy 199.431455 129.184357) (xy 199.629045 129.070278) + (xy 199.810054 128.931385) (xy 199.971385 128.770054) (xy 200.110278 128.589045) (xy 200.224357 128.391455) + (xy 200.239698 128.35442) (xy 200.243033 128.346365) (xy 200.311669 128.180666) (xy 200.37072 127.960283) + (xy 200.4005 127.734078) (xy 200.4005 127.505922) (xy 200.394454 127.460001) (xy 200.374247 127.30651) + (xy 200.37072 127.279717) (xy 200.311669 127.059334) (xy 200.254162 126.9205) (xy 200.224362 126.848556) + (xy 200.224359 126.84855) (xy 200.224357 126.848545) (xy 200.21727 126.83627) (xy 200.177113 126.766714) + (xy 200.1605 126.704715) (xy 200.1605 124.875283) (xy 200.177114 124.813282) (xy 200.224351 124.731466) + (xy 200.224361 124.731446) (xy 200.25789 124.6505) (xy 200.311669 124.520666) (xy 200.37072 124.300283) + (xy 200.4005 124.074078) (xy 200.4005 123.845922) (xy 200.398839 123.833309) (xy 200.388688 123.756197) + (xy 200.37072 123.619717) (xy 200.311669 123.399334) (xy 200.271126 123.301456) (xy 200.224361 123.188553) + (xy 200.224353 123.188537) (xy 200.110282 122.990962) (xy 200.110278 122.990955) (xy 200.046372 122.907671) + (xy 199.971386 122.809947) (xy 199.97138 122.80994) (xy 199.810059 122.648619) (xy 199.810052 122.648613) + (xy 199.629053 122.509728) (xy 199.629051 122.509726) (xy 199.629045 122.509722) (xy 199.62904 122.509719) + (xy 199.629037 122.509717) (xy 199.431462 122.395646) (xy 199.431446 122.395638) (xy 199.220666 122.308331) + (xy 199.200132 122.302829) (xy 199.000283 122.24928) (xy 199.000277 122.249279) (xy 199.000272 122.249278) + (xy 198.774079 122.2195) (xy 198.774078 122.2195) (xy 198.545922 122.2195) (xy 198.545921 122.2195) + (xy 198.319727 122.249278) (xy 198.31972 122.249279) (xy 198.319717 122.24928) (xy 198.226567 122.274239) + (xy 198.099333 122.308331) (xy 197.888553 122.395638) (xy 197.888544 122.395643) (xy 197.846363 122.419997) + (xy 197.806715 122.442887) (xy 197.744716 122.4595) (xy 193.861703 122.4595) (xy 193.794664 122.439815) + (xy 193.748909 122.387011) (xy 193.738965 122.317853) (xy 193.747142 122.288048) (xy 193.763199 122.249281) + (xy 193.769737 122.233497) (xy 193.8005 122.078842) (xy 193.8005 121.921158) (xy 193.8005 121.921155) + (xy 193.800499 121.921153) (xy 193.785843 121.847474) (xy 193.769737 121.766503) (xy 193.744184 121.704812) + (xy 193.709397 121.620827) (xy 193.70939 121.620814) (xy 193.621789 121.489711) (xy 193.621786 121.489707) + (xy 193.510292 121.378213) (xy 193.510288 121.37821) (xy 193.379185 121.290609) (xy 193.379172 121.290602) + (xy 193.233501 121.230264) (xy 193.233489 121.230261) (xy 193.078845 121.1995) (xy 193.078842 121.1995) + (xy 192.921158 121.1995) (xy 192.921155 121.1995) (xy 192.76651 121.230261) (xy 192.766498 121.230264) + (xy 192.620827 121.290602) (xy 192.620814 121.290609) (xy 192.489711 121.37821) (xy 192.399357 121.468564) + (xy 192.338033 121.502048) (xy 192.268342 121.497064) (xy 192.212408 121.455192) (xy 192.187992 121.389727) + (xy 192.19397 121.341878) (xy 192.194811 121.339337) (xy 192.194814 121.339334) (xy 192.249999 121.172797) + (xy 192.2605 121.070009) (xy 192.260499 120.691939) (xy 192.280183 120.624901) (xy 192.332987 120.579146) + (xy 192.402146 120.569202) (xy 192.465701 120.598227) (xy 192.47218 120.604259) (xy 192.489707 120.621786) + (xy 192.489711 120.621789) (xy 192.620814 120.70939) (xy 192.620827 120.709397) (xy 192.766498 120.769735) + (xy 192.766503 120.769737) (xy 192.921153 120.800499) (xy 192.921156 120.8005) (xy 192.921158 120.8005) + (xy 193.078844 120.8005) (xy 193.078845 120.800499) (xy 193.233497 120.769737) (xy 193.346166 120.723067) + (xy 193.379172 120.709397) (xy 193.379172 120.709396) (xy 193.379179 120.709394) (xy 193.510289 120.621789) + (xy 193.621789 120.510289) (xy 193.709394 120.379179) (xy 193.716415 120.36223) (xy 193.748158 120.285594) + (xy 193.769737 120.233497) (xy 193.785639 120.153554) (xy 193.8005 120.078845) (xy 193.8005 119.921155) + (xy 193.800499 119.921153) (xy 193.796848 119.902797) (xy 193.769737 119.766503) (xy 193.759811 119.742539) + (xy 193.709397 119.620827) (xy 193.70939 119.620814) (xy 193.621789 119.489711) (xy 193.621786 119.489707) + (xy 193.510292 119.378213) (xy 193.510288 119.37821) (xy 193.379185 119.290609) (xy 193.379172 119.290602) + (xy 193.233501 119.230264) (xy 193.233489 119.230261) (xy 193.078845 119.1995) (xy 193.078842 119.1995) + (xy 192.921158 119.1995) (xy 192.921155 119.1995) (xy 192.76651 119.230261) (xy 192.766498 119.230264) + (xy 192.620827 119.290602) (xy 192.620816 119.290608) (xy 192.55339 119.335661) (xy 192.486713 119.356538) + (xy 192.419333 119.338053) (xy 192.372643 119.286074) (xy 192.3605 119.232558) (xy 192.3605 118.767441) + (xy 192.380185 118.700402) (xy 192.432989 118.654647) (xy 192.502147 118.644703) (xy 192.553391 118.664339) + (xy 192.620814 118.70939) (xy 192.620827 118.709397) (xy 192.76096 118.767441) (xy 192.766503 118.769737) + (xy 192.921153 118.800499) (xy 192.921156 118.8005) (xy 192.921158 118.8005) (xy 193.078844 118.8005) + (xy 193.078845 118.800499) (xy 193.233497 118.769737) (xy 193.358221 118.718075) (xy 193.379172 118.709397) + (xy 193.379172 118.709396) (xy 193.379179 118.709394) (xy 193.510289 118.621789) (xy 193.621789 118.510289) + (xy 193.709394 118.379179) (xy 193.710037 118.377628) (xy 193.740197 118.304814) (xy 193.769737 118.233497) + (xy 193.8005 118.078842) (xy 193.8005 117.921158) (xy 193.8005 117.921155) (xy 193.800499 117.921153) + (xy 193.796847 117.902795) (xy 193.769737 117.766503) (xy 193.750955 117.721158) (xy 193.709397 117.620827) + (xy 193.70939 117.620814) (xy 193.621789 117.489711) (xy 193.621786 117.489707) (xy 193.510292 117.378213) + (xy 193.510288 117.37821) (xy 193.379185 117.290609) (xy 193.379172 117.290602) (xy 193.233501 117.230264) + (xy 193.233489 117.230261) (xy 193.078845 117.1995) (xy 193.078842 117.1995) (xy 192.921158 117.1995) + (xy 192.921155 117.1995) (xy 192.76651 117.230261) (xy 192.766498 117.230264) (xy 192.620827 117.290602) + (xy 192.620816 117.290608) (xy 192.55339 117.335661) (xy 192.486713 117.356538) (xy 192.419333 117.338053) + (xy 192.372643 117.286074) (xy 192.3605 117.232558) (xy 192.3605 116.851903) (xy 192.348794 116.777998) + (xy 192.357748 116.708704) (xy 192.402744 116.655252) (xy 192.469496 116.634612) (xy 192.536809 116.653337) + (xy 192.540158 116.655497) (xy 192.620814 116.70939) (xy 192.620827 116.709397) (xy 192.734864 116.756632) + (xy 192.766503 116.769737) (xy 192.91225 116.798728) (xy 192.921153 116.800499) (xy 192.921156 116.8005) + (xy 192.921158 116.8005) (xy 193.078844 116.8005) (xy 193.078845 116.800499) (xy 193.233497 116.769737) + (xy 193.379179 116.709394) (xy 193.510289 116.621789) (xy 193.621789 116.510289) (xy 193.709394 116.379179) + (xy 193.715191 116.365185) (xy 193.723067 116.346166) (xy 193.769737 116.233497) (xy 193.8005 116.078842) + (xy 193.8005 115.921158) (xy 193.8005 115.921155) (xy 193.800499 115.921153) (xy 193.773292 115.784375) + (xy 193.769737 115.766503) (xy 193.769735 115.766498) (xy 193.709397 115.620827) (xy 193.70939 115.620814) + (xy 193.621789 115.489711) (xy 193.621786 115.489707) (xy 193.510292 115.378213) (xy 193.510288 115.37821) + (xy 193.379185 115.290609) (xy 193.379172 115.290602) (xy 193.233501 115.230264) (xy 193.233489 115.230261) + (xy 193.078845 115.1995) (xy 193.078842 115.1995) (xy 192.921158 115.1995) (xy 192.921155 115.1995) + (xy 192.76651 115.230261) (xy 192.766498 115.230264) (xy 192.620827 115.290602) (xy 192.620814 115.290609) + (xy 192.489711 115.37821) (xy 192.489707 115.378213) (xy 192.378213 115.489707) (xy 192.37821 115.489711) + (xy 192.290609 115.620814) (xy 192.290602 115.620827) (xy 192.230264 115.766498) (xy 192.230261 115.766508) + (xy 192.200573 115.915758) (xy 192.168188 115.977669) (xy 192.107472 116.012243) (xy 192.037702 116.008502) + (xy 191.991275 115.979247) (xy 191.611843 115.599815) (xy 191.22075 115.208723) (xy 191.187266 115.147401) + (xy 191.19225 115.07771) (xy 191.234122 115.021776) (xy 191.284241 114.999426) (xy 191.433497 114.969737) + (xy 191.579179 114.909394) (xy 191.710289 114.821789) (xy 191.821789 114.710289) (xy 191.909394 114.579179) + (xy 191.969737 114.433497) (xy 192.0005 114.278842) (xy 192.0005 114.121158) (xy 192.0005 114.121155) + (xy 192.000499 114.121153) (xy 191.984954 114.043004) (xy 191.969737 113.966503) (xy 191.94036 113.895579) + (xy 191.909397 113.820827) (xy 191.90939 113.820814) (xy 191.821789 113.689711) (xy 191.821786 113.689707) + (xy 191.710292 113.578213) (xy 191.710288 113.57821) (xy 191.579185 113.490609) (xy 191.579172 113.490602) + (xy 191.433501 113.430264) (xy 191.433489 113.430261) (xy 191.278845 113.3995) (xy 191.278842 113.3995) + (xy 191.121158 113.3995) (xy 191.121155 113.3995) (xy 190.96651 113.430261) (xy 190.966498 113.430264) + (xy 190.820827 113.490602) (xy 190.820814 113.490609) (xy 190.689711 113.57821) (xy 190.689707 113.578213) + (xy 190.578213 113.689707) (xy 190.57821 113.689711) (xy 190.490609 113.820814) (xy 190.490602 113.820827) + (xy 190.430264 113.966498) (xy 190.430261 113.96651) (xy 190.3995 114.121153) (xy 190.3995 114.278846) + (xy 190.40527 114.307853) (xy 190.399043 114.377444) (xy 190.35618 114.432622) (xy 190.29029 114.455866) + (xy 190.245335 114.449975) (xy 190.11137 114.406447) (xy 189.878097 114.3695) (xy 189.878092 114.3695) + (xy 188.8095 114.3695) (xy 188.742461 114.349815) (xy 188.696706 114.297011) (xy 188.6855 114.2455) + (xy 188.6855 113.155523) (xy 188.705185 113.088484) (xy 188.757989 113.042729) (xy 188.827147 113.032785) + (xy 188.890703 113.06181) (xy 188.897181 113.067842) (xy 188.954154 113.124815) (xy 189.103375 113.216856) + (xy 189.10338 113.216858) (xy 189.269802 113.272005) (xy 189.269809 113.272006) (xy 189.372519 113.282499) + (xy 189.509999 113.282499) (xy 190.01 113.282499) (xy 190.147472 113.282499) (xy 190.147486 113.282498) + (xy 190.250197 113.272005) (xy 190.416619 113.216858) (xy 190.416624 113.216856) (xy 190.565845 113.124815) + (xy 190.689815 113.000845) (xy 190.781856 112.851624) (xy 190.781858 112.851619) (xy 190.837005 112.685197) + (xy 190.837006 112.68519) (xy 190.847499 112.582486) (xy 190.8475 112.582473) (xy 190.8475 112.3075) + (xy 190.01 112.3075) (xy 190.01 113.282499) (xy 189.509999 113.282499) (xy 189.51 113.282498) (xy 189.51 111.8075) + (xy 190.01 111.8075) (xy 190.847499 111.8075) (xy 190.847499 111.532528) (xy 190.847498 111.532513) + (xy 190.837005 111.429802) (xy 190.781858 111.26338) (xy 190.781856 111.263375) (xy 190.689815 111.114154) + (xy 190.565845 110.990184) (xy 190.416624 110.898143) (xy 190.416619 110.898141) (xy 190.250197 110.842994) + (xy 190.25019 110.842993) (xy 190.147486 110.8325) (xy 190.01 110.8325) (xy 190.01 111.8075) (xy 189.51 111.8075) + (xy 189.51 110.8325) (xy 189.372527 110.8325) (xy 189.372512 110.832501) (xy 189.269802 110.842994) + (xy 189.141473 110.885518) (xy 189.071644 110.88792) (xy 189.011602 110.852188) (xy 188.98041 110.789667) + (xy 188.987971 110.720208) (xy 189.014782 110.680137) (xy 189.338104 110.356816) (xy 189.399425 110.323334) + (xy 189.425783 110.3205) (xy 191.908543 110.3205) (xy 191.970552 110.308165) (xy 192.008629 110.300591) + (xy 192.101836 110.282051) (xy 192.160025 110.257948) (xy 192.283914 110.206632) (xy 192.447782 110.097139) + (xy 192.587139 109.957782) (xy 192.587139 109.95778) (xy 192.597347 109.947573) (xy 192.597348 109.94757) + (xy 193.58714 108.957781) (xy 193.696632 108.793914) (xy 193.772052 108.611835) (xy 193.810501 108.41854) + (xy 193.810501 108.221459) (xy 193.810501 108.216349) (xy 193.8105 108.216323) (xy 193.8105 107.619984) + (xy 196.3595 107.619984) (xy 196.3595 110.020015) (xy 196.37 110.122795) (xy 196.370001 110.122797) + (xy 196.388587 110.178885) (xy 196.425186 110.289335) (xy 196.425187 110.289337) (xy 196.517286 110.438651) + (xy 196.517289 110.438655) (xy 196.641345 110.562711) (xy 196.700597 110.599258) (xy 196.747321 110.651205) + (xy 196.7595 110.704796) (xy 196.7595 115.548097) (xy 196.796446 115.781368) (xy 196.869433 116.005996) + (xy 196.883442 116.033489) (xy 196.905985 116.077732) (xy 196.9195 116.134026) (xy 196.9195 117.11787) + (xy 196.919501 117.117876) (xy 196.925908 117.177483) (xy 196.976202 117.312328) (xy 196.976203 117.312329) + (xy 196.976204 117.312331) (xy 197.062454 117.427546) (xy 197.10981 117.462996) (xy 197.151682 117.518929) + (xy 197.1595 117.562263) (xy 197.1595 118.574715) (xy 197.142887 118.636714) (xy 197.095648 118.718534) + (xy 197.095637 118.718556) (xy 197.008331 118.929333) (xy 196.949281 119.149714) (xy 196.949278 119.149727) + (xy 196.9195 119.375921) (xy 196.9195 119.604078) (xy 196.949278 119.830272) (xy 196.949279 119.830277) + (xy 196.94928 119.830283) (xy 197.000881 120.022861) (xy 197.008331 120.050666) (xy 197.095638 120.261446) + (xy 197.095646 120.261462) (xy 197.209717 120.459037) (xy 197.209728 120.459053) (xy 197.348613 120.640052) + (xy 197.348619 120.640059) (xy 197.50994 120.80138) (xy 197.509947 120.801386) (xy 197.636561 120.89854) + (xy 197.690955 120.940278) (xy 197.690962 120.940282) (xy 197.888537 121.054353) (xy 197.888553 121.054361) + (xy 197.97901 121.091829) (xy 198.099334 121.141669) (xy 198.319717 121.20072) (xy 198.479474 121.221752) + (xy 198.545921 121.2305) (xy 198.545922 121.2305) (xy 198.774079 121.2305) (xy 198.825438 121.223738) + (xy 199.000283 121.20072) (xy 199.220666 121.141669) (xy 199.405761 121.065) (xy 199.431446 121.054361) + (xy 199.431449 121.054359) (xy 199.431455 121.054357) (xy 199.629045 120.940278) (xy 199.810054 120.801385) + (xy 199.971385 120.640054) (xy 200.110278 120.459045) (xy 200.224357 120.261455) (xy 200.311669 120.050666) + (xy 200.37072 119.830283) (xy 200.4005 119.604078) (xy 200.4005 119.375922) (xy 200.37072 119.149717) + (xy 200.311669 118.929334) (xy 200.245561 118.769735) (xy 200.224362 118.718556) (xy 200.224359 118.71855) + (xy 200.224357 118.718545) (xy 200.224085 118.718074) (xy 200.177113 118.636714) (xy 200.1605 118.574715) + (xy 200.1605 117.562263) (xy 200.180185 117.495224) (xy 200.210188 117.462997) (xy 200.257546 117.427546) + (xy 200.343796 117.312331) (xy 200.394091 117.177483) (xy 200.4005 117.117873) (xy 200.400499 114.542128) + (xy 200.394091 114.482517) (xy 200.39294 114.479432) (xy 200.343797 114.347671) (xy 200.343793 114.347664) + (xy 200.257547 114.232455) (xy 200.257544 114.232452) (xy 200.142335 114.146206) (xy 200.142328 114.146202) + (xy 200.007482 114.095908) (xy 200.007483 114.095908) (xy 199.947883 114.089501) (xy 199.947881 114.0895) + (xy 199.947873 114.0895) (xy 199.947865 114.0895) (xy 199.8845 114.0895) (xy 199.817461 114.069815) + (xy 199.771706 114.017011) (xy 199.7605 113.9655) (xy 199.7605 110.704796) (xy 199.780185 110.637757) + (xy 199.819402 110.599258) (xy 199.878655 110.562711) (xy 200.002711 110.438655) (xy 200.094814 110.289334) + (xy 200.149999 110.122797) (xy 200.1605 110.020008) (xy 200.1605 107.619992) (xy 200.149999 107.517203) + (xy 200.094814 107.350666) (xy 200.090963 107.344423) (xy 200.002713 107.201348) (xy 200.00271 107.201344) + (xy 199.878655 107.077289) (xy 199.878651 107.077286) (xy 199.729337 106.985187) (xy 199.729335 106.985186) + (xy 199.611326 106.946082) (xy 199.562797 106.930001) (xy 199.562795 106.93) (xy 199.460015 106.9195) + (xy 199.460008 106.9195) (xy 197.059992 106.9195) (xy 197.059984 106.9195) (xy 196.957204 106.93) + (xy 196.957203 106.930001) (xy 196.790664 106.985186) (xy 196.790662 106.985187) (xy 196.641348 107.077286) + (xy 196.641344 107.077289) (xy 196.517289 107.201344) (xy 196.517286 107.201348) (xy 196.425187 107.350662) + (xy 196.425186 107.350664) (xy 196.370001 107.517203) (xy 196.37 107.517204) (xy 196.3595 107.619984) + (xy 193.8105 107.619984) (xy 193.8105 103.695466) (xy 196.36 103.695466) (xy 196.36 103.944533) + (xy 196.392508 104.191463) (xy 196.456973 104.432049) (xy 196.552283 104.662148) (xy 196.552288 104.662159) + (xy 196.676813 104.877841) (xy 196.676819 104.877849) (xy 196.7514 104.975045) (xy 197.658958 104.067487) + (xy 197.683978 104.12789) (xy 197.755112 104.234351) (xy 197.845649 104.324888) (xy 197.95211 104.396022) + (xy 198.012511 104.421041) (xy 197.104953 105.328598) (xy 197.20215 105.40318) (xy 197.202158 105.403186) + (xy 197.41784 105.527711) (xy 197.417851 105.527716) (xy 197.64795 105.623026) (xy 197.888536 105.687491) + (xy 198.135466 105.72) (xy 198.384534 105.72) (xy 198.631463 105.687491) (xy 198.872049 105.623026) + (xy 199.102148 105.527716) (xy 199.102159 105.527711) (xy 199.317855 105.403178) (xy 199.415045 105.3286) + (xy 199.415045 105.328597) (xy 198.507488 104.421041) (xy 198.56789 104.396022) (xy 198.674351 104.324888) + (xy 198.764888 104.234351) (xy 198.836022 104.12789) (xy 198.861041 104.067489) (xy 199.768597 104.975045) + (xy 199.7686 104.975045) (xy 199.843178 104.877855) (xy 199.967711 104.662159) (xy 199.967716 104.662148) + (xy 200.063026 104.432049) (xy 200.127491 104.191463) (xy 200.16 103.944533) (xy 200.16 103.695466) + (xy 200.127491 103.448536) (xy 200.063026 103.20795) (xy 199.967716 102.977851) (xy 199.967711 102.97784) + (xy 199.843186 102.762158) (xy 199.84318 102.76215) (xy 199.768598 102.664953) (xy 198.861041 103.57251) + (xy 198.836022 103.51211) (xy 198.764888 103.405649) (xy 198.674351 103.315112) (xy 198.56789 103.243978) + (xy 198.507487 103.218957) (xy 199.415045 102.3114) (xy 199.317849 102.236819) (xy 199.317841 102.236813) + (xy 199.102159 102.112288) (xy 199.102148 102.112283) (xy 198.872049 102.016973) (xy 198.631463 101.952508) + (xy 198.384534 101.92) (xy 198.135466 101.92) (xy 197.888536 101.952508) (xy 197.64795 102.016973) + (xy 197.417851 102.112283) (xy 197.417847 102.112285) (xy 197.202143 102.236823) (xy 197.104953 102.311399) + (xy 197.104953 102.3114) (xy 198.012511 103.218958) (xy 197.95211 103.243978) (xy 197.845649 103.315112) + (xy 197.755112 103.405649) (xy 197.683978 103.51211) (xy 197.658958 103.572511) (xy 196.7514 102.664953) + (xy 196.751399 102.664953) (xy 196.676823 102.762143) (xy 196.552285 102.977847) (xy 196.552283 102.977851) + (xy 196.456973 103.20795) (xy 196.392508 103.448536) (xy 196.36 103.695466) (xy 193.8105 103.695466) + (xy 193.8105 99.671456) (xy 193.7934 99.585494) (xy 193.7934 99.585493) (xy 193.772052 99.47817) + (xy 193.772051 99.478164) (xy 193.716688 99.344506) (xy 193.696632 99.296086) (xy 193.613358 99.171457) + (xy 193.58714 99.132219) (xy 193.519921 99.065) (xy 193.447782 98.992861) (xy 193.447781 98.99286) + (xy 191.644208 97.189288) (xy 191.644206 97.189285) (xy 191.644206 97.189286) (xy 191.637139 97.182219) + (xy 191.637139 97.182218) (xy 191.497782 97.042861) (xy 191.497781 97.04286) (xy 191.49778 97.042859) + (xy 191.33392 96.933371) (xy 191.333907 96.933364) (xy 191.178109 96.868832) (xy 191.169307 96.865186) + (xy 191.151836 96.857949) (xy 191.055188 96.838724) (xy 191.052585 96.838206) (xy 191.052576 96.838204) + (xy 190.958544 96.8195) (xy 190.958541 96.8195) (xy 188.4345 96.8195) (xy 188.367461 96.799815) + (xy 188.321706 96.747011) (xy 188.3105 96.6955) (xy 188.3105 96.244499) (xy 188.330185 96.17746) + (xy 188.382989 96.131705) (xy 188.4345 96.120499) (xy 189.110002 96.120499) (xy 189.110008 96.120499) + (xy 189.212797 96.109999) (xy 189.379334 96.054814) (xy 189.528656 95.962712) (xy 189.652712 95.838656) + (xy 189.744814 95.689334) (xy 189.799999 95.522797) (xy 189.8105 95.420009) (xy 189.8105 95.419986) + (xy 190.710001 95.419986) (xy 190.720494 95.522697) (xy 190.775641 95.689119) (xy 190.775643 95.689124) + (xy 190.867684 95.838345) (xy 190.991654 95.962315) (xy 191.140875 96.054356) (xy 191.14088 96.054358) + (xy 191.307302 96.109505) (xy 191.307309 96.109506) (xy 191.410019 96.119999) (xy 192.709999 96.119999) + (xy 193.21 96.119999) (xy 194.509972 96.119999) (xy 194.509986 96.119998) (xy 194.612697 96.109505) + (xy 194.779119 96.054358) (xy 194.779124 96.054356) (xy 194.928345 95.962315) (xy 195.052315 95.838345) + (xy 195.144356 95.689124) (xy 195.144358 95.689119) (xy 195.199505 95.522697) (xy 195.199506 95.52269) + (xy 195.209999 95.419986) (xy 195.21 95.419973) (xy 195.21 95.07) (xy 193.21 95.07) (xy 193.21 96.119999) + (xy 192.709999 96.119999) (xy 192.71 96.119998) (xy 192.71 95.07) (xy 190.710001 95.07) (xy 190.710001 95.419986) + (xy 189.8105 95.419986) (xy 189.810499 94.819037) (xy 189.810499 94.220013) (xy 190.71 94.220013) + (xy 190.71 94.57) (xy 192.71 94.57) (xy 193.21 94.57) (xy 195.209999 94.57) (xy 195.209999 94.220028) + (xy 195.209998 94.220013) (xy 195.199505 94.117302) (xy 195.144358 93.95088) (xy 195.144356 93.950875) + (xy 195.052315 93.801654) (xy 194.928345 93.677684) (xy 194.779124 93.585643) (xy 194.779119 93.585641) + (xy 194.612697 93.530494) (xy 194.61269 93.530493) (xy 194.509986 93.52) (xy 193.21 93.52) (xy 193.21 94.57) + (xy 192.71 94.57) (xy 192.71 93.52) (xy 191.410028 93.52) (xy 191.410012 93.520001) (xy 191.307302 93.530494) + (xy 191.14088 93.585641) (xy 191.140875 93.585643) (xy 190.991654 93.677684) (xy 190.867684 93.801654) + (xy 190.775643 93.950875) (xy 190.775641 93.95088) (xy 190.720494 94.117302) (xy 190.720493 94.117309) + (xy 190.71 94.220013) (xy 189.810499 94.220013) (xy 189.810499 94.219998) (xy 189.810498 94.219981) + (xy 189.799999 94.117203) (xy 189.799998 94.1172) (xy 189.781698 94.061974) (xy 189.744814 93.950666) + (xy 189.652712 93.801344) (xy 189.528656 93.677288) (xy 189.403353 93.600001) (xy 189.379336 93.585187) + (xy 189.379331 93.585185) (xy 189.350342 93.575579) (xy 189.212797 93.530001) (xy 189.212795 93.53) + (xy 189.11001 93.5195) (xy 186.009998 93.5195) (xy 186.009981 93.519501) (xy 185.907203 93.53) (xy 185.9072 93.530001) + (xy 185.740668 93.585185) (xy 185.740663 93.585187) (xy 185.591342 93.677289) (xy 185.467289 93.801342) + (xy 185.375187 93.950663) (xy 185.375185 93.950668) (xy 185.37266 93.958288) (xy 185.320001 94.117203) + (xy 185.320001 94.117204) (xy 185.32 94.117204) (xy 185.3095 94.219983) (xy 185.3095 95.420001) + (xy 185.309501 95.420018) (xy 185.32 95.522796) (xy 185.320001 95.522799) (xy 185.375185 95.689331) + (xy 185.375187 95.689336) (xy 185.401817 95.73251) (xy 185.467288 95.838656) (xy 185.591344 95.962712) + (xy 185.740666 96.054814) (xy 185.907203 96.109999) (xy 186.009991 96.1205) (xy 186.6855 96.120499) + (xy 186.752539 96.140183) (xy 186.798294 96.192987) (xy 186.8095 96.244499) (xy 186.8095 97.105389) + (xy 186.789815 97.172428) (xy 186.784763 97.17937) (xy 186.673371 97.346079) (xy 186.673364 97.346092) + (xy 186.59795 97.52816) (xy 186.597947 97.52817) (xy 186.558311 97.727434) (xy 186.556514 97.727076) + (xy 186.533555 97.783902) (xy 186.52401 97.794621) (xy 183.562181 100.75645) (xy 183.500858 100.789935) + (xy 183.431166 100.784951) (xy 183.375233 100.743079) (xy 183.350816 100.677615) (xy 183.3505 100.668769) + (xy 183.3505 99.592229) (xy 183.370185 99.52519) (xy 183.386819 99.504548) (xy 183.942948 98.948419) + (xy 183.942951 98.948416) (xy 184.015126 98.840398) (xy 184.025081 98.8255) (xy 184.025082 98.825497) + (xy 184.025084 98.825495) (xy 184.081658 98.688913) (xy 184.1105 98.543918) (xy 184.1105 98.396083) + (xy 184.1105 98.332469) (xy 184.130185 98.26543) (xy 184.182989 98.219675) (xy 184.200373 98.213258) + (xy 184.233049 98.203909) (xy 184.413407 98.109698) (xy 184.571109 97.981109) (xy 184.699698 97.823407) + (xy 184.793909 97.643049) (xy 184.849886 97.447418) (xy 184.8605 97.328037) (xy 184.860499 92.711964) + (xy 184.849886 92.592582) (xy 184.793909 92.396951) (xy 184.699698 92.216593) (xy 184.631356 92.132778) + (xy 184.571109 92.05889) (xy 184.449333 91.959596) (xy 184.413407 91.930302) (xy 184.233049 91.836091) + (xy 184.233048 91.83609) (xy 184.233045 91.836089) (xy 184.115829 91.80255) (xy 184.037418 91.780114) + (xy 184.037415 91.780113) (xy 184.037413 91.780113) (xy 183.971102 91.774217) (xy 183.918037 91.7695) + (xy 183.918032 91.7695) (xy 182.801971 91.7695) (xy 182.801965 91.7695) (xy 182.801964 91.769501) + (xy 182.790316 91.770536) (xy 182.682584 91.780113) (xy 182.486954 91.836089) (xy 182.405093 91.87885) + (xy 182.306593 91.930302) (xy 182.306591 91.930303) (xy 182.30659 91.930304) (xy 182.14889 92.05889) + (xy 182.020304 92.21659) (xy 182.020302 92.216593) (xy 181.9924 92.270009) (xy 181.926089 92.396954) + (xy 181.870113 92.592584) (xy 181.862623 92.676834) (xy 181.860984 92.695278) (xy 181.8595 92.711966) + (xy 181.8595 97.328028) (xy 181.859501 97.328034) (xy 181.870113 97.447415) (xy 181.926089 97.643045) + (xy 181.92609 97.643048) (xy 181.926091 97.643049) (xy 182.020302 97.823407) (xy 182.036162 97.842858) + (xy 182.14889 97.981109) (xy 182.277479 98.085958) (xy 182.306593 98.109698) (xy 182.388363 98.152411) + (xy 182.438668 98.200895) (xy 182.454776 98.268883) (xy 182.43157 98.334786) (xy 182.418631 98.349999) + (xy 182.01705 98.751581) (xy 182.017044 98.751589) (xy 181.979386 98.807948) (xy 181.979387 98.807949) + (xy 181.934913 98.874508) (xy 181.878343 99.011082) (xy 181.87834 99.011092) (xy 181.8495 99.156079) + (xy 181.8495 100.715396) (xy 181.840062 100.762844) (xy 181.830906 100.784951) (xy 181.830262 100.786506) + (xy 181.83026 100.786511) (xy 181.7995 100.941153) (xy 181.7995 101.098846) (xy 181.830261 101.253489) + (xy 181.830263 101.253497) (xy 181.840061 101.277151) (xy 181.8495 101.324604) (xy 181.8495 102.16782) + (xy 181.829815 102.234859) (xy 181.777011 102.280614) (xy 181.707853 102.290558) (xy 181.690906 102.286897) + (xy 181.582492 102.2554) (xy 181.58 102.255203) (xy 181.58 103.5985) (xy 181.560315 103.665539) + (xy 181.507511 103.711294) (xy 181.456 103.7225) (xy 181.33 103.7225) (xy 181.33 103.8485) (xy 181.310315 103.915539) + (xy 181.257511 103.961294) (xy 181.206 103.9725) (xy 180.53 103.9725) (xy 180.53 104.608149) (xy 180.532899 104.644989) + (xy 180.5329 104.644995) (xy 180.578716 104.802693) (xy 180.578717 104.802696) (xy 180.662314 104.944052) + (xy 180.662321 104.944061) (xy 180.778438 105.060178) (xy 180.778446 105.060184) (xy 180.918621 105.143083) + (xy 180.966304 105.194152) (xy 180.9795 105.249815) (xy 180.9795 107.154604) (xy 180.959815 107.221643) + (xy 180.918621 107.261336) (xy 180.778138 107.344416) (xy 180.778129 107.344423) (xy 180.661923 107.460629) + (xy 180.661917 107.460637) (xy 180.578255 107.602103) (xy 180.578254 107.602106) (xy 180.532402 107.759926) + (xy 180.532401 107.759932) (xy 180.5295 107.796798) (xy 180.5295 107.808) (xy 180.526949 107.816685) + (xy 180.528238 107.825647) (xy 180.517259 107.849687) (xy 180.509815 107.875039) (xy 180.502974 107.880966) + (xy 180.499213 107.889203) (xy 180.476978 107.903492) (xy 180.457011 107.920794) (xy 180.446496 107.923081) + (xy 180.440435 107.926977) (xy 180.4055 107.932) (xy 180.381264 107.932) (xy 180.314225 107.912315) + (xy 180.26847 107.859511) (xy 180.257906 107.795396) (xy 180.258949 107.78519) (xy 180.2605 107.770009) + (xy 180.260499 106.969992) (xy 180.249999 106.867203) (xy 180.194814 106.700666) (xy 180.102712 106.551344) + (xy 180.008695 106.457327) (xy 179.97521 106.396004) (xy 179.980194 106.326312) (xy 180.008695 106.281964) + (xy 180.102317 106.188342) (xy 180.194356 106.039124) (xy 180.194358 106.039119) (xy 180.249505 105.872697) + (xy 180.249506 105.87269) (xy 180.259999 105.769986) (xy 180.26 105.769973) (xy 180.26 105.62) (xy 177.860001 105.62) + (xy 177.860001 105.769986) (xy 177.870494 105.872697) (xy 177.925641 106.039119) (xy 177.925643 106.039124) + (xy 178.017684 106.188345) (xy 178.111304 106.281965) (xy 178.144789 106.343288) (xy 178.139805 106.41298) + (xy 178.111305 106.457327) (xy 178.017287 106.551345) (xy 177.925187 106.700663) (xy 177.925185 106.700668) + (xy 177.922701 106.708165) (xy 177.870001 106.867203) (xy 177.870001 106.867204) (xy 177.87 106.867204) + (xy 177.8595 106.969983) (xy 177.8595 107.770001) (xy 177.859501 107.770019) (xy 177.87 107.872796) + (xy 177.870001 107.872799) (xy 177.925185 108.039331) (xy 177.925187 108.039336) (xy 177.927887 108.043713) + (xy 178.017288 108.188656) (xy 178.141344 108.312712) (xy 178.250597 108.380099) (xy 178.297321 108.432047) + (xy 178.3095 108.485638) (xy 178.3095 108.493918) (xy 178.3095 108.49392) (xy 178.309499 108.49392) + (xy 178.33834 108.638907) (xy 178.338343 108.638917) (xy 178.393451 108.771958) (xy 178.394916 108.775495) + (xy 178.407221 108.793911) (xy 178.4217 108.815581) (xy 178.477049 108.898418) (xy 178.477052 108.898421) + (xy 178.844084 109.265452) (xy 178.844086 109.265454) (xy 178.863109 109.278164) (xy 178.91777 109.314686) + (xy 178.967005 109.347584) (xy 178.967006 109.347584) (xy 178.967007 109.347585) (xy 178.967009 109.347586) + (xy 179.08908 109.398149) (xy 179.103587 109.404158) (xy 179.103591 109.404158) (xy 179.103592 109.404159) + (xy 179.248579 109.433) (xy 179.248582 109.433) (xy 179.248583 109.433) (xy 179.396417 109.433) + (xy 180.4055 109.433) (xy 180.472539 109.452685) (xy 180.518294 109.505489) (xy 180.526952 109.53199) + (xy 180.5295 109.544363) (xy 180.5295 109.568194) (xy 180.532402 109.605069) (xy 180.565362 109.718518) + (xy 180.566358 109.723353) (xy 180.563868 109.753447) (xy 180.563783 109.783637) (xy 180.560983 109.78834) + (xy 180.560599 109.792985) (xy 180.549923 109.80692) (xy 180.532587 109.836044) (xy 179.727045 110.641586) + (xy 179.703506 110.676818) (xy 179.692333 110.69354) (xy 179.669979 110.726995) (xy 179.644915 110.764506) + (xy 179.644914 110.764506) (xy 179.588343 110.901082) (xy 179.58834 110.901093) (xy 179.586479 110.910448) + (xy 179.554091 110.972357) (xy 179.52996 110.991789) (xy 179.391342 111.077289) (xy 179.267289 111.201342) + (xy 179.175187 111.350663) (xy 179.175185 111.350668) (xy 179.165055 111.381238) (xy 179.120001 111.517203) + (xy 179.120001 111.517204) (xy 179.12 111.517204) (xy 179.1095 111.619983) (xy 179.1095 112.420001) + (xy 179.109501 112.420019) (xy 179.12 112.522796) (xy 179.120001 112.522799) (xy 179.175185 112.689331) + (xy 179.175189 112.68934) (xy 179.262198 112.830404) (xy 179.280638 112.897796) (xy 179.259715 112.964459) + (xy 179.206073 113.009229) (xy 179.156659 113.0195) (xy 177.665783 113.0195) (xy 177.598744 112.999815) + (xy 177.578102 112.983181) (xy 177.396819 112.801898) (xy 177.363334 112.740575) (xy 177.3605 112.714217) + (xy 177.3605 108.28223) (xy 177.380185 108.215191) (xy 177.396819 108.194549) (xy 177.412012 108.179356) + (xy 177.427712 108.163656) (xy 177.519814 108.014334) (xy 177.574999 107.847797) (xy 177.5855 107.745009) + (xy 177.585499 106.969992) (xy 177.574999 106.867203) (xy 177.519814 106.700666) (xy 177.427712 106.551344) + (xy 177.303656 106.427288) (xy 177.300342 106.425243) (xy 177.298546 106.423248) (xy 177.297989 106.422807) + (xy 177.298064 106.422711) (xy 177.253618 106.373297) (xy 177.242397 106.304334) (xy 177.27024 106.240252) + (xy 177.300348 106.214165) (xy 177.303342 106.212318) (xy 177.427315 106.088345) (xy 177.519356 105.939124) + (xy 177.519358 105.939119) (xy 177.574505 105.772697) (xy 177.574506 105.77269) (xy 177.584999 105.669986) + (xy 177.585 105.669973) (xy 177.585 105.5325) (xy 176.484 105.5325) (xy 176.416961 105.512815) (xy 176.371206 105.460011) + (xy 176.36 105.4085) (xy 176.36 105.2825) (xy 176.234 105.2825) (xy 176.166961 105.262815) (xy 176.121206 105.210011) + (xy 176.11 105.1585) (xy 176.11 105.0325) (xy 176.61 105.0325) (xy 177.584999 105.0325) (xy 177.584999 104.970013) + (xy 177.86 104.970013) (xy 177.86 105.12) (xy 178.81 105.12) (xy 179.31 105.12) (xy 180.259999 105.12) + (xy 180.259999 104.970028) (xy 180.259998 104.970013) (xy 180.249505 104.867302) (xy 180.194358 104.70088) + (xy 180.194356 104.700875) (xy 180.102315 104.551654) (xy 179.978345 104.427684) (xy 179.829124 104.335643) + (xy 179.829119 104.335641) (xy 179.662697 104.280494) (xy 179.66269 104.280493) (xy 179.559986 104.27) + (xy 179.31 104.27) (xy 179.31 105.12) (xy 178.81 105.12) (xy 178.81 104.27) (xy 178.560029 104.27) + (xy 178.560012 104.270001) (xy 178.457302 104.280494) (xy 178.29088 104.335641) (xy 178.290875 104.335643) + (xy 178.141654 104.427684) (xy 178.017684 104.551654) (xy 177.925643 104.700875) (xy 177.925641 104.70088) + (xy 177.870494 104.867302) (xy 177.870493 104.867309) (xy 177.86 104.970013) (xy 177.584999 104.970013) + (xy 177.584999 104.895028) (xy 177.584998 104.895013) (xy 177.574505 104.792302) (xy 177.519358 104.62588) + (xy 177.519356 104.625875) (xy 177.427315 104.476654) (xy 177.303345 104.352684) (xy 177.154124 104.260643) + (xy 177.154119 104.260641) (xy 176.987697 104.205494) (xy 176.98769 104.205493) (xy 176.884986 104.195) + (xy 176.61 104.195) (xy 176.61 105.0325) (xy 176.11 105.0325) (xy 176.11 104.195) (xy 175.835029 104.195) + (xy 175.835012 104.195001) (xy 175.732302 104.205494) (xy 175.56588 104.260641) (xy 175.565868 104.260647) + (xy 175.549594 104.270685) (xy 175.482202 104.289124) (xy 175.415538 104.2682) (xy 175.37077 104.214557) + (xy 175.3605 104.165145) (xy 175.3605 102.83685) (xy 180.53 102.83685) (xy 180.53 103.4725) (xy 181.08 103.4725) + (xy 181.08 102.255203) (xy 181.077503 102.2554) (xy 180.919806 102.301216) (xy 180.919803 102.301217) + (xy 180.778447 102.384814) (xy 180.778438 102.384821) (xy 180.662321 102.500938) (xy 180.662314 102.500947) + (xy 180.578717 102.642303) (xy 180.578716 102.642306) (xy 180.5329 102.800004) (xy 180.532899 102.80001) + (xy 180.53 102.83685) (xy 175.3605 102.83685) (xy 175.3605 99.735781) (xy 175.380185 99.668742) + (xy 175.396815 99.648104) (xy 175.797778 99.247141) (xy 175.797782 99.247139) (xy 175.937139 99.107782) + (xy 176.046632 98.943914) (xy 176.112251 98.785494) (xy 176.122051 98.761836) (xy 176.145153 98.645694) + (xy 176.1605 98.568541) (xy 176.1605 98.211351) (xy 176.180185 98.144312) (xy 176.209413 98.114751) + (xy 176.208533 98.113672) (xy 176.371109 97.981109) (xy 176.432948 97.905269) (xy 176.499698 97.823407) + (xy 176.593909 97.643049) (xy 176.649886 97.447418) (xy 176.6605 97.328037) (xy 176.660499 92.711964) + (xy 176.649886 92.592582) (xy 176.593909 92.396951) (xy 176.499698 92.216593) (xy 176.431356 92.132778) + (xy 176.371109 92.05889) (xy 176.22209 91.937382) (xy 176.213407 91.930302) (xy 176.213406 91.930301) + (xy 176.208533 91.926328) (xy 176.209469 91.925179) (xy 176.203297 91.922361) (xy 176.188635 91.899546) + (xy 176.171117 91.87885) (xy 176.169048 91.869068) (xy 176.165523 91.863583) (xy 176.1605 91.828648) + (xy 176.1605 91.785782) (xy 176.180185 91.718743) (xy 176.196819 91.698101) (xy 177.488102 90.406819) + (xy 177.549425 90.373334) (xy 177.575783 90.3705) (xy 196.321011 90.3705) (xy 196.38805 90.390185) + (xy 196.433805 90.442989) (xy 196.443749 90.512147) (xy 196.414724 90.575703) (xy 196.360017 90.612205) + (xy 196.299475 90.632267) (xy 196.290666 90.635186) (xy 196.290663 90.635187) (xy 196.141342 90.727289) + (xy 196.017289 90.851342) (xy 195.925187 91.000663) (xy 195.925185 91.000668) (xy 195.904974 91.061661) + (xy 195.870001 91.167203) (xy 195.870001 91.167204) (xy 195.87 91.167204) (xy 195.8595 91.269983) + (xy 195.8595 92.270001) (xy 195.859501 92.270019) (xy 195.87 92.372796) (xy 195.881505 92.407513) + (xy 195.899795 92.46271) (xy 195.903206 92.473001) (xy 195.9095 92.512006) (xy 195.9095 94.003202) + (xy 195.900635 94.043207) (xy 195.902458 94.043811) (xy 195.900187 94.050664) (xy 195.900186 94.050666) + (xy 195.845001 94.217203) (xy 195.845001 94.217204) (xy 195.845 94.217204) (xy 195.8345 94.319983) + (xy 195.8345 95.320001) (xy 195.834501 95.320019) (xy 195.845 95.422796) (xy 195.845001 95.422799) + (xy 195.900185 95.589331) (xy 195.900187 95.589336) (xy 195.927945 95.634339) (xy 195.992288 95.738656) + (xy 196.116344 95.862712) (xy 196.265666 95.954814) (xy 196.432203 96.009999) (xy 196.534991 96.0205) + (xy 197.285008 96.020499) (xy 197.285016 96.020498) (xy 197.285019 96.020498) (xy 197.341302 96.014748) + (xy 197.387797 96.009999) (xy 197.554334 95.954814) (xy 197.703656 95.862712) (xy 197.827712 95.738656) + (xy 197.829752 95.735347) (xy 197.831745 95.733555) (xy 197.832193 95.732989) (xy 197.832289 95.733065) + (xy 197.881694 95.688623) (xy 197.950656 95.677395) (xy 198.01474 95.705234) (xy 198.040829 95.735339) + (xy 198.042681 95.738341) (xy 198.042683 95.738344) (xy 198.166654 95.862315) (xy 198.315875 95.954356) + (xy 198.31588 95.954358) (xy 198.482302 96.009505) (xy 198.482309 96.009506) (xy 198.585019 96.019999) + (xy 198.709999 96.019999) (xy 199.21 96.019999) (xy 199.334972 96.019999) (xy 199.334986 96.019998) + (xy 199.437697 96.009505) (xy 199.604119 95.954358) (xy 199.604124 95.954356) (xy 199.753345 95.862315) + (xy 199.877315 95.738345) (xy 199.969356 95.589124) (xy 199.969358 95.589119) (xy 200.024505 95.422697) + (xy 200.024506 95.42269) (xy 200.034999 95.319986) (xy 200.035 95.319973) (xy 200.035 95.07) (xy 199.21 95.07) + (xy 199.21 96.019999) (xy 198.709999 96.019999) (xy 198.71 96.019998) (xy 198.71 94.57) (xy 199.21 94.57) + (xy 200.034999 94.57) (xy 200.034999 94.320028) (xy 200.034998 94.320013) (xy 200.024505 94.217302) + (xy 199.969358 94.05088) (xy 199.969356 94.050875) (xy 199.877315 93.901654) (xy 199.753345 93.777684) + (xy 199.604124 93.685643) (xy 199.604119 93.685641) (xy 199.437697 93.630494) (xy 199.43769 93.630493) + (xy 199.334986 93.62) (xy 199.21 93.62) (xy 199.21 94.57) (xy 198.71 94.57) (xy 198.71 93.62) (xy 198.585027 93.62) + (xy 198.585012 93.620001) (xy 198.482302 93.630494) (xy 198.31588 93.685641) (xy 198.315875 93.685643) + (xy 198.166654 93.777684) (xy 198.122181 93.822158) (xy 198.060858 93.855643) (xy 197.991166 93.850659) + (xy 197.935233 93.808787) (xy 197.910816 93.743323) (xy 197.9105 93.734477) (xy 197.9105 92.88123) + (xy 197.930185 92.814191) (xy 197.982989 92.768436) (xy 198.052147 92.758492) (xy 198.115703 92.787517) + (xy 198.122181 92.793549) (xy 198.141344 92.812712) (xy 198.290666 92.904814) (xy 198.457203 92.959999) + (xy 198.559991 92.9705) (xy 199.360008 92.970499) (xy 199.360016 92.970498) (xy 199.360019 92.970498) + (xy 199.42454 92.963907) (xy 199.462797 92.959999) (xy 199.629334 92.904814) (xy 199.778656 92.812712) + (xy 199.902712 92.688656) (xy 199.994814 92.539334) (xy 200.049999 92.372797) (xy 200.0605 92.270009) + (xy 200.060499 91.269992) (xy 200.056502 91.230868) (xy 200.049999 91.167203) (xy 200.049998 91.1672) + (xy 200.035033 91.12204) (xy 199.994814 91.000666) (xy 199.982068 90.980001) (xy 199.97896 90.974961) + (xy 199.9605 90.909867) (xy 199.9605 90.474675) (xy 199.960501 90.474654) (xy 199.960501 90.271457) + (xy 199.9605 90.271455) (xy 199.952751 90.2325) (xy 199.922052 90.078165) (xy 199.846632 89.896086) + (xy 199.846631 89.896085) (xy 199.846628 89.896079) (xy 199.73714 89.732219) (xy 199.737137 89.732215) + (xy 198.744209 88.739289) (xy 198.744206 88.739285) (xy 198.744206 88.739286) (xy 198.737139 88.732219) + (xy 198.737139 88.732218) (xy 198.597782 88.592861) (xy 198.597781 88.59286) (xy 198.59778 88.592859) + (xy 198.43392 88.483371) (xy 198.433907 88.483364) (xy 198.291491 88.424374) (xy 198.291485 88.424372) + (xy 198.283551 88.421086) (xy 198.251836 88.407949) (xy 198.155188 88.388724) (xy 198.151662 88.388022) + (xy 198.151652 88.38802) (xy 198.058544 88.3695) (xy 198.058541 88.3695) (xy 177.20854 88.3695) + (xy 177.011459 88.3695) (xy 177.011456 88.3695) (xy 176.818171 88.407947) (xy 176.818163 88.407949) + (xy 176.786449 88.421086) (xy 176.786448 88.421086) (xy 176.636088 88.483366) (xy 176.50718 88.5695) + (xy 176.507179 88.5695) (xy 176.472222 88.592857) (xy 176.472214 88.592863) (xy 175.004025 90.061054) + (xy 174.52222 90.542859) (xy 174.522218 90.542861) (xy 174.485078 90.580001) (xy 174.382859 90.682219) + (xy 174.273371 90.84608) (xy 174.273364 90.846093) (xy 174.239693 90.927384) (xy 174.239689 90.927394) + (xy 174.237782 90.932) (xy 174.197949 91.028164) (xy 174.184565 91.095449) (xy 174.183161 91.102506) + (xy 174.183161 91.102507) (xy 174.1595 91.221456) (xy 174.1595 91.828648) (xy 174.139815 91.895687) + (xy 174.11059 91.925252) (xy 174.111467 91.926328) (xy 174.106593 91.930301) (xy 174.106593 91.930302) + (xy 174.09791 91.937382) (xy 173.94889 92.05889) (xy 173.820304 92.21659) (xy 173.820302 92.216593) + (xy 173.7924 92.270009) (xy 173.726089 92.396954) (xy 173.670113 92.592584) (xy 173.662623 92.676834) + (xy 173.660984 92.695278) (xy 173.6595 92.711966) (xy 173.6595 97.328028) (xy 173.659501 97.328034) + (xy 173.670113 97.447415) (xy 173.726089 97.643045) (xy 173.72609 97.643048) (xy 173.726091 97.643049) + (xy 173.820302 97.823407) (xy 173.948891 97.981109) (xy 173.999471 98.022352) (xy 173.999555 98.02242) + (xy 174.039072 98.080041) (xy 174.041164 98.149879) (xy 174.008875 98.206203) (xy 173.86508 98.349999) + (xy 173.722221 98.492858) (xy 173.722218 98.492861) (xy 173.671161 98.543918) (xy 173.582859 98.632219) + (xy 173.473371 98.79608) (xy 173.473364 98.796093) (xy 173.442569 98.87044) (xy 173.442564 98.870453) + (xy 173.440888 98.874501) (xy 173.397949 98.978164) (xy 173.38666 99.034916) (xy 173.385137 99.042568) + (xy 173.385136 99.042574) (xy 173.3595 99.171457) (xy 173.3595 106.618544) (xy 173.392023 106.782049) + (xy 173.392024 106.782049) (xy 173.392024 106.782051) (xy 173.397949 106.811835) (xy 173.39795 106.811837) + (xy 173.39795 106.811839) (xy 173.473364 106.993907) (xy 173.473371 106.99392) (xy 173.58286 107.157781) + (xy 173.582863 107.157785) (xy 173.726537 107.301459) (xy 173.726559 107.301479) (xy 174.417235 107.992155) + (xy 174.417264 107.992186) (xy 174.559714 108.134636) (xy 174.559718 108.134639) (xy 174.723579 108.244128) + (xy 174.723592 108.244135) (xy 174.852333 108.297461) (xy 174.905541 108.3195) (xy 174.905664 108.319551) + (xy 174.943138 108.327005) (xy 174.976494 108.33364) (xy 175.098956 108.358) (xy 175.098959 108.358) + (xy 175.09896 108.358) (xy 175.2355 108.358) (xy 175.302539 108.377685) (xy 175.348294 108.430489) + (xy 175.3595 108.482) (xy 175.3595 109.845216) (xy 175.353261 109.866461) (xy 175.351682 109.888549) + (xy 175.343609 109.899332) (xy 175.339815 109.912255) (xy 175.323081 109.926754) (xy 175.309811 109.944482) + (xy 175.29719 109.949189) (xy 175.287011 109.95801) (xy 175.265094 109.961161) (xy 175.244347 109.9689) + (xy 175.231185 109.966037) (xy 175.217853 109.967954) (xy 175.197711 109.958755) (xy 175.176074 109.954049) + (xy 175.158347 109.940778) (xy 175.154297 109.938929) (xy 175.14782 109.932898) (xy 175.081382 109.866461) + (xy 175.037782 109.822861) (xy 175.037778 109.822858) (xy 174.221479 109.006559) (xy 174.221459 109.006537) + (xy 174.077785 108.862863) (xy 174.077781 108.86286) (xy 173.91392 108.753371) (xy 173.913907 108.753364) + (xy 173.754033 108.687143) (xy 173.754029 108.687142) (xy 173.744918 108.683368) (xy 173.731836 108.677949) + (xy 173.635188 108.658724) (xy 173.632879 108.658264) (xy 173.632876 108.658264) (xy 173.538544 108.6395) + (xy 173.538541 108.6395) (xy 172.276217 108.6395) (xy 172.209178 108.619815) (xy 172.203339 108.615824) + (xy 172.123266 108.557647) (xy 171.971827 108.480485) (xy 171.921031 108.43251) (xy 171.904236 108.364689) + (xy 171.926773 108.298554) (xy 171.971827 108.259515) (xy 172.002012 108.244135) (xy 172.123266 108.182353) + (xy 172.284418 108.065269) (xy 172.425269 107.924418) (xy 172.542353 107.763266) (xy 172.632785 107.585783) + (xy 172.672774 107.46271) (xy 172.694338 107.396343) (xy 172.694338 107.396342) (xy 172.694339 107.396339) + (xy 172.7255 107.199597) (xy 172.7255 107.000403) (xy 172.694339 106.803661) (xy 172.694338 106.803657) + (xy 172.694338 106.803656) (xy 172.632786 106.614219) (xy 172.608884 106.567309) (xy 172.542353 106.436734) + (xy 172.425269 106.275582) (xy 172.284418 106.134731) (xy 172.123266 106.017647) (xy 171.982831 105.946092) + (xy 171.971827 105.940485) (xy 171.921031 105.89251) (xy 171.904236 105.824689) (xy 171.926773 105.758554) + (xy 171.971827 105.719515) (xy 171.981116 105.714781) (xy 172.123266 105.642353) (xy 172.284418 105.525269) + (xy 172.425269 105.384418) (xy 172.542353 105.223266) (xy 172.632785 105.045783) (xy 172.665739 104.944362) + (xy 172.694338 104.856343) (xy 172.694338 104.856342) (xy 172.694339 104.856339) (xy 172.7255 104.659597) + (xy 172.7255 104.460403) (xy 172.694339 104.263661) (xy 172.694338 104.263657) (xy 172.694338 104.263656) + (xy 172.632786 104.074219) (xy 172.625248 104.059424) (xy 172.542353 103.896734) (xy 172.425269 103.735582) + (xy 172.284418 103.594731) (xy 172.123266 103.477647) (xy 171.971827 103.400485) (xy 171.921031 103.35251) + (xy 171.904236 103.284689) (xy 171.926773 103.218554) (xy 171.971827 103.179515) (xy 171.990501 103.17) + (xy 172.123266 103.102353) (xy 172.284418 102.985269) (xy 172.425269 102.844418) (xy 172.542353 102.683266) + (xy 172.632785 102.505783) (xy 172.637077 102.492573) (xy 172.694338 102.316343) (xy 172.694338 102.316342) + (xy 172.694339 102.316339) (xy 172.7255 102.119597) (xy 172.7255 101.920403) (xy 172.694339 101.723661) + (xy 172.694338 101.723657) (xy 172.694338 101.723656) (xy 172.632786 101.534219) (xy 172.612015 101.493453) + (xy 172.542353 101.356734) (xy 172.425269 101.195582) (xy 172.284418 101.054731) (xy 172.123266 100.937647) + (xy 171.971827 100.860485) (xy 171.921031 100.81251) (xy 171.904236 100.744689) (xy 171.926773 100.678554) + (xy 171.971827 100.639515) (xy 171.981116 100.634781) (xy 172.123266 100.562353) (xy 172.284418 100.445269) + (xy 172.425269 100.304418) (xy 172.542353 100.143266) (xy 172.632785 99.965783) (xy 172.637077 99.952573) + (xy 172.694338 99.776343) (xy 172.694338 99.776342) (xy 172.694339 99.776339) (xy 172.7255 99.579597) + (xy 172.7255 99.380403) (xy 172.694339 99.183661) (xy 172.694338 99.183657) (xy 172.694338 99.183656) + (xy 172.632786 98.994219) (xy 172.624606 98.978164) (xy 172.542353 98.816734) (xy 172.425269 98.655582) + (xy 172.284418 98.514731) (xy 172.123266 98.397647) (xy 172.063298 98.367092) (xy 171.971827 98.320485) + (xy 171.921031 98.27251) (xy 171.904236 98.204689) (xy 171.926773 98.138554) (xy 171.971827 98.099515) + (xy 171.981116 98.094781) (xy 172.123266 98.022353) (xy 172.284418 97.905269) (xy 172.425269 97.764418) + (xy 172.542353 97.603266) (xy 172.632785 97.425783) (xy 172.637077 97.412573) (xy 172.694338 97.236343) + (xy 172.694338 97.236342) (xy 172.694339 97.236339) (xy 172.7255 97.039597) (xy 172.7255 96.840403) + (xy 172.694339 96.643661) (xy 172.694338 96.643657) (xy 172.694338 96.643656) (xy 172.632786 96.454219) + (xy 172.62649 96.441862) (xy 172.542353 96.276734) (xy 172.425269 96.115582) (xy 172.284418 95.974731) + (xy 172.123266 95.857647) (xy 171.971827 95.780485) (xy 171.921031 95.73251) (xy 171.904236 95.664689) + (xy 171.926773 95.598554) (xy 171.971827 95.559515) (xy 171.981116 95.554781) (xy 172.123266 95.482353) + (xy 172.284418 95.365269) (xy 172.425269 95.224418) (xy 172.542353 95.063266) (xy 172.632785 94.885783) + (xy 172.637077 94.872573) (xy 172.694338 94.696343) (xy 172.694338 94.696342) (xy 172.694339 94.696339) + (xy 172.7255 94.499597) (xy 172.7255 94.300403) (xy 172.694339 94.103661) (xy 172.694338 94.103657) + (xy 172.694338 94.103656) (xy 172.632786 93.914219) (xy 172.622442 93.893918) (xy 172.542353 93.736734) + (xy 172.425269 93.575582) (xy 172.284418 93.434731) (xy 172.123266 93.317647) (xy 171.971827 93.240485) + (xy 171.921031 93.19251) (xy 171.904236 93.124689) (xy 171.926773 93.058554) (xy 171.971827 93.019515) + (xy 171.981116 93.014781) (xy 172.123266 92.942353) (xy 172.284418 92.825269) (xy 172.425269 92.684418) + (xy 172.542353 92.523266) (xy 172.632785 92.345783) (xy 172.657403 92.270016) (xy 172.694338 92.156343) + (xy 172.694338 92.156342) (xy 172.694339 92.156339) (xy 172.7255 91.959597) (xy 172.7255 91.760403) + (xy 172.694339 91.563661) (xy 172.694338 91.563657) (xy 172.694338 91.563656) (xy 172.632786 91.374219) + (xy 172.605164 91.320008) (xy 172.542353 91.196734) (xy 172.425269 91.035582) (xy 172.284418 90.894731) + (xy 172.123266 90.777647) (xy 171.994112 90.71184) (xy 171.971827 90.700485) (xy 171.921031 90.65251) + (xy 171.904236 90.584689) (xy 171.926773 90.518554) (xy 171.971827 90.479515) (xy 171.985222 90.47269) + (xy 172.123266 90.402353) (xy 172.284418 90.285269) (xy 172.425269 90.144418) (xy 172.542353 89.983266) + (xy 172.632785 89.805783) (xy 172.666355 89.702465) (xy 172.694338 89.616343) (xy 172.694338 89.616342) + (xy 172.694339 89.616339) (xy 172.7255 89.419597) (xy 172.7255 89.220403) (xy 172.694339 89.023661) + (xy 172.694338 89.023657) (xy 172.694338 89.023656) (xy 172.632786 88.834219) (xy 172.580814 88.732218) + (xy 172.542353 88.656734) (xy 172.425269 88.495582) (xy 172.284418 88.354731) (xy 172.123266 88.237647) + (xy 171.971827 88.160485) (xy 171.921031 88.11251) (xy 171.904236 88.044689) (xy 171.926773 87.978554) + (xy 171.971827 87.939515) (xy 172.013279 87.918394) (xy 172.123266 87.862353) (xy 172.284418 87.745269) + (xy 172.425269 87.604418) (xy 172.542353 87.443266) (xy 172.632785 87.265783) (xy 172.649474 87.214419) + (xy 172.675284 87.134986) (xy 182.572501 87.134986) (xy 182.582994 87.237697) (xy 182.638141 87.404119) + (xy 182.638143 87.404124) (xy 182.730184 87.553345) (xy 182.854154 87.677315) (xy 183.003375 87.769356) + (xy 183.00338 87.769358) (xy 183.169802 87.824505) (xy 183.169809 87.824506) (xy 183.272519 87.834999) + (xy 183.409999 87.834999) (xy 183.41 87.834998) (xy 183.41 86.86) (xy 182.572501 86.86) (xy 182.572501 87.134986) + (xy 172.675284 87.134986) (xy 172.694338 87.076343) (xy 172.694338 87.076342) (xy 172.694339 87.076339) + (xy 172.7255 86.879597) (xy 172.7255 86.680403) (xy 172.694339 86.483661) (xy 172.694338 86.483657) + (xy 172.694338 86.483656) (xy 172.632786 86.294219) (xy 172.601906 86.233613) (xy 172.542353 86.116734) + (xy 172.519306 86.085013) (xy 182.5725 86.085013) (xy 182.5725 86.36) (xy 183.41 86.36) (xy 183.41 85.374456) + (xy 183.389196 85.336357) (xy 183.39418 85.266665) (xy 183.41 85.242049) (xy 183.41 84.26) (xy 182.572501 84.26) + (xy 182.572501 84.534986) (xy 182.582994 84.637697) (xy 182.638141 84.804119) (xy 182.638143 84.804124) + (xy 182.730184 84.953345) (xy 182.854154 85.077315) (xy 183.003375 85.169356) (xy 183.003382 85.169359) + (xy 183.072594 85.192293) (xy 183.130039 85.232065) (xy 183.156863 85.29658) (xy 183.144549 85.365356) + (xy 183.097006 85.416557) (xy 183.072597 85.427704) (xy 183.003383 85.45064) (xy 183.003375 85.450643) + (xy 182.854154 85.542684) (xy 182.730184 85.666654) (xy 182.638143 85.815875) (xy 182.638141 85.81588) + (xy 182.582994 85.982302) (xy 182.582993 85.982309) (xy 182.5725 86.085013) (xy 172.519306 86.085013) + (xy 172.425269 85.955582) (xy 172.284418 85.814731) (xy 172.123266 85.697647) (xy 171.971827 85.620485) + (xy 171.921031 85.57251) (xy 171.904236 85.504689) (xy 171.926773 85.438554) (xy 171.971827 85.399515) + (xy 172.001719 85.384284) (xy 172.123266 85.322353) (xy 172.284418 85.205269) (xy 172.425269 85.064418) + (xy 172.542353 84.903266) (xy 172.632785 84.725783) (xy 172.63638 84.714718) (xy 172.694338 84.536343) + (xy 172.694338 84.536342) (xy 172.694339 84.536339) (xy 172.7255 84.339597) (xy 172.7255 84.140403) + (xy 172.694339 83.943661) (xy 172.694338 83.943657) (xy 172.694338 83.943656) (xy 172.632786 83.754219) + (xy 172.542353 83.576734) (xy 172.52638 83.554749) (xy 172.526379 83.554748) (xy 172.475714 83.485013) + (xy 182.5725 83.485013) (xy 182.5725 83.76) (xy 183.41 83.76) (xy 183.41 82.785) (xy 183.272527 82.785) + (xy 183.272512 82.785001) (xy 183.169802 82.795494) (xy 183.00338 82.850641) (xy 183.003375 82.850643) + (xy 182.854154 82.942684) (xy 182.730184 83.066654) (xy 182.638143 83.215875) (xy 182.638141 83.21588) + (xy 182.582994 83.382302) (xy 182.582993 83.382309) (xy 182.5725 83.485013) (xy 172.475714 83.485013) + (xy 172.425269 83.415582) (xy 172.284418 83.274731) (xy 172.123266 83.157647) (xy 172.025722 83.107946) + (xy 171.971827 83.080485) (xy 171.921031 83.03251) (xy 171.904236 82.964689) (xy 171.926773 82.898554) + (xy 171.971827 82.859515) (xy 171.989243 82.850641) (xy 172.123266 82.782353) (xy 172.284418 82.665269) + (xy 172.425269 82.524418) (xy 172.542353 82.363266) (xy 172.632785 82.185783) (xy 172.635179 82.178415) + (xy 172.694338 81.996343) (xy 172.694338 81.996342) (xy 172.694339 81.996339) (xy 172.7255 81.799597) + (xy 172.7255 81.600403) (xy 172.694339 81.403661) (xy 172.694338 81.403657) (xy 172.694338 81.403656) + (xy 172.632786 81.214219) (xy 172.632785 81.214217) (xy 172.542353 81.036734) (xy 172.425269 80.875582) + (xy 172.284418 80.734731) (xy 172.123266 80.617647) (xy 172.024713 80.567432) (xy 171.971827 80.540485) + (xy 171.921031 80.49251) (xy 171.904236 80.424689) (xy 171.926773 80.358554) (xy 171.971827 80.319515) + (xy 172.020827 80.294548) (xy 172.123266 80.242353) (xy 172.284418 80.125269) (xy 172.425269 79.984418) + (xy 172.542353 79.823266) (xy 172.632785 79.645783) (xy 172.647308 79.601086) (xy 172.694338 79.456343) + (xy 172.694338 79.456342) (xy 172.694339 79.456339) (xy 172.7255 79.259597) (xy 172.7255 79.060403) + (xy 172.694339 78.863661) (xy 172.694338 78.863657) (xy 172.694338 78.863656) (xy 172.632786 78.674219) + (xy 172.632785 78.674217) (xy 172.542353 78.496734) (xy 172.425269 78.335582) (xy 172.284418 78.194731) + (xy 172.123266 78.077647) (xy 172.029753 78.03) (xy 171.971827 78.000485) (xy 171.921031 77.95251) + (xy 171.904236 77.884689) (xy 171.926773 77.818554) (xy 171.971827 77.779515) (xy 172.006704 77.761744) + (xy 172.123266 77.702353) (xy 172.284418 77.585269) (xy 172.425269 77.444418) (xy 172.542353 77.283266) + (xy 172.632785 77.105783) (xy 172.666962 77.000598) (xy 172.694338 76.916343) (xy 172.694338 76.916342) + (xy 172.694339 76.916339) (xy 172.7255 76.719597) (xy 172.7255 76.520403) (xy 172.694339 76.323661) + (xy 172.694338 76.323657) (xy 172.694338 76.323656) (xy 172.632786 76.134219) (xy 172.542352 75.956733) + (xy 172.425269 75.795582) (xy 172.284418 75.654731) (xy 172.123266 75.537647) (xy 172.000777 75.475236) + (xy 171.971827 75.460485) (xy 171.921031 75.41251) (xy 171.904236 75.344689) (xy 171.926773 75.278554) + (xy 171.971827 75.239515) (xy 171.981116 75.234781) (xy 172.123266 75.162353) (xy 172.284418 75.045269) + (xy 172.425269 74.904418) (xy 172.542353 74.743266) (xy 172.632785 74.565783) (xy 172.688631 74.393907) + (xy 172.694338 74.376343) (xy 172.694338 74.376342) (xy 172.694339 74.376339) (xy 172.7255 74.179597) + (xy 172.7255 73.980403) (xy 172.694339 73.783661) (xy 172.694338 73.783657) (xy 172.694338 73.783656) + (xy 172.632786 73.594219) (xy 172.603593 73.536924) (xy 172.542353 73.416734) (xy 172.425269 73.255582) + (xy 172.284418 73.114731) (xy 172.123266 72.997647) (xy 171.971827 72.920485) (xy 171.921031 72.87251) + (xy 171.904236 72.804689) (xy 171.926773 72.738554) (xy 171.971827 72.699515) (xy 171.981116 72.694781) + (xy 172.123266 72.622353) (xy 172.284418 72.505269) (xy 172.425269 72.364418) (xy 172.441838 72.341613) + (xy 172.497169 72.298948) (xy 172.542155 72.2905) (xy 174.11777 72.2905) (xy 174.184809 72.310185) + (xy 174.205451 72.326819) (xy 175.623181 73.744548) (xy 175.656666 73.805871) (xy 175.6595 73.832229) + (xy 175.6595 79.643918) (xy 175.6595 79.64392) (xy 175.659499 79.64392) (xy 175.68834 79.788907) + (xy 175.688343 79.788917) (xy 175.744914 79.925492) (xy 175.744915 79.925494) (xy 175.744916 79.925495) + (xy 175.768237 79.960398) (xy 175.777812 79.974727) (xy 175.777813 79.97473) (xy 175.827046 80.048414) + (xy 175.827052 80.048421) (xy 177.181584 81.402952) (xy 177.181586 81.402954) (xy 177.211058 81.422645) + (xy 177.25527 81.452186) (xy 177.304505 81.485084) (xy 177.304506 81.485084) (xy 177.304507 81.485085) + (xy 177.304509 81.485086) (xy 177.392317 81.521457) (xy 177.441087 81.541658) (xy 177.441091 81.541658) + (xy 177.441092 81.541659) (xy 177.586079 81.5705) (xy 177.586082 81.5705) (xy 177.586083 81.5705) + (xy 177.733917 81.5705) (xy 180.552672 81.5705) (xy 180.587267 81.575424) (xy 180.732426 81.617597) + (xy 180.732429 81.617597) (xy 180.732431 81.617598) (xy 180.769306 81.6205) (xy 180.769314 81.6205) + (xy 182.550686 81.6205) (xy 182.550694 81.6205) (xy 182.587569 81.617598) (xy 182.587571 81.617597) + (xy 182.587573 81.617597) (xy 182.646754 81.600403) (xy 182.745398 81.571744) (xy 182.886865 81.488081) + (xy 183.003081 81.371865) (xy 183.086744 81.230398) (xy 183.132598 81.072569) (xy 183.1355 81.035694) + (xy 183.1355 80.84156) (xy 183.155185 80.774521) (xy 183.207989 80.728766) (xy 183.277147 80.718822) + (xy 183.340703 80.747847) (xy 183.378477 80.806625) (xy 183.381117 80.817369) (xy 183.394103 80.882658) + (xy 183.394106 80.882667) (xy 183.461984 81.046542) (xy 183.461985 81.046543) (xy 183.461987 81.046547) + (xy 183.488602 81.086378) (xy 183.50948 81.153055) (xy 183.5095 81.155269) (xy 183.5095 81.346082) + (xy 183.5095 81.893918) (xy 183.5095 81.89392) (xy 183.509499 81.89392) (xy 183.53834 82.038907) + (xy 183.538343 82.038917) (xy 183.594912 82.175488) (xy 183.59492 82.175502) (xy 183.61997 82.212991) + (xy 183.619971 82.212994) (xy 183.677046 82.298414) (xy 183.67705 82.298419) (xy 183.951951 82.573319) + (xy 183.985436 82.634642) (xy 183.980452 82.704333) (xy 183.938581 82.760267) (xy 183.932444 82.762555) + (xy 183.91 82.785) (xy 183.91 85.245541) (xy 183.930804 85.283641) (xy 183.92582 85.353333) (xy 183.91 85.377949) + (xy 183.91 87.834999) (xy 184.047472 87.834999) (xy 184.047486 87.834998) (xy 184.150197 87.824505) + (xy 184.316619 87.769358) (xy 184.316624 87.769356) (xy 184.465845 87.677315) (xy 184.589818 87.553342) + (xy 184.591665 87.550348) (xy 184.593469 87.548724) (xy 184.594298 87.547677) (xy 184.594476 87.547818) + (xy 184.64361 87.503621) (xy 184.712573 87.492396) (xy 184.776656 87.520236) (xy 184.802743 87.550341) + (xy 184.804788 87.553656) (xy 184.928844 87.677712) (xy 185.078166 87.769814) (xy 185.244703 87.824999) + (xy 185.347491 87.8355) (xy 186.122508 87.835499) (xy 186.122516 87.835498) (xy 186.122519 87.835498) + (xy 186.178802 87.829748) (xy 186.225297 87.824999) (xy 186.391834 87.769814) (xy 186.541156 87.677712) + (xy 186.665212 87.553656) (xy 186.757314 87.404334) (xy 186.812499 87.237797) (xy 186.823 87.135009) + (xy 186.822999 86.084992) (xy 186.822243 86.077595) (xy 186.812499 85.982203) (xy 186.812498 85.9822) + (xy 186.793733 85.925571) (xy 186.757314 85.815666) (xy 186.753958 85.810225) (xy 186.7355 85.745134) + (xy 186.7355 84.874866) (xy 186.753962 84.809768) (xy 186.757314 84.804334) (xy 186.812499 84.637797) + (xy 186.823 84.535009) (xy 186.822999 83.484992) (xy 186.815908 83.41558) (xy 186.812499 83.382203) + (xy 186.812498 83.3822) (xy 186.79128 83.318169) (xy 186.757314 83.215666) (xy 186.665212 83.066344) + (xy 186.541156 82.942288) (xy 186.535489 82.937807) (xy 186.53693 82.935984) (xy 186.497675 82.892335) + (xy 186.4855 82.838752) (xy 186.4855 82.42108) (xy 186.474361 82.365085) (xy 186.474361 82.365084) + (xy 186.456659 82.276088) (xy 186.419253 82.185783) (xy 186.416201 82.178415) (xy 186.400082 82.139501) + (xy 186.400081 82.139499) (xy 186.36294 82.083915) (xy 186.362939 82.083914) (xy 186.317952 82.016584) + (xy 186.133549 81.832181) (xy 186.100064 81.770858) (xy 186.105048 81.701166) (xy 186.14692 81.645233) + (xy 186.212384 81.620816) (xy 186.22123 81.6205) (xy 187.500686 81.6205) (xy 187.500694 81.6205) + (xy 187.537569 81.617598) (xy 187.537571 81.617597) (xy 187.537573 81.617597) (xy 187.596754 81.600403) + (xy 187.695398 81.571744) (xy 187.836865 81.488081) (xy 187.953081 81.371865) (xy 188.036744 81.230398) + (xy 188.082598 81.072569) (xy 188.0855 81.035694) (xy 188.0855 80.604306) (xy 188.082598 80.567431) + (xy 188.082597 80.567426) (xy 188.051124 80.459095) (xy 188.051323 80.389225) (xy 188.089265 80.330555) + (xy 188.152904 80.301712) (xy 188.1702 80.3005) (xy 188.427771 80.3005) (xy 188.49481 80.320185) + (xy 188.515447 80.336814) (xy 188.546123 80.36749) (xy 188.571584 80.392951) (xy 188.596505 80.409603) + (xy 188.596504 80.409603) (xy 188.694494 80.475077) (xy 188.694498 80.475079) (xy 188.694505 80.475084) + (xy 188.694508 80.475085) (xy 188.694511 80.475087) (xy 188.714978 80.483564) (xy 188.750834 80.498416) + (xy 188.831088 80.531659) (xy 188.932712 80.551873) (xy 188.95843 80.556988) (xy 188.976081 80.5605) + (xy 188.976082 80.5605) (xy 188.976083 80.5605) (xy 189.123918 80.5605) (xy 189.706042 80.5605) + (xy 189.773081 80.580185) (xy 189.81158 80.619402) (xy 189.81164 80.6195) (xy 189.817288 80.628656) + (xy 189.941344 80.752712) (xy 190.090666 80.844814) (xy 190.257203 80.899999) (xy 190.359991 80.9105) + (xy 191.360008 80.910499) (xy 191.360016 80.910498) (xy 191.360019 80.910498) (xy 191.416302 80.904748) + (xy 191.462797 80.899999) (xy 191.629334 80.844814) (xy 191.655036 80.82896) (xy 191.720132 80.8105) + (xy 192.784218 80.8105) (xy 192.851257 80.830185) (xy 192.871899 80.846819) (xy 194.422215 82.397137) + (xy 194.422219 82.39714) (xy 194.586079 82.506628) (xy 194.586085 82.506631) (xy 194.586086 82.506632) + (xy 194.768165 82.582052) (xy 194.961455 82.6205) (xy 194.961458 82.620501) (xy 194.96146 82.620501) + (xy 195.164655 82.620501) (xy 195.164675 82.6205) (xy 196.228705 82.6205) (xy 196.295744 82.640185) + (xy 196.327081 82.669014) (xy 196.47806 82.865774) (xy 196.478066 82.865781) (xy 196.654218 83.041933) + (xy 196.654225 83.041939) (xy 196.851873 83.193599) (xy 197.067623 83.318162) (xy 197.067638 83.318169) + (xy 197.144331 83.349936) (xy 197.297793 83.413502) (xy 197.538435 83.477982) (xy 197.785435 83.5105) + (xy 197.785442 83.5105) (xy 198.034558 83.5105) (xy 198.034565 83.5105) (xy 198.281565 83.477982) + (xy 198.522207 83.413502) (xy 198.752373 83.318164) (xy 198.968127 83.193599) (xy 199.165776 83.041938) + (xy 199.341938 82.865776) (xy 199.493599 82.668127) (xy 199.618164 82.452373) (xy 199.713502 82.222207) + (xy 199.777982 81.981565) (xy 199.8105 81.734565) (xy 199.8105 81.485435) (xy 199.777982 81.238435) + (xy 199.713502 80.997793) (xy 199.659253 80.866825) (xy 199.618169 80.767638) (xy 199.618162 80.767623) + (xy 199.493598 80.551871) (xy 199.341939 80.354225) (xy 199.341933 80.354218) (xy 199.165781 80.178066) + (xy 199.165774 80.17806) (xy 198.968126 80.0264) (xy 198.752376 79.901837) (xy 198.752361 79.90183) + (xy 198.522207 79.806498) (xy 198.281561 79.742017) (xy 198.034575 79.709501) (xy 198.03457 79.7095) + (xy 198.034565 79.7095) (xy 197.785435 79.7095) (xy 197.785429 79.7095) (xy 197.785424 79.709501) + (xy 197.538438 79.742017) (xy 197.297792 79.806498) (xy 197.067638 79.90183) (xy 197.067623 79.901837) + (xy 196.851873 80.0264) (xy 196.654225 80.17806) (xy 196.654218 80.178066) (xy 196.478066 80.354218) + (xy 196.47806 80.354225) (xy 196.326402 80.551871) (xy 196.323153 80.557499) (xy 196.272586 80.605715) + (xy 196.215765 80.6195) (xy 195.525783 80.6195) (xy 195.458744 80.599815) (xy 195.438102 80.583181) + (xy 194.034209 79.179289) (xy 194.034206 79.179285) (xy 194.034206 79.179286) (xy 194.027139 79.172219) + (xy 194.027139 79.172218) (xy 193.887782 79.032861) (xy 193.887781 79.03286) (xy 193.88778 79.032859) + (xy 193.791518 78.968539) (xy 193.785014 78.960757) (xy 193.775946 78.956222) (xy 193.762989 78.934402) + (xy 193.746713 78.914927) (xy 193.745449 78.904864) (xy 193.740272 78.896146) (xy 193.741168 78.870784) + (xy 193.738006 78.845602) (xy 193.742382 78.836453) (xy 193.742741 78.82632) (xy 193.757206 78.805469) + (xy 193.76816 78.782574) (xy 193.777848 78.775715) (xy 193.782568 78.768913) (xy 193.789348 78.764888) + (xy 193.78942 78.764793) (xy 193.791624 78.763537) (xy 193.812845 78.750942) (xy 193.812915 78.750893) + (xy 193.816278 78.7495) (xy 193.943914 78.696632) (xy 194.107782 78.587139) (xy 194.247139 78.447782) + (xy 194.247139 78.44778) (xy 194.257347 78.437573) (xy 194.257348 78.43757) (xy 195.048102 77.646819) + (xy 195.109425 77.613334) (xy 195.135783 77.6105) (xy 195.8855 77.6105) (xy 195.952539 77.630185) + (xy 195.998294 77.682989) (xy 196.0095 77.7345) (xy 196.0095 77.810015) (xy 196.02 77.912795) (xy 196.020001 77.912797) + (xy 196.024264 77.925661) (xy 196.075186 78.079335) (xy 196.075187 78.079337) (xy 196.167286 78.228651) + (xy 196.167289 78.228655) (xy 196.291344 78.35271) (xy 196.291348 78.352713) (xy 196.440662 78.444812) + (xy 196.440664 78.444813) (xy 196.440666 78.444814) (xy 196.607203 78.499999) (xy 196.709992 78.5105) + (xy 196.709997 78.5105) (xy 199.110003 78.5105) (xy 199.110008 78.5105) (xy 199.212797 78.499999) + (xy 199.379334 78.444814) (xy 199.528655 78.352711) (xy 199.652711 78.228655) (xy 199.744814 78.079334) + (xy 199.799999 77.912797) (xy 199.8105 77.810008) (xy 199.8105 75.409992) (xy 199.799999 75.307203) + (xy 199.744814 75.140666) (xy 199.699499 75.0672) (xy 199.652713 74.991348) (xy 199.65271 74.991344) + (xy 199.528655 74.867289) (xy 199.528651 74.867286) (xy 199.379337 74.775187) (xy 199.379335 74.775186) + (xy 199.283006 74.743266) (xy 199.212797 74.720001) (xy 199.212795 74.72) (xy 199.110015 74.7095) + (xy 199.110008 74.7095) (xy 196.709992 74.7095) (xy 196.709984 74.7095) (xy 196.607204 74.72) (xy 196.607203 74.720001) + (xy 196.440664 74.775186) (xy 196.440662 74.775187) (xy 196.291348 74.867286) (xy 196.291344 74.867289) + (xy 196.167289 74.991344) (xy 196.167286 74.991348) (xy 196.075187 75.140662) (xy 196.075186 75.140664) + (xy 196.020001 75.307203) (xy 196.02 75.307204) (xy 196.0095 75.409984) (xy 196.0095 75.4855) (xy 195.989815 75.552539) + (xy 195.937011 75.598294) (xy 195.8855 75.6095) (xy 194.571457 75.6095) (xy 194.488489 75.626004) + (xy 194.488488 75.626004) (xy 194.378167 75.647947) (xy 194.378159 75.64795) (xy 194.324834 75.670037) + (xy 194.324834 75.670038) (xy 194.279315 75.688892) (xy 194.196089 75.723366) (xy 194.196079 75.723371) + (xy 194.032218 75.83286) (xy 194.032214 75.832863) (xy 193.091899 76.773181) (xy 193.030576 76.806666) + (xy 193.004218 76.8095) (xy 191.720132 76.8095) (xy 191.655036 76.791039) (xy 191.629334 76.775186) + (xy 191.462797 76.720001) (xy 191.462795 76.72) (xy 191.36001 76.7095) (xy 190.359998 76.7095) (xy 190.35998 76.709501) + (xy 190.257203 76.72) (xy 190.2572 76.720001) (xy 190.090668 76.775185) (xy 190.090663 76.775187) + (xy 189.941342 76.867289) (xy 189.817287 76.991344) (xy 189.81158 77.000598) (xy 189.759632 77.047322) + (xy 189.706042 77.0595) (xy 189.34608 77.0595) (xy 189.201092 77.08834) (xy 189.201082 77.088343) + (xy 189.064511 77.144912) (xy 189.064498 77.144919) (xy 188.941584 77.227048) (xy 188.94158 77.227051) + (xy 188.675451 77.493181) (xy 188.614128 77.526666) (xy 188.58777 77.5295) (xy 188.1702 77.5295) + (xy 188.103161 77.509815) (xy 188.057406 77.457011) (xy 188.047462 77.387853) (xy 188.051124 77.370905) + (xy 188.082597 77.262573) (xy 188.082598 77.262567) (xy 188.085499 77.225701) (xy 188.0855 77.225694) + (xy 188.0855 76.794306) (xy 188.082598 76.757431) (xy 188.075849 76.734202) (xy 188.036745 76.599606) + (xy 188.036744 76.599603) (xy 188.036744 76.599602) (xy 187.953081 76.458135) (xy 187.953079 76.458133) + (xy 187.953076 76.458129) (xy 187.83687 76.341923) (xy 187.836862 76.341917) (xy 187.695396 76.258255) + (xy 187.695393 76.258254) (xy 187.537573 76.212402) (xy 187.537567 76.212401) (xy 187.500701 76.2095) + (xy 187.500694 76.2095) (xy 187.4845 76.2095) (xy 187.417461 76.189815) (xy 187.371706 76.137011) + (xy 187.3605 76.0855) (xy 187.3605 74.365908) (xy 187.380185 74.298869) (xy 187.424271 74.260363) + (xy 187.423187 74.258605) (xy 187.429332 74.254814) (xy 187.429334 74.254814) (xy 187.578656 74.162712) + (xy 187.702712 74.038656) (xy 187.794814 73.889334) (xy 187.849999 73.722797) (xy 187.8605 73.620009) + (xy 187.860499 72.819992) (xy 187.859592 72.811116) (xy 187.849999 72.717203) (xy 187.849998 72.7172) + (xy 187.823439 72.63705) (xy 187.794814 72.550666) (xy 187.702712 72.401344) (xy 187.608695 72.307327) + (xy 187.57521 72.246004) (xy 187.580194 72.176312) (xy 187.608695 72.131964) (xy 187.702317 72.038342) + (xy 187.794356 71.889124) (xy 187.794358 71.889119) (xy 187.849505 71.722697) (xy 187.849506 71.72269) + (xy 187.859999 71.619986) (xy 187.86 71.619973) (xy 187.86 71.47) (xy 185.460001 71.47) (xy 185.460001 71.619986) + (xy 185.470494 71.722697) (xy 185.525641 71.889119) (xy 185.525643 71.889124) (xy 185.617684 72.038345) + (xy 185.711304 72.131965) (xy 185.744789 72.193288) (xy 185.739805 72.26298) (xy 185.711305 72.307327) + (xy 185.617287 72.401345) (xy 185.525187 72.550663) (xy 185.525185 72.550668) (xy 185.509859 72.596919) + (xy 185.470001 72.717203) (xy 185.470001 72.717204) (xy 185.47 72.717204) (xy 185.4595 72.819983) + (xy 185.4595 73.620001) (xy 185.459501 73.620019) (xy 185.47 73.722796) (xy 185.470001 73.722799) + (xy 185.525185 73.889331) (xy 185.525187 73.889336) (xy 185.543342 73.91877) (xy 185.617288 74.038656) + (xy 185.741344 74.162712) (xy 185.800596 74.199258) (xy 185.847321 74.251204) (xy 185.8595 74.304797) + (xy 185.8595 76.0855) (xy 185.839815 76.152539) (xy 185.787011 76.198294) (xy 185.7355 76.2095) + (xy 185.719298 76.2095) (xy 185.682432 76.212401) (xy 185.682426 76.212402) (xy 185.524606 76.258254) + (xy 185.524603 76.258255) (xy 185.383137 76.341917) (xy 185.383129 76.341923) (xy 185.372181 76.352872) + (xy 185.310858 76.386357) (xy 185.241166 76.381373) (xy 185.185233 76.339501) (xy 185.160816 76.274037) + (xy 185.1605 76.265191) (xy 185.1605 70.820013) (xy 185.46 70.820013) (xy 185.46 70.97) (xy 186.41 70.97) + (xy 186.91 70.97) (xy 187.859999 70.97) (xy 187.859999 70.820028) (xy 187.859998 70.820013) (xy 187.849505 70.717302) + (xy 187.794358 70.55088) (xy 187.794356 70.550875) (xy 187.702315 70.401654) (xy 187.578345 70.277684) + (xy 187.429124 70.185643) (xy 187.429119 70.185641) (xy 187.262697 70.130494) (xy 187.26269 70.130493) + (xy 187.159986 70.12) (xy 186.91 70.12) (xy 186.91 70.97) (xy 186.41 70.97) (xy 186.41 70.12) (xy 186.160029 70.12) + (xy 186.160012 70.120001) (xy 186.057302 70.130494) (xy 185.89088 70.185641) (xy 185.890875 70.185643) + (xy 185.741654 70.277684) (xy 185.617684 70.401654) (xy 185.525643 70.550875) (xy 185.525641 70.55088) + (xy 185.470494 70.717302) (xy 185.470493 70.717309) (xy 185.46 70.820013) (xy 185.1605 70.820013) + (xy 185.1605 68.931307) (xy 185.160499 68.931303) (xy 185.125896 68.757341) (xy 185.125895 68.757334) + (xy 185.084817 68.658164) (xy 185.058013 68.593453) (xy 184.998936 68.50504) (xy 184.986069 68.485783) + (xy 184.959466 68.445966) (xy 184.281394 67.767894) (xy 188.71097 67.767894) (xy 188.717371 67.827422) + (xy 188.717373 67.827429) (xy 188.767615 67.962136) (xy 188.767619 67.962143) (xy 188.853779 68.077237) + (xy 188.853782 68.07724) (xy 188.968876 68.1634) (xy 188.968883 68.163404) (xy 189.10359 68.213646) + (xy 189.103597 68.213648) (xy 189.163125 68.220049) (xy 189.163142 68.22005) (xy 189.36102 68.22005) + (xy 189.36102 67.57) (xy 188.71097 67.57) (xy 188.71097 67.767894) (xy 184.281394 67.767894) (xy 184.119819 67.606319) + (xy 182.834039 66.320538) (xy 182.834038 66.320537) (xy 182.813221 66.306628) (xy 182.749193 66.263846) + (xy 182.686547 66.221987) (xy 182.591897 66.182782) (xy 182.522666 66.154105) (xy 182.522658 66.154103) + (xy 182.348696 66.1195) (xy 182.348692 66.1195) (xy 182.348691 66.1195) (xy 178.104048 66.1195) + (xy 178.037009 66.099815) (xy 177.991254 66.047011) (xy 177.98131 65.977853) (xy 178.010335 65.914297) + (xy 178.060715 65.879318) (xy 178.102328 65.863797) (xy 178.102327 65.863797) (xy 178.102331 65.863796) + (xy 178.217546 65.777546) (xy 178.303796 65.662331) (xy 178.354091 65.527483) (xy 178.3605 65.467873) + (xy 178.360499 64.301902) (xy 182.9595 64.301902) (xy 182.9595 64.538097) (xy 182.996446 64.771368) + (xy 183.069433 64.995996) (xy 183.142814 65.140013) (xy 183.176657 65.206433) (xy 183.315483 65.39751) + (xy 183.48249 65.564517) (xy 183.673567 65.703343) (xy 183.757286 65.746) (xy 183.884003 65.810566) + (xy 183.884005 65.810566) (xy 183.884008 65.810568) (xy 184.004412 65.849689) (xy 184.108631 65.883553) + (xy 184.341903 65.9205) (xy 184.341908 65.9205) (xy 184.494217 65.9205) (xy 184.561256 65.940185) + (xy 184.581898 65.956819) (xy 184.822215 66.197137) (xy 184.822219 66.19714) (xy 184.986079 66.306628) + (xy 184.986085 66.306631) (xy 184.986086 66.306632) (xy 185.168165 66.382052) (xy 185.361455 66.4205) + (xy 185.361458 66.420501) (xy 185.36146 66.420501) (xy 185.564655 66.420501) (xy 185.564675 66.4205) + (xy 188.712555 66.4205) (xy 188.779594 66.440185) (xy 188.825349 66.492989) (xy 188.835293 66.562147) + (xy 188.811822 66.618811) (xy 188.767616 66.677861) (xy 188.767615 66.677863) (xy 188.717373 66.81257) + (xy 188.717371 66.812577) (xy 188.71097 66.872105) (xy 188.71097 67.07) (xy 189.48702 67.07) (xy 189.554059 67.089685) + (xy 189.599814 67.142489) (xy 189.61102 67.194) (xy 189.61102 67.32) (xy 189.73702 67.32) (xy 189.804059 67.339685) + (xy 189.849814 67.392489) (xy 189.86102 67.444) (xy 189.86102 68.22005) (xy 190.058898 68.22005) + (xy 190.058914 68.220049) (xy 190.118442 68.213648) (xy 190.118449 68.213646) (xy 190.253156 68.163404) + (xy 190.253163 68.1634) (xy 190.368257 68.07724) (xy 190.36826 68.077237) (xy 190.45442 67.962143) + (xy 190.454424 67.962136) (xy 190.469318 67.922204) (xy 190.511189 67.866271) (xy 190.576653 67.841853) + (xy 190.644926 67.856704) (xy 190.694332 67.906109) (xy 190.7095 67.965537) (xy 190.7095 69.20777) + (xy 190.700855 69.23721) (xy 190.694332 69.267197) (xy 190.690577 69.272212) (xy 190.689815 69.274809) + (xy 190.673181 69.295451) (xy 190.647681 69.320951) (xy 190.586358 69.354436) (xy 190.516666 69.349452) + (xy 190.472319 69.320951) (xy 190.378657 69.227289) (xy 190.378656 69.227288) (xy 190.285888 69.170069) + (xy 190.229336 69.135187) (xy 190.229331 69.135185) (xy 190.227862 69.134698) (xy 190.062797 69.080001) + (xy 190.062795 69.08) (xy 189.96001 69.0695) (xy 189.159998 69.0695) (xy 189.15998 69.069501) (xy 189.057203 69.08) + (xy 189.0572 69.080001) (xy 188.890668 69.135185) (xy 188.890663 69.135187) (xy 188.741342 69.227289) + (xy 188.617289 69.351342) (xy 188.525187 69.500663) (xy 188.525186 69.500666) (xy 188.470001 69.667203) + (xy 188.470001 69.667204) (xy 188.47 69.667204) (xy 188.4595 69.769983) (xy 188.4595 70.770001) + (xy 188.459501 70.770019) (xy 188.47 70.872796) (xy 188.470001 70.872799) (xy 188.520216 71.024336) + (xy 188.525186 71.039334) (xy 188.541039 71.065036) (xy 188.5595 71.130132) (xy 188.5595 73.554902) + (xy 188.550061 73.602355) (xy 188.497949 73.728163) (xy 188.497947 73.728171) (xy 188.4595 73.921455) + (xy 188.4595 74.118544) (xy 188.497947 74.311828) (xy 188.497949 74.311836) (xy 188.573367 74.49391) + (xy 188.573372 74.49392) (xy 188.68286 74.65778) (xy 188.682863 74.657784) (xy 188.822215 74.797136) + (xy 188.822219 74.797139) (xy 188.986079 74.906627) (xy 188.986083 74.906629) (xy 188.986086 74.906631) + (xy 189.168164 74.982051) (xy 189.361455 75.020499) (xy 189.361458 75.0205) (xy 189.36146 75.0205) + (xy 189.558542 75.0205) (xy 189.558543 75.020499) (xy 189.751836 74.982051) (xy 189.933914 74.906631) + (xy 190.097781 74.797139) (xy 190.19778 74.69714) (xy 190.197782 74.697139) (xy 190.337139 74.557782) + (xy 190.446632 74.393914) (xy 190.522051 74.211835) (xy 190.556499 74.038656) (xy 190.5605 74.018543) + (xy 190.5605 71.42334) (xy 190.580185 71.356301) (xy 190.632989 71.310546) (xy 190.702147 71.300602) + (xy 190.749591 71.317798) (xy 190.890666 71.404814) (xy 191.057203 71.459999) (xy 191.159991 71.4705) + (xy 191.960008 71.470499) (xy 191.960016 71.470498) (xy 191.960019 71.470498) (xy 192.016302 71.464748) + (xy 192.062797 71.459999) (xy 192.229334 71.404814) (xy 192.378656 71.312712) (xy 192.502712 71.188656) + (xy 192.594814 71.039334) (xy 192.649999 70.872797) (xy 192.6605 70.770009) (xy 192.660499 69.769992) + (xy 192.657878 69.744338) (xy 192.649999 69.667203) (xy 192.649998 69.6672) (xy 192.648694 69.663266) + (xy 192.594814 69.500666) (xy 192.585632 69.48578) (xy 192.528961 69.3939) (xy 192.5105 69.328804) + (xy 192.5105 66.822175) (xy 192.510549 66.820307) (xy 192.510549 66.817932) (xy 192.51055 66.817923) + (xy 192.510549 65.922078) (xy 192.504141 65.862467) (xy 192.503337 65.860312) (xy 192.453847 65.727621) + (xy 192.453843 65.727614) (xy 192.367597 65.612405) (xy 192.367594 65.612402) (xy 192.252385 65.526156) + (xy 192.252378 65.526152) (xy 192.117532 65.475858) (xy 192.117533 65.475858) (xy 192.057933 65.469451) + (xy 192.057931 65.46945) (xy 192.057923 65.46945) (xy 192.057914 65.46945) (xy 191.162079 65.46945) + (xy 191.162073 65.469451) (xy 191.102466 65.475858) (xy 190.967621 65.526152) (xy 190.967614 65.526156) + (xy 190.852405 65.612402) (xy 190.826423 65.64711) (xy 190.770489 65.68898) (xy 190.700797 65.693964) + (xy 190.639475 65.660478) (xy 190.60599 65.599154) (xy 190.60554 65.548606) (xy 190.61152 65.518543) + (xy 190.61152 65.321456) (xy 190.573072 65.128171) (xy 190.573071 65.128167) (xy 190.573071 65.128165) + (xy 190.519493 64.998816) (xy 190.510768 64.964627) (xy 190.505161 64.912467) (xy 190.498241 64.893914) + (xy 190.454867 64.777621) (xy 190.454863 64.777614) (xy 190.368617 64.662405) (xy 190.368614 64.662402) + (xy 190.253405 64.576156) (xy 190.253398 64.576152) (xy 190.118553 64.525858) (xy 190.066389 64.52025) + (xy 190.032194 64.511522) (xy 189.902859 64.45795) (xy 189.902849 64.457947) (xy 189.709563 64.4195) + (xy 189.709561 64.4195) (xy 186.084379 64.4195) (xy 186.01734 64.399815) (xy 185.971585 64.347011) + (xy 185.960761 64.30522) (xy 185.9605 64.301904) (xy 185.923553 64.068631) (xy 185.850566 63.844003) + (xy 185.755602 63.657627) (xy 185.743343 63.633567) (xy 185.604517 63.44249) (xy 185.494513 63.332486) + (xy 188.635001 63.332486) (xy 188.645494 63.435197) (xy 188.700641 63.601619) (xy 188.700643 63.601624) + (xy 188.792684 63.750845) (xy 188.916654 63.874815) (xy 189.065875 63.966856) (xy 189.06588 63.966858) + (xy 189.232302 64.022005) (xy 189.232309 64.022006) (xy 189.335019 64.032499) (xy 189.609999 64.032499) + (xy 190.11 64.032499) (xy 190.384972 64.032499) (xy 190.384986 64.032498) (xy 190.487697 64.022005) + (xy 190.654119 63.966858) (xy 190.654124 63.966856) (xy 190.803345 63.874815) (xy 190.927315 63.750845) + (xy 191.019356 63.601624) (xy 191.019358 63.601619) (xy 191.074505 63.435197) (xy 191.074506 63.43519) + (xy 191.084999 63.332486) (xy 191.085 63.332473) (xy 191.085 63.294986) (xy 191.597501 63.294986) + (xy 191.607994 63.397697) (xy 191.663141 63.564119) (xy 191.663143 63.564124) (xy 191.755184 63.713345) + (xy 191.879154 63.837315) (xy 192.028375 63.929356) (xy 192.02838 63.929358) (xy 192.194802 63.984505) + (xy 192.194809 63.984506) (xy 192.297519 63.994999) (xy 192.572499 63.994999) (xy 193.0725 63.994999) + (xy 193.347472 63.994999) (xy 193.347486 63.994998) (xy 193.450197 63.984505) (xy 193.616619 63.929358) + (xy 193.616624 63.929356) (xy 193.765845 63.837315) (xy 193.889815 63.713345) (xy 193.981856 63.564124) + (xy 193.981858 63.564119) (xy 194.037005 63.397697) (xy 194.037006 63.39769) (xy 194.047499 63.294986) + (xy 194.0475 63.294973) (xy 194.0475 63.1575) (xy 193.0725 63.1575) (xy 193.0725 63.994999) (xy 192.572499 63.994999) + (xy 192.5725 63.994998) (xy 192.5725 63.1575) (xy 191.597501 63.1575) (xy 191.597501 63.294986) + (xy 191.085 63.294986) (xy 191.085 63.195) (xy 190.11 63.195) (xy 190.11 64.032499) (xy 189.609999 64.032499) + (xy 189.61 64.032498) (xy 189.61 63.195) (xy 188.635001 63.195) (xy 188.635001 63.332486) (xy 185.494513 63.332486) + (xy 185.43751 63.275483) (xy 185.246433 63.136657) (xy 185.035996 63.029433) (xy 184.811368 62.956446) + (xy 184.578097 62.9195) (xy 184.578092 62.9195) (xy 184.341908 62.9195) (xy 184.341903 62.9195) + (xy 184.108631 62.956446) (xy 183.884003 63.029433) (xy 183.673566 63.136657) (xy 183.56455 63.215862) + (xy 183.48249 63.275483) (xy 183.482488 63.275485) (xy 183.482487 63.275485) (xy 183.315485 63.442487) + (xy 183.315485 63.442488) (xy 183.315483 63.44249) (xy 183.257649 63.522092) (xy 183.176657 63.633566) + (xy 183.069433 63.844003) (xy 182.996446 64.068631) (xy 182.9595 64.301902) (xy 178.360499 64.301902) + (xy 178.360499 63.372128) (xy 178.354091 63.312517) (xy 178.353151 63.309998) (xy 178.303797 63.177671) + (xy 178.303793 63.177664) (xy 178.217547 63.062455) (xy 178.217544 63.062452) (xy 178.102335 62.976206) + (xy 178.102328 62.976202) (xy 177.967482 62.925908) (xy 177.959938 62.924126) (xy 177.960474 62.921853) + (xy 177.906688 62.899571) (xy 177.866843 62.842177) (xy 177.8605 62.803024) (xy 177.8605 62.435782) + (xy 177.880185 62.368743) (xy 177.896819 62.348101) (xy 178.338101 61.906819) (xy 178.399424 61.873334) + (xy 178.425782 61.8705) (xy 188.761977 61.8705) (xy 188.829016 61.890185) (xy 188.874771 61.942989) + (xy 188.884715 62.012147) (xy 188.85569 62.075703) (xy 188.849658 62.082181) (xy 188.792684 62.139154) + (xy 188.700643 62.288375) (xy 188.700641 62.28838) (xy 188.645494 62.454802) (xy 188.645493 62.454809) + (xy 188.635 62.557513) (xy 188.635 62.695) (xy 191.084999 62.695) (xy 191.084999 62.557528) (xy 191.084998 62.557513) + (xy 191.074505 62.454802) (xy 191.019358 62.28838) (xy 191.019356 62.288375) (xy 190.927315 62.139154) + (xy 190.832842 62.044681) (xy 190.799357 61.983358) (xy 190.804341 61.913666) (xy 190.846213 61.857733) + (xy 190.911677 61.833316) (xy 190.920523 61.833) (xy 191.724477 61.833) (xy 191.791516 61.852685) + (xy 191.837271 61.905489) (xy 191.847215 61.974647) (xy 191.81819 62.038203) (xy 191.812158 62.044681) + (xy 191.755184 62.101654) (xy 191.663143 62.250875) (xy 191.663141 62.25088) (xy 191.607994 62.417302) + (xy 191.607993 62.417309) (xy 191.5975 62.520013) (xy 191.5975 62.6575) (xy 194.047499 62.6575) + (xy 194.047499 62.520028) (xy 194.047498 62.520013) (xy 194.037005 62.417302) (xy 193.981858 62.25088) + (xy 193.981856 62.250875) (xy 193.889815 62.101654) (xy 193.765844 61.977683) (xy 193.765841 61.977681) + (xy 193.762839 61.975829) (xy 193.761213 61.974021) (xy 193.760177 61.973202) (xy 193.760317 61.973024) + (xy 193.716117 61.92388) (xy 193.704897 61.854917) (xy 193.732743 61.790836) (xy 193.762844 61.764754) + (xy 193.766156 61.762712) (xy 193.890212 61.638656) (xy 193.982314 61.489334) (xy 194.037499 61.322797) + (xy 194.048 61.220009) (xy 194.047999 60.444992) (xy 194.045444 60.419984) (xy 194.037499 60.342203) + (xy 194.037498 60.3422) (xy 194.019558 60.28806) (xy 193.982314 60.175666) (xy 193.98231 60.17566) + (xy 193.982309 60.175657) (xy 193.960161 60.13975) (xy 193.96016 60.139749) (xy 193.958094 60.1364) + (xy 193.922512 60.078711) (xy 197.1495 60.078711) (xy 197.1495 60.321288) (xy 197.181161 60.561785) + (xy 197.243947 60.796104) (xy 197.309119 60.953442) (xy 197.336776 61.020212) (xy 197.458064 61.230289) + (xy 197.458066 61.230292) (xy 197.458067 61.230293) (xy 197.605733 61.422736) (xy 197.605739 61.422743) + (xy 197.777256 61.59426) (xy 197.777263 61.594266) (xy 197.835115 61.638657) (xy 197.969711 61.741936) + (xy 198.179788 61.863224) (xy 198.4039 61.956054) (xy 198.638211 62.018838) (xy 198.818586 62.042584) + (xy 198.878711 62.0505) (xy 198.878712 62.0505) (xy 199.121289 62.0505) (xy 199.169388 62.044167) + (xy 199.361789 62.018838) (xy 199.5961 61.956054) (xy 199.820212 61.863224) (xy 200.030289 61.741936) + (xy 200.222738 61.594265) (xy 200.394265 61.422738) (xy 200.541936 61.230289) (xy 200.663224 61.020212) + (xy 200.756054 60.7961) (xy 200.818838 60.561789) (xy 200.8505 60.321288) (xy 200.8505 60.078712) + (xy 200.818838 59.838211) (xy 200.756054 59.6039) (xy 200.663224 59.379788) (xy 200.541936 59.169711) + (xy 200.394265 58.977262) (xy 200.39426 58.977256) (xy 200.222743 58.805739) (xy 200.222736 58.805733) + (xy 200.030293 58.658067) (xy 200.030292 58.658066) (xy 200.030289 58.658064) (xy 199.820212 58.536776) + (xy 199.802009 58.529236) (xy 199.596104 58.443947) (xy 199.361785 58.381161) (xy 199.121289 58.3495) + (xy 199.121288 58.3495) (xy 198.878712 58.3495) (xy 198.878711 58.3495) (xy 198.638214 58.381161) + (xy 198.403895 58.443947) (xy 198.179794 58.536773) (xy 198.179785 58.536777) (xy 197.969706 58.658067) + (xy 197.777263 58.805733) (xy 197.777256 58.805739) (xy 197.605739 58.977256) (xy 197.605733 58.977263) + (xy 197.458067 59.169706) (xy 197.336777 59.379785) (xy 197.336773 59.379794) (xy 197.243947 59.603895) + (xy 197.181161 59.838214) (xy 197.1495 60.078711) (xy 193.922512 60.078711) (xy 193.890212 60.026344) + (xy 193.766156 59.902288) (xy 193.6522 59.832) (xy 193.616836 59.810187) (xy 193.616831 59.810185) + (xy 193.615362 59.809698) (xy 193.450297 59.755001) (xy 193.450295 59.755) (xy 193.34751 59.7445) + (xy 192.297498 59.7445) (xy 192.29748 59.744501) (xy 192.194703 59.755) (xy 192.1947 59.755001) + (xy 192.028168 59.810185) (xy 192.028161 59.810188) (xy 192.022732 59.813538) (xy 191.957634 59.832) + (xy 190.627007 59.832) (xy 190.588003 59.825706) (xy 190.586028 59.825051) (xy 190.487797 59.792501) + (xy 190.487795 59.7925) (xy 190.38501 59.782) (xy 189.334998 59.782) (xy 189.33498 59.782001) (xy 189.232203 59.7925) + (xy 189.2322 59.792501) (xy 189.065668 59.847685) (xy 189.065661 59.847688) (xy 189.060232 59.851038) + (xy 188.995134 59.8695) (xy 177.861457 59.8695) (xy 177.822301 59.877289) (xy 177.782601 59.885186) + (xy 177.668167 59.907947) (xy 177.668159 59.90795) (xy 177.614834 59.930037) (xy 177.614834 59.930038) + (xy 177.569315 59.948892) (xy 177.486089 59.983366) (xy 177.486079 59.983371) (xy 177.322219 60.092859) + (xy 177.278679 60.1364) (xy 177.182861 60.232218) (xy 177.182858 60.232221) (xy 176.222221 61.192858) + (xy 176.222218 61.192861) (xy 176.185713 61.229366) (xy 176.082859 61.332219) (xy 175.973371 61.49608) + (xy 175.973364 61.496093) (xy 175.94538 61.563654) (xy 175.94538 61.563656) (xy 175.914314 61.638656) + (xy 175.910031 61.648997) (xy 175.897949 61.678164) (xy 175.897947 61.67817) (xy 175.8595 61.871456) + (xy 175.8595 62.803023) (xy 175.839815 62.870062) (xy 175.787011 62.915817) (xy 175.759865 62.923266) + (xy 175.760068 62.924124) (xy 175.75252 62.925907) (xy 175.617671 62.976202) (xy 175.617664 62.976206) + (xy 175.502455 63.062452) (xy 175.502452 63.062455) (xy 175.416206 63.177664) (xy 175.416202 63.177671) + (xy 175.365908 63.312517) (xy 175.360512 63.36271) (xy 175.359501 63.372123) (xy 175.3595 63.372135) + (xy 175.3595 65.46787) (xy 175.359501 65.467876) (xy 175.365908 65.527483) (xy 175.416202 65.662328) + (xy 175.416206 65.662335) (xy 175.502452 65.777544) (xy 175.502455 65.777547) (xy 175.617664 65.863793) + (xy 175.617671 65.863797) (xy 175.659285 65.879318) (xy 175.715219 65.921189) (xy 175.739636 65.986653) + (xy 175.724785 66.054926) (xy 175.67538 66.104332) (xy 175.615952 66.1195) (xy 174.4845 66.1195) + (xy 174.417461 66.099815) (xy 174.371706 66.047011) (xy 174.3605 65.9955) (xy 174.3605 64.931309) + (xy 174.353062 64.893913) (xy 174.353062 64.893912) (xy 174.325896 64.757341) (xy 174.325895 64.757334) + (xy 174.278478 64.642861) (xy 174.258013 64.593453) (xy 174.198936 64.50504) (xy 174.167471 64.457947) + (xy 174.159466 64.445966) (xy 174.159464 64.445964) (xy 173.434041 63.72054) (xy 173.434038 63.720537) + (xy 173.363966 63.673717) (xy 173.286544 63.621985) (xy 173.286542 63.621984) (xy 173.204451 63.587982) + (xy 173.190773 63.582316) (xy 173.136545 63.559853) (xy 173.082142 63.516011) (xy 173.063142 63.45892) + (xy 173.060079 63.449717) (xy 173.06 63.445293) (xy 173.06 57.5845) (xy 173.079685 57.517461) (xy 173.132489 57.471706) + (xy 173.184 57.4605) (xy 200.114108 57.4605) (xy 200.175572 57.4605) (xy 200.184418 57.460816) (xy 200.384561 57.47513) + (xy 200.402063 57.477647) (xy 200.593797 57.519355) (xy 200.610755 57.524334) (xy 200.772064 57.5845) + (xy 200.794609 57.592909) (xy 200.810701 57.600259) (xy 200.982904 57.694288) (xy 200.997784 57.703849) + (xy 201.154867 57.821441) (xy 201.168237 57.833027) (xy 201.306972 57.971762) (xy 201.318558 57.985132) + (xy 201.436146 58.14221) (xy 201.445711 58.157095) (xy 201.53974 58.329298) (xy 201.54709 58.34539) + (xy 201.615662 58.529236) (xy 201.620646 58.546212) (xy 201.662351 58.737931) (xy 201.664869 58.755442) + (xy 201.679184 58.95558) (xy 201.6795 58.964427) (xy 201.6795 137.755572) (xy 201.679184 137.764419) + (xy 201.664869 137.964557) (xy 201.662351 137.982068) (xy 201.620646 138.173787) (xy 201.615662 138.190763) + (xy 201.54709 138.374609) (xy 201.53974 138.390701) (xy 201.445711 138.562904) (xy 201.436146 138.577789) + (xy 201.318558 138.734867) (xy 201.306972 138.748237) (xy 201.168237 138.886972) (xy 201.154867 138.898558) + (xy 200.997789 139.016146) (xy 200.982904 139.025711) (xy 200.810701 139.11974) (xy 200.794609 139.12709) + (xy 200.610763 139.195662) (xy 200.593787 139.200646) (xy 200.402068 139.242351) (xy 200.384557 139.244869) + (xy 200.203779 139.257799) (xy 200.184417 139.259184) (xy 200.175572 139.2595) (xy 59.954428 139.2595) + (xy 59.945582 139.259184) (xy 59.923622 139.257613) (xy 59.745442 139.244869) (xy 59.727931 139.242351) + (xy 59.536212 139.200646) (xy 59.519236 139.195662) (xy 59.33539 139.12709) (xy 59.319298 139.11974) + (xy 59.147095 139.025711) (xy 59.13221 139.016146) (xy 58.975132 138.898558) (xy 58.961762 138.886972) + (xy 58.823027 138.748237) (xy 58.811441 138.734867) (xy 58.693849 138.577784) (xy 58.684288 138.562904) + (xy 58.590259 138.390701) (xy 58.582909 138.374609) (xy 58.575988 138.356054) (xy 58.514334 138.190755) + (xy 58.509355 138.173797) (xy 58.467647 137.982063) (xy 58.46513 137.964556) (xy 58.454987 137.822743) + (xy 58.450816 137.764418) (xy 58.4505 137.755572) (xy 58.4505 136.478711) (xy 59.1495 136.478711) + (xy 59.1495 136.721288) (xy 59.181161 136.961785) (xy 59.243947 137.196104) (xy 59.336773 137.420205) + (xy 59.336776 137.420212) (xy 59.458064 137.630289) (xy 59.458066 137.630292) (xy 59.458067 137.630293) + (xy 59.605733 137.822736) (xy 59.605739 137.822743) (xy 59.777256 137.99426) (xy 59.777263 137.994266) + (xy 59.833978 138.037785) (xy 59.969711 138.141936) (xy 60.179788 138.263224) (xy 60.4039 138.356054) + (xy 60.638211 138.418838) (xy 60.818586 138.442584) (xy 60.878711 138.4505) (xy 60.878712 138.4505) + (xy 61.121289 138.4505) (xy 61.169388 138.444167) (xy 61.361789 138.418838) (xy 61.5961 138.356054) + (xy 61.820212 138.263224) (xy 62.030289 138.141936) (xy 62.222738 137.994265) (xy 62.394265 137.822738) + (xy 62.541936 137.630289) (xy 62.663224 137.420212) (xy 62.756054 137.1961) (xy 62.818838 136.961789) + (xy 62.8505 136.721288) (xy 62.8505 136.478712) (xy 62.818838 136.238211) (xy 62.756054 136.0039) + (xy 62.663224 135.779788) (xy 62.541936 135.569711) (xy 62.443863 135.441899) (xy 62.394266 135.377263) + (xy 62.39426 135.377256) (xy 62.222743 135.205739) (xy 62.222736 135.205733) (xy 62.030293 135.058067) + (xy 62.030292 135.058066) (xy 62.030289 135.058064) (xy 61.820212 134.936776) (xy 61.820205 134.936773) + (xy 61.596104 134.843947) (xy 61.361785 134.781161) (xy 61.121289 134.7495) (xy 61.121288 134.7495) + (xy 60.878712 134.7495) (xy 60.878711 134.7495) (xy 60.638214 134.781161) (xy 60.403895 134.843947) + (xy 60.179794 134.936773) (xy 60.179785 134.936777) (xy 59.969706 135.058067) (xy 59.777263 135.205733) + (xy 59.777256 135.205739) (xy 59.605739 135.377256) (xy 59.605733 135.377263) (xy 59.458067 135.569706) + (xy 59.336777 135.779785) (xy 59.336773 135.779794) (xy 59.243947 136.003895) (xy 59.181161 136.238214) + (xy 59.1495 136.478711) (xy 58.4505 136.478711) (xy 58.4505 134.219984) (xy 66.1595 134.219984) + (xy 66.1595 136.620015) (xy 66.17 136.722795) (xy 66.170001 136.722797) (xy 66.19001 136.783181) + (xy 66.225186 136.889335) (xy 66.225187 136.889337) (xy 66.317286 137.038651) (xy 66.317289 137.038655) + (xy 66.441344 137.16271) (xy 66.441348 137.162713) (xy 66.590662 137.254812) (xy 66.590664 137.254813) + (xy 66.590666 137.254814) (xy 66.757203 137.309999) (xy 66.859992 137.3205) (xy 66.859997 137.3205) + (xy 69.260003 137.3205) (xy 69.260008 137.3205) (xy 69.362797 137.309999) (xy 69.529334 137.254814) + (xy 69.678655 137.162711) (xy 69.802711 137.038655) (xy 69.894814 136.889334) (xy 69.949999 136.722797) + (xy 69.9605 136.620008) (xy 69.9605 135.295441) (xy 71.1595 135.295441) (xy 71.1595 135.544558) + (xy 71.159501 135.544575) (xy 71.190467 135.779788) (xy 71.192018 135.791565) (xy 71.214082 135.873907) + (xy 71.256498 136.032207) (xy 71.35183 136.262361) (xy 71.351837 136.262376) (xy 71.4764 136.478126) + (xy 71.62806 136.675774) (xy 71.628066 136.675781) (xy 71.804218 136.851933) (xy 71.804225 136.851939) + (xy 72.001873 137.003599) (xy 72.217623 137.128162) (xy 72.217638 137.128169) (xy 72.316825 137.169253) + (xy 72.447793 137.223502) (xy 72.688435 137.287982) (xy 72.935435 137.3205) (xy 72.935442 137.3205) + (xy 73.184558 137.3205) (xy 73.184565 137.3205) (xy 73.431565 137.287982) (xy 73.672207 137.223502) + (xy 73.902373 137.128164) (xy 74.118127 137.003599) (xy 74.315776 136.851938) (xy 74.491938 136.675776) + (xy 74.643599 136.478127) (xy 74.768164 136.262373) (xy 74.863502 136.032207) (xy 74.927982 135.791565) + (xy 74.9605 135.544565) (xy 74.9605 135.295441) (xy 76.1595 135.295441) (xy 76.1595 135.544558) + (xy 76.159501 135.544575) (xy 76.190467 135.779788) (xy 76.192018 135.791565) (xy 76.214082 135.873907) + (xy 76.256498 136.032207) (xy 76.35183 136.262361) (xy 76.351837 136.262376) (xy 76.4764 136.478126) + (xy 76.62806 136.675774) (xy 76.628066 136.675781) (xy 76.804218 136.851933) (xy 76.804225 136.851939) + (xy 77.001873 137.003599) (xy 77.217623 137.128162) (xy 77.217638 137.128169) (xy 77.316825 137.169253) + (xy 77.447793 137.223502) (xy 77.688435 137.287982) (xy 77.935435 137.3205) (xy 77.935442 137.3205) + (xy 78.184558 137.3205) (xy 78.184565 137.3205) (xy 78.431565 137.287982) (xy 78.672207 137.223502) + (xy 78.902373 137.128164) (xy 79.118127 137.003599) (xy 79.315776 136.851938) (xy 79.491938 136.675776) + (xy 79.643599 136.478127) (xy 79.768164 136.262373) (xy 79.863502 136.032207) (xy 79.927982 135.791565) + (xy 79.9605 135.544565) (xy 79.9605 135.295435) (xy 79.927982 135.048435) (xy 79.863502 134.807793) + (xy 79.794786 134.641898) (xy 79.768169 134.577638) (xy 79.768162 134.577623) (xy 79.6436 134.361874) + (xy 79.628596 134.34232) (xy 79.628595 134.342319) (xy 79.573091 134.269984) (xy 84.492833 134.269984) + (xy 84.492833 136.670015) (xy 84.503333 136.772795) (xy 84.503334 136.772797) (xy 84.512287 136.799815) + (xy 84.558519 136.939335) (xy 84.55852 136.939337) (xy 84.650619 137.088651) (xy 84.650622 137.088655) + (xy 84.774677 137.21271) (xy 84.774681 137.212713) (xy 84.923995 137.304812) (xy 84.923997 137.304813) + (xy 84.923999 137.304814) (xy 85.090536 137.359999) (xy 85.193325 137.3705) (xy 85.19333 137.3705) + (xy 87.593336 137.3705) (xy 87.593341 137.3705) (xy 87.69613 137.359999) (xy 87.862667 137.304814) + (xy 88.011988 137.212711) (xy 88.136044 137.088655) (xy 88.228147 136.939334) (xy 88.283332 136.772797) + (xy 88.293833 136.670008) (xy 88.293833 135.345441) (xy 89.492833 135.345441) (xy 89.492833 135.594558) + (xy 89.492834 135.594575) (xy 89.522761 135.821899) (xy 89.525351 135.841565) (xy 89.568847 136.003895) + (xy 89.589831 136.082207) (xy 89.685163 136.312361) (xy 89.68517 136.312376) (xy 89.809733 136.528126) + (xy 89.961393 136.725774) (xy 89.961399 136.725781) (xy 90.137551 136.901933) (xy 90.137558 136.901939) + (xy 90.335206 137.053599) (xy 90.550956 137.178162) (xy 90.550971 137.178169) (xy 90.650158 137.219253) + (xy 90.781126 137.273502) (xy 91.021768 137.337982) (xy 91.268768 137.3705) (xy 91.268775 137.3705) + (xy 91.517891 137.3705) (xy 91.517898 137.3705) (xy 91.764898 137.337982) (xy 92.00554 137.273502) + (xy 92.235706 137.178164) (xy 92.45146 137.053599) (xy 92.649109 136.901938) (xy 92.825271 136.725776) + (xy 92.976932 136.528127) (xy 93.101497 136.312373) (xy 93.196835 136.082207) (xy 93.261315 135.841565) + (xy 93.293833 135.594565) (xy 93.293833 135.345441) (xy 94.492833 135.345441) (xy 94.492833 135.594558) + (xy 94.492834 135.594575) (xy 94.522761 135.821899) (xy 94.525351 135.841565) (xy 94.568847 136.003895) + (xy 94.589831 136.082207) (xy 94.685163 136.312361) (xy 94.68517 136.312376) (xy 94.809733 136.528126) + (xy 94.961393 136.725774) (xy 94.961399 136.725781) (xy 95.137551 136.901933) (xy 95.137558 136.901939) + (xy 95.335206 137.053599) (xy 95.550956 137.178162) (xy 95.550971 137.178169) (xy 95.650158 137.219253) + (xy 95.781126 137.273502) (xy 96.021768 137.337982) (xy 96.268768 137.3705) (xy 96.268775 137.3705) + (xy 96.517891 137.3705) (xy 96.517898 137.3705) (xy 96.764898 137.337982) (xy 97.00554 137.273502) + (xy 97.235706 137.178164) (xy 97.45146 137.053599) (xy 97.649109 136.901938) (xy 97.825271 136.725776) + (xy 97.976932 136.528127) (xy 98.101497 136.312373) (xy 98.196835 136.082207) (xy 98.261315 135.841565) + (xy 98.293833 135.594565) (xy 98.293833 135.345435) (xy 98.261315 135.098435) (xy 98.196835 134.857793) + (xy 98.142586 134.726825) (xy 98.101502 134.627638) (xy 98.101495 134.627623) (xy 97.976932 134.411873) + (xy 97.885197 134.292321) (xy 97.829691 134.219984) (xy 102.826167 134.219984) (xy 102.826167 136.620015) + (xy 102.836667 136.722795) (xy 102.836668 136.722797) (xy 102.856677 136.783181) (xy 102.891853 136.889335) + (xy 102.891854 136.889337) (xy 102.983953 137.038651) (xy 102.983956 137.038655) (xy 103.108011 137.16271) + (xy 103.108015 137.162713) (xy 103.257329 137.254812) (xy 103.257331 137.254813) (xy 103.257333 137.254814) + (xy 103.42387 137.309999) (xy 103.526659 137.3205) (xy 103.526664 137.3205) (xy 105.92667 137.3205) + (xy 105.926675 137.3205) (xy 106.029464 137.309999) (xy 106.196001 137.254814) (xy 106.345322 137.162711) + (xy 106.469378 137.038655) (xy 106.561481 136.889334) (xy 106.616666 136.722797) (xy 106.627167 136.620008) + (xy 106.627167 135.295441) (xy 107.826167 135.295441) (xy 107.826167 135.544558) (xy 107.826168 135.544575) + (xy 107.857134 135.779788) (xy 107.858685 135.791565) (xy 107.880749 135.873907) (xy 107.923165 136.032207) + (xy 108.018497 136.262361) (xy 108.018504 136.262376) (xy 108.143067 136.478126) (xy 108.294727 136.675774) + (xy 108.294733 136.675781) (xy 108.470885 136.851933) (xy 108.470892 136.851939) (xy 108.66854 137.003599) + (xy 108.88429 137.128162) (xy 108.884305 137.128169) (xy 108.983492 137.169253) (xy 109.11446 137.223502) + (xy 109.355102 137.287982) (xy 109.602102 137.3205) (xy 109.602109 137.3205) (xy 109.851225 137.3205) + (xy 109.851232 137.3205) (xy 110.098232 137.287982) (xy 110.338874 137.223502) (xy 110.56904 137.128164) + (xy 110.784794 137.003599) (xy 110.982443 136.851938) (xy 111.158605 136.675776) (xy 111.310266 136.478127) + (xy 111.434831 136.262373) (xy 111.530169 136.032207) (xy 111.594649 135.791565) (xy 111.627167 135.544565) + (xy 111.627167 135.295441) (xy 112.826167 135.295441) (xy 112.826167 135.544558) (xy 112.826168 135.544575) + (xy 112.857134 135.779788) (xy 112.858685 135.791565) (xy 112.880749 135.873907) (xy 112.923165 136.032207) + (xy 113.018497 136.262361) (xy 113.018504 136.262376) (xy 113.143067 136.478126) (xy 113.294727 136.675774) + (xy 113.294733 136.675781) (xy 113.470885 136.851933) (xy 113.470892 136.851939) (xy 113.66854 137.003599) + (xy 113.88429 137.128162) (xy 113.884305 137.128169) (xy 113.983492 137.169253) (xy 114.11446 137.223502) + (xy 114.355102 137.287982) (xy 114.602102 137.3205) (xy 114.602109 137.3205) (xy 114.851225 137.3205) + (xy 114.851232 137.3205) (xy 115.098232 137.287982) (xy 115.338874 137.223502) (xy 115.56904 137.128164) + (xy 115.784794 137.003599) (xy 115.982443 136.851938) (xy 116.158605 136.675776) (xy 116.310266 136.478127) + (xy 116.434831 136.262373) (xy 116.530169 136.032207) (xy 116.594649 135.791565) (xy 116.627167 135.544565) + (xy 116.627167 135.295435) (xy 116.594649 135.048435) (xy 116.530169 134.807793) (xy 116.461453 134.641898) + (xy 116.434836 134.577638) (xy 116.434829 134.577623) (xy 116.377794 134.478835) (xy 116.343816 134.419984) + (xy 121.1595 134.419984) (xy 121.1595 136.820015) (xy 121.17 136.922795) (xy 121.170001 136.922797) + (xy 121.182922 136.961789) (xy 121.225186 137.089335) (xy 121.225187 137.089337) (xy 121.317286 137.238651) + (xy 121.317289 137.238655) (xy 121.441344 137.36271) (xy 121.441348 137.362713) (xy 121.590662 137.454812) + (xy 121.590664 137.454813) (xy 121.590666 137.454814) (xy 121.757203 137.509999) (xy 121.859992 137.5205) + (xy 121.859997 137.5205) (xy 124.260003 137.5205) (xy 124.260008 137.5205) (xy 124.362797 137.509999) + (xy 124.529334 137.454814) (xy 124.678655 137.362711) (xy 124.802711 137.238655) (xy 124.894814 137.089334) + (xy 124.949999 136.922797) (xy 124.9605 136.820008) (xy 124.9605 135.495441) (xy 126.1595 135.495441) + (xy 126.1595 135.744558) (xy 126.159501 135.744575) (xy 126.192017 135.991561) (xy 126.256498 136.232207) + (xy 126.35183 136.462361) (xy 126.351837 136.462376) (xy 126.4764 136.678126) (xy 126.62806 136.875774) + (xy 126.628066 136.875781) (xy 126.804218 137.051933) (xy 126.804225 137.051939) (xy 127.001873 137.203599) + (xy 127.217623 137.328162) (xy 127.217638 137.328169) (xy 127.316825 137.369253) (xy 127.447793 137.423502) + (xy 127.688435 137.487982) (xy 127.935435 137.5205) (xy 127.935442 137.5205) (xy 128.184558 137.5205) + (xy 128.184565 137.5205) (xy 128.431565 137.487982) (xy 128.672207 137.423502) (xy 128.902373 137.328164) + (xy 129.118127 137.203599) (xy 129.315776 137.051938) (xy 129.491938 136.875776) (xy 129.643599 136.678127) + (xy 129.768164 136.462373) (xy 129.863502 136.232207) (xy 129.927982 135.991565) (xy 129.9605 135.744565) + (xy 129.9605 135.495441) (xy 131.1595 135.495441) (xy 131.1595 135.744558) (xy 131.159501 135.744575) + (xy 131.192017 135.991561) (xy 131.256498 136.232207) (xy 131.35183 136.462361) (xy 131.351837 136.462376) + (xy 131.4764 136.678126) (xy 131.62806 136.875774) (xy 131.628066 136.875781) (xy 131.804218 137.051933) + (xy 131.804225 137.051939) (xy 132.001873 137.203599) (xy 132.217623 137.328162) (xy 132.217638 137.328169) + (xy 132.316825 137.369253) (xy 132.447793 137.423502) (xy 132.688435 137.487982) (xy 132.935435 137.5205) + (xy 132.935442 137.5205) (xy 133.184558 137.5205) (xy 133.184565 137.5205) (xy 133.431565 137.487982) + (xy 133.672207 137.423502) (xy 133.902373 137.328164) (xy 134.118127 137.203599) (xy 134.315776 137.051938) + (xy 134.491938 136.875776) (xy 134.643599 136.678127) (xy 134.768164 136.462373) (xy 134.863502 136.232207) + (xy 134.927982 135.991565) (xy 134.9605 135.744565) (xy 134.9605 135.495435) (xy 134.927982 135.248435) + (xy 134.863502 135.007793) (xy 134.80137 134.857793) (xy 134.768169 134.777638) (xy 134.768162 134.777623) + (xy 134.643599 134.561873) (xy 134.491939 134.364225) (xy 134.491933 134.364218) (xy 134.315781 134.188066) + (xy 134.315774 134.18806) (xy 134.118126 134.0364) (xy 133.902376 133.911837) (xy 133.902361 133.91183) + (xy 133.672207 133.816498) (xy 133.431561 133.752017) (xy 133.184575 133.719501) (xy 133.18457 133.7195) + (xy 133.184565 133.7195) (xy 132.935435 133.7195) (xy 132.935429 133.7195) (xy 132.935424 133.719501) + (xy 132.688438 133.752017) (xy 132.447792 133.816498) (xy 132.217638 133.91183) (xy 132.217623 133.911837) + (xy 132.001873 134.0364) (xy 131.804225 134.18806) (xy 131.804218 134.188066) (xy 131.628066 134.364218) + (xy 131.62806 134.364225) (xy 131.4764 134.561873) (xy 131.351837 134.777623) (xy 131.35183 134.777638) + (xy 131.256498 135.007792) (xy 131.192017 135.248438) (xy 131.159501 135.495424) (xy 131.1595 135.495441) + (xy 129.9605 135.495441) (xy 129.9605 135.495435) (xy 129.927982 135.248435) (xy 129.863502 135.007793) + (xy 129.80137 134.857793) (xy 129.768169 134.777638) (xy 129.768162 134.777623) (xy 129.643599 134.561873) + (xy 129.491939 134.364225) (xy 129.491933 134.364218) (xy 129.315781 134.188066) (xy 129.315774 134.18806) + (xy 129.118126 134.0364) (xy 128.902376 133.911837) (xy 128.902361 133.91183) (xy 128.672207 133.816498) + (xy 128.431561 133.752017) (xy 128.184575 133.719501) (xy 128.18457 133.7195) (xy 128.184565 133.7195) + (xy 127.935435 133.7195) (xy 127.935429 133.7195) (xy 127.935424 133.719501) (xy 127.688438 133.752017) + (xy 127.447792 133.816498) (xy 127.217638 133.91183) (xy 127.217623 133.911837) (xy 127.001873 134.0364) + (xy 126.804225 134.18806) (xy 126.804218 134.188066) (xy 126.628066 134.364218) (xy 126.62806 134.364225) + (xy 126.4764 134.561873) (xy 126.351837 134.777623) (xy 126.35183 134.777638) (xy 126.256498 135.007792) + (xy 126.192017 135.248438) (xy 126.159501 135.495424) (xy 126.1595 135.495441) (xy 124.9605 135.495441) + (xy 124.9605 134.419992) (xy 124.949999 134.317203) (xy 124.894814 134.150666) (xy 124.874174 134.117204) + (xy 124.802713 134.001348) (xy 124.80271 134.001344) (xy 124.678655 133.877289) (xy 124.678651 133.877286) + (xy 124.529337 133.785187) (xy 124.529335 133.785186) (xy 124.429237 133.752017) (xy 124.362797 133.730001) + (xy 124.362795 133.73) (xy 124.260015 133.7195) (xy 124.260008 133.7195) (xy 121.859992 133.7195) + (xy 121.859984 133.7195) (xy 121.757204 133.73) (xy 121.757203 133.730001) (xy 121.590664 133.785186) + (xy 121.590662 133.785187) (xy 121.441348 133.877286) (xy 121.441344 133.877289) (xy 121.317289 134.001344) + (xy 121.317286 134.001348) (xy 121.225187 134.150662) (xy 121.225186 134.150664) (xy 121.170001 134.317203) + (xy 121.17 134.317204) (xy 121.1595 134.419984) (xy 116.343816 134.419984) (xy 116.310266 134.361873) + (xy 116.158606 134.164225) (xy 116.1586 134.164218) (xy 115.982448 133.988066) (xy 115.982441 133.98806) + (xy 115.784793 133.8364) (xy 115.569043 133.711837) (xy 115.569028 133.71183) (xy 115.338874 133.616498) + (xy 115.163479 133.569501) (xy 115.098232 133.552018) (xy 115.098231 133.552017) (xy 115.098228 133.552017) + (xy 114.851242 133.519501) (xy 114.851237 133.5195) (xy 114.851232 133.5195) (xy 114.602102 133.5195) + (xy 114.602096 133.5195) (xy 114.602091 133.519501) (xy 114.355105 133.552017) (xy 114.114459 133.616498) + (xy 113.884305 133.71183) (xy 113.88429 133.711837) (xy 113.66854 133.8364) (xy 113.470892 133.98806) + (xy 113.470885 133.988066) (xy 113.294733 134.164218) (xy 113.294727 134.164225) (xy 113.143067 134.361873) + (xy 113.018504 134.577623) (xy 113.018497 134.577638) (xy 112.923165 134.807792) (xy 112.858684 135.048438) + (xy 112.826168 135.295424) (xy 112.826167 135.295441) (xy 111.627167 135.295441) (xy 111.627167 135.295435) + (xy 111.594649 135.048435) (xy 111.530169 134.807793) (xy 111.461453 134.641898) (xy 111.434836 134.577638) + (xy 111.434829 134.577623) (xy 111.310266 134.361873) (xy 111.158606 134.164225) (xy 111.1586 134.164218) + (xy 110.982448 133.988066) (xy 110.982441 133.98806) (xy 110.784793 133.8364) (xy 110.569043 133.711837) + (xy 110.569028 133.71183) (xy 110.338874 133.616498) (xy 110.163479 133.569501) (xy 110.098232 133.552018) + (xy 110.098231 133.552017) (xy 110.098228 133.552017) (xy 109.851242 133.519501) (xy 109.851237 133.5195) + (xy 109.851232 133.5195) (xy 109.602102 133.5195) (xy 109.602096 133.5195) (xy 109.602091 133.519501) + (xy 109.355105 133.552017) (xy 109.114459 133.616498) (xy 108.884305 133.71183) (xy 108.88429 133.711837) + (xy 108.66854 133.8364) (xy 108.470892 133.98806) (xy 108.470885 133.988066) (xy 108.294733 134.164218) + (xy 108.294727 134.164225) (xy 108.143067 134.361873) (xy 108.018504 134.577623) (xy 108.018497 134.577638) + (xy 107.923165 134.807792) (xy 107.858684 135.048438) (xy 107.826168 135.295424) (xy 107.826167 135.295441) + (xy 106.627167 135.295441) (xy 106.627167 134.219992) (xy 106.616666 134.117203) (xy 106.561481 133.950666) + (xy 106.561075 133.950008) (xy 106.46938 133.801348) (xy 106.469377 133.801344) (xy 106.345322 133.677289) + (xy 106.345318 133.677286) (xy 106.196004 133.585187) (xy 106.196002 133.585186) (xy 106.095904 133.552017) + (xy 106.029464 133.530001) (xy 106.029462 133.53) (xy 105.926682 133.5195) (xy 105.926675 133.5195) + (xy 103.526659 133.5195) (xy 103.526651 133.5195) (xy 103.423871 133.53) (xy 103.42387 133.530001) + (xy 103.257331 133.585186) (xy 103.257329 133.585187) (xy 103.108015 133.677286) (xy 103.108011 133.677289) + (xy 102.983956 133.801344) (xy 102.983953 133.801348) (xy 102.891854 133.950662) (xy 102.891853 133.950664) + (xy 102.836668 134.117203) (xy 102.836667 134.117204) (xy 102.826167 134.219984) (xy 97.829691 134.219984) + (xy 97.825272 134.214225) (xy 97.825266 134.214218) (xy 97.649114 134.038066) (xy 97.649107 134.03806) + (xy 97.451459 133.8864) (xy 97.235709 133.761837) (xy 97.235694 133.76183) (xy 97.00554 133.666498) + (xy 96.764894 133.602017) (xy 96.517908 133.569501) (xy 96.517903 133.5695) (xy 96.517898 133.5695) + (xy 96.268768 133.5695) (xy 96.268762 133.5695) (xy 96.268757 133.569501) (xy 96.021771 133.602017) + (xy 95.781125 133.666498) (xy 95.550971 133.76183) (xy 95.550956 133.761837) (xy 95.335206 133.8864) + (xy 95.137558 134.03806) (xy 95.137551 134.038066) (xy 94.961399 134.214218) (xy 94.961393 134.214225) + (xy 94.809733 134.411873) (xy 94.68517 134.627623) (xy 94.685163 134.627638) (xy 94.589831 134.857792) + (xy 94.52535 135.098438) (xy 94.492834 135.345424) (xy 94.492833 135.345441) (xy 93.293833 135.345441) + (xy 93.293833 135.345435) (xy 93.261315 135.098435) (xy 93.196835 134.857793) (xy 93.142586 134.726825) + (xy 93.101502 134.627638) (xy 93.101495 134.627623) (xy 92.976932 134.411873) (xy 92.825272 134.214225) + (xy 92.825266 134.214218) (xy 92.649114 134.038066) (xy 92.649107 134.03806) (xy 92.451459 133.8864) + (xy 92.235709 133.761837) (xy 92.235694 133.76183) (xy 92.00554 133.666498) (xy 91.764894 133.602017) + (xy 91.517908 133.569501) (xy 91.517903 133.5695) (xy 91.517898 133.5695) (xy 91.268768 133.5695) + (xy 91.268762 133.5695) (xy 91.268757 133.569501) (xy 91.021771 133.602017) (xy 90.781125 133.666498) + (xy 90.550971 133.76183) (xy 90.550956 133.761837) (xy 90.335206 133.8864) (xy 90.137558 134.03806) + (xy 90.137551 134.038066) (xy 89.961399 134.214218) (xy 89.961393 134.214225) (xy 89.809733 134.411873) + (xy 89.68517 134.627623) (xy 89.685163 134.627638) (xy 89.589831 134.857792) (xy 89.52535 135.098438) + (xy 89.492834 135.345424) (xy 89.492833 135.345441) (xy 88.293833 135.345441) (xy 88.293833 134.269992) + (xy 88.283332 134.167203) (xy 88.228147 134.000666) (xy 88.220375 133.988066) (xy 88.136046 133.851348) + (xy 88.136043 133.851344) (xy 88.011988 133.727289) (xy 88.011984 133.727286) (xy 87.86267 133.635187) + (xy 87.862668 133.635186) (xy 87.76257 133.602017) (xy 87.69613 133.580001) (xy 87.696128 133.58) + (xy 87.593348 133.5695) (xy 87.593341 133.5695) (xy 85.193325 133.5695) (xy 85.193317 133.5695) + (xy 85.090537 133.58) (xy 85.090536 133.580001) (xy 84.923997 133.635186) (xy 84.923995 133.635187) + (xy 84.774681 133.727286) (xy 84.774677 133.727289) (xy 84.650622 133.851344) (xy 84.650619 133.851348) + (xy 84.55852 134.000662) (xy 84.558519 134.000664) (xy 84.503334 134.167203) (xy 84.503333 134.167204) + (xy 84.492833 134.269984) (xy 79.573091 134.269984) (xy 79.491939 134.164225) (xy 79.491933 134.164218) + (xy 79.315781 133.988066) (xy 79.315774 133.98806) (xy 79.118126 133.8364) (xy 78.902376 133.711837) + (xy 78.902361 133.71183) (xy 78.672207 133.616498) (xy 78.496812 133.569501) (xy 78.431565 133.552018) + (xy 78.431564 133.552017) (xy 78.431561 133.552017) (xy 78.184575 133.519501) (xy 78.18457 133.5195) + (xy 78.184565 133.5195) (xy 77.935435 133.5195) (xy 77.935429 133.5195) (xy 77.935424 133.519501) + (xy 77.688438 133.552017) (xy 77.447792 133.616498) (xy 77.217638 133.71183) (xy 77.217623 133.711837) + (xy 77.001873 133.8364) (xy 76.804225 133.98806) (xy 76.804218 133.988066) (xy 76.628066 134.164218) + (xy 76.62806 134.164225) (xy 76.4764 134.361873) (xy 76.351837 134.577623) (xy 76.35183 134.577638) + (xy 76.256498 134.807792) (xy 76.192017 135.048438) (xy 76.159501 135.295424) (xy 76.1595 135.295441) + (xy 74.9605 135.295441) (xy 74.9605 135.295435) (xy 74.927982 135.048435) (xy 74.863502 134.807793) + (xy 74.794786 134.641898) (xy 74.768169 134.577638) (xy 74.768162 134.577623) (xy 74.643599 134.361873) + (xy 74.491939 134.164225) (xy 74.491933 134.164218) (xy 74.315781 133.988066) (xy 74.315774 133.98806) + (xy 74.118126 133.8364) (xy 73.902376 133.711837) (xy 73.902361 133.71183) (xy 73.672207 133.616498) + (xy 73.496812 133.569501) (xy 73.431565 133.552018) (xy 73.431564 133.552017) (xy 73.431561 133.552017) + (xy 73.184575 133.519501) (xy 73.18457 133.5195) (xy 73.184565 133.5195) (xy 72.935435 133.5195) + (xy 72.935429 133.5195) (xy 72.935424 133.519501) (xy 72.688438 133.552017) (xy 72.447792 133.616498) + (xy 72.217638 133.71183) (xy 72.217623 133.711837) (xy 72.001873 133.8364) (xy 71.804225 133.98806) + (xy 71.804218 133.988066) (xy 71.628066 134.164218) (xy 71.62806 134.164225) (xy 71.4764 134.361873) + (xy 71.351837 134.577623) (xy 71.35183 134.577638) (xy 71.256498 134.807792) (xy 71.192017 135.048438) + (xy 71.159501 135.295424) (xy 71.1595 135.295441) (xy 69.9605 135.295441) (xy 69.9605 134.219992) + (xy 69.949999 134.117203) (xy 69.894814 133.950666) (xy 69.894408 133.950008) (xy 69.802713 133.801348) + (xy 69.80271 133.801344) (xy 69.678655 133.677289) (xy 69.678651 133.677286) (xy 69.529337 133.585187) + (xy 69.529335 133.585186) (xy 69.429237 133.552017) (xy 69.362797 133.530001) (xy 69.362795 133.53) + (xy 69.260015 133.5195) (xy 69.260008 133.5195) (xy 66.859992 133.5195) (xy 66.859984 133.5195) + (xy 66.757204 133.53) (xy 66.757203 133.530001) (xy 66.590664 133.585186) (xy 66.590662 133.585187) + (xy 66.441348 133.677286) (xy 66.441344 133.677289) (xy 66.317289 133.801344) (xy 66.317286 133.801348) + (xy 66.225187 133.950662) (xy 66.225186 133.950664) (xy 66.170001 134.117203) (xy 66.17 134.117204) + (xy 66.1595 134.219984) (xy 58.4505 134.219984) (xy 58.4505 124.538872) (xy 64.6095 124.538872) + (xy 64.6095 124.801127) (xy 64.632943 124.979185) (xy 64.64373 125.061116) (xy 64.710717 125.311116) + (xy 64.711602 125.314418) (xy 64.711605 125.314428) (xy 64.811953 125.55669) (xy 64.811958 125.5567) + (xy 64.943075 125.783803) (xy 65.102718 125.991851) (xy 65.102726 125.99186) (xy 65.28814 126.177274) + (xy 65.288148 126.177281) (xy 65.288149 126.177282) (xy 65.29845 126.185186) (xy 65.496196 126.336924) + (xy 65.723299 126.468041) (xy 65.723309 126.468046) (xy 65.922772 126.550666) (xy 65.965581 126.568398) + (xy 66.218884 126.63627) (xy 66.47888 126.6705) (xy 66.478887 126.6705) (xy 66.741113 126.6705) + (xy 66.74112 126.6705) (xy 67.001116 126.63627) (xy 67.254419 126.568398) (xy 67.496697 126.468043) + (xy 67.723803 126.336924) (xy 67.931851 126.177282) (xy 67.931855 126.177277) (xy 67.93186 126.177274) + (xy 68.117274 125.99186) (xy 68.117277 125.991855) (xy 68.117282 125.991851) (xy 68.276924 125.783803) + (xy 68.408043 125.556697) (xy 68.508398 125.314419) (xy 68.57627 125.061116) (xy 68.6105 124.80112) + (xy 68.6105 124.588872) (xy 76.6595 124.588872) (xy 76.6595 124.851127) (xy 76.679247 125.001113) + (xy 76.69373 125.111116) (xy 76.761184 125.362859) (xy 76.761602 125.364418) (xy 76.761605 125.364428) + (xy 76.861953 125.60669) (xy 76.861958 125.6067) (xy 76.993075 125.833803) (xy 77.152718 126.041851) + (xy 77.152726 126.04186) (xy 77.33814 126.227274) (xy 77.338148 126.227281) (xy 77.546196 126.386924) + (xy 77.773299 126.518041) (xy 77.773309 126.518046) (xy 77.925958 126.581275) (xy 78.015581 126.618398) + (xy 78.268884 126.68627) (xy 78.52888 126.7205) (xy 78.528887 126.7205) (xy 78.791113 126.7205) + (xy 78.79112 126.7205) (xy 79.051116 126.68627) (xy 79.304419 126.618398) (xy 79.507732 126.534183) + (xy 79.54669 126.518046) (xy 79.546691 126.518045) (xy 79.546697 126.518043) (xy 79.773803 126.386924) + (xy 79.981851 126.227282) (xy 79.981855 126.227277) (xy 79.98186 126.227274) (xy 80.167274 126.04186) + (xy 80.167277 126.041855) (xy 80.167282 126.041851) (xy 80.326924 125.833803) (xy 80.458043 125.606697) + (xy 80.558398 125.364419) (xy 80.62627 125.111116) (xy 80.6605 124.85112) (xy 80.6605 124.58888) + (xy 80.660499 124.588872) (xy 82.942833 124.588872) (xy 82.942833 124.851127) (xy 82.96258 125.001113) + (xy 82.977063 125.111116) (xy 83.044517 125.362859) (xy 83.044935 125.364418) (xy 83.044938 125.364428) + (xy 83.145286 125.60669) (xy 83.145291 125.6067) (xy 83.276408 125.833803) (xy 83.436051 126.041851) + (xy 83.436059 126.04186) (xy 83.621473 126.227274) (xy 83.621481 126.227281) (xy 83.829529 126.386924) + (xy 84.056632 126.518041) (xy 84.056642 126.518046) (xy 84.209291 126.581275) (xy 84.298914 126.618398) + (xy 84.552217 126.68627) (xy 84.812213 126.7205) (xy 84.81222 126.7205) (xy 85.074446 126.7205) + (xy 85.074453 126.7205) (xy 85.334449 126.68627) (xy 85.587752 126.618398) (xy 85.791065 126.534183) + (xy 85.830023 126.518046) (xy 85.830024 126.518045) (xy 85.83003 126.518043) (xy 86.057136 126.386924) + (xy 86.265184 126.227282) (xy 86.265188 126.227277) (xy 86.265193 126.227274) (xy 86.450607 126.04186) + (xy 86.45061 126.041855) (xy 86.450615 126.041851) (xy 86.610257 125.833803) (xy 86.741376 125.606697) + (xy 86.841731 125.364419) (xy 86.909603 125.111116) (xy 86.943833 124.85112) (xy 86.943833 124.638872) + (xy 94.992833 124.638872) (xy 94.992833 124.901127) (xy 95.019456 125.103339) (xy 95.027063 125.161116) + (xy 95.09129 125.400816) (xy 95.094935 125.414418) (xy 95.094938 125.414428) (xy 95.195286 125.65669) + (xy 95.195291 125.6567) (xy 95.326408 125.883803) (xy 95.486051 126.091851) (xy 95.486059 126.09186) + (xy 95.671473 126.277274) (xy 95.671481 126.277281) (xy 95.879529 126.436924) (xy 96.106632 126.568041) + (xy 96.106642 126.568046) (xy 96.348052 126.668041) (xy 96.348914 126.668398) (xy 96.602217 126.73627) + (xy 96.862213 126.7705) (xy 96.86222 126.7705) (xy 97.124446 126.7705) (xy 97.124453 126.7705) (xy 97.384449 126.73627) + (xy 97.637752 126.668398) (xy 97.879173 126.568398) (xy 97.880023 126.568046) (xy 97.880024 126.568045) + (xy 97.88003 126.568043) (xy 98.107136 126.436924) (xy 98.315184 126.277282) (xy 98.315188 126.277277) + (xy 98.315193 126.277274) (xy 98.500607 126.09186) (xy 98.50061 126.091855) (xy 98.500615 126.091851) + (xy 98.660257 125.883803) (xy 98.791376 125.656697) (xy 98.891731 125.414419) (xy 98.959603 125.161116) + (xy 98.993833 124.90112) (xy 98.993833 124.63888) (xy 98.980666 124.538872) (xy 101.276167 124.538872) + (xy 101.276167 124.801127) (xy 101.29961 124.979185) (xy 101.310397 125.061116) (xy 101.377384 125.311116) + (xy 101.378269 125.314418) (xy 101.378272 125.314428) (xy 101.47862 125.55669) (xy 101.478625 125.5567) + (xy 101.609742 125.783803) (xy 101.769385 125.991851) (xy 101.769393 125.99186) (xy 101.954807 126.177274) + (xy 101.954815 126.177281) (xy 101.954816 126.177282) (xy 101.965117 126.185186) (xy 102.162863 126.336924) + (xy 102.389966 126.468041) (xy 102.389976 126.468046) (xy 102.589439 126.550666) (xy 102.632248 126.568398) + (xy 102.885551 126.63627) (xy 103.145547 126.6705) (xy 103.145554 126.6705) (xy 103.40778 126.6705) + (xy 103.407787 126.6705) (xy 103.667783 126.63627) (xy 103.921086 126.568398) (xy 104.163364 126.468043) + (xy 104.39047 126.336924) (xy 104.598518 126.177282) (xy 104.598522 126.177277) (xy 104.598527 126.177274) + (xy 104.783941 125.99186) (xy 104.783944 125.991855) (xy 104.783949 125.991851) (xy 104.943591 125.783803) + (xy 105.07471 125.556697) (xy 105.175065 125.314419) (xy 105.242937 125.061116) (xy 105.277167 124.80112) + (xy 105.277167 124.588872) (xy 113.326167 124.588872) (xy 113.326167 124.851127) (xy 113.345914 125.001113) + (xy 113.360397 125.111116) (xy 113.427851 125.362859) (xy 113.428269 125.364418) (xy 113.428272 125.364428) + (xy 113.52862 125.60669) (xy 113.528625 125.6067) (xy 113.659742 125.833803) (xy 113.819385 126.041851) + (xy 113.819393 126.04186) (xy 114.004807 126.227274) (xy 114.004815 126.227281) (xy 114.212863 126.386924) + (xy 114.439966 126.518041) (xy 114.439976 126.518046) (xy 114.592625 126.581275) (xy 114.682248 126.618398) + (xy 114.935551 126.68627) (xy 115.195547 126.7205) (xy 115.195554 126.7205) (xy 115.45778 126.7205) + (xy 115.457787 126.7205) (xy 115.717783 126.68627) (xy 115.971086 126.618398) (xy 116.174399 126.534183) + (xy 116.213357 126.518046) (xy 116.213358 126.518045) (xy 116.213364 126.518043) (xy 116.44047 126.386924) + (xy 116.648518 126.227282) (xy 116.648522 126.227277) (xy 116.648527 126.227274) (xy 116.833941 126.04186) + (xy 116.833944 126.041855) (xy 116.833949 126.041851) (xy 116.993591 125.833803) (xy 117.12471 125.606697) + (xy 117.225065 125.364419) (xy 117.292937 125.111116) (xy 117.327167 124.85112) (xy 117.327167 124.738872) + (xy 119.6095 124.738872) (xy 119.6095 125.001127) (xy 119.636123 125.203339) (xy 119.64373 125.261116) + (xy 119.68481 125.414428) (xy 119.711602 125.514418) (xy 119.711605 125.514428) (xy 119.811953 125.75669) + (xy 119.811958 125.7567) (xy 119.943075 125.983803) (xy 120.102718 126.191851) (xy 120.102726 126.19186) + (xy 120.28814 126.377274) (xy 120.288148 126.377281) (xy 120.288149 126.377282) (xy 120.296744 126.383877) + (xy 120.496196 126.536924) (xy 120.723299 126.668041) (xy 120.723309 126.668046) (xy 120.888017 126.73627) + (xy 120.965581 126.768398) (xy 121.218884 126.83627) (xy 121.47888 126.8705) (xy 121.478887 126.8705) + (xy 121.741113 126.8705) (xy 121.74112 126.8705) (xy 122.001116 126.83627) (xy 122.254419 126.768398) + (xy 122.452696 126.686269) (xy 122.49669 126.668046) (xy 122.496691 126.668045) (xy 122.496697 126.668043) + (xy 122.723803 126.536924) (xy 122.931851 126.377282) (xy 122.931855 126.377277) (xy 122.93186 126.377274) + (xy 123.117274 126.19186) (xy 123.117277 126.191855) (xy 123.117282 126.191851) (xy 123.276924 125.983803) + (xy 123.408043 125.756697) (xy 123.508398 125.514419) (xy 123.57627 125.261116) (xy 123.6105 125.00112) + (xy 123.6105 124.788872) (xy 131.6595 124.788872) (xy 131.6595 125.051127) (xy 131.686123 125.253339) + (xy 131.69373 125.311116) (xy 131.759531 125.55669) (xy 131.761602 125.564418) (xy 131.761605 125.564428) + (xy 131.861953 125.80669) (xy 131.861958 125.8067) (xy 131.993075 126.033803) (xy 132.152718 126.241851) + (xy 132.152726 126.24186) (xy 132.33814 126.427274) (xy 132.338148 126.427281) (xy 132.546196 126.586924) + (xy 132.773299 126.718041) (xy 132.773309 126.718046) (xy 132.969957 126.7995) (xy 133.015581 126.818398) + (xy 133.268884 126.88627) (xy 133.52888 126.9205) (xy 133.528887 126.9205) (xy 133.791113 126.9205) + (xy 133.79112 126.9205) (xy 134.051116 126.88627) (xy 134.304419 126.818398) (xy 134.502696 126.736269) + (xy 134.54669 126.718046) (xy 134.546691 126.718045) (xy 134.546697 126.718043) (xy 134.773803 126.586924) + (xy 134.981851 126.427282) (xy 134.981855 126.427277) (xy 134.98186 126.427274) (xy 135.167274 126.24186) + (xy 135.167277 126.241855) (xy 135.167282 126.241851) (xy 135.326924 126.033803) (xy 135.458043 125.806697) + (xy 135.558398 125.564419) (xy 135.62627 125.311116) (xy 135.6605 125.05112) (xy 135.6605 124.78888) + (xy 135.62627 124.528884) (xy 135.558398 124.275581) (xy 135.540963 124.233489) (xy 135.458046 124.033309) + (xy 135.458041 124.033299) (xy 135.326924 123.806196) (xy 135.185506 123.621899) (xy 135.167282 123.598149) + (xy 135.167281 123.598148) (xy 135.167274 123.59814) (xy 134.98186 123.412726) (xy 134.981851 123.412718) + (xy 134.773803 123.253075) (xy 134.5467 123.121958) (xy 134.54669 123.121953) (xy 134.304428 123.021605) + (xy 134.304421 123.021603) (xy 134.304419 123.021602) (xy 134.051116 122.95373) (xy 133.993339 122.946123) + (xy 133.791127 122.9195) (xy 133.79112 122.9195) (xy 133.52888 122.9195) (xy 133.528872 122.9195) + (xy 133.297772 122.949926) (xy 133.268884 122.95373) (xy 133.015581 123.021602) (xy 133.015571 123.021605) + (xy 132.773309 123.121953) (xy 132.773299 123.121958) (xy 132.546196 123.253075) (xy 132.338148 123.412718) + (xy 132.152718 123.598148) (xy 131.993075 123.806196) (xy 131.861958 124.033299) (xy 131.861953 124.033309) + (xy 131.761605 124.275571) (xy 131.761602 124.275581) (xy 131.696301 124.519291) (xy 131.69373 124.528885) + (xy 131.6595 124.788872) (xy 123.6105 124.788872) (xy 123.6105 124.73888) (xy 123.57627 124.478884) + (xy 123.508398 124.225581) (xy 123.506426 124.220821) (xy 123.408046 123.983309) (xy 123.408041 123.983299) + (xy 123.276924 123.756196) (xy 123.129787 123.564446) (xy 123.117282 123.548149) (xy 123.117281 123.548148) + (xy 123.117274 123.54814) (xy 122.93186 123.362726) (xy 122.931851 123.362718) (xy 122.723803 123.203075) + (xy 122.4967 123.071958) (xy 122.49669 123.071953) (xy 122.254428 122.971605) (xy 122.254421 122.971603) + (xy 122.254419 122.971602) (xy 122.001116 122.90373) (xy 121.943339 122.896123) (xy 121.741127 122.8695) + (xy 121.74112 122.8695) (xy 121.47888 122.8695) (xy 121.478872 122.8695) (xy 121.247772 122.899926) + (xy 121.218884 122.90373) (xy 121.06472 122.945038) (xy 120.965581 122.971602) (xy 120.965571 122.971605) + (xy 120.723309 123.071953) (xy 120.723299 123.071958) (xy 120.496196 123.203075) (xy 120.288148 123.362718) + (xy 120.102718 123.548148) (xy 119.943075 123.756196) (xy 119.811958 123.983299) (xy 119.811953 123.983309) + (xy 119.711605 124.225571) (xy 119.711602 124.225581) (xy 119.649335 124.457968) (xy 119.64373 124.478885) + (xy 119.6095 124.738872) (xy 117.327167 124.738872) (xy 117.327167 124.58888) (xy 117.292937 124.328884) + (xy 117.225065 124.075581) (xy 117.225061 124.075571) (xy 117.124713 123.833309) (xy 117.124708 123.833299) + (xy 116.993591 123.606196) (xy 116.834858 123.399334) (xy 116.833949 123.398149) (xy 116.833948 123.398148) + (xy 116.833941 123.39814) (xy 116.648527 123.212726) (xy 116.648518 123.212718) (xy 116.44047 123.053075) + (xy 116.213367 122.921958) (xy 116.213357 122.921953) (xy 115.971095 122.821605) (xy 115.971088 122.821603) + (xy 115.971086 122.821602) (xy 115.717783 122.75373) (xy 115.660006 122.746123) (xy 115.457794 122.7195) + (xy 115.457787 122.7195) (xy 115.195547 122.7195) (xy 115.195539 122.7195) (xy 114.965576 122.749777) + (xy 114.935551 122.75373) (xy 114.725749 122.809946) (xy 114.682248 122.821602) (xy 114.682238 122.821605) + (xy 114.439976 122.921953) (xy 114.439966 122.921958) (xy 114.212863 123.053075) (xy 114.004815 123.212718) + (xy 113.819385 123.398148) (xy 113.659742 123.606196) (xy 113.528625 123.833299) (xy 113.52862 123.833309) + (xy 113.428272 124.075571) (xy 113.428269 124.075581) (xy 113.361266 124.325643) (xy 113.360397 124.328885) + (xy 113.326167 124.588872) (xy 105.277167 124.588872) (xy 105.277167 124.53888) (xy 105.242937 124.278884) + (xy 105.175065 124.025581) (xy 105.175061 124.025571) (xy 105.074713 123.783309) (xy 105.074708 123.783299) + (xy 104.943591 123.556196) (xy 104.807018 123.378213) (xy 104.783949 123.348149) (xy 104.783948 123.348148) + (xy 104.783941 123.34814) (xy 104.598527 123.162726) (xy 104.598518 123.162718) (xy 104.39047 123.003075) + (xy 104.163367 122.871958) (xy 104.163357 122.871953) (xy 103.921095 122.771605) (xy 103.921088 122.771603) + (xy 103.921086 122.771602) (xy 103.667783 122.70373) (xy 103.610006 122.696123) (xy 103.407794 122.6695) + (xy 103.407787 122.6695) (xy 103.145547 122.6695) (xy 103.145539 122.6695) (xy 102.914439 122.699926) + (xy 102.885551 122.70373) (xy 102.698948 122.75373) (xy 102.632248 122.771602) (xy 102.632238 122.771605) + (xy 102.389976 122.871953) (xy 102.389966 122.871958) (xy 102.162863 123.003075) (xy 101.954815 123.162718) + (xy 101.769385 123.348148) (xy 101.609742 123.556196) (xy 101.478625 123.783299) (xy 101.47862 123.783309) + (xy 101.378272 124.025571) (xy 101.378269 124.025581) (xy 101.322559 124.233497) (xy 101.310397 124.278885) + (xy 101.276167 124.538872) (xy 98.980666 124.538872) (xy 98.959603 124.378884) (xy 98.891731 124.125581) + (xy 98.876873 124.089711) (xy 98.791379 123.883309) (xy 98.791374 123.883299) (xy 98.660257 123.656196) + (xy 98.500614 123.448148) (xy 98.500607 123.44814) (xy 98.315193 123.262726) (xy 98.315184 123.262718) + (xy 98.107136 123.103075) (xy 97.880033 122.971958) (xy 97.880023 122.971953) (xy 97.637761 122.871605) + (xy 97.637754 122.871603) (xy 97.637752 122.871602) (xy 97.384449 122.80373) (xy 97.326672 122.796123) + (xy 97.12446 122.7695) (xy 97.124453 122.7695) (xy 96.862213 122.7695) (xy 96.862205 122.7695) (xy 96.631105 122.799926) + (xy 96.602217 122.80373) (xy 96.365331 122.867203) (xy 96.348914 122.871602) (xy 96.348904 122.871605) + (xy 96.106642 122.971953) (xy 96.106632 122.971958) (xy 95.879529 123.103075) (xy 95.671481 123.262718) + (xy 95.486051 123.448148) (xy 95.326408 123.656196) (xy 95.195291 123.883299) (xy 95.195286 123.883309) + (xy 95.094938 124.125571) (xy 95.094938 124.125573) (xy 95.094935 124.125581) (xy 95.027063 124.378884) + (xy 95.023259 124.407772) (xy 94.992833 124.638872) (xy 86.943833 124.638872) (xy 86.943833 124.58888) + (xy 86.909603 124.328884) (xy 86.841731 124.075581) (xy 86.841727 124.075571) (xy 86.741379 123.833309) + (xy 86.741374 123.833299) (xy 86.610257 123.606196) (xy 86.451524 123.399334) (xy 86.450615 123.398149) + (xy 86.450614 123.398148) (xy 86.450607 123.39814) (xy 86.265193 123.212726) (xy 86.265184 123.212718) + (xy 86.057136 123.053075) (xy 85.830033 122.921958) (xy 85.830023 122.921953) (xy 85.587761 122.821605) + (xy 85.587754 122.821603) (xy 85.587752 122.821602) (xy 85.334449 122.75373) (xy 85.276672 122.746123) + (xy 85.07446 122.7195) (xy 85.074453 122.7195) (xy 84.812213 122.7195) (xy 84.812205 122.7195) (xy 84.582242 122.749777) + (xy 84.552217 122.75373) (xy 84.342415 122.809946) (xy 84.298914 122.821602) (xy 84.298904 122.821605) + (xy 84.056642 122.921953) (xy 84.056632 122.921958) (xy 83.829529 123.053075) (xy 83.621481 123.212718) + (xy 83.436051 123.398148) (xy 83.276408 123.606196) (xy 83.145291 123.833299) (xy 83.145286 123.833309) + (xy 83.044938 124.075571) (xy 83.044935 124.075581) (xy 82.977932 124.325643) (xy 82.977063 124.328885) + (xy 82.942833 124.588872) (xy 80.660499 124.588872) (xy 80.62627 124.328884) (xy 80.558398 124.075581) + (xy 80.558394 124.075571) (xy 80.458046 123.833309) (xy 80.458041 123.833299) (xy 80.326924 123.606196) + (xy 80.168191 123.399334) (xy 80.167282 123.398149) (xy 80.167281 123.398148) (xy 80.167274 123.39814) + (xy 79.98186 123.212726) (xy 79.981851 123.212718) (xy 79.773803 123.053075) (xy 79.5467 122.921958) + (xy 79.54669 122.921953) (xy 79.304428 122.821605) (xy 79.304421 122.821603) (xy 79.304419 122.821602) + (xy 79.051116 122.75373) (xy 78.993339 122.746123) (xy 78.791127 122.7195) (xy 78.79112 122.7195) + (xy 78.52888 122.7195) (xy 78.528872 122.7195) (xy 78.298909 122.749777) (xy 78.268884 122.75373) + (xy 78.059082 122.809946) (xy 78.015581 122.821602) (xy 78.015571 122.821605) (xy 77.773309 122.921953) + (xy 77.773299 122.921958) (xy 77.546196 123.053075) (xy 77.338148 123.212718) (xy 77.152718 123.398148) + (xy 76.993075 123.606196) (xy 76.861958 123.833299) (xy 76.861953 123.833309) (xy 76.761605 124.075571) + (xy 76.761602 124.075581) (xy 76.694599 124.325643) (xy 76.69373 124.328885) (xy 76.6595 124.588872) + (xy 68.6105 124.588872) (xy 68.6105 124.53888) (xy 68.57627 124.278884) (xy 68.508398 124.025581) + (xy 68.508394 124.025571) (xy 68.408046 123.783309) (xy 68.408041 123.783299) (xy 68.276924 123.556196) + (xy 68.140351 123.378213) (xy 68.117282 123.348149) (xy 68.117281 123.348148) (xy 68.117274 123.34814) + (xy 67.93186 123.162726) (xy 67.931851 123.162718) (xy 67.723803 123.003075) (xy 67.4967 122.871958) + (xy 67.49669 122.871953) (xy 67.254428 122.771605) (xy 67.254421 122.771603) (xy 67.254419 122.771602) + (xy 67.001116 122.70373) (xy 66.943339 122.696123) (xy 66.741127 122.6695) (xy 66.74112 122.6695) + (xy 66.47888 122.6695) (xy 66.478872 122.6695) (xy 66.247772 122.699926) (xy 66.218884 122.70373) + (xy 66.032281 122.75373) (xy 65.965581 122.771602) (xy 65.965571 122.771605) (xy 65.723309 122.871953) + (xy 65.723299 122.871958) (xy 65.496196 123.003075) (xy 65.288148 123.162718) (xy 65.102718 123.348148) + (xy 64.943075 123.556196) (xy 64.811958 123.783299) (xy 64.811953 123.783309) (xy 64.711605 124.025571) + (xy 64.711602 124.025581) (xy 64.655892 124.233497) (xy 64.64373 124.278885) (xy 64.6095 124.538872) + (xy 58.4505 124.538872) (xy 58.4505 99.599986) (xy 63.450001 99.599986) (xy 63.460494 99.702697) + (xy 63.515641 99.869119) (xy 63.515643 99.869124) (xy 63.607684 100.018345) (xy 63.731654 100.142315) + (xy 63.880875 100.234356) (xy 63.88088 100.234358) (xy 64.047302 100.289505) (xy 64.047309 100.289506) + (xy 64.150019 100.299999) (xy 65.899999 100.299999) (xy 66.4 100.299999) (xy 68.149972 100.299999) + (xy 68.149986 100.299998) (xy 68.252697 100.289505) (xy 68.419119 100.234358) (xy 68.419124 100.234356) + (xy 68.568345 100.142315) (xy 68.692315 100.018345) (xy 68.784356 99.869124) (xy 68.784358 99.869119) + (xy 68.839505 99.702697) (xy 68.839506 99.70269) (xy 68.849999 99.599986) (xy 68.85 99.599973) (xy 68.85 98.8) + (xy 66.4 98.8) (xy 66.4 100.299999) (xy 65.899999 100.299999) (xy 65.9 100.299998) (xy 65.9 98.8) + (xy 63.450001 98.8) (xy 63.450001 99.599986) (xy 58.4505 99.599986) (xy 58.4505 97.500013) (xy 63.45 97.500013) + (xy 63.45 98.3) (xy 65.9 98.3) (xy 66.4 98.3) (xy 68.849999 98.3) (xy 68.849999 97.500024) (xy 68.849998 97.500016) + (xy 68.849995 97.499983) (xy 71.8495 97.499983) (xy 71.8495 99.600001) (xy 71.849501 99.600018) + (xy 71.86 99.702796) (xy 71.860001 99.702799) (xy 71.899743 99.822731) (xy 71.915186 99.869334) + (xy 72.007288 100.018656) (xy 72.131344 100.142712) (xy 72.280666 100.234814) (xy 72.447203 100.289999) + (xy 72.549991 100.3005) (xy 76.550008 100.300499) (xy 76.652797 100.289999) (xy 76.819334 100.234814) + (xy 76.968656 100.142712) (xy 77.024549 100.086819) (xy 77.085872 100.053334) (xy 77.11223 100.0505) + (xy 78.677097 100.0505) (xy 78.910368 100.013553) (xy 78.928015 100.007819) (xy 79.134992 99.940568) + (xy 79.345434 99.833343) (xy 79.53651 99.694517) (xy 80.004517 99.22651) (xy 80.143343 99.035434) + (xy 80.250568 98.824992) (xy 80.323552 98.600369) (xy 80.35566 98.397647) (xy 80.360499 98.367097) + (xy 80.360499 98.130902) (xy 80.336773 97.981109) (xy 80.323552 97.897632) (xy 80.265813 97.719927) + (xy 80.250569 97.67301) (xy 80.250568 97.673007) (xy 80.195933 97.565782) (xy 80.143343 97.462567) + (xy 80.004517 97.27149) (xy 79.83751 97.104483) (xy 79.646433 96.965657) (xy 79.604543 96.944313) + (xy 79.435992 96.858431) (xy 79.435989 96.85843) (xy 79.211369 96.785448) (xy 78.978097 96.748501) + (xy 78.978092 96.748501) (xy 78.741908 96.748501) (xy 78.741903 96.748501) (xy 78.508629 96.785448) + (xy 78.28401 96.85843) (xy 78.284007 96.858432) (xy 78.073565 96.965657) (xy 77.990762 97.025818) + (xy 77.924955 97.049298) (xy 77.917876 97.0495) (xy 77.11223 97.0495) (xy 77.045191 97.029815) (xy 77.024549 97.013181) + (xy 76.968657 96.957289) (xy 76.968656 96.957288) (xy 76.819334 96.865186) (xy 76.652797 96.810001) + (xy 76.652795 96.81) (xy 76.55001 96.7995) (xy 72.549998 96.7995) (xy 72.549981 96.799501) (xy 72.447203 96.81) + (xy 72.4472 96.810001) (xy 72.280668 96.865185) (xy 72.280663 96.865187) (xy 72.131342 96.957289) + (xy 72.007289 97.081342) (xy 71.915187 97.230663) (xy 71.915185 97.230668) (xy 71.915115 97.23088) + (xy 71.860001 97.397203) (xy 71.860001 97.397204) (xy 71.86 97.397204) (xy 71.8495 97.499983) (xy 68.849995 97.499983) + (xy 68.839505 97.397302) (xy 68.784358 97.23088) (xy 68.784356 97.230875) (xy 68.692315 97.081654) + (xy 68.568345 96.957684) (xy 68.419124 96.865643) (xy 68.419119 96.865641) (xy 68.252697 96.810494) + (xy 68.25269 96.810493) (xy 68.149986 96.8) (xy 66.4 96.8) (xy 66.4 98.3) (xy 65.9 98.3) (xy 65.9 96.8) + (xy 64.150028 96.8) (xy 64.150012 96.800001) (xy 64.047302 96.810494) (xy 63.88088 96.865641) (xy 63.880875 96.865643) + (xy 63.731654 96.957684) (xy 63.607684 97.081654) (xy 63.515643 97.230875) (xy 63.515641 97.23088) + (xy 63.460494 97.397302) (xy 63.460493 97.397309) (xy 63.45 97.500013) (xy 58.4505 97.500013) (xy 58.4505 84.721459) + (xy 62.4595 84.721459) (xy 62.4595 84.727165) (xy 62.4595 90.518543) (xy 62.472819 90.585499) (xy 62.472819 90.5855) + (xy 62.497947 90.711828) (xy 62.49795 90.71184) (xy 62.510271 90.741584) (xy 62.573366 90.893911) + (xy 62.573371 90.89392) (xy 62.682859 91.05778) (xy 62.68286 91.057781) (xy 62.682861 91.057782) + (xy 62.822218 91.197139) (xy 62.822219 91.197139) (xy 62.829286 91.204206) (xy 62.829285 91.204206) + (xy 62.829288 91.204208) (xy 63.92036 92.295281) (xy 63.920361 92.295282) (xy 63.997874 92.372795) + (xy 64.059718 92.434639) (xy 64.183445 92.517311) (xy 64.223586 92.544132) (xy 64.340556 92.592582) + (xy 64.405664 92.619551) (xy 64.502312 92.638775) (xy 64.57809 92.653848) (xy 64.598958 92.658) + (xy 64.598959 92.658) (xy 64.59896 92.658) (xy 64.79604 92.658) (xy 65.595134 92.658) (xy 65.660231 92.676461) + (xy 65.665666 92.679814) (xy 65.832203 92.734999) (xy 65.934991 92.7455) (xy 66.985008 92.745499) + (xy 66.985016 92.745498) (xy 66.985019 92.745498) (xy 67.041302 92.739748) (xy 67.087797 92.734999) + (xy 67.254334 92.679814) (xy 67.259768 92.676461) (xy 67.324866 92.658) (xy 68.995134 92.658) (xy 69.060231 92.676461) + (xy 69.065666 92.679814) (xy 69.232203 92.734999) (xy 69.334991 92.7455) (xy 70.385008 92.745499) + (xy 70.385016 92.745498) (xy 70.385019 92.745498) (xy 70.441302 92.739748) (xy 70.487797 92.734999) + (xy 70.654334 92.679814) (xy 70.659768 92.676461) (xy 70.724866 92.658) (xy 73.721042 92.658) (xy 73.742038 92.653823) + (xy 73.817688 92.638775) (xy 73.914336 92.619551) (xy 73.979444 92.592582) (xy 74.096414 92.544132) + (xy 74.260282 92.434639) (xy 74.399639 92.295282) (xy 74.399639 92.29528) (xy 74.409847 92.285073) + (xy 74.409849 92.28507) (xy 74.638101 92.056818) (xy 74.699424 92.023333) (xy 74.725782 92.020499) + (xy 75.710002 92.020499) (xy 75.710008 92.020499) (xy 75.812797 92.009999) (xy 75.979334 91.954814) + (xy 76.128656 91.862712) (xy 76.252712 91.738656) (xy 76.344814 91.589334) (xy 76.399999 91.422797) + (xy 76.4105 91.320009) (xy 76.410499 89.919992) (xy 76.409498 89.910197) (xy 76.399999 89.817203) + (xy 76.399998 89.8172) (xy 76.37516 89.742244) (xy 76.344814 89.650666) (xy 76.252712 89.501344) + (xy 76.128656 89.377288) (xy 76.008728 89.303316) (xy 75.979336 89.285187) (xy 75.979331 89.285185) + (xy 75.970187 89.282155) (xy 75.812797 89.230001) (xy 75.812795 89.23) (xy 75.71001 89.2195) (xy 73.609998 89.2195) + (xy 73.609981 89.219501) (xy 73.507203 89.23) (xy 73.5072 89.230001) (xy 73.340668 89.285185) (xy 73.340663 89.285187) + (xy 73.191342 89.377289) (xy 73.067289 89.501342) (xy 72.975187 89.650663) (xy 72.975186 89.650666) + (xy 72.920001 89.817203) (xy 72.920001 89.817204) (xy 72.92 89.817204) (xy 72.9095 89.919983) (xy 72.9095 89.919991) + (xy 72.9095 90.285269) (xy 72.909501 90.533) (xy 72.889817 90.600039) (xy 72.837013 90.645794) (xy 72.785501 90.657) + (xy 70.958023 90.657) (xy 70.890984 90.637315) (xy 70.845229 90.584511) (xy 70.835285 90.515353) + (xy 70.86431 90.451797) (xy 70.870342 90.445319) (xy 70.927315 90.388345) (xy 71.019356 90.239124) + (xy 71.019358 90.239119) (xy 71.074505 90.072697) (xy 71.074506 90.07269) (xy 71.084999 89.969986) + (xy 71.085 89.969973) (xy 71.085 89.8325) (xy 68.635001 89.8325) (xy 68.635001 89.969986) (xy 68.645494 90.072697) + (xy 68.700641 90.239119) (xy 68.700643 90.239124) (xy 68.792684 90.388345) (xy 68.849658 90.445319) + (xy 68.883143 90.506642) (xy 68.878159 90.576334) (xy 68.836287 90.632267) (xy 68.770823 90.656684) + (xy 68.761977 90.657) (xy 67.558023 90.657) (xy 67.490984 90.637315) (xy 67.445229 90.584511) (xy 67.435285 90.515353) + (xy 67.46431 90.451797) (xy 67.470342 90.445319) (xy 67.527315 90.388345) (xy 67.619356 90.239124) + (xy 67.619358 90.239119) (xy 67.674505 90.072697) (xy 67.674506 90.07269) (xy 67.684999 89.969986) + (xy 67.685 89.969973) (xy 67.685 89.8325) (xy 65.235001 89.8325) (xy 65.235001 89.969986) (xy 65.245494 90.072697) + (xy 65.300641 90.239119) (xy 65.300643 90.239124) (xy 65.392684 90.388345) (xy 65.449658 90.445319) + (xy 65.46027 90.464755) (xy 65.474771 90.481489) (xy 65.476687 90.49482) (xy 65.483143 90.506642) + (xy 65.481563 90.528728) (xy 65.484715 90.550647) (xy 65.479119 90.562898) (xy 65.478159 90.576334) + (xy 65.464888 90.59406) (xy 65.45569 90.614203) (xy 65.444358 90.621485) (xy 65.436287 90.632267) + (xy 65.415541 90.640004) (xy 65.396912 90.651977) (xy 65.374993 90.655128) (xy 65.370823 90.656684) + (xy 65.361977 90.657) (xy 65.163283 90.657) (xy 65.096244 90.637315) (xy 65.075602 90.620681) (xy 64.496819 90.041898) + (xy 64.463334 89.980575) (xy 64.4605 89.954217) (xy 64.4605 89.195013) (xy 65.235 89.195013) (xy 65.235 89.3325) + (xy 66.21 89.3325) (xy 66.71 89.3325) (xy 67.684999 89.3325) (xy 67.684999 89.195029) (xy 67.684998 89.195013) + (xy 68.635 89.195013) (xy 68.635 89.3325) (xy 69.61 89.3325) (xy 70.11 89.3325) (xy 71.084999 89.3325) + (xy 71.084999 89.195028) (xy 71.084998 89.195013) (xy 71.074505 89.092302) (xy 71.019358 88.92588) + (xy 71.019356 88.925875) (xy 70.927315 88.776654) (xy 70.803345 88.652684) (xy 70.654124 88.560643) + (xy 70.654119 88.560641) (xy 70.487697 88.505494) (xy 70.48769 88.505493) (xy 70.384986 88.495) + (xy 70.11 88.495) (xy 70.11 89.3325) (xy 69.61 89.3325) (xy 69.61 88.495) (xy 69.335029 88.495) + (xy 69.335012 88.495001) (xy 69.232302 88.505494) (xy 69.06588 88.560641) (xy 69.065875 88.560643) + (xy 68.916654 88.652684) (xy 68.792684 88.776654) (xy 68.700643 88.925875) (xy 68.700641 88.92588) + (xy 68.645494 89.092302) (xy 68.645493 89.092309) (xy 68.635 89.195013) (xy 67.684998 89.195013) + (xy 67.684998 89.195012) (xy 67.674505 89.092302) (xy 67.619358 88.92588) (xy 67.619356 88.925875) + (xy 67.527315 88.776654) (xy 67.403345 88.652684) (xy 67.254124 88.560643) (xy 67.254119 88.560641) + (xy 67.087697 88.505494) (xy 67.08769 88.505493) (xy 66.984986 88.495) (xy 66.71 88.495) (xy 66.71 89.3325) + (xy 66.21 89.3325) (xy 66.21 88.495) (xy 65.935029 88.495) (xy 65.935012 88.495001) (xy 65.832302 88.505494) + (xy 65.66588 88.560641) (xy 65.665875 88.560643) (xy 65.516654 88.652684) (xy 65.392684 88.776654) + (xy 65.300643 88.925875) (xy 65.300641 88.92588) (xy 65.245494 89.092302) (xy 65.245493 89.092309) + (xy 65.235 89.195013) (xy 64.4605 89.195013) (xy 64.4605 86.088872) (xy 70.6095 86.088872) (xy 70.6095 86.351127) + (xy 70.632063 86.522502) (xy 70.64373 86.611116) (xy 70.703564 86.834421) (xy 70.711602 86.864418) + (xy 70.711605 86.864428) (xy 70.811953 87.10669) (xy 70.811958 87.1067) (xy 70.943075 87.333803) + (xy 71.102718 87.541851) (xy 71.102726 87.54186) (xy 71.28814 87.727274) (xy 71.288148 87.727281) + (xy 71.496196 87.886924) (xy 71.723299 88.018041) (xy 71.723309 88.018046) (xy 71.928407 88.103) + (xy 71.965581 88.118398) (xy 72.218884 88.18627) (xy 72.47888 88.2205) (xy 72.478887 88.2205) (xy 72.741113 88.2205) + (xy 72.74112 88.2205) (xy 73.001116 88.18627) (xy 73.254419 88.118398) (xy 73.464919 88.031206) + (xy 73.49669 88.018046) (xy 73.496691 88.018045) (xy 73.496697 88.018043) (xy 73.723803 87.886924) + (xy 73.931851 87.727282) (xy 73.931855 87.727277) (xy 73.93186 87.727274) (xy 74.117274 87.54186) + (xy 74.117277 87.541855) (xy 74.117282 87.541851) (xy 74.276924 87.333803) (xy 74.408043 87.106697) + (xy 74.508398 86.864419) (xy 74.57627 86.611116) (xy 74.6105 86.35112) (xy 74.6105 86.08888) (xy 74.609147 86.078607) + (xy 74.597554 85.990548) (xy 74.57627 85.828884) (xy 74.508398 85.575581) (xy 74.494772 85.542684) + (xy 74.408046 85.333309) (xy 74.408041 85.333299) (xy 74.276924 85.106196) (xy 74.121208 84.903266) + (xy 74.117282 84.898149) (xy 74.117281 84.898148) (xy 74.117274 84.89814) (xy 73.93186 84.712726) + (xy 73.931851 84.712718) (xy 73.723803 84.553075) (xy 73.4967 84.421958) (xy 73.49669 84.421953) + (xy 73.254428 84.321605) (xy 73.254421 84.321603) (xy 73.254419 84.321602) (xy 73.001116 84.25373) + (xy 72.943339 84.246123) (xy 72.741127 84.2195) (xy 72.74112 84.2195) (xy 72.47888 84.2195) (xy 72.478872 84.2195) + (xy 72.247772 84.249926) (xy 72.218884 84.25373) (xy 72.029564 84.304458) (xy 71.965581 84.321602) + (xy 71.965571 84.321605) (xy 71.723309 84.421953) (xy 71.723299 84.421958) (xy 71.496196 84.553075) + (xy 71.288148 84.712718) (xy 71.102718 84.898148) (xy 70.943075 85.106196) (xy 70.811958 85.333299) + (xy 70.811953 85.333309) (xy 70.711605 85.575571) (xy 70.711602 85.575581) (xy 70.645977 85.8205) + (xy 70.64373 85.828885) (xy 70.6095 86.088872) (xy 64.4605 86.088872) (xy 64.4605 85.3945) (xy 64.480185 85.327461) + (xy 64.532989 85.281706) (xy 64.5845 85.2705) (xy 65.160104 85.2705) (xy 65.227143 85.290185) (xy 65.25848 85.319014) + (xy 65.341079 85.426659) (xy 65.341085 85.426666) (xy 65.50333 85.588911) (xy 65.503338 85.588918) + (xy 65.503339 85.588919) (xy 65.544476 85.620485) (xy 65.685382 85.728607) (xy 65.685385 85.728608) + (xy 65.685388 85.728611) (xy 65.884112 85.843344) (xy 65.884117 85.843346) (xy 65.884123 85.843349) + (xy 65.97548 85.88119) (xy 66.096113 85.931158) (xy 66.317762 85.990548) (xy 66.545266 86.0205) + (xy 66.545273 86.0205) (xy 66.774727 86.0205) (xy 66.774734 86.0205) (xy 67.002238 85.990548) (xy 67.223887 85.931158) + (xy 67.435888 85.843344) (xy 67.634612 85.728611) (xy 67.816661 85.588919) (xy 67.816665 85.588914) + (xy 67.81667 85.588911) (xy 67.978911 85.42667) (xy 67.978914 85.426665) (xy 67.978919 85.426661) + (xy 68.118611 85.244612) (xy 68.233344 85.045888) (xy 68.321158 84.833887) (xy 68.380548 84.612238) + (xy 68.4105 84.384734) (xy 68.4105 84.155266) (xy 68.380548 83.927762) (xy 68.321158 83.706113) + (xy 68.247436 83.528132) (xy 68.233349 83.494123) (xy 68.233346 83.494117) (xy 68.233344 83.494112) + (xy 68.118611 83.295388) (xy 68.118608 83.295385) (xy 68.118607 83.295382) (xy 68.012918 83.157647) + (xy 67.978919 83.113339) (xy 67.978918 83.113338) (xy 67.978911 83.11333) (xy 67.81667 82.951089) + (xy 67.816661 82.951081) (xy 67.634617 82.811392) (xy 67.588906 82.785001) (xy 67.438938 82.698417) + (xy 67.43589 82.696657) (xy 67.435876 82.69665) (xy 67.223887 82.608842) (xy 67.002238 82.549452) + (xy 66.964215 82.544446) (xy 66.774741 82.5195) (xy 66.774734 82.5195) (xy 66.545266 82.5195) (xy 66.545258 82.5195) + (xy 66.328715 82.548009) (xy 66.317762 82.549452) (xy 66.228688 82.573319) (xy 66.096112 82.608842) + (xy 65.884123 82.69665) (xy 65.884109 82.696657) (xy 65.685382 82.811392) (xy 65.503338 82.951081) + (xy 65.50333 82.951089) (xy 65.341085 83.113333) (xy 65.341079 83.11334) (xy 65.25848 83.220986) + (xy 65.202052 83.262189) (xy 65.160104 83.2695) (xy 63.911456 83.2695) (xy 63.718171 83.307947) + (xy 63.718163 83.307949) (xy 63.65004 83.336167) (xy 63.650039 83.336167) (xy 63.536092 83.383364) + (xy 63.536079 83.383371) (xy 63.416401 83.463339) (xy 63.4164 83.46334) (xy 63.372215 83.492862) + (xy 63.372214 83.492863) (xy 62.93732 83.927759) (xy 62.82222 84.042859) (xy 62.822218 84.042861) + (xy 62.763079 84.102) (xy 62.682859 84.182219) (xy 62.573371 84.346079) (xy 62.573364 84.346092) + (xy 62.532672 84.444334) (xy 62.49795 84.528159) (xy 62.497947 84.528171) (xy 62.491331 84.561429) + (xy 62.491304 84.561568) (xy 62.491251 84.561836) (xy 62.4595 84.721459) (xy 58.4505 84.721459) + (xy 58.4505 71.888872) (xy 64.6095 71.888872) (xy 64.6095 72.151127) (xy 64.634843 72.343614) (xy 64.64373 72.411116) + (xy 64.704269 72.63705) (xy 64.711602 72.664418) (xy 64.711605 72.664428) (xy 64.811953 72.90669) + (xy 64.811958 72.9067) (xy 64.943075 73.133803) (xy 65.102718 73.341851) (xy 65.102726 73.34186) + (xy 65.28814 73.527274) (xy 65.288148 73.527281) (xy 65.288149 73.527282) (xy 65.300715 73.536924) + (xy 65.496196 73.686924) (xy 65.723299 73.818041) (xy 65.723309 73.818046) (xy 65.928407 73.903) + (xy 65.965581 73.918398) (xy 66.218884 73.98627) (xy 66.47888 74.0205) (xy 66.478887 74.0205) (xy 66.741113 74.0205) + (xy 66.74112 74.0205) (xy 67.001116 73.98627) (xy 67.254419 73.918398) (xy 67.462449 73.832229) + (xy 67.49669 73.818046) (xy 67.496691 73.818045) (xy 67.496697 73.818043) (xy 67.723803 73.686924) + (xy 67.931851 73.527282) (xy 67.931855 73.527277) (xy 67.93186 73.527274) (xy 68.117274 73.34186) + (xy 68.117277 73.341855) (xy 68.117282 73.341851) (xy 68.276924 73.133803) (xy 68.408043 72.906697) + (xy 68.409432 72.903345) (xy 68.456716 72.78919) (xy 68.508398 72.664419) (xy 68.57627 72.411116) + (xy 68.6105 72.15112) (xy 68.6105 71.938872) (xy 76.6595 71.938872) (xy 76.6595 72.201127) (xy 76.67826 72.343614) + (xy 76.69373 72.461116) (xy 76.748205 72.664419) (xy 76.761602 72.714418) (xy 76.761605 72.714428) + (xy 76.861953 72.95669) (xy 76.861958 72.9567) (xy 76.993075 73.183803) (xy 77.152718 73.391851) + (xy 77.152726 73.39186) (xy 77.33814 73.577274) (xy 77.338148 73.577281) (xy 77.546196 73.736924) + (xy 77.773299 73.868041) (xy 77.773309 73.868046) (xy 77.978407 73.953) (xy 78.015581 73.968398) + (xy 78.268884 74.03627) (xy 78.52888 74.0705) (xy 78.528887 74.0705) (xy 78.791113 74.0705) (xy 78.79112 74.0705) + (xy 79.051116 74.03627) (xy 79.304419 73.968398) (xy 79.524395 73.877281) (xy 79.54669 73.868046) + (xy 79.546691 73.868045) (xy 79.546697 73.868043) (xy 79.773803 73.736924) (xy 79.981851 73.577282) + (xy 79.981855 73.577277) (xy 79.98186 73.577274) (xy 80.167274 73.39186) (xy 80.167277 73.391855) + (xy 80.167282 73.391851) (xy 80.326924 73.183803) (xy 80.458043 72.956697) (xy 80.558398 72.714419) + (xy 80.62627 72.461116) (xy 80.6605 72.20112) (xy 80.6605 71.93888) (xy 80.627585 71.688872) (xy 82.942833 71.688872) + (xy 82.942833 71.951127) (xy 82.958711 72.071726) (xy 82.977063 72.211116) (xy 83.04405 72.461116) + (xy 83.044935 72.464418) (xy 83.044938 72.464428) (xy 83.145286 72.70669) (xy 83.145291 72.7067) + (xy 83.276408 72.933803) (xy 83.436051 73.141851) (xy 83.436059 73.14186) (xy 83.621473 73.327274) + (xy 83.621481 73.327281) (xy 83.829529 73.486924) (xy 84.056632 73.618041) (xy 84.056642 73.618046) + (xy 84.298904 73.718394) (xy 84.298914 73.718398) (xy 84.552217 73.78627) (xy 84.812213 73.8205) + (xy 84.81222 73.8205) (xy 85.074446 73.8205) (xy 85.074453 73.8205) (xy 85.334449 73.78627) (xy 85.587752 73.718398) + (xy 85.83003 73.618043) (xy 86.057136 73.486924) (xy 86.265184 73.327282) (xy 86.265188 73.327277) + (xy 86.265193 73.327274) (xy 86.450607 73.14186) (xy 86.45061 73.141855) (xy 86.450615 73.141851) + (xy 86.610257 72.933803) (xy 86.741376 72.706697) (xy 86.841731 72.464419) (xy 86.909603 72.211116) + (xy 86.943833 71.95112) (xy 86.943833 71.738872) (xy 94.992833 71.738872) (xy 94.992833 72.001127) + (xy 95.015898 72.176312) (xy 95.027063 72.261116) (xy 95.094935 72.514418) (xy 95.094938 72.514428) + (xy 95.195286 72.75669) (xy 95.195291 72.7567) (xy 95.326408 72.983803) (xy 95.486051 73.191851) + (xy 95.486059 73.19186) (xy 95.671473 73.377274) (xy 95.671481 73.377281) (xy 95.671482 73.377282) + (xy 95.713826 73.409774) (xy 95.879529 73.536924) (xy 96.106632 73.668041) (xy 96.106642 73.668046) + (xy 96.348904 73.768394) (xy 96.348914 73.768398) (xy 96.602217 73.83627) (xy 96.862213 73.8705) + (xy 96.86222 73.8705) (xy 97.124446 73.8705) (xy 97.124453 73.8705) (xy 97.384449 73.83627) (xy 97.637752 73.768398) + (xy 97.822531 73.69186) (xy 97.880023 73.668046) (xy 97.880024 73.668045) (xy 97.88003 73.668043) + (xy 98.107136 73.536924) (xy 98.315184 73.377282) (xy 98.315188 73.377277) (xy 98.315193 73.377274) + (xy 98.500607 73.19186) (xy 98.50061 73.191855) (xy 98.500615 73.191851) (xy 98.660257 72.983803) + (xy 98.791376 72.756697) (xy 98.891731 72.514419) (xy 98.959603 72.261116) (xy 98.993833 72.00112) + (xy 98.993833 71.771372) (xy 101.276167 71.771372) (xy 101.276167 72.033627) (xy 101.297188 72.193288) + (xy 101.310397 72.293616) (xy 101.369561 72.514419) (xy 101.378269 72.546918) (xy 101.378272 72.546928) + (xy 101.47862 72.78919) (xy 101.478625 72.7892) (xy 101.609742 73.016303) (xy 101.769385 73.224351) + (xy 101.769393 73.22436) (xy 101.954807 73.409774) (xy 101.954815 73.409781) (xy 102.162863 73.569424) + (xy 102.389966 73.700541) (xy 102.389976 73.700546) (xy 102.632238 73.800894) (xy 102.632248 73.800898) + (xy 102.885551 73.86877) (xy 103.145547 73.903) (xy 103.145554 73.903) (xy 103.40778 73.903) (xy 103.407787 73.903) + (xy 103.667783 73.86877) (xy 103.921086 73.800898) (xy 104.163364 73.700543) (xy 104.39047 73.569424) + (xy 104.598518 73.409782) (xy 104.598522 73.409777) (xy 104.598527 73.409774) (xy 104.783941 73.22436) + (xy 104.783944 73.224355) (xy 104.783949 73.224351) (xy 104.943591 73.016303) (xy 105.07471 72.789197) + (xy 105.175065 72.546919) (xy 105.242937 72.293616) (xy 105.277167 72.03362) (xy 105.277167 71.821372) + (xy 113.326167 71.821372) (xy 113.326167 72.083627) (xy 113.35279 72.285839) (xy 113.360397 72.343616) + (xy 113.425825 72.587797) (xy 113.428269 72.596918) (xy 113.428272 72.596928) (xy 113.52862 72.83919) + (xy 113.528625 72.8392) (xy 113.659742 73.066303) (xy 113.819385 73.274351) (xy 113.819393 73.27436) + (xy 114.004807 73.459774) (xy 114.004815 73.459781) (xy 114.212863 73.619424) (xy 114.439966 73.750541) + (xy 114.439976 73.750546) (xy 114.682238 73.850894) (xy 114.682248 73.850898) (xy 114.935551 73.91877) + (xy 115.195547 73.953) (xy 115.195554 73.953) (xy 115.45778 73.953) (xy 115.457787 73.953) (xy 115.717783 73.91877) + (xy 115.971086 73.850898) (xy 116.213364 73.750543) (xy 116.44047 73.619424) (xy 116.648518 73.459782) + (xy 116.648522 73.459777) (xy 116.648527 73.459774) (xy 116.833941 73.27436) (xy 116.833944 73.274355) + (xy 116.833949 73.274351) (xy 116.993591 73.066303) (xy 117.12471 72.839197) (xy 117.132663 72.819998) + (xy 117.159948 72.754124) (xy 117.225065 72.596919) (xy 117.292937 72.343616) (xy 117.306727 72.238872) + (xy 119.6095 72.238872) (xy 119.6095 72.501127) (xy 119.627396 72.637049) (xy 119.64373 72.761116) + (xy 119.70803 73.001087) (xy 119.711602 73.014418) (xy 119.711605 73.014428) (xy 119.811953 73.25669) + (xy 119.811958 73.2567) (xy 119.943075 73.483803) (xy 120.102718 73.691851) (xy 120.102726 73.69186) + (xy 120.28814 73.877274) (xy 120.288148 73.877281) (xy 120.288149 73.877282) (xy 120.303858 73.889336) + (xy 120.496196 74.036924) (xy 120.723299 74.168041) (xy 120.723309 74.168046) (xy 120.965571 74.268394) + (xy 120.965581 74.268398) (xy 121.218884 74.33627) (xy 121.47888 74.3705) (xy 121.478887 74.3705) + (xy 121.741113 74.3705) (xy 121.74112 74.3705) (xy 122.001116 74.33627) (xy 122.254419 74.268398) + (xy 122.496697 74.168043) (xy 122.723803 74.036924) (xy 122.931851 73.877282) (xy 122.931855 73.877277) + (xy 122.93186 73.877274) (xy 123.117274 73.69186) (xy 123.117277 73.691855) (xy 123.117282 73.691851) + (xy 123.276924 73.483803) (xy 123.408043 73.256697) (xy 123.508398 73.014419) (xy 123.57627 72.761116) + (xy 123.6105 72.50112) (xy 123.6105 72.288872) (xy 131.6595 72.288872) (xy 131.6595 72.551127) (xy 131.679983 72.7067) + (xy 131.69373 72.811116) (xy 131.761602 73.064418) (xy 131.761605 73.064428) (xy 131.861953 73.30669) + (xy 131.861958 73.3067) (xy 131.993075 73.533803) (xy 132.152718 73.741851) (xy 132.152726 73.74186) + (xy 132.33814 73.927274) (xy 132.338148 73.927281) (xy 132.546196 74.086924) (xy 132.773299 74.218041) + (xy 132.773309 74.218046) (xy 132.999739 74.311836) (xy 133.015581 74.318398) (xy 133.268884 74.38627) + (xy 133.52888 74.4205) (xy 133.528887 74.4205) (xy 133.791113 74.4205) (xy 133.79112 74.4205) (xy 134.051116 74.38627) + (xy 134.304419 74.318398) (xy 134.546697 74.218043) (xy 134.773803 74.086924) (xy 134.981851 73.927282) + (xy 134.981855 73.927277) (xy 134.98186 73.927274) (xy 135.167274 73.74186) (xy 135.167277 73.741855) + (xy 135.167282 73.741851) (xy 135.326924 73.533803) (xy 135.458043 73.306697) (xy 135.558398 73.064419) + (xy 135.62627 72.811116) (xy 135.6605 72.55112) (xy 135.6605 72.474986) (xy 137.247501 72.474986) + (xy 137.257994 72.577697) (xy 137.313141 72.744119) (xy 137.313143 72.744124) (xy 137.405184 72.893345) + (xy 137.529154 73.017315) (xy 137.678375 73.109356) (xy 137.67838 73.109358) (xy 137.844802 73.164505) + (xy 137.844809 73.164506) (xy 137.947519 73.174999) (xy 138.084999 73.174999) (xy 138.085 73.174998) + (xy 138.085 72.2) (xy 137.247501 72.2) (xy 137.247501 72.474986) (xy 135.6605 72.474986) (xy 135.6605 72.28888) + (xy 135.62627 72.028884) (xy 135.558398 71.775581) (xy 135.558394 71.775571) (xy 135.458046 71.533309) + (xy 135.458043 71.533304) (xy 135.458043 71.533303) (xy 135.429176 71.483303) (xy 135.395523 71.425013) + (xy 137.2475 71.425013) (xy 137.2475 71.7) (xy 138.085 71.7) (xy 138.085 70.725) (xy 137.947527 70.725) + (xy 137.947512 70.725001) (xy 137.844802 70.735494) (xy 137.67838 70.790641) (xy 137.678375 70.790643) + (xy 137.529154 70.882684) (xy 137.405184 71.006654) (xy 137.313143 71.155875) (xy 137.313141 71.15588) + (xy 137.257994 71.322302) (xy 137.257993 71.322309) (xy 137.2475 71.425013) (xy 135.395523 71.425013) + (xy 135.326924 71.306196) (xy 135.167281 71.098148) (xy 135.167274 71.09814) (xy 134.98186 70.912726) + (xy 134.981851 70.912718) (xy 134.773803 70.753075) (xy 134.5467 70.621958) (xy 134.54669 70.621953) + (xy 134.304428 70.521605) (xy 134.304421 70.521603) (xy 134.304419 70.521602) (xy 134.051116 70.45373) + (xy 133.993339 70.446123) (xy 133.791127 70.4195) (xy 133.79112 70.4195) (xy 133.52888 70.4195) + (xy 133.528872 70.4195) (xy 133.297772 70.449926) (xy 133.268884 70.45373) (xy 133.048737 70.512718) + (xy 133.015581 70.521602) (xy 133.015571 70.521605) (xy 132.773309 70.621953) (xy 132.773299 70.621958) + (xy 132.546196 70.753075) (xy 132.338148 70.912718) (xy 132.152718 71.098148) (xy 131.993075 71.306196) + (xy 131.861958 71.533299) (xy 131.861953 71.533309) (xy 131.761605 71.775571) (xy 131.761602 71.775581) + (xy 131.69373 72.028884) (xy 131.693106 72.033627) (xy 131.6595 72.288872) (xy 123.6105 72.288872) + (xy 123.6105 72.23888) (xy 123.57627 71.978884) (xy 123.508398 71.725581) (xy 123.508394 71.725571) + (xy 123.408046 71.483309) (xy 123.408041 71.483299) (xy 123.276924 71.256196) (xy 123.130239 71.065035) + (xy 123.117282 71.048149) (xy 123.117281 71.048148) (xy 123.117274 71.04814) (xy 122.93186 70.862726) + (xy 122.931851 70.862718) (xy 122.723803 70.703075) (xy 122.4967 70.571958) (xy 122.49669 70.571953) + (xy 122.254428 70.471605) (xy 122.254421 70.471603) (xy 122.254419 70.471602) (xy 122.001116 70.40373) + (xy 121.943339 70.396123) (xy 121.741127 70.3695) (xy 121.74112 70.3695) (xy 121.47888 70.3695) + (xy 121.478872 70.3695) (xy 121.247772 70.399926) (xy 121.218884 70.40373) (xy 121.064048 70.445218) + (xy 120.965581 70.471602) (xy 120.965571 70.471605) (xy 120.723309 70.571953) (xy 120.723299 70.571958) + (xy 120.496196 70.703075) (xy 120.288148 70.862718) (xy 120.102718 71.048148) (xy 119.943075 71.256196) + (xy 119.811958 71.483299) (xy 119.811953 71.483309) (xy 119.711605 71.725571) (xy 119.711602 71.725581) + (xy 119.651168 71.951127) (xy 119.64373 71.978885) (xy 119.6095 72.238872) (xy 117.306727 72.238872) + (xy 117.327167 72.08362) (xy 117.327167 71.82138) (xy 117.292937 71.561384) (xy 117.225065 71.308081) + (xy 117.221967 71.300602) (xy 117.124713 71.065809) (xy 117.124708 71.065799) (xy 116.993591 70.838696) + (xy 116.833948 70.630648) (xy 116.833941 70.63064) (xy 116.648527 70.445226) (xy 116.648518 70.445218) + (xy 116.44047 70.285575) (xy 116.213367 70.154458) (xy 116.213357 70.154453) (xy 115.971095 70.054105) + (xy 115.971088 70.054103) (xy 115.971086 70.054102) (xy 115.717783 69.98623) (xy 115.660006 69.978623) + (xy 115.457794 69.952) (xy 115.457787 69.952) (xy 115.195547 69.952) (xy 115.195539 69.952) (xy 114.964439 69.982426) + (xy 114.935551 69.98623) (xy 114.802212 70.021958) (xy 114.682248 70.054102) (xy 114.682238 70.054105) + (xy 114.439976 70.154453) (xy 114.439966 70.154458) (xy 114.212863 70.285575) (xy 114.004815 70.445218) + (xy 113.819385 70.630648) (xy 113.659742 70.838696) (xy 113.528625 71.065799) (xy 113.52862 71.065809) + (xy 113.428272 71.308071) (xy 113.428269 71.308081) (xy 113.367923 71.533299) (xy 113.360397 71.561385) + (xy 113.326167 71.821372) (xy 105.277167 71.821372) (xy 105.277167 71.77138) (xy 105.242937 71.511384) + (xy 105.175065 71.258081) (xy 105.146308 71.188656) (xy 105.074713 71.015809) (xy 105.074708 71.015799) + (xy 104.943591 70.788696) (xy 104.783948 70.580648) (xy 104.783941 70.58064) (xy 104.598527 70.395226) + (xy 104.598518 70.395218) (xy 104.39047 70.235575) (xy 104.163367 70.104458) (xy 104.163357 70.104453) + (xy 103.921095 70.004105) (xy 103.921088 70.004103) (xy 103.921086 70.004102) (xy 103.667783 69.93623) + (xy 103.59659 69.926857) (xy 103.407794 69.902) (xy 103.407787 69.902) (xy 103.145547 69.902) (xy 103.145539 69.902) + (xy 102.918888 69.931841) (xy 102.885551 69.93623) (xy 102.745662 69.973713) (xy 102.632248 70.004102) + (xy 102.632238 70.004105) (xy 102.389976 70.104453) (xy 102.389966 70.104458) (xy 102.162863 70.235575) + (xy 101.954815 70.395218) (xy 101.769385 70.580648) (xy 101.609742 70.788696) (xy 101.478625 71.015799) + (xy 101.47862 71.015809) (xy 101.378272 71.258071) (xy 101.378269 71.258081) (xy 101.317923 71.483299) + (xy 101.310397 71.511385) (xy 101.276167 71.771372) (xy 98.993833 71.771372) (xy 98.993833 71.73888) + (xy 98.959603 71.478884) (xy 98.891731 71.225581) (xy 98.876436 71.188656) (xy 98.791379 70.983309) + (xy 98.791374 70.983299) (xy 98.660257 70.756196) (xy 98.525553 70.580649) (xy 98.500615 70.548149) + (xy 98.500614 70.548148) (xy 98.500607 70.54814) (xy 98.315193 70.362726) (xy 98.315184 70.362718) + (xy 98.107136 70.203075) (xy 97.880033 70.071958) (xy 97.880023 70.071953) (xy 97.637761 69.971605) + (xy 97.637754 69.971603) (xy 97.637752 69.971602) (xy 97.384449 69.90373) (xy 97.326672 69.896123) + (xy 97.12446 69.8695) (xy 97.124453 69.8695) (xy 96.862213 69.8695) (xy 96.862205 69.8695) (xy 96.631105 69.899926) + (xy 96.602217 69.90373) (xy 96.497305 69.931841) (xy 96.348914 69.971602) (xy 96.348904 69.971605) + (xy 96.106642 70.071953) (xy 96.106632 70.071958) (xy 95.879529 70.203075) (xy 95.671481 70.362718) + (xy 95.486051 70.548148) (xy 95.326408 70.756196) (xy 95.195291 70.983299) (xy 95.195286 70.983309) + (xy 95.094938 71.225571) (xy 95.094935 71.225581) (xy 95.027063 71.478884) (xy 95.023259 71.507772) + (xy 94.992833 71.738872) (xy 86.943833 71.738872) (xy 86.943833 71.68888) (xy 86.909603 71.428884) + (xy 86.841731 71.175581) (xy 86.833571 71.15588) (xy 86.741379 70.933309) (xy 86.741374 70.933299) + (xy 86.610257 70.706196) (xy 86.487757 70.546554) (xy 86.450615 70.498149) (xy 86.450614 70.498148) + (xy 86.450607 70.49814) (xy 86.265193 70.312726) (xy 86.265184 70.312718) (xy 86.057136 70.153075) + (xy 85.830033 70.021958) (xy 85.830023 70.021953) (xy 85.587761 69.921605) (xy 85.587754 69.921603) + (xy 85.587752 69.921602) (xy 85.334449 69.85373) (xy 85.276672 69.846123) (xy 85.07446 69.8195) + (xy 85.074453 69.8195) (xy 84.812213 69.8195) (xy 84.812205 69.8195) (xy 84.581105 69.849926) (xy 84.552217 69.85373) + (xy 84.404371 69.893345) (xy 84.298914 69.921602) (xy 84.298904 69.921605) (xy 84.056642 70.021953) + (xy 84.056632 70.021958) (xy 83.829529 70.153075) (xy 83.621481 70.312718) (xy 83.436051 70.498148) + (xy 83.276408 70.706196) (xy 83.145291 70.933299) (xy 83.145286 70.933309) (xy 83.044938 71.175571) + (xy 83.044935 71.175581) (xy 82.977063 71.428884) (xy 82.973259 71.457772) (xy 82.942833 71.688872) + (xy 80.627585 71.688872) (xy 80.62627 71.678884) (xy 80.558398 71.425581) (xy 80.549795 71.404812) + (xy 80.458046 71.183309) (xy 80.458041 71.183299) (xy 80.326924 70.956196) (xy 80.198395 70.788696) + (xy 80.167282 70.748149) (xy 80.167281 70.748148) (xy 80.167274 70.74814) (xy 79.98186 70.562726) + (xy 79.981851 70.562718) (xy 79.773803 70.403075) (xy 79.5467 70.271958) (xy 79.54669 70.271953) + (xy 79.304428 70.171605) (xy 79.304421 70.171603) (xy 79.304419 70.171602) (xy 79.051116 70.10373) + (xy 78.993339 70.096123) (xy 78.791127 70.0695) (xy 78.79112 70.0695) (xy 78.52888 70.0695) (xy 78.528872 70.0695) + (xy 78.297772 70.099926) (xy 78.268884 70.10373) (xy 78.042064 70.164506) (xy 78.015581 70.171602) + (xy 78.015571 70.171605) (xy 77.773309 70.271953) (xy 77.773299 70.271958) (xy 77.546196 70.403075) + (xy 77.338148 70.562718) (xy 77.152718 70.748148) (xy 76.993075 70.956196) (xy 76.861958 71.183299) + (xy 76.861953 71.183309) (xy 76.761605 71.425571) (xy 76.761602 71.425581) (xy 76.707128 71.628884) + (xy 76.69373 71.678885) (xy 76.6595 71.938872) (xy 68.6105 71.938872) (xy 68.6105 71.88888) (xy 68.57627 71.628884) + (xy 68.508398 71.375581) (xy 68.480439 71.308081) (xy 68.408046 71.133309) (xy 68.408041 71.133299) + (xy 68.276924 70.906196) (xy 68.130657 70.71558) (xy 68.117282 70.698149) (xy 68.117281 70.698148) + (xy 68.117274 70.69814) (xy 67.93186 70.512726) (xy 67.931851 70.512718) (xy 67.723803 70.353075) + (xy 67.4967 70.221958) (xy 67.49669 70.221953) (xy 67.254428 70.121605) (xy 67.254421 70.121603) + (xy 67.254419 70.121602) (xy 67.001116 70.05373) (xy 66.943339 70.046123) (xy 66.741127 70.0195) + (xy 66.74112 70.0195) (xy 66.47888 70.0195) (xy 66.478872 70.0195) (xy 66.247772 70.049926) (xy 66.218884 70.05373) + (xy 65.97156 70.12) (xy 65.965581 70.121602) (xy 65.965571 70.121605) (xy 65.723309 70.221953) (xy 65.723299 70.221958) + (xy 65.496196 70.353075) (xy 65.288148 70.512718) (xy 65.102718 70.698148) (xy 64.943075 70.906196) + (xy 64.811958 71.133299) (xy 64.811953 71.133309) (xy 64.711605 71.375571) (xy 64.711602 71.375581) + (xy 64.661817 71.561384) (xy 64.64373 71.628885) (xy 64.6095 71.888872) (xy 58.4505 71.888872) (xy 58.4505 69.474986) + (xy 137.210001 69.474986) (xy 137.220494 69.577697) (xy 137.275641 69.744119) (xy 137.275643 69.744124) + (xy 137.367684 69.893345) (xy 137.491654 70.017315) (xy 137.640875 70.109356) (xy 137.64088 70.109358) + (xy 137.807302 70.164505) (xy 137.807309 70.164506) (xy 137.910019 70.174999) (xy 138.047499 70.174999) + (xy 138.0475 70.174998) (xy 138.0475 69.2) (xy 137.210001 69.2) (xy 137.210001 69.474986) (xy 58.4505 69.474986) + (xy 58.4505 68.425013) (xy 137.21 68.425013) (xy 137.21 68.7) (xy 138.0475 68.7) (xy 138.0475 67.725) + (xy 137.910027 67.725) (xy 137.910012 67.725001) (xy 137.807302 67.735494) (xy 137.64088 67.790641) + (xy 137.640875 67.790643) (xy 137.491654 67.882684) (xy 137.367684 68.006654) (xy 137.275643 68.155875) + (xy 137.275641 68.15588) (xy 137.220494 68.322302) (xy 137.220493 68.322309) (xy 137.21 68.425013) + (xy 58.4505 68.425013) (xy 58.4505 60.078711) (xy 59.1495 60.078711) (xy 59.1495 60.321288) (xy 59.181161 60.561785) + (xy 59.243947 60.796104) (xy 59.309119 60.953442) (xy 59.336776 61.020212) (xy 59.458064 61.230289) + (xy 59.458066 61.230292) (xy 59.458067 61.230293) (xy 59.605733 61.422736) (xy 59.605739 61.422743) + (xy 59.777256 61.59426) (xy 59.777263 61.594266) (xy 59.835115 61.638657) (xy 59.969711 61.741936) + (xy 60.179788 61.863224) (xy 60.4039 61.956054) (xy 60.638211 62.018838) (xy 60.818586 62.042584) + (xy 60.878711 62.0505) (xy 60.878712 62.0505) (xy 61.121289 62.0505) (xy 61.169388 62.044167) (xy 61.361789 62.018838) + (xy 61.5961 61.956054) (xy 61.820212 61.863224) (xy 62.030289 61.741936) (xy 62.222738 61.594265) + (xy 62.394265 61.422738) (xy 62.491943 61.295441) (xy 65.5595 61.295441) (xy 65.5595 61.544558) + (xy 65.559501 61.544575) (xy 65.58924 61.77047) (xy 65.592018 61.791565) (xy 65.635066 61.952222) + (xy 65.656498 62.032207) (xy 65.75183 62.262361) (xy 65.751837 62.262376) (xy 65.8764 62.478126) + (xy 66.02806 62.675774) (xy 66.028066 62.675781) (xy 66.204218 62.851933) (xy 66.204225 62.851939) + (xy 66.401873 63.003599) (xy 66.617623 63.128162) (xy 66.617638 63.128169) (xy 66.716825 63.169253) + (xy 66.847793 63.223502) (xy 67.088435 63.287982) (xy 67.335435 63.3205) (xy 67.335442 63.3205) + (xy 67.584558 63.3205) (xy 67.584565 63.3205) (xy 67.831565 63.287982) (xy 68.072207 63.223502) + (xy 68.302373 63.128164) (xy 68.518127 63.003599) (xy 68.715776 62.851938) (xy 68.891938 62.675776) + (xy 69.043599 62.478127) (xy 69.168164 62.262373) (xy 69.263502 62.032207) (xy 69.327982 61.791565) + (xy 69.3605 61.544565) (xy 69.3605 61.295441) (xy 70.5595 61.295441) (xy 70.5595 61.544558) (xy 70.559501 61.544575) + (xy 70.58924 61.77047) (xy 70.592018 61.791565) (xy 70.635066 61.952222) (xy 70.656498 62.032207) + (xy 70.75183 62.262361) (xy 70.751837 62.262376) (xy 70.8764 62.478126) (xy 71.02806 62.675774) + (xy 71.028066 62.675781) (xy 71.204218 62.851933) (xy 71.204225 62.851939) (xy 71.401873 63.003599) + (xy 71.617623 63.128162) (xy 71.617638 63.128169) (xy 71.716825 63.169253) (xy 71.847793 63.223502) + (xy 72.088435 63.287982) (xy 72.335435 63.3205) (xy 72.335442 63.3205) (xy 72.584558 63.3205) (xy 72.584565 63.3205) + (xy 72.831565 63.287982) (xy 73.072207 63.223502) (xy 73.302373 63.128164) (xy 73.518127 63.003599) + (xy 73.715776 62.851938) (xy 73.891938 62.675776) (xy 74.043599 62.478127) (xy 74.168164 62.262373) + (xy 74.263502 62.032207) (xy 74.327982 61.791565) (xy 74.3605 61.544565) (xy 74.3605 61.295435) + (xy 74.327982 61.048435) (xy 74.263502 60.807793) (xy 74.20306 60.661873) (xy 74.168169 60.577638) + (xy 74.168162 60.577623) (xy 74.043599 60.361873) (xy 73.99023 60.292321) (xy 73.934724 60.219984) + (xy 75.5595 60.219984) (xy 75.5595 62.620015) (xy 75.57 62.722795) (xy 75.570001 62.722796) (xy 75.625186 62.889335) + (xy 75.625187 62.889337) (xy 75.717286 63.038651) (xy 75.717289 63.038655) (xy 75.841344 63.16271) + (xy 75.841348 63.162713) (xy 75.990662 63.254812) (xy 75.990664 63.254813) (xy 75.990666 63.254814) + (xy 76.157203 63.309999) (xy 76.259992 63.3205) (xy 76.259997 63.3205) (xy 78.660003 63.3205) (xy 78.660008 63.3205) + (xy 78.762797 63.309999) (xy 78.929334 63.254814) (xy 79.078655 63.162711) (xy 79.202711 63.038655) + (xy 79.294814 62.889334) (xy 79.349999 62.722797) (xy 79.3605 62.620008) (xy 79.3605 61.495441) + (xy 83.892833 61.495441) (xy 83.892833 61.744558) (xy 83.892834 61.744575) (xy 83.92535 61.991561) + (xy 83.989831 62.232207) (xy 84.085163 62.462361) (xy 84.08517 62.462376) (xy 84.209733 62.678126) + (xy 84.361393 62.875774) (xy 84.361399 62.875781) (xy 84.537551 63.051933) (xy 84.537558 63.051939) + (xy 84.735206 63.203599) (xy 84.950956 63.328162) (xy 84.950971 63.328169) (xy 85.050158 63.369253) + (xy 85.181126 63.423502) (xy 85.421768 63.487982) (xy 85.668768 63.5205) (xy 85.668775 63.5205) + (xy 85.917891 63.5205) (xy 85.917898 63.5205) (xy 86.164898 63.487982) (xy 86.40554 63.423502) (xy 86.635706 63.328164) + (xy 86.85146 63.203599) (xy 87.049109 63.051938) (xy 87.225271 62.875776) (xy 87.376932 62.678127) + (xy 87.501497 62.462373) (xy 87.596835 62.232207) (xy 87.661315 61.991565) (xy 87.693833 61.744565) + (xy 87.693833 61.495441) (xy 88.892833 61.495441) (xy 88.892833 61.744558) (xy 88.892834 61.744575) + (xy 88.92535 61.991561) (xy 88.989831 62.232207) (xy 89.085163 62.462361) (xy 89.08517 62.462376) + (xy 89.209733 62.678126) (xy 89.361393 62.875774) (xy 89.361399 62.875781) (xy 89.537551 63.051933) + (xy 89.537558 63.051939) (xy 89.735206 63.203599) (xy 89.950956 63.328162) (xy 89.950971 63.328169) + (xy 90.050158 63.369253) (xy 90.181126 63.423502) (xy 90.421768 63.487982) (xy 90.668768 63.5205) + (xy 90.668775 63.5205) (xy 90.917891 63.5205) (xy 90.917898 63.5205) (xy 91.164898 63.487982) (xy 91.40554 63.423502) + (xy 91.635706 63.328164) (xy 91.85146 63.203599) (xy 92.049109 63.051938) (xy 92.225271 62.875776) + (xy 92.376932 62.678127) (xy 92.501497 62.462373) (xy 92.596835 62.232207) (xy 92.661315 61.991565) + (xy 92.693833 61.744565) (xy 92.693833 61.495435) (xy 92.661315 61.248435) (xy 92.596835 61.007793) + (xy 92.513992 60.807792) (xy 92.501502 60.777638) (xy 92.501495 60.777623) (xy 92.376932 60.561873) + (xy 92.376864 60.561785) (xy 92.302004 60.464225) (xy 92.268057 60.419984) (xy 93.892833 60.419984) + (xy 93.892833 62.820015) (xy 93.903333 62.922795) (xy 93.903334 62.922797) (xy 93.914484 62.956446) + (xy 93.958519 63.089335) (xy 93.95852 63.089337) (xy 94.050619 63.238651) (xy 94.050622 63.238655) + (xy 94.174677 63.36271) (xy 94.174681 63.362713) (xy 94.323995 63.454812) (xy 94.323997 63.454813) + (xy 94.323999 63.454814) (xy 94.490536 63.509999) (xy 94.593325 63.5205) (xy 94.59333 63.5205) (xy 96.993336 63.5205) + (xy 96.993341 63.5205) (xy 97.09613 63.509999) (xy 97.262667 63.454814) (xy 97.411988 63.362711) + (xy 97.536044 63.238655) (xy 97.628147 63.089334) (xy 97.683332 62.922797) (xy 97.693833 62.820008) + (xy 97.693833 61.495441) (xy 102.226167 61.495441) (xy 102.226167 61.744558) (xy 102.226168 61.744575) + (xy 102.258684 61.991561) (xy 102.323165 62.232207) (xy 102.418497 62.462361) (xy 102.418504 62.462376) + (xy 102.543067 62.678126) (xy 102.694727 62.875774) (xy 102.694733 62.875781) (xy 102.870885 63.051933) + (xy 102.870892 63.051939) (xy 103.06854 63.203599) (xy 103.28429 63.328162) (xy 103.284305 63.328169) + (xy 103.383492 63.369253) (xy 103.51446 63.423502) (xy 103.755102 63.487982) (xy 104.002102 63.5205) + (xy 104.002109 63.5205) (xy 104.251225 63.5205) (xy 104.251232 63.5205) (xy 104.498232 63.487982) + (xy 104.738874 63.423502) (xy 104.96904 63.328164) (xy 105.184794 63.203599) (xy 105.382443 63.051938) + (xy 105.558605 62.875776) (xy 105.710266 62.678127) (xy 105.834831 62.462373) (xy 105.930169 62.232207) + (xy 105.994649 61.991565) (xy 106.027167 61.744565) (xy 106.027167 61.495441) (xy 107.226167 61.495441) + (xy 107.226167 61.744558) (xy 107.226168 61.744575) (xy 107.258684 61.991561) (xy 107.323165 62.232207) + (xy 107.418497 62.462361) (xy 107.418504 62.462376) (xy 107.543067 62.678126) (xy 107.694727 62.875774) + (xy 107.694733 62.875781) (xy 107.870885 63.051933) (xy 107.870892 63.051939) (xy 108.06854 63.203599) + (xy 108.28429 63.328162) (xy 108.284305 63.328169) (xy 108.383492 63.369253) (xy 108.51446 63.423502) + (xy 108.755102 63.487982) (xy 109.002102 63.5205) (xy 109.002109 63.5205) (xy 109.251225 63.5205) + (xy 109.251232 63.5205) (xy 109.498232 63.487982) (xy 109.738874 63.423502) (xy 109.96904 63.328164) + (xy 110.184794 63.203599) (xy 110.382443 63.051938) (xy 110.558605 62.875776) (xy 110.710266 62.678127) + (xy 110.834831 62.462373) (xy 110.930169 62.232207) (xy 110.994649 61.991565) (xy 111.027167 61.744565) + (xy 111.027167 61.495435) (xy 110.994649 61.248435) (xy 110.930169 61.007793) (xy 110.847326 60.807792) + (xy 110.834836 60.777638) (xy 110.834829 60.777623) (xy 110.710266 60.561873) (xy 110.710198 60.561785) + (xy 110.635338 60.464225) (xy 110.601391 60.419984) (xy 112.226167 60.419984) (xy 112.226167 62.820015) + (xy 112.236667 62.922795) (xy 112.236668 62.922797) (xy 112.247818 62.956446) (xy 112.291853 63.089335) + (xy 112.291854 63.089337) (xy 112.383953 63.238651) (xy 112.383956 63.238655) (xy 112.508011 63.36271) + (xy 112.508015 63.362713) (xy 112.657329 63.454812) (xy 112.657331 63.454813) (xy 112.657333 63.454814) + (xy 112.82387 63.509999) (xy 112.926659 63.5205) (xy 112.926664 63.5205) (xy 115.32667 63.5205) + (xy 115.326675 63.5205) (xy 115.429464 63.509999) (xy 115.596001 63.454814) (xy 115.745322 63.362711) + (xy 115.869378 63.238655) (xy 115.961481 63.089334) (xy 116.016666 62.922797) (xy 116.027167 62.820008) + (xy 116.027167 61.595441) (xy 120.5595 61.595441) (xy 120.5595 61.844558) (xy 120.559501 61.844575) + (xy 120.590782 62.082181) (xy 120.592018 62.091565) (xy 120.61032 62.159867) (xy 120.656498 62.332207) + (xy 120.75183 62.562361) (xy 120.751837 62.562376) (xy 120.8764 62.778126) (xy 121.02806 62.975774) + (xy 121.028066 62.975781) (xy 121.204218 63.151933) (xy 121.204225 63.151939) (xy 121.401873 63.303599) + (xy 121.617623 63.428162) (xy 121.617638 63.428169) (xy 121.716825 63.469253) (xy 121.847793 63.523502) + (xy 122.088435 63.587982) (xy 122.335435 63.6205) (xy 122.335442 63.6205) (xy 122.584558 63.6205) + (xy 122.584565 63.6205) (xy 122.831565 63.587982) (xy 123.072207 63.523502) (xy 123.302373 63.428164) + (xy 123.518127 63.303599) (xy 123.715776 63.151938) (xy 123.891938 62.975776) (xy 124.043599 62.778127) + (xy 124.168164 62.562373) (xy 124.263502 62.332207) (xy 124.327982 62.091565) (xy 124.3605 61.844565) + (xy 124.3605 61.595441) (xy 125.5595 61.595441) (xy 125.5595 61.844558) (xy 125.559501 61.844575) + (xy 125.590782 62.082181) (xy 125.592018 62.091565) (xy 125.61032 62.159867) (xy 125.656498 62.332207) + (xy 125.75183 62.562361) (xy 125.751837 62.562376) (xy 125.8764 62.778126) (xy 126.02806 62.975774) + (xy 126.028066 62.975781) (xy 126.204218 63.151933) (xy 126.204225 63.151939) (xy 126.401873 63.303599) + (xy 126.617623 63.428162) (xy 126.617638 63.428169) (xy 126.716825 63.469253) (xy 126.847793 63.523502) + (xy 127.088435 63.587982) (xy 127.335435 63.6205) (xy 127.335442 63.6205) (xy 127.584558 63.6205) + (xy 127.584565 63.6205) (xy 127.831565 63.587982) (xy 128.072207 63.523502) (xy 128.302373 63.428164) + (xy 128.518127 63.303599) (xy 128.715776 63.151938) (xy 128.891938 62.975776) (xy 129.043599 62.778127) + (xy 129.168164 62.562373) (xy 129.263502 62.332207) (xy 129.327982 62.091565) (xy 129.3605 61.844565) + (xy 129.3605 61.595435) (xy 129.327982 61.348435) (xy 129.263502 61.107793) (xy 129.168164 60.877627) + (xy 129.130874 60.813039) (xy 129.043599 60.661873) (xy 128.99023 60.592321) (xy 128.934724 60.519984) + (xy 130.5595 60.519984) (xy 130.5595 62.920015) (xy 130.57 63.022795) (xy 130.570001 63.022797) + (xy 130.592049 63.089334) (xy 130.625186 63.189335) (xy 130.625187 63.189337) (xy 130.717286 63.338651) + (xy 130.717289 63.338655) (xy 130.841344 63.46271) (xy 130.841348 63.462713) (xy 130.990662 63.554812) + (xy 130.990664 63.554813) (xy 130.990666 63.554814) (xy 131.157203 63.609999) (xy 131.259992 63.6205) + (xy 131.259997 63.6205) (xy 133.660003 63.6205) (xy 133.660008 63.6205) (xy 133.762797 63.609999) + (xy 133.929334 63.554814) (xy 134.078655 63.462711) (xy 134.202711 63.338655) (xy 134.294814 63.189334) + (xy 134.349999 63.022797) (xy 134.3605 62.920008) (xy 134.3605 60.519992) (xy 134.349999 60.417203) + (xy 134.294814 60.250666) (xy 134.256198 60.18806) (xy 134.237016 60.156961) (xy 134.202713 60.101348) + (xy 134.20271 60.101344) (xy 134.196379 60.095013) (xy 142.0975 60.095013) (xy 142.0975 60.37) (xy 142.935 60.37) + (xy 142.935 59.395) (xy 142.797527 59.395) (xy 142.797512 59.395001) (xy 142.694802 59.405494) (xy 142.52838 59.460641) + (xy 142.528375 59.460643) (xy 142.379154 59.552684) (xy 142.255184 59.676654) (xy 142.163143 59.825875) + (xy 142.163141 59.82588) (xy 142.107994 59.992302) (xy 142.107993 59.992309) (xy 142.0975 60.095013) + (xy 134.196379 60.095013) (xy 134.078655 59.977289) (xy 134.078651 59.977286) (xy 133.929337 59.885187) + (xy 133.929335 59.885186) (xy 133.826282 59.851038) (xy 133.762797 59.830001) (xy 133.762795 59.83) + (xy 133.660015 59.8195) (xy 133.660008 59.8195) (xy 131.259992 59.8195) (xy 131.259984 59.8195) + (xy 131.157204 59.83) (xy 131.157203 59.830001) (xy 130.990664 59.885186) (xy 130.990662 59.885187) + (xy 130.841348 59.977286) (xy 130.841344 59.977289) (xy 130.717289 60.101344) (xy 130.717286 60.101348) + (xy 130.625187 60.250662) (xy 130.625186 60.250664) (xy 130.570001 60.417203) (xy 130.57 60.417204) + (xy 130.5595 60.519984) (xy 128.934724 60.519984) (xy 128.891939 60.464225) (xy 128.891933 60.464218) + (xy 128.715781 60.288066) (xy 128.715774 60.28806) (xy 128.518126 60.1364) (xy 128.302376 60.011837) + (xy 128.302361 60.01183) (xy 128.072207 59.916498) (xy 128.054786 59.91183) (xy 127.831565 59.852018) + (xy 127.831564 59.852017) (xy 127.831561 59.852017) (xy 127.584575 59.819501) (xy 127.58457 59.8195) + (xy 127.584565 59.8195) (xy 127.335435 59.8195) (xy 127.335429 59.8195) (xy 127.335424 59.819501) + (xy 127.088438 59.852017) (xy 126.847792 59.916498) (xy 126.617638 60.01183) (xy 126.617623 60.011837) + (xy 126.401873 60.1364) (xy 126.204225 60.28806) (xy 126.204218 60.288066) (xy 126.028066 60.464218) + (xy 126.02806 60.464225) (xy 125.8764 60.661873) (xy 125.751837 60.877623) (xy 125.75183 60.877638) + (xy 125.656498 61.107792) (xy 125.592017 61.348438) (xy 125.559501 61.595424) (xy 125.5595 61.595441) + (xy 124.3605 61.595441) (xy 124.3605 61.595435) (xy 124.327982 61.348435) (xy 124.263502 61.107793) + (xy 124.168164 60.877627) (xy 124.130874 60.813039) (xy 124.043599 60.661873) (xy 123.891939 60.464225) + (xy 123.891933 60.464218) (xy 123.715781 60.288066) (xy 123.715774 60.28806) (xy 123.518126 60.1364) + (xy 123.302376 60.011837) (xy 123.302361 60.01183) (xy 123.072207 59.916498) (xy 123.054786 59.91183) + (xy 122.831565 59.852018) (xy 122.831564 59.852017) (xy 122.831561 59.852017) (xy 122.584575 59.819501) + (xy 122.58457 59.8195) (xy 122.584565 59.8195) (xy 122.335435 59.8195) (xy 122.335429 59.8195) (xy 122.335424 59.819501) + (xy 122.088438 59.852017) (xy 121.847792 59.916498) (xy 121.617638 60.01183) (xy 121.617623 60.011837) + (xy 121.401873 60.1364) (xy 121.204225 60.28806) (xy 121.204218 60.288066) (xy 121.028066 60.464218) + (xy 121.02806 60.464225) (xy 120.8764 60.661873) (xy 120.751837 60.877623) (xy 120.75183 60.877638) + (xy 120.656498 61.107792) (xy 120.592017 61.348438) (xy 120.559501 61.595424) (xy 120.5595 61.595441) + (xy 116.027167 61.595441) (xy 116.027167 60.419992) (xy 116.016666 60.317203) (xy 115.961481 60.150666) + (xy 115.954747 60.139749) (xy 115.86938 60.001348) (xy 115.869377 60.001344) (xy 115.745322 59.877289) + (xy 115.745318 59.877286) (xy 115.596004 59.785187) (xy 115.596002 59.785186) (xy 115.452402 59.737602) + (xy 115.429464 59.730001) (xy 115.429462 59.73) (xy 115.326682 59.7195) (xy 115.326675 59.7195) + (xy 112.926659 59.7195) (xy 112.926651 59.7195) (xy 112.823871 59.73) (xy 112.82387 59.730001) (xy 112.657331 59.785186) + (xy 112.657329 59.785187) (xy 112.508015 59.877286) (xy 112.508011 59.877289) (xy 112.383956 60.001344) + (xy 112.383953 60.001348) (xy 112.291854 60.150662) (xy 112.291853 60.150664) (xy 112.236668 60.317203) + (xy 112.236667 60.317204) (xy 112.226167 60.419984) (xy 110.601391 60.419984) (xy 110.558606 60.364225) + (xy 110.5586 60.364218) (xy 110.382448 60.188066) (xy 110.382441 60.18806) (xy 110.184793 60.0364) + (xy 109.969043 59.911837) (xy 109.969028 59.91183) (xy 109.738874 59.816498) (xy 109.610126 59.782) + (xy 109.498232 59.752018) (xy 109.498231 59.752017) (xy 109.498228 59.752017) (xy 109.251242 59.719501) + (xy 109.251237 59.7195) (xy 109.251232 59.7195) (xy 109.002102 59.7195) (xy 109.002096 59.7195) + (xy 109.002091 59.719501) (xy 108.755105 59.752017) (xy 108.514459 59.816498) (xy 108.284305 59.91183) + (xy 108.28429 59.911837) (xy 108.06854 60.0364) (xy 107.870892 60.18806) (xy 107.870885 60.188066) + (xy 107.694733 60.364218) (xy 107.694727 60.364225) (xy 107.543067 60.561873) (xy 107.418504 60.777623) + (xy 107.418497 60.777638) (xy 107.323165 61.007792) (xy 107.258684 61.248438) (xy 107.226168 61.495424) + (xy 107.226167 61.495441) (xy 106.027167 61.495441) (xy 106.027167 61.495435) (xy 105.994649 61.248435) + (xy 105.930169 61.007793) (xy 105.847326 60.807792) (xy 105.834836 60.777638) (xy 105.834829 60.777623) + (xy 105.710266 60.561873) (xy 105.558606 60.364225) (xy 105.5586 60.364218) (xy 105.382448 60.188066) + (xy 105.382441 60.18806) (xy 105.184793 60.0364) (xy 104.969043 59.911837) (xy 104.969028 59.91183) + (xy 104.738874 59.816498) (xy 104.610126 59.782) (xy 104.498232 59.752018) (xy 104.498231 59.752017) + (xy 104.498228 59.752017) (xy 104.251242 59.719501) (xy 104.251237 59.7195) (xy 104.251232 59.7195) + (xy 104.002102 59.7195) (xy 104.002096 59.7195) (xy 104.002091 59.719501) (xy 103.755105 59.752017) + (xy 103.514459 59.816498) (xy 103.284305 59.91183) (xy 103.28429 59.911837) (xy 103.06854 60.0364) + (xy 102.870892 60.18806) (xy 102.870885 60.188066) (xy 102.694733 60.364218) (xy 102.694727 60.364225) + (xy 102.543067 60.561873) (xy 102.418504 60.777623) (xy 102.418497 60.777638) (xy 102.323165 61.007792) + (xy 102.258684 61.248438) (xy 102.226168 61.495424) (xy 102.226167 61.495441) (xy 97.693833 61.495441) + (xy 97.693833 60.419992) (xy 97.683332 60.317203) (xy 97.628147 60.150666) (xy 97.621413 60.139749) + (xy 97.536046 60.001348) (xy 97.536043 60.001344) (xy 97.411988 59.877289) (xy 97.411984 59.877286) + (xy 97.26267 59.785187) (xy 97.262668 59.785186) (xy 97.119068 59.737602) (xy 97.09613 59.730001) + (xy 97.096128 59.73) (xy 96.993348 59.7195) (xy 96.993341 59.7195) (xy 94.593325 59.7195) (xy 94.593317 59.7195) + (xy 94.490537 59.73) (xy 94.490536 59.730001) (xy 94.323997 59.785186) (xy 94.323995 59.785187) + (xy 94.174681 59.877286) (xy 94.174677 59.877289) (xy 94.050622 60.001344) (xy 94.050619 60.001348) + (xy 93.95852 60.150662) (xy 93.958519 60.150664) (xy 93.903334 60.317203) (xy 93.903333 60.317204) + (xy 93.892833 60.419984) (xy 92.268057 60.419984) (xy 92.225272 60.364225) (xy 92.225266 60.364218) + (xy 92.049114 60.188066) (xy 92.049107 60.18806) (xy 91.851459 60.0364) (xy 91.635709 59.911837) + (xy 91.635694 59.91183) (xy 91.40554 59.816498) (xy 91.276792 59.782) (xy 91.164898 59.752018) (xy 91.164897 59.752017) + (xy 91.164894 59.752017) (xy 90.917908 59.719501) (xy 90.917903 59.7195) (xy 90.917898 59.7195) + (xy 90.668768 59.7195) (xy 90.668762 59.7195) (xy 90.668757 59.719501) (xy 90.421771 59.752017) + (xy 90.181125 59.816498) (xy 89.950971 59.91183) (xy 89.950956 59.911837) (xy 89.735206 60.0364) + (xy 89.537558 60.18806) (xy 89.537551 60.188066) (xy 89.361399 60.364218) (xy 89.361393 60.364225) + (xy 89.209733 60.561873) (xy 89.08517 60.777623) (xy 89.085163 60.777638) (xy 88.989831 61.007792) + (xy 88.92535 61.248438) (xy 88.892834 61.495424) (xy 88.892833 61.495441) (xy 87.693833 61.495441) + (xy 87.693833 61.495435) (xy 87.661315 61.248435) (xy 87.596835 61.007793) (xy 87.513992 60.807792) + (xy 87.501502 60.777638) (xy 87.501495 60.777623) (xy 87.376932 60.561873) (xy 87.225272 60.364225) + (xy 87.225266 60.364218) (xy 87.049114 60.188066) (xy 87.049107 60.18806) (xy 86.851459 60.0364) + (xy 86.635709 59.911837) (xy 86.635694 59.91183) (xy 86.40554 59.816498) (xy 86.276792 59.782) (xy 86.164898 59.752018) + (xy 86.164897 59.752017) (xy 86.164894 59.752017) (xy 85.917908 59.719501) (xy 85.917903 59.7195) + (xy 85.917898 59.7195) (xy 85.668768 59.7195) (xy 85.668762 59.7195) (xy 85.668757 59.719501) (xy 85.421771 59.752017) + (xy 85.181125 59.816498) (xy 84.950971 59.91183) (xy 84.950956 59.911837) (xy 84.735206 60.0364) + (xy 84.537558 60.18806) (xy 84.537551 60.188066) (xy 84.361399 60.364218) (xy 84.361393 60.364225) + (xy 84.209733 60.561873) (xy 84.08517 60.777623) (xy 84.085163 60.777638) (xy 83.989831 61.007792) + (xy 83.92535 61.248438) (xy 83.892834 61.495424) (xy 83.892833 61.495441) (xy 79.3605 61.495441) + (xy 79.3605 60.219992) (xy 79.349999 60.117203) (xy 79.294814 59.950666) (xy 79.28209 59.930038) + (xy 79.202713 59.801348) (xy 79.20271 59.801344) (xy 79.078655 59.677289) (xy 79.078651 59.677286) + (xy 78.929337 59.585187) (xy 78.929335 59.585186) (xy 78.846065 59.557593) (xy 78.762797 59.530001) + (xy 78.762795 59.53) (xy 78.660015 59.5195) (xy 78.660008 59.5195) (xy 76.259992 59.5195) (xy 76.259984 59.5195) + (xy 76.157204 59.53) (xy 76.157203 59.530001) (xy 75.990664 59.585186) (xy 75.990662 59.585187) + (xy 75.841348 59.677286) (xy 75.841344 59.677289) (xy 75.717289 59.801344) (xy 75.717286 59.801348) + (xy 75.625187 59.950662) (xy 75.625186 59.950664) (xy 75.570001 60.117203) (xy 75.57 60.117204) + (xy 75.5595 60.219984) (xy 73.934724 60.219984) (xy 73.891939 60.164225) (xy 73.891933 60.164218) + (xy 73.715781 59.988066) (xy 73.715774 59.98806) (xy 73.518126 59.8364) (xy 73.302376 59.711837) + (xy 73.302361 59.71183) (xy 73.072207 59.616498) (xy 72.955349 59.585186) (xy 72.831565 59.552018) + (xy 72.831564 59.552017) (xy 72.831561 59.552017) (xy 72.584575 59.519501) (xy 72.58457 59.5195) + (xy 72.584565 59.5195) (xy 72.335435 59.5195) (xy 72.335429 59.5195) (xy 72.335424 59.519501) (xy 72.088438 59.552017) + (xy 71.847792 59.616498) (xy 71.617638 59.71183) (xy 71.617623 59.711837) (xy 71.401873 59.8364) + (xy 71.204225 59.98806) (xy 71.204218 59.988066) (xy 71.028066 60.164218) (xy 71.02806 60.164225) + (xy 70.8764 60.361873) (xy 70.751837 60.577623) (xy 70.75183 60.577638) (xy 70.656498 60.807792) + (xy 70.592017 61.048438) (xy 70.559501 61.295424) (xy 70.5595 61.295441) (xy 69.3605 61.295441) + (xy 69.3605 61.295435) (xy 69.327982 61.048435) (xy 69.263502 60.807793) (xy 69.20306 60.661873) + (xy 69.168169 60.577638) (xy 69.168162 60.577623) (xy 69.043599 60.361873) (xy 68.891939 60.164225) + (xy 68.891933 60.164218) (xy 68.715781 59.988066) (xy 68.715774 59.98806) (xy 68.518126 59.8364) + (xy 68.302376 59.711837) (xy 68.302361 59.71183) (xy 68.072207 59.616498) (xy 67.955349 59.585186) + (xy 67.831565 59.552018) (xy 67.831564 59.552017) (xy 67.831561 59.552017) (xy 67.584575 59.519501) + (xy 67.58457 59.5195) (xy 67.584565 59.5195) (xy 67.335435 59.5195) (xy 67.335429 59.5195) (xy 67.335424 59.519501) + (xy 67.088438 59.552017) (xy 66.847792 59.616498) (xy 66.617638 59.71183) (xy 66.617623 59.711837) + (xy 66.401873 59.8364) (xy 66.204225 59.98806) (xy 66.204218 59.988066) (xy 66.028066 60.164218) + (xy 66.02806 60.164225) (xy 65.8764 60.361873) (xy 65.751837 60.577623) (xy 65.75183 60.577638) + (xy 65.656498 60.807792) (xy 65.592017 61.048438) (xy 65.559501 61.295424) (xy 65.5595 61.295441) + (xy 62.491943 61.295441) (xy 62.541936 61.230289) (xy 62.663224 61.020212) (xy 62.756054 60.7961) + (xy 62.818838 60.561789) (xy 62.8505 60.321288) (xy 62.8505 60.078712) (xy 62.818838 59.838211) + (xy 62.756054 59.6039) (xy 62.663224 59.379788) (xy 62.541936 59.169711) (xy 62.394265 58.977262) + (xy 62.39426 58.977256) (xy 62.222743 58.805739) (xy 62.222736 58.805733) (xy 62.030293 58.658067) + (xy 62.030292 58.658066) (xy 62.030289 58.658064) (xy 61.820212 58.536776) (xy 61.802009 58.529236) + (xy 61.596104 58.443947) (xy 61.361785 58.381161) (xy 61.121289 58.3495) (xy 61.121288 58.3495) + (xy 60.878712 58.3495) (xy 60.878711 58.3495) (xy 60.638214 58.381161) (xy 60.403895 58.443947) + (xy 60.179794 58.536773) (xy 60.179785 58.536777) (xy 59.969706 58.658067) (xy 59.777263 58.805733) + (xy 59.777256 58.805739) (xy 59.605739 58.977256) (xy 59.605733 58.977263) (xy 59.458067 59.169706) + (xy 59.336777 59.379785) (xy 59.336773 59.379794) (xy 59.243947 59.603895) (xy 59.181161 59.838214) + (xy 59.1495 60.078711) (xy 58.4505 60.078711) (xy 58.4505 58.964427) (xy 58.450816 58.955581) (xy 58.461533 58.805735) + (xy 58.465131 58.755434) (xy 58.467646 58.737938) (xy 58.509356 58.546199) (xy 58.514333 58.529248) + (xy 58.582911 58.345385) (xy 58.590259 58.329298) (xy 58.652815 58.214734) (xy 58.684291 58.157089) + (xy 58.693845 58.142221) (xy 58.811448 57.985123) (xy 58.82302 57.971769) (xy 58.961769 57.83302) + (xy 58.975123 57.821448) (xy 59.132221 57.703845) (xy 59.147089 57.694291) (xy 59.319298 57.600258) + (xy 59.335385 57.592911) (xy 59.519248 57.524333) (xy 59.536199 57.519356) (xy 59.727938 57.477646) + (xy 59.745436 57.47513) (xy 59.945582 57.460816) (xy 59.954428 57.4605) (xy 60.015892 57.4605) (xy 146.936 57.4605) + ) + ) + (filled_polygon + (layer "F.Cu") + (pts + (xy 160.261257 103.040185) (xy 160.281899 103.056819) (xy 161.223181 103.998101) (xy 161.256666 104.059424) + (xy 161.2595 104.085782) (xy 161.2595 134.754218) (xy 161.250855 134.783658) (xy 161.244332 134.813645) + (xy 161.240577 134.81866) (xy 161.239815 134.821257) (xy 161.223181 134.841899) (xy 161.081899 134.983181) + (xy 161.020576 135.016666) (xy 160.994218 135.0195) (xy 156.325783 135.0195) (xy 156.258744 134.999815) + (xy 156.238102 134.983181) (xy 155.896819 134.641898) (xy 155.863334 134.580575) (xy 155.8605 134.554217) + (xy 155.8605 134.301204) (xy 155.880185 134.234165) (xy 155.932989 134.18841) (xy 156.002147 134.178466) + (xy 156.065703 134.207491) (xy 156.072181 134.213523) (xy 156.143072 134.284414) (xy 156.283212 134.386232) + (xy 156.437555 134.464873) (xy 156.602299 134.518402) (xy 156.773389 134.5455) (xy 156.77339 134.5455) + (xy 156.94661 134.5455) (xy 156.946611 134.5455) (xy 157.117701 134.518402) (xy 157.282445 134.464873) + (xy 157.436788 134.386232) (xy 157.576928 134.284414) (xy 157.699414 134.161928) (xy 157.759991 134.07855) + (xy 157.815321 134.035885) (xy 157.884934 134.029906) (xy 157.946729 134.062512) (xy 157.960628 134.078551) + (xy 158.020967 134.161602) (xy 158.143397 134.284032) (xy 158.283475 134.385804) (xy 158.437744 134.464408) + (xy 158.602415 134.517914) (xy 158.602414 134.517914) (xy 158.609999 134.519115) (xy 158.61 134.519114) + (xy 158.61 133.45033) (xy 158.629745 133.470075) (xy 158.715255 133.519444) (xy 158.81063 133.545) + (xy 158.90937 133.545) (xy 159.004745 133.519444) (xy 159.090255 133.470075) (xy 159.11 133.45033) + (xy 159.11 134.519115) (xy 159.117584 134.517914) (xy 159.282255 134.464408) (xy 159.436524 134.385804) + (xy 159.576602 134.284032) (xy 159.699032 134.161602) (xy 159.800804 134.021524) (xy 159.879408 133.867257) + (xy 159.932914 133.702584) (xy 159.96 133.531571) (xy 159.96 133.42) (xy 159.14033 133.42) (xy 159.160075 133.400255) + (xy 159.209444 133.314745) (xy 159.235 133.21937) (xy 159.235 133.12063) (xy 159.209444 133.025255) + (xy 159.160075 132.939745) (xy 159.14033 132.92) (xy 159.96 132.92) (xy 159.96 132.808428) (xy 159.932914 132.637415) + (xy 159.879408 132.472742) (xy 159.800804 132.318475) (xy 159.699032 132.178397) (xy 159.576602 132.055967) + (xy 159.436524 131.954195) (xy 159.282257 131.875591) (xy 159.117589 131.822087) (xy 159.117581 131.822085) + (xy 159.11 131.820884) (xy 159.11 132.88967) (xy 159.090255 132.869925) (xy 159.004745 132.820556) + (xy 158.90937 132.795) (xy 158.81063 132.795) (xy 158.715255 132.820556) (xy 158.629745 132.869925) + (xy 158.61 132.88967) (xy 158.61 131.820884) (xy 158.609999 131.820884) (xy 158.602418 131.822085) + (xy 158.60241 131.822087) (xy 158.437742 131.875591) (xy 158.283475 131.954195) (xy 158.143397 132.055967) + (xy 158.020965 132.178399) (xy 158.020961 132.178404) (xy 157.960627 132.261448) (xy 157.905297 132.304114) + (xy 157.835684 132.310093) (xy 157.773889 132.277488) (xy 157.759991 132.261449) (xy 157.75999 132.261448) + (xy 157.699414 132.178072) (xy 157.576928 132.055586) (xy 157.436788 131.953768) (xy 157.282445 131.875127) + (xy 157.117701 131.821598) (xy 157.117699 131.821597) (xy 157.117698 131.821597) (xy 156.969953 131.798197) + (xy 156.946611 131.7945) (xy 156.773389 131.7945) (xy 156.750047 131.798197) (xy 156.602302 131.821597) + (xy 156.437552 131.875128) (xy 156.283211 131.953768) (xy 156.203256 132.011859) (xy 156.143072 132.055586) + (xy 156.14307 132.055588) (xy 156.143069 132.055588) (xy 156.020588 132.178069) (xy 156.020581 132.178078) + (xy 155.960317 132.261023) (xy 155.904987 132.303689) (xy 155.835374 132.309667) (xy 155.773579 132.277061) + (xy 155.759683 132.261023) (xy 155.699655 132.178404) (xy 155.699414 132.178072) (xy 155.576928 132.055586) + (xy 155.436788 131.953768) (xy 155.282445 131.875127) (xy 155.117701 131.821598) (xy 155.117699 131.821597) + (xy 155.117698 131.821597) (xy 154.969953 131.798197) (xy 154.946611 131.7945) (xy 154.773389 131.7945) + (xy 154.750047 131.798197) (xy 154.602302 131.821597) (xy 154.437552 131.875128) (xy 154.283211 131.953768) + (xy 154.143073 132.055585) (xy 154.03553 132.163128) (xy 153.974207 132.196612) (xy 153.904515 132.191628) + (xy 153.848582 132.149756) (xy 153.84231 132.140543) (xy 153.827336 132.116266) (xy 153.802712 132.076344) + (xy 153.678656 131.952288) (xy 153.553559 131.875128) (xy 153.529336 131.860187) (xy 153.529331 131.860185) + (xy 153.498881 131.850095) (xy 153.362797 131.805001) (xy 153.362795 131.805) (xy 153.26001 131.7945) + (xy 152.459998 131.7945) (xy 152.45998 131.794501) (xy 152.357203 131.805) (xy 152.3572 131.805001) + (xy 152.190668 131.860185) (xy 152.190663 131.860187) (xy 152.041342 131.952289) (xy 151.917289 132.076342) + (xy 151.825187 132.225663) (xy 151.825185 132.225668) (xy 151.808155 132.277061) (xy 151.770001 132.392203) + (xy 151.770001 132.392204) (xy 151.77 132.392204) (xy 151.7595 132.494983) (xy 151.7595 133.845001) + (xy 151.759501 133.845018) (xy 151.77 133.947796) (xy 151.770001 133.947799) (xy 151.825185 134.114331) + (xy 151.825187 134.114336) (xy 151.855958 134.164224) (xy 151.917288 134.263656) (xy 152.041344 134.387712) + (xy 152.190666 134.479814) (xy 152.357203 134.534999) (xy 152.459991 134.5455) (xy 153.260008 134.545499) + (xy 153.260016 134.545498) (xy 153.260019 134.545498) (xy 153.316302 134.539748) (xy 153.362797 134.534999) + (xy 153.529334 134.479814) (xy 153.670407 134.392799) (xy 153.737795 134.374361) (xy 153.804459 134.395283) + (xy 153.849229 134.448925) (xy 153.8595 134.49834) (xy 153.8595 135.118543) (xy 153.875133 135.197133) + (xy 153.875604 135.1995) (xy 153.897949 135.311836) (xy 153.905247 135.329454) (xy 153.908995 135.338504) + (xy 153.908996 135.338505) (xy 153.973364 135.493907) (xy 153.973371 135.49392) (xy 154.082859 135.65778) + (xy 154.08286 135.657781) (xy 154.082861 135.657782) (xy 154.222218 135.797139) (xy 154.222219 135.797139) + (xy 154.229286 135.804206) (xy 154.229285 135.804206) (xy 154.229289 135.804209) (xy 155.032897 136.607819) + (xy 155.066382 136.669142) (xy 155.061398 136.738834) (xy 155.019526 136.794767) (xy 154.954062 136.819184) + (xy 154.945216 136.8195) (xy 152.285782 136.8195) (xy 152.218743 136.799815) (xy 152.198101 136.783181) + (xy 151.236819 135.821899) (xy 151.203334 135.760576) (xy 151.2005 135.734218) (xy 151.2005 129.265781) + (xy 151.220185 129.198742) (xy 151.236814 129.178105) (xy 156.237778 124.177141) (xy 156.237782 124.177139) + (xy 156.377139 124.037782) (xy 156.486632 123.873914) (xy 156.503455 123.833299) (xy 156.550592 123.719501) + (xy 156.550592 123.7195) (xy 156.560549 123.695461) (xy 156.562051 123.691836) (xy 156.579086 123.606196) + (xy 156.597552 123.513366) (xy 156.599316 123.504489) (xy 156.6005 123.498541) (xy 156.6005 110.861459) + (xy 156.581215 110.764506) (xy 156.562051 110.668164) (xy 156.505671 110.532051) (xy 156.486632 110.486086) + (xy 156.377139 110.322218) (xy 156.237782 110.182861) (xy 156.237781 110.18286) (xy 152.524208 106.469288) + (xy 152.524206 106.469285) (xy 152.524206 106.469286) (xy 152.517139 106.462219) (xy 152.517139 106.462218) + (xy 152.377782 106.322861) (xy 152.377781 106.32286) (xy 152.37778 106.322859) (xy 152.21392 106.213371) + (xy 152.213911 106.213366) (xy 152.09271 106.163163) (xy 152.092708 106.163162) (xy 152.085165 106.160038) + (xy 152.031836 106.137949) (xy 151.904961 106.112712) (xy 151.901014 106.111926) (xy 151.901007 106.111925) + (xy 151.838543 106.0995) (xy 151.838541 106.0995) (xy 149.416217 106.0995) (xy 149.349178 106.079815) + (xy 149.343339 106.075824) (xy 149.263266 106.017647) (xy 149.122831 105.946092) (xy 149.111827 105.940485) + (xy 149.061031 105.89251) (xy 149.044236 105.824689) (xy 149.066773 105.758554) (xy 149.111827 105.719515) + (xy 149.121116 105.714781) (xy 149.263266 105.642353) (xy 149.424418 105.525269) (xy 149.565269 105.384418) + (xy 149.682353 105.223266) (xy 149.772785 105.045783) (xy 149.805739 104.944362) (xy 149.834338 104.856343) + (xy 149.834338 104.856342) (xy 149.834339 104.856339) (xy 149.8655 104.659597) (xy 149.8655 104.460403) + (xy 149.834339 104.263661) (xy 149.834338 104.263657) (xy 149.834338 104.263656) (xy 149.772786 104.074219) + (xy 149.765248 104.059424) (xy 149.682353 103.896734) (xy 149.565269 103.735582) (xy 149.424418 103.594731) + (xy 149.263266 103.477647) (xy 149.111827 103.400485) (xy 149.061031 103.35251) (xy 149.044236 103.284689) + (xy 149.066773 103.218554) (xy 149.111827 103.179515) (xy 149.130501 103.17) (xy 149.263266 103.102353) + (xy 149.343332 103.044181) (xy 149.409138 103.020702) (xy 149.416217 103.0205) (xy 160.194218 103.0205) + ) + ) + (filled_polygon + (layer "F.Cu") + (pts + (xy 176.737136 132.022725) (xy 176.744931 132.021457) (xy 176.770182 132.032428) (xy 176.796598 132.040185) + (xy 176.801768 132.046152) (xy 176.809013 132.0493) (xy 176.824325 132.072184) (xy 176.842353 132.092989) + (xy 176.843476 132.100805) (xy 176.847869 132.107369) (xy 176.848378 132.134894) (xy 176.852297 132.162147) + (xy 176.849048 132.171108) (xy 176.849162 132.177226) (xy 176.835099 132.209593) (xy 176.830917 132.216373) + (xy 176.825187 132.225663) (xy 176.825185 132.225668) (xy 176.808155 132.277061) (xy 176.770001 132.392203) + (xy 176.770001 132.392204) (xy 176.77 132.392204) (xy 176.7595 132.494983) (xy 176.7595 133.845001) + (xy 176.759501 133.845018) (xy 176.77 133.947796) (xy 176.770001 133.947799) (xy 176.825185 134.114331) + (xy 176.825187 134.114336) (xy 176.855958 134.164224) (xy 176.917288 134.263656) (xy 177.041344 134.387712) + (xy 177.190666 134.479814) (xy 177.357203 134.534999) (xy 177.459991 134.5455) (xy 178.260008 134.545499) + (xy 178.260016 134.545498) (xy 178.260019 134.545498) (xy 178.316302 134.539748) (xy 178.362797 134.534999) + (xy 178.529334 134.479814) (xy 178.670407 134.392799) (xy 178.737795 134.374361) (xy 178.804459 134.395283) + (xy 178.849229 134.448925) (xy 178.8595 134.49834) (xy 178.8595 135.354218) (xy 178.839815 135.421257) + (xy 178.823181 135.441899) (xy 177.481899 136.783181) (xy 177.420576 136.816666) (xy 177.394218 136.8195) + (xy 167.374781 136.8195) (xy 167.307742 136.799815) (xy 167.261987 136.747011) (xy 167.252043 136.677853) + (xy 167.281068 136.614297) (xy 167.2871 136.607819) (xy 167.489158 136.405762) (xy 168.23714 135.657781) + (xy 168.346632 135.493914) (xy 168.422052 135.311835) (xy 168.460501 135.11854) (xy 168.460501 134.921459) + (xy 168.460501 134.916349) (xy 168.4605 134.916323) (xy 168.4605 134.301204) (xy 168.480185 134.234165) + (xy 168.532989 134.18841) (xy 168.602147 134.178466) (xy 168.665703 134.207491) (xy 168.672181 134.213523) + (xy 168.743072 134.284414) (xy 168.883212 134.386232) (xy 169.037555 134.464873) (xy 169.202299 134.518402) + (xy 169.373389 134.5455) (xy 169.37339 134.5455) (xy 169.54661 134.5455) (xy 169.546611 134.5455) + (xy 169.717701 134.518402) (xy 169.882445 134.464873) (xy 170.036788 134.386232) (xy 170.176928 134.284414) + (xy 170.299414 134.161928) (xy 170.359991 134.07855) (xy 170.415321 134.035885) (xy 170.484934 134.029906) + (xy 170.546729 134.062512) (xy 170.560628 134.078551) (xy 170.620967 134.161602) (xy 170.743397 134.284032) + (xy 170.883475 134.385804) (xy 171.037744 134.464408) (xy 171.202415 134.517914) (xy 171.202414 134.517914) + (xy 171.209999 134.519115) (xy 171.21 134.519114) (xy 171.21 133.45033) (xy 171.229745 133.470075) + (xy 171.315255 133.519444) (xy 171.41063 133.545) (xy 171.50937 133.545) (xy 171.604745 133.519444) + (xy 171.690255 133.470075) (xy 171.71 133.45033) (xy 171.71 134.519115) (xy 171.717584 134.517914) + (xy 171.882255 134.464408) (xy 172.036524 134.385804) (xy 172.176602 134.284032) (xy 172.299032 134.161602) + (xy 172.400804 134.021524) (xy 172.479408 133.867257) (xy 172.532914 133.702584) (xy 172.56 133.531571) + (xy 172.56 133.42) (xy 171.74033 133.42) (xy 171.760075 133.400255) (xy 171.809444 133.314745) (xy 171.835 133.21937) + (xy 171.835 133.12063) (xy 171.809444 133.025255) (xy 171.760075 132.939745) (xy 171.74033 132.92) + (xy 172.56 132.92) (xy 172.56 132.808428) (xy 172.532914 132.637415) (xy 172.479408 132.472742) + (xy 172.400801 132.318471) (xy 172.327359 132.217385) (xy 172.303879 132.151579) (xy 172.319705 132.083525) + (xy 172.369811 132.03483) (xy 172.427677 132.0205) (xy 176.729559 132.0205) + ) + ) + (filled_polygon + (layer "F.Cu") + (pts + (xy 170.698727 65.340185) (xy 170.731104 65.37755) (xy 171.322425 65.968871) (xy 171.263147 65.984755) + (xy 171.146853 66.051898) (xy 171.051898 66.146853) (xy 170.984755 66.263147) (xy 170.968871 66.322425) + (xy 170.405581 65.759135) (xy 170.40558 65.759135) (xy 170.378077 65.79699) (xy 170.287679 65.974405) + (xy 170.226147 66.163777) (xy 170.195 66.360436) (xy 170.195 66.559563) (xy 170.226147 66.756222) + (xy 170.287679 66.945594) (xy 170.378077 67.123008) (xy 170.40558 67.160863) (xy 170.405581 67.160864) + (xy 170.968871 66.597574) (xy 170.984755 66.656853) (xy 171.051898 66.773147) (xy 171.146853 66.868102) + (xy 171.263147 66.935245) (xy 171.322425 66.951128) (xy 170.759134 67.514417) (xy 170.796994 67.541924) + (xy 170.948722 67.619234) (xy 170.999518 67.667209) (xy 171.016313 67.73503) (xy 170.993776 67.801165) + (xy 170.948723 67.840203) (xy 170.796735 67.917645) (xy 170.716671 67.975816) (xy 170.635582 68.034731) + (xy 170.63558 68.034733) (xy 170.635579 68.034733) (xy 170.494733 68.175579) (xy 170.494733 68.17558) + (xy 170.494731 68.175582) (xy 170.462424 68.220049) (xy 170.377647 68.336733) (xy 170.287213 68.514219) + (xy 170.225661 68.703656) (xy 170.225661 68.703659) (xy 170.1945 68.900403) (xy 170.1945 69.099596) + (xy 170.225661 69.29634) (xy 170.225661 69.296343) (xy 170.287213 69.48578) (xy 170.294798 69.500666) + (xy 170.377647 69.663266) (xy 170.494731 69.824418) (xy 170.635582 69.965269) (xy 170.796734 70.082353) + (xy 170.866453 70.117877) (xy 170.948172 70.159515) (xy 170.998968 70.20749) (xy 171.015763 70.275311) + (xy 170.993225 70.341446) (xy 170.948172 70.380485) (xy 170.796733 70.457647) (xy 170.70479 70.524447) + (xy 170.635582 70.574731) (xy 170.63558 70.574733) (xy 170.635579 70.574733) (xy 170.494733 70.715579) + (xy 170.494733 70.71558) (xy 170.494731 70.715582) (xy 170.455182 70.770016) (xy 170.377647 70.876733) + (xy 170.287213 71.054219) (xy 170.225661 71.243656) (xy 170.225661 71.243659) (xy 170.196943 71.42498) + (xy 170.1945 71.440403) (xy 170.1945 71.639597) (xy 170.202306 71.68888) (xy 170.225661 71.83634) + (xy 170.225661 71.836343) (xy 170.287213 72.02578) (xy 170.341317 72.131964) (xy 170.377647 72.203266) + (xy 170.494731 72.364418) (xy 170.635582 72.505269) (xy 170.796734 72.622353) (xy 170.825575 72.637048) + (xy 170.948172 72.699515) (xy 170.998968 72.74749) (xy 171.015763 72.815311) (xy 170.993225 72.881446) + (xy 170.948172 72.920485) (xy 170.796733 72.997647) (xy 170.755353 73.027712) (xy 170.635582 73.114731) + (xy 170.63558 73.114733) (xy 170.635579 73.114733) (xy 170.494733 73.255579) (xy 170.494733 73.25558) + (xy 170.494731 73.255582) (xy 170.481088 73.27436) (xy 170.377647 73.416733) (xy 170.287213 73.594219) + (xy 170.225661 73.783656) (xy 170.225661 73.783659) (xy 170.19884 73.952999) (xy 170.1945 73.980403) + (xy 170.1945 74.179597) (xy 170.206413 74.254814) (xy 170.225661 74.37634) (xy 170.225661 74.376343) + (xy 170.287213 74.56578) (xy 170.287215 74.565783) (xy 170.377647 74.743266) (xy 170.494731 74.904418) + (xy 170.635582 75.045269) (xy 170.796734 75.162353) (xy 170.866453 75.197877) (xy 170.948172 75.239515) + (xy 170.998968 75.28749) (xy 171.015763 75.355311) (xy 170.993225 75.421446) (xy 170.948172 75.460485) + (xy 170.796733 75.537647) (xy 170.772965 75.554916) (xy 170.635582 75.654731) (xy 170.63558 75.654733) + (xy 170.635579 75.654733) (xy 170.494733 75.795579) (xy 170.494733 75.79558) (xy 170.494731 75.795582) + (xy 170.467647 75.83286) (xy 170.377647 75.956733) (xy 170.287213 76.134219) (xy 170.225661 76.323656) + (xy 170.225661 76.323659) (xy 170.221034 76.352872) (xy 170.1945 76.520403) (xy 170.1945 76.719597) + (xy 170.206332 76.794298) (xy 170.225661 76.91634) (xy 170.225661 76.916343) (xy 170.287213 77.10578) + (xy 170.355548 77.239895) (xy 170.377647 77.283266) (xy 170.494731 77.444418) (xy 170.635582 77.585269) + (xy 170.796734 77.702353) (xy 170.859826 77.7345) (xy 170.948172 77.779515) (xy 170.998968 77.82749) + (xy 171.015763 77.895311) (xy 170.993225 77.961446) (xy 170.948172 78.000485) (xy 170.796733 78.077647) + (xy 170.70479 78.144447) (xy 170.635582 78.194731) (xy 170.63558 78.194733) (xy 170.635579 78.194733) + (xy 170.494733 78.335579) (xy 170.494733 78.33558) (xy 170.494731 78.335582) (xy 170.482287 78.35271) + (xy 170.377647 78.496733) (xy 170.287213 78.674219) (xy 170.225661 78.863656) (xy 170.225661 78.863659) + (xy 170.1945 79.060403) (xy 170.1945 79.259596) (xy 170.225661 79.45634) (xy 170.225661 79.456343) + (xy 170.287213 79.64578) (xy 170.348316 79.765701) (xy 170.377647 79.823266) (xy 170.494731 79.984418) + (xy 170.635582 80.125269) (xy 170.796734 80.242353) (xy 170.847334 80.268135) (xy 170.948172 80.319515) + (xy 170.998968 80.36749) (xy 171.015763 80.435311) (xy 170.993225 80.501446) (xy 170.948172 80.540485) + (xy 170.796733 80.617647) (xy 170.781581 80.628656) (xy 170.635582 80.734731) (xy 170.63558 80.734733) + (xy 170.635579 80.734733) (xy 170.494733 80.875579) (xy 170.494733 80.87558) (xy 170.494731 80.875582) + (xy 170.469362 80.9105) (xy 170.377647 81.036733) (xy 170.287213 81.214219) (xy 170.225661 81.403656) + (xy 170.225661 81.403659) (xy 170.1945 81.600403) (xy 170.1945 81.799596) (xy 170.225661 81.99634) + (xy 170.225661 81.996343) (xy 170.287213 82.18578) (xy 170.355347 82.3195) (xy 170.377647 82.363266) + (xy 170.494731 82.524418) (xy 170.635582 82.665269) (xy 170.796734 82.782353) (xy 170.853726 82.811392) + (xy 170.948172 82.859515) (xy 170.998968 82.90749) (xy 171.015763 82.975311) (xy 170.993225 83.041446) + (xy 170.948172 83.080485) (xy 170.796733 83.157647) (xy 170.70479 83.224447) (xy 170.635582 83.274731) + (xy 170.63558 83.274733) (xy 170.635579 83.274733) (xy 170.494733 83.415579) (xy 170.494733 83.41558) + (xy 170.494731 83.415582) (xy 170.460033 83.46334) (xy 170.377647 83.576733) (xy 170.287213 83.754219) + (xy 170.225661 83.943656) (xy 170.225661 83.943659) (xy 170.1945 84.140403) (xy 170.1945 84.339596) + (xy 170.225661 84.53634) (xy 170.225661 84.536343) (xy 170.287213 84.72578) (xy 170.363176 84.874866) + (xy 170.377647 84.903266) (xy 170.494731 85.064418) (xy 170.635582 85.205269) (xy 170.796734 85.322353) + (xy 170.857536 85.353333) (xy 170.948172 85.399515) (xy 170.998968 85.44749) (xy 171.015763 85.515311) + (xy 170.993225 85.581446) (xy 170.948172 85.620485) (xy 170.796733 85.697647) (xy 170.70479 85.764447) + (xy 170.635582 85.814731) (xy 170.63558 85.814733) (xy 170.635579 85.814733) (xy 170.494733 85.955579) + (xy 170.494733 85.95558) (xy 170.494731 85.955582) (xy 170.487855 85.965046) (xy 170.377647 86.116733) + (xy 170.287213 86.294219) (xy 170.225661 86.483656) (xy 170.225661 86.483659) (xy 170.1945 86.680403) + (xy 170.1945 86.879596) (xy 170.225661 87.07634) (xy 170.225661 87.076343) (xy 170.287213 87.26578) + (xy 170.325978 87.34186) (xy 170.377647 87.443266) (xy 170.494731 87.604418) (xy 170.635582 87.745269) + (xy 170.796734 87.862353) (xy 170.854627 87.891851) (xy 170.948172 87.939515) (xy 170.998968 87.98749) + (xy 171.015763 88.055311) (xy 170.993225 88.121446) (xy 170.948172 88.160485) (xy 170.796733 88.237647) + (xy 170.719284 88.293918) (xy 170.635582 88.354731) (xy 170.63558 88.354733) (xy 170.635579 88.354733) + (xy 170.494733 88.495579) (xy 170.494733 88.49558) (xy 170.494731 88.495582) (xy 170.457445 88.546902) + (xy 170.377647 88.656733) (xy 170.287213 88.834219) (xy 170.225661 89.023656) (xy 170.225661 89.023659) + (xy 170.206879 89.142244) (xy 170.1945 89.220403) (xy 170.1945 89.419597) (xy 170.20644 89.49498) + (xy 170.225661 89.61634) (xy 170.225661 89.616343) (xy 170.287213 89.80578) (xy 170.374601 89.977288) + (xy 170.377647 89.983266) (xy 170.494731 90.144418) (xy 170.635582 90.285269) (xy 170.796734 90.402353) + (xy 170.866453 90.437877) (xy 170.948172 90.479515) (xy 170.998968 90.52749) (xy 171.015763 90.595311) + (xy 170.993225 90.661446) (xy 170.948172 90.700485) (xy 170.796733 90.777647) (xy 170.746236 90.814336) + (xy 170.635582 90.894731) (xy 170.63558 90.894733) (xy 170.635579 90.894733) (xy 170.494733 91.035579) + (xy 170.494733 91.03558) (xy 170.494731 91.035582) (xy 170.458604 91.085307) (xy 170.377647 91.196733) + (xy 170.287213 91.374219) (xy 170.225661 91.563656) (xy 170.225661 91.563659) (xy 170.214759 91.632491) + (xy 170.1945 91.760403) (xy 170.1945 91.959597) (xy 170.202483 92.009998) (xy 170.225661 92.15634) + (xy 170.225661 92.156343) (xy 170.287213 92.34578) (xy 170.3635 92.495501) (xy 170.377647 92.523266) + (xy 170.494731 92.684418) (xy 170.635582 92.825269) (xy 170.796734 92.942353) (xy 170.839048 92.963913) + (xy 170.948172 93.019515) (xy 170.998968 93.06749) (xy 171.015763 93.135311) (xy 170.993225 93.201446) + (xy 170.948172 93.240485) (xy 170.796733 93.317647) (xy 170.716669 93.375818) (xy 170.635582 93.434731) + (xy 170.63558 93.434733) (xy 170.635579 93.434733) (xy 170.494733 93.575579) (xy 170.494733 93.57558) + (xy 170.494731 93.575582) (xy 170.455193 93.630001) (xy 170.377647 93.736733) (xy 170.287213 93.914219) + (xy 170.225661 94.103656) (xy 170.225661 94.103659) (xy 170.1945 94.300403) (xy 170.1945 94.499596) + (xy 170.225661 94.69634) (xy 170.225661 94.696343) (xy 170.287213 94.88578) (xy 170.377647 95.063266) + (xy 170.494731 95.224418) (xy 170.635582 95.365269) (xy 170.796734 95.482353) (xy 170.866453 95.517877) + (xy 170.948172 95.559515) (xy 170.998968 95.60749) (xy 171.015763 95.675311) (xy 170.993225 95.741446) + (xy 170.948172 95.780485) (xy 170.796733 95.857647) (xy 170.70479 95.924447) (xy 170.635582 95.974731) + (xy 170.63558 95.974733) (xy 170.635579 95.974733) (xy 170.494733 96.115579) (xy 170.494733 96.11558) + (xy 170.494731 96.115582) (xy 170.475124 96.142569) (xy 170.377647 96.276733) (xy 170.287213 96.454219) + (xy 170.225661 96.643656) (xy 170.225661 96.643659) (xy 170.200899 96.8) (xy 170.1945 96.840403) + (xy 170.1945 97.039597) (xy 170.207612 97.122384) (xy 170.225661 97.23634) (xy 170.225661 97.236343) + (xy 170.287213 97.42578) (xy 170.339381 97.528165) (xy 170.377647 97.603266) (xy 170.494731 97.764418) + (xy 170.635582 97.905269) (xy 170.796734 98.022353) (xy 170.866453 98.057877) (xy 170.948172 98.099515) + (xy 170.998968 98.14749) (xy 171.015763 98.215311) (xy 170.993225 98.281446) (xy 170.948172 98.320485) + (xy 170.796733 98.397647) (xy 170.70479 98.464447) (xy 170.635582 98.514731) (xy 170.63558 98.514733) + (xy 170.635579 98.514733) (xy 170.494733 98.655579) (xy 170.494733 98.65558) (xy 170.494731 98.655582) + (xy 170.475124 98.682569) (xy 170.377647 98.816733) (xy 170.287213 98.994219) (xy 170.225661 99.183656) + (xy 170.225661 99.183659) (xy 170.1945 99.380403) (xy 170.1945 99.579597) (xy 170.201027 99.620805) + (xy 170.225661 99.77634) (xy 170.225661 99.776343) (xy 170.287213 99.96578) (xy 170.33038 100.0505) + (xy 170.377647 100.143266) (xy 170.494731 100.304418) (xy 170.635582 100.445269) (xy 170.796734 100.562353) + (xy 170.855208 100.592147) (xy 170.948172 100.639515) (xy 170.998968 100.68749) (xy 171.015763 100.755311) + (xy 170.993225 100.821446) (xy 170.948172 100.860485) (xy 170.796733 100.937647) (xy 170.736736 100.981238) + (xy 170.635582 101.054731) (xy 170.63558 101.054733) (xy 170.635579 101.054733) (xy 170.494733 101.195579) + (xy 170.494733 101.19558) (xy 170.494731 101.195582) (xy 170.475124 101.222569) (xy 170.377647 101.356733) + (xy 170.287213 101.534219) (xy 170.225661 101.723656) (xy 170.225661 101.723659) (xy 170.208881 101.829603) + (xy 170.1945 101.920403) (xy 170.1945 102.119597) (xy 170.202138 102.16782) (xy 170.225661 102.31634) + (xy 170.225661 102.316343) (xy 170.287213 102.50578) (xy 170.367407 102.663168) (xy 170.377647 102.683266) + (xy 170.494731 102.844418) (xy 170.635582 102.985269) (xy 170.796734 103.102353) (xy 170.855208 103.132147) + (xy 170.948172 103.179515) (xy 170.998968 103.22749) (xy 171.015763 103.295311) (xy 170.993225 103.361446) + (xy 170.948172 103.400485) (xy 170.796733 103.477647) (xy 170.736433 103.521458) (xy 170.635582 103.594731) + (xy 170.63558 103.594733) (xy 170.635579 103.594733) (xy 170.494733 103.735579) (xy 170.494733 103.73558) + (xy 170.494731 103.735582) (xy 170.475124 103.762569) (xy 170.377647 103.896733) (xy 170.287213 104.074219) + (xy 170.225661 104.263656) (xy 170.225661 104.263659) (xy 170.203218 104.405359) (xy 170.1945 104.460403) + (xy 170.1945 104.659597) (xy 170.198206 104.682998) (xy 170.225661 104.85634) (xy 170.225661 104.856343) + (xy 170.287213 105.04578) (xy 170.32503 105.12) (xy 170.377647 105.223266) (xy 170.494731 105.384418) + (xy 170.635582 105.525269) (xy 170.796734 105.642353) (xy 170.850967 105.669986) (xy 170.948172 105.719515) + (xy 170.998968 105.76749) (xy 171.015763 105.835311) (xy 170.993225 105.901446) (xy 170.948172 105.940485) + (xy 170.796733 106.017647) (xy 170.715511 106.076659) (xy 170.635582 106.134731) (xy 170.63558 106.134733) + (xy 170.635579 106.134733) (xy 170.494733 106.275579) (xy 170.494733 106.27558) (xy 170.494731 106.275582) + (xy 170.455846 106.329103) (xy 170.377647 106.436733) (xy 170.287213 106.614219) (xy 170.225661 106.803656) + (xy 170.225661 106.803659) (xy 170.1945 107.000403) (xy 170.1945 107.199596) (xy 170.225661 107.39634) + (xy 170.225661 107.396343) (xy 170.287213 107.58578) (xy 170.336494 107.682499) (xy 170.377647 107.763266) + (xy 170.494731 107.924418) (xy 170.635582 108.065269) (xy 170.796734 108.182353) (xy 170.861182 108.215191) + (xy 170.948172 108.259515) (xy 170.998968 108.30749) (xy 171.015763 108.375311) (xy 170.993225 108.441446) + (xy 170.948172 108.480485) (xy 170.796733 108.557647) (xy 170.70479 108.624447) (xy 170.635582 108.674731) + (xy 170.63558 108.674733) (xy 170.635579 108.674733) (xy 170.494733 108.815579) (xy 170.494733 108.81558) + (xy 170.494731 108.815582) (xy 170.460381 108.862861) (xy 170.377647 108.976733) (xy 170.287213 109.154219) + (xy 170.225661 109.343656) (xy 170.225661 109.343659) (xy 170.1945 109.540403) (xy 170.1945 109.739596) + (xy 170.225661 109.93634) (xy 170.225661 109.936343) (xy 170.287213 110.12578) (xy 170.353158 110.255203) + (xy 170.377647 110.303266) (xy 170.494731 110.464418) (xy 170.635582 110.605269) (xy 170.796734 110.722353) + (xy 170.828134 110.738352) (xy 170.948172 110.799515) (xy 170.998968 110.84749) (xy 171.015763 110.915311) + (xy 170.993225 110.981446) (xy 170.948172 111.020485) (xy 170.796733 111.097647) (xy 170.716669 111.155818) + (xy 170.635582 111.214731) (xy 170.63558 111.214733) (xy 170.635579 111.214733) (xy 170.494733 111.355579) + (xy 170.494733 111.35558) (xy 170.494731 111.355582) (xy 170.457594 111.406697) (xy 170.377647 111.516733) + (xy 170.287213 111.694219) (xy 170.225661 111.883656) (xy 170.225661 111.883659) (xy 170.200606 112.041851) + (xy 170.1945 112.080403) (xy 170.1945 112.279597) (xy 170.200589 112.318041) (xy 170.225661 112.47634) + (xy 170.225661 112.476343) (xy 170.287213 112.66578) (xy 170.371093 112.830404) (xy 170.377647 112.843266) + (xy 170.494731 113.004418) (xy 170.635582 113.145269) (xy 170.796734 113.262353) (xy 170.836271 113.282498) + (xy 170.948172 113.339515) (xy 170.998968 113.38749) (xy 171.015763 113.455311) (xy 170.993225 113.521446) + (xy 170.948172 113.560485) (xy 170.796733 113.637647) (xy 170.725074 113.689711) (xy 170.635582 113.754731) + (xy 170.63558 113.754733) (xy 170.635579 113.754733) (xy 170.494733 113.895579) (xy 170.494733 113.89558) + (xy 170.494731 113.895582) (xy 170.462943 113.939334) (xy 170.377647 114.056733) (xy 170.287213 114.234219) + (xy 170.225661 114.423656) (xy 170.225661 114.423659) (xy 170.205239 114.552602) (xy 170.1945 114.620403) + (xy 170.1945 114.819597) (xy 170.197519 114.838656) (xy 170.225661 115.01634) (xy 170.225661 115.016343) + (xy 170.287213 115.20578) (xy 170.361451 115.351479) (xy 170.377647 115.383266) (xy 170.494731 115.544418) + (xy 170.635582 115.685269) (xy 170.796734 115.802353) (xy 170.8757 115.842588) (xy 170.948722 115.879795) + (xy 170.999518 115.92777) (xy 171.016313 115.995591) (xy 170.993776 116.061726) (xy 170.948723 116.100764) + (xy 170.796993 116.178075) (xy 170.759135 116.20558) (xy 170.759135 116.205581) (xy 171.322425 116.768871) + (xy 171.263147 116.784755) (xy 171.146853 116.851898) (xy 171.051898 116.946853) (xy 170.984755 117.063147) + (xy 170.968871 117.122425) (xy 170.405581 116.559135) (xy 170.40558 116.559135) (xy 170.378077 116.59699) + (xy 170.287679 116.774405) (xy 170.226147 116.963777) (xy 170.195 117.160436) (xy 170.195 117.359563) + (xy 170.226147 117.556222) (xy 170.287679 117.745594) (xy 170.378077 117.923008) (xy 170.40558 117.960863) + (xy 170.405581 117.960864) (xy 170.968871 117.397574) (xy 170.984755 117.456853) (xy 171.051898 117.573147) + (xy 171.146853 117.668102) (xy 171.263147 117.735245) (xy 171.322425 117.751128) (xy 170.759134 118.314417) + (xy 170.796999 118.341928) (xy 170.949272 118.419516) (xy 171.000068 118.46749) (xy 171.016863 118.535311) + (xy 170.994325 118.601446) (xy 170.949272 118.640484) (xy 170.796996 118.718073) (xy 170.796995 118.718074) + (xy 170.759135 118.74558) (xy 170.759135 118.745581) (xy 171.322425 119.308871) (xy 171.263147 119.324755) + (xy 171.146853 119.391898) (xy 171.051898 119.486853) (xy 170.984755 119.603147) (xy 170.968871 119.662425) + (xy 170.405581 119.099135) (xy 170.40558 119.099135) (xy 170.378077 119.13699) (xy 170.287679 119.314405) + (xy 170.226147 119.503777) (xy 170.195 119.700436) (xy 170.195 119.899563) (xy 170.226147 120.096222) + (xy 170.287679 120.285594) (xy 170.378077 120.463008) (xy 170.40558 120.500863) (xy 170.405581 120.500864) + (xy 170.968871 119.937574) (xy 170.984755 119.996853) (xy 171.051898 120.113147) (xy 171.146853 120.208102) + (xy 171.263147 120.275245) (xy 171.322425 120.291128) (xy 170.759134 120.854417) (xy 170.796994 120.881924) + (xy 170.974405 120.97232) (xy 171.163777 121.033852) (xy 171.360437 121.065) (xy 171.559563 121.065) + (xy 171.756222 121.033852) (xy 171.945594 120.97232) (xy 172.123005 120.881924) (xy 172.160863 120.854418) + (xy 172.160863 120.854417) (xy 171.597574 120.291128) (xy 171.656853 120.275245) (xy 171.773147 120.208102) + (xy 171.868102 120.113147) (xy 171.935245 119.996853) (xy 171.951128 119.937574) (xy 172.514417 120.500863) + (xy 172.514418 120.500863) (xy 172.541924 120.463005) (xy 172.63232 120.285594) (xy 172.693852 120.096222) + (xy 172.725 119.899563) (xy 172.725 119.700436) (xy 172.693852 119.503777) (xy 172.63232 119.314405) + (xy 172.541924 119.136994) (xy 172.514417 119.099135) (xy 172.514417 119.099134) (xy 171.951128 119.662424) + (xy 171.935245 119.603147) (xy 171.868102 119.486853) (xy 171.773147 119.391898) (xy 171.656853 119.324755) + (xy 171.597574 119.308871) (xy 172.160864 118.745581) (xy 172.160863 118.74558) (xy 172.123008 118.718077) + (xy 171.970727 118.640485) (xy 171.919931 118.59251) (xy 171.903136 118.524689) (xy 171.925674 118.458554) + (xy 171.970727 118.419515) (xy 172.123005 118.341924) (xy 172.160863 118.314418) (xy 172.160863 118.314417) + (xy 171.597574 117.751128) (xy 171.656853 117.735245) (xy 171.773147 117.668102) (xy 171.868102 117.573147) + (xy 171.935245 117.456853) (xy 171.951128 117.397574) (xy 172.514417 117.960863) (xy 172.514418 117.960863) + (xy 172.541924 117.923005) (xy 172.63232 117.745594) (xy 172.693852 117.556222) (xy 172.725 117.359563) + (xy 172.725 117.160436) (xy 172.693852 116.963777) (xy 172.63232 116.774405) (xy 172.541924 116.596994) + (xy 172.514417 116.559135) (xy 172.514417 116.559134) (xy 171.951128 117.122424) (xy 171.935245 117.063147) + (xy 171.868102 116.946853) (xy 171.773147 116.851898) (xy 171.656853 116.784755) (xy 171.597574 116.768871) + (xy 172.160864 116.205581) (xy 172.160863 116.20558) (xy 172.123008 116.178077) (xy 171.971277 116.100765) + (xy 171.920481 116.05279) (xy 171.903686 115.984969) (xy 171.926224 115.918834) (xy 171.971277 115.879795) + (xy 171.971827 115.879515) (xy 172.123266 115.802353) (xy 172.284418 115.685269) (xy 172.425269 115.544418) + (xy 172.542353 115.383266) (xy 172.632785 115.205783) (xy 172.632786 115.20578) (xy 172.694338 115.016343) + (xy 172.694338 115.016342) (xy 172.694339 115.016339) (xy 172.7255 114.819597) (xy 172.7255 114.620403) + (xy 172.694339 114.423661) (xy 172.694338 114.423657) (xy 172.694338 114.423656) (xy 172.632786 114.234219) + (xy 172.621827 114.21271) (xy 172.542353 114.056734) (xy 172.425269 113.895582) (xy 172.284418 113.754731) + (xy 172.123266 113.637647) (xy 172.006614 113.57821) (xy 171.971827 113.560485) (xy 171.921031 113.51251) + (xy 171.904236 113.444689) (xy 171.926773 113.378554) (xy 171.971827 113.339515) (xy 171.995455 113.327476) + (xy 172.123266 113.262353) (xy 172.284418 113.145269) (xy 172.425269 113.004418) (xy 172.542353 112.843266) + (xy 172.632785 112.665783) (xy 172.659117 112.584741) (xy 172.694338 112.476343) (xy 172.694338 112.476342) + (xy 172.694339 112.476339) (xy 172.7255 112.279597) (xy 172.7255 112.080403) (xy 172.694339 111.883661) + (xy 172.694338 111.883657) (xy 172.694338 111.883656) (xy 172.632786 111.694219) (xy 172.610161 111.649815) + (xy 172.542353 111.516734) (xy 172.425269 111.355582) (xy 172.284418 111.214731) (xy 172.123266 111.097647) + (xy 172.053403 111.06205) (xy 171.971827 111.020485) (xy 171.921031 110.97251) (xy 171.904236 110.904689) + (xy 171.926773 110.838554) (xy 171.971827 110.799515) (xy 172.013856 110.7781) (xy 172.123266 110.722353) + (xy 172.203332 110.664181) (xy 172.269138 110.640702) (xy 172.276217 110.6405) (xy 172.974218 110.6405) + (xy 173.041257 110.660185) (xy 173.061899 110.676819) (xy 173.363181 110.978101) (xy 173.396666 111.039424) + (xy 173.3995 111.065782) (xy 173.3995 116.098544) (xy 173.401406 116.108124) (xy 173.401407 116.108129) + (xy 173.437947 116.291829) (xy 173.43795 116.291839) (xy 173.452997 116.328165) (xy 173.513364 116.473906) + (xy 173.513371 116.473919) (xy 173.62286 116.637782) (xy 173.766537 116.781459) (xy 173.766559 116.781479) + (xy 175.019735 118.034655) (xy 175.019764 118.034686) (xy 175.162217 118.177139) (xy 175.254286 118.238657) + (xy 175.326086 118.286632) (xy 175.326088 118.286633) (xy 175.326092 118.286635) (xy 175.364365 118.302487) + (xy 175.443307 118.335186) (xy 175.508164 118.362051) (xy 175.580628 118.376465) (xy 175.635848 118.387449) + (xy 175.701456 118.4005) (xy 175.701459 118.4005) (xy 175.70146 118.4005) (xy 175.89854 118.4005) + (xy 177.046659 118.4005) (xy 177.113698 118.420185) (xy 177.159453 118.472989) (xy 177.169397 118.542147) + (xy 177.152198 118.589596) (xy 177.065189 118.730659) (xy 177.065185 118.730668) (xy 177.053 118.767441) + (xy 177.010001 118.897203) (xy 177.010001 118.897204) (xy 177.01 118.897204) (xy 176.9995 118.999983) + (xy 176.9995 119.800001) (xy 176.999501 119.800019) (xy 177.01 119.902796) (xy 177.010001 119.902799) + (xy 177.065185 120.069331) (xy 177.065187 120.069336) (xy 177.09221 120.113147) (xy 177.150778 120.208102) + (xy 177.157289 120.218657) (xy 177.213181 120.274549) (xy 177.246666 120.335872) (xy 177.2495 120.36223) + (xy 177.2495 121.698541) (xy 177.2495 121.698543) (xy 177.249499 121.698543) (xy 177.287947 121.891828) + (xy 177.287949 121.891836) (xy 177.340061 122.017647) (xy 177.3495 122.065096) (xy 177.3495 122.097867) + (xy 177.349501 122.097877) (xy 177.355908 122.157483) (xy 177.406202 122.292328) (xy 177.406206 122.292335) + (xy 177.492452 122.407544) (xy 177.492455 122.407547) (xy 177.607664 122.493793) (xy 177.607671 122.493797) + (xy 177.742516 122.544091) (xy 177.768419 122.546875) (xy 177.802127 122.5505) (xy 177.90561 122.550499) + (xy 177.953065 122.559938) (xy 177.958165 122.562051) (xy 177.958167 122.562051) (xy 177.958169 122.562052) + (xy 178.151456 122.6005) (xy 178.338429 122.6005) (xy 178.405468 122.620185) (xy 178.451223 122.672989) + (xy 178.461167 122.742147) (xy 178.437695 122.798811) (xy 178.356206 122.907664) (xy 178.356202 122.907671) + (xy 178.305908 123.042517) (xy 178.299501 123.102116) (xy 178.299501 123.102123) (xy 178.2995 123.102135) + (xy 178.2995 123.134902) (xy 178.290061 123.182354) (xy 178.237949 123.308163) (xy 178.237947 123.308171) + (xy 178.1995 123.501456) (xy 178.1995 124.098542) (xy 178.21458 124.174357) (xy 178.214583 124.17437) + (xy 178.215134 124.177139) (xy 178.237949 124.291836) (xy 178.248375 124.317006) (xy 178.251951 124.325639) + (xy 178.251952 124.325643) (xy 178.313364 124.473907) (xy 178.313371 124.47392) (xy 178.42286 124.637781) + (xy 178.422863 124.637785) (xy 178.566537 124.781459) (xy 178.566559 124.781479) (xy 179.792899 126.007819) + (xy 179.826384 126.069142) (xy 179.8214 126.138834) (xy 179.779528 126.194767) (xy 179.714064 126.219184) + (xy 179.705218 126.2195) (xy 179.270132 126.2195) (xy 179.205036 126.201039) (xy 179.179334 126.185186) + (xy 179.012797 126.130001) (xy 179.012795 126.13) (xy 178.91001 126.1195) (xy 177.909998 126.1195) + (xy 177.90998 126.119501) (xy 177.807203 126.13) (xy 177.8072 126.130001) (xy 177.640668 126.185185) + (xy 177.640663 126.185187) (xy 177.625133 126.194767) (xy 177.614963 126.201039) (xy 177.549868 126.2195) + (xy 176.320132 126.2195) (xy 176.255036 126.201039) (xy 176.229334 126.185186) (xy 176.062797 126.130001) + (xy 176.062795 126.13) (xy 175.96001 126.1195) (xy 174.959998 126.1195) (xy 174.95998 126.119501) + (xy 174.857203 126.13) (xy 174.8572 126.130001) (xy 174.690668 126.185185) (xy 174.690663 126.185187) + (xy 174.541342 126.277289) (xy 174.417289 126.401342) (xy 174.325187 126.550663) (xy 174.325185 126.550668) + (xy 174.306922 126.605782) (xy 174.270001 126.717203) (xy 174.270001 126.717204) (xy 174.27 126.717204) + (xy 174.2595 126.819983) (xy 174.2595 127.620001) (xy 174.259501 127.620019) (xy 174.27 127.722796) + (xy 174.270001 127.722799) (xy 174.325185 127.889331) (xy 174.325189 127.88934) (xy 174.412198 128.030404) + (xy 174.430638 128.097796) (xy 174.409715 128.164459) (xy 174.356073 128.209229) (xy 174.306659 128.2195) + (xy 168.7845 128.2195) (xy 168.717461 128.199815) (xy 168.671706 128.147011) (xy 168.6605 128.0955) + (xy 168.6605 98.521456) (xy 168.660499 98.521454) (xy 168.622053 98.328172) (xy 168.62205 98.328162) + (xy 168.621928 98.327867) (xy 168.621916 98.32784) (xy 168.587877 98.245661) (xy 168.559616 98.177432) + (xy 168.546635 98.146092) (xy 168.546628 98.146079) (xy 168.437139 97.982218) (xy 168.437136 97.982214) + (xy 168.294686 97.839764) (xy 168.294655 97.839735) (xy 164.221479 93.766559) (xy 164.221459 93.766537) + (xy 164.077785 93.622863) (xy 164.077781 93.62286) (xy 163.91392 93.513371) (xy 163.913911 93.513366) + (xy 163.841315 93.483296) (xy 163.785165 93.460038) (xy 163.731836 93.437949) (xy 163.731832 93.437948) + (xy 163.731828 93.437946) (xy 163.635188 93.418724) (xy 163.538544 93.3995) (xy 163.538541 93.3995) + (xy 149.416217 93.3995) (xy 149.349178 93.379815) (xy 149.343339 93.375824) (xy 149.263266 93.317647) + (xy 149.111827 93.240485) (xy 149.061031 93.19251) (xy 149.044236 93.124689) (xy 149.066773 93.058554) + (xy 149.111827 93.019515) (xy 149.121116 93.014781) (xy 149.263266 92.942353) (xy 149.424418 92.825269) + (xy 149.565269 92.684418) (xy 149.682353 92.523266) (xy 149.772785 92.345783) (xy 149.797403 92.270016) + (xy 149.834338 92.156343) (xy 149.834338 92.156342) (xy 149.834339 92.156339) (xy 149.8655 91.959597) + (xy 149.8655 91.760403) (xy 149.834339 91.563661) (xy 149.834338 91.563657) (xy 149.834338 91.563656) + (xy 149.772786 91.374219) (xy 149.745164 91.320008) (xy 149.682353 91.196734) (xy 149.565269 91.035582) + (xy 149.424418 90.894731) (xy 149.263266 90.777647) (xy 149.134112 90.71184) (xy 149.111827 90.700485) + (xy 149.061031 90.65251) (xy 149.044236 90.584689) (xy 149.066773 90.518554) (xy 149.111827 90.479515) + (xy 149.125222 90.47269) (xy 149.263266 90.402353) (xy 149.424418 90.285269) (xy 149.565269 90.144418) + (xy 149.682353 89.983266) (xy 149.772785 89.805783) (xy 149.806355 89.702465) (xy 149.834338 89.616343) + (xy 149.834338 89.616342) (xy 149.834339 89.616339) (xy 149.8655 89.419597) (xy 149.8655 89.220403) + (xy 149.834339 89.023661) (xy 149.834338 89.023657) (xy 149.834338 89.023656) (xy 149.772786 88.834219) + (xy 149.720814 88.732218) (xy 149.682353 88.656734) (xy 149.565269 88.495582) (xy 149.424418 88.354731) + (xy 149.263266 88.237647) (xy 149.111827 88.160485) (xy 149.061031 88.11251) (xy 149.044236 88.044689) + (xy 149.066773 87.978554) (xy 149.111827 87.939515) (xy 149.153279 87.918394) (xy 149.263266 87.862353) + (xy 149.424418 87.745269) (xy 149.565269 87.604418) (xy 149.682353 87.443266) (xy 149.772785 87.265783) + (xy 149.789474 87.214419) (xy 149.834338 87.076343) (xy 149.834338 87.076342) (xy 149.834339 87.076339) + (xy 149.8655 86.879597) (xy 149.8655 86.680403) (xy 149.834339 86.483661) (xy 149.834338 86.483657) + (xy 149.834338 86.483656) (xy 149.772786 86.294219) (xy 149.741906 86.233613) (xy 149.682353 86.116734) + (xy 149.565269 85.955582) (xy 149.424418 85.814731) (xy 149.263266 85.697647) (xy 149.111827 85.620485) + (xy 149.061031 85.57251) (xy 149.044236 85.504689) (xy 149.066773 85.438554) (xy 149.111827 85.399515) + (xy 149.141719 85.384284) (xy 149.263266 85.322353) (xy 149.424418 85.205269) (xy 149.565269 85.064418) + (xy 149.682353 84.903266) (xy 149.772785 84.725783) (xy 149.77638 84.714718) (xy 149.834338 84.536343) + (xy 149.834338 84.536342) (xy 149.834339 84.536339) (xy 149.8655 84.339597) (xy 149.8655 84.140403) + (xy 149.834339 83.943661) (xy 149.834338 83.943657) (xy 149.834338 83.943656) (xy 149.772786 83.754219) + (xy 149.75931 83.72777) (xy 149.682353 83.576734) (xy 149.565269 83.415582) (xy 149.424418 83.274731) + (xy 149.263266 83.157647) (xy 149.165722 83.107946) (xy 149.111827 83.080485) (xy 149.061031 83.03251) + (xy 149.044236 82.964689) (xy 149.066773 82.898554) (xy 149.111827 82.859515) (xy 149.129243 82.850641) + (xy 149.263266 82.782353) (xy 149.424418 82.665269) (xy 149.565269 82.524418) (xy 149.682353 82.363266) + (xy 149.772785 82.185783) (xy 149.775179 82.178415) (xy 149.834338 81.996343) (xy 149.834338 81.996342) + (xy 149.834339 81.996339) (xy 149.8655 81.799597) (xy 149.8655 81.600403) (xy 149.834339 81.403661) + (xy 149.834338 81.403657) (xy 149.834338 81.403656) (xy 149.772786 81.214219) (xy 149.772785 81.214217) + (xy 149.682353 81.036734) (xy 149.565269 80.875582) (xy 149.424418 80.734731) (xy 149.263266 80.617647) + (xy 149.164713 80.567432) (xy 149.111827 80.540485) (xy 149.061031 80.49251) (xy 149.044236 80.424689) + (xy 149.066773 80.358554) (xy 149.111827 80.319515) (xy 149.160827 80.294548) (xy 149.263266 80.242353) + (xy 149.424418 80.125269) (xy 149.565269 79.984418) (xy 149.682353 79.823266) (xy 149.772785 79.645783) + (xy 149.787308 79.601086) (xy 149.834338 79.456343) (xy 149.834338 79.456342) (xy 149.834339 79.456339) + (xy 149.8655 79.259597) (xy 149.8655 79.060403) (xy 149.834339 78.863661) (xy 149.834338 78.863657) + (xy 149.834338 78.863656) (xy 149.772786 78.674219) (xy 149.772785 78.674217) (xy 149.682353 78.496734) + (xy 149.565269 78.335582) (xy 149.424418 78.194731) (xy 149.263266 78.077647) (xy 149.169753 78.03) + (xy 149.111827 78.000485) (xy 149.061031 77.95251) (xy 149.044236 77.884689) (xy 149.066773 77.818554) + (xy 149.111827 77.779515) (xy 149.146704 77.761744) (xy 149.263266 77.702353) (xy 149.424418 77.585269) + (xy 149.565269 77.444418) (xy 149.682353 77.283266) (xy 149.772785 77.105783) (xy 149.806962 77.000598) + (xy 149.834338 76.916343) (xy 149.834338 76.916342) (xy 149.834339 76.916339) (xy 149.8655 76.719597) + (xy 149.8655 76.520403) (xy 149.834339 76.323661) (xy 149.834338 76.323657) (xy 149.834338 76.323656) + (xy 149.772786 76.134219) (xy 149.682352 75.956733) (xy 149.565269 75.795582) (xy 149.424418 75.654731) + (xy 149.263266 75.537647) (xy 149.140777 75.475236) (xy 149.111827 75.460485) (xy 149.061031 75.41251) + (xy 149.044236 75.344689) (xy 149.066773 75.278554) (xy 149.111827 75.239515) (xy 149.121116 75.234781) + (xy 149.263266 75.162353) (xy 149.424418 75.045269) (xy 149.565269 74.904418) (xy 149.682353 74.743266) + (xy 149.772785 74.565783) (xy 149.828631 74.393907) (xy 149.834338 74.376343) (xy 149.834338 74.376342) + (xy 149.834339 74.376339) (xy 149.8655 74.179597) (xy 149.8655 73.980403) (xy 149.834339 73.783661) + (xy 149.834338 73.783657) (xy 149.834338 73.783656) (xy 149.772786 73.594219) (xy 149.743593 73.536924) + (xy 149.682353 73.416734) (xy 149.565269 73.255582) (xy 149.424418 73.114731) (xy 149.263266 72.997647) + (xy 149.111827 72.920485) (xy 149.061031 72.87251) (xy 149.044236 72.804689) (xy 149.066773 72.738554) + (xy 149.111827 72.699515) (xy 149.121116 72.694781) (xy 149.263266 72.622353) (xy 149.424418 72.505269) + (xy 149.565269 72.364418) (xy 149.682353 72.203266) (xy 149.772785 72.025783) (xy 149.780796 72.001127) + (xy 149.834338 71.836343) (xy 149.834338 71.836342) (xy 149.834339 71.836339) (xy 149.8655 71.639597) + (xy 149.8655 71.440403) (xy 149.834339 71.243661) (xy 149.834338 71.243657) (xy 149.834338 71.243656) + (xy 149.772786 71.054219) (xy 149.74855 71.006654) (xy 149.682353 70.876734) (xy 149.565269 70.715582) + (xy 149.424418 70.574731) (xy 149.263266 70.457647) (xy 149.156162 70.403075) (xy 149.111827 70.380485) + (xy 149.061031 70.33251) (xy 149.044236 70.264689) (xy 149.066773 70.198554) (xy 149.111827 70.159515) + (xy 149.1439 70.143173) (xy 149.263266 70.082353) (xy 149.424418 69.965269) (xy 149.565269 69.824418) + (xy 149.682353 69.663266) (xy 149.772785 69.485783) (xy 149.776293 69.474986) (xy 149.834338 69.296343) + (xy 149.834338 69.296342) (xy 149.834339 69.296339) (xy 149.8655 69.099597) (xy 149.8655 68.900403) + (xy 149.834339 68.703661) (xy 149.834338 68.703657) (xy 149.834338 68.703656) (xy 149.772786 68.514219) + (xy 149.732127 68.434421) (xy 149.682353 68.336734) (xy 149.565269 68.175582) (xy 149.424418 68.034731) + (xy 149.307543 67.949816) (xy 149.264878 67.894487) (xy 149.258899 67.824874) (xy 149.291505 67.763079) + (xy 149.352343 67.728722) (xy 149.380428 67.725499) (xy 149.412872 67.725499) (xy 149.472483 67.719091) + (xy 149.607331 67.668796) (xy 149.722546 67.582546) (xy 149.808796 67.467331) (xy 149.859091 67.332483) + (xy 149.8655 67.272873) (xy 149.865499 65.739361) (xy 149.885184 65.672323) (xy 149.901818 65.651681) + (xy 150.196681 65.356819) (xy 150.258004 65.323334) (xy 150.284362 65.3205) (xy 170.631688 65.3205) + ) + ) + (filled_polygon + (layer "F.Cu") + (pts + (xy 147.850822 110.660185) (xy 147.85666 110.664175) (xy 147.936734 110.722353) (xy 147.968134 110.738352) + (xy 148.088172 110.799515) (xy 148.138968 110.84749) (xy 148.155763 110.915311) (xy 148.133225 110.981446) + (xy 148.088172 111.020485) (xy 147.936733 111.097647) (xy 147.856669 111.155818) (xy 147.775582 111.214731) + (xy 147.77558 111.214733) (xy 147.775579 111.214733) (xy 147.634733 111.355579) (xy 147.634733 111.35558) + (xy 147.634731 111.355582) (xy 147.597594 111.406697) (xy 147.517647 111.516733) (xy 147.427213 111.694219) + (xy 147.365661 111.883656) (xy 147.365661 111.883659) (xy 147.340606 112.041851) (xy 147.3345 112.080403) + (xy 147.3345 112.279597) (xy 147.340589 112.318041) (xy 147.365661 112.47634) (xy 147.365661 112.476343) + (xy 147.427213 112.66578) (xy 147.511093 112.830404) (xy 147.517647 112.843266) (xy 147.634731 113.004418) + (xy 147.775582 113.145269) (xy 147.936734 113.262353) (xy 147.976271 113.282498) (xy 148.088172 113.339515) + (xy 148.138968 113.38749) (xy 148.155763 113.455311) (xy 148.133225 113.521446) (xy 148.088172 113.560485) + (xy 147.936733 113.637647) (xy 147.865074 113.689711) (xy 147.775582 113.754731) (xy 147.77558 113.754733) + (xy 147.775579 113.754733) (xy 147.634733 113.895579) (xy 147.634733 113.89558) (xy 147.634731 113.895582) + (xy 147.602943 113.939334) (xy 147.517647 114.056733) (xy 147.427213 114.234219) (xy 147.365661 114.423656) + (xy 147.365661 114.423659) (xy 147.345239 114.552602) (xy 147.3345 114.620403) (xy 147.3345 114.819597) + (xy 147.337519 114.838656) (xy 147.365661 115.01634) (xy 147.365661 115.016343) (xy 147.427213 115.20578) + (xy 147.501451 115.351479) (xy 147.517647 115.383266) (xy 147.634731 115.544418) (xy 147.775582 115.685269) + (xy 147.936734 115.802353) (xy 148.006453 115.837877) (xy 148.088172 115.879515) (xy 148.138968 115.92749) + (xy 148.155763 115.995311) (xy 148.133225 116.061446) (xy 148.088172 116.100485) (xy 147.936733 116.177647) + (xy 147.898286 116.205581) (xy 147.775582 116.294731) (xy 147.77558 116.294733) (xy 147.775579 116.294733) + (xy 147.634733 116.435579) (xy 147.634733 116.43558) (xy 147.634731 116.435582) (xy 147.584447 116.50479) + (xy 147.517647 116.596733) (xy 147.427213 116.774219) (xy 147.365661 116.963656) (xy 147.365661 116.963659) + (xy 147.335618 117.153342) (xy 147.3345 117.160403) (xy 147.3345 117.359597) (xy 147.337596 117.379144) + (xy 147.365661 117.55634) (xy 147.365661 117.556343) (xy 147.427213 117.74578) (xy 147.51657 117.921153) + (xy 147.517647 117.923266) (xy 147.634731 118.084418) (xy 147.775582 118.225269) (xy 147.936734 118.342353) + (xy 148.009009 118.379179) (xy 148.088722 118.419795) (xy 148.139518 118.46777) (xy 148.156313 118.535591) + (xy 148.133776 118.601726) (xy 148.088723 118.640764) (xy 147.936993 118.718075) (xy 147.899135 118.74558) + (xy 147.899135 118.745581) (xy 148.462425 119.308871) (xy 148.403147 119.324755) (xy 148.286853 119.391898) + (xy 148.191898 119.486853) (xy 148.124755 119.603147) (xy 148.108871 119.662425) (xy 147.545581 119.099135) + (xy 147.54558 119.099135) (xy 147.518077 119.13699) (xy 147.427679 119.314405) (xy 147.366147 119.503777) + (xy 147.335 119.700436) (xy 147.335 119.899563) (xy 147.366147 120.096222) (xy 147.427679 120.285594) + (xy 147.518077 120.463008) (xy 147.54558 120.500863) (xy 147.545581 120.500864) (xy 148.108871 119.937574) + (xy 148.124755 119.996853) (xy 148.191898 120.113147) (xy 148.286853 120.208102) (xy 148.403147 120.275245) + (xy 148.462425 120.291128) (xy 147.899134 120.854417) (xy 147.936994 120.881924) (xy 148.114405 120.97232) + (xy 148.303777 121.033852) (xy 148.500437 121.065) (xy 148.699563 121.065) (xy 148.896222 121.033852) + (xy 149.085594 120.97232) (xy 149.263005 120.881924) (xy 149.300863 120.854418) (xy 149.300863 120.854417) + (xy 148.737574 120.291128) (xy 148.796853 120.275245) (xy 148.913147 120.208102) (xy 149.008102 120.113147) + (xy 149.075245 119.996853) (xy 149.091128 119.937574) (xy 149.654417 120.500863) (xy 149.654418 120.500863) + (xy 149.681924 120.463005) (xy 149.77232 120.285594) (xy 149.833852 120.096222) (xy 149.865 119.899563) + (xy 149.865 119.700436) (xy 149.833852 119.503777) (xy 149.77232 119.314405) (xy 149.681924 119.136994) + (xy 149.654417 119.099135) (xy 149.654417 119.099134) (xy 149.091128 119.662424) (xy 149.075245 119.603147) + (xy 149.008102 119.486853) (xy 148.913147 119.391898) (xy 148.796853 119.324755) (xy 148.737574 119.308871) + (xy 149.300864 118.745581) (xy 149.300863 118.74558) (xy 149.263008 118.718077) (xy 149.111277 118.640765) + (xy 149.060481 118.59279) (xy 149.043686 118.524969) (xy 149.066224 118.458834) (xy 149.111277 118.419795) + (xy 149.111827 118.419515) (xy 149.263266 118.342353) (xy 149.424418 118.225269) (xy 149.565269 118.084418) + (xy 149.682353 117.923266) (xy 149.772785 117.745783) (xy 149.797403 117.670016) (xy 149.834338 117.556343) + (xy 149.834338 117.556342) (xy 149.834339 117.556339) (xy 149.8655 117.359597) (xy 149.8655 117.160403) + (xy 149.834339 116.963661) (xy 149.834338 116.963657) (xy 149.834338 116.963656) (xy 149.772786 116.774219) + (xy 149.750593 116.730663) (xy 149.682353 116.596734) (xy 149.565269 116.435582) (xy 149.424418 116.294731) + (xy 149.263266 116.177647) (xy 149.11923 116.104257) (xy 149.111827 116.100485) (xy 149.061031 116.05251) + (xy 149.044236 115.984689) (xy 149.066773 115.918554) (xy 149.111827 115.879515) (xy 149.121116 115.874781) + (xy 149.263266 115.802353) (xy 149.424418 115.685269) (xy 149.565269 115.544418) (xy 149.682353 115.383266) + (xy 149.772785 115.205783) (xy 149.772786 115.20578) (xy 149.834338 115.016343) (xy 149.834338 115.016342) + (xy 149.834339 115.016339) (xy 149.8655 114.819597) (xy 149.8655 114.620403) (xy 149.834339 114.423661) + (xy 149.834338 114.423657) (xy 149.834338 114.423656) (xy 149.772786 114.234219) (xy 149.761827 114.21271) + (xy 149.682353 114.056734) (xy 149.565269 113.895582) (xy 149.424418 113.754731) (xy 149.263266 113.637647) + (xy 149.146614 113.57821) (xy 149.111827 113.560485) (xy 149.061031 113.51251) (xy 149.044236 113.444689) + (xy 149.066773 113.378554) (xy 149.111827 113.339515) (xy 149.135455 113.327476) (xy 149.263266 113.262353) + (xy 149.343332 113.204181) (xy 149.409138 113.180702) (xy 149.416217 113.1805) (xy 150.514218 113.1805) + (xy 150.581257 113.200185) (xy 150.601899 113.216819) (xy 151.163181 113.778101) (xy 151.196666 113.839424) + (xy 151.1995 113.865782) (xy 151.1995 121.534218) (xy 151.179815 121.601257) (xy 151.163181 121.621899) + (xy 148.221899 124.563181) (xy 148.160576 124.596666) (xy 148.134218 124.5995) (xy 144.501455 124.5995) + (xy 144.40826 124.618038) (xy 144.408257 124.618038) (xy 144.404812 124.618724) (xy 144.308164 124.637949) + (xy 144.277864 124.6505) (xy 144.269858 124.653816) (xy 144.269847 124.653819) (xy 144.12609 124.713366) + (xy 144.12608 124.713371) (xy 144.013074 124.78888) (xy 144.013073 124.788881) (xy 143.962216 124.822861) + (xy 143.962215 124.822862) (xy 142.203804 126.581275) (xy 141.62222 127.162859) (xy 141.622218 127.162861) + (xy 141.564265 127.220814) (xy 141.48286 127.302218) (xy 141.480352 127.305275) (xy 141.478633 127.306445) + (xy 141.478553 127.306526) (xy 141.478537 127.30651) (xy 141.422605 127.344608) (xy 141.352761 127.346477) + (xy 141.292993 127.310289) (xy 141.262278 127.247532) (xy 141.2605 127.226608) (xy 141.2605 126.605782) + (xy 141.280185 126.538743) (xy 141.296819 126.518101) (xy 143.822474 123.992447) (xy 146.377139 121.437782) + (xy 146.419423 121.374499) (xy 146.486632 121.273914) (xy 146.541409 121.141669) (xy 146.562051 121.091836) + (xy 146.6005 120.898541) (xy 146.6005 120.70146) (xy 146.6005 110.865782) (xy 146.609144 110.836342) + (xy 146.615668 110.806355) (xy 146.619422 110.801339) (xy 146.620185 110.798743) (xy 146.636813 110.778106) + (xy 146.738103 110.676817) (xy 146.799426 110.643334) (xy 146.825783 110.6405) (xy 147.783783 110.6405) + ) + ) + (filled_polygon + (layer "F.Cu") + (pts + (xy 190.461257 98.840185) (xy 190.481899 98.856819) (xy 191.773181 100.148101) (xy 191.806666 100.209424) + (xy 191.8095 100.235782) (xy 191.8095 107.854217) (xy 191.789815 107.921256) (xy 191.773181 107.941898) + (xy 191.431899 108.283181) (xy 191.370576 108.316666) (xy 191.344218 108.3195) (xy 188.861457 108.3195) + (xy 188.790369 108.33364) (xy 188.790355 108.333643) (xy 188.786859 108.334339) (xy 188.668164 108.357949) + (xy 188.628207 108.3745) (xy 188.620247 108.377796) (xy 188.620243 108.377798) (xy 188.486092 108.433364) + (xy 188.486079 108.433371) (xy 188.344215 108.528163) (xy 188.322218 108.54286) (xy 188.322212 108.542865) + (xy 187.35959 109.505489) (xy 187.04722 109.817859) (xy 187.047218 109.817861) (xy 186.998618 109.866461) + (xy 186.907859 109.957219) (xy 186.798371 110.121079) (xy 186.798366 110.121089) (xy 186.745038 110.249832) + (xy 186.745038 110.249834) (xy 186.735404 110.273093) (xy 186.722947 110.303167) (xy 186.721953 110.308168) + (xy 186.6845 110.496454) (xy 186.6845 111.192634) (xy 186.682053 111.20366) (xy 186.683087 111.2113) + (xy 186.67619 111.230084) (xy 186.672863 111.24508) (xy 186.669819 111.2516) (xy 186.662686 111.263166) + (xy 186.658439 111.275982) (xy 186.655374 111.282549) (xy 186.636871 111.303547) (xy 186.620939 111.326556) + (xy 186.614088 111.329403) (xy 186.609182 111.334972) (xy 186.582261 111.342634) (xy 186.556421 111.353376) + (xy 186.549117 111.352067) (xy 186.541981 111.354099) (xy 186.515196 111.345991) (xy 186.487646 111.341057) + (xy 186.482077 111.335967) (xy 186.475108 111.333858) (xy 186.4587 111.314601) (xy 186.437472 111.2952) + (xy 186.429669 111.282549) (xy 186.402712 111.238844) (xy 186.278656 111.114788) (xy 186.185888 111.057569) + (xy 186.129336 111.022687) (xy 186.129331 111.022685) (xy 186.102355 111.013746) (xy 185.962797 110.967501) + (xy 185.962795 110.9675) (xy 185.860016 110.957) (xy 185.860009 110.957) (xy 185.809729 110.957) + (xy 185.74269 110.937315) (xy 185.722048 110.920681) (xy 185.166049 110.364681) (xy 185.132564 110.303358) + (xy 185.137548 110.233666) (xy 185.17942 110.177733) (xy 185.244884 110.153316) (xy 185.25373 110.153) + (xy 185.355686 110.153) (xy 185.355694 110.153) (xy 185.392569 110.150098) (xy 185.392571 110.150097) + (xy 185.392573 110.150097) (xy 185.475218 110.126086) (xy 185.550398 110.104244) (xy 185.691865 110.020581) + (xy 185.808081 109.904365) (xy 185.891744 109.762898) (xy 185.932429 109.622861) (xy 185.937597 109.605073) + (xy 185.937598 109.605067) (xy 185.9405 109.568194) (xy 185.9405 109.530967) (xy 185.960185 109.463928) + (xy 186.012989 109.418173) (xy 186.040304 109.409351) (xy 186.066413 109.404158) (xy 186.202995 109.347584) + (xy 186.252229 109.314686) (xy 186.252234 109.314683) (xy 186.30689 109.278164) (xy 186.325916 109.265452) + (xy 186.842951 108.748416) (xy 186.862272 108.7195) (xy 186.925084 108.625495) (xy 186.930746 108.611827) + (xy 186.948278 108.5695) (xy 186.981658 108.488913) (xy 186.995656 108.41854) (xy 187.0105 108.34392) + (xy 187.0105 107.783179) (xy 187.030185 107.71614) (xy 187.082989 107.670385) (xy 187.152147 107.660441) + (xy 187.17349 107.665469) (xy 187.194703 107.672499) (xy 187.297491 107.683) (xy 188.072508 107.682999) + (xy 188.072516 107.682998) (xy 188.072519 107.682998) (xy 188.132889 107.676831) (xy 188.175297 107.672499) + (xy 188.341834 107.617314) (xy 188.491156 107.525212) (xy 188.615212 107.401156) (xy 188.617252 107.397847) + (xy 188.619245 107.396055) (xy 188.619693 107.395489) (xy 188.619789 107.395565) (xy 188.669194 107.351123) + (xy 188.738156 107.339895) (xy 188.80224 107.367734) (xy 188.828329 107.397839) (xy 188.830181 107.400841) + (xy 188.830183 107.400844) (xy 188.954154 107.524815) (xy 189.103375 107.616856) (xy 189.10338 107.616858) + (xy 189.269802 107.672005) (xy 189.269809 107.672006) (xy 189.372519 107.682499) (xy 189.509999 107.682499) + (xy 190.01 107.682499) (xy 190.147472 107.682499) (xy 190.147486 107.682498) (xy 190.250197 107.672005) + (xy 190.416619 107.616858) (xy 190.416624 107.616856) (xy 190.565845 107.524815) (xy 190.689815 107.400845) + (xy 190.781856 107.251624) (xy 190.781858 107.251619) (xy 190.837005 107.085197) (xy 190.837006 107.08519) + (xy 190.847499 106.982486) (xy 190.8475 106.982473) (xy 190.8475 106.7075) (xy 190.01 106.7075) + (xy 190.01 107.682499) (xy 189.509999 107.682499) (xy 189.51 107.682498) (xy 189.51 106.2075) (xy 190.01 106.2075) + (xy 190.847499 106.2075) (xy 190.847499 105.932528) (xy 190.847498 105.932513) (xy 190.837005 105.829802) + (xy 190.781858 105.66338) (xy 190.781856 105.663375) (xy 190.689815 105.514154) (xy 190.565845 105.390184) + (xy 190.416624 105.298143) (xy 190.416619 105.298141) (xy 190.250197 105.242994) (xy 190.25019 105.242993) + (xy 190.147486 105.2325) (xy 190.01 105.2325) (xy 190.01 106.2075) (xy 189.51 106.2075) (xy 189.51 105.2325) + (xy 189.372527 105.2325) (xy 189.372512 105.232501) (xy 189.269802 105.242994) (xy 189.10338 105.298141) + (xy 189.103375 105.298143) (xy 188.954154 105.390184) (xy 188.830183 105.514155) (xy 188.830179 105.51416) + (xy 188.828326 105.517165) (xy 188.826518 105.51879) (xy 188.825702 105.519823) (xy 188.825525 105.519683) + (xy 188.776374 105.563885) (xy 188.707411 105.575101) (xy 188.643331 105.547252) (xy 188.617253 105.517153) + (xy 188.617237 105.517128) (xy 188.615212 105.513844) (xy 188.491156 105.389788) (xy 188.341834 105.297686) + (xy 188.175297 105.242501) (xy 188.175295 105.2425) (xy 188.07251 105.232) (xy 187.297498 105.232) + (xy 187.29748 105.232001) (xy 187.194703 105.2425) (xy 187.1947 105.242501) (xy 187.028168 105.297685) + (xy 187.028163 105.297687) (xy 186.878842 105.389789) (xy 186.754789 105.513842) (xy 186.662684 105.663169) + (xy 186.662681 105.663175) (xy 186.662011 105.665198) (xy 186.661176 105.666402) (xy 186.659634 105.669711) + (xy 186.659068 105.669447) (xy 186.62223 105.722637) (xy 186.591764 105.740738) (xy 186.467008 105.792414) + (xy 186.466998 105.792419) (xy 186.357388 105.865658) (xy 186.357389 105.865659) (xy 186.34408 105.874551) + (xy 185.70218 106.516451) (xy 185.640857 106.549936) (xy 185.571165 106.544952) (xy 185.515232 106.50308) + (xy 185.490815 106.437616) (xy 185.490499 106.42877) (xy 185.490499 105.250396) (xy 185.510184 105.183357) + (xy 185.551376 105.143665) (xy 185.691865 105.060581) (xy 185.808081 104.944365) (xy 185.891744 104.802898) + (xy 185.933377 104.659597) (xy 185.937597 104.645073) (xy 185.937598 104.645067) (xy 185.939108 104.62588) + (xy 185.9405 104.608194) (xy 185.9405 104.597) (xy 185.960185 104.529961) (xy 186.012989 104.484206) + (xy 186.0645 104.473) (xy 186.77527 104.473) (xy 186.842309 104.492685) (xy 186.862951 104.509319) + (xy 186.878844 104.525212) (xy 187.028166 104.617314) (xy 187.194703 104.672499) (xy 187.297491 104.683) + (xy 188.072508 104.682999) (xy 188.072516 104.682998) (xy 188.072519 104.682998) (xy 188.128802 104.677248) + (xy 188.175297 104.672499) (xy 188.341834 104.617314) (xy 188.491156 104.525212) (xy 188.615212 104.401156) + (xy 188.616961 104.398319) (xy 188.618669 104.396783) (xy 188.619693 104.395489) (xy 188.619914 104.395663) + (xy 188.668906 104.351596) (xy 188.737868 104.340372) (xy 188.801951 104.368213) (xy 188.828037 104.398317) + (xy 188.829788 104.401156) (xy 188.953844 104.525212) (xy 189.103166 104.617314) (xy 189.269703 104.672499) + (xy 189.372491 104.683) (xy 190.147508 104.682999) (xy 190.147516 104.682998) (xy 190.147519 104.682998) + (xy 190.203802 104.677248) (xy 190.250297 104.672499) (xy 190.416834 104.617314) (xy 190.566156 104.525212) + (xy 190.690212 104.401156) (xy 190.782314 104.251834) (xy 190.837499 104.085297) (xy 190.848 103.982509) + (xy 190.847999 102.932492) (xy 190.840655 102.860603) (xy 190.837499 102.829703) (xy 190.837498 102.8297) + (xy 190.827634 102.799932) (xy 190.782314 102.663166) (xy 190.690212 102.513844) (xy 190.690209 102.513841) + (xy 190.690208 102.513839) (xy 190.68723 102.510072) (xy 190.661093 102.445276) (xy 190.6605 102.433166) + (xy 190.6605 101.831307) (xy 190.660499 101.831303) (xy 190.639088 101.723661) (xy 190.625895 101.657334) + (xy 190.590514 101.571919) (xy 190.558013 101.493453) (xy 190.488102 101.388824) (xy 190.459464 101.345964) + (xy 190.459462 101.345962) (xy 190.45946 101.345959) (xy 189.434041 100.32054) (xy 189.434034 100.320534) + (xy 189.286548 100.221988) (xy 189.122666 100.154105) (xy 189.122658 100.154103) (xy 188.948696 100.1195) + (xy 188.948692 100.1195) (xy 188.771308 100.1195) (xy 188.771303 100.1195) (xy 188.597341 100.154103) + (xy 188.597333 100.154105) (xy 188.433451 100.221988) (xy 188.285965 100.320534) (xy 188.285958 100.32054) + (xy 188.16054 100.445958) (xy 188.160534 100.445965) (xy 188.061988 100.593451) (xy 187.994105 100.757333) + (xy 187.994103 100.757341) (xy 187.9595 100.931303) (xy 187.9595 101.108696) (xy 187.994103 101.282658) + (xy 187.994105 101.282666) (xy 188.061988 101.446548) (xy 188.160534 101.594034) (xy 188.16054 101.594041) + (xy 188.823181 102.256681) (xy 188.837884 102.283608) (xy 188.854477 102.309427) (xy 188.855368 102.315627) + (xy 188.856666 102.318004) (xy 188.8595 102.344362) (xy 188.8595 102.433166) (xy 188.839815 102.500205) + (xy 188.83277 102.510072) (xy 188.829787 102.513844) (xy 188.828037 102.516682) (xy 188.826329 102.518217) + (xy 188.825311 102.519506) (xy 188.82509 102.519331) (xy 188.776089 102.563405) (xy 188.707126 102.574626) + (xy 188.643044 102.546782) (xy 188.616963 102.516682) (xy 188.615214 102.513846) (xy 188.491157 102.389789) + (xy 188.491156 102.389788) (xy 188.364068 102.3114) (xy 188.341836 102.297687) (xy 188.341831 102.297685) + (xy 188.340362 102.297198) (xy 188.175297 102.242501) (xy 188.175295 102.2425) (xy 188.07251 102.232) + (xy 187.297498 102.232) (xy 187.29748 102.232001) (xy 187.194703 102.2425) (xy 187.1947 102.242501) + (xy 187.028168 102.297685) (xy 187.028163 102.297687) (xy 186.878842 102.389789) (xy 186.754789 102.513842) + (xy 186.662687 102.663163) (xy 186.662685 102.663168) (xy 186.6475 102.708994) (xy 186.617341 102.80001) + (xy 186.607501 102.829704) (xy 186.6075 102.829705) (xy 186.604344 102.860603) (xy 186.577947 102.925295) + (xy 186.520766 102.965446) (xy 186.480986 102.972) (xy 186.0645 102.972) (xy 185.997461 102.952315) + (xy 185.951706 102.899511) (xy 185.9405 102.848) (xy 185.9405 102.836813) (xy 185.940499 102.836798) + (xy 185.93994 102.8297) (xy 185.937598 102.799931) (xy 185.926619 102.762143) (xy 185.891745 102.642106) + (xy 185.891744 102.642103) (xy 185.891744 102.642102) (xy 185.808081 102.500635) (xy 185.808079 102.500633) + (xy 185.808076 102.500629) (xy 185.69187 102.384423) (xy 185.691862 102.384417) (xy 185.576749 102.31634) + (xy 185.550398 102.300756) (xy 185.550397 102.300755) (xy 185.550396 102.300755) (xy 185.550393 102.300754) + (xy 185.392573 102.254902) (xy 185.392567 102.254901) (xy 185.355701 102.252) (xy 185.355694 102.252) + (xy 184.924306 102.252) (xy 184.924298 102.252) (xy 184.887432 102.254901) (xy 184.887426 102.254902) + (xy 184.779095 102.286376) (xy 184.709225 102.286177) (xy 184.650555 102.248235) (xy 184.621712 102.184596) + (xy 184.6205 102.1673) (xy 184.6205 101.87223) (xy 184.640185 101.805191) (xy 184.656819 101.784549) + (xy 187.584549 98.856819) (xy 187.645872 98.823334) (xy 187.67223 98.8205) (xy 190.394218 98.8205) + ) + ) + (filled_polygon + (layer "F.Cu") + (pts + (xy 177.144809 69.770185) (xy 177.165451 69.786819) (xy 180.873181 73.494548) (xy 180.906666 73.555871) + (xy 180.9095 73.582229) (xy 180.9095 76.0855) (xy 180.889815 76.152539) (xy 180.837011 76.198294) + (xy 180.7855 76.2095) (xy 180.769298 76.2095) (xy 180.732432 76.212401) (xy 180.732426 76.212402) + (xy 180.574606 76.258254) (xy 180.574603 76.258255) (xy 180.433137 76.341917) (xy 180.433129 76.341923) + (xy 180.316923 76.458129) (xy 180.316917 76.458137) (xy 180.233255 76.599603) (xy 180.233254 76.599606) + (xy 180.187402 76.757426) (xy 180.187401 76.757432) (xy 180.1845 76.794298) (xy 180.1845 77.225701) + (xy 180.187401 77.262567) (xy 180.187402 77.262573) (xy 180.233254 77.420393) (xy 180.233255 77.420396) + (xy 180.316917 77.561862) (xy 180.321702 77.568031) (xy 180.319369 77.56984) (xy 180.34621 77.618995) + (xy 180.341226 77.688687) (xy 180.32047 77.721021) (xy 180.322097 77.722283) (xy 180.317313 77.728449) + (xy 180.233718 77.869801) (xy 180.187899 78.027513) (xy 180.187704 78.029998) (xy 180.187705 78.03) + (xy 181.536 78.03) (xy 181.603039 78.049685) (xy 181.648794 78.102489) (xy 181.66 78.154) (xy 181.66 78.406) + (xy 181.640315 78.473039) (xy 181.587511 78.518794) (xy 181.536 78.53) (xy 180.187705 78.53) (xy 180.187704 78.530001) + (xy 180.187899 78.532486) (xy 180.233718 78.690198) (xy 180.317314 78.831552) (xy 180.3221 78.837722) + (xy 180.31964 78.839629) (xy 180.34621 78.888288) (xy 180.341226 78.95798) (xy 180.320162 78.990781) + (xy 180.321699 78.991974) (xy 180.316915 78.99814) (xy 180.233255 79.139603) (xy 180.233254 79.139606) + (xy 180.187402 79.297426) (xy 180.187401 79.297432) (xy 180.1845 79.334298) (xy 180.1845 79.765701) + (xy 180.187401 79.802567) (xy 180.187402 79.802573) (xy 180.218876 79.910905) (xy 180.218677 79.980775) + (xy 180.180735 80.039445) (xy 180.117096 80.068288) (xy 180.0998 80.0695) (xy 178.02223 80.0695) + (xy 177.955191 80.049815) (xy 177.934549 80.033181) (xy 177.196819 79.295451) (xy 177.163334 79.234128) + (xy 177.1605 79.20777) (xy 177.1605 73.396079) (xy 177.131659 73.251092) (xy 177.131658 73.251091) + (xy 177.131658 73.251087) (xy 177.120584 73.224351) (xy 177.075087 73.114511) (xy 177.07508 73.114498) + (xy 176.992952 72.991585) (xy 176.958057 72.95669) (xy 176.888416 72.887049) (xy 176.412481 72.411114) + (xy 174.958421 70.957052) (xy 174.958414 70.957046) (xy 174.861494 70.892287) (xy 174.861493 70.892287) + (xy 174.835495 70.874916) (xy 174.835488 70.874912) (xy 174.698917 70.818343) (xy 174.698907 70.81834) + (xy 174.55392 70.7895) (xy 174.553918 70.7895) (xy 172.542155 70.7895) (xy 172.475116 70.769815) + (xy 172.441838 70.738387) (xy 172.425269 70.715582) (xy 172.28442 70.574733) (xy 172.284418 70.574731) + (xy 172.123266 70.457647) (xy 172.016162 70.403075) (xy 171.971827 70.380485) (xy 171.921031 70.33251) + (xy 171.904236 70.264689) (xy 171.926773 70.198554) (xy 171.971827 70.159515) (xy 172.0039 70.143173) + (xy 172.123266 70.082353) (xy 172.284418 69.965269) (xy 172.425269 69.824418) (xy 172.441838 69.801613) + (xy 172.497169 69.758948) (xy 172.542155 69.7505) (xy 177.07777 69.7505) + ) + ) + (filled_polygon + (layer "F.Cu") + (pts + (xy 172.514417 67.160863) (xy 172.514418 67.160863) (xy 172.541924 67.123005) (xy 172.581764 67.044816) + (xy 172.629738 66.99402) (xy 172.697559 66.977225) (xy 172.763694 66.999762) (xy 172.77993 67.01343) + (xy 173.485966 67.719466) (xy 173.509261 67.73503) (xy 173.54504 67.758936) (xy 173.633453 67.818013) + (xy 173.715393 67.851953) (xy 173.72148 67.854474) (xy 173.721485 67.854477) (xy 173.752064 67.867143) + (xy 173.797334 67.885895) (xy 173.956955 67.917645) (xy 173.971303 67.920499) (xy 173.971307 67.9205) + (xy 173.971308 67.9205) (xy 173.971309 67.9205) (xy 181.835638 67.9205) (xy 181.902677 67.940185) + (xy 181.923319 67.956819) (xy 183.323181 69.356681) (xy 183.356666 69.418004) (xy 183.3595 69.444362) + (xy 183.3595 76.667163) (xy 183.339815 76.734202) (xy 183.287011 76.779957) (xy 183.217853 76.789901) + (xy 183.154297 76.760876) (xy 183.116523 76.702098) (xy 183.116424 76.701758) (xy 183.086746 76.599606) + (xy 183.086744 76.599603) (xy 183.086744 76.599602) (xy 183.003081 76.458135) (xy 183.003079 76.458133) + (xy 183.003076 76.458129) (xy 182.88687 76.341923) (xy 182.886862 76.341917) (xy 182.745396 76.258255) + (xy 182.745393 76.258254) (xy 182.587573 76.212402) (xy 182.587567 76.212401) (xy 182.550701 76.2095) + (xy 182.550694 76.2095) (xy 182.5345 76.2095) (xy 182.467461 76.189815) (xy 182.421706 76.137011) + (xy 182.4105 76.0855) (xy 182.4105 73.146079) (xy 182.381659 73.001092) (xy 182.381658 73.001091) + (xy 182.381658 73.001087) (xy 182.374499 72.983803) (xy 182.325087 72.864511) (xy 182.32508 72.864498) + (xy 182.242952 72.741585) (xy 182.200882 72.699515) (xy 182.138416 72.637049) (xy 182.138415 72.637048) + (xy 181.12134 71.619973) (xy 177.918421 68.417052) (xy 177.918414 68.417046) (xy 177.826816 68.355843) + (xy 177.826815 68.355843) (xy 177.7955 68.334919) (xy 177.795488 68.334912) (xy 177.658917 68.278343) + (xy 177.658907 68.27834) (xy 177.51392 68.2495) (xy 177.513918 68.2495) (xy 172.542155 68.2495) + (xy 172.475116 68.229815) (xy 172.441838 68.198387) (xy 172.425269 68.175582) (xy 172.28442 68.034733) + (xy 172.284418 68.034731) (xy 172.123266 67.917647) (xy 172.123262 67.917645) (xy 171.971277 67.840204) + (xy 171.920481 67.792229) (xy 171.903686 67.724408) (xy 171.926224 67.658273) (xy 171.971277 67.619234) + (xy 172.123005 67.541924) (xy 172.160863 67.514418) (xy 172.160863 67.514417) (xy 171.597574 66.951128) + (xy 171.656853 66.935245) (xy 171.773147 66.868102) (xy 171.868102 66.773147) (xy 171.935245 66.656853) + (xy 171.951128 66.597574) + ) + ) + (filled_polygon + (layer "F.Cu") + (pts + (xy 172.502539 65.340185) (xy 172.548294 65.392989) (xy 172.5595 65.4445) (xy 172.5595 65.66269) + (xy 172.539815 65.729729) (xy 172.523181 65.750371) (xy 171.951128 66.322424) (xy 171.935245 66.263147) + (xy 171.868102 66.146853) (xy 171.773147 66.051898) (xy 171.656853 65.984755) (xy 171.597574 65.968871) + (xy 172.17865 65.387794) (xy 172.17906 65.385847) (xy 172.188821 65.375945) (xy 172.194598 65.363297) + (xy 172.212866 65.351556) (xy 172.228113 65.336092) (xy 172.242882 65.332266) (xy 172.253376 65.325523) + (xy 172.288311 65.3205) (xy 172.4355 65.3205) + ) + ) + (filled_polygon + (layer "In1.Cu") + (pts + (xy 147.003039 57.480185) (xy 147.048794 57.532989) (xy 147.06 57.5845) (xy 147.06 64.02) (xy 173.06 64.02) + (xy 173.06 63.372135) (xy 175.3595 63.372135) (xy 175.3595 65.46787) (xy 175.359501 65.467876) (xy 175.365908 65.527483) + (xy 175.416202 65.662328) (xy 175.416206 65.662335) (xy 175.502452 65.777544) (xy 175.502455 65.777547) + (xy 175.617664 65.863793) (xy 175.617671 65.863797) (xy 175.752517 65.914091) (xy 175.752516 65.914091) + (xy 175.759444 65.914835) (xy 175.812127 65.9205) (xy 177.907872 65.920499) (xy 177.967483 65.914091) + (xy 178.102331 65.863796) (xy 178.217546 65.777546) (xy 178.303796 65.662331) (xy 178.354091 65.527483) + (xy 178.3605 65.467873) (xy 178.360499 64.301902) (xy 182.9595 64.301902) (xy 182.9595 64.538097) + (xy 182.996446 64.771368) (xy 183.069433 64.995996) (xy 183.159208 65.172187) (xy 183.176657 65.206433) + (xy 183.315483 65.39751) (xy 183.48249 65.564517) (xy 183.673567 65.703343) (xy 183.772991 65.754002) + (xy 183.884003 65.810566) (xy 183.884005 65.810566) (xy 183.884008 65.810568) (xy 184.004412 65.849689) + (xy 184.108631 65.883553) (xy 184.341903 65.9205) (xy 184.341908 65.9205) (xy 184.578097 65.9205) + (xy 184.811368 65.883553) (xy 185.035992 65.810568) (xy 185.246433 65.703343) (xy 185.43751 65.564517) + (xy 185.604517 65.39751) (xy 185.743343 65.206433) (xy 185.850568 64.995992) (xy 185.923553 64.771368) + (xy 185.952267 64.590075) (xy 185.9605 64.538097) (xy 185.9605 64.301902) (xy 185.923553 64.068631) + (xy 185.850566 63.844003) (xy 185.755602 63.657627) (xy 185.743343 63.633567) (xy 185.604517 63.44249) + (xy 185.43751 63.275483) (xy 185.246433 63.136657) (xy 185.035996 63.029433) (xy 184.811368 62.956446) + (xy 184.578097 62.9195) (xy 184.578092 62.9195) (xy 184.341908 62.9195) (xy 184.341903 62.9195) + (xy 184.108631 62.956446) (xy 183.884003 63.029433) (xy 183.673566 63.136657) (xy 183.56455 63.215862) + (xy 183.48249 63.275483) (xy 183.482488 63.275485) (xy 183.482487 63.275485) (xy 183.315485 63.442487) + (xy 183.315485 63.442488) (xy 183.315483 63.44249) (xy 183.257054 63.522911) (xy 183.176657 63.633566) + (xy 183.069433 63.844003) (xy 182.996446 64.068631) (xy 182.9595 64.301902) (xy 178.360499 64.301902) + (xy 178.360499 63.372128) (xy 178.354091 63.312517) (xy 178.353151 63.309998) (xy 178.303797 63.177671) + (xy 178.303793 63.177664) (xy 178.217547 63.062455) (xy 178.217544 63.062452) (xy 178.102335 62.976206) + (xy 178.102328 62.976202) (xy 177.967482 62.925908) (xy 177.967483 62.925908) (xy 177.907883 62.919501) + (xy 177.907881 62.9195) (xy 177.907873 62.9195) (xy 177.907864 62.9195) (xy 175.812129 62.9195) + (xy 175.812123 62.919501) (xy 175.752516 62.925908) (xy 175.617671 62.976202) (xy 175.617664 62.976206) + (xy 175.502455 63.062452) (xy 175.502452 63.062455) (xy 175.416206 63.177664) (xy 175.416202 63.177671) + (xy 175.365908 63.312517) (xy 175.360512 63.36271) (xy 175.359501 63.372123) (xy 175.3595 63.372135) + (xy 173.06 63.372135) (xy 173.06 60.078711) (xy 197.1495 60.078711) (xy 197.1495 60.321288) (xy 197.181161 60.561785) + (xy 197.243947 60.796104) (xy 197.309119 60.953442) (xy 197.336776 61.020212) (xy 197.458064 61.230289) + (xy 197.458066 61.230292) (xy 197.458067 61.230293) (xy 197.605733 61.422736) (xy 197.605739 61.422743) + (xy 197.777256 61.59426) (xy 197.777263 61.594266) (xy 197.848584 61.648992) (xy 197.969711 61.741936) + (xy 198.179788 61.863224) (xy 198.4039 61.956054) (xy 198.638211 62.018838) (xy 198.818586 62.042584) + (xy 198.878711 62.0505) (xy 198.878712 62.0505) (xy 199.121289 62.0505) (xy 199.169388 62.044167) + (xy 199.361789 62.018838) (xy 199.5961 61.956054) (xy 199.820212 61.863224) (xy 200.030289 61.741936) + (xy 200.222738 61.594265) (xy 200.394265 61.422738) (xy 200.541936 61.230289) (xy 200.663224 61.020212) + (xy 200.756054 60.7961) (xy 200.818838 60.561789) (xy 200.8505 60.321288) (xy 200.8505 60.078712) + (xy 200.818838 59.838211) (xy 200.756054 59.6039) (xy 200.663224 59.379788) (xy 200.541936 59.169711) + (xy 200.394265 58.977262) (xy 200.39426 58.977256) (xy 200.222743 58.805739) (xy 200.222736 58.805733) + (xy 200.030293 58.658067) (xy 200.030292 58.658066) (xy 200.030289 58.658064) (xy 199.820212 58.536776) + (xy 199.802009 58.529236) (xy 199.596104 58.443947) (xy 199.361785 58.381161) (xy 199.121289 58.3495) + (xy 199.121288 58.3495) (xy 198.878712 58.3495) (xy 198.878711 58.3495) (xy 198.638214 58.381161) + (xy 198.403895 58.443947) (xy 198.179794 58.536773) (xy 198.179785 58.536777) (xy 197.969706 58.658067) + (xy 197.777263 58.805733) (xy 197.777256 58.805739) (xy 197.605739 58.977256) (xy 197.605733 58.977263) + (xy 197.458067 59.169706) (xy 197.336777 59.379785) (xy 197.336773 59.379794) (xy 197.243947 59.603895) + (xy 197.181161 59.838214) (xy 197.1495 60.078711) (xy 173.06 60.078711) (xy 173.06 57.5845) (xy 173.079685 57.517461) + (xy 173.132489 57.471706) (xy 173.184 57.4605) (xy 200.114108 57.4605) (xy 200.175572 57.4605) (xy 200.184418 57.460816) + (xy 200.384561 57.47513) (xy 200.402063 57.477647) (xy 200.593797 57.519355) (xy 200.610755 57.524334) + (xy 200.772064 57.5845) (xy 200.794609 57.592909) (xy 200.810701 57.600259) (xy 200.982904 57.694288) + (xy 200.997784 57.703849) (xy 201.154867 57.821441) (xy 201.168237 57.833027) (xy 201.306972 57.971762) + (xy 201.318558 57.985132) (xy 201.436146 58.14221) (xy 201.445711 58.157095) (xy 201.53974 58.329298) + (xy 201.54709 58.34539) (xy 201.615662 58.529236) (xy 201.620646 58.546212) (xy 201.662351 58.737931) + (xy 201.664869 58.755442) (xy 201.679184 58.95558) (xy 201.6795 58.964427) (xy 201.6795 137.755572) + (xy 201.679184 137.764419) (xy 201.664869 137.964557) (xy 201.662351 137.982068) (xy 201.620646 138.173787) + (xy 201.615662 138.190763) (xy 201.54709 138.374609) (xy 201.53974 138.390701) (xy 201.445711 138.562904) + (xy 201.436146 138.577789) (xy 201.318558 138.734867) (xy 201.306972 138.748237) (xy 201.168237 138.886972) + (xy 201.154867 138.898558) (xy 200.997789 139.016146) (xy 200.982904 139.025711) (xy 200.810701 139.11974) + (xy 200.794609 139.12709) (xy 200.610763 139.195662) (xy 200.593787 139.200646) (xy 200.402068 139.242351) + (xy 200.384557 139.244869) (xy 200.203779 139.257799) (xy 200.184417 139.259184) (xy 200.175572 139.2595) + (xy 59.954428 139.2595) (xy 59.945582 139.259184) (xy 59.923622 139.257613) (xy 59.745442 139.244869) + (xy 59.727931 139.242351) (xy 59.536212 139.200646) (xy 59.519236 139.195662) (xy 59.33539 139.12709) + (xy 59.319298 139.11974) (xy 59.147095 139.025711) (xy 59.13221 139.016146) (xy 58.975132 138.898558) + (xy 58.961762 138.886972) (xy 58.823027 138.748237) (xy 58.811441 138.734867) (xy 58.693849 138.577784) + (xy 58.684288 138.562904) (xy 58.590259 138.390701) (xy 58.582909 138.374609) (xy 58.575988 138.356054) + (xy 58.514334 138.190755) (xy 58.509355 138.173797) (xy 58.467647 137.982063) (xy 58.46513 137.964556) + (xy 58.454987 137.822743) (xy 58.450816 137.764418) (xy 58.4505 137.755572) (xy 58.4505 136.478711) + (xy 59.1495 136.478711) (xy 59.1495 136.721288) (xy 59.181161 136.961785) (xy 59.243947 137.196104) + (xy 59.336773 137.420205) (xy 59.336776 137.420212) (xy 59.458064 137.630289) (xy 59.458066 137.630292) + (xy 59.458067 137.630293) (xy 59.605733 137.822736) (xy 59.605739 137.822743) (xy 59.777256 137.99426) + (xy 59.777262 137.994265) (xy 59.969711 138.141936) (xy 60.179788 138.263224) (xy 60.4039 138.356054) + (xy 60.638211 138.418838) (xy 60.818586 138.442584) (xy 60.878711 138.4505) (xy 60.878712 138.4505) + (xy 61.121289 138.4505) (xy 61.169388 138.444167) (xy 61.361789 138.418838) (xy 61.5961 138.356054) + (xy 61.820212 138.263224) (xy 62.030289 138.141936) (xy 62.222738 137.994265) (xy 62.394265 137.822738) + (xy 62.541936 137.630289) (xy 62.663224 137.420212) (xy 62.756054 137.1961) (xy 62.818838 136.961789) + (xy 62.8505 136.721288) (xy 62.8505 136.478712) (xy 62.818838 136.238211) (xy 62.756054 136.0039) + (xy 62.663224 135.779788) (xy 62.541936 135.569711) (xy 62.394265 135.377262) (xy 62.39426 135.377256) + (xy 62.222743 135.205739) (xy 62.222736 135.205733) (xy 62.030293 135.058067) (xy 62.030292 135.058066) + (xy 62.030289 135.058064) (xy 61.820212 134.936776) (xy 61.820205 134.936773) (xy 61.596104 134.843947) + (xy 61.361785 134.781161) (xy 61.121289 134.7495) (xy 61.121288 134.7495) (xy 60.878712 134.7495) + (xy 60.878711 134.7495) (xy 60.638214 134.781161) (xy 60.403895 134.843947) (xy 60.179794 134.936773) + (xy 60.179785 134.936777) (xy 59.969706 135.058067) (xy 59.777263 135.205733) (xy 59.777256 135.205739) + (xy 59.605739 135.377256) (xy 59.605733 135.377263) (xy 59.458067 135.569706) (xy 59.336777 135.779785) + (xy 59.336773 135.779794) (xy 59.243947 136.003895) (xy 59.181161 136.238214) (xy 59.1495 136.478711) + (xy 58.4505 136.478711) (xy 58.4505 134.219984) (xy 66.1595 134.219984) (xy 66.1595 136.620015) + (xy 66.17 136.722795) (xy 66.170001 136.722797) (xy 66.188364 136.778213) (xy 66.225186 136.889335) + (xy 66.225187 136.889337) (xy 66.317286 137.038651) (xy 66.317289 137.038655) (xy 66.441344 137.16271) + (xy 66.441348 137.162713) (xy 66.590662 137.254812) (xy 66.590664 137.254813) (xy 66.590666 137.254814) + (xy 66.757203 137.309999) (xy 66.859992 137.3205) (xy 66.859997 137.3205) (xy 69.260003 137.3205) + (xy 69.260008 137.3205) (xy 69.362797 137.309999) (xy 69.529334 137.254814) (xy 69.678655 137.162711) + (xy 69.802711 137.038655) (xy 69.894814 136.889334) (xy 69.949999 136.722797) (xy 69.9605 136.620008) + (xy 69.9605 135.295441) (xy 71.1595 135.295441) (xy 71.1595 135.544558) (xy 71.159501 135.544575) + (xy 71.190467 135.779788) (xy 71.192018 135.791565) (xy 71.245607 135.991561) (xy 71.256498 136.032207) + (xy 71.35183 136.262361) (xy 71.351837 136.262376) (xy 71.4764 136.478126) (xy 71.62806 136.675774) + (xy 71.628066 136.675781) (xy 71.804218 136.851933) (xy 71.804225 136.851939) (xy 72.001873 137.003599) + (xy 72.217623 137.128162) (xy 72.217638 137.128169) (xy 72.310173 137.166498) (xy 72.447793 137.223502) + (xy 72.688435 137.287982) (xy 72.935435 137.3205) (xy 72.935442 137.3205) (xy 73.184558 137.3205) + (xy 73.184565 137.3205) (xy 73.431565 137.287982) (xy 73.672207 137.223502) (xy 73.902373 137.128164) + (xy 74.118127 137.003599) (xy 74.315776 136.851938) (xy 74.491938 136.675776) (xy 74.643599 136.478127) + (xy 74.768164 136.262373) (xy 74.863502 136.032207) (xy 74.927982 135.791565) (xy 74.9605 135.544565) + (xy 74.9605 135.295441) (xy 76.1595 135.295441) (xy 76.1595 135.544558) (xy 76.159501 135.544575) + (xy 76.190467 135.779788) (xy 76.192018 135.791565) (xy 76.245607 135.991561) (xy 76.256498 136.032207) + (xy 76.35183 136.262361) (xy 76.351837 136.262376) (xy 76.4764 136.478126) (xy 76.62806 136.675774) + (xy 76.628066 136.675781) (xy 76.804218 136.851933) (xy 76.804225 136.851939) (xy 77.001873 137.003599) + (xy 77.217623 137.128162) (xy 77.217638 137.128169) (xy 77.310173 137.166498) (xy 77.447793 137.223502) + (xy 77.688435 137.287982) (xy 77.935435 137.3205) (xy 77.935442 137.3205) (xy 78.184558 137.3205) + (xy 78.184565 137.3205) (xy 78.431565 137.287982) (xy 78.672207 137.223502) (xy 78.902373 137.128164) + (xy 79.118127 137.003599) (xy 79.315776 136.851938) (xy 79.491938 136.675776) (xy 79.643599 136.478127) + (xy 79.768164 136.262373) (xy 79.863502 136.032207) (xy 79.927982 135.791565) (xy 79.9605 135.544565) + (xy 79.9605 135.295435) (xy 79.927982 135.048435) (xy 79.863502 134.807793) (xy 79.798348 134.650498) + (xy 79.768169 134.577638) (xy 79.768162 134.577623) (xy 79.6436 134.361874) (xy 79.628596 134.34232) + (xy 79.628595 134.342319) (xy 79.573091 134.269984) (xy 84.492833 134.269984) (xy 84.492833 136.670015) + (xy 84.503333 136.772795) (xy 84.503334 136.772796) (xy 84.558519 136.939335) (xy 84.55852 136.939337) + (xy 84.650619 137.088651) (xy 84.650622 137.088655) (xy 84.774677 137.21271) (xy 84.774681 137.212713) + (xy 84.923995 137.304812) (xy 84.923997 137.304813) (xy 84.923999 137.304814) (xy 85.090536 137.359999) + (xy 85.193325 137.3705) (xy 85.19333 137.3705) (xy 87.593336 137.3705) (xy 87.593341 137.3705) (xy 87.69613 137.359999) + (xy 87.862667 137.304814) (xy 88.011988 137.212711) (xy 88.136044 137.088655) (xy 88.228147 136.939334) + (xy 88.283332 136.772797) (xy 88.293833 136.670008) (xy 88.293833 135.345441) (xy 89.492833 135.345441) + (xy 89.492833 135.594558) (xy 89.492834 135.594575) (xy 89.518767 135.791561) (xy 89.525351 135.841565) + (xy 89.568847 136.003895) (xy 89.589831 136.082207) (xy 89.685163 136.312361) (xy 89.68517 136.312376) + (xy 89.809733 136.528126) (xy 89.961393 136.725774) (xy 89.961399 136.725781) (xy 90.137551 136.901933) + (xy 90.137558 136.901939) (xy 90.335206 137.053599) (xy 90.550956 137.178162) (xy 90.550971 137.178169) + (xy 90.650158 137.219253) (xy 90.781126 137.273502) (xy 91.021768 137.337982) (xy 91.268768 137.3705) + (xy 91.268775 137.3705) (xy 91.517891 137.3705) (xy 91.517898 137.3705) (xy 91.764898 137.337982) + (xy 92.00554 137.273502) (xy 92.235706 137.178164) (xy 92.45146 137.053599) (xy 92.649109 136.901938) + (xy 92.825271 136.725776) (xy 92.976932 136.528127) (xy 93.101497 136.312373) (xy 93.196835 136.082207) + (xy 93.261315 135.841565) (xy 93.293833 135.594565) (xy 93.293833 135.345441) (xy 94.492833 135.345441) + (xy 94.492833 135.594558) (xy 94.492834 135.594575) (xy 94.518767 135.791561) (xy 94.525351 135.841565) + (xy 94.568847 136.003895) (xy 94.589831 136.082207) (xy 94.685163 136.312361) (xy 94.68517 136.312376) + (xy 94.809733 136.528126) (xy 94.961393 136.725774) (xy 94.961399 136.725781) (xy 95.137551 136.901933) + (xy 95.137558 136.901939) (xy 95.335206 137.053599) (xy 95.550956 137.178162) (xy 95.550971 137.178169) + (xy 95.650158 137.219253) (xy 95.781126 137.273502) (xy 96.021768 137.337982) (xy 96.268768 137.3705) + (xy 96.268775 137.3705) (xy 96.517891 137.3705) (xy 96.517898 137.3705) (xy 96.764898 137.337982) + (xy 97.00554 137.273502) (xy 97.235706 137.178164) (xy 97.45146 137.053599) (xy 97.649109 136.901938) + (xy 97.825271 136.725776) (xy 97.976932 136.528127) (xy 98.101497 136.312373) (xy 98.196835 136.082207) + (xy 98.261315 135.841565) (xy 98.293833 135.594565) (xy 98.293833 135.345435) (xy 98.261315 135.098435) + (xy 98.196835 134.857793) (xy 98.142586 134.726825) (xy 98.101502 134.627638) (xy 98.101495 134.627623) + (xy 97.976932 134.411873) (xy 97.885197 134.292321) (xy 97.829691 134.219984) (xy 102.826167 134.219984) + (xy 102.826167 136.620015) (xy 102.836667 136.722795) (xy 102.836668 136.722797) (xy 102.855031 136.778213) + (xy 102.891853 136.889335) (xy 102.891854 136.889337) (xy 102.983953 137.038651) (xy 102.983956 137.038655) + (xy 103.108011 137.16271) (xy 103.108015 137.162713) (xy 103.257329 137.254812) (xy 103.257331 137.254813) + (xy 103.257333 137.254814) (xy 103.42387 137.309999) (xy 103.526659 137.3205) (xy 103.526664 137.3205) + (xy 105.92667 137.3205) (xy 105.926675 137.3205) (xy 106.029464 137.309999) (xy 106.196001 137.254814) + (xy 106.345322 137.162711) (xy 106.469378 137.038655) (xy 106.561481 136.889334) (xy 106.616666 136.722797) + (xy 106.627167 136.620008) (xy 106.627167 135.295441) (xy 107.826167 135.295441) (xy 107.826167 135.544558) + (xy 107.826168 135.544575) (xy 107.857134 135.779788) (xy 107.858685 135.791565) (xy 107.912274 135.991561) + (xy 107.923165 136.032207) (xy 108.018497 136.262361) (xy 108.018504 136.262376) (xy 108.143067 136.478126) + (xy 108.294727 136.675774) (xy 108.294733 136.675781) (xy 108.470885 136.851933) (xy 108.470892 136.851939) + (xy 108.66854 137.003599) (xy 108.88429 137.128162) (xy 108.884305 137.128169) (xy 108.97684 137.166498) + (xy 109.11446 137.223502) (xy 109.355102 137.287982) (xy 109.602102 137.3205) (xy 109.602109 137.3205) + (xy 109.851225 137.3205) (xy 109.851232 137.3205) (xy 110.098232 137.287982) (xy 110.338874 137.223502) + (xy 110.56904 137.128164) (xy 110.784794 137.003599) (xy 110.982443 136.851938) (xy 111.158605 136.675776) + (xy 111.310266 136.478127) (xy 111.434831 136.262373) (xy 111.530169 136.032207) (xy 111.594649 135.791565) + (xy 111.627167 135.544565) (xy 111.627167 135.295441) (xy 112.826167 135.295441) (xy 112.826167 135.544558) + (xy 112.826168 135.544575) (xy 112.857134 135.779788) (xy 112.858685 135.791565) (xy 112.912274 135.991561) + (xy 112.923165 136.032207) (xy 113.018497 136.262361) (xy 113.018504 136.262376) (xy 113.143067 136.478126) + (xy 113.294727 136.675774) (xy 113.294733 136.675781) (xy 113.470885 136.851933) (xy 113.470892 136.851939) + (xy 113.66854 137.003599) (xy 113.88429 137.128162) (xy 113.884305 137.128169) (xy 113.97684 137.166498) + (xy 114.11446 137.223502) (xy 114.355102 137.287982) (xy 114.602102 137.3205) (xy 114.602109 137.3205) + (xy 114.851225 137.3205) (xy 114.851232 137.3205) (xy 115.098232 137.287982) (xy 115.338874 137.223502) + (xy 115.56904 137.128164) (xy 115.784794 137.003599) (xy 115.982443 136.851938) (xy 116.158605 136.675776) + (xy 116.310266 136.478127) (xy 116.434831 136.262373) (xy 116.530169 136.032207) (xy 116.594649 135.791565) + (xy 116.627167 135.544565) (xy 116.627167 135.295435) (xy 116.594649 135.048435) (xy 116.530169 134.807793) + (xy 116.465015 134.650498) (xy 116.434836 134.577638) (xy 116.434829 134.577623) (xy 116.377794 134.478835) + (xy 116.343816 134.419984) (xy 121.1595 134.419984) (xy 121.1595 136.820015) (xy 121.17 136.922795) + (xy 121.170001 136.922797) (xy 121.182922 136.961789) (xy 121.225186 137.089335) (xy 121.225187 137.089337) + (xy 121.317286 137.238651) (xy 121.317289 137.238655) (xy 121.441344 137.36271) (xy 121.441348 137.362713) + (xy 121.590662 137.454812) (xy 121.590664 137.454813) (xy 121.590666 137.454814) (xy 121.757203 137.509999) + (xy 121.859992 137.5205) (xy 121.859997 137.5205) (xy 124.260003 137.5205) (xy 124.260008 137.5205) + (xy 124.362797 137.509999) (xy 124.529334 137.454814) (xy 124.678655 137.362711) (xy 124.802711 137.238655) + (xy 124.894814 137.089334) (xy 124.949999 136.922797) (xy 124.9605 136.820008) (xy 124.9605 135.495441) + (xy 126.1595 135.495441) (xy 126.1595 135.744558) (xy 126.159501 135.744575) (xy 126.192017 135.991561) + (xy 126.256498 136.232207) (xy 126.35183 136.462361) (xy 126.351837 136.462376) (xy 126.4764 136.678126) + (xy 126.62806 136.875774) (xy 126.628066 136.875781) (xy 126.804218 137.051933) (xy 126.804225 137.051939) + (xy 127.001873 137.203599) (xy 127.217623 137.328162) (xy 127.217638 137.328169) (xy 127.316825 137.369253) + (xy 127.447793 137.423502) (xy 127.688435 137.487982) (xy 127.935435 137.5205) (xy 127.935442 137.5205) + (xy 128.184558 137.5205) (xy 128.184565 137.5205) (xy 128.431565 137.487982) (xy 128.672207 137.423502) + (xy 128.902373 137.328164) (xy 129.118127 137.203599) (xy 129.315776 137.051938) (xy 129.491938 136.875776) + (xy 129.643599 136.678127) (xy 129.768164 136.462373) (xy 129.863502 136.232207) (xy 129.927982 135.991565) + (xy 129.9605 135.744565) (xy 129.9605 135.495441) (xy 131.1595 135.495441) (xy 131.1595 135.744558) + (xy 131.159501 135.744575) (xy 131.192017 135.991561) (xy 131.256498 136.232207) (xy 131.35183 136.462361) + (xy 131.351837 136.462376) (xy 131.4764 136.678126) (xy 131.62806 136.875774) (xy 131.628066 136.875781) + (xy 131.804218 137.051933) (xy 131.804225 137.051939) (xy 132.001873 137.203599) (xy 132.217623 137.328162) + (xy 132.217638 137.328169) (xy 132.316825 137.369253) (xy 132.447793 137.423502) (xy 132.688435 137.487982) + (xy 132.935435 137.5205) (xy 132.935442 137.5205) (xy 133.184558 137.5205) (xy 133.184565 137.5205) + (xy 133.431565 137.487982) (xy 133.672207 137.423502) (xy 133.902373 137.328164) (xy 133.914517 137.321153) + (xy 145.7995 137.321153) (xy 145.7995 137.478846) (xy 145.830261 137.633489) (xy 145.830264 137.633501) + (xy 145.890602 137.779172) (xy 145.890609 137.779185) (xy 145.97821 137.910288) (xy 145.978213 137.910292) + (xy 146.089707 138.021786) (xy 146.089711 138.021789) (xy 146.220814 138.10939) (xy 146.220827 138.109397) + (xy 146.366498 138.169735) (xy 146.366503 138.169737) (xy 146.521153 138.200499) (xy 146.521156 138.2005) + (xy 146.521158 138.2005) (xy 146.678844 138.2005) (xy 146.678845 138.200499) (xy 146.833497 138.169737) + (xy 146.979179 138.109394) (xy 147.110289 138.021789) (xy 147.221789 137.910289) (xy 147.309394 137.779179) + (xy 147.369737 137.633497) (xy 147.4005 137.478842) (xy 147.4005 137.321158) (xy 147.4005 137.321155) + (xy 147.400499 137.321153) (xy 147.393901 137.287982) (xy 147.369737 137.166503) (xy 147.337774 137.089337) + (xy 147.309397 137.020827) (xy 147.30939 137.020814) (xy 147.221789 136.889711) (xy 147.221786 136.889707) + (xy 147.110292 136.778213) (xy 147.110288 136.77821) (xy 146.979185 136.690609) (xy 146.979172 136.690602) + (xy 146.833501 136.630264) (xy 146.833489 136.630261) (xy 146.678845 136.5995) (xy 146.678842 136.5995) + (xy 146.521158 136.5995) (xy 146.521155 136.5995) (xy 146.36651 136.630261) (xy 146.366498 136.630264) + (xy 146.220827 136.690602) (xy 146.220814 136.690609) (xy 146.089711 136.77821) (xy 146.089707 136.778213) + (xy 145.978213 136.889707) (xy 145.97821 136.889711) (xy 145.890609 137.020814) (xy 145.890602 137.020827) + (xy 145.830264 137.166498) (xy 145.830261 137.16651) (xy 145.7995 137.321153) (xy 133.914517 137.321153) + (xy 134.02942 137.254814) (xy 134.111061 137.207679) (xy 134.114207 137.205861) (xy 134.118127 137.203599) + (xy 134.315776 137.051938) (xy 134.491938 136.875776) (xy 134.643599 136.678127) (xy 134.758731 136.478711) + (xy 197.1495 136.478711) (xy 197.1495 136.721288) (xy 197.181161 136.961785) (xy 197.243947 137.196104) + (xy 197.336773 137.420205) (xy 197.336776 137.420212) (xy 197.458064 137.630289) (xy 197.458066 137.630292) + (xy 197.458067 137.630293) (xy 197.605733 137.822736) (xy 197.605739 137.822743) (xy 197.777256 137.99426) + (xy 197.777262 137.994265) (xy 197.969711 138.141936) (xy 198.179788 138.263224) (xy 198.4039 138.356054) + (xy 198.638211 138.418838) (xy 198.818586 138.442584) (xy 198.878711 138.4505) (xy 198.878712 138.4505) + (xy 199.121289 138.4505) (xy 199.169388 138.444167) (xy 199.361789 138.418838) (xy 199.5961 138.356054) + (xy 199.820212 138.263224) (xy 200.030289 138.141936) (xy 200.222738 137.994265) (xy 200.394265 137.822738) + (xy 200.541936 137.630289) (xy 200.663224 137.420212) (xy 200.756054 137.1961) (xy 200.818838 136.961789) + (xy 200.8505 136.721288) (xy 200.8505 136.478712) (xy 200.818838 136.238211) (xy 200.756054 136.0039) + (xy 200.663224 135.779788) (xy 200.541936 135.569711) (xy 200.394265 135.377262) (xy 200.39426 135.377256) + (xy 200.222743 135.205739) (xy 200.222736 135.205733) (xy 200.030293 135.058067) (xy 200.030292 135.058066) + (xy 200.030289 135.058064) (xy 199.820212 134.936776) (xy 199.820205 134.936773) (xy 199.596104 134.843947) + (xy 199.361785 134.781161) (xy 199.121289 134.7495) (xy 199.121288 134.7495) (xy 198.878712 134.7495) + (xy 198.878711 134.7495) (xy 198.638214 134.781161) (xy 198.403895 134.843947) (xy 198.179794 134.936773) + (xy 198.179785 134.936777) (xy 197.969706 135.058067) (xy 197.777263 135.205733) (xy 197.777256 135.205739) + (xy 197.605739 135.377256) (xy 197.605733 135.377263) (xy 197.458067 135.569706) (xy 197.336777 135.779785) + (xy 197.336773 135.779794) (xy 197.243947 136.003895) (xy 197.181161 136.238214) (xy 197.1495 136.478711) + (xy 134.758731 136.478711) (xy 134.768164 136.462373) (xy 134.863502 136.232207) (xy 134.927982 135.991565) + (xy 134.9605 135.744565) (xy 134.9605 135.495435) (xy 134.927982 135.248435) (xy 134.863502 135.007793) + (xy 134.80137 134.857793) (xy 134.768169 134.777638) (xy 134.768162 134.777623) (xy 134.643599 134.561873) + (xy 134.491939 134.364225) (xy 134.491933 134.364218) (xy 134.315781 134.188066) (xy 134.315774 134.18806) + (xy 134.118126 134.0364) (xy 133.902376 133.911837) (xy 133.902361 133.91183) (xy 133.672207 133.816498) + (xy 133.431561 133.752017) (xy 133.184575 133.719501) (xy 133.18457 133.7195) (xy 133.184565 133.7195) + (xy 132.935435 133.7195) (xy 132.935429 133.7195) (xy 132.935424 133.719501) (xy 132.688438 133.752017) + (xy 132.447792 133.816498) (xy 132.217638 133.91183) (xy 132.217623 133.911837) (xy 132.001873 134.0364) + (xy 131.804225 134.18806) (xy 131.804218 134.188066) (xy 131.628066 134.364218) (xy 131.62806 134.364225) + (xy 131.4764 134.561873) (xy 131.351837 134.777623) (xy 131.35183 134.777638) (xy 131.256498 135.007792) + (xy 131.192017 135.248438) (xy 131.159501 135.495424) (xy 131.1595 135.495441) (xy 129.9605 135.495441) + (xy 129.9605 135.495435) (xy 129.927982 135.248435) (xy 129.863502 135.007793) (xy 129.80137 134.857793) + (xy 129.768169 134.777638) (xy 129.768162 134.777623) (xy 129.643599 134.561873) (xy 129.491939 134.364225) + (xy 129.491933 134.364218) (xy 129.315781 134.188066) (xy 129.315774 134.18806) (xy 129.118126 134.0364) + (xy 128.902376 133.911837) (xy 128.902361 133.91183) (xy 128.672207 133.816498) (xy 128.431561 133.752017) + (xy 128.184575 133.719501) (xy 128.18457 133.7195) (xy 128.184565 133.7195) (xy 127.935435 133.7195) + (xy 127.935429 133.7195) (xy 127.935424 133.719501) (xy 127.688438 133.752017) (xy 127.447792 133.816498) + (xy 127.217638 133.91183) (xy 127.217623 133.911837) (xy 127.001873 134.0364) (xy 126.804225 134.18806) + (xy 126.804218 134.188066) (xy 126.628066 134.364218) (xy 126.62806 134.364225) (xy 126.4764 134.561873) + (xy 126.351837 134.777623) (xy 126.35183 134.777638) (xy 126.256498 135.007792) (xy 126.192017 135.248438) + (xy 126.159501 135.495424) (xy 126.1595 135.495441) (xy 124.9605 135.495441) (xy 124.9605 134.419992) + (xy 124.949999 134.317203) (xy 124.894814 134.150666) (xy 124.874174 134.117204) (xy 124.802713 134.001348) + (xy 124.80271 134.001344) (xy 124.678655 133.877289) (xy 124.678651 133.877286) (xy 124.529337 133.785187) + (xy 124.529335 133.785186) (xy 124.429237 133.752017) (xy 124.362797 133.730001) (xy 124.362795 133.73) + (xy 124.260015 133.7195) (xy 124.260008 133.7195) (xy 121.859992 133.7195) (xy 121.859984 133.7195) + (xy 121.757204 133.73) (xy 121.757203 133.730001) (xy 121.590664 133.785186) (xy 121.590662 133.785187) + (xy 121.441348 133.877286) (xy 121.441344 133.877289) (xy 121.317289 134.001344) (xy 121.317286 134.001348) + (xy 121.225187 134.150662) (xy 121.225186 134.150664) (xy 121.170001 134.317203) (xy 121.17 134.317204) + (xy 121.1595 134.419984) (xy 116.343816 134.419984) (xy 116.310266 134.361873) (xy 116.158606 134.164225) + (xy 116.1586 134.164218) (xy 115.982448 133.988066) (xy 115.982441 133.98806) (xy 115.784793 133.8364) + (xy 115.569043 133.711837) (xy 115.569028 133.71183) (xy 115.338874 133.616498) (xy 115.163479 133.569501) + (xy 115.098232 133.552018) (xy 115.098231 133.552017) (xy 115.098228 133.552017) (xy 114.851242 133.519501) + (xy 114.851237 133.5195) (xy 114.851232 133.5195) (xy 114.602102 133.5195) (xy 114.602096 133.5195) + (xy 114.602091 133.519501) (xy 114.355105 133.552017) (xy 114.114459 133.616498) (xy 113.884305 133.71183) + (xy 113.88429 133.711837) (xy 113.66854 133.8364) (xy 113.470892 133.98806) (xy 113.470885 133.988066) + (xy 113.294733 134.164218) (xy 113.294727 134.164225) (xy 113.143067 134.361873) (xy 113.018504 134.577623) + (xy 113.018497 134.577638) (xy 112.923165 134.807792) (xy 112.858684 135.048438) (xy 112.826168 135.295424) + (xy 112.826167 135.295441) (xy 111.627167 135.295441) (xy 111.627167 135.295435) (xy 111.594649 135.048435) + (xy 111.530169 134.807793) (xy 111.465015 134.650498) (xy 111.434836 134.577638) (xy 111.434829 134.577623) + (xy 111.310266 134.361873) (xy 111.158606 134.164225) (xy 111.1586 134.164218) (xy 110.982448 133.988066) + (xy 110.982441 133.98806) (xy 110.784793 133.8364) (xy 110.569043 133.711837) (xy 110.569028 133.71183) + (xy 110.338874 133.616498) (xy 110.163479 133.569501) (xy 110.098232 133.552018) (xy 110.098231 133.552017) + (xy 110.098228 133.552017) (xy 109.851242 133.519501) (xy 109.851237 133.5195) (xy 109.851232 133.5195) + (xy 109.602102 133.5195) (xy 109.602096 133.5195) (xy 109.602091 133.519501) (xy 109.355105 133.552017) + (xy 109.114459 133.616498) (xy 108.884305 133.71183) (xy 108.88429 133.711837) (xy 108.66854 133.8364) + (xy 108.470892 133.98806) (xy 108.470885 133.988066) (xy 108.294733 134.164218) (xy 108.294727 134.164225) + (xy 108.143067 134.361873) (xy 108.018504 134.577623) (xy 108.018497 134.577638) (xy 107.923165 134.807792) + (xy 107.858684 135.048438) (xy 107.826168 135.295424) (xy 107.826167 135.295441) (xy 106.627167 135.295441) + (xy 106.627167 134.219992) (xy 106.616666 134.117203) (xy 106.561481 133.950666) (xy 106.561081 133.950018) + (xy 106.46938 133.801348) (xy 106.469377 133.801344) (xy 106.345322 133.677289) (xy 106.345318 133.677286) + (xy 106.196004 133.585187) (xy 106.196002 133.585186) (xy 106.095904 133.552017) (xy 106.029464 133.530001) + (xy 106.029462 133.53) (xy 105.926682 133.5195) (xy 105.926675 133.5195) (xy 103.526659 133.5195) + (xy 103.526651 133.5195) (xy 103.423871 133.53) (xy 103.42387 133.530001) (xy 103.257331 133.585186) + (xy 103.257329 133.585187) (xy 103.108015 133.677286) (xy 103.108011 133.677289) (xy 102.983956 133.801344) + (xy 102.983953 133.801348) (xy 102.891854 133.950662) (xy 102.891853 133.950664) (xy 102.836668 134.117203) + (xy 102.836667 134.117204) (xy 102.826167 134.219984) (xy 97.829691 134.219984) (xy 97.825272 134.214225) + (xy 97.825266 134.214218) (xy 97.649114 134.038066) (xy 97.649107 134.03806) (xy 97.451459 133.8864) + (xy 97.235709 133.761837) (xy 97.235694 133.76183) (xy 97.00554 133.666498) (xy 96.764894 133.602017) + (xy 96.517908 133.569501) (xy 96.517903 133.5695) (xy 96.517898 133.5695) (xy 96.268768 133.5695) + (xy 96.268762 133.5695) (xy 96.268757 133.569501) (xy 96.021771 133.602017) (xy 95.781125 133.666498) + (xy 95.550971 133.76183) (xy 95.550956 133.761837) (xy 95.335206 133.8864) (xy 95.137558 134.03806) + (xy 95.137551 134.038066) (xy 94.961399 134.214218) (xy 94.961393 134.214225) (xy 94.809733 134.411873) + (xy 94.68517 134.627623) (xy 94.685163 134.627638) (xy 94.589831 134.857792) (xy 94.52535 135.098438) + (xy 94.492834 135.345424) (xy 94.492833 135.345441) (xy 93.293833 135.345441) (xy 93.293833 135.345435) + (xy 93.261315 135.098435) (xy 93.196835 134.857793) (xy 93.142586 134.726825) (xy 93.101502 134.627638) + (xy 93.101495 134.627623) (xy 92.976932 134.411873) (xy 92.825272 134.214225) (xy 92.825266 134.214218) + (xy 92.649114 134.038066) (xy 92.649107 134.03806) (xy 92.451459 133.8864) (xy 92.235709 133.761837) + (xy 92.235694 133.76183) (xy 92.00554 133.666498) (xy 91.764894 133.602017) (xy 91.517908 133.569501) + (xy 91.517903 133.5695) (xy 91.517898 133.5695) (xy 91.268768 133.5695) (xy 91.268762 133.5695) + (xy 91.268757 133.569501) (xy 91.021771 133.602017) (xy 90.781125 133.666498) (xy 90.550971 133.76183) + (xy 90.550956 133.761837) (xy 90.335206 133.8864) (xy 90.137558 134.03806) (xy 90.137551 134.038066) + (xy 89.961399 134.214218) (xy 89.961393 134.214225) (xy 89.809733 134.411873) (xy 89.68517 134.627623) + (xy 89.685163 134.627638) (xy 89.589831 134.857792) (xy 89.52535 135.098438) (xy 89.492834 135.345424) + (xy 89.492833 135.345441) (xy 88.293833 135.345441) (xy 88.293833 134.269992) (xy 88.283332 134.167203) + (xy 88.228147 134.000666) (xy 88.220375 133.988066) (xy 88.136046 133.851348) (xy 88.136043 133.851344) + (xy 88.011988 133.727289) (xy 88.011984 133.727286) (xy 87.86267 133.635187) (xy 87.862668 133.635186) + (xy 87.76257 133.602017) (xy 87.69613 133.580001) (xy 87.696128 133.58) (xy 87.593348 133.5695) + (xy 87.593341 133.5695) (xy 85.193325 133.5695) (xy 85.193317 133.5695) (xy 85.090537 133.58) (xy 85.090536 133.580001) + (xy 84.923997 133.635186) (xy 84.923995 133.635187) (xy 84.774681 133.727286) (xy 84.774677 133.727289) + (xy 84.650622 133.851344) (xy 84.650619 133.851348) (xy 84.55852 134.000662) (xy 84.558519 134.000664) + (xy 84.503334 134.167203) (xy 84.503333 134.167204) (xy 84.492833 134.269984) (xy 79.573091 134.269984) + (xy 79.491939 134.164225) (xy 79.491933 134.164218) (xy 79.315781 133.988066) (xy 79.315774 133.98806) + (xy 79.118126 133.8364) (xy 78.902376 133.711837) (xy 78.902361 133.71183) (xy 78.672207 133.616498) + (xy 78.496812 133.569501) (xy 78.431565 133.552018) (xy 78.431564 133.552017) (xy 78.431561 133.552017) + (xy 78.184575 133.519501) (xy 78.18457 133.5195) (xy 78.184565 133.5195) (xy 77.935435 133.5195) + (xy 77.935429 133.5195) (xy 77.935424 133.519501) (xy 77.688438 133.552017) (xy 77.447792 133.616498) + (xy 77.217638 133.71183) (xy 77.217623 133.711837) (xy 77.001873 133.8364) (xy 76.804225 133.98806) + (xy 76.804218 133.988066) (xy 76.628066 134.164218) (xy 76.62806 134.164225) (xy 76.4764 134.361873) + (xy 76.351837 134.577623) (xy 76.35183 134.577638) (xy 76.256498 134.807792) (xy 76.192017 135.048438) + (xy 76.159501 135.295424) (xy 76.1595 135.295441) (xy 74.9605 135.295441) (xy 74.9605 135.295435) + (xy 74.927982 135.048435) (xy 74.863502 134.807793) (xy 74.798348 134.650498) (xy 74.768169 134.577638) + (xy 74.768162 134.577623) (xy 74.643599 134.361873) (xy 74.491939 134.164225) (xy 74.491933 134.164218) + (xy 74.315781 133.988066) (xy 74.315774 133.98806) (xy 74.118126 133.8364) (xy 73.902376 133.711837) + (xy 73.902361 133.71183) (xy 73.672207 133.616498) (xy 73.496812 133.569501) (xy 73.431565 133.552018) + (xy 73.431564 133.552017) (xy 73.431561 133.552017) (xy 73.184575 133.519501) (xy 73.18457 133.5195) + (xy 73.184565 133.5195) (xy 72.935435 133.5195) (xy 72.935429 133.5195) (xy 72.935424 133.519501) + (xy 72.688438 133.552017) (xy 72.447792 133.616498) (xy 72.217638 133.71183) (xy 72.217623 133.711837) + (xy 72.001873 133.8364) (xy 71.804225 133.98806) (xy 71.804218 133.988066) (xy 71.628066 134.164218) + (xy 71.62806 134.164225) (xy 71.4764 134.361873) (xy 71.351837 134.577623) (xy 71.35183 134.577638) + (xy 71.256498 134.807792) (xy 71.192017 135.048438) (xy 71.159501 135.295424) (xy 71.1595 135.295441) + (xy 69.9605 135.295441) (xy 69.9605 134.219992) (xy 69.949999 134.117203) (xy 69.894814 133.950666) + (xy 69.894414 133.950018) (xy 69.802713 133.801348) (xy 69.80271 133.801344) (xy 69.678655 133.677289) + (xy 69.678651 133.677286) (xy 69.529337 133.585187) (xy 69.529335 133.585186) (xy 69.429237 133.552017) + (xy 69.362797 133.530001) (xy 69.362795 133.53) (xy 69.260015 133.5195) (xy 69.260008 133.5195) + (xy 66.859992 133.5195) (xy 66.859984 133.5195) (xy 66.757204 133.53) (xy 66.757203 133.530001) + (xy 66.590664 133.585186) (xy 66.590662 133.585187) (xy 66.441348 133.677286) (xy 66.441344 133.677289) + (xy 66.317289 133.801344) (xy 66.317286 133.801348) (xy 66.225187 133.950662) (xy 66.225186 133.950664) + (xy 66.170001 134.117203) (xy 66.17 134.117204) (xy 66.1595 134.219984) (xy 58.4505 134.219984) + (xy 58.4505 132.494983) (xy 139.1595 132.494983) (xy 139.1595 133.845001) (xy 139.159501 133.845018) + (xy 139.17 133.947796) (xy 139.170001 133.947799) (xy 139.225185 134.114331) (xy 139.225187 134.114336) + (xy 139.255958 134.164224) (xy 139.317288 134.263656) (xy 139.441344 134.387712) (xy 139.590666 134.479814) + (xy 139.757203 134.534999) (xy 139.859991 134.5455) (xy 140.660008 134.545499) (xy 140.660016 134.545498) + (xy 140.660019 134.545498) (xy 140.716302 134.539748) (xy 140.762797 134.534999) (xy 140.929334 134.479814) + (xy 141.078656 134.387712) (xy 141.202712 134.263656) (xy 141.24231 134.199456) (xy 141.294258 134.152732) + (xy 141.36322 134.141509) (xy 141.427303 134.169352) (xy 141.43553 134.176872) (xy 141.543072 134.284414) + (xy 141.683212 134.386232) (xy 141.837555 134.464873) (xy 142.002299 134.518402) (xy 142.173389 134.5455) + (xy 142.17339 134.5455) (xy 142.34661 134.5455) (xy 142.346611 134.5455) (xy 142.517701 134.518402) + (xy 142.682445 134.464873) (xy 142.836788 134.386232) (xy 142.976928 134.284414) (xy 143.099414 134.161928) + (xy 143.159682 134.078975) (xy 143.215012 134.036311) (xy 143.284626 134.030332) (xy 143.346421 134.062938) + (xy 143.360315 134.078973) (xy 143.420586 134.161928) (xy 143.543072 134.284414) (xy 143.683212 134.386232) + (xy 143.837555 134.464873) (xy 144.002299 134.518402) (xy 144.173389 134.5455) (xy 144.17339 134.5455) + (xy 144.34661 134.5455) (xy 144.346611 134.5455) (xy 144.517701 134.518402) (xy 144.682445 134.464873) + (xy 144.836788 134.386232) (xy 144.976928 134.284414) (xy 145.099414 134.161928) (xy 145.159991 134.07855) + (xy 145.215321 134.035885) (xy 145.284934 134.029906) (xy 145.346729 134.062512) (xy 145.360628 134.078551) + (xy 145.420967 134.161602) (xy 145.543397 134.284032) (xy 145.683475 134.385804) (xy 145.837744 134.464408) + (xy 146.002415 134.517914) (xy 146.002414 134.517914) (xy 146.009999 134.519115) (xy 146.01 134.519114) + (xy 146.01 133.45033) (xy 146.029745 133.470075) (xy 146.115255 133.519444) (xy 146.21063 133.545) + (xy 146.30937 133.545) (xy 146.404745 133.519444) (xy 146.490255 133.470075) (xy 146.51 133.45033) + (xy 146.51 134.519115) (xy 146.517584 134.517914) (xy 146.682255 134.464408) (xy 146.836524 134.385804) + (xy 146.976602 134.284032) (xy 147.099032 134.161602) (xy 147.200804 134.021524) (xy 147.279408 133.867257) + (xy 147.332914 133.702584) (xy 147.36 133.531571) (xy 147.36 133.42) (xy 146.54033 133.42) (xy 146.560075 133.400255) + (xy 146.609444 133.314745) (xy 146.635 133.21937) (xy 146.635 133.12063) (xy 146.609444 133.025255) + (xy 146.560075 132.939745) (xy 146.54033 132.92) (xy 147.36 132.92) (xy 147.36 132.808428) (xy 147.332914 132.637415) + (xy 147.298062 132.530153) (xy 147.286635 132.494983) (xy 151.7595 132.494983) (xy 151.7595 133.845001) + (xy 151.759501 133.845018) (xy 151.77 133.947796) (xy 151.770001 133.947799) (xy 151.825185 134.114331) + (xy 151.825187 134.114336) (xy 151.855958 134.164224) (xy 151.917288 134.263656) (xy 152.041344 134.387712) + (xy 152.190666 134.479814) (xy 152.357203 134.534999) (xy 152.459991 134.5455) (xy 153.260008 134.545499) + (xy 153.260016 134.545498) (xy 153.260019 134.545498) (xy 153.316302 134.539748) (xy 153.362797 134.534999) + (xy 153.529334 134.479814) (xy 153.678656 134.387712) (xy 153.802712 134.263656) (xy 153.84231 134.199456) + (xy 153.894258 134.152732) (xy 153.96322 134.141509) (xy 154.027303 134.169352) (xy 154.03553 134.176872) + (xy 154.143072 134.284414) (xy 154.283212 134.386232) (xy 154.437555 134.464873) (xy 154.602299 134.518402) + (xy 154.773389 134.5455) (xy 154.77339 134.5455) (xy 154.94661 134.5455) (xy 154.946611 134.5455) + (xy 155.117701 134.518402) (xy 155.282445 134.464873) (xy 155.436788 134.386232) (xy 155.576928 134.284414) + (xy 155.699414 134.161928) (xy 155.759682 134.078975) (xy 155.815012 134.036311) (xy 155.884626 134.030332) + (xy 155.946421 134.062938) (xy 155.960315 134.078973) (xy 156.020586 134.161928) (xy 156.143072 134.284414) + (xy 156.283212 134.386232) (xy 156.437555 134.464873) (xy 156.602299 134.518402) (xy 156.773389 134.5455) + (xy 156.77339 134.5455) (xy 156.94661 134.5455) (xy 156.946611 134.5455) (xy 157.117701 134.518402) + (xy 157.282445 134.464873) (xy 157.436788 134.386232) (xy 157.576928 134.284414) (xy 157.699414 134.161928) + (xy 157.759991 134.07855) (xy 157.815321 134.035885) (xy 157.884934 134.029906) (xy 157.946729 134.062512) + (xy 157.960628 134.078551) (xy 158.020967 134.161602) (xy 158.143397 134.284032) (xy 158.283475 134.385804) + (xy 158.437744 134.464408) (xy 158.602415 134.517914) (xy 158.602414 134.517914) (xy 158.609999 134.519115) + (xy 158.61 134.519114) (xy 158.61 133.45033) (xy 158.629745 133.470075) (xy 158.715255 133.519444) + (xy 158.81063 133.545) (xy 158.90937 133.545) (xy 159.004745 133.519444) (xy 159.090255 133.470075) + (xy 159.11 133.45033) (xy 159.11 134.519115) (xy 159.117584 134.517914) (xy 159.282255 134.464408) + (xy 159.436524 134.385804) (xy 159.576602 134.284032) (xy 159.699032 134.161602) (xy 159.800804 134.021524) + (xy 159.879408 133.867257) (xy 159.932914 133.702584) (xy 159.96 133.531571) (xy 159.96 133.42) + (xy 159.14033 133.42) (xy 159.160075 133.400255) (xy 159.209444 133.314745) (xy 159.235 133.21937) + (xy 159.235 133.12063) (xy 159.209444 133.025255) (xy 159.160075 132.939745) (xy 159.14033 132.92) + (xy 159.96 132.92) (xy 159.96 132.808428) (xy 159.932914 132.637415) (xy 159.898062 132.530153) + (xy 159.886635 132.494983) (xy 164.3595 132.494983) (xy 164.3595 133.845001) (xy 164.359501 133.845018) + (xy 164.37 133.947796) (xy 164.370001 133.947799) (xy 164.425185 134.114331) (xy 164.425187 134.114336) + (xy 164.455958 134.164224) (xy 164.517288 134.263656) (xy 164.641344 134.387712) (xy 164.790666 134.479814) + (xy 164.957203 134.534999) (xy 165.059991 134.5455) (xy 165.860008 134.545499) (xy 165.860016 134.545498) + (xy 165.860019 134.545498) (xy 165.916302 134.539748) (xy 165.962797 134.534999) (xy 166.129334 134.479814) + (xy 166.278656 134.387712) (xy 166.402712 134.263656) (xy 166.44231 134.199456) (xy 166.494258 134.152732) + (xy 166.56322 134.141509) (xy 166.627303 134.169352) (xy 166.63553 134.176872) (xy 166.743072 134.284414) + (xy 166.883212 134.386232) (xy 167.037555 134.464873) (xy 167.202299 134.518402) (xy 167.373389 134.5455) + (xy 167.37339 134.5455) (xy 167.54661 134.5455) (xy 167.546611 134.5455) (xy 167.717701 134.518402) + (xy 167.882445 134.464873) (xy 168.036788 134.386232) (xy 168.176928 134.284414) (xy 168.299414 134.161928) + (xy 168.359682 134.078975) (xy 168.415012 134.036311) (xy 168.484626 134.030332) (xy 168.546421 134.062938) + (xy 168.560315 134.078973) (xy 168.620586 134.161928) (xy 168.743072 134.284414) (xy 168.883212 134.386232) + (xy 169.037555 134.464873) (xy 169.202299 134.518402) (xy 169.373389 134.5455) (xy 169.37339 134.5455) + (xy 169.54661 134.5455) (xy 169.546611 134.5455) (xy 169.717701 134.518402) (xy 169.882445 134.464873) + (xy 170.036788 134.386232) (xy 170.176928 134.284414) (xy 170.299414 134.161928) (xy 170.359991 134.07855) + (xy 170.415321 134.035885) (xy 170.484934 134.029906) (xy 170.546729 134.062512) (xy 170.560628 134.078551) + (xy 170.620967 134.161602) (xy 170.743397 134.284032) (xy 170.883475 134.385804) (xy 171.037744 134.464408) + (xy 171.202415 134.517914) (xy 171.202414 134.517914) (xy 171.209999 134.519115) (xy 171.21 134.519114) + (xy 171.21 133.45033) (xy 171.229745 133.470075) (xy 171.315255 133.519444) (xy 171.41063 133.545) + (xy 171.50937 133.545) (xy 171.604745 133.519444) (xy 171.690255 133.470075) (xy 171.71 133.45033) + (xy 171.71 134.519115) (xy 171.717584 134.517914) (xy 171.882255 134.464408) (xy 172.036524 134.385804) + (xy 172.176602 134.284032) (xy 172.299032 134.161602) (xy 172.400804 134.021524) (xy 172.479408 133.867257) + (xy 172.532914 133.702584) (xy 172.56 133.531571) (xy 172.56 133.42) (xy 171.74033 133.42) (xy 171.760075 133.400255) + (xy 171.809444 133.314745) (xy 171.835 133.21937) (xy 171.835 133.12063) (xy 171.809444 133.025255) + (xy 171.760075 132.939745) (xy 171.74033 132.92) (xy 172.56 132.92) (xy 172.56 132.808428) (xy 172.532914 132.637415) + (xy 172.498062 132.530153) (xy 172.486635 132.494983) (xy 176.7595 132.494983) (xy 176.7595 133.845001) + (xy 176.759501 133.845018) (xy 176.77 133.947796) (xy 176.770001 133.947799) (xy 176.825185 134.114331) + (xy 176.825187 134.114336) (xy 176.855958 134.164224) (xy 176.917288 134.263656) (xy 177.041344 134.387712) + (xy 177.190666 134.479814) (xy 177.357203 134.534999) (xy 177.459991 134.5455) (xy 178.260008 134.545499) + (xy 178.260016 134.545498) (xy 178.260019 134.545498) (xy 178.316302 134.539748) (xy 178.362797 134.534999) + (xy 178.529334 134.479814) (xy 178.678656 134.387712) (xy 178.802712 134.263656) (xy 178.84231 134.199456) + (xy 178.894258 134.152732) (xy 178.96322 134.141509) (xy 179.027303 134.169352) (xy 179.03553 134.176872) + (xy 179.143072 134.284414) (xy 179.283212 134.386232) (xy 179.437555 134.464873) (xy 179.602299 134.518402) + (xy 179.773389 134.5455) (xy 179.77339 134.5455) (xy 179.94661 134.5455) (xy 179.946611 134.5455) + (xy 180.117701 134.518402) (xy 180.282445 134.464873) (xy 180.436788 134.386232) (xy 180.576928 134.284414) + (xy 180.699414 134.161928) (xy 180.759682 134.078975) (xy 180.815012 134.036311) (xy 180.884626 134.030332) + (xy 180.946421 134.062938) (xy 180.960315 134.078973) (xy 181.020586 134.161928) (xy 181.143072 134.284414) + (xy 181.283212 134.386232) (xy 181.437555 134.464873) (xy 181.602299 134.518402) (xy 181.773389 134.5455) + (xy 181.77339 134.5455) (xy 181.94661 134.5455) (xy 181.946611 134.5455) (xy 182.117701 134.518402) + (xy 182.282445 134.464873) (xy 182.436788 134.386232) (xy 182.576928 134.284414) (xy 182.699414 134.161928) + (xy 182.759991 134.07855) (xy 182.815321 134.035885) (xy 182.884934 134.029906) (xy 182.946729 134.062512) + (xy 182.960628 134.078551) (xy 183.020967 134.161602) (xy 183.143397 134.284032) (xy 183.283475 134.385804) + (xy 183.437744 134.464408) (xy 183.602415 134.517914) (xy 183.602414 134.517914) (xy 183.609999 134.519115) + (xy 183.61 134.519114) (xy 183.61 133.45033) (xy 183.629745 133.470075) (xy 183.715255 133.519444) + (xy 183.81063 133.545) (xy 183.90937 133.545) (xy 184.004745 133.519444) (xy 184.090255 133.470075) + (xy 184.11 133.45033) (xy 184.11 134.519115) (xy 184.117584 134.517914) (xy 184.282255 134.464408) + (xy 184.436524 134.385804) (xy 184.576602 134.284032) (xy 184.699032 134.161602) (xy 184.800804 134.021524) + (xy 184.879408 133.867257) (xy 184.932914 133.702584) (xy 184.96 133.531571) (xy 184.96 133.42) + (xy 184.14033 133.42) (xy 184.160075 133.400255) (xy 184.209444 133.314745) (xy 184.235 133.21937) + (xy 184.235 133.12063) (xy 184.209444 133.025255) (xy 184.160075 132.939745) (xy 184.14033 132.92) + (xy 184.96 132.92) (xy 184.96 132.808428) (xy 184.932914 132.637415) (xy 184.879408 132.472742) + (xy 184.843938 132.403129) (xy 184.843937 132.403127) (xy 184.816858 132.349983) (xy 188.5995 132.349983) + (xy 188.5995 133.950001) (xy 188.599501 133.950018) (xy 188.61 134.052796) (xy 188.610001 134.052799) + (xy 188.654823 134.18806) (xy 188.665186 134.219334) (xy 188.757288 134.368656) (xy 188.881344 134.492712) + (xy 189.030666 134.584814) (xy 189.197203 134.639999) (xy 189.299991 134.6505) (xy 190.600008 134.650499) + (xy 190.702797 134.639999) (xy 190.869334 134.584814) (xy 191.018656 134.492712) (xy 191.142712 134.368656) + (xy 191.234814 134.219334) (xy 191.234814 134.219331) (xy 191.238178 134.213879) (xy 191.290126 134.167154) + (xy 191.359088 134.155931) (xy 191.42317 134.183774) (xy 191.431398 134.191294) (xy 191.570213 134.330109) + (xy 191.742179 134.455048) (xy 191.742181 134.455049) (xy 191.742184 134.455051) (xy 191.931588 134.551557) + (xy 192.133757 134.617246) (xy 192.343713 134.6505) (xy 192.343714 134.6505) (xy 192.556286 134.6505) + (xy 192.556287 134.6505) (xy 192.766243 134.617246) (xy 192.968412 134.551557) (xy 193.157816 134.455051) + (xy 193.252538 134.386232) (xy 193.329786 134.330109) (xy 193.329788 134.330106) (xy 193.329792 134.330104) + (xy 193.480104 134.179792) (xy 193.480106 134.179788) (xy 193.480109 134.179786) (xy 193.605048 134.00782) + (xy 193.605047 134.00782) (xy 193.605051 134.007816) (xy 193.701557 133.818412) (xy 193.767246 133.616243) + (xy 193.8005 133.406287) (xy 193.8005 132.893713) (xy 193.767246 132.683757) (xy 193.701557 132.481588) + (xy 193.605051 132.292184) (xy 193.605049 132.292181) (xy 193.605048 132.292179) (xy 193.480109 132.120213) + (xy 193.329786 131.96989) (xy 193.15782 131.844951) (xy 192.968414 131.748444) (xy 192.968413 131.748443) + (xy 192.968412 131.748443) (xy 192.766243 131.682754) (xy 192.766241 131.682753) (xy 192.76624 131.682753) + (xy 192.604957 131.657208) (xy 192.556287 131.6495) (xy 192.343713 131.6495) (xy 192.295042 131.657208) + (xy 192.13376 131.682753) (xy 191.931585 131.748444) (xy 191.742179 131.844951) (xy 191.570215 131.969889) + (xy 191.431398 132.108706) (xy 191.370075 132.14219) (xy 191.300383 132.137206) (xy 191.24445 132.095334) + (xy 191.238178 132.08612) (xy 191.142712 131.931344) (xy 191.018657 131.807289) (xy 191.018656 131.807288) + (xy 190.869334 131.715186) (xy 190.702797 131.660001) (xy 190.702795 131.66) (xy 190.60001 131.6495) + (xy 189.299998 131.6495) (xy 189.299981 131.649501) (xy 189.197203 131.66) (xy 189.1972 131.660001) + (xy 189.030668 131.715185) (xy 189.030663 131.715187) (xy 188.881342 131.807289) (xy 188.757289 131.931342) + (xy 188.665187 132.080663) (xy 188.665185 132.080668) (xy 188.660325 132.095334) (xy 188.610001 132.247203) + (xy 188.610001 132.247204) (xy 188.61 132.247204) (xy 188.5995 132.349983) (xy 184.816858 132.349983) + (xy 184.800805 132.318477) (xy 184.699032 132.178397) (xy 184.576602 132.055967) (xy 184.436524 131.954195) + (xy 184.282257 131.875591) (xy 184.117589 131.822087) (xy 184.117581 131.822085) (xy 184.11 131.820884) + (xy 184.11 132.88967) (xy 184.090255 132.869925) (xy 184.004745 132.820556) (xy 183.90937 132.795) + (xy 183.81063 132.795) (xy 183.715255 132.820556) (xy 183.629745 132.869925) (xy 183.61 132.88967) + (xy 183.61 131.820884) (xy 183.609999 131.820884) (xy 183.602418 131.822085) (xy 183.60241 131.822087) + (xy 183.437742 131.875591) (xy 183.283475 131.954195) (xy 183.143397 132.055967) (xy 183.020965 132.178399) + (xy 183.020961 132.178404) (xy 182.960627 132.261448) (xy 182.905297 132.304114) (xy 182.835684 132.310093) + (xy 182.773889 132.277488) (xy 182.759991 132.261449) (xy 182.75999 132.261448) (xy 182.699414 132.178072) + (xy 182.576928 132.055586) (xy 182.436788 131.953768) (xy 182.282445 131.875127) (xy 182.117701 131.821598) + (xy 182.117699 131.821597) (xy 182.117698 131.821597) (xy 181.986271 131.800781) (xy 181.946611 131.7945) + (xy 181.773389 131.7945) (xy 181.733728 131.800781) (xy 181.602302 131.821597) (xy 181.437552 131.875128) + (xy 181.283211 131.953768) (xy 181.203256 132.011859) (xy 181.143072 132.055586) (xy 181.14307 132.055588) + (xy 181.143069 132.055588) (xy 181.020588 132.178069) (xy 181.020581 132.178078) (xy 180.960317 132.261023) + (xy 180.904987 132.303689) (xy 180.835374 132.309667) (xy 180.773579 132.277061) (xy 180.759683 132.261023) + (xy 180.699655 132.178404) (xy 180.699414 132.178072) (xy 180.576928 132.055586) (xy 180.436788 131.953768) + (xy 180.282445 131.875127) (xy 180.117701 131.821598) (xy 180.117699 131.821597) (xy 180.117698 131.821597) + (xy 179.986271 131.800781) (xy 179.946611 131.7945) (xy 179.773389 131.7945) (xy 179.733728 131.800781) + (xy 179.602302 131.821597) (xy 179.437552 131.875128) (xy 179.283211 131.953768) (xy 179.143073 132.055585) + (xy 179.03553 132.163128) (xy 178.974207 132.196612) (xy 178.904515 132.191628) (xy 178.848582 132.149756) + (xy 178.84231 132.140543) (xy 178.814425 132.095334) (xy 178.802712 132.076344) (xy 178.678656 131.952288) + (xy 178.553559 131.875128) (xy 178.529336 131.860187) (xy 178.529331 131.860185) (xy 178.527862 131.859698) + (xy 178.362797 131.805001) (xy 178.362795 131.805) (xy 178.26001 131.7945) (xy 177.459998 131.7945) + (xy 177.45998 131.794501) (xy 177.357203 131.805) (xy 177.3572 131.805001) (xy 177.190668 131.860185) + (xy 177.190663 131.860187) (xy 177.041342 131.952289) (xy 176.917289 132.076342) (xy 176.825187 132.225663) + (xy 176.825185 132.225668) (xy 176.808155 132.277061) (xy 176.770001 132.392203) (xy 176.770001 132.392204) + (xy 176.77 132.392204) (xy 176.7595 132.494983) (xy 172.486635 132.494983) (xy 172.479408 132.472742) + (xy 172.400804 132.318475) (xy 172.299032 132.178397) (xy 172.176602 132.055967) (xy 172.036524 131.954195) + (xy 171.882257 131.875591) (xy 171.717589 131.822087) (xy 171.717581 131.822085) (xy 171.71 131.820884) + (xy 171.71 132.88967) (xy 171.690255 132.869925) (xy 171.604745 132.820556) (xy 171.50937 132.795) + (xy 171.41063 132.795) (xy 171.315255 132.820556) (xy 171.229745 132.869925) (xy 171.21 132.88967) + (xy 171.21 131.820884) (xy 171.209999 131.820884) (xy 171.202418 131.822085) (xy 171.20241 131.822087) + (xy 171.037742 131.875591) (xy 170.883475 131.954195) (xy 170.743397 132.055967) (xy 170.620965 132.178399) + (xy 170.620961 132.178404) (xy 170.560627 132.261448) (xy 170.505297 132.304114) (xy 170.435684 132.310093) + (xy 170.373889 132.277488) (xy 170.359991 132.261449) (xy 170.35999 132.261448) (xy 170.299414 132.178072) + (xy 170.176928 132.055586) (xy 170.036788 131.953768) (xy 169.882445 131.875127) (xy 169.717701 131.821598) + (xy 169.717699 131.821597) (xy 169.717698 131.821597) (xy 169.586271 131.800781) (xy 169.546611 131.7945) + (xy 169.373389 131.7945) (xy 169.333728 131.800781) (xy 169.202302 131.821597) (xy 169.037552 131.875128) + (xy 168.883211 131.953768) (xy 168.803256 132.011859) (xy 168.743072 132.055586) (xy 168.74307 132.055588) + (xy 168.743069 132.055588) (xy 168.620588 132.178069) (xy 168.620581 132.178078) (xy 168.560317 132.261023) + (xy 168.504987 132.303689) (xy 168.435374 132.309667) (xy 168.373579 132.277061) (xy 168.359683 132.261023) + (xy 168.299655 132.178404) (xy 168.299414 132.178072) (xy 168.176928 132.055586) (xy 168.036788 131.953768) + (xy 167.882445 131.875127) (xy 167.717701 131.821598) (xy 167.717699 131.821597) (xy 167.717698 131.821597) + (xy 167.586271 131.800781) (xy 167.546611 131.7945) (xy 167.373389 131.7945) (xy 167.333728 131.800781) + (xy 167.202302 131.821597) (xy 167.037552 131.875128) (xy 166.883211 131.953768) (xy 166.743073 132.055585) + (xy 166.63553 132.163128) (xy 166.574207 132.196612) (xy 166.504515 132.191628) (xy 166.448582 132.149756) + (xy 166.44231 132.140543) (xy 166.414425 132.095334) (xy 166.402712 132.076344) (xy 166.278656 131.952288) + (xy 166.153559 131.875128) (xy 166.129336 131.860187) (xy 166.129331 131.860185) (xy 166.127862 131.859698) + (xy 165.962797 131.805001) (xy 165.962795 131.805) (xy 165.86001 131.7945) (xy 165.059998 131.7945) + (xy 165.05998 131.794501) (xy 164.957203 131.805) (xy 164.9572 131.805001) (xy 164.790668 131.860185) + (xy 164.790663 131.860187) (xy 164.641342 131.952289) (xy 164.517289 132.076342) (xy 164.425187 132.225663) + (xy 164.425185 132.225668) (xy 164.408155 132.277061) (xy 164.370001 132.392203) (xy 164.370001 132.392204) + (xy 164.37 132.392204) (xy 164.3595 132.494983) (xy 159.886635 132.494983) (xy 159.879408 132.472742) + (xy 159.800804 132.318475) (xy 159.699032 132.178397) (xy 159.576602 132.055967) (xy 159.436524 131.954195) + (xy 159.282257 131.875591) (xy 159.117589 131.822087) (xy 159.117581 131.822085) (xy 159.11 131.820884) + (xy 159.11 132.88967) (xy 159.090255 132.869925) (xy 159.004745 132.820556) (xy 158.90937 132.795) + (xy 158.81063 132.795) (xy 158.715255 132.820556) (xy 158.629745 132.869925) (xy 158.61 132.88967) + (xy 158.61 131.820884) (xy 158.609999 131.820884) (xy 158.602418 131.822085) (xy 158.60241 131.822087) + (xy 158.437742 131.875591) (xy 158.283475 131.954195) (xy 158.143397 132.055967) (xy 158.020965 132.178399) + (xy 158.020961 132.178404) (xy 157.960627 132.261448) (xy 157.905297 132.304114) (xy 157.835684 132.310093) + (xy 157.773889 132.277488) (xy 157.759991 132.261449) (xy 157.75999 132.261448) (xy 157.699414 132.178072) + (xy 157.576928 132.055586) (xy 157.436788 131.953768) (xy 157.282445 131.875127) (xy 157.117701 131.821598) + (xy 157.117699 131.821597) (xy 157.117698 131.821597) (xy 156.986271 131.800781) (xy 156.946611 131.7945) + (xy 156.773389 131.7945) (xy 156.733728 131.800781) (xy 156.602302 131.821597) (xy 156.437552 131.875128) + (xy 156.283211 131.953768) (xy 156.203256 132.011859) (xy 156.143072 132.055586) (xy 156.14307 132.055588) + (xy 156.143069 132.055588) (xy 156.020588 132.178069) (xy 156.020581 132.178078) (xy 155.960317 132.261023) + (xy 155.904987 132.303689) (xy 155.835374 132.309667) (xy 155.773579 132.277061) (xy 155.759683 132.261023) + (xy 155.699655 132.178404) (xy 155.699414 132.178072) (xy 155.576928 132.055586) (xy 155.436788 131.953768) + (xy 155.282445 131.875127) (xy 155.117701 131.821598) (xy 155.117699 131.821597) (xy 155.117698 131.821597) + (xy 154.986271 131.800781) (xy 154.946611 131.7945) (xy 154.773389 131.7945) (xy 154.733728 131.800781) + (xy 154.602302 131.821597) (xy 154.437552 131.875128) (xy 154.283211 131.953768) (xy 154.143073 132.055585) + (xy 154.03553 132.163128) (xy 153.974207 132.196612) (xy 153.904515 132.191628) (xy 153.848582 132.149756) + (xy 153.84231 132.140543) (xy 153.814425 132.095334) (xy 153.802712 132.076344) (xy 153.678656 131.952288) + (xy 153.553559 131.875128) (xy 153.529336 131.860187) (xy 153.529331 131.860185) (xy 153.527862 131.859698) + (xy 153.362797 131.805001) (xy 153.362795 131.805) (xy 153.26001 131.7945) (xy 152.459998 131.7945) + (xy 152.45998 131.794501) (xy 152.357203 131.805) (xy 152.3572 131.805001) (xy 152.190668 131.860185) + (xy 152.190663 131.860187) (xy 152.041342 131.952289) (xy 151.917289 132.076342) (xy 151.825187 132.225663) + (xy 151.825185 132.225668) (xy 151.808155 132.277061) (xy 151.770001 132.392203) (xy 151.770001 132.392204) + (xy 151.77 132.392204) (xy 151.7595 132.494983) (xy 147.286635 132.494983) (xy 147.279408 132.472742) + (xy 147.200804 132.318475) (xy 147.099032 132.178397) (xy 146.976602 132.055967) (xy 146.836524 131.954195) + (xy 146.682257 131.875591) (xy 146.517589 131.822087) (xy 146.517581 131.822085) (xy 146.51 131.820884) + (xy 146.51 132.88967) (xy 146.490255 132.869925) (xy 146.404745 132.820556) (xy 146.30937 132.795) + (xy 146.21063 132.795) (xy 146.115255 132.820556) (xy 146.029745 132.869925) (xy 146.01 132.88967) + (xy 146.01 131.820884) (xy 146.009999 131.820884) (xy 146.002418 131.822085) (xy 146.00241 131.822087) + (xy 145.837742 131.875591) (xy 145.683475 131.954195) (xy 145.543397 132.055967) (xy 145.420965 132.178399) + (xy 145.420961 132.178404) (xy 145.360627 132.261448) (xy 145.305297 132.304114) (xy 145.235684 132.310093) + (xy 145.173889 132.277488) (xy 145.159991 132.261449) (xy 145.15999 132.261448) (xy 145.099414 132.178072) + (xy 144.976928 132.055586) (xy 144.836788 131.953768) (xy 144.682445 131.875127) (xy 144.517701 131.821598) + (xy 144.517699 131.821597) (xy 144.517698 131.821597) (xy 144.386271 131.800781) (xy 144.346611 131.7945) + (xy 144.173389 131.7945) (xy 144.133728 131.800781) (xy 144.002302 131.821597) (xy 143.837552 131.875128) + (xy 143.683211 131.953768) (xy 143.603256 132.011859) (xy 143.543072 132.055586) (xy 143.54307 132.055588) + (xy 143.543069 132.055588) (xy 143.420588 132.178069) (xy 143.420581 132.178078) (xy 143.360317 132.261023) + (xy 143.304987 132.303689) (xy 143.235374 132.309667) (xy 143.173579 132.277061) (xy 143.159683 132.261023) + (xy 143.099655 132.178404) (xy 143.099414 132.178072) (xy 142.976928 132.055586) (xy 142.836788 131.953768) + (xy 142.682445 131.875127) (xy 142.517701 131.821598) (xy 142.517699 131.821597) (xy 142.517698 131.821597) + (xy 142.386271 131.800781) (xy 142.346611 131.7945) (xy 142.173389 131.7945) (xy 142.133728 131.800781) + (xy 142.002302 131.821597) (xy 141.837552 131.875128) (xy 141.683211 131.953768) (xy 141.543073 132.055585) + (xy 141.43553 132.163128) (xy 141.374207 132.196612) (xy 141.304515 132.191628) (xy 141.248582 132.149756) + (xy 141.24231 132.140543) (xy 141.214425 132.095334) (xy 141.202712 132.076344) (xy 141.078656 131.952288) + (xy 140.953559 131.875128) (xy 140.929336 131.860187) (xy 140.929331 131.860185) (xy 140.927862 131.859698) + (xy 140.762797 131.805001) (xy 140.762795 131.805) (xy 140.66001 131.7945) (xy 139.859998 131.7945) + (xy 139.85998 131.794501) (xy 139.757203 131.805) (xy 139.7572 131.805001) (xy 139.590668 131.860185) + (xy 139.590663 131.860187) (xy 139.441342 131.952289) (xy 139.317289 132.076342) (xy 139.225187 132.225663) + (xy 139.225185 132.225668) (xy 139.208155 132.277061) (xy 139.170001 132.392203) (xy 139.170001 132.392204) + (xy 139.17 132.392204) (xy 139.1595 132.494983) (xy 58.4505 132.494983) (xy 58.4505 127.521153) + (xy 189.9995 127.521153) (xy 189.9995 127.678846) (xy 190.030261 127.833489) (xy 190.030264 127.833501) + (xy 190.090602 127.979172) (xy 190.090609 127.979185) (xy 190.17821 128.110288) (xy 190.178213 128.110292) + (xy 190.289707 128.221786) (xy 190.289711 128.221789) (xy 190.420814 128.30939) (xy 190.420827 128.309397) + (xy 190.566498 128.369735) (xy 190.566503 128.369737) (xy 190.721153 128.400499) (xy 190.721156 128.4005) + (xy 190.721158 128.4005) (xy 190.878844 128.4005) (xy 190.878845 128.400499) (xy 191.033497 128.369737) + (xy 191.179179 128.309394) (xy 191.310289 128.221789) (xy 191.421789 128.110289) (xy 191.509394 127.979179) + (xy 191.517226 127.960272) (xy 191.569735 127.833501) (xy 191.569737 127.833497) (xy 191.6005 127.678842) + (xy 191.6005 127.521158) (xy 191.6005 127.521155) (xy 191.600499 127.521153) (xy 192.1995 127.521153) + (xy 192.1995 127.678846) (xy 192.230261 127.833489) (xy 192.230264 127.833501) (xy 192.290602 127.979172) + (xy 192.290609 127.979185) (xy 192.37821 128.110288) (xy 192.378213 128.110292) (xy 192.489707 128.221786) + (xy 192.489711 128.221789) (xy 192.620814 128.30939) (xy 192.620827 128.309397) (xy 192.766498 128.369735) + (xy 192.766503 128.369737) (xy 192.921153 128.400499) (xy 192.921156 128.4005) (xy 192.921158 128.4005) + (xy 193.078844 128.4005) (xy 193.078845 128.400499) (xy 193.233497 128.369737) (xy 193.379179 128.309394) + (xy 193.510289 128.221789) (xy 193.621789 128.110289) (xy 193.709394 127.979179) (xy 193.717226 127.960272) + (xy 193.769735 127.833501) (xy 193.769737 127.833497) (xy 193.8005 127.678842) (xy 193.8005 127.521158) + (xy 193.8005 127.521155) (xy 193.800499 127.521153) (xy 194.1995 127.521153) (xy 194.1995 127.678846) + (xy 194.230261 127.833489) (xy 194.230264 127.833501) (xy 194.290602 127.979172) (xy 194.290609 127.979185) + (xy 194.37821 128.110288) (xy 194.378213 128.110292) (xy 194.489707 128.221786) (xy 194.489711 128.221789) + (xy 194.620814 128.30939) (xy 194.620827 128.309397) (xy 194.766498 128.369735) (xy 194.766503 128.369737) + (xy 194.921153 128.400499) (xy 194.921156 128.4005) (xy 194.921158 128.4005) (xy 195.078844 128.4005) + (xy 195.078845 128.400499) (xy 195.233497 128.369737) (xy 195.379179 128.309394) (xy 195.510289 128.221789) + (xy 195.621789 128.110289) (xy 195.709394 127.979179) (xy 195.717226 127.960272) (xy 195.769735 127.833501) + (xy 195.769737 127.833497) (xy 195.8005 127.678842) (xy 195.8005 127.521158) (xy 195.8005 127.521155) + (xy 195.800499 127.521153) (xy 195.769738 127.36651) (xy 195.769737 127.366503) (xy 195.769735 127.366498) + (xy 195.709397 127.220827) (xy 195.70939 127.220814) (xy 195.621789 127.089711) (xy 195.621786 127.089707) + (xy 195.510292 126.978213) (xy 195.510288 126.97821) (xy 195.379185 126.890609) (xy 195.379172 126.890602) + (xy 195.233501 126.830264) (xy 195.233489 126.830261) (xy 195.078845 126.7995) (xy 195.078842 126.7995) + (xy 194.921158 126.7995) (xy 194.921155 126.7995) (xy 194.76651 126.830261) (xy 194.766498 126.830264) + (xy 194.620827 126.890602) (xy 194.620814 126.890609) (xy 194.489711 126.97821) (xy 194.489707 126.978213) + (xy 194.378213 127.089707) (xy 194.37821 127.089711) (xy 194.290609 127.220814) (xy 194.290602 127.220827) + (xy 194.230264 127.366498) (xy 194.230261 127.36651) (xy 194.1995 127.521153) (xy 193.800499 127.521153) + (xy 193.769738 127.36651) (xy 193.769737 127.366503) (xy 193.769735 127.366498) (xy 193.709397 127.220827) + (xy 193.70939 127.220814) (xy 193.621789 127.089711) (xy 193.621786 127.089707) (xy 193.510292 126.978213) + (xy 193.510288 126.97821) (xy 193.379185 126.890609) (xy 193.379172 126.890602) (xy 193.233501 126.830264) + (xy 193.233489 126.830261) (xy 193.078845 126.7995) (xy 193.078842 126.7995) (xy 192.921158 126.7995) + (xy 192.921155 126.7995) (xy 192.76651 126.830261) (xy 192.766498 126.830264) (xy 192.620827 126.890602) + (xy 192.620814 126.890609) (xy 192.489711 126.97821) (xy 192.489707 126.978213) (xy 192.378213 127.089707) + (xy 192.37821 127.089711) (xy 192.290609 127.220814) (xy 192.290602 127.220827) (xy 192.230264 127.366498) + (xy 192.230261 127.36651) (xy 192.1995 127.521153) (xy 191.600499 127.521153) (xy 191.569738 127.36651) + (xy 191.569737 127.366503) (xy 191.569735 127.366498) (xy 191.509397 127.220827) (xy 191.50939 127.220814) + (xy 191.421789 127.089711) (xy 191.421786 127.089707) (xy 191.310292 126.978213) (xy 191.310288 126.97821) + (xy 191.179185 126.890609) (xy 191.179172 126.890602) (xy 191.033501 126.830264) (xy 191.033489 126.830261) + (xy 190.878845 126.7995) (xy 190.878842 126.7995) (xy 190.721158 126.7995) (xy 190.721155 126.7995) + (xy 190.56651 126.830261) (xy 190.566498 126.830264) (xy 190.420827 126.890602) (xy 190.420814 126.890609) + (xy 190.289711 126.97821) (xy 190.289707 126.978213) (xy 190.178213 127.089707) (xy 190.17821 127.089711) + (xy 190.090609 127.220814) (xy 190.090602 127.220827) (xy 190.030264 127.366498) (xy 190.030261 127.36651) + (xy 189.9995 127.521153) (xy 58.4505 127.521153) (xy 58.4505 124.538872) (xy 64.6095 124.538872) + (xy 64.6095 124.801127) (xy 64.632943 124.979185) (xy 64.64373 125.061116) (xy 64.710717 125.311116) + (xy 64.711602 125.314418) (xy 64.711605 125.314428) (xy 64.811953 125.55669) (xy 64.811958 125.5567) + (xy 64.943075 125.783803) (xy 65.102718 125.991851) (xy 65.102726 125.99186) (xy 65.28814 126.177274) + (xy 65.288148 126.177281) (xy 65.496196 126.336924) (xy 65.723299 126.468041) (xy 65.723309 126.468046) + (xy 65.889596 126.536924) (xy 65.965581 126.568398) (xy 66.218884 126.63627) (xy 66.47888 126.6705) + (xy 66.478887 126.6705) (xy 66.741113 126.6705) (xy 66.74112 126.6705) (xy 67.001116 126.63627) + (xy 67.254419 126.568398) (xy 67.43134 126.495114) (xy 67.49669 126.468046) (xy 67.496691 126.468045) + (xy 67.496697 126.468043) (xy 67.723803 126.336924) (xy 67.931851 126.177282) (xy 67.931855 126.177277) + (xy 67.93186 126.177274) (xy 68.117274 125.99186) (xy 68.117277 125.991855) (xy 68.117282 125.991851) + (xy 68.276924 125.783803) (xy 68.408043 125.556697) (xy 68.508398 125.314419) (xy 68.57627 125.061116) + (xy 68.6105 124.80112) (xy 68.6105 124.588872) (xy 76.6595 124.588872) (xy 76.6595 124.851127) (xy 76.679247 125.001113) + (xy 76.69373 125.111116) (xy 76.748205 125.314419) (xy 76.761602 125.364418) (xy 76.761605 125.364428) + (xy 76.861953 125.60669) (xy 76.861958 125.6067) (xy 76.993075 125.833803) (xy 77.152718 126.041851) + (xy 77.152726 126.04186) (xy 77.33814 126.227274) (xy 77.338148 126.227281) (xy 77.546196 126.386924) + (xy 77.773299 126.518041) (xy 77.773309 126.518046) (xy 77.939596 126.586924) (xy 78.015581 126.618398) + (xy 78.268884 126.68627) (xy 78.52888 126.7205) (xy 78.528887 126.7205) (xy 78.791113 126.7205) + (xy 78.79112 126.7205) (xy 79.051116 126.68627) (xy 79.304419 126.618398) (xy 79.546697 126.518043) + (xy 79.773803 126.386924) (xy 79.981851 126.227282) (xy 79.981855 126.227277) (xy 79.98186 126.227274) + (xy 80.167274 126.04186) (xy 80.167277 126.041855) (xy 80.167282 126.041851) (xy 80.326924 125.833803) + (xy 80.458043 125.606697) (xy 80.558398 125.364419) (xy 80.62627 125.111116) (xy 80.6605 124.85112) + (xy 80.6605 124.58888) (xy 80.660499 124.588872) (xy 82.942833 124.588872) (xy 82.942833 124.851127) + (xy 82.96258 125.001113) (xy 82.977063 125.111116) (xy 83.031538 125.314419) (xy 83.044935 125.364418) + (xy 83.044938 125.364428) (xy 83.145286 125.60669) (xy 83.145291 125.6067) (xy 83.276408 125.833803) + (xy 83.436051 126.041851) (xy 83.436059 126.04186) (xy 83.621473 126.227274) (xy 83.621481 126.227281) + (xy 83.829529 126.386924) (xy 84.056632 126.518041) (xy 84.056642 126.518046) (xy 84.222929 126.586924) + (xy 84.298914 126.618398) (xy 84.552217 126.68627) (xy 84.812213 126.7205) (xy 84.81222 126.7205) + (xy 85.074446 126.7205) (xy 85.074453 126.7205) (xy 85.334449 126.68627) (xy 85.587752 126.618398) + (xy 85.83003 126.518043) (xy 86.057136 126.386924) (xy 86.265184 126.227282) (xy 86.265188 126.227277) + (xy 86.265193 126.227274) (xy 86.450607 126.04186) (xy 86.45061 126.041855) (xy 86.450615 126.041851) + (xy 86.610257 125.833803) (xy 86.741376 125.606697) (xy 86.841731 125.364419) (xy 86.909603 125.111116) + (xy 86.943833 124.85112) (xy 86.943833 124.638872) (xy 94.992833 124.638872) (xy 94.992833 124.901127) + (xy 95.01258 125.051113) (xy 95.027063 125.161116) (xy 95.094935 125.414418) (xy 95.094938 125.414428) + (xy 95.195286 125.65669) (xy 95.195291 125.6567) (xy 95.326408 125.883803) (xy 95.486051 126.091851) + (xy 95.486059 126.09186) (xy 95.671473 126.277274) (xy 95.671481 126.277281) (xy 95.879529 126.436924) + (xy 96.106632 126.568041) (xy 96.106642 126.568046) (xy 96.348052 126.668041) (xy 96.348914 126.668398) + (xy 96.602217 126.73627) (xy 96.862213 126.7705) (xy 96.86222 126.7705) (xy 97.124446 126.7705) + (xy 97.124453 126.7705) (xy 97.384449 126.73627) (xy 97.637752 126.668398) (xy 97.879173 126.568398) + (xy 97.880023 126.568046) (xy 97.880024 126.568045) (xy 97.88003 126.568043) (xy 98.107136 126.436924) + (xy 98.315184 126.277282) (xy 98.315188 126.277277) (xy 98.315193 126.277274) (xy 98.500607 126.09186) + (xy 98.50061 126.091855) (xy 98.500615 126.091851) (xy 98.660257 125.883803) (xy 98.791376 125.656697) + (xy 98.891731 125.414419) (xy 98.959603 125.161116) (xy 98.993833 124.90112) (xy 98.993833 124.63888) + (xy 98.991582 124.621786) (xy 98.982264 124.551007) (xy 98.980666 124.538872) (xy 101.276167 124.538872) + (xy 101.276167 124.801127) (xy 101.29961 124.979185) (xy 101.310397 125.061116) (xy 101.377384 125.311116) + (xy 101.378269 125.314418) (xy 101.378272 125.314428) (xy 101.47862 125.55669) (xy 101.478625 125.5567) + (xy 101.609742 125.783803) (xy 101.769385 125.991851) (xy 101.769393 125.99186) (xy 101.954807 126.177274) + (xy 101.954815 126.177281) (xy 102.162863 126.336924) (xy 102.389966 126.468041) (xy 102.389976 126.468046) + (xy 102.556263 126.536924) (xy 102.632248 126.568398) (xy 102.885551 126.63627) (xy 103.145547 126.6705) + (xy 103.145554 126.6705) (xy 103.40778 126.6705) (xy 103.407787 126.6705) (xy 103.667783 126.63627) + (xy 103.921086 126.568398) (xy 104.098007 126.495114) (xy 104.163357 126.468046) (xy 104.163358 126.468045) + (xy 104.163364 126.468043) (xy 104.39047 126.336924) (xy 104.598518 126.177282) (xy 104.598522 126.177277) + (xy 104.598527 126.177274) (xy 104.783941 125.99186) (xy 104.783944 125.991855) (xy 104.783949 125.991851) + (xy 104.943591 125.783803) (xy 105.07471 125.556697) (xy 105.175065 125.314419) (xy 105.242937 125.061116) + (xy 105.277167 124.80112) (xy 105.277167 124.588872) (xy 113.326167 124.588872) (xy 113.326167 124.851127) + (xy 113.345914 125.001113) (xy 113.360397 125.111116) (xy 113.414872 125.314419) (xy 113.428269 125.364418) + (xy 113.428272 125.364428) (xy 113.52862 125.60669) (xy 113.528625 125.6067) (xy 113.659742 125.833803) + (xy 113.819385 126.041851) (xy 113.819393 126.04186) (xy 114.004807 126.227274) (xy 114.004815 126.227281) + (xy 114.212863 126.386924) (xy 114.439966 126.518041) (xy 114.439976 126.518046) (xy 114.606263 126.586924) + (xy 114.682248 126.618398) (xy 114.935551 126.68627) (xy 115.195547 126.7205) (xy 115.195554 126.7205) + (xy 115.45778 126.7205) (xy 115.457787 126.7205) (xy 115.717783 126.68627) (xy 115.971086 126.618398) + (xy 116.213364 126.518043) (xy 116.44047 126.386924) (xy 116.648518 126.227282) (xy 116.648522 126.227277) + (xy 116.648527 126.227274) (xy 116.833941 126.04186) (xy 116.833944 126.041855) (xy 116.833949 126.041851) + (xy 116.993591 125.833803) (xy 117.12471 125.606697) (xy 117.225065 125.364419) (xy 117.292937 125.111116) + (xy 117.327167 124.85112) (xy 117.327167 124.738872) (xy 119.6095 124.738872) (xy 119.6095 125.001127) + (xy 119.630564 125.161114) (xy 119.64373 125.261116) (xy 119.68481 125.414428) (xy 119.711602 125.514418) + (xy 119.711605 125.514428) (xy 119.811953 125.75669) (xy 119.811958 125.7567) (xy 119.943075 125.983803) + (xy 120.102718 126.191851) (xy 120.102726 126.19186) (xy 120.28814 126.377274) (xy 120.288148 126.377281) + (xy 120.496196 126.536924) (xy 120.723299 126.668041) (xy 120.723309 126.668046) (xy 120.888017 126.73627) + (xy 120.965581 126.768398) (xy 121.218884 126.83627) (xy 121.47888 126.8705) (xy 121.478887 126.8705) + (xy 121.741113 126.8705) (xy 121.74112 126.8705) (xy 122.001116 126.83627) (xy 122.254419 126.768398) + (xy 122.452696 126.686269) (xy 122.49669 126.668046) (xy 122.496691 126.668045) (xy 122.496697 126.668043) + (xy 122.723803 126.536924) (xy 122.931851 126.377282) (xy 122.931855 126.377277) (xy 122.93186 126.377274) + (xy 123.117274 126.19186) (xy 123.117277 126.191855) (xy 123.117282 126.191851) (xy 123.276924 125.983803) + (xy 123.408043 125.756697) (xy 123.508398 125.514419) (xy 123.57627 125.261116) (xy 123.6105 125.00112) + (xy 123.6105 124.788872) (xy 131.6595 124.788872) (xy 131.6595 125.051127) (xy 131.686123 125.253339) + (xy 131.69373 125.311116) (xy 131.750869 125.524361) (xy 131.761602 125.564418) (xy 131.761605 125.564428) + (xy 131.861953 125.80669) (xy 131.861958 125.8067) (xy 131.993075 126.033803) (xy 132.152718 126.241851) + (xy 132.152726 126.24186) (xy 132.33814 126.427274) (xy 132.338148 126.427281) (xy 132.546196 126.586924) + (xy 132.773299 126.718041) (xy 132.773309 126.718046) (xy 132.969957 126.7995) (xy 133.015581 126.818398) + (xy 133.268884 126.88627) (xy 133.52888 126.9205) (xy 133.528887 126.9205) (xy 133.791113 126.9205) + (xy 133.79112 126.9205) (xy 134.051116 126.88627) (xy 134.304419 126.818398) (xy 134.502696 126.736269) + (xy 134.54669 126.718046) (xy 134.546691 126.718045) (xy 134.546697 126.718043) (xy 134.773803 126.586924) + (xy 134.981851 126.427282) (xy 134.981855 126.427277) (xy 134.98186 126.427274) (xy 135.167274 126.24186) + (xy 135.167277 126.241855) (xy 135.167282 126.241851) (xy 135.326924 126.033803) (xy 135.458043 125.806697) + (xy 135.558398 125.564419) (xy 135.62627 125.311116) (xy 135.6605 125.05112) (xy 135.6605 124.78888) + (xy 135.62627 124.528884) (xy 135.558398 124.275581) (xy 135.540963 124.233489) (xy 135.458046 124.033309) + (xy 135.458037 124.033292) (xy 135.425576 123.977067) (xy 135.425575 123.977066) (xy 135.393294 123.921153) + (xy 185.1995 123.921153) (xy 185.1995 124.078846) (xy 185.230261 124.233489) (xy 185.230264 124.233501) + (xy 185.290602 124.379172) (xy 185.290609 124.379185) (xy 185.37821 124.510288) (xy 185.378213 124.510292) + (xy 185.489707 124.621786) (xy 185.489711 124.621789) (xy 185.620814 124.70939) (xy 185.620827 124.709397) + (xy 185.766498 124.769735) (xy 185.766503 124.769737) (xy 185.921153 124.800499) (xy 185.921156 124.8005) + (xy 185.921158 124.8005) (xy 186.078844 124.8005) (xy 186.078845 124.800499) (xy 186.233497 124.769737) + (xy 186.379179 124.709394) (xy 186.510289 124.621789) (xy 186.610925 124.521153) (xy 187.0595 124.521153) + (xy 187.0595 124.678846) (xy 187.090261 124.833489) (xy 187.090264 124.833501) (xy 187.150602 124.979172) + (xy 187.150609 124.979185) (xy 187.23821 125.110288) (xy 187.238213 125.110292) (xy 187.349707 125.221786) + (xy 187.349711 125.221789) (xy 187.480814 125.30939) (xy 187.480827 125.309397) (xy 187.613664 125.364419) + (xy 187.626503 125.369737) (xy 187.781153 125.400499) (xy 187.781156 125.4005) (xy 187.781158 125.4005) + (xy 187.938844 125.4005) (xy 187.938845 125.400499) (xy 188.093497 125.369737) (xy 188.227026 125.314428) + (xy 188.239172 125.309397) (xy 188.239172 125.309396) (xy 188.239179 125.309394) (xy 188.370289 125.221789) + (xy 188.481789 125.110289) (xy 188.569394 124.979179) (xy 188.629737 124.833497) (xy 188.6605 124.678842) + (xy 188.6605 124.521158) (xy 188.6605 124.521155) (xy 188.660499 124.521153) (xy 188.645585 124.446175) + (xy 188.629737 124.366503) (xy 188.602308 124.300283) (xy 188.569397 124.220827) (xy 188.56939 124.220814) + (xy 188.481789 124.089711) (xy 188.481786 124.089707) (xy 188.370292 123.978213) (xy 188.370288 123.97821) + (xy 188.320534 123.944965) (xy 188.239185 123.890609) (xy 188.239172 123.890602) (xy 188.131301 123.845921) + (xy 196.9195 123.845921) (xy 196.9195 124.074078) (xy 196.949278 124.300272) (xy 196.949279 124.300277) + (xy 196.94928 124.300283) (xy 196.997136 124.478884) (xy 197.008331 124.520666) (xy 197.095638 124.731446) + (xy 197.095646 124.731462) (xy 197.209717 124.929037) (xy 197.209728 124.929053) (xy 197.348613 125.110052) + (xy 197.348619 125.110059) (xy 197.50994 125.27138) (xy 197.509946 125.271385) (xy 197.690955 125.410278) + (xy 197.690962 125.410282) (xy 197.888537 125.524353) (xy 197.888553 125.524361) (xy 198.002268 125.571463) + (xy 198.099334 125.611669) (xy 198.317872 125.670225) (xy 198.377532 125.70659) (xy 198.408061 125.769437) + (xy 198.399766 125.838812) (xy 198.355281 125.89269) (xy 198.317872 125.909774) (xy 198.191189 125.943718) + (xy 198.099333 125.968331) (xy 197.888553 126.055638) (xy 197.888537 126.055646) (xy 197.690962 126.169717) + (xy 197.690946 126.169728) (xy 197.509947 126.308613) (xy 197.50994 126.308619) (xy 197.348619 126.46994) + (xy 197.348613 126.469947) (xy 197.209728 126.650946) (xy 197.209717 126.650962) (xy 197.095646 126.848537) + (xy 197.095638 126.848553) (xy 197.008331 127.059333) (xy 196.949281 127.279714) (xy 196.949278 127.279727) + (xy 196.9195 127.505921) (xy 196.9195 127.734078) (xy 196.949278 127.960272) (xy 196.949279 127.960277) + (xy 196.94928 127.960283) (xy 197.008331 128.180666) (xy 197.095638 128.391446) (xy 197.095646 128.391462) + (xy 197.209717 128.589037) (xy 197.209728 128.589053) (xy 197.348613 128.770052) (xy 197.348619 128.770059) + (xy 197.50994 128.93138) (xy 197.509946 128.931385) (xy 197.690955 129.070278) (xy 197.690962 129.070282) + (xy 197.888537 129.184353) (xy 197.888553 129.184361) (xy 198.002268 129.231463) (xy 198.099334 129.271669) + (xy 198.319717 129.33072) (xy 198.479474 129.351752) (xy 198.545921 129.3605) (xy 198.545922 129.3605) + (xy 198.774079 129.3605) (xy 198.825438 129.353738) (xy 199.000283 129.33072) (xy 199.220666 129.271669) + (xy 199.386365 129.203033) (xy 199.431446 129.184361) (xy 199.431449 129.184359) (xy 199.431455 129.184357) + (xy 199.629045 129.070278) (xy 199.810054 128.931385) (xy 199.971385 128.770054) (xy 200.110278 128.589045) + (xy 200.224357 128.391455) (xy 200.311669 128.180666) (xy 200.37072 127.960283) (xy 200.4005 127.734078) + (xy 200.4005 127.505922) (xy 200.37072 127.279717) (xy 200.311669 127.059334) (xy 200.254162 126.9205) + (xy 200.224361 126.848553) (xy 200.224353 126.848537) (xy 200.110282 126.650962) (xy 200.110278 126.650955) + (xy 200.022779 126.536924) (xy 199.971386 126.469947) (xy 199.97138 126.46994) (xy 199.810059 126.308619) + (xy 199.810052 126.308613) (xy 199.629053 126.169728) (xy 199.629051 126.169726) (xy 199.629045 126.169722) + (xy 199.62904 126.169719) (xy 199.629037 126.169717) (xy 199.431462 126.055646) (xy 199.431446 126.055638) + (xy 199.220666 125.968331) (xy 199.002126 125.909773) (xy 198.942467 125.87341) (xy 198.911938 125.810563) + (xy 198.920233 125.741188) (xy 198.964718 125.68731) (xy 199.002124 125.670226) (xy 199.220666 125.611669) + (xy 199.386365 125.543033) (xy 199.431446 125.524361) (xy 199.431449 125.524359) (xy 199.431455 125.524357) + (xy 199.629045 125.410278) (xy 199.810054 125.271385) (xy 199.971385 125.110054) (xy 200.110278 124.929045) + (xy 200.224357 124.731455) (xy 200.311669 124.520666) (xy 200.37072 124.300283) (xy 200.4005 124.074078) + (xy 200.4005 123.845922) (xy 200.398839 123.833309) (xy 200.388688 123.756197) (xy 200.37072 123.619717) + (xy 200.311669 123.399334) (xy 200.271463 123.302268) (xy 200.224361 123.188553) (xy 200.224353 123.188537) + (xy 200.110282 122.990962) (xy 200.110278 122.990955) (xy 200.043348 122.90373) (xy 199.971386 122.809947) + (xy 199.97138 122.80994) (xy 199.810059 122.648619) (xy 199.810052 122.648613) (xy 199.629053 122.509728) + (xy 199.629051 122.509726) (xy 199.629045 122.509722) (xy 199.62904 122.509719) (xy 199.629037 122.509717) + (xy 199.431462 122.395646) (xy 199.431446 122.395638) (xy 199.220666 122.308331) (xy 199.000283 122.24928) + (xy 199.000277 122.249279) (xy 199.000272 122.249278) (xy 198.774079 122.2195) (xy 198.774078 122.2195) + (xy 198.545922 122.2195) (xy 198.545921 122.2195) (xy 198.319727 122.249278) (xy 198.31972 122.249279) + (xy 198.319717 122.24928) (xy 198.226567 122.274239) (xy 198.099333 122.308331) (xy 197.888553 122.395638) + (xy 197.888537 122.395646) (xy 197.690962 122.509717) (xy 197.690946 122.509728) (xy 197.509947 122.648613) + (xy 197.50994 122.648619) (xy 197.348619 122.80994) (xy 197.348613 122.809947) (xy 197.209728 122.990946) + (xy 197.209717 122.990962) (xy 197.095646 123.188537) (xy 197.095638 123.188553) (xy 197.008331 123.399333) + (xy 196.995251 123.448148) (xy 196.95506 123.598148) (xy 196.949281 123.619714) (xy 196.949278 123.619727) + (xy 196.9195 123.845921) (xy 188.131301 123.845921) (xy 188.093501 123.830264) (xy 188.093489 123.830261) + (xy 187.938845 123.7995) (xy 187.938842 123.7995) (xy 187.781158 123.7995) (xy 187.781155 123.7995) + (xy 187.62651 123.830261) (xy 187.626498 123.830264) (xy 187.480827 123.890602) (xy 187.480814 123.890609) + (xy 187.349711 123.97821) (xy 187.349707 123.978213) (xy 187.238213 124.089707) (xy 187.23821 124.089711) + (xy 187.150609 124.220814) (xy 187.150602 124.220827) (xy 187.090264 124.366498) (xy 187.090261 124.36651) + (xy 187.0595 124.521153) (xy 186.610925 124.521153) (xy 186.621789 124.510289) (xy 186.709394 124.379179) + (xy 186.769737 124.233497) (xy 186.8005 124.078842) (xy 186.8005 123.921158) (xy 186.8005 123.921155) + (xy 186.800499 123.921153) (xy 186.792969 123.883299) (xy 186.769737 123.766503) (xy 186.765468 123.756196) + (xy 186.709397 123.620827) (xy 186.70939 123.620814) (xy 186.621789 123.489711) (xy 186.621786 123.489707) + (xy 186.510292 123.378213) (xy 186.510288 123.37821) (xy 186.379185 123.290609) (xy 186.379172 123.290602) + (xy 186.233501 123.230264) (xy 186.233489 123.230261) (xy 186.078845 123.1995) (xy 186.078842 123.1995) + (xy 185.921158 123.1995) (xy 185.921155 123.1995) (xy 185.76651 123.230261) (xy 185.766498 123.230264) + (xy 185.620827 123.290602) (xy 185.620814 123.290609) (xy 185.489711 123.37821) (xy 185.489707 123.378213) + (xy 185.378213 123.489707) (xy 185.37821 123.489711) (xy 185.290609 123.620814) (xy 185.290602 123.620827) + (xy 185.230264 123.766498) (xy 185.230261 123.76651) (xy 185.1995 123.921153) (xy 135.393294 123.921153) + (xy 135.326924 123.806196) (xy 135.204424 123.646554) (xy 135.167282 123.598149) (xy 135.167281 123.598148) + (xy 135.167274 123.59814) (xy 134.98186 123.412726) (xy 134.981851 123.412718) (xy 134.773803 123.253075) + (xy 134.5467 123.121958) (xy 134.54669 123.121953) (xy 134.304428 123.021605) (xy 134.304421 123.021603) + (xy 134.304419 123.021602) (xy 134.051116 122.95373) (xy 133.993339 122.946123) (xy 133.791127 122.9195) + (xy 133.79112 122.9195) (xy 133.52888 122.9195) (xy 133.528872 122.9195) (xy 133.297772 122.949926) + (xy 133.268884 122.95373) (xy 133.015581 123.021602) (xy 133.015571 123.021605) (xy 132.773309 123.121953) + (xy 132.773299 123.121958) (xy 132.546196 123.253075) (xy 132.338148 123.412718) (xy 132.152718 123.598148) + (xy 131.993075 123.806196) (xy 131.861958 124.033299) (xy 131.861953 124.033309) (xy 131.761605 124.275571) + (xy 131.761602 124.275581) (xy 131.698713 124.510289) (xy 131.69373 124.528885) (xy 131.6595 124.788872) + (xy 123.6105 124.788872) (xy 123.6105 124.73888) (xy 123.57627 124.478884) (xy 123.508398 124.225581) + (xy 123.506426 124.220821) (xy 123.408046 123.983309) (xy 123.408041 123.983299) (xy 123.276924 123.756196) + (xy 123.117281 123.548148) (xy 123.117274 123.54814) (xy 122.93186 123.362726) (xy 122.931851 123.362718) + (xy 122.723803 123.203075) (xy 122.4967 123.071958) (xy 122.49669 123.071953) (xy 122.254428 122.971605) + (xy 122.254421 122.971603) (xy 122.254419 122.971602) (xy 122.001116 122.90373) (xy 121.943339 122.896123) + (xy 121.741127 122.8695) (xy 121.74112 122.8695) (xy 121.47888 122.8695) (xy 121.478872 122.8695) + (xy 121.247772 122.899926) (xy 121.218884 122.90373) (xy 121.032281 122.95373) (xy 120.965581 122.971602) + (xy 120.965571 122.971605) (xy 120.723309 123.071953) (xy 120.723299 123.071958) (xy 120.496196 123.203075) + (xy 120.288148 123.362718) (xy 120.102718 123.548148) (xy 119.943075 123.756196) (xy 119.811958 123.983299) + (xy 119.811953 123.983309) (xy 119.711605 124.225571) (xy 119.711602 124.225581) (xy 119.652495 124.446175) + (xy 119.64373 124.478885) (xy 119.6095 124.738872) (xy 117.327167 124.738872) (xy 117.327167 124.58888) + (xy 117.292937 124.328884) (xy 117.225065 124.075581) (xy 117.225061 124.075571) (xy 117.124713 123.833309) + (xy 117.124708 123.833299) (xy 116.993591 123.606196) (xy 116.834858 123.399334) (xy 116.833949 123.398149) + (xy 116.833948 123.398148) (xy 116.833941 123.39814) (xy 116.648527 123.212726) (xy 116.648518 123.212718) + (xy 116.44047 123.053075) (xy 116.213367 122.921958) (xy 116.213357 122.921953) (xy 115.971095 122.821605) + (xy 115.971088 122.821603) (xy 115.971086 122.821602) (xy 115.717783 122.75373) (xy 115.660006 122.746123) + (xy 115.457794 122.7195) (xy 115.457787 122.7195) (xy 115.195547 122.7195) (xy 115.195539 122.7195) + (xy 114.964439 122.749926) (xy 114.935551 122.75373) (xy 114.725749 122.809946) (xy 114.682248 122.821602) + (xy 114.682238 122.821605) (xy 114.439976 122.921953) (xy 114.439966 122.921958) (xy 114.212863 123.053075) + (xy 114.004815 123.212718) (xy 113.819385 123.398148) (xy 113.659742 123.606196) (xy 113.528625 123.833299) + (xy 113.52862 123.833309) (xy 113.428272 124.075571) (xy 113.428269 124.075581) (xy 113.373795 124.278884) + (xy 113.360397 124.328885) (xy 113.326167 124.588872) (xy 105.277167 124.588872) (xy 105.277167 124.53888) + (xy 105.242937 124.278884) (xy 105.175065 124.025581) (xy 105.175061 124.025571) (xy 105.074713 123.783309) + (xy 105.074708 123.783299) (xy 104.943591 123.556196) (xy 104.807018 123.378213) (xy 104.783949 123.348149) + (xy 104.783948 123.348148) (xy 104.783941 123.34814) (xy 104.598527 123.162726) (xy 104.598518 123.162718) + (xy 104.39047 123.003075) (xy 104.163367 122.871958) (xy 104.163357 122.871953) (xy 103.921095 122.771605) + (xy 103.921088 122.771603) (xy 103.921086 122.771602) (xy 103.667783 122.70373) (xy 103.610006 122.696123) + (xy 103.407794 122.6695) (xy 103.407787 122.6695) (xy 103.145547 122.6695) (xy 103.145539 122.6695) + (xy 102.914439 122.699926) (xy 102.885551 122.70373) (xy 102.698948 122.75373) (xy 102.632248 122.771602) + (xy 102.632238 122.771605) (xy 102.389976 122.871953) (xy 102.389966 122.871958) (xy 102.162863 123.003075) + (xy 101.954815 123.162718) (xy 101.769385 123.348148) (xy 101.609742 123.556196) (xy 101.478625 123.783299) + (xy 101.47862 123.783309) (xy 101.378272 124.025571) (xy 101.378269 124.025581) (xy 101.322559 124.233497) + (xy 101.310397 124.278885) (xy 101.276167 124.538872) (xy 98.980666 124.538872) (xy 98.959603 124.378884) + (xy 98.891731 124.125581) (xy 98.876873 124.089711) (xy 98.791379 123.883309) (xy 98.791374 123.883299) + (xy 98.660257 123.656196) (xy 98.500614 123.448148) (xy 98.500607 123.44814) (xy 98.315193 123.262726) + (xy 98.315184 123.262718) (xy 98.107136 123.103075) (xy 97.880033 122.971958) (xy 97.880023 122.971953) + (xy 97.637761 122.871605) (xy 97.637754 122.871603) (xy 97.637752 122.871602) (xy 97.384449 122.80373) + (xy 97.326672 122.796123) (xy 97.12446 122.7695) (xy 97.124453 122.7695) (xy 96.862213 122.7695) + (xy 96.862205 122.7695) (xy 96.631105 122.799926) (xy 96.602217 122.80373) (xy 96.356759 122.8695) + (xy 96.348914 122.871602) (xy 96.348904 122.871605) (xy 96.106642 122.971953) (xy 96.106632 122.971958) + (xy 95.879529 123.103075) (xy 95.671481 123.262718) (xy 95.486051 123.448148) (xy 95.326408 123.656196) + (xy 95.195291 123.883299) (xy 95.195286 123.883309) (xy 95.094938 124.125571) (xy 95.094935 124.125581) + (xy 95.027063 124.378884) (xy 95.023259 124.407772) (xy 94.992833 124.638872) (xy 86.943833 124.638872) + (xy 86.943833 124.58888) (xy 86.909603 124.328884) (xy 86.841731 124.075581) (xy 86.841727 124.075571) + (xy 86.741379 123.833309) (xy 86.741374 123.833299) (xy 86.610257 123.606196) (xy 86.451524 123.399334) + (xy 86.450615 123.398149) (xy 86.450614 123.398148) (xy 86.450607 123.39814) (xy 86.265193 123.212726) + (xy 86.265184 123.212718) (xy 86.057136 123.053075) (xy 85.830033 122.921958) (xy 85.830023 122.921953) + (xy 85.587761 122.821605) (xy 85.587754 122.821603) (xy 85.587752 122.821602) (xy 85.334449 122.75373) + (xy 85.276672 122.746123) (xy 85.07446 122.7195) (xy 85.074453 122.7195) (xy 84.812213 122.7195) + (xy 84.812205 122.7195) (xy 84.581105 122.749926) (xy 84.552217 122.75373) (xy 84.342415 122.809946) + (xy 84.298914 122.821602) (xy 84.298904 122.821605) (xy 84.056642 122.921953) (xy 84.056632 122.921958) + (xy 83.829529 123.053075) (xy 83.621481 123.212718) (xy 83.436051 123.398148) (xy 83.276408 123.606196) + (xy 83.145291 123.833299) (xy 83.145286 123.833309) (xy 83.044938 124.075571) (xy 83.044935 124.075581) + (xy 82.990461 124.278884) (xy 82.977063 124.328885) (xy 82.942833 124.588872) (xy 80.660499 124.588872) + (xy 80.62627 124.328884) (xy 80.558398 124.075581) (xy 80.558394 124.075571) (xy 80.458046 123.833309) + (xy 80.458041 123.833299) (xy 80.326924 123.606196) (xy 80.168191 123.399334) (xy 80.167282 123.398149) + (xy 80.167281 123.398148) (xy 80.167274 123.39814) (xy 79.98186 123.212726) (xy 79.981851 123.212718) + (xy 79.773803 123.053075) (xy 79.5467 122.921958) (xy 79.54669 122.921953) (xy 79.304428 122.821605) + (xy 79.304421 122.821603) (xy 79.304419 122.821602) (xy 79.051116 122.75373) (xy 78.993339 122.746123) + (xy 78.791127 122.7195) (xy 78.79112 122.7195) (xy 78.52888 122.7195) (xy 78.528872 122.7195) (xy 78.297772 122.749926) + (xy 78.268884 122.75373) (xy 78.059082 122.809946) (xy 78.015581 122.821602) (xy 78.015571 122.821605) + (xy 77.773309 122.921953) (xy 77.773299 122.921958) (xy 77.546196 123.053075) (xy 77.338148 123.212718) + (xy 77.152718 123.398148) (xy 76.993075 123.606196) (xy 76.861958 123.833299) (xy 76.861953 123.833309) + (xy 76.761605 124.075571) (xy 76.761602 124.075581) (xy 76.707128 124.278884) (xy 76.69373 124.328885) + (xy 76.6595 124.588872) (xy 68.6105 124.588872) (xy 68.6105 124.53888) (xy 68.57627 124.278884) + (xy 68.508398 124.025581) (xy 68.508394 124.025571) (xy 68.408046 123.783309) (xy 68.408041 123.783299) + (xy 68.276924 123.556196) (xy 68.140351 123.378213) (xy 68.117282 123.348149) (xy 68.117281 123.348148) + (xy 68.117274 123.34814) (xy 67.93186 123.162726) (xy 67.931851 123.162718) (xy 67.723803 123.003075) + (xy 67.4967 122.871958) (xy 67.49669 122.871953) (xy 67.254428 122.771605) (xy 67.254421 122.771603) + (xy 67.254419 122.771602) (xy 67.001116 122.70373) (xy 66.943339 122.696123) (xy 66.741127 122.6695) + (xy 66.74112 122.6695) (xy 66.47888 122.6695) (xy 66.478872 122.6695) (xy 66.247772 122.699926) + (xy 66.218884 122.70373) (xy 66.032281 122.75373) (xy 65.965581 122.771602) (xy 65.965571 122.771605) + (xy 65.723309 122.871953) (xy 65.723299 122.871958) (xy 65.496196 123.003075) (xy 65.288148 123.162718) + (xy 65.102718 123.348148) (xy 64.943075 123.556196) (xy 64.811958 123.783299) (xy 64.811953 123.783309) + (xy 64.711605 124.025571) (xy 64.711602 124.025581) (xy 64.655892 124.233497) (xy 64.64373 124.278885) + (xy 64.6095 124.538872) (xy 58.4505 124.538872) (xy 58.4505 121.921153) (xy 184.1995 121.921153) + (xy 184.1995 122.078846) (xy 184.230261 122.233489) (xy 184.230264 122.233501) (xy 184.290602 122.379172) + (xy 184.290609 122.379185) (xy 184.37821 122.510288) (xy 184.378213 122.510292) (xy 184.489707 122.621786) + (xy 184.489711 122.621789) (xy 184.620814 122.70939) (xy 184.620827 122.709397) (xy 184.727858 122.75373) + (xy 184.766503 122.769737) (xy 184.921153 122.800499) (xy 184.921156 122.8005) (xy 184.921158 122.8005) + (xy 185.078844 122.8005) (xy 185.078845 122.800499) (xy 185.233497 122.769737) (xy 185.379179 122.709394) + (xy 185.510289 122.621789) (xy 185.621789 122.510289) (xy 185.709394 122.379179) (xy 185.769737 122.233497) + (xy 185.8005 122.078842) (xy 185.8005 121.921158) (xy 185.8005 121.921155) (xy 185.800499 121.921153) + (xy 187.0595 121.921153) (xy 187.0595 122.078846) (xy 187.090261 122.233489) (xy 187.090264 122.233501) + (xy 187.150602 122.379172) (xy 187.150609 122.379185) (xy 187.23821 122.510288) (xy 187.238213 122.510292) + (xy 187.349707 122.621786) (xy 187.349711 122.621789) (xy 187.480814 122.70939) (xy 187.480827 122.709397) + (xy 187.587858 122.75373) (xy 187.626503 122.769737) (xy 187.781153 122.800499) (xy 187.781156 122.8005) + (xy 187.781158 122.8005) (xy 187.938844 122.8005) (xy 187.938845 122.800499) (xy 188.093497 122.769737) + (xy 188.239179 122.709394) (xy 188.370289 122.621789) (xy 188.481789 122.510289) (xy 188.569394 122.379179) + (xy 188.629737 122.233497) (xy 188.6605 122.078842) (xy 188.6605 121.921158) (xy 188.6605 121.921155) + (xy 188.660499 121.921153) (xy 189.9995 121.921153) (xy 189.9995 122.078846) (xy 190.030261 122.233489) + (xy 190.030264 122.233501) (xy 190.090602 122.379172) (xy 190.090609 122.379185) (xy 190.17821 122.510288) + (xy 190.178213 122.510292) (xy 190.289707 122.621786) (xy 190.289711 122.621789) (xy 190.420814 122.70939) + (xy 190.420827 122.709397) (xy 190.527858 122.75373) (xy 190.566503 122.769737) (xy 190.721153 122.800499) + (xy 190.721156 122.8005) (xy 190.721158 122.8005) (xy 190.878844 122.8005) (xy 190.878845 122.800499) + (xy 191.033497 122.769737) (xy 191.179179 122.709394) (xy 191.310289 122.621789) (xy 191.421789 122.510289) + (xy 191.509394 122.379179) (xy 191.569737 122.233497) (xy 191.6005 122.078842) (xy 191.6005 121.921158) + (xy 191.6005 121.921155) (xy 191.600499 121.921153) (xy 192.1995 121.921153) (xy 192.1995 122.078846) + (xy 192.230261 122.233489) (xy 192.230264 122.233501) (xy 192.290602 122.379172) (xy 192.290609 122.379185) + (xy 192.37821 122.510288) (xy 192.378213 122.510292) (xy 192.489707 122.621786) (xy 192.489711 122.621789) + (xy 192.620814 122.70939) (xy 192.620827 122.709397) (xy 192.727858 122.75373) (xy 192.766503 122.769737) + (xy 192.921153 122.800499) (xy 192.921156 122.8005) (xy 192.921158 122.8005) (xy 193.078844 122.8005) + (xy 193.078845 122.800499) (xy 193.233497 122.769737) (xy 193.379179 122.709394) (xy 193.510289 122.621789) + (xy 193.621789 122.510289) (xy 193.709394 122.379179) (xy 193.769737 122.233497) (xy 193.8005 122.078842) + (xy 193.8005 121.921158) (xy 193.8005 121.921155) (xy 193.800499 121.921153) (xy 193.769738 121.76651) + (xy 193.769737 121.766503) (xy 193.769735 121.766498) (xy 193.709397 121.620827) (xy 193.70939 121.620814) + (xy 193.621789 121.489711) (xy 193.621786 121.489707) (xy 193.510292 121.378213) (xy 193.510288 121.37821) + (xy 193.379185 121.290609) (xy 193.379172 121.290602) (xy 193.233501 121.230264) (xy 193.233489 121.230261) + (xy 193.078845 121.1995) (xy 193.078842 121.1995) (xy 192.921158 121.1995) (xy 192.921155 121.1995) + (xy 192.76651 121.230261) (xy 192.766498 121.230264) (xy 192.620827 121.290602) (xy 192.620814 121.290609) + (xy 192.489711 121.37821) (xy 192.489707 121.378213) (xy 192.378213 121.489707) (xy 192.37821 121.489711) + (xy 192.290609 121.620814) (xy 192.290602 121.620827) (xy 192.230264 121.766498) (xy 192.230261 121.76651) + (xy 192.1995 121.921153) (xy 191.600499 121.921153) (xy 191.569738 121.76651) (xy 191.569737 121.766503) + (xy 191.569735 121.766498) (xy 191.509397 121.620827) (xy 191.50939 121.620814) (xy 191.421789 121.489711) + (xy 191.421786 121.489707) (xy 191.310292 121.378213) (xy 191.310288 121.37821) (xy 191.179185 121.290609) + (xy 191.179172 121.290602) (xy 191.033501 121.230264) (xy 191.033489 121.230261) (xy 190.878845 121.1995) + (xy 190.878842 121.1995) (xy 190.721158 121.1995) (xy 190.721155 121.1995) (xy 190.56651 121.230261) + (xy 190.566498 121.230264) (xy 190.420827 121.290602) (xy 190.420814 121.290609) (xy 190.289711 121.37821) + (xy 190.289707 121.378213) (xy 190.178213 121.489707) (xy 190.17821 121.489711) (xy 190.090609 121.620814) + (xy 190.090602 121.620827) (xy 190.030264 121.766498) (xy 190.030261 121.76651) (xy 189.9995 121.921153) + (xy 188.660499 121.921153) (xy 188.629738 121.76651) (xy 188.629737 121.766503) (xy 188.629735 121.766498) + (xy 188.569397 121.620827) (xy 188.56939 121.620814) (xy 188.481789 121.489711) (xy 188.481786 121.489707) + (xy 188.370292 121.378213) (xy 188.370288 121.37821) (xy 188.239185 121.290609) (xy 188.239172 121.290602) + (xy 188.093501 121.230264) (xy 188.093489 121.230261) (xy 187.938845 121.1995) (xy 187.938842 121.1995) + (xy 187.781158 121.1995) (xy 187.781155 121.1995) (xy 187.62651 121.230261) (xy 187.626498 121.230264) + (xy 187.480827 121.290602) (xy 187.480814 121.290609) (xy 187.349711 121.37821) (xy 187.349707 121.378213) + (xy 187.238213 121.489707) (xy 187.23821 121.489711) (xy 187.150609 121.620814) (xy 187.150602 121.620827) + (xy 187.090264 121.766498) (xy 187.090261 121.76651) (xy 187.0595 121.921153) (xy 185.800499 121.921153) + (xy 185.769738 121.76651) (xy 185.769737 121.766503) (xy 185.769735 121.766498) (xy 185.709397 121.620827) + (xy 185.70939 121.620814) (xy 185.621789 121.489711) (xy 185.621786 121.489707) (xy 185.510292 121.378213) + (xy 185.510288 121.37821) (xy 185.379185 121.290609) (xy 185.379172 121.290602) (xy 185.233501 121.230264) + (xy 185.233489 121.230261) (xy 185.078845 121.1995) (xy 185.078842 121.1995) (xy 184.921158 121.1995) + (xy 184.921155 121.1995) (xy 184.76651 121.230261) (xy 184.766498 121.230264) (xy 184.620827 121.290602) + (xy 184.620814 121.290609) (xy 184.489711 121.37821) (xy 184.489707 121.378213) (xy 184.378213 121.489707) + (xy 184.37821 121.489711) (xy 184.290609 121.620814) (xy 184.290602 121.620827) (xy 184.230264 121.766498) + (xy 184.230261 121.76651) (xy 184.1995 121.921153) (xy 58.4505 121.921153) (xy 58.4505 112.355258) + (xy 64.8595 112.355258) (xy 64.8595 112.584741) (xy 64.877374 112.720499) (xy 64.889452 112.812238) + (xy 64.90285 112.86224) (xy 64.948842 113.033887) (xy 65.03665 113.245876) (xy 65.036657 113.24589) + (xy 65.074021 113.310606) (xy 65.143103 113.430261) (xy 65.151392 113.444617) (xy 65.291081 113.626661) + (xy 65.291089 113.62667) (xy 65.45333 113.788911) (xy 65.453338 113.788918) (xy 65.635382 113.928607) + (xy 65.635385 113.928608) (xy 65.635388 113.928611) (xy 65.834112 114.043344) (xy 65.834117 114.043346) + (xy 65.834123 114.043349) (xy 65.866438 114.056734) (xy 66.046113 114.131158) (xy 66.267762 114.190548) + (xy 66.495266 114.2205) (xy 66.495273 114.2205) (xy 66.724727 114.2205) (xy 66.724734 114.2205) + (xy 66.952238 114.190548) (xy 67.173887 114.131158) (xy 67.385888 114.043344) (xy 67.584612 113.928611) + (xy 67.766661 113.788919) (xy 67.766665 113.788914) (xy 67.76667 113.788911) (xy 67.928911 113.62667) + (xy 67.928914 113.626665) (xy 67.928919 113.626661) (xy 68.068611 113.444612) (xy 68.183344 113.245888) + (xy 68.271158 113.033887) (xy 68.330548 112.812238) (xy 68.3605 112.584734) (xy 68.3605 112.355266) + (xy 68.330548 112.127762) (xy 68.271158 111.906113) (xy 68.22119 111.78548) (xy 68.183349 111.694123) + (xy 68.183346 111.694117) (xy 68.183344 111.694112) (xy 68.068611 111.495388) (xy 68.068608 111.495385) + (xy 68.068607 111.495382) (xy 67.928918 111.313338) (xy 67.928911 111.31333) (xy 67.76667 111.151089) + (xy 67.766661 111.151081) (xy 67.584617 111.011392) (xy 67.38589 110.896657) (xy 67.385876 110.89665) + (xy 67.173887 110.808842) (xy 66.952238 110.749452) (xy 66.914215 110.744446) (xy 66.724741 110.7195) + (xy 66.724734 110.7195) (xy 66.495266 110.7195) (xy 66.495258 110.7195) (xy 66.278715 110.748009) + (xy 66.267762 110.749452) (xy 66.192941 110.7695) (xy 66.046112 110.808842) (xy 65.834123 110.89665) + (xy 65.834109 110.896657) (xy 65.635382 111.011392) (xy 65.453338 111.151081) (xy 65.291081 111.313338) + (xy 65.151392 111.495382) (xy 65.036657 111.694109) (xy 65.03665 111.694123) (xy 64.948842 111.906112) + (xy 64.889453 112.127759) (xy 64.889451 112.12777) (xy 64.8595 112.355258) (xy 58.4505 112.355258) + (xy 58.4505 110.388872) (xy 70.6595 110.388872) (xy 70.6595 110.651127) (xy 70.679029 110.799452) + (xy 70.69373 110.911116) (xy 70.761602 111.164418) (xy 70.761605 111.164428) (xy 70.861953 111.40669) + (xy 70.861958 111.4067) (xy 70.993075 111.633803) (xy 71.152718 111.841851) (xy 71.152726 111.84186) + (xy 71.33814 112.027274) (xy 71.338148 112.027281) (xy 71.546196 112.186924) (xy 71.773299 112.318041) + (xy 71.773309 112.318046) (xy 71.983892 112.405272) (xy 72.015581 112.418398) (xy 72.268884 112.48627) + (xy 72.52888 112.5205) (xy 72.528887 112.5205) (xy 72.791113 112.5205) (xy 72.79112 112.5205) (xy 73.051116 112.48627) + (xy 73.304419 112.418398) (xy 73.456852 112.355258) (xy 76.8595 112.355258) (xy 76.8595 112.584741) + (xy 76.877374 112.720499) (xy 76.889452 112.812238) (xy 76.90285 112.86224) (xy 76.948842 113.033887) + (xy 77.03665 113.245876) (xy 77.036657 113.24589) (xy 77.074021 113.310606) (xy 77.143103 113.430261) + (xy 77.151392 113.444617) (xy 77.291081 113.626661) (xy 77.291089 113.62667) (xy 77.45333 113.788911) + (xy 77.453338 113.788918) (xy 77.635382 113.928607) (xy 77.635385 113.928608) (xy 77.635388 113.928611) + (xy 77.834112 114.043344) (xy 77.834117 114.043346) (xy 77.834123 114.043349) (xy 77.866438 114.056734) + (xy 78.046113 114.131158) (xy 78.267762 114.190548) (xy 78.495266 114.2205) (xy 78.495273 114.2205) + (xy 78.724727 114.2205) (xy 78.724734 114.2205) (xy 78.952238 114.190548) (xy 79.173887 114.131158) + (xy 79.385888 114.043344) (xy 79.584612 113.928611) (xy 79.766661 113.788919) (xy 79.766665 113.788914) + (xy 79.76667 113.788911) (xy 79.928911 113.62667) (xy 79.928914 113.626665) (xy 79.928919 113.626661) + (xy 80.068611 113.444612) (xy 80.183344 113.245888) (xy 80.271158 113.033887) (xy 80.330548 112.812238) + (xy 80.3605 112.584734) (xy 80.3605 112.405258) (xy 83.192833 112.405258) (xy 83.192833 112.634741) + (xy 83.217779 112.824215) (xy 83.222785 112.862238) (xy 83.268778 113.033887) (xy 83.282175 113.083887) + (xy 83.369983 113.295876) (xy 83.369989 113.295888) (xy 83.455857 113.444617) (xy 83.484725 113.494617) + (xy 83.624414 113.676661) (xy 83.624422 113.67667) (xy 83.786663 113.838911) (xy 83.786671 113.838918) + (xy 83.968715 113.978607) (xy 83.968718 113.978608) (xy 83.968721 113.978611) (xy 84.167445 114.093344) + (xy 84.16745 114.093346) (xy 84.167456 114.093349) (xy 84.252577 114.128607) (xy 84.379446 114.181158) + (xy 84.601095 114.240548) (xy 84.828599 114.2705) (xy 84.828606 114.2705) (xy 85.05806 114.2705) + (xy 85.058067 114.2705) (xy 85.285571 114.240548) (xy 85.50722 114.181158) (xy 85.719221 114.093344) + (xy 85.917945 113.978611) (xy 86.099994 113.838919) (xy 86.099998 113.838914) (xy 86.100003 113.838911) + (xy 86.262244 113.67667) (xy 86.262247 113.676665) (xy 86.262252 113.676661) (xy 86.401944 113.494612) + (xy 86.516677 113.295888) (xy 86.604491 113.083887) (xy 86.663881 112.862238) (xy 86.693833 112.634734) + (xy 86.693833 112.405266) (xy 86.663881 112.177762) (xy 86.604491 111.956113) (xy 86.516677 111.744112) + (xy 86.401944 111.545388) (xy 86.401941 111.545385) (xy 86.40194 111.545382) (xy 86.295517 111.40669) + (xy 86.262252 111.363339) (xy 86.262251 111.363338) (xy 86.262244 111.36333) (xy 86.100003 111.201089) + (xy 86.099994 111.201081) (xy 85.91795 111.061392) (xy 85.719223 110.946657) (xy 85.719209 110.94665) + (xy 85.50722 110.858842) (xy 85.478401 110.85112) (xy 85.285571 110.799452) (xy 85.247548 110.794446) + (xy 85.058074 110.7695) (xy 85.058067 110.7695) (xy 84.828599 110.7695) (xy 84.828591 110.7695) + (xy 84.612048 110.798009) (xy 84.601095 110.799452) (xy 84.566051 110.808842) (xy 84.379445 110.858842) + (xy 84.167456 110.94665) (xy 84.167442 110.946657) (xy 83.968715 111.061392) (xy 83.786671 111.201081) + (xy 83.624414 111.363338) (xy 83.484725 111.545382) (xy 83.36999 111.744109) (xy 83.369983 111.744123) + (xy 83.282175 111.956112) (xy 83.222786 112.177759) (xy 83.222784 112.17777) (xy 83.192833 112.405258) + (xy 80.3605 112.405258) (xy 80.3605 112.355266) (xy 80.330548 112.127762) (xy 80.271158 111.906113) + (xy 80.22119 111.78548) (xy 80.183349 111.694123) (xy 80.183346 111.694117) (xy 80.183344 111.694112) + (xy 80.068611 111.495388) (xy 80.068608 111.495385) (xy 80.068607 111.495382) (xy 79.928918 111.313338) + (xy 79.928911 111.31333) (xy 79.76667 111.151089) (xy 79.766661 111.151081) (xy 79.584617 111.011392) + (xy 79.38589 110.896657) (xy 79.385876 110.89665) (xy 79.173887 110.808842) (xy 78.952238 110.749452) + (xy 78.914215 110.744446) (xy 78.724741 110.7195) (xy 78.724734 110.7195) (xy 78.495266 110.7195) + (xy 78.495258 110.7195) (xy 78.278715 110.748009) (xy 78.267762 110.749452) (xy 78.192941 110.7695) + (xy 78.046112 110.808842) (xy 77.834123 110.89665) (xy 77.834109 110.896657) (xy 77.635382 111.011392) + (xy 77.453338 111.151081) (xy 77.291081 111.313338) (xy 77.151392 111.495382) (xy 77.036657 111.694109) + (xy 77.03665 111.694123) (xy 76.948842 111.906112) (xy 76.889453 112.127759) (xy 76.889451 112.12777) + (xy 76.8595 112.355258) (xy 73.456852 112.355258) (xy 73.546697 112.318043) (xy 73.703915 112.227274) + (xy 73.773803 112.186924) (xy 73.850893 112.12777) (xy 73.981851 112.027282) (xy 73.981855 112.027277) + (xy 73.98186 112.027274) (xy 74.167274 111.84186) (xy 74.167277 111.841855) (xy 74.167282 111.841851) + (xy 74.326924 111.633803) (xy 74.458043 111.406697) (xy 74.558398 111.164419) (xy 74.62627 110.911116) + (xy 74.6605 110.65112) (xy 74.6605 110.438872) (xy 88.992833 110.438872) (xy 88.992833 110.701127) + (xy 89.005779 110.799452) (xy 89.027063 110.961116) (xy 89.094123 111.211389) (xy 89.094935 111.214418) + (xy 89.094938 111.214428) (xy 89.195286 111.45669) (xy 89.195291 111.4567) (xy 89.326408 111.683803) + (xy 89.486051 111.891851) (xy 89.486059 111.89186) (xy 89.671473 112.077274) (xy 89.671481 112.077281) + (xy 89.671482 112.077282) (xy 89.709054 112.106112) (xy 89.879529 112.236924) (xy 90.106632 112.368041) + (xy 90.106642 112.368046) (xy 90.348904 112.468394) (xy 90.348914 112.468398) (xy 90.602217 112.53627) + (xy 90.862213 112.5705) (xy 90.86222 112.5705) (xy 91.124446 112.5705) (xy 91.124453 112.5705) (xy 91.384449 112.53627) + (xy 91.637752 112.468398) (xy 91.790185 112.405258) (xy 95.192833 112.405258) (xy 95.192833 112.634741) + (xy 95.217779 112.824215) (xy 95.222785 112.862238) (xy 95.268778 113.033887) (xy 95.282175 113.083887) + (xy 95.369983 113.295876) (xy 95.369989 113.295888) (xy 95.455857 113.444617) (xy 95.484725 113.494617) + (xy 95.624414 113.676661) (xy 95.624422 113.67667) (xy 95.786663 113.838911) (xy 95.786671 113.838918) + (xy 95.968715 113.978607) (xy 95.968718 113.978608) (xy 95.968721 113.978611) (xy 96.167445 114.093344) + (xy 96.16745 114.093346) (xy 96.167456 114.093349) (xy 96.252577 114.128607) (xy 96.379446 114.181158) + (xy 96.601095 114.240548) (xy 96.828599 114.2705) (xy 96.828606 114.2705) (xy 97.05806 114.2705) + (xy 97.058067 114.2705) (xy 97.285571 114.240548) (xy 97.50722 114.181158) (xy 97.719221 114.093344) + (xy 97.917945 113.978611) (xy 98.099994 113.838919) (xy 98.099998 113.838914) (xy 98.100003 113.838911) + (xy 98.262244 113.67667) (xy 98.262247 113.676665) (xy 98.262252 113.676661) (xy 98.401944 113.494612) + (xy 98.516677 113.295888) (xy 98.604491 113.083887) (xy 98.663881 112.862238) (xy 98.693833 112.634734) + (xy 98.693833 112.405266) (xy 98.688933 112.368046) (xy 98.688847 112.367392) (xy 98.687249 112.355258) + (xy 101.526167 112.355258) (xy 101.526167 112.584741) (xy 101.544041 112.720499) (xy 101.556119 112.812238) + (xy 101.569517 112.86224) (xy 101.615509 113.033887) (xy 101.703317 113.245876) (xy 101.703324 113.24589) + (xy 101.740688 113.310606) (xy 101.80977 113.430261) (xy 101.818059 113.444617) (xy 101.957748 113.626661) + (xy 101.957756 113.62667) (xy 102.119997 113.788911) (xy 102.120005 113.788918) (xy 102.302049 113.928607) + (xy 102.302052 113.928608) (xy 102.302055 113.928611) (xy 102.500779 114.043344) (xy 102.500784 114.043346) + (xy 102.50079 114.043349) (xy 102.533105 114.056734) (xy 102.71278 114.131158) (xy 102.934429 114.190548) + (xy 103.161933 114.2205) (xy 103.16194 114.2205) (xy 103.391394 114.2205) (xy 103.391401 114.2205) + (xy 103.618905 114.190548) (xy 103.840554 114.131158) (xy 104.052555 114.043344) (xy 104.251279 113.928611) + (xy 104.433328 113.788919) (xy 104.433332 113.788914) (xy 104.433337 113.788911) (xy 104.595578 113.62667) + (xy 104.595581 113.626665) (xy 104.595586 113.626661) (xy 104.735278 113.444612) (xy 104.850011 113.245888) + (xy 104.937825 113.033887) (xy 104.997215 112.812238) (xy 105.027167 112.584734) (xy 105.027167 112.355266) + (xy 104.997215 112.127762) (xy 104.937825 111.906113) (xy 104.887857 111.78548) (xy 104.850016 111.694123) + (xy 104.850013 111.694117) (xy 104.850011 111.694112) (xy 104.735278 111.495388) (xy 104.735275 111.495385) + (xy 104.735274 111.495382) (xy 104.595585 111.313338) (xy 104.595578 111.31333) (xy 104.433337 111.151089) + (xy 104.433328 111.151081) (xy 104.251284 111.011392) (xy 104.052557 110.896657) (xy 104.052543 110.89665) + (xy 103.840554 110.808842) (xy 103.618905 110.749452) (xy 103.580882 110.744446) (xy 103.391408 110.7195) + (xy 103.391401 110.7195) (xy 103.161933 110.7195) (xy 103.161925 110.7195) (xy 102.945382 110.748009) + (xy 102.934429 110.749452) (xy 102.859608 110.7695) (xy 102.712779 110.808842) (xy 102.50079 110.89665) + (xy 102.500776 110.896657) (xy 102.302049 111.011392) (xy 102.120005 111.151081) (xy 101.957748 111.313338) + (xy 101.818059 111.495382) (xy 101.703324 111.694109) (xy 101.703317 111.694123) (xy 101.615509 111.906112) + (xy 101.55612 112.127759) (xy 101.556118 112.12777) (xy 101.526167 112.355258) (xy 98.687249 112.355258) + (xy 98.682349 112.318041) (xy 98.663881 112.177762) (xy 98.604491 111.956113) (xy 98.516677 111.744112) + (xy 98.401944 111.545388) (xy 98.401941 111.545385) (xy 98.40194 111.545382) (xy 98.295517 111.40669) + (xy 98.262252 111.363339) (xy 98.262251 111.363338) (xy 98.262244 111.36333) (xy 98.100003 111.201089) + (xy 98.099994 111.201081) (xy 97.91795 111.061392) (xy 97.719223 110.946657) (xy 97.719209 110.94665) + (xy 97.50722 110.858842) (xy 97.478401 110.85112) (xy 97.285571 110.799452) (xy 97.247548 110.794446) + (xy 97.058074 110.7695) (xy 97.058067 110.7695) (xy 96.828599 110.7695) (xy 96.828591 110.7695) + (xy 96.612048 110.798009) (xy 96.601095 110.799452) (xy 96.566051 110.808842) (xy 96.379445 110.858842) + (xy 96.167456 110.94665) (xy 96.167442 110.946657) (xy 95.968715 111.061392) (xy 95.786671 111.201081) + (xy 95.624414 111.363338) (xy 95.484725 111.545382) (xy 95.36999 111.744109) (xy 95.369983 111.744123) + (xy 95.282175 111.956112) (xy 95.222786 112.177759) (xy 95.222784 112.17777) (xy 95.192833 112.405258) + (xy 91.790185 112.405258) (xy 91.88003 112.368043) (xy 91.966633 112.318043) (xy 92.008589 112.29382) + (xy 92.107136 112.236924) (xy 92.119712 112.227274) (xy 92.315184 112.077282) (xy 92.315188 112.077277) + (xy 92.315193 112.077274) (xy 92.500607 111.89186) (xy 92.50061 111.891855) (xy 92.500615 111.891851) + (xy 92.660257 111.683803) (xy 92.791376 111.456697) (xy 92.891731 111.214419) (xy 92.959603 110.961116) + (xy 92.993833 110.70112) (xy 92.993833 110.43888) (xy 92.987249 110.388872) (xy 107.326167 110.388872) + (xy 107.326167 110.651127) (xy 107.345696 110.799452) (xy 107.360397 110.911116) (xy 107.428269 111.164418) + (xy 107.428272 111.164428) (xy 107.52862 111.40669) (xy 107.528625 111.4067) (xy 107.659742 111.633803) + (xy 107.819385 111.841851) (xy 107.819393 111.84186) (xy 108.004807 112.027274) (xy 108.004815 112.027281) + (xy 108.212863 112.186924) (xy 108.439966 112.318041) (xy 108.439976 112.318046) (xy 108.650559 112.405272) + (xy 108.682248 112.418398) (xy 108.935551 112.48627) (xy 109.195547 112.5205) (xy 109.195554 112.5205) + (xy 109.45778 112.5205) (xy 109.457787 112.5205) (xy 109.717783 112.48627) (xy 109.971086 112.418398) + (xy 110.123519 112.355258) (xy 113.526167 112.355258) (xy 113.526167 112.584741) (xy 113.544041 112.720499) + (xy 113.556119 112.812238) (xy 113.569517 112.86224) (xy 113.615509 113.033887) (xy 113.703317 113.245876) + (xy 113.703324 113.24589) (xy 113.740688 113.310606) (xy 113.80977 113.430261) (xy 113.818059 113.444617) + (xy 113.957748 113.626661) (xy 113.957756 113.62667) (xy 114.119997 113.788911) (xy 114.120005 113.788918) + (xy 114.302049 113.928607) (xy 114.302052 113.928608) (xy 114.302055 113.928611) (xy 114.500779 114.043344) + (xy 114.500784 114.043346) (xy 114.50079 114.043349) (xy 114.533105 114.056734) (xy 114.71278 114.131158) + (xy 114.934429 114.190548) (xy 115.161933 114.2205) (xy 115.16194 114.2205) (xy 115.391394 114.2205) + (xy 115.391401 114.2205) (xy 115.618905 114.190548) (xy 115.840554 114.131158) (xy 116.052555 114.043344) + (xy 116.251279 113.928611) (xy 116.433328 113.788919) (xy 116.433332 113.788914) (xy 116.433337 113.788911) + (xy 116.595578 113.62667) (xy 116.595581 113.626665) (xy 116.595586 113.626661) (xy 116.735278 113.444612) + (xy 116.850011 113.245888) (xy 116.937825 113.033887) (xy 116.997215 112.812238) (xy 117.027167 112.584734) + (xy 117.027167 112.555258) (xy 119.8595 112.555258) (xy 119.8595 112.784741) (xy 119.884446 112.974215) + (xy 119.889452 113.012238) (xy 119.925097 113.145269) (xy 119.948842 113.233887) (xy 120.03665 113.445876) + (xy 120.036657 113.44589) (xy 120.062474 113.490606) (xy 120.113052 113.578211) (xy 120.151392 113.644617) + (xy 120.291081 113.826661) (xy 120.291089 113.82667) (xy 120.45333 113.988911) (xy 120.453338 113.988918) + (xy 120.635382 114.128607) (xy 120.635385 114.128608) (xy 120.635388 114.128611) (xy 120.834112 114.243344) + (xy 120.834117 114.243346) (xy 120.834123 114.243349) (xy 120.899672 114.2705) (xy 121.046113 114.331158) + (xy 121.267762 114.390548) (xy 121.495266 114.4205) (xy 121.495273 114.4205) (xy 121.724727 114.4205) + (xy 121.724734 114.4205) (xy 121.952238 114.390548) (xy 122.173887 114.331158) (xy 122.385888 114.243344) + (xy 122.584612 114.128611) (xy 122.766661 113.988919) (xy 122.766665 113.988914) (xy 122.76667 113.988911) + (xy 122.928911 113.82667) (xy 122.928914 113.826665) (xy 122.928919 113.826661) (xy 123.068611 113.644612) + (xy 123.183344 113.445888) (xy 123.271158 113.233887) (xy 123.330548 113.012238) (xy 123.3605 112.784734) + (xy 123.3605 112.555266) (xy 123.330548 112.327762) (xy 123.271158 112.106113) (xy 123.183344 111.894112) + (xy 123.068611 111.695388) (xy 123.068608 111.695385) (xy 123.068607 111.695382) (xy 122.928918 111.513338) + (xy 122.928911 111.51333) (xy 122.76667 111.351089) (xy 122.766661 111.351081) (xy 122.584617 111.211392) + (xy 122.38589 111.096657) (xy 122.385876 111.09665) (xy 122.173887 111.008842) (xy 122.167815 111.007215) + (xy 121.952238 110.949452) (xy 121.914215 110.944446) (xy 121.724741 110.9195) (xy 121.724734 110.9195) + (xy 121.495266 110.9195) (xy 121.495258 110.9195) (xy 121.278715 110.948009) (xy 121.267762 110.949452) + (xy 121.224231 110.961116) (xy 121.046112 111.008842) (xy 120.834123 111.09665) (xy 120.834109 111.096657) + (xy 120.635382 111.211392) (xy 120.453338 111.351081) (xy 120.291081 111.513338) (xy 120.151392 111.695382) + (xy 120.036657 111.894109) (xy 120.03665 111.894123) (xy 119.960784 112.077282) (xy 119.948842 112.106113) + (xy 119.892056 112.318046) (xy 119.889453 112.327759) (xy 119.889451 112.32777) (xy 119.8595 112.555258) + (xy 117.027167 112.555258) (xy 117.027167 112.355266) (xy 116.997215 112.127762) (xy 116.937825 111.906113) + (xy 116.887857 111.78548) (xy 116.850016 111.694123) (xy 116.850013 111.694117) (xy 116.850011 111.694112) + (xy 116.735278 111.495388) (xy 116.735275 111.495385) (xy 116.735274 111.495382) (xy 116.595585 111.313338) + (xy 116.595578 111.31333) (xy 116.433337 111.151089) (xy 116.433328 111.151081) (xy 116.251284 111.011392) + (xy 116.052557 110.896657) (xy 116.052543 110.89665) (xy 115.840554 110.808842) (xy 115.618905 110.749452) + (xy 115.580882 110.744446) (xy 115.391408 110.7195) (xy 115.391401 110.7195) (xy 115.161933 110.7195) + (xy 115.161925 110.7195) (xy 114.945382 110.748009) (xy 114.934429 110.749452) (xy 114.859608 110.7695) + (xy 114.712779 110.808842) (xy 114.50079 110.89665) (xy 114.500776 110.896657) (xy 114.302049 111.011392) + (xy 114.120005 111.151081) (xy 113.957748 111.313338) (xy 113.818059 111.495382) (xy 113.703324 111.694109) + (xy 113.703317 111.694123) (xy 113.615509 111.906112) (xy 113.55612 112.127759) (xy 113.556118 112.12777) + (xy 113.526167 112.355258) (xy 110.123519 112.355258) (xy 110.213364 112.318043) (xy 110.370582 112.227274) + (xy 110.44047 112.186924) (xy 110.51756 112.12777) (xy 110.648518 112.027282) (xy 110.648522 112.027277) + (xy 110.648527 112.027274) (xy 110.833941 111.84186) (xy 110.833944 111.841855) (xy 110.833949 111.841851) + (xy 110.993591 111.633803) (xy 111.12471 111.406697) (xy 111.225065 111.164419) (xy 111.292937 110.911116) + (xy 111.327167 110.65112) (xy 111.327167 110.588872) (xy 125.6595 110.588872) (xy 125.6595 110.851127) + (xy 125.676658 110.981446) (xy 125.69373 111.111116) (xy 125.761313 111.363339) (xy 125.761602 111.364418) + (xy 125.761605 111.364428) (xy 125.861953 111.60669) (xy 125.861958 111.6067) (xy 125.993075 111.833803) + (xy 126.152718 112.041851) (xy 126.152726 112.04186) (xy 126.33814 112.227274) (xy 126.338148 112.227281) + (xy 126.546196 112.386924) (xy 126.773299 112.518041) (xy 126.773309 112.518046) (xy 127.015571 112.618394) + (xy 127.015581 112.618398) (xy 127.268884 112.68627) (xy 127.52888 112.7205) (xy 127.528887 112.7205) + (xy 127.791113 112.7205) (xy 127.79112 112.7205) (xy 128.051116 112.68627) (xy 128.304419 112.618398) + (xy 128.456852 112.555258) (xy 131.8595 112.555258) (xy 131.8595 112.784741) (xy 131.884446 112.974215) + (xy 131.889452 113.012238) (xy 131.925097 113.145269) (xy 131.948842 113.233887) (xy 132.03665 113.445876) + (xy 132.036657 113.44589) (xy 132.062474 113.490606) (xy 132.113052 113.578211) (xy 132.151392 113.644617) + (xy 132.291081 113.826661) (xy 132.291089 113.82667) (xy 132.45333 113.988911) (xy 132.453338 113.988918) + (xy 132.635382 114.128607) (xy 132.635385 114.128608) (xy 132.635388 114.128611) (xy 132.834112 114.243344) + (xy 132.834117 114.243346) (xy 132.834123 114.243349) (xy 132.899672 114.2705) (xy 133.046113 114.331158) + (xy 133.267762 114.390548) (xy 133.495266 114.4205) (xy 133.495273 114.4205) (xy 133.724727 114.4205) + (xy 133.724734 114.4205) (xy 133.952238 114.390548) (xy 134.173887 114.331158) (xy 134.385888 114.243344) + (xy 134.584612 114.128611) (xy 134.766661 113.988919) (xy 134.766665 113.988914) (xy 134.76667 113.988911) + (xy 134.928911 113.82667) (xy 134.928914 113.826665) (xy 134.928919 113.826661) (xy 135.068611 113.644612) + (xy 135.183344 113.445888) (xy 135.271158 113.233887) (xy 135.330548 113.012238) (xy 135.3605 112.784734) + (xy 135.3605 112.555266) (xy 135.330548 112.327762) (xy 135.271158 112.106113) (xy 135.183344 111.894112) + (xy 135.068611 111.695388) (xy 135.068608 111.695385) (xy 135.068607 111.695382) (xy 134.928918 111.513338) + (xy 134.928911 111.51333) (xy 134.76667 111.351089) (xy 134.766661 111.351081) (xy 134.584617 111.211392) + (xy 134.38589 111.096657) (xy 134.385876 111.09665) (xy 134.173887 111.008842) (xy 134.167815 111.007215) + (xy 133.952238 110.949452) (xy 133.914215 110.944446) (xy 133.724741 110.9195) (xy 133.724734 110.9195) + (xy 133.495266 110.9195) (xy 133.495258 110.9195) (xy 133.278715 110.948009) (xy 133.267762 110.949452) + (xy 133.224231 110.961116) (xy 133.046112 111.008842) (xy 132.834123 111.09665) (xy 132.834109 111.096657) + (xy 132.635382 111.211392) (xy 132.453338 111.351081) (xy 132.291081 111.513338) (xy 132.151392 111.695382) + (xy 132.036657 111.894109) (xy 132.03665 111.894123) (xy 131.960784 112.077282) (xy 131.948842 112.106113) + (xy 131.892056 112.318046) (xy 131.889453 112.327759) (xy 131.889451 112.32777) (xy 131.8595 112.555258) + (xy 128.456852 112.555258) (xy 128.502696 112.536269) (xy 128.54669 112.518046) (xy 128.546691 112.518045) + (xy 128.546697 112.518043) (xy 128.742048 112.405258) (xy 128.773803 112.386924) (xy 128.798409 112.368043) + (xy 128.981851 112.227282) (xy 128.981855 112.227277) (xy 128.98186 112.227274) (xy 129.167274 112.04186) + (xy 129.167277 112.041855) (xy 129.167282 112.041851) (xy 129.326924 111.833803) (xy 129.458043 111.606697) + (xy 129.558398 111.364419) (xy 129.62627 111.111116) (xy 129.6605 110.85112) (xy 129.6605 110.58888) + (xy 129.62627 110.328884) (xy 129.558398 110.075581) (xy 129.535379 110.020008) (xy 129.458046 109.833309) + (xy 129.458041 109.833299) (xy 129.326924 109.606196) (xy 129.167281 109.398148) (xy 129.167274 109.39814) + (xy 128.98186 109.212726) (xy 128.981851 109.212718) (xy 128.773803 109.053075) (xy 128.5467 108.921958) + (xy 128.54669 108.921953) (xy 128.304428 108.821605) (xy 128.304421 108.821603) (xy 128.304419 108.821602) + (xy 128.051116 108.75373) (xy 127.993339 108.746123) (xy 127.791127 108.7195) (xy 127.79112 108.7195) + (xy 127.52888 108.7195) (xy 127.528872 108.7195) (xy 127.297772 108.749926) (xy 127.268884 108.75373) + (xy 127.038059 108.815579) (xy 127.015581 108.821602) (xy 127.015571 108.821605) (xy 126.773309 108.921953) + (xy 126.773299 108.921958) (xy 126.546196 109.053075) (xy 126.338148 109.212718) (xy 126.152718 109.398148) + (xy 125.993075 109.606196) (xy 125.861958 109.833299) (xy 125.861953 109.833309) (xy 125.761605 110.075571) + (xy 125.761602 110.075581) (xy 125.700595 110.303266) (xy 125.69373 110.328885) (xy 125.6595 110.588872) + (xy 111.327167 110.588872) (xy 111.327167 110.38888) (xy 111.292937 110.128884) (xy 111.225065 109.875581) + (xy 111.225061 109.875571) (xy 111.124713 109.633309) (xy 111.124708 109.633299) (xy 110.993591 109.406196) + (xy 110.833948 109.198148) (xy 110.833941 109.19814) (xy 110.648527 109.012726) (xy 110.648518 109.012718) + (xy 110.44047 108.853075) (xy 110.213367 108.721958) (xy 110.213357 108.721953) (xy 109.971095 108.621605) + (xy 109.971088 108.621603) (xy 109.971086 108.621602) (xy 109.717783 108.55373) (xy 109.660006 108.546123) + (xy 109.457794 108.5195) (xy 109.457787 108.5195) (xy 109.195547 108.5195) (xy 109.195539 108.5195) + (xy 108.964439 108.549926) (xy 108.935551 108.55373) (xy 108.748948 108.60373) (xy 108.682248 108.621602) + (xy 108.682238 108.621605) (xy 108.439976 108.721953) (xy 108.439966 108.721958) (xy 108.212863 108.853075) + (xy 108.004815 109.012718) (xy 107.819385 109.198148) (xy 107.659742 109.406196) (xy 107.528625 109.633299) + (xy 107.52862 109.633309) (xy 107.428272 109.875571) (xy 107.428269 109.875581) (xy 107.362029 110.122796) + (xy 107.360397 110.128885) (xy 107.326167 110.388872) (xy 92.987249 110.388872) (xy 92.959603 110.178884) + (xy 92.891731 109.925581) (xy 92.891727 109.925571) (xy 92.791379 109.683309) (xy 92.791374 109.683299) + (xy 92.660257 109.456196) (xy 92.500614 109.248148) (xy 92.500607 109.24814) (xy 92.315193 109.062726) + (xy 92.315184 109.062718) (xy 92.107136 108.903075) (xy 91.880033 108.771958) (xy 91.880023 108.771953) + (xy 91.637761 108.671605) (xy 91.637754 108.671603) (xy 91.637752 108.671602) (xy 91.384449 108.60373) + (xy 91.326672 108.596123) (xy 91.12446 108.5695) (xy 91.124453 108.5695) (xy 90.862213 108.5695) + (xy 90.862205 108.5695) (xy 90.631105 108.599926) (xy 90.602217 108.60373) (xy 90.348914 108.671602) + (xy 90.348904 108.671605) (xy 90.106642 108.771953) (xy 90.106632 108.771958) (xy 89.879529 108.903075) + (xy 89.671481 109.062718) (xy 89.486051 109.248148) (xy 89.326408 109.456196) (xy 89.195291 109.683299) + (xy 89.195286 109.683309) (xy 89.094938 109.925571) (xy 89.094935 109.925581) (xy 89.040461 110.128884) + (xy 89.027063 110.178885) (xy 88.992833 110.438872) (xy 74.6605 110.438872) (xy 74.6605 110.38888) + (xy 74.62627 110.128884) (xy 74.558398 109.875581) (xy 74.558394 109.875571) (xy 74.458046 109.633309) + (xy 74.458041 109.633299) (xy 74.326924 109.406196) (xy 74.167281 109.198148) (xy 74.167274 109.19814) + (xy 73.98186 109.012726) (xy 73.981851 109.012718) (xy 73.773803 108.853075) (xy 73.5467 108.721958) + (xy 73.54669 108.721953) (xy 73.304428 108.621605) (xy 73.304421 108.621603) (xy 73.304419 108.621602) + (xy 73.051116 108.55373) (xy 72.993339 108.546123) (xy 72.791127 108.5195) (xy 72.79112 108.5195) + (xy 72.52888 108.5195) (xy 72.528872 108.5195) (xy 72.297772 108.549926) (xy 72.268884 108.55373) + (xy 72.082281 108.60373) (xy 72.015581 108.621602) (xy 72.015571 108.621605) (xy 71.773309 108.721953) + (xy 71.773299 108.721958) (xy 71.546196 108.853075) (xy 71.338148 109.012718) (xy 71.152718 109.198148) + (xy 70.993075 109.406196) (xy 70.861958 109.633299) (xy 70.861953 109.633309) (xy 70.761605 109.875571) + (xy 70.761602 109.875581) (xy 70.695362 110.122796) (xy 70.69373 110.128885) (xy 70.6595 110.388872) + (xy 58.4505 110.388872) (xy 58.4505 98.170153) (xy 78.0595 98.170153) (xy 78.0595 98.327846) (xy 78.090261 98.482489) + (xy 78.090264 98.482501) (xy 78.150602 98.628172) (xy 78.150609 98.628185) (xy 78.23821 98.759288) + (xy 78.238213 98.759292) (xy 78.349707 98.870786) (xy 78.349711 98.870789) (xy 78.480814 98.95839) + (xy 78.480827 98.958397) (xy 78.626498 99.018735) (xy 78.626503 99.018737) (xy 78.781153 99.049499) + (xy 78.781156 99.0495) (xy 78.781158 99.0495) (xy 78.938844 99.0495) (xy 78.938845 99.049499) (xy 79.093497 99.018737) + (xy 79.239179 98.958394) (xy 79.370289 98.870789) (xy 79.481789 98.759289) (xy 79.569394 98.628179) + (xy 79.629737 98.482497) (xy 79.6605 98.327842) (xy 79.6605 98.170158) (xy 79.6605 98.170155) (xy 79.660499 98.170153) + (xy 79.655991 98.14749) (xy 79.629737 98.015503) (xy 79.584076 97.905266) (xy 79.569397 97.869827) + (xy 79.56939 97.869814) (xy 79.481789 97.738711) (xy 79.481786 97.738707) (xy 79.370292 97.627213) + (xy 79.370288 97.62721) (xy 79.239185 97.539609) (xy 79.239172 97.539602) (xy 79.093501 97.479264) + (xy 79.093489 97.479261) (xy 78.938845 97.4485) (xy 78.938842 97.4485) (xy 78.781158 97.4485) (xy 78.781155 97.4485) + (xy 78.62651 97.479261) (xy 78.626498 97.479264) (xy 78.480827 97.539602) (xy 78.480814 97.539609) + (xy 78.349711 97.62721) (xy 78.349707 97.627213) (xy 78.238213 97.738707) (xy 78.23821 97.738711) + (xy 78.150609 97.869814) (xy 78.150602 97.869827) (xy 78.090264 98.015498) (xy 78.090261 98.01551) + (xy 78.0595 98.170153) (xy 58.4505 98.170153) (xy 58.4505 86.088872) (xy 70.6095 86.088872) (xy 70.6095 86.351127) + (xy 70.62826 86.493614) (xy 70.64373 86.611116) (xy 70.680121 86.746928) (xy 70.711602 86.864418) + (xy 70.711605 86.864428) (xy 70.811953 87.10669) (xy 70.811958 87.1067) (xy 70.943075 87.333803) + (xy 71.102718 87.541851) (xy 71.102726 87.54186) (xy 71.28814 87.727274) (xy 71.288148 87.727281) + (xy 71.496196 87.886924) (xy 71.723299 88.018041) (xy 71.723309 88.018046) (xy 71.928407 88.103) + (xy 71.965581 88.118398) (xy 72.218884 88.18627) (xy 72.47888 88.2205) (xy 72.478887 88.2205) (xy 72.741113 88.2205) + (xy 72.74112 88.2205) (xy 73.001116 88.18627) (xy 73.254419 88.118398) (xy 73.432368 88.044689) + (xy 73.49669 88.018046) (xy 73.496691 88.018045) (xy 73.496697 88.018043) (xy 73.723803 87.886924) + (xy 73.931851 87.727282) (xy 73.931855 87.727277) (xy 73.93186 87.727274) (xy 74.117274 87.54186) + (xy 74.117277 87.541855) (xy 74.117282 87.541851) (xy 74.276924 87.333803) (xy 74.408043 87.106697) + (xy 74.508398 86.864419) (xy 74.57627 86.611116) (xy 74.6105 86.35112) (xy 74.6105 86.08888) (xy 74.609147 86.078607) + (xy 74.597554 85.990548) (xy 74.57627 85.828884) (xy 74.508398 85.575581) (xy 74.496005 85.545661) + (xy 74.408046 85.333309) (xy 74.408041 85.333299) (xy 74.276924 85.106196) (xy 74.121208 84.903266) + (xy 74.117282 84.898149) (xy 74.117281 84.898148) (xy 74.117274 84.89814) (xy 73.93186 84.712726) + (xy 73.931851 84.712718) (xy 73.723803 84.553075) (xy 73.4967 84.421958) (xy 73.49669 84.421953) + (xy 73.254428 84.321605) (xy 73.254421 84.321603) (xy 73.254419 84.321602) (xy 73.001116 84.25373) + (xy 73.001115 84.253729) (xy 73.001112 84.253729) (xy 72.741127 84.2195) (xy 72.74112 84.2195) (xy 72.47888 84.2195) + (xy 72.478872 84.2195) (xy 72.247772 84.249926) (xy 72.218884 84.25373) (xy 72.029564 84.304458) + (xy 71.965581 84.321602) (xy 71.965571 84.321605) (xy 71.723309 84.421953) (xy 71.723299 84.421958) + (xy 71.496196 84.553075) (xy 71.288148 84.712718) (xy 71.102718 84.898148) (xy 70.943075 85.106196) + (xy 70.811958 85.333299) (xy 70.811953 85.333309) (xy 70.711605 85.575571) (xy 70.711602 85.575581) + (xy 70.645977 85.8205) (xy 70.64373 85.828885) (xy 70.6095 86.088872) (xy 58.4505 86.088872) (xy 58.4505 84.155258) + (xy 64.9095 84.155258) (xy 64.9095 84.384741) (xy 64.92946 84.536343) (xy 64.939452 84.612238) (xy 64.972276 84.734741) + (xy 64.998842 84.833887) (xy 65.08665 85.045876) (xy 65.086657 85.04589) (xy 65.201392 85.244617) + (xy 65.341081 85.426661) (xy 65.341089 85.42667) (xy 65.50333 85.588911) (xy 65.503338 85.588918) + (xy 65.685382 85.728607) (xy 65.685385 85.728608) (xy 65.685388 85.728611) (xy 65.884112 85.843344) + (xy 65.884117 85.843346) (xy 65.884123 85.843349) (xy 65.97548 85.88119) (xy 66.096113 85.931158) + (xy 66.317762 85.990548) (xy 66.545266 86.0205) (xy 66.545273 86.0205) (xy 66.774727 86.0205) (xy 66.774734 86.0205) + (xy 67.002238 85.990548) (xy 67.223887 85.931158) (xy 67.435888 85.843344) (xy 67.634612 85.728611) + (xy 67.816661 85.588919) (xy 67.816665 85.588914) (xy 67.81667 85.588911) (xy 67.978911 85.42667) + (xy 67.978914 85.426665) (xy 67.978919 85.426661) (xy 68.118611 85.244612) (xy 68.233344 85.045888) + (xy 68.321158 84.833887) (xy 68.380548 84.612238) (xy 68.4105 84.384734) (xy 68.4105 84.155266) + (xy 68.410499 84.155258) (xy 76.9095 84.155258) (xy 76.9095 84.384741) (xy 76.92946 84.536343) (xy 76.939452 84.612238) + (xy 76.972276 84.734741) (xy 76.998842 84.833887) (xy 77.08665 85.045876) (xy 77.086657 85.04589) + (xy 77.201392 85.244617) (xy 77.341081 85.426661) (xy 77.341089 85.42667) (xy 77.50333 85.588911) + (xy 77.503338 85.588918) (xy 77.685382 85.728607) (xy 77.685385 85.728608) (xy 77.685388 85.728611) + (xy 77.884112 85.843344) (xy 77.884117 85.843346) (xy 77.884123 85.843349) (xy 77.97548 85.88119) + (xy 78.096113 85.931158) (xy 78.317762 85.990548) (xy 78.545266 86.0205) (xy 78.545273 86.0205) + (xy 78.774727 86.0205) (xy 78.774734 86.0205) (xy 79.002238 85.990548) (xy 79.223887 85.931158) + (xy 79.325974 85.888872) (xy 88.942833 85.888872) (xy 88.942833 86.151127) (xy 88.961673 86.294219) + (xy 88.977063 86.411116) (xy 88.999169 86.493616) (xy 89.044935 86.664418) (xy 89.044938 86.664428) + (xy 89.145286 86.90669) (xy 89.145291 86.9067) (xy 89.276408 87.133803) (xy 89.436051 87.341851) + (xy 89.436059 87.34186) (xy 89.621473 87.527274) (xy 89.621481 87.527281) (xy 89.829529 87.686924) + (xy 90.056632 87.818041) (xy 90.056642 87.818046) (xy 90.298904 87.918394) (xy 90.298914 87.918398) + (xy 90.552217 87.98627) (xy 90.812213 88.0205) (xy 90.81222 88.0205) (xy 91.074446 88.0205) (xy 91.074453 88.0205) + (xy 91.334449 87.98627) (xy 91.587752 87.918398) (xy 91.83003 87.818043) (xy 92.057136 87.686924) + (xy 92.265184 87.527282) (xy 92.265188 87.527277) (xy 92.265193 87.527274) (xy 92.450607 87.34186) + (xy 92.45061 87.341855) (xy 92.450615 87.341851) (xy 92.610257 87.133803) (xy 92.741376 86.906697) + (xy 92.841731 86.664419) (xy 92.909603 86.411116) (xy 92.943833 86.15112) (xy 92.943833 85.971372) + (xy 107.276167 85.971372) (xy 107.276167 86.233627) (xy 107.291637 86.351127) (xy 107.310397 86.493616) + (xy 107.365999 86.701127) (xy 107.378269 86.746918) (xy 107.378272 86.746928) (xy 107.47862 86.98919) + (xy 107.478625 86.9892) (xy 107.609742 87.216303) (xy 107.769385 87.424351) (xy 107.769393 87.42436) + (xy 107.954807 87.609774) (xy 107.954815 87.609781) (xy 108.162863 87.769424) (xy 108.389966 87.900541) + (xy 108.389976 87.900546) (xy 108.599878 87.98749) (xy 108.632248 88.000898) (xy 108.885551 88.06877) + (xy 109.145547 88.103) (xy 109.145554 88.103) (xy 109.40778 88.103) (xy 109.407787 88.103) (xy 109.667783 88.06877) + (xy 109.921086 88.000898) (xy 110.163364 87.900543) (xy 110.39047 87.769424) (xy 110.598518 87.609782) + (xy 110.598522 87.609777) (xy 110.598527 87.609774) (xy 110.783941 87.42436) (xy 110.783944 87.424355) + (xy 110.783949 87.424351) (xy 110.943591 87.216303) (xy 111.07471 86.989197) (xy 111.175065 86.746919) + (xy 111.242937 86.493616) (xy 111.250144 86.438872) (xy 125.6095 86.438872) (xy 125.6095 86.701127) + (xy 125.636123 86.903339) (xy 125.64373 86.961116) (xy 125.682739 87.1067) (xy 125.711602 87.214418) + (xy 125.711605 87.214428) (xy 125.811953 87.45669) (xy 125.811958 87.4567) (xy 125.943075 87.683803) + (xy 126.102718 87.891851) (xy 126.102726 87.89186) (xy 126.28814 88.077274) (xy 126.288148 88.077281) + (xy 126.496196 88.236924) (xy 126.723299 88.368041) (xy 126.723309 88.368046) (xy 126.965571 88.468394) + (xy 126.965581 88.468398) (xy 127.218884 88.53627) (xy 127.47888 88.5705) (xy 127.478887 88.5705) + (xy 127.741113 88.5705) (xy 127.74112 88.5705) (xy 128.001116 88.53627) (xy 128.254419 88.468398) + (xy 128.496697 88.368043) (xy 128.723803 88.236924) (xy 128.931851 88.077282) (xy 128.931855 88.077277) + (xy 128.93186 88.077274) (xy 129.117274 87.89186) (xy 129.117277 87.891855) (xy 129.117282 87.891851) + (xy 129.276924 87.683803) (xy 129.408043 87.456697) (xy 129.508398 87.214419) (xy 129.57627 86.961116) + (xy 129.6105 86.70112) (xy 129.6105 86.43888) (xy 129.57627 86.178884) (xy 129.508398 85.925581) + (xy 129.499044 85.902999) (xy 129.408046 85.683309) (xy 129.408041 85.683299) (xy 129.276924 85.456196) + (xy 129.117281 85.248148) (xy 129.117274 85.24814) (xy 128.93186 85.062726) (xy 128.931851 85.062718) + (xy 128.723803 84.903075) (xy 128.4967 84.771958) (xy 128.49669 84.771953) (xy 128.254428 84.671605) + (xy 128.254421 84.671603) (xy 128.254419 84.671602) (xy 128.001116 84.60373) (xy 128.001115 84.603729) + (xy 128.001112 84.603729) (xy 127.741127 84.5695) (xy 127.74112 84.5695) (xy 127.47888 84.5695) + (xy 127.478872 84.5695) (xy 127.247772 84.599926) (xy 127.218884 84.60373) (xy 126.965581 84.671602) + (xy 126.965571 84.671605) (xy 126.723309 84.771953) (xy 126.723299 84.771958) (xy 126.496196 84.903075) + (xy 126.288148 85.062718) (xy 126.102718 85.248148) (xy 125.943075 85.456196) (xy 125.811958 85.683299) + (xy 125.811953 85.683309) (xy 125.711605 85.925571) (xy 125.711602 85.925581) (xy 125.651168 86.151127) + (xy 125.64373 86.178885) (xy 125.6095 86.438872) (xy 111.250144 86.438872) (xy 111.277167 86.23362) + (xy 111.277167 85.97138) (xy 111.242937 85.711384) (xy 111.175065 85.458081) (xy 111.162054 85.42667) + (xy 111.074713 85.215809) (xy 111.074708 85.215799) (xy 110.943591 84.988696) (xy 110.783948 84.780648) + (xy 110.783941 84.78064) (xy 110.598527 84.595226) (xy 110.598518 84.595218) (xy 110.39047 84.435575) + (xy 110.163367 84.304458) (xy 110.163357 84.304453) (xy 109.921095 84.204105) (xy 109.921088 84.204103) + (xy 109.921086 84.204102) (xy 109.667783 84.13623) (xy 109.667782 84.136229) (xy 109.667779 84.136229) + (xy 109.407794 84.102) (xy 109.407787 84.102) (xy 109.145547 84.102) (xy 109.145539 84.102) (xy 108.914439 84.132426) + (xy 108.885551 84.13623) (xy 108.704557 84.184727) (xy 108.632248 84.204102) (xy 108.632238 84.204105) + (xy 108.389976 84.304453) (xy 108.389966 84.304458) (xy 108.162863 84.435575) (xy 107.954815 84.595218) + (xy 107.769385 84.780648) (xy 107.609742 84.988696) (xy 107.478625 85.215799) (xy 107.47862 85.215809) + (xy 107.378272 85.458071) (xy 107.378269 85.458081) (xy 107.310397 85.711384) (xy 107.308129 85.728611) + (xy 107.276167 85.971372) (xy 92.943833 85.971372) (xy 92.943833 85.88888) (xy 92.909603 85.628884) + (xy 92.841731 85.375581) (xy 92.841727 85.375571) (xy 92.741379 85.133309) (xy 92.741374 85.133299) + (xy 92.610257 84.906196) (xy 92.471817 84.72578) (xy 92.450615 84.698149) (xy 92.450614 84.698148) + (xy 92.450607 84.69814) (xy 92.265193 84.512726) (xy 92.265184 84.512718) (xy 92.057136 84.353075) + (xy 91.830033 84.221958) (xy 91.830023 84.221953) (xy 91.587761 84.121605) (xy 91.587754 84.121603) + (xy 91.587752 84.121602) (xy 91.334449 84.05373) (xy 91.334448 84.053729) (xy 91.334445 84.053729) + (xy 91.07446 84.0195) (xy 91.074453 84.0195) (xy 90.812213 84.0195) (xy 90.812205 84.0195) (xy 90.581105 84.049926) + (xy 90.552217 84.05373) (xy 90.37207 84.102) (xy 90.298914 84.121602) (xy 90.298904 84.121605) (xy 90.056642 84.221953) + (xy 90.056632 84.221958) (xy 89.829529 84.353075) (xy 89.621481 84.512718) (xy 89.436051 84.698148) + (xy 89.276408 84.906196) (xy 89.145291 85.133299) (xy 89.145286 85.133309) (xy 89.044938 85.375571) + (xy 89.044935 85.375581) (xy 88.979314 85.620485) (xy 88.977063 85.628885) (xy 88.942833 85.888872) + (xy 79.325974 85.888872) (xy 79.435888 85.843344) (xy 79.634612 85.728611) (xy 79.816661 85.588919) + (xy 79.816665 85.588914) (xy 79.81667 85.588911) (xy 79.978911 85.42667) (xy 79.978914 85.426665) + (xy 79.978919 85.426661) (xy 80.118611 85.244612) (xy 80.233344 85.045888) (xy 80.321158 84.833887) + (xy 80.380548 84.612238) (xy 80.4105 84.384734) (xy 80.4105 84.155266) (xy 80.384168 83.955258) + (xy 83.242833 83.955258) (xy 83.242833 84.184741) (xy 83.263221 84.339596) (xy 83.272785 84.412238) + (xy 83.310522 84.553075) (xy 83.332175 84.633887) (xy 83.419983 84.845876) (xy 83.41999 84.84589) + (xy 83.534725 85.044617) (xy 83.674414 85.226661) (xy 83.674422 85.22667) (xy 83.836663 85.388911) + (xy 83.836671 85.388918) (xy 83.836672 85.388919) (xy 83.845754 85.395888) (xy 84.018715 85.528607) + (xy 84.018718 85.528608) (xy 84.018721 85.528611) (xy 84.217445 85.643344) (xy 84.21745 85.643346) + (xy 84.217456 85.643349) (xy 84.308813 85.68119) (xy 84.429446 85.731158) (xy 84.651095 85.790548) + (xy 84.878599 85.8205) (xy 84.878606 85.8205) (xy 85.10806 85.8205) (xy 85.108067 85.8205) (xy 85.335571 85.790548) + (xy 85.55722 85.731158) (xy 85.769221 85.643344) (xy 85.967945 85.528611) (xy 86.149994 85.388919) + (xy 86.149998 85.388914) (xy 86.150003 85.388911) (xy 86.312244 85.22667) (xy 86.312247 85.226665) + (xy 86.312252 85.226661) (xy 86.451944 85.044612) (xy 86.566677 84.845888) (xy 86.654491 84.633887) + (xy 86.713881 84.412238) (xy 86.743833 84.184734) (xy 86.743833 83.955266) (xy 86.743832 83.955258) + (xy 95.242833 83.955258) (xy 95.242833 84.184741) (xy 95.263221 84.339596) (xy 95.272785 84.412238) + (xy 95.310522 84.553075) (xy 95.332175 84.633887) (xy 95.419983 84.845876) (xy 95.41999 84.84589) + (xy 95.534725 85.044617) (xy 95.674414 85.226661) (xy 95.674422 85.22667) (xy 95.836663 85.388911) + (xy 95.836671 85.388918) (xy 95.836672 85.388919) (xy 95.845754 85.395888) (xy 96.018715 85.528607) + (xy 96.018718 85.528608) (xy 96.018721 85.528611) (xy 96.217445 85.643344) (xy 96.21745 85.643346) + (xy 96.217456 85.643349) (xy 96.308813 85.68119) (xy 96.429446 85.731158) (xy 96.651095 85.790548) + (xy 96.878599 85.8205) (xy 96.878606 85.8205) (xy 97.10806 85.8205) (xy 97.108067 85.8205) (xy 97.335571 85.790548) + (xy 97.55722 85.731158) (xy 97.769221 85.643344) (xy 97.967945 85.528611) (xy 98.149994 85.388919) + (xy 98.149998 85.388914) (xy 98.150003 85.388911) (xy 98.312244 85.22667) (xy 98.312247 85.226665) + (xy 98.312252 85.226661) (xy 98.451944 85.044612) (xy 98.566677 84.845888) (xy 98.654491 84.633887) + (xy 98.713881 84.412238) (xy 98.743833 84.184734) (xy 98.743833 84.037758) (xy 101.576167 84.037758) + (xy 101.576167 84.267241) (xy 101.596537 84.421957) (xy 101.606119 84.494738) (xy 101.653509 84.671602) + (xy 101.665509 84.716387) (xy 101.753317 84.928376) (xy 101.753324 84.92839) (xy 101.868059 85.127117) + (xy 102.007748 85.309161) (xy 102.007756 85.30917) (xy 102.169997 85.471411) (xy 102.170005 85.471418) + (xy 102.170006 85.471419) (xy 102.213364 85.504689) (xy 102.352049 85.611107) (xy 102.352052 85.611108) + (xy 102.352055 85.611111) (xy 102.550779 85.725844) (xy 102.550784 85.725846) (xy 102.55079 85.725849) + (xy 102.642147 85.76369) (xy 102.76278 85.813658) (xy 102.984429 85.873048) (xy 103.211933 85.903) + (xy 103.21194 85.903) (xy 103.441394 85.903) (xy 103.441401 85.903) (xy 103.668905 85.873048) (xy 103.890554 85.813658) + (xy 104.102555 85.725844) (xy 104.301279 85.611111) (xy 104.483328 85.471419) (xy 104.483332 85.471414) + (xy 104.483337 85.471411) (xy 104.645578 85.30917) (xy 104.645581 85.309165) (xy 104.645586 85.309161) + (xy 104.785278 85.127112) (xy 104.900011 84.928388) (xy 104.987825 84.716387) (xy 105.047215 84.494738) + (xy 105.077167 84.267234) (xy 105.077167 84.037766) (xy 105.077166 84.037758) (xy 113.576167 84.037758) + (xy 113.576167 84.267241) (xy 113.596537 84.421957) (xy 113.606119 84.494738) (xy 113.653509 84.671602) + (xy 113.665509 84.716387) (xy 113.753317 84.928376) (xy 113.753324 84.92839) (xy 113.868059 85.127117) + (xy 114.007748 85.309161) (xy 114.007756 85.30917) (xy 114.169997 85.471411) (xy 114.170005 85.471418) + (xy 114.170006 85.471419) (xy 114.213364 85.504689) (xy 114.352049 85.611107) (xy 114.352052 85.611108) + (xy 114.352055 85.611111) (xy 114.550779 85.725844) (xy 114.550784 85.725846) (xy 114.55079 85.725849) + (xy 114.642147 85.76369) (xy 114.76278 85.813658) (xy 114.984429 85.873048) (xy 115.211933 85.903) + (xy 115.21194 85.903) (xy 115.441394 85.903) (xy 115.441401 85.903) (xy 115.668905 85.873048) (xy 115.890554 85.813658) + (xy 116.102555 85.725844) (xy 116.301279 85.611111) (xy 116.483328 85.471419) (xy 116.483332 85.471414) + (xy 116.483337 85.471411) (xy 116.645578 85.30917) (xy 116.645581 85.309165) (xy 116.645586 85.309161) + (xy 116.785278 85.127112) (xy 116.900011 84.928388) (xy 116.987825 84.716387) (xy 117.044396 84.505258) + (xy 119.9095 84.505258) (xy 119.9095 84.734741) (xy 119.922554 84.833887) (xy 119.939452 84.962238) + (xy 119.978025 85.106196) (xy 119.998842 85.183887) (xy 120.08665 85.395876) (xy 120.086656 85.395888) + (xy 120.190401 85.575581) (xy 120.201392 85.594617) (xy 120.341081 85.776661) (xy 120.341089 85.77667) + (xy 120.50333 85.938911) (xy 120.503338 85.938918) (xy 120.685382 86.078607) (xy 120.685385 86.078608) + (xy 120.685388 86.078611) (xy 120.884112 86.193344) (xy 120.884117 86.193346) (xy 120.884123 86.193349) + (xy 120.97548 86.23119) (xy 121.096113 86.281158) (xy 121.317762 86.340548) (xy 121.545266 86.3705) + (xy 121.545273 86.3705) (xy 121.774727 86.3705) (xy 121.774734 86.3705) (xy 122.002238 86.340548) + (xy 122.223887 86.281158) (xy 122.435888 86.193344) (xy 122.634612 86.078611) (xy 122.816661 85.938919) + (xy 122.816665 85.938914) (xy 122.81667 85.938911) (xy 122.978911 85.77667) (xy 122.978914 85.776665) + (xy 122.978919 85.776661) (xy 123.118611 85.594612) (xy 123.233344 85.395888) (xy 123.321158 85.183887) + (xy 123.380548 84.962238) (xy 123.4105 84.734734) (xy 123.4105 84.505266) (xy 123.410499 84.505258) + (xy 131.9095 84.505258) (xy 131.9095 84.734741) (xy 131.922554 84.833887) (xy 131.939452 84.962238) + (xy 131.978025 85.106196) (xy 131.998842 85.183887) (xy 132.08665 85.395876) (xy 132.086656 85.395888) + (xy 132.190401 85.575581) (xy 132.201392 85.594617) (xy 132.341081 85.776661) (xy 132.341089 85.77667) + (xy 132.50333 85.938911) (xy 132.503338 85.938918) (xy 132.685382 86.078607) (xy 132.685385 86.078608) + (xy 132.685388 86.078611) (xy 132.884112 86.193344) (xy 132.884117 86.193346) (xy 132.884123 86.193349) + (xy 132.97548 86.23119) (xy 133.096113 86.281158) (xy 133.317762 86.340548) (xy 133.545266 86.3705) + (xy 133.545273 86.3705) (xy 133.774727 86.3705) (xy 133.774734 86.3705) (xy 134.002238 86.340548) + (xy 134.223887 86.281158) (xy 134.435888 86.193344) (xy 134.634612 86.078611) (xy 134.816661 85.938919) + (xy 134.816665 85.938914) (xy 134.81667 85.938911) (xy 134.978911 85.77667) (xy 134.978914 85.776665) + (xy 134.978919 85.776661) (xy 135.118611 85.594612) (xy 135.233344 85.395888) (xy 135.321158 85.183887) + (xy 135.380548 84.962238) (xy 135.4105 84.734734) (xy 135.4105 84.505266) (xy 135.380548 84.277762) + (xy 135.321158 84.056113) (xy 135.233344 83.844112) (xy 135.118611 83.645388) (xy 135.118608 83.645385) + (xy 135.118607 83.645382) (xy 135.01174 83.506112) (xy 134.978919 83.463339) (xy 134.978918 83.463338) + (xy 134.978911 83.46333) (xy 134.81667 83.301089) (xy 134.816661 83.301081) (xy 134.634617 83.161392) + (xy 134.62813 83.157647) (xy 134.494482 83.080485) (xy 134.43589 83.046657) (xy 134.435876 83.04665) + (xy 134.223887 82.958842) (xy 134.194922 82.951081) (xy 134.002238 82.899452) (xy 133.964215 82.894446) + (xy 133.774741 82.8695) (xy 133.774734 82.8695) (xy 133.545266 82.8695) (xy 133.545258 82.8695) + (xy 133.328715 82.898009) (xy 133.317762 82.899452) (xy 133.224076 82.924554) (xy 133.096112 82.958842) + (xy 132.884123 83.04665) (xy 132.884109 83.046657) (xy 132.685382 83.161392) (xy 132.503338 83.301081) + (xy 132.341081 83.463338) (xy 132.201392 83.645382) (xy 132.086657 83.844109) (xy 132.08665 83.844123) + (xy 132.006439 84.037772) (xy 131.998842 84.056113) (xy 131.954405 84.221958) (xy 131.939453 84.277759) + (xy 131.939451 84.27777) (xy 131.9095 84.505258) (xy 123.410499 84.505258) (xy 123.380548 84.277762) + (xy 123.321158 84.056113) (xy 123.233344 83.844112) (xy 123.118611 83.645388) (xy 123.118608 83.645385) + (xy 123.118607 83.645382) (xy 123.01174 83.506112) (xy 122.978919 83.463339) (xy 122.978918 83.463338) + (xy 122.978911 83.46333) (xy 122.81667 83.301089) (xy 122.816661 83.301081) (xy 122.634617 83.161392) + (xy 122.62813 83.157647) (xy 122.494482 83.080485) (xy 122.43589 83.046657) (xy 122.435876 83.04665) + (xy 122.223887 82.958842) (xy 122.194922 82.951081) (xy 122.002238 82.899452) (xy 121.964215 82.894446) + (xy 121.774741 82.8695) (xy 121.774734 82.8695) (xy 121.545266 82.8695) (xy 121.545258 82.8695) + (xy 121.328715 82.898009) (xy 121.317762 82.899452) (xy 121.224076 82.924554) (xy 121.096112 82.958842) + (xy 120.884123 83.04665) (xy 120.884109 83.046657) (xy 120.685382 83.161392) (xy 120.503338 83.301081) + (xy 120.341081 83.463338) (xy 120.201392 83.645382) (xy 120.086657 83.844109) (xy 120.08665 83.844123) + (xy 120.006439 84.037772) (xy 119.998842 84.056113) (xy 119.954405 84.221958) (xy 119.939453 84.277759) + (xy 119.939451 84.27777) (xy 119.9095 84.505258) (xy 117.044396 84.505258) (xy 117.047215 84.494738) + (xy 117.077167 84.267234) (xy 117.077167 84.037766) (xy 117.047215 83.810262) (xy 116.987825 83.588613) + (xy 116.916152 83.415579) (xy 116.900016 83.376623) (xy 116.900013 83.376617) (xy 116.900011 83.376612) + (xy 116.785278 83.177888) (xy 116.785275 83.177885) (xy 116.785274 83.177882) (xy 116.645585 82.995838) + (xy 116.645578 82.99583) (xy 116.483337 82.833589) (xy 116.483328 82.833581) (xy 116.301284 82.693892) + (xy 116.251707 82.665269) (xy 116.15839 82.611392) (xy 116.102557 82.579157) (xy 116.102543 82.57915) + (xy 115.890554 82.491342) (xy 115.668905 82.431952) (xy 115.630882 82.426946) (xy 115.441408 82.402) + (xy 115.441401 82.402) (xy 115.211933 82.402) (xy 115.211925 82.402) (xy 114.995382 82.430509) (xy 114.984429 82.431952) + (xy 114.908261 82.452361) (xy 114.762779 82.491342) (xy 114.55079 82.57915) (xy 114.550776 82.579157) + (xy 114.352049 82.693892) (xy 114.170005 82.833581) (xy 114.007748 82.995838) (xy 113.868059 83.177882) + (xy 113.753324 83.376609) (xy 113.753317 83.376623) (xy 113.665509 83.588612) (xy 113.60612 83.810259) + (xy 113.606118 83.81027) (xy 113.576167 84.037758) (xy 105.077166 84.037758) (xy 105.047215 83.810262) + (xy 104.987825 83.588613) (xy 104.916152 83.415579) (xy 104.900016 83.376623) (xy 104.900013 83.376617) + (xy 104.900011 83.376612) (xy 104.785278 83.177888) (xy 104.785275 83.177885) (xy 104.785274 83.177882) + (xy 104.645585 82.995838) (xy 104.645578 82.99583) (xy 104.483337 82.833589) (xy 104.483328 82.833581) + (xy 104.301284 82.693892) (xy 104.251707 82.665269) (xy 104.15839 82.611392) (xy 104.102557 82.579157) + (xy 104.102543 82.57915) (xy 103.890554 82.491342) (xy 103.668905 82.431952) (xy 103.630882 82.426946) + (xy 103.441408 82.402) (xy 103.441401 82.402) (xy 103.211933 82.402) (xy 103.211925 82.402) (xy 102.995382 82.430509) + (xy 102.984429 82.431952) (xy 102.908261 82.452361) (xy 102.762779 82.491342) (xy 102.55079 82.57915) + (xy 102.550776 82.579157) (xy 102.352049 82.693892) (xy 102.170005 82.833581) (xy 102.007748 82.995838) + (xy 101.868059 83.177882) (xy 101.753324 83.376609) (xy 101.753317 83.376623) (xy 101.665509 83.588612) + (xy 101.60612 83.810259) (xy 101.606118 83.81027) (xy 101.576167 84.037758) (xy 98.743833 84.037758) + (xy 98.743833 83.955266) (xy 98.713881 83.727762) (xy 98.654491 83.506113) (xy 98.60085 83.376612) + (xy 98.566682 83.294123) (xy 98.566679 83.294117) (xy 98.566677 83.294112) (xy 98.451944 83.095388) + (xy 98.451941 83.095385) (xy 98.45194 83.095382) (xy 98.312251 82.913338) (xy 98.312244 82.91333) + (xy 98.150003 82.751089) (xy 98.149994 82.751081) (xy 97.96795 82.611392) (xy 97.769223 82.496657) + (xy 97.769209 82.49665) (xy 97.55722 82.408842) (xy 97.531685 82.402) (xy 97.335571 82.349452) (xy 97.297548 82.344446) + (xy 97.108074 82.3195) (xy 97.108067 82.3195) (xy 96.878599 82.3195) (xy 96.878591 82.3195) (xy 96.662048 82.348009) + (xy 96.651095 82.349452) (xy 96.59954 82.363266) (xy 96.429445 82.408842) (xy 96.217456 82.49665) + (xy 96.217442 82.496657) (xy 96.018715 82.611392) (xy 95.836671 82.751081) (xy 95.674414 82.913338) + (xy 95.534725 83.095382) (xy 95.41999 83.294109) (xy 95.419983 83.294123) (xy 95.332175 83.506112) + (xy 95.272786 83.727759) (xy 95.272784 83.72777) (xy 95.242833 83.955258) (xy 86.743832 83.955258) + (xy 86.713881 83.727762) (xy 86.654491 83.506113) (xy 86.60085 83.376612) (xy 86.566682 83.294123) + (xy 86.566679 83.294117) (xy 86.566677 83.294112) (xy 86.451944 83.095388) (xy 86.451941 83.095385) + (xy 86.45194 83.095382) (xy 86.312251 82.913338) (xy 86.312244 82.91333) (xy 86.150003 82.751089) + (xy 86.149994 82.751081) (xy 85.96795 82.611392) (xy 85.769223 82.496657) (xy 85.769209 82.49665) + (xy 85.55722 82.408842) (xy 85.531685 82.402) (xy 85.335571 82.349452) (xy 85.297548 82.344446) + (xy 85.108074 82.3195) (xy 85.108067 82.3195) (xy 84.878599 82.3195) (xy 84.878591 82.3195) (xy 84.662048 82.348009) + (xy 84.651095 82.349452) (xy 84.59954 82.363266) (xy 84.429445 82.408842) (xy 84.217456 82.49665) + (xy 84.217442 82.496657) (xy 84.018715 82.611392) (xy 83.836671 82.751081) (xy 83.674414 82.913338) + (xy 83.534725 83.095382) (xy 83.41999 83.294109) (xy 83.419983 83.294123) (xy 83.332175 83.506112) + (xy 83.272786 83.727759) (xy 83.272784 83.72777) (xy 83.242833 83.955258) (xy 80.384168 83.955258) + (xy 80.380548 83.927762) (xy 80.321158 83.706113) (xy 80.267567 83.576733) (xy 80.233349 83.494123) + (xy 80.233346 83.494117) (xy 80.233344 83.494112) (xy 80.118611 83.295388) (xy 80.118608 83.295385) + (xy 80.118607 83.295382) (xy 79.978918 83.113338) (xy 79.978911 83.11333) (xy 79.81667 82.951089) + (xy 79.816661 82.951081) (xy 79.634617 82.811392) (xy 79.43589 82.696657) (xy 79.435876 82.69665) + (xy 79.223887 82.608842) (xy 79.002238 82.549452) (xy 78.964215 82.544446) (xy 78.774741 82.5195) + (xy 78.774734 82.5195) (xy 78.545266 82.5195) (xy 78.545258 82.5195) (xy 78.328715 82.548009) (xy 78.317762 82.549452) + (xy 78.224076 82.574554) (xy 78.096112 82.608842) (xy 77.884123 82.69665) (xy 77.884109 82.696657) + (xy 77.685382 82.811392) (xy 77.503338 82.951081) (xy 77.341081 83.113338) (xy 77.201392 83.295382) + (xy 77.086657 83.494109) (xy 77.08665 83.494123) (xy 76.998842 83.706112) (xy 76.939453 83.927759) + (xy 76.939451 83.92777) (xy 76.9095 84.155258) (xy 68.410499 84.155258) (xy 68.380548 83.927762) + (xy 68.321158 83.706113) (xy 68.267567 83.576733) (xy 68.233349 83.494123) (xy 68.233346 83.494117) + (xy 68.233344 83.494112) (xy 68.118611 83.295388) (xy 68.118608 83.295385) (xy 68.118607 83.295382) + (xy 67.978918 83.113338) (xy 67.978911 83.11333) (xy 67.81667 82.951089) (xy 67.816661 82.951081) + (xy 67.634617 82.811392) (xy 67.43589 82.696657) (xy 67.435876 82.69665) (xy 67.223887 82.608842) + (xy 67.002238 82.549452) (xy 66.964215 82.544446) (xy 66.774741 82.5195) (xy 66.774734 82.5195) + (xy 66.545266 82.5195) (xy 66.545258 82.5195) (xy 66.328715 82.548009) (xy 66.317762 82.549452) + (xy 66.224076 82.574554) (xy 66.096112 82.608842) (xy 65.884123 82.69665) (xy 65.884109 82.696657) + (xy 65.685382 82.811392) (xy 65.503338 82.951081) (xy 65.341081 83.113338) (xy 65.201392 83.295382) + (xy 65.086657 83.494109) (xy 65.08665 83.494123) (xy 64.998842 83.706112) (xy 64.939453 83.927759) + (xy 64.939451 83.92777) (xy 64.9095 84.155258) (xy 58.4505 84.155258) (xy 58.4505 71.888872) (xy 64.6095 71.888872) + (xy 64.6095 72.151127) (xy 64.62826 72.293614) (xy 64.64373 72.411116) (xy 64.700331 72.622353) + (xy 64.711602 72.664418) (xy 64.711605 72.664428) (xy 64.811953 72.90669) (xy 64.811958 72.9067) + (xy 64.943075 73.133803) (xy 65.102718 73.341851) (xy 65.102726 73.34186) (xy 65.28814 73.527274) + (xy 65.288148 73.527281) (xy 65.288149 73.527282) (xy 65.300715 73.536924) (xy 65.496196 73.686924) + (xy 65.723299 73.818041) (xy 65.723309 73.818046) (xy 65.928407 73.903) (xy 65.965581 73.918398) + (xy 66.218884 73.98627) (xy 66.47888 74.0205) (xy 66.478887 74.0205) (xy 66.741113 74.0205) (xy 66.74112 74.0205) + (xy 67.001116 73.98627) (xy 67.254419 73.918398) (xy 67.452696 73.836269) (xy 67.49669 73.818046) + (xy 67.496691 73.818045) (xy 67.496697 73.818043) (xy 67.723803 73.686924) (xy 67.931851 73.527282) + (xy 67.931855 73.527277) (xy 67.93186 73.527274) (xy 68.117274 73.34186) (xy 68.117277 73.341855) + (xy 68.117282 73.341851) (xy 68.276924 73.133803) (xy 68.408043 72.906697) (xy 68.508398 72.664419) + (xy 68.57627 72.411116) (xy 68.6105 72.15112) (xy 68.6105 71.938872) (xy 76.6595 71.938872) (xy 76.6595 72.201127) + (xy 76.67826 72.343614) (xy 76.69373 72.461116) (xy 76.748205 72.664419) (xy 76.761602 72.714418) + (xy 76.761605 72.714428) (xy 76.861953 72.95669) (xy 76.861958 72.9567) (xy 76.993075 73.183803) + (xy 77.152718 73.391851) (xy 77.152726 73.39186) (xy 77.33814 73.577274) (xy 77.338148 73.577281) + (xy 77.546196 73.736924) (xy 77.773299 73.868041) (xy 77.773309 73.868046) (xy 78.015571 73.968394) + (xy 78.015581 73.968398) (xy 78.268884 74.03627) (xy 78.52888 74.0705) (xy 78.528887 74.0705) (xy 78.791113 74.0705) + (xy 78.79112 74.0705) (xy 79.051116 74.03627) (xy 79.304419 73.968398) (xy 79.524395 73.877281) + (xy 79.54669 73.868046) (xy 79.546691 73.868045) (xy 79.546697 73.868043) (xy 79.773803 73.736924) + (xy 79.981851 73.577282) (xy 79.981855 73.577277) (xy 79.98186 73.577274) (xy 80.167274 73.39186) + (xy 80.167277 73.391855) (xy 80.167282 73.391851) (xy 80.326924 73.183803) (xy 80.458043 72.956697) + (xy 80.558398 72.714419) (xy 80.62627 72.461116) (xy 80.6605 72.20112) (xy 80.6605 71.93888) (xy 80.627585 71.688872) + (xy 82.942833 71.688872) (xy 82.942833 71.951127) (xy 82.960276 72.083613) (xy 82.977063 72.211116) + (xy 83.04405 72.461116) (xy 83.044935 72.464418) (xy 83.044938 72.464428) (xy 83.145286 72.70669) + (xy 83.145291 72.7067) (xy 83.276408 72.933803) (xy 83.436051 73.141851) (xy 83.436059 73.14186) + (xy 83.621473 73.327274) (xy 83.621481 73.327281) (xy 83.829529 73.486924) (xy 84.056632 73.618041) + (xy 84.056642 73.618046) (xy 84.298904 73.718394) (xy 84.298914 73.718398) (xy 84.552217 73.78627) + (xy 84.812213 73.8205) (xy 84.81222 73.8205) (xy 85.074446 73.8205) (xy 85.074453 73.8205) (xy 85.334449 73.78627) + (xy 85.587752 73.718398) (xy 85.83003 73.618043) (xy 86.057136 73.486924) (xy 86.265184 73.327282) + (xy 86.265188 73.327277) (xy 86.265193 73.327274) (xy 86.450607 73.14186) (xy 86.45061 73.141855) + (xy 86.450615 73.141851) (xy 86.610257 72.933803) (xy 86.741376 72.706697) (xy 86.841731 72.464419) + (xy 86.909603 72.211116) (xy 86.943833 71.95112) (xy 86.943833 71.738872) (xy 94.992833 71.738872) + (xy 94.992833 72.001127) (xy 95.01258 72.151113) (xy 95.027063 72.261116) (xy 95.094935 72.514418) + (xy 95.094938 72.514428) (xy 95.195286 72.75669) (xy 95.195291 72.7567) (xy 95.326408 72.983803) + (xy 95.486051 73.191851) (xy 95.486059 73.19186) (xy 95.671473 73.377274) (xy 95.671481 73.377281) + (xy 95.879529 73.536924) (xy 96.106632 73.668041) (xy 96.106642 73.668046) (xy 96.348904 73.768394) + (xy 96.348914 73.768398) (xy 96.602217 73.83627) (xy 96.862213 73.8705) (xy 96.86222 73.8705) (xy 97.124446 73.8705) + (xy 97.124453 73.8705) (xy 97.384449 73.83627) (xy 97.637752 73.768398) (xy 97.822531 73.69186) + (xy 97.880023 73.668046) (xy 97.880024 73.668045) (xy 97.88003 73.668043) (xy 98.107136 73.536924) + (xy 98.315184 73.377282) (xy 98.315188 73.377277) (xy 98.315193 73.377274) (xy 98.500607 73.19186) + (xy 98.50061 73.191855) (xy 98.500615 73.191851) (xy 98.660257 72.983803) (xy 98.791376 72.756697) + (xy 98.891731 72.514419) (xy 98.959603 72.261116) (xy 98.993833 72.00112) (xy 98.993833 71.771372) + (xy 101.276167 71.771372) (xy 101.276167 72.033627) (xy 101.291637 72.151127) (xy 101.310397 72.293616) + (xy 101.369561 72.514419) (xy 101.378269 72.546918) (xy 101.378272 72.546928) (xy 101.47862 72.78919) + (xy 101.478625 72.7892) (xy 101.609742 73.016303) (xy 101.769385 73.224351) (xy 101.769393 73.22436) + (xy 101.954807 73.409774) (xy 101.954815 73.409781) (xy 102.162863 73.569424) (xy 102.389966 73.700541) + (xy 102.389976 73.700546) (xy 102.597483 73.786498) (xy 102.632248 73.800898) (xy 102.885551 73.86877) + (xy 103.145547 73.903) (xy 103.145554 73.903) (xy 103.40778 73.903) (xy 103.407787 73.903) (xy 103.667783 73.86877) + (xy 103.921086 73.800898) (xy 104.163364 73.700543) (xy 104.39047 73.569424) (xy 104.598518 73.409782) + (xy 104.598522 73.409777) (xy 104.598527 73.409774) (xy 104.783941 73.22436) (xy 104.783944 73.224355) + (xy 104.783949 73.224351) (xy 104.943591 73.016303) (xy 105.07471 72.789197) (xy 105.175065 72.546919) + (xy 105.242937 72.293616) (xy 105.277167 72.03362) (xy 105.277167 71.821372) (xy 113.326167 71.821372) + (xy 113.326167 72.083627) (xy 113.349535 72.261114) (xy 113.360397 72.343616) (xy 113.415999 72.551127) + (xy 113.428269 72.596918) (xy 113.428272 72.596928) (xy 113.52862 72.83919) (xy 113.528625 72.8392) + (xy 113.659742 73.066303) (xy 113.819385 73.274351) (xy 113.819393 73.27436) (xy 114.004807 73.459774) + (xy 114.004815 73.459781) (xy 114.212863 73.619424) (xy 114.439966 73.750541) (xy 114.439976 73.750546) + (xy 114.682238 73.850894) (xy 114.682248 73.850898) (xy 114.935551 73.91877) (xy 115.195547 73.953) + (xy 115.195554 73.953) (xy 115.45778 73.953) (xy 115.457787 73.953) (xy 115.717783 73.91877) (xy 115.971086 73.850898) + (xy 116.213364 73.750543) (xy 116.44047 73.619424) (xy 116.648518 73.459782) (xy 116.648522 73.459777) + (xy 116.648527 73.459774) (xy 116.833941 73.27436) (xy 116.833944 73.274355) (xy 116.833949 73.274351) + (xy 116.993591 73.066303) (xy 117.12471 72.839197) (xy 117.225065 72.596919) (xy 117.292937 72.343616) + (xy 117.306727 72.238872) (xy 119.6095 72.238872) (xy 119.6095 72.501127) (xy 119.625461 72.622352) + (xy 119.64373 72.761116) (xy 119.703399 72.983803) (xy 119.711602 73.014418) (xy 119.711605 73.014428) + (xy 119.811953 73.25669) (xy 119.811958 73.2567) (xy 119.943075 73.483803) (xy 120.102718 73.691851) + (xy 120.102726 73.69186) (xy 120.28814 73.877274) (xy 120.288148 73.877281) (xy 120.496196 74.036924) + (xy 120.723299 74.168041) (xy 120.723309 74.168046) (xy 120.965571 74.268394) (xy 120.965581 74.268398) + (xy 121.218884 74.33627) (xy 121.47888 74.3705) (xy 121.478887 74.3705) (xy 121.741113 74.3705) + (xy 121.74112 74.3705) (xy 122.001116 74.33627) (xy 122.254419 74.268398) (xy 122.496697 74.168043) + (xy 122.723803 74.036924) (xy 122.931851 73.877282) (xy 122.931855 73.877277) (xy 122.93186 73.877274) + (xy 123.117274 73.69186) (xy 123.117277 73.691855) (xy 123.117282 73.691851) (xy 123.276924 73.483803) + (xy 123.408043 73.256697) (xy 123.508398 73.014419) (xy 123.57627 72.761116) (xy 123.6105 72.50112) + (xy 123.6105 72.288872) (xy 131.6595 72.288872) (xy 131.6595 72.551127) (xy 131.679983 72.7067) + (xy 131.69373 72.811116) (xy 131.761602 73.064418) (xy 131.761605 73.064428) (xy 131.861953 73.30669) + (xy 131.861958 73.3067) (xy 131.993075 73.533803) (xy 132.152718 73.741851) (xy 132.152726 73.74186) + (xy 132.33814 73.927274) (xy 132.338148 73.927281) (xy 132.338149 73.927282) (xy 132.37357 73.954462) + (xy 132.546196 74.086924) (xy 132.773299 74.218041) (xy 132.773309 74.218046) (xy 133.015571 74.318394) + (xy 133.015581 74.318398) (xy 133.268884 74.38627) (xy 133.52888 74.4205) (xy 133.528887 74.4205) + (xy 133.791113 74.4205) (xy 133.79112 74.4205) (xy 134.051116 74.38627) (xy 134.304419 74.318398) + (xy 134.546697 74.218043) (xy 134.773803 74.086924) (xy 134.981851 73.927282) (xy 134.981855 73.927277) + (xy 134.98186 73.927274) (xy 135.167274 73.74186) (xy 135.167277 73.741855) (xy 135.167282 73.741851) + (xy 135.326924 73.533803) (xy 135.458043 73.306697) (xy 135.558398 73.064419) (xy 135.62627 72.811116) + (xy 135.6605 72.55112) (xy 135.6605 72.28888) (xy 135.62627 72.028884) (xy 135.558398 71.775581) + (xy 135.558394 71.775571) (xy 135.458046 71.533309) (xy 135.458041 71.533299) (xy 135.326924 71.306196) + (xy 135.167281 71.098148) (xy 135.167274 71.09814) (xy 134.98186 70.912726) (xy 134.981851 70.912718) + (xy 134.773803 70.753075) (xy 134.5467 70.621958) (xy 134.54669 70.621953) (xy 134.304428 70.521605) + (xy 134.304421 70.521603) (xy 134.304419 70.521602) (xy 134.051116 70.45373) (xy 133.993339 70.446123) + (xy 133.791127 70.4195) (xy 133.79112 70.4195) (xy 133.52888 70.4195) (xy 133.528872 70.4195) (xy 133.297772 70.449926) + (xy 133.268884 70.45373) (xy 133.048737 70.512718) (xy 133.015581 70.521602) (xy 133.015571 70.521605) + (xy 132.773309 70.621953) (xy 132.773299 70.621958) (xy 132.546196 70.753075) (xy 132.338148 70.912718) + (xy 132.152718 71.098148) (xy 131.993075 71.306196) (xy 131.861958 71.533299) (xy 131.861953 71.533309) + (xy 131.761605 71.775571) (xy 131.761602 71.775581) (xy 131.69373 72.028884) (xy 131.693106 72.033627) + (xy 131.6595 72.288872) (xy 123.6105 72.288872) (xy 123.6105 72.23888) (xy 123.57627 71.978884) + (xy 123.508398 71.725581) (xy 123.498218 71.701005) (xy 123.408046 71.483309) (xy 123.408041 71.483299) + (xy 123.276924 71.256196) (xy 123.117281 71.048148) (xy 123.117274 71.04814) (xy 122.93186 70.862726) + (xy 122.931851 70.862718) (xy 122.723803 70.703075) (xy 122.4967 70.571958) (xy 122.49669 70.571953) + (xy 122.254428 70.471605) (xy 122.254421 70.471603) (xy 122.254419 70.471602) (xy 122.001116 70.40373) + (xy 121.943339 70.396123) (xy 121.741127 70.3695) (xy 121.74112 70.3695) (xy 121.47888 70.3695) + (xy 121.478872 70.3695) (xy 121.247772 70.399926) (xy 121.218884 70.40373) (xy 121.064048 70.445218) + (xy 120.965581 70.471602) (xy 120.965571 70.471605) (xy 120.723309 70.571953) (xy 120.723299 70.571958) + (xy 120.496196 70.703075) (xy 120.288148 70.862718) (xy 120.102718 71.048148) (xy 119.943075 71.256196) + (xy 119.811958 71.483299) (xy 119.811953 71.483309) (xy 119.711605 71.725571) (xy 119.711602 71.725581) + (xy 119.651168 71.951127) (xy 119.64373 71.978885) (xy 119.6095 72.238872) (xy 117.306727 72.238872) + (xy 117.327167 72.08362) (xy 117.327167 71.82138) (xy 117.292937 71.561384) (xy 117.225065 71.308081) + (xy 117.224284 71.306196) (xy 117.124713 71.065809) (xy 117.124708 71.065799) (xy 116.993591 70.838696) + (xy 116.833948 70.630648) (xy 116.833941 70.63064) (xy 116.648527 70.445226) (xy 116.648518 70.445218) + (xy 116.44047 70.285575) (xy 116.213367 70.154458) (xy 116.213357 70.154453) (xy 115.971095 70.054105) + (xy 115.971088 70.054103) (xy 115.971086 70.054102) (xy 115.717783 69.98623) (xy 115.660006 69.978623) + (xy 115.457794 69.952) (xy 115.457787 69.952) (xy 115.195547 69.952) (xy 115.195539 69.952) (xy 114.964439 69.982426) + (xy 114.935551 69.98623) (xy 114.802212 70.021958) (xy 114.682248 70.054102) (xy 114.682238 70.054105) + (xy 114.439976 70.154453) (xy 114.439966 70.154458) (xy 114.212863 70.285575) (xy 114.004815 70.445218) + (xy 113.819385 70.630648) (xy 113.659742 70.838696) (xy 113.528625 71.065799) (xy 113.52862 71.065809) + (xy 113.428272 71.308071) (xy 113.428269 71.308081) (xy 113.367923 71.533299) (xy 113.360397 71.561385) + (xy 113.326167 71.821372) (xy 105.277167 71.821372) (xy 105.277167 71.77138) (xy 105.242937 71.511384) + (xy 105.175065 71.258081) (xy 105.161599 71.225571) (xy 105.074713 71.015809) (xy 105.074708 71.015799) + (xy 104.943591 70.788696) (xy 104.783948 70.580648) (xy 104.783941 70.58064) (xy 104.598527 70.395226) + (xy 104.598518 70.395218) (xy 104.39047 70.235575) (xy 104.163367 70.104458) (xy 104.163357 70.104453) + (xy 103.921095 70.004105) (xy 103.921088 70.004103) (xy 103.921086 70.004102) (xy 103.667783 69.93623) + (xy 103.610006 69.928623) (xy 103.407794 69.902) (xy 103.407787 69.902) (xy 103.145547 69.902) (xy 103.145539 69.902) + (xy 102.914439 69.932426) (xy 102.885551 69.93623) (xy 102.698948 69.98623) (xy 102.632248 70.004102) + (xy 102.632238 70.004105) (xy 102.389976 70.104453) (xy 102.389966 70.104458) (xy 102.162863 70.235575) + (xy 101.954815 70.395218) (xy 101.769385 70.580648) (xy 101.609742 70.788696) (xy 101.478625 71.015799) + (xy 101.47862 71.015809) (xy 101.378272 71.258071) (xy 101.378269 71.258081) (xy 101.317923 71.483299) + (xy 101.310397 71.511385) (xy 101.276167 71.771372) (xy 98.993833 71.771372) (xy 98.993833 71.73888) + (xy 98.959603 71.478884) (xy 98.891731 71.225581) (xy 98.891727 71.225571) (xy 98.791379 70.983309) + (xy 98.791374 70.983299) (xy 98.660257 70.756196) (xy 98.525553 70.580649) (xy 98.500615 70.548149) + (xy 98.500614 70.548148) (xy 98.500607 70.54814) (xy 98.315193 70.362726) (xy 98.315184 70.362718) + (xy 98.107136 70.203075) (xy 97.880033 70.071958) (xy 97.880023 70.071953) (xy 97.637761 69.971605) + (xy 97.637754 69.971603) (xy 97.637752 69.971602) (xy 97.384449 69.90373) (xy 97.326672 69.896123) + (xy 97.12446 69.8695) (xy 97.124453 69.8695) (xy 96.862213 69.8695) (xy 96.862205 69.8695) (xy 96.631105 69.899926) + (xy 96.602217 69.90373) (xy 96.480925 69.93623) (xy 96.348914 69.971602) (xy 96.348904 69.971605) + (xy 96.106642 70.071953) (xy 96.106632 70.071958) (xy 95.879529 70.203075) (xy 95.671481 70.362718) + (xy 95.486051 70.548148) (xy 95.326408 70.756196) (xy 95.195291 70.983299) (xy 95.195286 70.983309) + (xy 95.094938 71.225571) (xy 95.094935 71.225581) (xy 95.027063 71.478884) (xy 95.023259 71.507772) + (xy 94.992833 71.738872) (xy 86.943833 71.738872) (xy 86.943833 71.68888) (xy 86.909603 71.428884) + (xy 86.841731 71.175581) (xy 86.841727 71.175571) (xy 86.741379 70.933309) (xy 86.741374 70.933299) + (xy 86.610257 70.706196) (xy 86.487757 70.546554) (xy 86.450615 70.498149) (xy 86.450614 70.498148) + (xy 86.450607 70.49814) (xy 86.265193 70.312726) (xy 86.265184 70.312718) (xy 86.057136 70.153075) + (xy 85.830033 70.021958) (xy 85.830023 70.021953) (xy 85.587761 69.921605) (xy 85.587754 69.921603) + (xy 85.587752 69.921602) (xy 85.334449 69.85373) (xy 85.276672 69.846123) (xy 85.07446 69.8195) + (xy 85.074453 69.8195) (xy 84.812213 69.8195) (xy 84.812205 69.8195) (xy 84.581105 69.849926) (xy 84.552217 69.85373) + (xy 84.37207 69.902) (xy 84.298914 69.921602) (xy 84.298904 69.921605) (xy 84.056642 70.021953) + (xy 84.056632 70.021958) (xy 83.829529 70.153075) (xy 83.621481 70.312718) (xy 83.436051 70.498148) + (xy 83.276408 70.706196) (xy 83.145291 70.933299) (xy 83.145286 70.933309) (xy 83.044938 71.175571) + (xy 83.044935 71.175581) (xy 82.977063 71.428884) (xy 82.973259 71.457772) (xy 82.942833 71.688872) + (xy 80.627585 71.688872) (xy 80.62627 71.678884) (xy 80.558398 71.425581) (xy 80.558394 71.425571) + (xy 80.458046 71.183309) (xy 80.458041 71.183299) (xy 80.326924 70.956196) (xy 80.173457 70.756196) + (xy 80.167282 70.748149) (xy 80.167281 70.748148) (xy 80.167274 70.74814) (xy 79.98186 70.562726) + (xy 79.981851 70.562718) (xy 79.773803 70.403075) (xy 79.5467 70.271958) (xy 79.54669 70.271953) + (xy 79.304428 70.171605) (xy 79.304421 70.171603) (xy 79.304419 70.171602) (xy 79.051116 70.10373) + (xy 78.993339 70.096123) (xy 78.791127 70.0695) (xy 78.79112 70.0695) (xy 78.52888 70.0695) (xy 78.528872 70.0695) + (xy 78.297772 70.099926) (xy 78.268884 70.10373) (xy 78.079564 70.154458) (xy 78.015581 70.171602) + (xy 78.015571 70.171605) (xy 77.773309 70.271953) (xy 77.773299 70.271958) (xy 77.546196 70.403075) + (xy 77.338148 70.562718) (xy 77.152718 70.748148) (xy 76.993075 70.956196) (xy 76.861958 71.183299) + (xy 76.861953 71.183309) (xy 76.761605 71.425571) (xy 76.761602 71.425581) (xy 76.707128 71.628884) + (xy 76.69373 71.678885) (xy 76.6595 71.938872) (xy 68.6105 71.938872) (xy 68.6105 71.88888) (xy 68.57627 71.628884) + (xy 68.508398 71.375581) (xy 68.480439 71.308081) (xy 68.408046 71.133309) (xy 68.408041 71.133299) + (xy 68.276924 70.906196) (xy 68.130657 70.71558) (xy 68.117282 70.698149) (xy 68.117281 70.698148) + (xy 68.117274 70.69814) (xy 67.93186 70.512726) (xy 67.931851 70.512718) (xy 67.723803 70.353075) + (xy 67.4967 70.221958) (xy 67.49669 70.221953) (xy 67.254428 70.121605) (xy 67.254421 70.121603) + (xy 67.254419 70.121602) (xy 67.001116 70.05373) (xy 66.943339 70.046123) (xy 66.741127 70.0195) + (xy 66.74112 70.0195) (xy 66.47888 70.0195) (xy 66.478872 70.0195) (xy 66.247772 70.049926) (xy 66.218884 70.05373) + (xy 66.029564 70.104458) (xy 65.965581 70.121602) (xy 65.965571 70.121605) (xy 65.723309 70.221953) + (xy 65.723299 70.221958) (xy 65.496196 70.353075) (xy 65.288148 70.512718) (xy 65.102718 70.698148) + (xy 64.943075 70.906196) (xy 64.811958 71.133299) (xy 64.811953 71.133309) (xy 64.711605 71.375571) + (xy 64.711602 71.375581) (xy 64.661817 71.561384) (xy 64.64373 71.628885) (xy 64.6095 71.888872) + (xy 58.4505 71.888872) (xy 58.4505 65.647135) (xy 147.3345 65.647135) (xy 147.3345 67.27287) (xy 147.334501 67.272876) + (xy 147.340908 67.332483) (xy 147.391202 67.467328) (xy 147.391206 67.467335) (xy 147.477452 67.582544) + (xy 147.477455 67.582547) (xy 147.592664 67.668793) (xy 147.592671 67.668797) (xy 147.727517 67.719091) + (xy 147.727516 67.719091) (xy 147.734444 67.719835) (xy 147.787127 67.7255) (xy 147.819568 67.725499) + (xy 147.886605 67.745182) (xy 147.932361 67.797984) (xy 147.942306 67.867143) (xy 147.913283 67.930699) + (xy 147.892455 67.949816) (xy 147.775582 68.03473) (xy 147.634733 68.175579) (xy 147.634733 68.17558) + (xy 147.634731 68.175582) (xy 147.584447 68.24479) (xy 147.517647 68.336733) (xy 147.427213 68.514219) + (xy 147.365661 68.703656) (xy 147.365661 68.703659) (xy 147.3345 68.900403) (xy 147.3345 69.099596) + (xy 147.365661 69.29634) (xy 147.365661 69.296343) (xy 147.427213 69.48578) (xy 147.427215 69.485783) + (xy 147.517647 69.663266) (xy 147.634731 69.824418) (xy 147.775582 69.965269) (xy 147.936734 70.082353) + (xy 147.978689 70.10373) (xy 148.088172 70.159515) (xy 148.138968 70.20749) (xy 148.155763 70.275311) + (xy 148.133225 70.341446) (xy 148.088172 70.380485) (xy 147.936733 70.457647) (xy 147.84479 70.524447) + (xy 147.775582 70.574731) (xy 147.77558 70.574733) (xy 147.775579 70.574733) (xy 147.634733 70.715579) + (xy 147.634733 70.71558) (xy 147.634731 70.715582) (xy 147.584447 70.78479) (xy 147.517647 70.876733) + (xy 147.427213 71.054219) (xy 147.365661 71.243656) (xy 147.365661 71.243659) (xy 147.363377 71.258081) + (xy 147.3345 71.440403) (xy 147.3345 71.639597) (xy 147.342306 71.68888) (xy 147.365661 71.83634) + (xy 147.365661 71.836343) (xy 147.427213 72.02578) (xy 147.456681 72.083613) (xy 147.517647 72.203266) + (xy 147.634731 72.364418) (xy 147.775582 72.505269) (xy 147.936734 72.622353) (xy 148.006453 72.657877) + (xy 148.088172 72.699515) (xy 148.138968 72.74749) (xy 148.155763 72.815311) (xy 148.133225 72.881446) + (xy 148.088172 72.920485) (xy 147.936733 72.997647) (xy 147.911056 73.016303) (xy 147.775582 73.114731) + (xy 147.77558 73.114733) (xy 147.775579 73.114733) (xy 147.634733 73.255579) (xy 147.634733 73.25558) + (xy 147.634731 73.255582) (xy 147.584447 73.32479) (xy 147.517647 73.416733) (xy 147.427213 73.594219) + (xy 147.365661 73.783656) (xy 147.365661 73.783659) (xy 147.3345 73.980403) (xy 147.3345 74.179596) + (xy 147.365661 74.37634) (xy 147.365661 74.376343) (xy 147.427213 74.56578) (xy 147.427215 74.565783) + (xy 147.517647 74.743266) (xy 147.634731 74.904418) (xy 147.775582 75.045269) (xy 147.936734 75.162353) + (xy 148.006453 75.197877) (xy 148.088172 75.239515) (xy 148.138968 75.28749) (xy 148.155763 75.355311) + (xy 148.133225 75.421446) (xy 148.088172 75.460485) (xy 147.936733 75.537647) (xy 147.84479 75.604447) + (xy 147.775582 75.654731) (xy 147.77558 75.654733) (xy 147.775579 75.654733) (xy 147.634733 75.795579) + (xy 147.634733 75.79558) (xy 147.634731 75.795582) (xy 147.584447 75.86479) (xy 147.517647 75.956733) + (xy 147.427213 76.134219) (xy 147.365661 76.323656) (xy 147.365661 76.323659) (xy 147.3345 76.520403) + (xy 147.3345 76.719596) (xy 147.365661 76.91634) (xy 147.365661 76.916343) (xy 147.427213 77.10578) + (xy 147.427215 77.105783) (xy 147.517647 77.283266) (xy 147.634731 77.444418) (xy 147.775582 77.585269) + (xy 147.936734 77.702353) (xy 148.006453 77.737877) (xy 148.088172 77.779515) (xy 148.138968 77.82749) + (xy 148.155763 77.895311) (xy 148.133225 77.961446) (xy 148.088172 78.000485) (xy 147.936733 78.077647) + (xy 147.84479 78.144447) (xy 147.775582 78.194731) (xy 147.77558 78.194733) (xy 147.775579 78.194733) + (xy 147.634733 78.335579) (xy 147.634733 78.33558) (xy 147.634731 78.335582) (xy 147.622287 78.35271) + (xy 147.517647 78.496733) (xy 147.427213 78.674219) (xy 147.365661 78.863656) (xy 147.365661 78.863659) + (xy 147.3345 79.060403) (xy 147.3345 79.259596) (xy 147.365661 79.45634) (xy 147.365661 79.456343) + (xy 147.427213 79.64578) (xy 147.476249 79.742018) (xy 147.517647 79.823266) (xy 147.634731 79.984418) + (xy 147.775582 80.125269) (xy 147.936734 80.242353) (xy 148.006453 80.277877) (xy 148.088172 80.319515) + (xy 148.138968 80.36749) (xy 148.155763 80.435311) (xy 148.133225 80.501446) (xy 148.088172 80.540485) + (xy 147.936733 80.617647) (xy 147.84479 80.684447) (xy 147.775582 80.734731) (xy 147.77558 80.734733) + (xy 147.775579 80.734733) (xy 147.634733 80.875579) (xy 147.634733 80.87558) (xy 147.634731 80.875582) + (xy 147.584447 80.94479) (xy 147.517647 81.036733) (xy 147.427213 81.214219) (xy 147.365661 81.403656) + (xy 147.365661 81.403659) (xy 147.3345 81.600403) (xy 147.3345 81.799596) (xy 147.365661 81.99634) + (xy 147.365661 81.996343) (xy 147.427213 82.18578) (xy 147.427215 82.185783) (xy 147.517647 82.363266) + (xy 147.634731 82.524418) (xy 147.775582 82.665269) (xy 147.936734 82.782353) (xy 147.993726 82.811392) + (xy 148.088172 82.859515) (xy 148.138968 82.90749) (xy 148.155763 82.975311) (xy 148.133225 83.041446) + (xy 148.088172 83.080485) (xy 147.936733 83.157647) (xy 147.88725 83.193599) (xy 147.775582 83.274731) + (xy 147.77558 83.274733) (xy 147.775579 83.274733) (xy 147.634733 83.415579) (xy 147.634733 83.41558) + (xy 147.634731 83.415582) (xy 147.589395 83.477982) (xy 147.517647 83.576733) (xy 147.427213 83.754219) + (xy 147.365661 83.943656) (xy 147.365661 83.943659) (xy 147.3345 84.140403) (xy 147.3345 84.339596) + (xy 147.365661 84.53634) (xy 147.365661 84.536343) (xy 147.427213 84.72578) (xy 147.515035 84.89814) + (xy 147.517647 84.903266) (xy 147.634731 85.064418) (xy 147.775582 85.205269) (xy 147.936734 85.322353) + (xy 148.006453 85.357877) (xy 148.088172 85.399515) (xy 148.138968 85.44749) (xy 148.155763 85.515311) + (xy 148.133225 85.581446) (xy 148.088172 85.620485) (xy 147.936733 85.697647) (xy 147.89061 85.731158) + (xy 147.775582 85.814731) (xy 147.77558 85.814733) (xy 147.775579 85.814733) (xy 147.634733 85.955579) + (xy 147.634733 85.95558) (xy 147.634731 85.955582) (xy 147.627855 85.965046) (xy 147.517647 86.116733) + (xy 147.427213 86.294219) (xy 147.365661 86.483656) (xy 147.365661 86.483659) (xy 147.3345 86.680403) + (xy 147.3345 86.879596) (xy 147.365661 87.07634) (xy 147.365661 87.076343) (xy 147.427213 87.26578) + (xy 147.465978 87.34186) (xy 147.517647 87.443266) (xy 147.634731 87.604418) (xy 147.775582 87.745269) + (xy 147.936734 87.862353) (xy 147.994627 87.891851) (xy 148.088172 87.939515) (xy 148.138968 87.98749) + (xy 148.155763 88.055311) (xy 148.133225 88.121446) (xy 148.088172 88.160485) (xy 147.936733 88.237647) + (xy 147.84479 88.304447) (xy 147.775582 88.354731) (xy 147.77558 88.354733) (xy 147.775579 88.354733) + (xy 147.634733 88.495579) (xy 147.634733 88.49558) (xy 147.634731 88.495582) (xy 147.584447 88.56479) + (xy 147.517647 88.656733) (xy 147.427213 88.834219) (xy 147.365661 89.023656) (xy 147.365661 89.023659) + (xy 147.3345 89.220403) (xy 147.3345 89.419596) (xy 147.365661 89.61634) (xy 147.365661 89.616343) + (xy 147.427213 89.80578) (xy 147.427215 89.805783) (xy 147.517647 89.983266) (xy 147.634731 90.144418) + (xy 147.775582 90.285269) (xy 147.936734 90.402353) (xy 148.006453 90.437877) (xy 148.088172 90.479515) + (xy 148.138968 90.52749) (xy 148.155763 90.595311) (xy 148.133225 90.661446) (xy 148.088172 90.700485) + (xy 147.936733 90.777647) (xy 147.84479 90.844447) (xy 147.775582 90.894731) (xy 147.77558 90.894733) + (xy 147.775579 90.894733) (xy 147.634733 91.035579) (xy 147.634733 91.03558) (xy 147.634731 91.035582) + (xy 147.584447 91.10479) (xy 147.517647 91.196733) (xy 147.427213 91.374219) (xy 147.365661 91.563656) + (xy 147.365661 91.563659) (xy 147.3345 91.760403) (xy 147.3345 91.959596) (xy 147.365661 92.15634) + (xy 147.365661 92.156343) (xy 147.427213 92.34578) (xy 147.427215 92.345783) (xy 147.517647 92.523266) + (xy 147.634731 92.684418) (xy 147.775582 92.825269) (xy 147.936734 92.942353) (xy 148.006453 92.977877) + (xy 148.088172 93.019515) (xy 148.138968 93.06749) (xy 148.155763 93.135311) (xy 148.133225 93.201446) + (xy 148.088172 93.240485) (xy 147.936733 93.317647) (xy 147.84479 93.384447) (xy 147.775582 93.434731) + (xy 147.77558 93.434733) (xy 147.775579 93.434733) (xy 147.634733 93.575579) (xy 147.634733 93.57558) + (xy 147.634731 93.575582) (xy 147.584447 93.64479) (xy 147.517647 93.736733) (xy 147.427213 93.914219) + (xy 147.365661 94.103656) (xy 147.365661 94.103659) (xy 147.3345 94.300403) (xy 147.3345 94.499596) + (xy 147.365661 94.69634) (xy 147.365661 94.696343) (xy 147.427213 94.88578) (xy 147.427215 94.885783) + (xy 147.517647 95.063266) (xy 147.634731 95.224418) (xy 147.775582 95.365269) (xy 147.936734 95.482353) + (xy 148.006453 95.517877) (xy 148.088172 95.559515) (xy 148.138968 95.60749) (xy 148.155763 95.675311) + (xy 148.133225 95.741446) (xy 148.088172 95.780485) (xy 147.936733 95.857647) (xy 147.84479 95.924447) + (xy 147.775582 95.974731) (xy 147.77558 95.974733) (xy 147.775579 95.974733) (xy 147.634733 96.115579) + (xy 147.634733 96.11558) (xy 147.634731 96.115582) (xy 147.584447 96.18479) (xy 147.517647 96.276733) + (xy 147.427213 96.454219) (xy 147.365661 96.643656) (xy 147.365661 96.643659) (xy 147.3345 96.840403) + (xy 147.3345 97.039596) (xy 147.365661 97.23634) (xy 147.365661 97.236343) (xy 147.427213 97.42578) + (xy 147.485212 97.539609) (xy 147.517647 97.603266) (xy 147.634731 97.764418) (xy 147.775582 97.905269) + (xy 147.936734 98.022353) (xy 148.006453 98.057877) (xy 148.088172 98.099515) (xy 148.138968 98.14749) + (xy 148.155763 98.215311) (xy 148.133225 98.281446) (xy 148.088172 98.320485) (xy 147.936733 98.397647) + (xy 147.84479 98.464447) (xy 147.775582 98.514731) (xy 147.77558 98.514733) (xy 147.775579 98.514733) + (xy 147.634733 98.655579) (xy 147.634733 98.65558) (xy 147.634731 98.655582) (xy 147.584447 98.72479) + (xy 147.517647 98.816733) (xy 147.427213 98.994219) (xy 147.365661 99.183656) (xy 147.365661 99.183659) + (xy 147.3345 99.380403) (xy 147.3345 99.579596) (xy 147.365661 99.77634) (xy 147.365661 99.776343) + (xy 147.427213 99.96578) (xy 147.490813 100.090602) (xy 147.517647 100.143266) (xy 147.634731 100.304418) + (xy 147.775582 100.445269) (xy 147.936734 100.562353) (xy 147.944893 100.56651) (xy 148.088172 100.639515) + (xy 148.138968 100.68749) (xy 148.155763 100.755311) (xy 148.133225 100.821446) (xy 148.088172 100.860485) + (xy 147.936733 100.937647) (xy 147.84479 101.004447) (xy 147.775582 101.054731) (xy 147.77558 101.054733) + (xy 147.775579 101.054733) (xy 147.634733 101.195579) (xy 147.634733 101.19558) (xy 147.634731 101.195582) + (xy 147.592659 101.253489) (xy 147.517647 101.356733) (xy 147.427213 101.534219) (xy 147.365661 101.723656) + (xy 147.365661 101.723659) (xy 147.3345 101.920403) (xy 147.3345 102.119596) (xy 147.365661 102.31634) + (xy 147.365661 102.316343) (xy 147.427213 102.50578) (xy 147.427215 102.505783) (xy 147.517647 102.683266) + (xy 147.634731 102.844418) (xy 147.775582 102.985269) (xy 147.936734 103.102353) (xy 148.006453 103.137877) + (xy 148.088172 103.179515) (xy 148.138968 103.22749) (xy 148.155763 103.295311) (xy 148.133225 103.361446) + (xy 148.088172 103.400485) (xy 147.936733 103.477647) (xy 147.84479 103.544447) (xy 147.775582 103.594731) + (xy 147.77558 103.594733) (xy 147.775579 103.594733) (xy 147.634733 103.735579) (xy 147.634733 103.73558) + (xy 147.634731 103.735582) (xy 147.584447 103.80479) (xy 147.517647 103.896733) (xy 147.427213 104.074219) + (xy 147.365661 104.263656) (xy 147.365661 104.263659) (xy 147.3345 104.460403) (xy 147.3345 104.659596) + (xy 147.365661 104.85634) (xy 147.365661 104.856343) (xy 147.427213 105.04578) (xy 147.427215 105.045783) + (xy 147.517647 105.223266) (xy 147.634731 105.384418) (xy 147.775582 105.525269) (xy 147.936734 105.642353) + (xy 148.006453 105.677877) (xy 148.088172 105.719515) (xy 148.138968 105.76749) (xy 148.155763 105.835311) + (xy 148.133225 105.901446) (xy 148.088172 105.940485) (xy 147.936733 106.017647) (xy 147.84479 106.084447) + (xy 147.775582 106.134731) (xy 147.77558 106.134733) (xy 147.775579 106.134733) (xy 147.634733 106.275579) + (xy 147.634733 106.27558) (xy 147.634731 106.275582) (xy 147.584447 106.34479) (xy 147.517647 106.436733) + (xy 147.427213 106.614219) (xy 147.365661 106.803656) (xy 147.365661 106.803659) (xy 147.3345 107.000403) + (xy 147.3345 107.199596) (xy 147.365661 107.39634) (xy 147.365661 107.396343) (xy 147.427213 107.58578) + (xy 147.427215 107.585783) (xy 147.517647 107.763266) (xy 147.634731 107.924418) (xy 147.775582 108.065269) + (xy 147.936734 108.182353) (xy 148.006453 108.217877) (xy 148.088172 108.259515) (xy 148.138968 108.30749) + (xy 148.155763 108.375311) (xy 148.133225 108.441446) (xy 148.088172 108.480485) (xy 147.936733 108.557647) + (xy 147.84479 108.624447) (xy 147.775582 108.674731) (xy 147.77558 108.674733) (xy 147.775579 108.674733) + (xy 147.634733 108.815579) (xy 147.634733 108.81558) (xy 147.634731 108.815582) (xy 147.607491 108.853075) + (xy 147.517647 108.976733) (xy 147.427213 109.154219) (xy 147.365661 109.343656) (xy 147.365661 109.343659) + (xy 147.3345 109.540403) (xy 147.3345 109.739596) (xy 147.365661 109.93634) (xy 147.365661 109.936343) + (xy 147.427213 110.12578) (xy 147.510548 110.289334) (xy 147.517647 110.303266) (xy 147.634731 110.464418) + (xy 147.775582 110.605269) (xy 147.936734 110.722353) (xy 147.989917 110.749451) (xy 148.088172 110.799515) + (xy 148.138968 110.84749) (xy 148.155763 110.915311) (xy 148.133225 110.981446) (xy 148.088172 111.020485) + (xy 147.936733 111.097647) (xy 147.844832 111.164418) (xy 147.775582 111.214731) (xy 147.77558 111.214733) + (xy 147.775579 111.214733) (xy 147.634733 111.355579) (xy 147.634733 111.35558) (xy 147.634731 111.355582) + (xy 147.628311 111.364419) (xy 147.517647 111.516733) (xy 147.427213 111.694219) (xy 147.365661 111.883656) + (xy 147.365661 111.883659) (xy 147.3345 112.080403) (xy 147.3345 112.279596) (xy 147.365661 112.47634) + (xy 147.365661 112.476343) (xy 147.427213 112.66578) (xy 147.48782 112.784727) (xy 147.517647 112.843266) + (xy 147.634731 113.004418) (xy 147.775582 113.145269) (xy 147.936734 113.262353) (xy 148.002527 113.295876) + (xy 148.088172 113.339515) (xy 148.138968 113.38749) (xy 148.155763 113.455311) (xy 148.133225 113.521446) + (xy 148.088172 113.560485) (xy 147.936733 113.637647) (xy 147.865074 113.689711) (xy 147.775582 113.754731) + (xy 147.77558 113.754733) (xy 147.775579 113.754733) (xy 147.634733 113.895579) (xy 147.634733 113.89558) + (xy 147.634731 113.895582) (xy 147.634729 113.895585) (xy 147.517647 114.056733) (xy 147.427213 114.234219) + (xy 147.365661 114.423656) (xy 147.365661 114.423659) (xy 147.3345 114.620403) (xy 147.3345 114.819596) + (xy 147.365661 115.01634) (xy 147.365661 115.016343) (xy 147.427213 115.20578) (xy 147.448833 115.248211) + (xy 147.517647 115.383266) (xy 147.634731 115.544418) (xy 147.775582 115.685269) (xy 147.936734 115.802353) + (xy 148.006453 115.837877) (xy 148.088172 115.879515) (xy 148.138968 115.92749) (xy 148.155763 115.995311) + (xy 148.133225 116.061446) (xy 148.088172 116.100485) (xy 147.936733 116.177647) (xy 147.898286 116.205581) + (xy 147.775582 116.294731) (xy 147.77558 116.294733) (xy 147.775579 116.294733) (xy 147.634733 116.435579) + (xy 147.634733 116.43558) (xy 147.634731 116.435582) (xy 147.593896 116.491786) (xy 147.517647 116.596733) + (xy 147.427213 116.774219) (xy 147.365661 116.963656) (xy 147.365661 116.963659) (xy 147.3345 117.160403) + (xy 147.3345 117.359597) (xy 147.344196 117.420814) (xy 147.365661 117.55634) (xy 147.365661 117.556343) + (xy 147.427213 117.74578) (xy 147.474371 117.838332) (xy 147.517647 117.923266) (xy 147.634731 118.084418) + (xy 147.775582 118.225269) (xy 147.936734 118.342353) (xy 148.009009 118.379179) (xy 148.088722 118.419795) + (xy 148.139518 118.46777) (xy 148.156313 118.535591) (xy 148.133776 118.601726) (xy 148.088723 118.640764) + (xy 147.936993 118.718075) (xy 147.899135 118.74558) (xy 147.899135 118.745581) (xy 148.462425 119.308871) + (xy 148.403147 119.324755) (xy 148.286853 119.391898) (xy 148.191898 119.486853) (xy 148.124755 119.603147) + (xy 148.108871 119.662425) (xy 147.545581 119.099135) (xy 147.54558 119.099135) (xy 147.518077 119.13699) + (xy 147.427679 119.314405) (xy 147.366147 119.503777) (xy 147.335 119.700436) (xy 147.335 119.899563) + (xy 147.366147 120.096222) (xy 147.427679 120.285594) (xy 147.518077 120.463008) (xy 147.54558 120.500863) + (xy 147.545581 120.500864) (xy 148.108871 119.937574) (xy 148.124755 119.996853) (xy 148.191898 120.113147) + (xy 148.286853 120.208102) (xy 148.403147 120.275245) (xy 148.462425 120.291128) (xy 147.899134 120.854417) + (xy 147.936994 120.881924) (xy 148.114405 120.97232) (xy 148.303777 121.033852) (xy 148.500437 121.065) + (xy 148.699563 121.065) (xy 148.896222 121.033852) (xy 149.085594 120.97232) (xy 149.263005 120.881924) + (xy 149.300863 120.854418) (xy 149.300863 120.854417) (xy 148.737574 120.291128) (xy 148.796853 120.275245) + (xy 148.913147 120.208102) (xy 149.008102 120.113147) (xy 149.075245 119.996853) (xy 149.091128 119.937574) + (xy 149.654417 120.500863) (xy 149.654418 120.500863) (xy 149.681924 120.463005) (xy 149.77232 120.285594) + (xy 149.833852 120.096222) (xy 149.865 119.899563) (xy 149.865 119.700436) (xy 149.833852 119.503777) + (xy 149.77232 119.314405) (xy 149.681924 119.136994) (xy 149.654417 119.099135) (xy 149.654417 119.099134) + (xy 149.091128 119.662424) (xy 149.075245 119.603147) (xy 149.008102 119.486853) (xy 148.913147 119.391898) + (xy 148.796853 119.324755) (xy 148.737574 119.308871) (xy 149.300864 118.745581) (xy 149.300863 118.74558) + (xy 149.263008 118.718077) (xy 149.111277 118.640765) (xy 149.060481 118.59279) (xy 149.043686 118.524969) + (xy 149.066224 118.458834) (xy 149.111277 118.419795) (xy 149.111827 118.419515) (xy 149.263266 118.342353) + (xy 149.424418 118.225269) (xy 149.565269 118.084418) (xy 149.682353 117.923266) (xy 149.772785 117.745783) + (xy 149.795216 117.676747) (xy 149.834338 117.556343) (xy 149.834338 117.556342) (xy 149.834339 117.556339) + (xy 149.8655 117.359597) (xy 149.8655 117.160403) (xy 149.834339 116.963661) (xy 149.834338 116.963657) + (xy 149.834338 116.963656) (xy 149.772786 116.774219) (xy 149.760446 116.75) (xy 149.682353 116.596734) + (xy 149.565269 116.435582) (xy 149.424418 116.294731) (xy 149.263266 116.177647) (xy 149.117723 116.103489) + (xy 149.111827 116.100485) (xy 149.061031 116.05251) (xy 149.044236 115.984689) (xy 149.066773 115.918554) + (xy 149.111827 115.879515) (xy 149.121116 115.874781) (xy 149.263266 115.802353) (xy 149.424418 115.685269) + (xy 149.565269 115.544418) (xy 149.682353 115.383266) (xy 149.772785 115.205783) (xy 149.772786 115.20578) + (xy 149.834338 115.016343) (xy 149.834338 115.016342) (xy 149.834339 115.016339) (xy 149.8655 114.819597) + (xy 149.8655 114.620403) (xy 149.834339 114.423661) (xy 149.834338 114.423657) (xy 149.834338 114.423656) + (xy 149.772786 114.234219) (xy 149.765795 114.220499) (xy 149.682353 114.056734) (xy 149.565269 113.895582) + (xy 149.424418 113.754731) (xy 149.263266 113.637647) (xy 149.111827 113.560485) (xy 149.061031 113.51251) + (xy 149.044236 113.444689) (xy 149.066773 113.378554) (xy 149.111827 113.339515) (xy 149.168558 113.310609) + (xy 149.263266 113.262353) (xy 149.424418 113.145269) (xy 149.565269 113.004418) (xy 149.682353 112.843266) + (xy 149.772785 112.665783) (xy 149.799117 112.584741) (xy 149.834338 112.476343) (xy 149.834338 112.476342) + (xy 149.834339 112.476339) (xy 149.8655 112.279597) (xy 149.8655 112.080403) (xy 149.834339 111.883661) + (xy 149.834338 111.883657) (xy 149.834338 111.883656) (xy 149.772786 111.694219) (xy 149.767479 111.683803) + (xy 149.682353 111.516734) (xy 149.565269 111.355582) (xy 149.424418 111.214731) (xy 149.263266 111.097647) + (xy 149.261309 111.09665) (xy 149.111827 111.020485) (xy 149.061031 110.97251) (xy 149.044236 110.904689) + (xy 149.066773 110.838554) (xy 149.111827 110.799515) (xy 149.121116 110.794781) (xy 149.263266 110.722353) + (xy 149.424418 110.605269) (xy 149.565269 110.464418) (xy 149.682353 110.303266) (xy 149.772785 110.125783) + (xy 149.807151 110.020015) (xy 149.834338 109.936343) (xy 149.834338 109.936342) (xy 149.834339 109.936339) + (xy 149.8655 109.739597) (xy 149.8655 109.540403) (xy 149.834339 109.343661) (xy 149.834338 109.343657) + (xy 149.834338 109.343656) (xy 149.772786 109.154219) (xy 149.721251 109.053076) (xy 149.682353 108.976734) + (xy 149.565269 108.815582) (xy 149.424418 108.674731) (xy 149.263266 108.557647) (xy 149.111827 108.480485) + (xy 149.061031 108.43251) (xy 149.044236 108.364689) (xy 149.066773 108.298554) (xy 149.111827 108.259515) + (xy 149.121116 108.254781) (xy 149.263266 108.182353) (xy 149.424418 108.065269) (xy 149.565269 107.924418) + (xy 149.682353 107.763266) (xy 149.772785 107.585783) (xy 149.775147 107.578513) (xy 149.834338 107.396343) + (xy 149.834338 107.396342) (xy 149.834339 107.396339) (xy 149.8655 107.199597) (xy 149.8655 107.000403) + (xy 149.834339 106.803661) (xy 149.834338 106.803657) (xy 149.834338 106.803656) (xy 149.772786 106.614219) + (xy 149.682352 106.436733) (xy 149.565269 106.275582) (xy 149.424418 106.134731) (xy 149.263266 106.017647) + (xy 149.111827 105.940485) (xy 149.061031 105.89251) (xy 149.044236 105.824689) (xy 149.066773 105.758554) + (xy 149.111827 105.719515) (xy 149.121116 105.714781) (xy 149.263266 105.642353) (xy 149.424418 105.525269) + (xy 149.565269 105.384418) (xy 149.682353 105.223266) (xy 149.772785 105.045783) (xy 149.834339 104.856339) + (xy 149.8655 104.659597) (xy 149.8655 104.460403) (xy 149.834339 104.263661) (xy 149.834338 104.263657) + (xy 149.834338 104.263656) (xy 149.772786 104.074219) (xy 149.73986 104.009598) (xy 149.682353 103.896734) + (xy 149.565269 103.735582) (xy 149.424418 103.594731) (xy 149.263266 103.477647) (xy 149.111827 103.400485) + (xy 149.061031 103.35251) (xy 149.044236 103.284689) (xy 149.066773 103.218554) (xy 149.111827 103.179515) + (xy 149.130501 103.17) (xy 149.263266 103.102353) (xy 149.424418 102.985269) (xy 149.565269 102.844418) + (xy 149.682353 102.683266) (xy 149.772785 102.505783) (xy 149.834339 102.316339) (xy 149.8655 102.119597) + (xy 149.8655 101.920403) (xy 149.834339 101.723661) (xy 149.834338 101.723657) (xy 149.834338 101.723656) + (xy 149.772786 101.534219) (xy 149.7155 101.421789) (xy 149.682353 101.356734) (xy 149.565269 101.195582) + (xy 149.424418 101.054731) (xy 149.263266 100.937647) (xy 149.210719 100.910873) (xy 149.111827 100.860485) + (xy 149.061031 100.81251) (xy 149.044236 100.744689) (xy 149.066773 100.678554) (xy 149.111827 100.639515) + (xy 149.121116 100.634781) (xy 149.263266 100.562353) (xy 149.424418 100.445269) (xy 149.565269 100.304418) + (xy 149.682353 100.143266) (xy 149.772785 99.965783) (xy 149.834339 99.776339) (xy 149.8655 99.579597) + (xy 149.8655 99.380403) (xy 149.834339 99.183661) (xy 149.834338 99.183657) (xy 149.834338 99.183656) + (xy 149.772786 98.994219) (xy 149.709895 98.870789) (xy 149.682353 98.816734) (xy 149.565269 98.655582) + (xy 149.424418 98.514731) (xy 149.263266 98.397647) (xy 149.111827 98.320485) (xy 149.061031 98.27251) + (xy 149.044236 98.204689) (xy 149.066773 98.138554) (xy 149.111827 98.099515) (xy 149.121116 98.094781) + (xy 149.263266 98.022353) (xy 149.424418 97.905269) (xy 149.565269 97.764418) (xy 149.682353 97.603266) + (xy 149.772785 97.425783) (xy 149.834339 97.236339) (xy 149.8655 97.039597) (xy 149.8655 96.840403) + (xy 149.834339 96.643661) (xy 149.834338 96.643657) (xy 149.834338 96.643656) (xy 149.772786 96.454219) + (xy 149.682352 96.276733) (xy 149.565269 96.115582) (xy 149.424418 95.974731) (xy 149.263266 95.857647) + (xy 149.111827 95.780485) (xy 149.061031 95.73251) (xy 149.044236 95.664689) (xy 149.066773 95.598554) + (xy 149.111827 95.559515) (xy 149.121116 95.554781) (xy 149.263266 95.482353) (xy 149.424418 95.365269) + (xy 149.565269 95.224418) (xy 149.682353 95.063266) (xy 149.772785 94.885783) (xy 149.834339 94.696339) + (xy 149.8655 94.499597) (xy 149.8655 94.300403) (xy 149.834339 94.103661) (xy 149.834338 94.103657) + (xy 149.834338 94.103656) (xy 149.772786 93.914219) (xy 149.682352 93.736733) (xy 149.565269 93.575582) + (xy 149.424418 93.434731) (xy 149.263266 93.317647) (xy 149.111827 93.240485) (xy 149.061031 93.19251) + (xy 149.044236 93.124689) (xy 149.066773 93.058554) (xy 149.111827 93.019515) (xy 149.121116 93.014781) + (xy 149.263266 92.942353) (xy 149.424418 92.825269) (xy 149.565269 92.684418) (xy 149.682353 92.523266) + (xy 149.772785 92.345783) (xy 149.834339 92.156339) (xy 149.8655 91.959597) (xy 149.8655 91.760403) + (xy 149.834339 91.563661) (xy 149.834338 91.563657) (xy 149.834338 91.563656) (xy 149.772786 91.374219) + (xy 149.682352 91.196733) (xy 149.565269 91.035582) (xy 149.424418 90.894731) (xy 149.263266 90.777647) + (xy 149.111827 90.700485) (xy 149.061031 90.65251) (xy 149.044236 90.584689) (xy 149.066773 90.518554) + (xy 149.111827 90.479515) (xy 149.121116 90.474781) (xy 149.263266 90.402353) (xy 149.424418 90.285269) + (xy 149.565269 90.144418) (xy 149.682353 89.983266) (xy 149.772785 89.805783) (xy 149.834339 89.616339) + (xy 149.8655 89.419597) (xy 149.8655 89.220403) (xy 149.834339 89.023661) (xy 149.834338 89.023657) + (xy 149.834338 89.023656) (xy 149.772786 88.834219) (xy 149.682352 88.656733) (xy 149.565269 88.495582) + (xy 149.424418 88.354731) (xy 149.263266 88.237647) (xy 149.111827 88.160485) (xy 149.061031 88.11251) + (xy 149.044236 88.044689) (xy 149.066773 87.978554) (xy 149.111827 87.939515) (xy 149.153279 87.918394) + (xy 149.263266 87.862353) (xy 149.424418 87.745269) (xy 149.565269 87.604418) (xy 149.682353 87.443266) + (xy 149.772785 87.265783) (xy 149.789474 87.214419) (xy 149.834338 87.076343) (xy 149.834338 87.076342) + (xy 149.834339 87.076339) (xy 149.8655 86.879597) (xy 149.8655 86.680403) (xy 149.834339 86.483661) + (xy 149.834338 86.483657) (xy 149.834338 86.483656) (xy 149.772786 86.294219) (xy 149.72139 86.193349) + (xy 149.682353 86.116734) (xy 149.565269 85.955582) (xy 149.424418 85.814731) (xy 149.263266 85.697647) + (xy 149.111827 85.620485) (xy 149.061031 85.57251) (xy 149.044236 85.504689) (xy 149.066773 85.438554) + (xy 149.111827 85.399515) (xy 149.1588 85.375581) (xy 149.263266 85.322353) (xy 149.424418 85.205269) + (xy 149.565269 85.064418) (xy 149.682353 84.903266) (xy 149.772785 84.725783) (xy 149.775838 84.716387) + (xy 149.834338 84.536343) (xy 149.834338 84.536342) (xy 149.834339 84.536339) (xy 149.8655 84.339597) + (xy 149.8655 84.140403) (xy 149.834339 83.943661) (xy 149.834338 83.943657) (xy 149.834338 83.943656) + (xy 149.772786 83.754219) (xy 149.75931 83.72777) (xy 149.682353 83.576734) (xy 149.565269 83.415582) + (xy 149.424418 83.274731) (xy 149.263266 83.157647) (xy 149.111827 83.080485) (xy 149.061031 83.03251) + (xy 149.044236 82.964689) (xy 149.066773 82.898554) (xy 149.111827 82.859515) (xy 149.121116 82.854781) + (xy 149.263266 82.782353) (xy 149.424418 82.665269) (xy 149.565269 82.524418) (xy 149.682353 82.363266) + (xy 149.772785 82.185783) (xy 149.834339 81.996339) (xy 149.8655 81.799597) (xy 149.8655 81.600403) + (xy 149.834339 81.403661) (xy 149.834338 81.403657) (xy 149.834338 81.403656) (xy 149.772786 81.214219) + (xy 149.682352 81.036733) (xy 149.565269 80.875582) (xy 149.424418 80.734731) (xy 149.263266 80.617647) + (xy 149.111827 80.540485) (xy 149.061031 80.49251) (xy 149.044236 80.424689) (xy 149.066773 80.358554) + (xy 149.111827 80.319515) (xy 149.121116 80.314781) (xy 149.263266 80.242353) (xy 149.424418 80.125269) + (xy 149.565269 79.984418) (xy 149.682353 79.823266) (xy 149.772785 79.645783) (xy 149.834339 79.456339) + (xy 149.8655 79.259597) (xy 149.8655 79.060403) (xy 149.834339 78.863661) (xy 149.834338 78.863657) + (xy 149.834338 78.863656) (xy 149.772786 78.674219) (xy 149.689367 78.5105) (xy 149.682353 78.496734) + (xy 149.565269 78.335582) (xy 149.424418 78.194731) (xy 149.263266 78.077647) (xy 149.111827 78.000485) + (xy 149.061031 77.95251) (xy 149.044236 77.884689) (xy 149.066773 77.818554) (xy 149.111827 77.779515) + (xy 149.121116 77.774781) (xy 149.263266 77.702353) (xy 149.424418 77.585269) (xy 149.565269 77.444418) + (xy 149.682353 77.283266) (xy 149.772785 77.105783) (xy 149.834339 76.916339) (xy 149.8655 76.719597) + (xy 149.8655 76.520403) (xy 149.834339 76.323661) (xy 149.834338 76.323657) (xy 149.834338 76.323656) + (xy 149.772786 76.134219) (xy 149.682352 75.956733) (xy 149.565269 75.795582) (xy 149.424418 75.654731) + (xy 149.263266 75.537647) (xy 149.111827 75.460485) (xy 149.061031 75.41251) (xy 149.044236 75.344689) + (xy 149.066773 75.278554) (xy 149.111827 75.239515) (xy 149.121116 75.234781) (xy 149.263266 75.162353) + (xy 149.424418 75.045269) (xy 149.565269 74.904418) (xy 149.682353 74.743266) (xy 149.772785 74.565783) + (xy 149.82692 74.399172) (xy 149.834338 74.376343) (xy 149.834338 74.376342) (xy 149.834339 74.376339) + (xy 149.8655 74.179597) (xy 149.8655 73.980403) (xy 149.834339 73.783661) (xy 149.834338 73.783657) + (xy 149.834338 73.783656) (xy 149.772786 73.594219) (xy 149.743593 73.536924) (xy 149.682353 73.416734) + (xy 149.565269 73.255582) (xy 149.424418 73.114731) (xy 149.263266 72.997647) (xy 149.111827 72.920485) + (xy 149.061031 72.87251) (xy 149.044236 72.804689) (xy 149.066773 72.738554) (xy 149.111827 72.699515) + (xy 149.121116 72.694781) (xy 149.263266 72.622353) (xy 149.424418 72.505269) (xy 149.565269 72.364418) + (xy 149.682353 72.203266) (xy 149.772785 72.025783) (xy 149.780796 72.001127) (xy 149.834338 71.836343) + (xy 149.834338 71.836342) (xy 149.834339 71.836339) (xy 149.8655 71.639597) (xy 149.8655 71.440403) + (xy 149.834339 71.243661) (xy 149.834338 71.243657) (xy 149.834338 71.243656) (xy 149.772786 71.054219) + (xy 149.75321 71.015799) (xy 149.682353 70.876734) (xy 149.565269 70.715582) (xy 149.424418 70.574731) + (xy 149.263266 70.457647) (xy 149.111827 70.380485) (xy 149.061031 70.33251) (xy 149.044236 70.264689) + (xy 149.066773 70.198554) (xy 149.111827 70.159515) (xy 149.124466 70.153075) (xy 149.263266 70.082353) + (xy 149.424418 69.965269) (xy 149.565269 69.824418) (xy 149.682353 69.663266) (xy 149.772785 69.485783) + (xy 149.834339 69.296339) (xy 149.8655 69.099597) (xy 149.8655 68.900403) (xy 170.1945 68.900403) + (xy 170.1945 69.099596) (xy 170.225661 69.29634) (xy 170.225661 69.296343) (xy 170.287213 69.48578) + (xy 170.287215 69.485783) (xy 170.377647 69.663266) (xy 170.494731 69.824418) (xy 170.635582 69.965269) + (xy 170.796734 70.082353) (xy 170.838689 70.10373) (xy 170.948172 70.159515) (xy 170.998968 70.20749) + (xy 171.015763 70.275311) (xy 170.993225 70.341446) (xy 170.948172 70.380485) (xy 170.796733 70.457647) + (xy 170.70479 70.524447) (xy 170.635582 70.574731) (xy 170.63558 70.574733) (xy 170.635579 70.574733) + (xy 170.494733 70.715579) (xy 170.494733 70.71558) (xy 170.494731 70.715582) (xy 170.444447 70.78479) + (xy 170.377647 70.876733) (xy 170.287213 71.054219) (xy 170.225661 71.243656) (xy 170.225661 71.243659) + (xy 170.223377 71.258081) (xy 170.1945 71.440403) (xy 170.1945 71.639597) (xy 170.202306 71.68888) + (xy 170.225661 71.83634) (xy 170.225661 71.836343) (xy 170.287213 72.02578) (xy 170.316681 72.083613) + (xy 170.377647 72.203266) (xy 170.494731 72.364418) (xy 170.635582 72.505269) (xy 170.796734 72.622353) + (xy 170.866453 72.657877) (xy 170.948172 72.699515) (xy 170.998968 72.74749) (xy 171.015763 72.815311) + (xy 170.993225 72.881446) (xy 170.948172 72.920485) (xy 170.796733 72.997647) (xy 170.771056 73.016303) + (xy 170.635582 73.114731) (xy 170.63558 73.114733) (xy 170.635579 73.114733) (xy 170.494733 73.255579) + (xy 170.494733 73.25558) (xy 170.494731 73.255582) (xy 170.444447 73.32479) (xy 170.377647 73.416733) + (xy 170.287213 73.594219) (xy 170.225661 73.783656) (xy 170.225661 73.783659) (xy 170.1945 73.980403) + (xy 170.1945 74.179596) (xy 170.225661 74.37634) (xy 170.225661 74.376343) (xy 170.287213 74.56578) + (xy 170.287215 74.565783) (xy 170.377647 74.743266) (xy 170.494731 74.904418) (xy 170.635582 75.045269) + (xy 170.796734 75.162353) (xy 170.866453 75.197877) (xy 170.948172 75.239515) (xy 170.998968 75.28749) + (xy 171.015763 75.355311) (xy 170.993225 75.421446) (xy 170.948172 75.460485) (xy 170.796733 75.537647) + (xy 170.70479 75.604447) (xy 170.635582 75.654731) (xy 170.63558 75.654733) (xy 170.635579 75.654733) + (xy 170.494733 75.795579) (xy 170.494733 75.79558) (xy 170.494731 75.795582) (xy 170.444447 75.86479) + (xy 170.377647 75.956733) (xy 170.287213 76.134219) (xy 170.225661 76.323656) (xy 170.225661 76.323659) + (xy 170.1945 76.520403) (xy 170.1945 76.719596) (xy 170.225661 76.91634) (xy 170.225661 76.916343) + (xy 170.287213 77.10578) (xy 170.287215 77.105783) (xy 170.377647 77.283266) (xy 170.494731 77.444418) + (xy 170.635582 77.585269) (xy 170.796734 77.702353) (xy 170.866453 77.737877) (xy 170.948172 77.779515) + (xy 170.998968 77.82749) (xy 171.015763 77.895311) (xy 170.993225 77.961446) (xy 170.948172 78.000485) + (xy 170.796733 78.077647) (xy 170.70479 78.144447) (xy 170.635582 78.194731) (xy 170.63558 78.194733) + (xy 170.635579 78.194733) (xy 170.494733 78.335579) (xy 170.494733 78.33558) (xy 170.494731 78.335582) + (xy 170.482287 78.35271) (xy 170.377647 78.496733) (xy 170.287213 78.674219) (xy 170.225661 78.863656) + (xy 170.225661 78.863659) (xy 170.1945 79.060403) (xy 170.1945 79.259596) (xy 170.225661 79.45634) + (xy 170.225661 79.456343) (xy 170.287213 79.64578) (xy 170.336249 79.742018) (xy 170.377647 79.823266) + (xy 170.494731 79.984418) (xy 170.635582 80.125269) (xy 170.796734 80.242353) (xy 170.866453 80.277877) + (xy 170.948172 80.319515) (xy 170.998968 80.36749) (xy 171.015763 80.435311) (xy 170.993225 80.501446) + (xy 170.948172 80.540485) (xy 170.796733 80.617647) (xy 170.70479 80.684447) (xy 170.635582 80.734731) + (xy 170.63558 80.734733) (xy 170.635579 80.734733) (xy 170.494733 80.875579) (xy 170.494733 80.87558) + (xy 170.494731 80.875582) (xy 170.444447 80.94479) (xy 170.377647 81.036733) (xy 170.287213 81.214219) + (xy 170.225661 81.403656) (xy 170.225661 81.403659) (xy 170.1945 81.600403) (xy 170.1945 81.799596) + (xy 170.225661 81.99634) (xy 170.225661 81.996343) (xy 170.287213 82.18578) (xy 170.287215 82.185783) + (xy 170.377647 82.363266) (xy 170.494731 82.524418) (xy 170.635582 82.665269) (xy 170.796734 82.782353) + (xy 170.853726 82.811392) (xy 170.948172 82.859515) (xy 170.998968 82.90749) (xy 171.015763 82.975311) + (xy 170.993225 83.041446) (xy 170.948172 83.080485) (xy 170.796733 83.157647) (xy 170.74725 83.193599) + (xy 170.635582 83.274731) (xy 170.63558 83.274733) (xy 170.635579 83.274733) (xy 170.494733 83.415579) + (xy 170.494733 83.41558) (xy 170.494731 83.415582) (xy 170.449395 83.477982) (xy 170.377647 83.576733) + (xy 170.287213 83.754219) (xy 170.225661 83.943656) (xy 170.225661 83.943659) (xy 170.1945 84.140403) + (xy 170.1945 84.339596) (xy 170.225661 84.53634) (xy 170.225661 84.536343) (xy 170.287213 84.72578) + (xy 170.375035 84.89814) (xy 170.377647 84.903266) (xy 170.494731 85.064418) (xy 170.635582 85.205269) + (xy 170.796734 85.322353) (xy 170.866453 85.357877) (xy 170.948172 85.399515) (xy 170.998968 85.44749) + (xy 171.015763 85.515311) (xy 170.993225 85.581446) (xy 170.948172 85.620485) (xy 170.796733 85.697647) + (xy 170.75061 85.731158) (xy 170.635582 85.814731) (xy 170.63558 85.814733) (xy 170.635579 85.814733) + (xy 170.494733 85.955579) (xy 170.494733 85.95558) (xy 170.494731 85.955582) (xy 170.487855 85.965046) + (xy 170.377647 86.116733) (xy 170.287213 86.294219) (xy 170.225661 86.483656) (xy 170.225661 86.483659) + (xy 170.1945 86.680403) (xy 170.1945 86.879596) (xy 170.225661 87.07634) (xy 170.225661 87.076343) + (xy 170.287213 87.26578) (xy 170.325978 87.34186) (xy 170.377647 87.443266) (xy 170.494731 87.604418) + (xy 170.635582 87.745269) (xy 170.796734 87.862353) (xy 170.854627 87.891851) (xy 170.948172 87.939515) + (xy 170.998968 87.98749) (xy 171.015763 88.055311) (xy 170.993225 88.121446) (xy 170.948172 88.160485) + (xy 170.796733 88.237647) (xy 170.70479 88.304447) (xy 170.635582 88.354731) (xy 170.63558 88.354733) + (xy 170.635579 88.354733) (xy 170.494733 88.495579) (xy 170.494733 88.49558) (xy 170.494731 88.495582) + (xy 170.444447 88.56479) (xy 170.377647 88.656733) (xy 170.287213 88.834219) (xy 170.225661 89.023656) + (xy 170.225661 89.023659) (xy 170.1945 89.220403) (xy 170.1945 89.419596) (xy 170.225661 89.61634) + (xy 170.225661 89.616343) (xy 170.287213 89.80578) (xy 170.287215 89.805783) (xy 170.377647 89.983266) + (xy 170.494731 90.144418) (xy 170.635582 90.285269) (xy 170.796734 90.402353) (xy 170.866453 90.437877) + (xy 170.948172 90.479515) (xy 170.998968 90.52749) (xy 171.015763 90.595311) (xy 170.993225 90.661446) + (xy 170.948172 90.700485) (xy 170.796733 90.777647) (xy 170.70479 90.844447) (xy 170.635582 90.894731) + (xy 170.63558 90.894733) (xy 170.635579 90.894733) (xy 170.494733 91.035579) (xy 170.494733 91.03558) + (xy 170.494731 91.035582) (xy 170.444447 91.10479) (xy 170.377647 91.196733) (xy 170.287213 91.374219) + (xy 170.225661 91.563656) (xy 170.225661 91.563659) (xy 170.1945 91.760403) (xy 170.1945 91.959596) + (xy 170.225661 92.15634) (xy 170.225661 92.156343) (xy 170.287213 92.34578) (xy 170.287215 92.345783) + (xy 170.377647 92.523266) (xy 170.494731 92.684418) (xy 170.635582 92.825269) (xy 170.796734 92.942353) + (xy 170.866453 92.977877) (xy 170.948172 93.019515) (xy 170.998968 93.06749) (xy 171.015763 93.135311) + (xy 170.993225 93.201446) (xy 170.948172 93.240485) (xy 170.796733 93.317647) (xy 170.70479 93.384447) + (xy 170.635582 93.434731) (xy 170.63558 93.434733) (xy 170.635579 93.434733) (xy 170.494733 93.575579) + (xy 170.494733 93.57558) (xy 170.494731 93.575582) (xy 170.444447 93.64479) (xy 170.377647 93.736733) + (xy 170.287213 93.914219) (xy 170.225661 94.103656) (xy 170.225661 94.103659) (xy 170.1945 94.300403) + (xy 170.1945 94.499596) (xy 170.225661 94.69634) (xy 170.225661 94.696343) (xy 170.287213 94.88578) + (xy 170.287215 94.885783) (xy 170.377647 95.063266) (xy 170.494731 95.224418) (xy 170.635582 95.365269) + (xy 170.796734 95.482353) (xy 170.866453 95.517877) (xy 170.948172 95.559515) (xy 170.998968 95.60749) + (xy 171.015763 95.675311) (xy 170.993225 95.741446) (xy 170.948172 95.780485) (xy 170.796733 95.857647) + (xy 170.70479 95.924447) (xy 170.635582 95.974731) (xy 170.63558 95.974733) (xy 170.635579 95.974733) + (xy 170.494733 96.115579) (xy 170.494733 96.11558) (xy 170.494731 96.115582) (xy 170.444447 96.18479) + (xy 170.377647 96.276733) (xy 170.287213 96.454219) (xy 170.225661 96.643656) (xy 170.225661 96.643659) + (xy 170.1945 96.840403) (xy 170.1945 97.039596) (xy 170.225661 97.23634) (xy 170.225661 97.236343) + (xy 170.287213 97.42578) (xy 170.345212 97.539609) (xy 170.377647 97.603266) (xy 170.494731 97.764418) + (xy 170.635582 97.905269) (xy 170.796734 98.022353) (xy 170.866453 98.057877) (xy 170.948172 98.099515) + (xy 170.998968 98.14749) (xy 171.015763 98.215311) (xy 170.993225 98.281446) (xy 170.948172 98.320485) + (xy 170.796733 98.397647) (xy 170.70479 98.464447) (xy 170.635582 98.514731) (xy 170.63558 98.514733) + (xy 170.635579 98.514733) (xy 170.494733 98.655579) (xy 170.494733 98.65558) (xy 170.494731 98.655582) + (xy 170.444447 98.72479) (xy 170.377647 98.816733) (xy 170.287213 98.994219) (xy 170.225661 99.183656) + (xy 170.225661 99.183659) (xy 170.1945 99.380403) (xy 170.1945 99.579596) (xy 170.225661 99.77634) + (xy 170.225661 99.776343) (xy 170.287213 99.96578) (xy 170.350813 100.090602) (xy 170.377647 100.143266) + (xy 170.494731 100.304418) (xy 170.635582 100.445269) (xy 170.796734 100.562353) (xy 170.804893 100.56651) + (xy 170.948172 100.639515) (xy 170.998968 100.68749) (xy 171.015763 100.755311) (xy 170.993225 100.821446) + (xy 170.948172 100.860485) (xy 170.796733 100.937647) (xy 170.70479 101.004447) (xy 170.635582 101.054731) + (xy 170.63558 101.054733) (xy 170.635579 101.054733) (xy 170.494733 101.195579) (xy 170.494733 101.19558) + (xy 170.494731 101.195582) (xy 170.452659 101.253489) (xy 170.377647 101.356733) (xy 170.287213 101.534219) + (xy 170.225661 101.723656) (xy 170.225661 101.723659) (xy 170.1945 101.920403) (xy 170.1945 102.119596) + (xy 170.225661 102.31634) (xy 170.225661 102.316343) (xy 170.287213 102.50578) (xy 170.287215 102.505783) + (xy 170.377647 102.683266) (xy 170.494731 102.844418) (xy 170.635582 102.985269) (xy 170.796734 103.102353) + (xy 170.866453 103.137877) (xy 170.948172 103.179515) (xy 170.998968 103.22749) (xy 171.015763 103.295311) + (xy 170.993225 103.361446) (xy 170.948172 103.400485) (xy 170.796733 103.477647) (xy 170.70479 103.544447) + (xy 170.635582 103.594731) (xy 170.63558 103.594733) (xy 170.635579 103.594733) (xy 170.494733 103.735579) + (xy 170.494733 103.73558) (xy 170.494731 103.735582) (xy 170.444447 103.80479) (xy 170.377647 103.896733) + (xy 170.287213 104.074219) (xy 170.225661 104.263656) (xy 170.225661 104.263659) (xy 170.1945 104.460403) + (xy 170.1945 104.659596) (xy 170.225661 104.85634) (xy 170.225661 104.856343) (xy 170.287213 105.04578) + (xy 170.287215 105.045783) (xy 170.377647 105.223266) (xy 170.494731 105.384418) (xy 170.635582 105.525269) + (xy 170.796734 105.642353) (xy 170.866453 105.677877) (xy 170.948172 105.719515) (xy 170.998968 105.76749) + (xy 171.015763 105.835311) (xy 170.993225 105.901446) (xy 170.948172 105.940485) (xy 170.796733 106.017647) + (xy 170.70479 106.084447) (xy 170.635582 106.134731) (xy 170.63558 106.134733) (xy 170.635579 106.134733) + (xy 170.494733 106.275579) (xy 170.494733 106.27558) (xy 170.494731 106.275582) (xy 170.444447 106.34479) + (xy 170.377647 106.436733) (xy 170.287213 106.614219) (xy 170.225661 106.803656) (xy 170.225661 106.803659) + (xy 170.1945 107.000403) (xy 170.1945 107.199596) (xy 170.225661 107.39634) (xy 170.225661 107.396343) + (xy 170.287213 107.58578) (xy 170.287215 107.585783) (xy 170.377647 107.763266) (xy 170.494731 107.924418) + (xy 170.635582 108.065269) (xy 170.796734 108.182353) (xy 170.866453 108.217877) (xy 170.948172 108.259515) + (xy 170.998968 108.30749) (xy 171.015763 108.375311) (xy 170.993225 108.441446) (xy 170.948172 108.480485) + (xy 170.796733 108.557647) (xy 170.70479 108.624447) (xy 170.635582 108.674731) (xy 170.63558 108.674733) + (xy 170.635579 108.674733) (xy 170.494733 108.815579) (xy 170.494733 108.81558) (xy 170.494731 108.815582) + (xy 170.467491 108.853075) (xy 170.377647 108.976733) (xy 170.287213 109.154219) (xy 170.225661 109.343656) + (xy 170.225661 109.343659) (xy 170.1945 109.540403) (xy 170.1945 109.739596) (xy 170.225661 109.93634) + (xy 170.225661 109.936343) (xy 170.287213 110.12578) (xy 170.370548 110.289334) (xy 170.377647 110.303266) + (xy 170.494731 110.464418) (xy 170.635582 110.605269) (xy 170.796734 110.722353) (xy 170.849917 110.749451) + (xy 170.948172 110.799515) (xy 170.998968 110.84749) (xy 171.015763 110.915311) (xy 170.993225 110.981446) + (xy 170.948172 111.020485) (xy 170.796733 111.097647) (xy 170.704832 111.164418) (xy 170.635582 111.214731) + (xy 170.63558 111.214733) (xy 170.635579 111.214733) (xy 170.494733 111.355579) (xy 170.494733 111.35558) + (xy 170.494731 111.355582) (xy 170.488311 111.364419) (xy 170.377647 111.516733) (xy 170.287213 111.694219) + (xy 170.225661 111.883656) (xy 170.225661 111.883659) (xy 170.1945 112.080403) (xy 170.1945 112.279596) + (xy 170.225661 112.47634) (xy 170.225661 112.476343) (xy 170.287213 112.66578) (xy 170.34782 112.784727) + (xy 170.377647 112.843266) (xy 170.494731 113.004418) (xy 170.635582 113.145269) (xy 170.796734 113.262353) + (xy 170.862527 113.295876) (xy 170.948172 113.339515) (xy 170.998968 113.38749) (xy 171.015763 113.455311) + (xy 170.993225 113.521446) (xy 170.948172 113.560485) (xy 170.796733 113.637647) (xy 170.725074 113.689711) + (xy 170.635582 113.754731) (xy 170.63558 113.754733) (xy 170.635579 113.754733) (xy 170.494733 113.895579) + (xy 170.494733 113.89558) (xy 170.494731 113.895582) (xy 170.494729 113.895585) (xy 170.377647 114.056733) + (xy 170.287213 114.234219) (xy 170.225661 114.423656) (xy 170.225661 114.423659) (xy 170.1945 114.620403) + (xy 170.1945 114.819596) (xy 170.225661 115.01634) (xy 170.225661 115.016343) (xy 170.287213 115.20578) + (xy 170.308833 115.248211) (xy 170.377647 115.383266) (xy 170.494731 115.544418) (xy 170.635582 115.685269) + (xy 170.796734 115.802353) (xy 170.886909 115.848299) (xy 170.948722 115.879795) (xy 170.999518 115.92777) + (xy 171.016313 115.995591) (xy 170.993776 116.061726) (xy 170.948723 116.100764) (xy 170.796993 116.178075) + (xy 170.759135 116.20558) (xy 170.759135 116.205581) (xy 171.322425 116.768871) (xy 171.263147 116.784755) + (xy 171.146853 116.851898) (xy 171.051898 116.946853) (xy 170.984755 117.063147) (xy 170.968871 117.122425) + (xy 170.405581 116.559135) (xy 170.40558 116.559135) (xy 170.378077 116.59699) (xy 170.287679 116.774405) + (xy 170.226147 116.963777) (xy 170.195 117.160436) (xy 170.195 117.359563) (xy 170.226147 117.556222) + (xy 170.287679 117.745594) (xy 170.378077 117.923008) (xy 170.40558 117.960863) (xy 170.405581 117.960864) + (xy 170.968871 117.397574) (xy 170.984755 117.456853) (xy 171.051898 117.573147) (xy 171.146853 117.668102) + (xy 171.263147 117.735245) (xy 171.322425 117.751128) (xy 170.759134 118.314417) (xy 170.796999 118.341928) + (xy 170.949272 118.419516) (xy 171.000068 118.46749) (xy 171.016863 118.535311) (xy 170.994325 118.601446) + (xy 170.949272 118.640484) (xy 170.796996 118.718073) (xy 170.796995 118.718074) (xy 170.759135 118.74558) + (xy 170.759135 118.745581) (xy 171.322425 119.308871) (xy 171.263147 119.324755) (xy 171.146853 119.391898) + (xy 171.051898 119.486853) (xy 170.984755 119.603147) (xy 170.968871 119.662425) (xy 170.405581 119.099135) + (xy 170.40558 119.099135) (xy 170.378077 119.13699) (xy 170.287679 119.314405) (xy 170.226147 119.503777) + (xy 170.195 119.700436) (xy 170.195 119.899563) (xy 170.226147 120.096222) (xy 170.287679 120.285594) + (xy 170.378077 120.463008) (xy 170.40558 120.500863) (xy 170.405581 120.500864) (xy 170.968871 119.937574) + (xy 170.984755 119.996853) (xy 171.051898 120.113147) (xy 171.146853 120.208102) (xy 171.263147 120.275245) + (xy 171.322425 120.291128) (xy 170.759134 120.854417) (xy 170.796994 120.881924) (xy 170.974405 120.97232) + (xy 171.163777 121.033852) (xy 171.360437 121.065) (xy 171.559563 121.065) (xy 171.756222 121.033852) + (xy 171.945594 120.97232) (xy 172.123005 120.881924) (xy 172.160863 120.854418) (xy 172.160863 120.854417) + (xy 172.109193 120.802747) (xy 172.027599 120.721153) (xy 180.7995 120.721153) (xy 180.7995 120.878846) + (xy 180.830261 121.033489) (xy 180.830264 121.033501) (xy 180.890602 121.179172) (xy 180.890609 121.179185) + (xy 180.97821 121.310288) (xy 180.978213 121.310292) (xy 181.089707 121.421786) (xy 181.089711 121.421789) + (xy 181.220814 121.50939) (xy 181.220827 121.509397) (xy 181.366498 121.569735) (xy 181.366503 121.569737) + (xy 181.521153 121.600499) (xy 181.521156 121.6005) (xy 181.521158 121.6005) (xy 181.678844 121.6005) + (xy 181.678845 121.600499) (xy 181.833497 121.569737) (xy 181.979179 121.509394) (xy 182.110289 121.421789) + (xy 182.221789 121.310289) (xy 182.309394 121.179179) (xy 182.369737 121.033497) (xy 182.4005 120.878842) + (xy 182.4005 120.721158) (xy 182.4005 120.721155) (xy 182.400499 120.721153) (xy 182.380734 120.621789) + (xy 182.369737 120.566503) (xy 182.342549 120.500864) (xy 182.309397 120.420827) (xy 182.30939 120.420814) + (xy 182.221789 120.289711) (xy 182.221786 120.289707) (xy 182.110292 120.178213) (xy 182.110288 120.17821) + (xy 181.979185 120.090609) (xy 181.979172 120.090602) (xy 181.833501 120.030264) (xy 181.833489 120.030261) + (xy 181.678845 119.9995) (xy 181.678842 119.9995) (xy 181.521158 119.9995) (xy 181.521155 119.9995) + (xy 181.36651 120.030261) (xy 181.366498 120.030264) (xy 181.220827 120.090602) (xy 181.220814 120.090609) + (xy 181.089711 120.17821) (xy 181.089707 120.178213) (xy 180.978213 120.289707) (xy 180.97821 120.289711) + (xy 180.890609 120.420814) (xy 180.890602 120.420827) (xy 180.830264 120.566498) (xy 180.830261 120.56651) + (xy 180.7995 120.721153) (xy 172.027599 120.721153) (xy 171.597574 120.291128) (xy 171.656853 120.275245) + (xy 171.773147 120.208102) (xy 171.868102 120.113147) (xy 171.935245 119.996853) (xy 171.951128 119.937574) + (xy 172.514417 120.500863) (xy 172.514418 120.500863) (xy 172.541924 120.463005) (xy 172.63232 120.285594) + (xy 172.693852 120.096222) (xy 172.72158 119.921153) (xy 184.1995 119.921153) (xy 184.1995 120.078846) + (xy 184.230261 120.233489) (xy 184.230264 120.233501) (xy 184.290602 120.379172) (xy 184.290609 120.379185) + (xy 184.37821 120.510288) (xy 184.378213 120.510292) (xy 184.489707 120.621786) (xy 184.489711 120.621789) + (xy 184.620814 120.70939) (xy 184.620827 120.709397) (xy 184.766498 120.769735) (xy 184.766503 120.769737) + (xy 184.921153 120.800499) (xy 184.921156 120.8005) (xy 184.921158 120.8005) (xy 185.078844 120.8005) + (xy 185.078845 120.800499) (xy 185.233497 120.769737) (xy 185.379179 120.709394) (xy 185.510289 120.621789) + (xy 185.621789 120.510289) (xy 185.709394 120.379179) (xy 185.769737 120.233497) (xy 185.8005 120.078842) + (xy 185.8005 119.921158) (xy 185.8005 119.921155) (xy 185.800499 119.921153) (xy 187.0595 119.921153) + (xy 187.0595 120.078846) (xy 187.090261 120.233489) (xy 187.090264 120.233501) (xy 187.150602 120.379172) + (xy 187.150609 120.379185) (xy 187.23821 120.510288) (xy 187.238213 120.510292) (xy 187.349707 120.621786) + (xy 187.349711 120.621789) (xy 187.480814 120.70939) (xy 187.480827 120.709397) (xy 187.626498 120.769735) + (xy 187.626503 120.769737) (xy 187.781153 120.800499) (xy 187.781156 120.8005) (xy 187.781158 120.8005) + (xy 187.938844 120.8005) (xy 187.938845 120.800499) (xy 188.093497 120.769737) (xy 188.239179 120.709394) + (xy 188.370289 120.621789) (xy 188.481789 120.510289) (xy 188.569394 120.379179) (xy 188.629737 120.233497) + (xy 188.6605 120.078842) (xy 188.6605 119.921158) (xy 188.6605 119.921155) (xy 188.660499 119.921153) + (xy 192.1995 119.921153) (xy 192.1995 120.078846) (xy 192.230261 120.233489) (xy 192.230264 120.233501) + (xy 192.290602 120.379172) (xy 192.290609 120.379185) (xy 192.37821 120.510288) (xy 192.378213 120.510292) + (xy 192.489707 120.621786) (xy 192.489711 120.621789) (xy 192.620814 120.70939) (xy 192.620827 120.709397) + (xy 192.766498 120.769735) (xy 192.766503 120.769737) (xy 192.921153 120.800499) (xy 192.921156 120.8005) + (xy 192.921158 120.8005) (xy 193.078844 120.8005) (xy 193.078845 120.800499) (xy 193.233497 120.769737) + (xy 193.379179 120.709394) (xy 193.510289 120.621789) (xy 193.621789 120.510289) (xy 193.709394 120.379179) + (xy 193.769737 120.233497) (xy 193.8005 120.078842) (xy 193.8005 119.921158) (xy 193.8005 119.921155) + (xy 193.800499 119.921153) (xy 193.782424 119.830285) (xy 193.769737 119.766503) (xy 193.769735 119.766498) + (xy 193.709397 119.620827) (xy 193.70939 119.620814) (xy 193.621789 119.489711) (xy 193.621786 119.489707) + (xy 193.510292 119.378213) (xy 193.510288 119.37821) (xy 193.379185 119.290609) (xy 193.379172 119.290602) + (xy 193.233501 119.230264) (xy 193.233489 119.230261) (xy 193.078845 119.1995) (xy 193.078842 119.1995) + (xy 192.921158 119.1995) (xy 192.921155 119.1995) (xy 192.76651 119.230261) (xy 192.766498 119.230264) + (xy 192.620827 119.290602) (xy 192.620814 119.290609) (xy 192.489711 119.37821) (xy 192.489707 119.378213) + (xy 192.378213 119.489707) (xy 192.37821 119.489711) (xy 192.290609 119.620814) (xy 192.290602 119.620827) + (xy 192.230264 119.766498) (xy 192.230261 119.76651) (xy 192.1995 119.921153) (xy 188.660499 119.921153) + (xy 188.642424 119.830285) (xy 188.629737 119.766503) (xy 188.629735 119.766498) (xy 188.569397 119.620827) + (xy 188.56939 119.620814) (xy 188.481789 119.489711) (xy 188.481786 119.489707) (xy 188.370292 119.378213) + (xy 188.370288 119.37821) (xy 188.239185 119.290609) (xy 188.239172 119.290602) (xy 188.093501 119.230264) + (xy 188.093489 119.230261) (xy 187.938845 119.1995) (xy 187.938842 119.1995) (xy 187.781158 119.1995) + (xy 187.781155 119.1995) (xy 187.62651 119.230261) (xy 187.626498 119.230264) (xy 187.480827 119.290602) + (xy 187.480814 119.290609) (xy 187.349711 119.37821) (xy 187.349707 119.378213) (xy 187.238213 119.489707) + (xy 187.23821 119.489711) (xy 187.150609 119.620814) (xy 187.150602 119.620827) (xy 187.090264 119.766498) + (xy 187.090261 119.76651) (xy 187.0595 119.921153) (xy 185.800499 119.921153) (xy 185.782424 119.830285) + (xy 185.769737 119.766503) (xy 185.769735 119.766498) (xy 185.709397 119.620827) (xy 185.70939 119.620814) + (xy 185.621789 119.489711) (xy 185.621786 119.489707) (xy 185.510292 119.378213) (xy 185.510288 119.37821) + (xy 185.379185 119.290609) (xy 185.379172 119.290602) (xy 185.233501 119.230264) (xy 185.233489 119.230261) + (xy 185.078845 119.1995) (xy 185.078842 119.1995) (xy 184.921158 119.1995) (xy 184.921155 119.1995) + (xy 184.76651 119.230261) (xy 184.766498 119.230264) (xy 184.620827 119.290602) (xy 184.620814 119.290609) + (xy 184.489711 119.37821) (xy 184.489707 119.378213) (xy 184.378213 119.489707) (xy 184.37821 119.489711) + (xy 184.290609 119.620814) (xy 184.290602 119.620827) (xy 184.230264 119.766498) (xy 184.230261 119.76651) + (xy 184.1995 119.921153) (xy 172.72158 119.921153) (xy 172.725 119.899563) (xy 172.725 119.700436) + (xy 172.693852 119.503777) (xy 172.63232 119.314405) (xy 172.541924 119.136994) (xy 172.514417 119.099135) + (xy 172.514417 119.099134) (xy 171.951128 119.662424) (xy 171.935245 119.603147) (xy 171.868102 119.486853) + (xy 171.773147 119.391898) (xy 171.656853 119.324755) (xy 171.597574 119.308871) (xy 172.160864 118.745581) + (xy 172.160863 118.74558) (xy 172.123008 118.718077) (xy 171.970727 118.640485) (xy 171.919931 118.59251) + (xy 171.903136 118.524689) (xy 171.925674 118.458554) (xy 171.970727 118.419515) (xy 172.123005 118.341924) + (xy 172.160863 118.314418) (xy 172.160863 118.314417) (xy 171.597574 117.751128) (xy 171.656853 117.735245) + (xy 171.773147 117.668102) (xy 171.868102 117.573147) (xy 171.935245 117.456853) (xy 171.951128 117.397574) + (xy 172.514417 117.960863) (xy 172.514418 117.960863) (xy 172.541924 117.923005) (xy 172.63232 117.745596) + (xy 172.640262 117.721153) (xy 184.1995 117.721153) (xy 184.1995 117.878846) (xy 184.230261 118.033489) + (xy 184.230264 118.033501) (xy 184.290602 118.179172) (xy 184.290609 118.179185) (xy 184.37821 118.310288) + (xy 184.378213 118.310292) (xy 184.489707 118.421786) (xy 184.489711 118.421789) (xy 184.620814 118.50939) + (xy 184.620827 118.509397) (xy 184.766498 118.569735) (xy 184.766503 118.569737) (xy 184.921153 118.600499) + (xy 184.921156 118.6005) (xy 184.921158 118.6005) (xy 185.078844 118.6005) (xy 185.078845 118.600499) + (xy 185.233497 118.569737) (xy 185.379179 118.509394) (xy 185.510289 118.421789) (xy 185.621789 118.310289) + (xy 185.709394 118.179179) (xy 185.709629 118.178613) (xy 185.748644 118.08442) (xy 185.769737 118.033497) + (xy 185.791192 117.925638) (xy 185.792084 117.921153) (xy 187.0595 117.921153) (xy 187.0595 118.078846) + (xy 187.090261 118.233489) (xy 187.090264 118.233501) (xy 187.150602 118.379172) (xy 187.150609 118.379185) + (xy 187.23821 118.510288) (xy 187.238213 118.510292) (xy 187.349707 118.621786) (xy 187.349711 118.621789) + (xy 187.480814 118.70939) (xy 187.480827 118.709397) (xy 187.626498 118.769735) (xy 187.626503 118.769737) + (xy 187.781153 118.800499) (xy 187.781156 118.8005) (xy 187.781158 118.8005) (xy 187.938844 118.8005) + (xy 187.938845 118.800499) (xy 188.093497 118.769737) (xy 188.218221 118.718075) (xy 188.239172 118.709397) + (xy 188.239172 118.709396) (xy 188.239179 118.709394) (xy 188.370289 118.621789) (xy 188.481789 118.510289) + (xy 188.569394 118.379179) (xy 188.629737 118.233497) (xy 188.6605 118.078842) (xy 188.6605 117.921158) + (xy 188.6605 117.921155) (xy 188.660499 117.921153) (xy 189.9995 117.921153) (xy 189.9995 118.078846) + (xy 190.030261 118.233489) (xy 190.030264 118.233501) (xy 190.090602 118.379172) (xy 190.090609 118.379185) + (xy 190.17821 118.510288) (xy 190.178213 118.510292) (xy 190.289707 118.621786) (xy 190.289711 118.621789) + (xy 190.420814 118.70939) (xy 190.420827 118.709397) (xy 190.566498 118.769735) (xy 190.566503 118.769737) + (xy 190.721153 118.800499) (xy 190.721156 118.8005) (xy 190.721158 118.8005) (xy 190.878844 118.8005) + (xy 190.878845 118.800499) (xy 191.033497 118.769737) (xy 191.158221 118.718075) (xy 191.179172 118.709397) + (xy 191.179172 118.709396) (xy 191.179179 118.709394) (xy 191.310289 118.621789) (xy 191.421789 118.510289) + (xy 191.509394 118.379179) (xy 191.569737 118.233497) (xy 191.6005 118.078842) (xy 191.6005 117.921158) + (xy 191.6005 117.921155) (xy 191.600499 117.921153) (xy 192.1995 117.921153) (xy 192.1995 118.078846) + (xy 192.230261 118.233489) (xy 192.230264 118.233501) (xy 192.290602 118.379172) (xy 192.290609 118.379185) + (xy 192.37821 118.510288) (xy 192.378213 118.510292) (xy 192.489707 118.621786) (xy 192.489711 118.621789) + (xy 192.620814 118.70939) (xy 192.620827 118.709397) (xy 192.766498 118.769735) (xy 192.766503 118.769737) + (xy 192.921153 118.800499) (xy 192.921156 118.8005) (xy 192.921158 118.8005) (xy 193.078844 118.8005) + (xy 193.078845 118.800499) (xy 193.233497 118.769737) (xy 193.358221 118.718075) (xy 193.379172 118.709397) + (xy 193.379172 118.709396) (xy 193.379179 118.709394) (xy 193.510289 118.621789) (xy 193.621789 118.510289) + (xy 193.709394 118.379179) (xy 193.769737 118.233497) (xy 193.8005 118.078842) (xy 193.8005 117.921158) + (xy 193.8005 117.921155) (xy 193.800499 117.921153) (xy 193.794476 117.890874) (xy 193.769737 117.766503) + (xy 193.750955 117.721158) (xy 193.709397 117.620827) (xy 193.70939 117.620814) (xy 193.621789 117.489711) + (xy 193.621786 117.489707) (xy 193.510292 117.378213) (xy 193.510288 117.37821) (xy 193.379185 117.290609) + (xy 193.379172 117.290602) (xy 193.233501 117.230264) (xy 193.233489 117.230261) (xy 193.078845 117.1995) + (xy 193.078842 117.1995) (xy 192.921158 117.1995) (xy 192.921155 117.1995) (xy 192.76651 117.230261) + (xy 192.766498 117.230264) (xy 192.620827 117.290602) (xy 192.620814 117.290609) (xy 192.489711 117.37821) + (xy 192.489707 117.378213) (xy 192.378213 117.489707) (xy 192.37821 117.489711) (xy 192.290609 117.620814) + (xy 192.290602 117.620827) (xy 192.230264 117.766498) (xy 192.230261 117.76651) (xy 192.1995 117.921153) + (xy 191.600499 117.921153) (xy 191.594476 117.890874) (xy 191.569737 117.766503) (xy 191.550955 117.721158) + (xy 191.509397 117.620827) (xy 191.50939 117.620814) (xy 191.421789 117.489711) (xy 191.421786 117.489707) + (xy 191.310292 117.378213) (xy 191.310288 117.37821) (xy 191.179185 117.290609) (xy 191.179172 117.290602) + (xy 191.033501 117.230264) (xy 191.033489 117.230261) (xy 190.878845 117.1995) (xy 190.878842 117.1995) + (xy 190.721158 117.1995) (xy 190.721155 117.1995) (xy 190.56651 117.230261) (xy 190.566498 117.230264) + (xy 190.420827 117.290602) (xy 190.420814 117.290609) (xy 190.289711 117.37821) (xy 190.289707 117.378213) + (xy 190.178213 117.489707) (xy 190.17821 117.489711) (xy 190.090609 117.620814) (xy 190.090602 117.620827) + (xy 190.030264 117.766498) (xy 190.030261 117.76651) (xy 189.9995 117.921153) (xy 188.660499 117.921153) + (xy 188.654476 117.890874) (xy 188.629737 117.766503) (xy 188.610955 117.721158) (xy 188.569397 117.620827) + (xy 188.56939 117.620814) (xy 188.481789 117.489711) (xy 188.481786 117.489707) (xy 188.370292 117.378213) + (xy 188.370288 117.37821) (xy 188.239185 117.290609) (xy 188.239172 117.290602) (xy 188.093501 117.230264) + (xy 188.093489 117.230261) (xy 187.938845 117.1995) (xy 187.938842 117.1995) (xy 187.781158 117.1995) + (xy 187.781155 117.1995) (xy 187.62651 117.230261) (xy 187.626498 117.230264) (xy 187.480827 117.290602) + (xy 187.480814 117.290609) (xy 187.349711 117.37821) (xy 187.349707 117.378213) (xy 187.238213 117.489707) + (xy 187.23821 117.489711) (xy 187.150609 117.620814) (xy 187.150602 117.620827) (xy 187.090264 117.766498) + (xy 187.090261 117.76651) (xy 187.0595 117.921153) (xy 185.792084 117.921153) (xy 185.798107 117.890875) + (xy 185.798107 117.890874) (xy 185.8005 117.878844) (xy 185.8005 117.721155) (xy 185.800499 117.721153) + (xy 185.780543 117.620827) (xy 185.769737 117.566503) (xy 185.737929 117.489711) (xy 185.709397 117.420827) + (xy 185.70939 117.420814) (xy 185.621789 117.289711) (xy 185.621786 117.289707) (xy 185.510292 117.178213) + (xy 185.510288 117.17821) (xy 185.379185 117.090609) (xy 185.379172 117.090602) (xy 185.233501 117.030264) + (xy 185.233489 117.030261) (xy 185.078845 116.9995) (xy 185.078842 116.9995) (xy 184.921158 116.9995) + (xy 184.921155 116.9995) (xy 184.76651 117.030261) (xy 184.766498 117.030264) (xy 184.620827 117.090602) + (xy 184.620814 117.090609) (xy 184.489711 117.17821) (xy 184.489707 117.178213) (xy 184.378213 117.289707) + (xy 184.37821 117.289711) (xy 184.290609 117.420814) (xy 184.290602 117.420827) (xy 184.230264 117.566498) + (xy 184.230261 117.56651) (xy 184.1995 117.721153) (xy 172.640262 117.721153) (xy 172.654691 117.676747) + (xy 172.654691 117.676746) (xy 172.693851 117.556223) (xy 172.725 117.359563) (xy 172.725 117.160436) + (xy 172.693852 116.963777) (xy 172.63232 116.774405) (xy 172.541924 116.596994) (xy 172.514417 116.559135) + (xy 172.514417 116.559134) (xy 171.951128 117.122424) (xy 171.935245 117.063147) (xy 171.868102 116.946853) + (xy 171.773147 116.851898) (xy 171.656853 116.784755) (xy 171.597574 116.768871) (xy 172.160864 116.205581) + (xy 172.160863 116.20558) (xy 172.123008 116.178077) (xy 171.971277 116.100765) (xy 171.920481 116.05279) + (xy 171.903686 115.984969) (xy 171.926224 115.918834) (xy 171.971277 115.879795) (xy 171.971827 115.879515) + (xy 172.123266 115.802353) (xy 172.235028 115.721153) (xy 184.1995 115.721153) (xy 184.1995 115.878846) + (xy 184.230261 116.033489) (xy 184.230264 116.033501) (xy 184.290602 116.179172) (xy 184.290609 116.179185) + (xy 184.37821 116.310288) (xy 184.378213 116.310292) (xy 184.489707 116.421786) (xy 184.489711 116.421789) + (xy 184.620814 116.50939) (xy 184.620827 116.509397) (xy 184.740905 116.559134) (xy 184.766503 116.569737) + (xy 184.921153 116.600499) (xy 184.921156 116.6005) (xy 184.921158 116.6005) (xy 185.078844 116.6005) + (xy 185.078845 116.600499) (xy 185.233497 116.569737) (xy 185.379179 116.509394) (xy 185.510289 116.421789) + (xy 185.621789 116.310289) (xy 185.709394 116.179179) (xy 185.709851 116.178077) (xy 185.723067 116.146166) + (xy 185.769737 116.033497) (xy 185.8005 115.878842) (xy 185.8005 115.791153) (xy 187.0595 115.791153) + (xy 187.0595 115.948846) (xy 187.090261 116.103489) (xy 187.090264 116.103501) (xy 187.150602 116.249172) + (xy 187.150609 116.249185) (xy 187.23821 116.380288) (xy 187.238213 116.380292) (xy 187.349707 116.491786) + (xy 187.349711 116.491789) (xy 187.480814 116.57939) (xy 187.480827 116.579397) (xy 187.583165 116.621786) + (xy 187.626503 116.639737) (xy 187.781153 116.670499) (xy 187.781156 116.6705) (xy 187.781158 116.6705) + (xy 187.938844 116.6705) (xy 187.938845 116.670499) (xy 188.093497 116.639737) (xy 188.239179 116.579394) + (xy 188.370289 116.491789) (xy 188.481789 116.380289) (xy 188.569394 116.249179) (xy 188.629737 116.103497) + (xy 188.6605 115.948842) (xy 188.6605 115.921153) (xy 189.7995 115.921153) (xy 189.7995 116.078846) + (xy 189.830261 116.233489) (xy 189.830264 116.233501) (xy 189.890602 116.379172) (xy 189.890609 116.379185) + (xy 189.97821 116.510288) (xy 189.978213 116.510292) (xy 190.089707 116.621786) (xy 190.089711 116.621789) + (xy 190.220814 116.70939) (xy 190.220827 116.709397) (xy 190.318853 116.75) (xy 190.366503 116.769737) + (xy 190.521153 116.800499) (xy 190.521156 116.8005) (xy 190.521158 116.8005) (xy 190.678844 116.8005) + (xy 190.678845 116.800499) (xy 190.833497 116.769737) (xy 190.979179 116.709394) (xy 191.110289 116.621789) + (xy 191.221789 116.510289) (xy 191.309394 116.379179) (xy 191.369737 116.233497) (xy 191.4005 116.078842) + (xy 191.4005 115.921158) (xy 191.4005 115.921155) (xy 191.400499 115.921153) (xy 192.1995 115.921153) + (xy 192.1995 116.078846) (xy 192.230261 116.233489) (xy 192.230264 116.233501) (xy 192.290602 116.379172) + (xy 192.290609 116.379185) (xy 192.37821 116.510288) (xy 192.378213 116.510292) (xy 192.489707 116.621786) + (xy 192.489711 116.621789) (xy 192.620814 116.70939) (xy 192.620827 116.709397) (xy 192.718853 116.75) + (xy 192.766503 116.769737) (xy 192.921153 116.800499) (xy 192.921156 116.8005) (xy 192.921158 116.8005) + (xy 193.078844 116.8005) (xy 193.078845 116.800499) (xy 193.233497 116.769737) (xy 193.379179 116.709394) + (xy 193.510289 116.621789) (xy 193.621789 116.510289) (xy 193.709394 116.379179) (xy 193.769737 116.233497) + (xy 193.8005 116.078842) (xy 193.8005 115.921158) (xy 193.8005 115.921155) (xy 193.800499 115.921153) + (xy 193.792217 115.879515) (xy 193.769737 115.766503) (xy 193.750955 115.721158) (xy 193.709397 115.620827) + (xy 193.70939 115.620814) (xy 193.621789 115.489711) (xy 193.621786 115.489707) (xy 193.510292 115.378213) + (xy 193.510288 115.37821) (xy 193.379185 115.290609) (xy 193.379172 115.290602) (xy 193.233501 115.230264) + (xy 193.233489 115.230261) (xy 193.078845 115.1995) (xy 193.078842 115.1995) (xy 192.921158 115.1995) + (xy 192.921155 115.1995) (xy 192.76651 115.230261) (xy 192.766498 115.230264) (xy 192.620827 115.290602) + (xy 192.620814 115.290609) (xy 192.489711 115.37821) (xy 192.489707 115.378213) (xy 192.378213 115.489707) + (xy 192.37821 115.489711) (xy 192.290609 115.620814) (xy 192.290602 115.620827) (xy 192.230264 115.766498) + (xy 192.230261 115.76651) (xy 192.1995 115.921153) (xy 191.400499 115.921153) (xy 191.392217 115.879515) + (xy 191.369737 115.766503) (xy 191.350955 115.721158) (xy 191.309397 115.620827) (xy 191.30939 115.620814) + (xy 191.221789 115.489711) (xy 191.221786 115.489707) (xy 191.110292 115.378213) (xy 191.110288 115.37821) + (xy 190.979185 115.290609) (xy 190.979172 115.290602) (xy 190.833501 115.230264) (xy 190.833489 115.230261) + (xy 190.678845 115.1995) (xy 190.678842 115.1995) (xy 190.521158 115.1995) (xy 190.521155 115.1995) + (xy 190.36651 115.230261) (xy 190.366498 115.230264) (xy 190.220827 115.290602) (xy 190.220814 115.290609) + (xy 190.089711 115.37821) (xy 190.089707 115.378213) (xy 189.978213 115.489707) (xy 189.97821 115.489711) + (xy 189.890609 115.620814) (xy 189.890602 115.620827) (xy 189.830264 115.766498) (xy 189.830261 115.76651) + (xy 189.7995 115.921153) (xy 188.6605 115.921153) (xy 188.6605 115.791158) (xy 188.6605 115.791155) + (xy 188.660499 115.791153) (xy 188.639437 115.685269) (xy 188.629737 115.636503) (xy 188.623241 115.620821) + (xy 188.569397 115.490827) (xy 188.56939 115.490814) (xy 188.481789 115.359711) (xy 188.481786 115.359707) + (xy 188.370292 115.248213) (xy 188.370288 115.24821) (xy 188.239185 115.160609) (xy 188.239172 115.160602) + (xy 188.093501 115.100264) (xy 188.093489 115.100261) (xy 187.938845 115.0695) (xy 187.938842 115.0695) + (xy 187.781158 115.0695) (xy 187.781155 115.0695) (xy 187.62651 115.100261) (xy 187.626498 115.100264) + (xy 187.480827 115.160602) (xy 187.480814 115.160609) (xy 187.349711 115.24821) (xy 187.349707 115.248213) + (xy 187.238213 115.359707) (xy 187.23821 115.359711) (xy 187.150609 115.490814) (xy 187.150602 115.490827) + (xy 187.090264 115.636498) (xy 187.090261 115.63651) (xy 187.0595 115.791153) (xy 185.8005 115.791153) + (xy 185.8005 115.721158) (xy 185.8005 115.721155) (xy 185.800499 115.721153) (xy 185.793361 115.685269) + (xy 185.769737 115.566503) (xy 185.760589 115.544418) (xy 185.709397 115.420827) (xy 185.70939 115.420814) + (xy 185.621789 115.289711) (xy 185.621786 115.289707) (xy 185.510292 115.178213) (xy 185.510288 115.17821) + (xy 185.379185 115.090609) (xy 185.379172 115.090602) (xy 185.233501 115.030264) (xy 185.233489 115.030261) + (xy 185.078845 114.9995) (xy 185.078842 114.9995) (xy 184.921158 114.9995) (xy 184.921155 114.9995) + (xy 184.76651 115.030261) (xy 184.766498 115.030264) (xy 184.620827 115.090602) (xy 184.620814 115.090609) + (xy 184.489711 115.17821) (xy 184.489707 115.178213) (xy 184.378213 115.289707) (xy 184.37821 115.289711) + (xy 184.290609 115.420814) (xy 184.290602 115.420827) (xy 184.230264 115.566498) (xy 184.230261 115.56651) + (xy 184.1995 115.721153) (xy 172.235028 115.721153) (xy 172.284418 115.685269) (xy 172.425269 115.544418) + (xy 172.542353 115.383266) (xy 172.632785 115.205783) (xy 172.632786 115.20578) (xy 172.694338 115.016343) + (xy 172.694338 115.016342) (xy 172.694339 115.016339) (xy 172.7255 114.819597) (xy 172.7255 114.620403) + (xy 172.694339 114.423661) (xy 172.694338 114.423657) (xy 172.694338 114.423656) (xy 172.632786 114.234219) + (xy 172.625795 114.220499) (xy 172.542353 114.056734) (xy 172.542351 114.056731) (xy 172.54235 114.056729) + (xy 172.506911 114.007952) (xy 172.50691 114.007951) (xy 172.458378 113.941153) (xy 177.0595 113.941153) + (xy 177.0595 114.098846) (xy 177.090261 114.253489) (xy 177.090264 114.253501) (xy 177.150602 114.399172) + (xy 177.150609 114.399185) (xy 177.23821 114.530288) (xy 177.238213 114.530292) (xy 177.349707 114.641786) + (xy 177.349711 114.641789) (xy 177.480814 114.72939) (xy 177.480827 114.729397) (xy 177.626498 114.789735) + (xy 177.626503 114.789737) (xy 177.776613 114.819596) (xy 177.781153 114.820499) (xy 177.781156 114.8205) + (xy 177.781158 114.8205) (xy 177.938844 114.8205) (xy 177.938845 114.820499) (xy 178.093497 114.789737) + (xy 178.239179 114.729394) (xy 178.370289 114.641789) (xy 178.481789 114.530289) (xy 178.569394 114.399179) + (xy 178.629737 114.253497) (xy 178.656062 114.121153) (xy 190.3995 114.121153) (xy 190.3995 114.278846) + (xy 190.430261 114.433489) (xy 190.430264 114.433501) (xy 190.490602 114.579172) (xy 190.490609 114.579185) + (xy 190.57821 114.710288) (xy 190.578213 114.710292) (xy 190.689707 114.821786) (xy 190.689711 114.821789) + (xy 190.820814 114.90939) (xy 190.820827 114.909397) (xy 190.966498 114.969735) (xy 190.966503 114.969737) + (xy 191.116131 114.9995) (xy 191.121153 115.000499) (xy 191.121156 115.0005) (xy 191.121158 115.0005) + (xy 191.278844 115.0005) (xy 191.278845 115.000499) (xy 191.433497 114.969737) (xy 191.579179 114.909394) + (xy 191.710289 114.821789) (xy 191.821789 114.710289) (xy 191.909394 114.579179) (xy 191.909395 114.579176) + (xy 191.909397 114.579173) (xy 191.924738 114.542135) (xy 196.9195 114.542135) (xy 196.9195 117.11787) + (xy 196.919501 117.117876) (xy 196.925908 117.177483) (xy 196.976202 117.312328) (xy 196.976206 117.312335) + (xy 197.062452 117.427544) (xy 197.062455 117.427547) (xy 197.177664 117.513793) (xy 197.177671 117.513797) + (xy 197.312517 117.564091) (xy 197.312516 117.564091) (xy 197.319444 117.564835) (xy 197.372127 117.5705) + (xy 198.157024 117.570499) (xy 198.224061 117.590183) (xy 198.269816 117.642987) (xy 198.27976 117.712146) + (xy 198.250735 117.775702) (xy 198.191957 117.813476) (xy 198.189116 117.814274) (xy 198.14774 117.82536) + (xy 198.099334 117.838331) (xy 198.099332 117.838331) (xy 198.099331 117.838332) (xy 197.888553 117.925638) + (xy 197.888537 117.925646) (xy 197.690962 118.039717) (xy 197.690946 118.039728) (xy 197.509947 118.178613) + (xy 197.50994 118.178619) (xy 197.348619 118.33994) (xy 197.348613 118.339947) (xy 197.209728 118.520946) + (xy 197.209717 118.520962) (xy 197.095646 118.718537) (xy 197.095638 118.718553) (xy 197.008331 118.929333) + (xy 196.949281 119.149714) (xy 196.949278 119.149727) (xy 196.9195 119.375921) (xy 196.9195 119.604078) + (xy 196.949278 119.830272) (xy 196.949279 119.830277) (xy 196.94928 119.830283) (xy 196.973629 119.921155) + (xy 197.008331 120.050666) (xy 197.095638 120.261446) (xy 197.095646 120.261462) (xy 197.209717 120.459037) + (xy 197.209728 120.459053) (xy 197.348613 120.640052) (xy 197.348619 120.640059) (xy 197.50994 120.80138) + (xy 197.509947 120.801386) (xy 197.638839 120.900288) (xy 197.690955 120.940278) (xy 197.690962 120.940282) + (xy 197.888537 121.054353) (xy 197.888553 121.054361) (xy 198.002268 121.101463) (xy 198.099334 121.141669) + (xy 198.319717 121.20072) (xy 198.479474 121.221752) (xy 198.545921 121.2305) (xy 198.545922 121.2305) + (xy 198.774079 121.2305) (xy 198.825438 121.223738) (xy 199.000283 121.20072) (xy 199.220666 121.141669) + (xy 199.405761 121.065) (xy 199.431446 121.054361) (xy 199.431449 121.054359) (xy 199.431455 121.054357) + (xy 199.629045 120.940278) (xy 199.810054 120.801385) (xy 199.971385 120.640054) (xy 200.110278 120.459045) + (xy 200.224357 120.261455) (xy 200.311669 120.050666) (xy 200.37072 119.830283) (xy 200.4005 119.604078) + (xy 200.4005 119.375922) (xy 200.37072 119.149717) (xy 200.311669 118.929334) (xy 200.235556 118.745581) + (xy 200.224361 118.718553) (xy 200.224353 118.718537) (xy 200.110282 118.520962) (xy 200.110278 118.520955) + (xy 199.971385 118.339946) (xy 199.97138 118.33994) (xy 199.810059 118.178619) (xy 199.810052 118.178613) + (xy 199.629053 118.039728) (xy 199.629051 118.039726) (xy 199.629045 118.039722) (xy 199.62904 118.039719) + (xy 199.629037 118.039717) (xy 199.431462 117.925646) (xy 199.431446 117.925638) (xy 199.220666 117.838331) + (xy 199.13088 117.814273) (xy 199.071221 117.777909) (xy 199.040692 117.715062) (xy 199.048987 117.645687) + (xy 199.093472 117.591809) (xy 199.160024 117.570534) (xy 199.162949 117.570499) (xy 199.947872 117.570499) + (xy 200.007483 117.564091) (xy 200.142331 117.513796) (xy 200.257546 117.427546) (xy 200.343796 117.312331) + (xy 200.394091 117.177483) (xy 200.4005 117.117873) (xy 200.400499 114.542128) (xy 200.394091 114.482517) + (xy 200.375809 114.433501) (xy 200.343797 114.347671) (xy 200.343793 114.347664) (xy 200.257547 114.232455) + (xy 200.257544 114.232452) (xy 200.142335 114.146206) (xy 200.142328 114.146202) (xy 200.007482 114.095908) + (xy 200.007483 114.095908) (xy 199.947883 114.089501) (xy 199.947881 114.0895) (xy 199.947873 114.0895) + (xy 199.947864 114.0895) (xy 197.372129 114.0895) (xy 197.372123 114.089501) (xy 197.312516 114.095908) + (xy 197.177671 114.146202) (xy 197.177664 114.146206) (xy 197.062455 114.232452) (xy 197.062452 114.232455) + (xy 196.976206 114.347664) (xy 196.976202 114.347671) (xy 196.925908 114.482517) (xy 196.920772 114.530292) + (xy 196.919501 114.542123) (xy 196.9195 114.542135) (xy 191.924738 114.542135) (xy 191.945772 114.491354) + (xy 191.945772 114.491353) (xy 191.949432 114.482517) (xy 191.969737 114.433497) (xy 192.0005 114.278842) + (xy 192.0005 114.121158) (xy 192.0005 114.121155) (xy 192.000499 114.121153) (xy 191.985021 114.043342) + (xy 191.969737 113.966503) (xy 191.94036 113.895579) (xy 191.909397 113.820827) (xy 191.90939 113.820814) + (xy 191.821789 113.689711) (xy 191.821786 113.689707) (xy 191.710292 113.578213) (xy 191.710288 113.57821) + (xy 191.579185 113.490609) (xy 191.579172 113.490602) (xy 191.433501 113.430264) (xy 191.433489 113.430261) + (xy 191.278845 113.3995) (xy 191.278842 113.3995) (xy 191.121158 113.3995) (xy 191.121155 113.3995) + (xy 190.96651 113.430261) (xy 190.966498 113.430264) (xy 190.820827 113.490602) (xy 190.820814 113.490609) + (xy 190.689711 113.57821) (xy 190.689707 113.578213) (xy 190.578213 113.689707) (xy 190.57821 113.689711) + (xy 190.490609 113.820814) (xy 190.490602 113.820827) (xy 190.430264 113.966498) (xy 190.430261 113.96651) + (xy 190.3995 114.121153) (xy 178.656062 114.121153) (xy 178.6605 114.098842) (xy 178.6605 113.941158) + (xy 178.6605 113.941155) (xy 178.660499 113.941153) (xy 178.640163 113.838918) (xy 178.629737 113.786503) + (xy 178.584243 113.67667) (xy 178.569397 113.640827) (xy 178.56939 113.640814) (xy 178.481789 113.509711) + (xy 178.481786 113.509707) (xy 178.370292 113.398213) (xy 178.370288 113.39821) (xy 178.239185 113.310609) + (xy 178.239172 113.310602) (xy 178.093501 113.250264) (xy 178.093489 113.250261) (xy 177.938845 113.2195) + (xy 177.938842 113.2195) (xy 177.781158 113.2195) (xy 177.781155 113.2195) (xy 177.62651 113.250261) + (xy 177.626498 113.250264) (xy 177.480827 113.310602) (xy 177.480814 113.310609) (xy 177.349711 113.39821) + (xy 177.349707 113.398213) (xy 177.238213 113.509707) (xy 177.23821 113.509711) (xy 177.150609 113.640814) + (xy 177.150602 113.640827) (xy 177.090264 113.786498) (xy 177.090261 113.78651) (xy 177.0595 113.941153) + (xy 172.458378 113.941153) (xy 172.425271 113.895585) (xy 172.425266 113.895579) (xy 172.28442 113.754733) + (xy 172.284418 113.754731) (xy 172.123266 113.637647) (xy 171.971827 113.560485) (xy 171.921031 113.51251) + (xy 171.904236 113.444689) (xy 171.926773 113.378554) (xy 171.971827 113.339515) (xy 172.028558 113.310609) + (xy 172.123266 113.262353) (xy 172.284418 113.145269) (xy 172.425269 113.004418) (xy 172.542353 112.843266) + (xy 172.632785 112.665783) (xy 172.659117 112.584741) (xy 172.694338 112.476343) (xy 172.694338 112.476342) + (xy 172.694339 112.476339) (xy 172.7255 112.279597) (xy 172.7255 112.080403) (xy 172.694339 111.883661) + (xy 172.694338 111.883657) (xy 172.694338 111.883656) (xy 172.632786 111.694219) (xy 172.627479 111.683803) + (xy 172.542353 111.516734) (xy 172.425269 111.355582) (xy 172.284418 111.214731) (xy 172.123266 111.097647) + (xy 172.121309 111.09665) (xy 171.971827 111.020485) (xy 171.921031 110.97251) (xy 171.904236 110.904689) + (xy 171.926773 110.838554) (xy 171.971827 110.799515) (xy 171.981116 110.794781) (xy 172.123266 110.722353) + (xy 172.284418 110.605269) (xy 172.425269 110.464418) (xy 172.542353 110.303266) (xy 172.632785 110.125783) + (xy 172.667151 110.020015) (xy 172.694338 109.936343) (xy 172.694338 109.936342) (xy 172.694339 109.936339) + (xy 172.7255 109.739597) (xy 172.7255 109.540403) (xy 172.694339 109.343661) (xy 172.694338 109.343657) + (xy 172.694338 109.343656) (xy 172.632786 109.154219) (xy 172.581251 109.053076) (xy 172.542353 108.976734) + (xy 172.425269 108.815582) (xy 172.284418 108.674731) (xy 172.123266 108.557647) (xy 171.971827 108.480485) + (xy 171.921031 108.43251) (xy 171.904236 108.364689) (xy 171.926773 108.298554) (xy 171.971827 108.259515) + (xy 171.981116 108.254781) (xy 172.123266 108.182353) (xy 172.284418 108.065269) (xy 172.425269 107.924418) + (xy 172.542353 107.763266) (xy 172.615359 107.619984) (xy 196.3595 107.619984) (xy 196.3595 110.020015) + (xy 196.37 110.122795) (xy 196.370001 110.122797) (xy 196.388587 110.178885) (xy 196.425186 110.289335) + (xy 196.425187 110.289337) (xy 196.517286 110.438651) (xy 196.517289 110.438655) (xy 196.641344 110.56271) + (xy 196.641348 110.562713) (xy 196.790662 110.654812) (xy 196.790664 110.654813) (xy 196.790666 110.654814) + (xy 196.957203 110.709999) (xy 197.059992 110.7205) (xy 197.059997 110.7205) (xy 199.460003 110.7205) + (xy 199.460008 110.7205) (xy 199.562797 110.709999) (xy 199.729334 110.654814) (xy 199.878655 110.562711) + (xy 200.002711 110.438655) (xy 200.094814 110.289334) (xy 200.149999 110.122797) (xy 200.1605 110.020008) + (xy 200.1605 107.619992) (xy 200.149999 107.517203) (xy 200.094814 107.350666) (xy 200.002711 107.201345) + (xy 199.878655 107.077289) (xy 199.878651 107.077286) (xy 199.729337 106.985187) (xy 199.729335 106.985186) + (xy 199.646065 106.957593) (xy 199.562797 106.930001) (xy 199.562795 106.93) (xy 199.460015 106.9195) + (xy 199.460008 106.9195) (xy 197.059992 106.9195) (xy 197.059984 106.9195) (xy 196.957204 106.93) + (xy 196.957203 106.930001) (xy 196.790664 106.985186) (xy 196.790662 106.985187) (xy 196.641348 107.077286) + (xy 196.641344 107.077289) (xy 196.517289 107.201344) (xy 196.517286 107.201348) (xy 196.425187 107.350662) + (xy 196.425186 107.350664) (xy 196.370001 107.517203) (xy 196.37 107.517204) (xy 196.3595 107.619984) + (xy 172.615359 107.619984) (xy 172.632785 107.585783) (xy 172.632786 107.58578) (xy 172.635148 107.578513) + (xy 172.635148 107.578512) (xy 172.694338 107.396343) (xy 172.694338 107.396342) (xy 172.694339 107.396339) + (xy 172.7255 107.199597) (xy 172.7255 107.000403) (xy 172.694339 106.803661) (xy 172.694338 106.803657) + (xy 172.694338 106.803656) (xy 172.632786 106.614219) (xy 172.542352 106.436733) (xy 172.425269 106.275582) + (xy 172.284418 106.134731) (xy 172.123266 106.017647) (xy 171.971827 105.940485) (xy 171.921031 105.89251) + (xy 171.904236 105.824689) (xy 171.926773 105.758554) (xy 171.971827 105.719515) (xy 171.981116 105.714781) + (xy 172.123266 105.642353) (xy 172.284418 105.525269) (xy 172.425269 105.384418) (xy 172.542353 105.223266) + (xy 172.632785 105.045783) (xy 172.694339 104.856339) (xy 172.7255 104.659597) (xy 172.7255 104.460403) + (xy 172.694339 104.263661) (xy 172.694338 104.263657) (xy 172.694338 104.263656) (xy 172.632786 104.074219) + (xy 172.59986 104.009598) (xy 172.542353 103.896734) (xy 172.425269 103.735582) (xy 172.385153 103.695466) + (xy 196.36 103.695466) (xy 196.36 103.944533) (xy 196.392508 104.191463) (xy 196.456973 104.432049) + (xy 196.552283 104.662148) (xy 196.552288 104.662159) (xy 196.676813 104.877841) (xy 196.676819 104.877849) + (xy 196.7514 104.975045) (xy 197.658958 104.067487) (xy 197.683978 104.12789) (xy 197.755112 104.234351) + (xy 197.845649 104.324888) (xy 197.95211 104.396022) (xy 198.012511 104.421041) (xy 197.104953 105.328598) + (xy 197.20215 105.40318) (xy 197.202158 105.403186) (xy 197.41784 105.527711) (xy 197.417851 105.527716) + (xy 197.64795 105.623026) (xy 197.888536 105.687491) (xy 198.135466 105.72) (xy 198.384534 105.72) + (xy 198.631463 105.687491) (xy 198.872049 105.623026) (xy 199.102148 105.527716) (xy 199.102159 105.527711) + (xy 199.317855 105.403178) (xy 199.415045 105.3286) (xy 199.415045 105.328597) (xy 198.507488 104.421041) + (xy 198.56789 104.396022) (xy 198.674351 104.324888) (xy 198.764888 104.234351) (xy 198.836022 104.12789) + (xy 198.861041 104.067489) (xy 199.768597 104.975045) (xy 199.7686 104.975045) (xy 199.843178 104.877855) + (xy 199.967711 104.662159) (xy 199.967716 104.662148) (xy 200.063026 104.432049) (xy 200.127491 104.191463) + (xy 200.16 103.944533) (xy 200.16 103.695466) (xy 200.127491 103.448536) (xy 200.063026 103.20795) + (xy 199.967716 102.977851) (xy 199.967711 102.97784) (xy 199.843186 102.762158) (xy 199.84318 102.76215) + (xy 199.768598 102.664953) (xy 198.861041 103.57251) (xy 198.836022 103.51211) (xy 198.764888 103.405649) + (xy 198.674351 103.315112) (xy 198.56789 103.243978) (xy 198.507487 103.218957) (xy 199.415045 102.3114) + (xy 199.317849 102.236819) (xy 199.317841 102.236813) (xy 199.102159 102.112288) (xy 199.102148 102.112283) + (xy 198.872049 102.016973) (xy 198.631463 101.952508) (xy 198.384534 101.92) (xy 198.135466 101.92) + (xy 197.888536 101.952508) (xy 197.64795 102.016973) (xy 197.417851 102.112283) (xy 197.417847 102.112285) + (xy 197.202143 102.236823) (xy 197.104953 102.311399) (xy 197.104953 102.3114) (xy 198.012511 103.218958) + (xy 197.95211 103.243978) (xy 197.845649 103.315112) (xy 197.755112 103.405649) (xy 197.683978 103.51211) + (xy 197.658958 103.572511) (xy 196.7514 102.664953) (xy 196.751399 102.664953) (xy 196.676823 102.762143) + (xy 196.552285 102.977847) (xy 196.552283 102.977851) (xy 196.456973 103.20795) (xy 196.392508 103.448536) + (xy 196.36 103.695466) (xy 172.385153 103.695466) (xy 172.284418 103.594731) (xy 172.123266 103.477647) + (xy 171.971827 103.400485) (xy 171.921031 103.35251) (xy 171.904236 103.284689) (xy 171.926773 103.218554) + (xy 171.971827 103.179515) (xy 171.990501 103.17) (xy 172.123266 103.102353) (xy 172.284418 102.985269) + (xy 172.425269 102.844418) (xy 172.542353 102.683266) (xy 172.632785 102.505783) (xy 172.632786 102.50578) + (xy 172.692814 102.321035) (xy 172.69365 102.318458) (xy 172.694339 102.316339) (xy 172.7255 102.119597) + (xy 172.7255 101.920403) (xy 172.694339 101.723661) (xy 172.694338 101.723657) (xy 172.694338 101.723656) + (xy 172.632786 101.534219) (xy 172.5755 101.421789) (xy 172.542353 101.356734) (xy 172.425269 101.195582) + (xy 172.284418 101.054731) (xy 172.123266 100.937647) (xy 172.070719 100.910873) (xy 171.971827 100.860485) + (xy 171.962673 100.85184) (xy 171.951007 100.847105) (xy 171.937752 100.828303) (xy 171.921031 100.81251) + (xy 171.918004 100.800289) (xy 171.91075 100.789998) (xy 171.909764 100.767015) (xy 171.904236 100.744689) + (xy 171.908297 100.732771) (xy 171.907799 100.721153) (xy 173.5595 100.721153) (xy 173.5595 100.878846) + (xy 173.590261 101.033489) (xy 173.590264 101.033501) (xy 173.650602 101.179172) (xy 173.650609 101.179185) + (xy 173.73821 101.310288) (xy 173.738213 101.310292) (xy 173.849707 101.421786) (xy 173.849711 101.421789) + (xy 173.980814 101.50939) (xy 173.980827 101.509397) (xy 174.040749 101.534217) (xy 174.126503 101.569737) + (xy 174.281153 101.600499) (xy 174.281156 101.6005) (xy 174.281158 101.6005) (xy 174.438844 101.6005) + (xy 174.438845 101.600499) (xy 174.593497 101.569737) (xy 174.739179 101.509394) (xy 174.870289 101.421789) + (xy 174.981789 101.310289) (xy 175.069394 101.179179) (xy 175.129737 101.033497) (xy 175.135655 101.003741) + (xy 175.148106 100.941153) (xy 181.7995 100.941153) (xy 181.7995 101.098846) (xy 181.830261 101.253489) + (xy 181.830264 101.253501) (xy 181.890602 101.399172) (xy 181.890609 101.399185) (xy 181.97821 101.530288) + (xy 181.978213 101.530292) (xy 182.089707 101.641786) (xy 182.089711 101.641789) (xy 182.220814 101.72939) + (xy 182.220827 101.729397) (xy 182.366498 101.789735) (xy 182.366503 101.789737) (xy 182.521153 101.820499) + (xy 182.521156 101.8205) (xy 182.521158 101.8205) (xy 182.678844 101.8205) (xy 182.678845 101.820499) + (xy 182.833497 101.789737) (xy 182.979179 101.729394) (xy 183.110289 101.641789) (xy 183.221789 101.530289) + (xy 183.309394 101.399179) (xy 183.369737 101.253497) (xy 183.4005 101.098842) (xy 183.4005 100.941158) + (xy 183.4005 100.941155) (xy 183.400499 100.941153) (xy 188.0595 100.941153) (xy 188.0595 101.098846) + (xy 188.090261 101.253489) (xy 188.090264 101.253501) (xy 188.150602 101.399172) (xy 188.150609 101.399185) + (xy 188.23821 101.530288) (xy 188.238213 101.530292) (xy 188.349707 101.641786) (xy 188.349711 101.641789) + (xy 188.480814 101.72939) (xy 188.480827 101.729397) (xy 188.626498 101.789735) (xy 188.626503 101.789737) + (xy 188.781153 101.820499) (xy 188.781156 101.8205) (xy 188.781158 101.8205) (xy 188.938844 101.8205) + (xy 188.938845 101.820499) (xy 189.093497 101.789737) (xy 189.239179 101.729394) (xy 189.370289 101.641789) + (xy 189.481789 101.530289) (xy 189.569394 101.399179) (xy 189.629737 101.253497) (xy 189.6605 101.098842) + (xy 189.6605 100.941158) (xy 189.6605 100.941155) (xy 189.660499 100.941153) (xy 189.641813 100.847215) + (xy 189.629737 100.786503) (xy 189.607481 100.732771) (xy 189.569397 100.640827) (xy 189.56939 100.640814) + (xy 189.481789 100.509711) (xy 189.481786 100.509707) (xy 189.370292 100.398213) (xy 189.370288 100.39821) + (xy 189.239185 100.310609) (xy 189.239172 100.310602) (xy 189.093501 100.250264) (xy 189.093489 100.250261) + (xy 188.938845 100.2195) (xy 188.938842 100.2195) (xy 188.781158 100.2195) (xy 188.781155 100.2195) + (xy 188.62651 100.250261) (xy 188.626498 100.250264) (xy 188.480827 100.310602) (xy 188.480814 100.310609) + (xy 188.349711 100.39821) (xy 188.349707 100.398213) (xy 188.238213 100.509707) (xy 188.23821 100.509711) + (xy 188.150609 100.640814) (xy 188.150602 100.640827) (xy 188.090264 100.786498) (xy 188.090261 100.78651) + (xy 188.0595 100.941153) (xy 183.400499 100.941153) (xy 183.381813 100.847215) (xy 183.369737 100.786503) + (xy 183.347481 100.732771) (xy 183.309397 100.640827) (xy 183.30939 100.640814) (xy 183.221789 100.509711) + (xy 183.221786 100.509707) (xy 183.110292 100.398213) (xy 183.110288 100.39821) (xy 182.979185 100.310609) + (xy 182.979172 100.310602) (xy 182.833501 100.250264) (xy 182.833489 100.250261) (xy 182.678845 100.2195) + (xy 182.678842 100.2195) (xy 182.521158 100.2195) (xy 182.521155 100.2195) (xy 182.36651 100.250261) + (xy 182.366498 100.250264) (xy 182.220827 100.310602) (xy 182.220814 100.310609) (xy 182.089711 100.39821) + (xy 182.089707 100.398213) (xy 181.978213 100.509707) (xy 181.97821 100.509711) (xy 181.890609 100.640814) + (xy 181.890602 100.640827) (xy 181.830264 100.786498) (xy 181.830261 100.78651) (xy 181.7995 100.941153) + (xy 175.148106 100.941153) (xy 175.154129 100.910874) (xy 175.154129 100.910873) (xy 175.160499 100.878846) + (xy 175.1605 100.878844) (xy 175.1605 100.721155) (xy 175.160499 100.721153) (xy 175.152025 100.678554) + (xy 175.129737 100.566503) (xy 175.079521 100.445269) (xy 175.069397 100.420827) (xy 175.06939 100.420814) + (xy 174.981789 100.289711) (xy 174.981786 100.289707) (xy 174.870292 100.178213) (xy 174.870288 100.17821) + (xy 174.739185 100.090609) (xy 174.739172 100.090602) (xy 174.593501 100.030264) (xy 174.593489 100.030261) + (xy 174.438845 99.9995) (xy 174.438842 99.9995) (xy 174.281158 99.9995) (xy 174.281155 99.9995) + (xy 174.12651 100.030261) (xy 174.126498 100.030264) (xy 173.980827 100.090602) (xy 173.980814 100.090609) + (xy 173.849711 100.17821) (xy 173.849707 100.178213) (xy 173.738213 100.289707) (xy 173.73821 100.289711) + (xy 173.650609 100.420814) (xy 173.650602 100.420827) (xy 173.590264 100.566498) (xy 173.590261 100.56651) + (xy 173.5595 100.721153) (xy 171.907799 100.721153) (xy 171.907758 100.720193) (xy 171.919352 100.700329) + (xy 171.926773 100.678554) (xy 171.937476 100.669279) (xy 171.94298 100.659851) (xy 171.971827 100.639515) + (xy 172.040389 100.604581) (xy 172.048502 100.600447) (xy 172.123266 100.562353) (xy 172.284418 100.445269) + (xy 172.425269 100.304418) (xy 172.542353 100.143266) (xy 172.632785 99.965783) (xy 172.694339 99.776339) + (xy 172.7255 99.579597) (xy 172.7255 99.380403) (xy 172.694339 99.183661) (xy 172.694338 99.183657) + (xy 172.694338 99.183656) (xy 172.632786 98.994219) (xy 172.569895 98.870789) (xy 172.542353 98.816734) + (xy 172.425269 98.655582) (xy 172.284418 98.514731) (xy 172.123266 98.397647) (xy 171.971827 98.320485) + (xy 171.921031 98.27251) (xy 171.904236 98.204689) (xy 171.926773 98.138554) (xy 171.971827 98.099515) + (xy 171.981116 98.094781) (xy 172.123266 98.022353) (xy 172.284418 97.905269) (xy 172.425269 97.764418) + (xy 172.542353 97.603266) (xy 172.632785 97.425783) (xy 172.694339 97.236339) (xy 172.7255 97.039597) + (xy 172.7255 96.840403) (xy 172.694339 96.643661) (xy 172.694338 96.643657) (xy 172.694338 96.643656) + (xy 172.632786 96.454219) (xy 172.542352 96.276733) (xy 172.425269 96.115582) (xy 172.284418 95.974731) + (xy 172.123266 95.857647) (xy 171.971827 95.780485) (xy 171.921031 95.73251) (xy 171.904236 95.664689) + (xy 171.926773 95.598554) (xy 171.971827 95.559515) (xy 171.981116 95.554781) (xy 172.123266 95.482353) + (xy 172.284418 95.365269) (xy 172.425269 95.224418) (xy 172.542353 95.063266) (xy 172.632785 94.885783) + (xy 172.694339 94.696339) (xy 172.7255 94.499597) (xy 172.7255 94.300403) (xy 172.694339 94.103661) + (xy 172.694338 94.103657) (xy 172.694338 94.103656) (xy 172.632786 93.914219) (xy 172.542352 93.736733) + (xy 172.425269 93.575582) (xy 172.284418 93.434731) (xy 172.123266 93.317647) (xy 171.971827 93.240485) + (xy 171.921031 93.19251) (xy 171.904236 93.124689) (xy 171.926773 93.058554) (xy 171.971827 93.019515) + (xy 171.981116 93.014781) (xy 172.123266 92.942353) (xy 172.284418 92.825269) (xy 172.425269 92.684418) + (xy 172.542353 92.523266) (xy 172.632785 92.345783) (xy 172.694339 92.156339) (xy 172.7255 91.959597) + (xy 172.7255 91.760403) (xy 172.694339 91.563661) (xy 172.694338 91.563657) (xy 172.694338 91.563656) + (xy 172.632786 91.374219) (xy 172.542352 91.196733) (xy 172.425269 91.035582) (xy 172.284418 90.894731) + (xy 172.123266 90.777647) (xy 171.971827 90.700485) (xy 171.921031 90.65251) (xy 171.904236 90.584689) + (xy 171.926773 90.518554) (xy 171.971827 90.479515) (xy 171.981116 90.474781) (xy 172.123266 90.402353) + (xy 172.284418 90.285269) (xy 172.425269 90.144418) (xy 172.542353 89.983266) (xy 172.632785 89.805783) + (xy 172.694339 89.616339) (xy 172.7255 89.419597) (xy 172.7255 89.220403) (xy 172.694339 89.023661) + (xy 172.694338 89.023657) (xy 172.694338 89.023656) (xy 172.632786 88.834219) (xy 172.542352 88.656733) + (xy 172.425269 88.495582) (xy 172.284418 88.354731) (xy 172.123266 88.237647) (xy 171.971827 88.160485) + (xy 171.921031 88.11251) (xy 171.904236 88.044689) (xy 171.926773 87.978554) (xy 171.971827 87.939515) + (xy 172.013279 87.918394) (xy 172.123266 87.862353) (xy 172.284418 87.745269) (xy 172.425269 87.604418) + (xy 172.542353 87.443266) (xy 172.632785 87.265783) (xy 172.649474 87.214419) (xy 172.694338 87.076343) + (xy 172.694338 87.076342) (xy 172.694339 87.076339) (xy 172.7255 86.879597) (xy 172.7255 86.680403) + (xy 172.694339 86.483661) (xy 172.694338 86.483657) (xy 172.694338 86.483656) (xy 172.632786 86.294219) + (xy 172.58139 86.193349) (xy 172.542353 86.116734) (xy 172.425269 85.955582) (xy 172.284418 85.814731) + (xy 172.123266 85.697647) (xy 171.971827 85.620485) (xy 171.921031 85.57251) (xy 171.904236 85.504689) + (xy 171.926773 85.438554) (xy 171.971827 85.399515) (xy 172.0188 85.375581) (xy 172.123266 85.322353) + (xy 172.284418 85.205269) (xy 172.425269 85.064418) (xy 172.542353 84.903266) (xy 172.632785 84.725783) + (xy 172.635838 84.716387) (xy 172.694338 84.536343) (xy 172.694338 84.536342) (xy 172.694339 84.536339) + (xy 172.7255 84.339597) (xy 172.7255 84.140403) (xy 172.694339 83.943661) (xy 172.694338 83.943657) + (xy 172.694338 83.943656) (xy 172.632786 83.754219) (xy 172.61931 83.72777) (xy 172.542353 83.576734) + (xy 172.425269 83.415582) (xy 172.284418 83.274731) (xy 172.123266 83.157647) (xy 171.971827 83.080485) + (xy 171.921031 83.03251) (xy 171.904236 82.964689) (xy 171.926773 82.898554) (xy 171.971827 82.859515) + (xy 171.981116 82.854781) (xy 172.123266 82.782353) (xy 172.284418 82.665269) (xy 172.425269 82.524418) + (xy 172.542353 82.363266) (xy 172.632785 82.185783) (xy 172.694339 81.996339) (xy 172.7255 81.799597) + (xy 172.7255 81.600403) (xy 172.707292 81.485441) (xy 196.0095 81.485441) (xy 196.0095 81.734558) + (xy 196.009501 81.734575) (xy 196.042017 81.981561) (xy 196.106498 82.222207) (xy 196.20183 82.452361) + (xy 196.201837 82.452376) (xy 196.3264 82.668126) (xy 196.47806 82.865774) (xy 196.478066 82.865781) + (xy 196.654218 83.041933) (xy 196.654225 83.041939) (xy 196.851873 83.193599) (xy 197.067623 83.318162) + (xy 197.067638 83.318169) (xy 197.166825 83.359253) (xy 197.297793 83.413502) (xy 197.538435 83.477982) + (xy 197.785435 83.5105) (xy 197.785442 83.5105) (xy 198.034558 83.5105) (xy 198.034565 83.5105) + (xy 198.281565 83.477982) (xy 198.522207 83.413502) (xy 198.752373 83.318164) (xy 198.968127 83.193599) + (xy 199.165776 83.041938) (xy 199.341938 82.865776) (xy 199.493599 82.668127) (xy 199.618164 82.452373) + (xy 199.713502 82.222207) (xy 199.777982 81.981565) (xy 199.8105 81.734565) (xy 199.8105 81.485435) + (xy 199.777982 81.238435) (xy 199.713502 80.997793) (xy 199.618164 80.767627) (xy 199.531573 80.617647) + (xy 199.493599 80.551873) (xy 199.341939 80.354225) (xy 199.341933 80.354218) (xy 199.165781 80.178066) + (xy 199.165774 80.17806) (xy 198.968126 80.0264) (xy 198.752376 79.901837) (xy 198.752361 79.90183) + (xy 198.522207 79.806498) (xy 198.281561 79.742017) (xy 198.034575 79.709501) (xy 198.03457 79.7095) + (xy 198.034565 79.7095) (xy 197.785435 79.7095) (xy 197.785429 79.7095) (xy 197.785424 79.709501) + (xy 197.538438 79.742017) (xy 197.297792 79.806498) (xy 197.067638 79.90183) (xy 197.067623 79.901837) + (xy 196.851873 80.0264) (xy 196.654225 80.17806) (xy 196.654218 80.178066) (xy 196.478066 80.354218) + (xy 196.47806 80.354225) (xy 196.3264 80.551873) (xy 196.201837 80.767623) (xy 196.20183 80.767638) + (xy 196.106498 80.997792) (xy 196.042017 81.238438) (xy 196.009501 81.485424) (xy 196.0095 81.485441) + (xy 172.707292 81.485441) (xy 172.694339 81.403661) (xy 172.694338 81.403656) (xy 172.632786 81.214219) + (xy 172.542352 81.036733) (xy 172.425269 80.875582) (xy 172.284418 80.734731) (xy 172.123266 80.617647) + (xy 171.971827 80.540485) (xy 171.921031 80.49251) (xy 171.904236 80.424689) (xy 171.926773 80.358554) + (xy 171.971827 80.319515) (xy 171.981116 80.314781) (xy 172.123266 80.242353) (xy 172.284418 80.125269) + (xy 172.425269 79.984418) (xy 172.542353 79.823266) (xy 172.632785 79.645783) (xy 172.694339 79.456339) + (xy 172.7255 79.259597) (xy 172.7255 79.060403) (xy 172.694339 78.863661) (xy 172.694338 78.863657) + (xy 172.694338 78.863656) (xy 172.632786 78.674219) (xy 172.549367 78.5105) (xy 172.542353 78.496734) + (xy 172.425269 78.335582) (xy 172.284418 78.194731) (xy 172.123266 78.077647) (xy 171.971827 78.000485) + (xy 171.921031 77.95251) (xy 171.904236 77.884689) (xy 171.926773 77.818554) (xy 171.971827 77.779515) + (xy 171.981116 77.774781) (xy 172.123266 77.702353) (xy 172.284418 77.585269) (xy 172.425269 77.444418) + (xy 172.542353 77.283266) (xy 172.632785 77.105783) (xy 172.694339 76.916339) (xy 172.7255 76.719597) + (xy 172.7255 76.520403) (xy 172.694339 76.323661) (xy 172.694338 76.323657) (xy 172.694338 76.323656) + (xy 172.632786 76.134219) (xy 172.542352 75.956733) (xy 172.425269 75.795582) (xy 172.284418 75.654731) + (xy 172.123266 75.537647) (xy 171.971827 75.460485) (xy 171.921031 75.41251) (xy 171.920405 75.409984) + (xy 196.0095 75.409984) (xy 196.0095 77.810015) (xy 196.02 77.912795) (xy 196.020001 77.912796) + (xy 196.075186 78.079335) (xy 196.075187 78.079337) (xy 196.167286 78.228651) (xy 196.167289 78.228655) + (xy 196.291344 78.35271) (xy 196.291348 78.352713) (xy 196.440662 78.444812) (xy 196.440664 78.444813) + (xy 196.440666 78.444814) (xy 196.607203 78.499999) (xy 196.709992 78.5105) (xy 196.709997 78.5105) + (xy 199.110003 78.5105) (xy 199.110008 78.5105) (xy 199.212797 78.499999) (xy 199.379334 78.444814) + (xy 199.528655 78.352711) (xy 199.652711 78.228655) (xy 199.744814 78.079334) (xy 199.799999 77.912797) + (xy 199.8105 77.810008) (xy 199.8105 75.409992) (xy 199.799999 75.307203) (xy 199.744814 75.140666) + (xy 199.652711 74.991345) (xy 199.528655 74.867289) (xy 199.528651 74.867286) (xy 199.379337 74.775187) + (xy 199.379335 74.775186) (xy 199.241152 74.729397) (xy 199.212797 74.720001) (xy 199.212795 74.72) + (xy 199.110015 74.7095) (xy 199.110008 74.7095) (xy 196.709992 74.7095) (xy 196.709984 74.7095) + (xy 196.607204 74.72) (xy 196.607203 74.720001) (xy 196.440664 74.775186) (xy 196.440662 74.775187) + (xy 196.291348 74.867286) (xy 196.291344 74.867289) (xy 196.167289 74.991344) (xy 196.167286 74.991348) + (xy 196.075187 75.140662) (xy 196.075186 75.140664) (xy 196.020001 75.307203) (xy 196.02 75.307204) + (xy 196.0095 75.409984) (xy 171.920405 75.409984) (xy 171.904236 75.344689) (xy 171.926773 75.278555) + (xy 171.926774 75.278554) (xy 171.971827 75.239515) (xy 171.981116 75.234781) (xy 172.123266 75.162353) + (xy 172.284418 75.045269) (xy 172.425269 74.904418) (xy 172.542353 74.743266) (xy 172.632785 74.565783) + (xy 172.68692 74.399172) (xy 172.694338 74.376343) (xy 172.694338 74.376342) (xy 172.694339 74.376339) + (xy 172.7255 74.179597) (xy 172.7255 73.980403) (xy 172.719283 73.941153) (xy 188.6595 73.941153) + (xy 188.6595 74.098846) (xy 188.690261 74.253489) (xy 188.690264 74.253501) (xy 188.750602 74.399172) + (xy 188.750609 74.399185) (xy 188.83821 74.530288) (xy 188.838213 74.530292) (xy 188.949707 74.641786) + (xy 188.949711 74.641789) (xy 189.080814 74.72939) (xy 189.080827 74.729397) (xy 189.226498 74.789735) + (xy 189.226503 74.789737) (xy 189.381153 74.820499) (xy 189.381156 74.8205) (xy 189.381158 74.8205) + (xy 189.538844 74.8205) (xy 189.538845 74.820499) (xy 189.693497 74.789737) (xy 189.839179 74.729394) + (xy 189.970289 74.641789) (xy 190.081789 74.530289) (xy 190.169394 74.399179) (xy 190.174742 74.386269) + (xy 190.183067 74.366166) (xy 190.229737 74.253497) (xy 190.2605 74.098842) (xy 190.2605 73.941158) + (xy 190.2605 73.941155) (xy 190.260499 73.941153) (xy 190.256047 73.91877) (xy 190.229737 73.786503) + (xy 190.229735 73.786498) (xy 190.169397 73.640827) (xy 190.16939 73.640814) (xy 190.081789 73.509711) + (xy 190.081786 73.509707) (xy 189.970292 73.398213) (xy 189.970288 73.39821) (xy 189.839185 73.310609) + (xy 189.839172 73.310602) (xy 189.693501 73.250264) (xy 189.693489 73.250261) (xy 189.538845 73.2195) + (xy 189.538842 73.2195) (xy 189.381158 73.2195) (xy 189.381155 73.2195) (xy 189.22651 73.250261) + (xy 189.226498 73.250264) (xy 189.080827 73.310602) (xy 189.080814 73.310609) (xy 188.949711 73.39821) + (xy 188.949707 73.398213) (xy 188.838213 73.509707) (xy 188.83821 73.509711) (xy 188.750609 73.640814) + (xy 188.750602 73.640827) (xy 188.690264 73.786498) (xy 188.690261 73.78651) (xy 188.6595 73.941153) + (xy 172.719283 73.941153) (xy 172.694339 73.783661) (xy 172.694338 73.783657) (xy 172.694338 73.783656) + (xy 172.632786 73.594219) (xy 172.603593 73.536924) (xy 172.542353 73.416734) (xy 172.425269 73.255582) + (xy 172.284418 73.114731) (xy 172.123266 72.997647) (xy 171.971827 72.920485) (xy 171.921031 72.87251) + (xy 171.904236 72.804689) (xy 171.926773 72.738554) (xy 171.971827 72.699515) (xy 171.981116 72.694781) + (xy 172.123266 72.622353) (xy 172.284418 72.505269) (xy 172.425269 72.364418) (xy 172.542353 72.203266) + (xy 172.632785 72.025783) (xy 172.640796 72.001127) (xy 172.694338 71.836343) (xy 172.694338 71.836342) + (xy 172.694339 71.836339) (xy 172.7255 71.639597) (xy 172.7255 71.440403) (xy 172.694339 71.243661) + (xy 172.694338 71.243657) (xy 172.694338 71.243656) (xy 172.632786 71.054219) (xy 172.61321 71.015799) + (xy 172.542353 70.876734) (xy 172.425269 70.715582) (xy 172.284418 70.574731) (xy 172.123266 70.457647) + (xy 171.971827 70.380485) (xy 171.921031 70.33251) (xy 171.904236 70.264689) (xy 171.926773 70.198554) + (xy 171.971827 70.159515) (xy 171.984466 70.153075) (xy 172.123266 70.082353) (xy 172.284418 69.965269) + (xy 172.425269 69.824418) (xy 172.542353 69.663266) (xy 172.632785 69.485783) (xy 172.694339 69.296339) + (xy 172.7255 69.099597) (xy 172.7255 68.900403) (xy 172.694339 68.703661) (xy 172.694338 68.703657) + (xy 172.694338 68.703656) (xy 172.632786 68.514219) (xy 172.542352 68.336733) (xy 172.425269 68.175582) + (xy 172.284418 68.034731) (xy 172.123266 67.917647) (xy 172.077812 67.894487) (xy 171.971277 67.840204) + (xy 171.920481 67.792229) (xy 171.903686 67.724408) (xy 171.926224 67.658273) (xy 171.971277 67.619234) + (xy 172.123005 67.541924) (xy 172.160863 67.514418) (xy 172.160863 67.514417) (xy 171.597574 66.951128) + (xy 171.656853 66.935245) (xy 171.773147 66.868102) (xy 171.868102 66.773147) (xy 171.935245 66.656853) + (xy 171.951128 66.597574) (xy 172.514417 67.160863) (xy 172.514418 67.160863) (xy 172.541924 67.123005) + (xy 172.63232 66.945594) (xy 172.693852 66.756222) (xy 172.725 66.559563) (xy 172.725 66.360436) + (xy 172.693852 66.163777) (xy 172.63232 65.974405) (xy 172.541924 65.796994) (xy 172.514417 65.759135) + (xy 172.514417 65.759134) (xy 171.951128 66.322424) (xy 171.935245 66.263147) (xy 171.868102 66.146853) + (xy 171.773147 66.051898) (xy 171.656853 65.984755) (xy 171.597574 65.968871) (xy 172.160864 65.405581) + (xy 172.160863 65.40558) (xy 172.123008 65.378077) (xy 171.945594 65.287679) (xy 171.756222 65.226147) + (xy 171.559563 65.195) (xy 171.360437 65.195) (xy 171.163777 65.226147) (xy 170.974405 65.287679) + (xy 170.79699 65.378077) (xy 170.759135 65.40558) (xy 170.759135 65.405581) (xy 171.322425 65.968871) + (xy 171.263147 65.984755) (xy 171.146853 66.051898) (xy 171.051898 66.146853) (xy 170.984755 66.263147) + (xy 170.968871 66.322425) (xy 170.405581 65.759135) (xy 170.40558 65.759135) (xy 170.378077 65.79699) + (xy 170.287679 65.974405) (xy 170.226147 66.163777) (xy 170.195 66.360436) (xy 170.195 66.559563) + (xy 170.226147 66.756222) (xy 170.287679 66.945594) (xy 170.378077 67.123008) (xy 170.40558 67.160863) + (xy 170.405581 67.160864) (xy 170.968871 66.597574) (xy 170.984755 66.656853) (xy 171.051898 66.773147) + (xy 171.146853 66.868102) (xy 171.263147 66.935245) (xy 171.322425 66.951128) (xy 170.759134 67.514417) + (xy 170.796994 67.541924) (xy 170.948722 67.619234) (xy 170.999518 67.667209) (xy 171.016313 67.73503) + (xy 170.993776 67.801165) (xy 170.948723 67.840203) (xy 170.796735 67.917645) (xy 170.683997 67.999555) + (xy 170.635582 68.034731) (xy 170.63558 68.034733) (xy 170.635579 68.034733) (xy 170.494733 68.175579) + (xy 170.494733 68.17558) (xy 170.494731 68.175582) (xy 170.444447 68.24479) (xy 170.377647 68.336733) + (xy 170.287213 68.514219) (xy 170.225661 68.703656) (xy 170.225661 68.703659) (xy 170.1945 68.900403) + (xy 149.8655 68.900403) (xy 149.834339 68.703661) (xy 149.834338 68.703657) (xy 149.834338 68.703656) + (xy 149.772786 68.514219) (xy 149.682352 68.336733) (xy 149.565269 68.175582) (xy 149.424418 68.034731) + (xy 149.307543 67.949816) (xy 149.264878 67.894487) (xy 149.258899 67.824874) (xy 149.291505 67.763079) + (xy 149.352343 67.728722) (xy 149.380428 67.725499) (xy 149.412872 67.725499) (xy 149.472483 67.719091) + (xy 149.607331 67.668796) (xy 149.722546 67.582546) (xy 149.808796 67.467331) (xy 149.859091 67.332483) + (xy 149.8655 67.272873) (xy 149.865499 65.647128) (xy 149.859091 65.587517) (xy 149.850511 65.564514) + (xy 149.825022 65.496173) (xy 149.825021 65.496171) (xy 149.808798 65.452673) (xy 149.808793 65.452664) + (xy 149.722547 65.337455) (xy 149.722544 65.337452) (xy 149.607335 65.251206) (xy 149.607328 65.251202) + (xy 149.472482 65.200908) (xy 149.472483 65.200908) (xy 149.412883 65.194501) (xy 149.412881 65.1945) + (xy 149.412873 65.1945) (xy 149.412864 65.1945) (xy 147.787129 65.1945) (xy 147.787123 65.194501) + (xy 147.727516 65.200908) (xy 147.592671 65.251202) (xy 147.592664 65.251206) (xy 147.477455 65.337452) + (xy 147.477452 65.337455) (xy 147.391206 65.452664) (xy 147.391202 65.452671) (xy 147.340908 65.587517) + (xy 147.334501 65.647116) (xy 147.334501 65.647123) (xy 147.3345 65.647135) (xy 58.4505 65.647135) + (xy 58.4505 60.078711) (xy 59.1495 60.078711) (xy 59.1495 60.321288) (xy 59.181161 60.561785) (xy 59.243947 60.796104) + (xy 59.309119 60.953442) (xy 59.336776 61.020212) (xy 59.458064 61.230289) (xy 59.458066 61.230292) + (xy 59.458067 61.230293) (xy 59.605733 61.422736) (xy 59.605739 61.422743) (xy 59.777256 61.59426) + (xy 59.777263 61.594266) (xy 59.848584 61.648992) (xy 59.969711 61.741936) (xy 60.179788 61.863224) + (xy 60.4039 61.956054) (xy 60.638211 62.018838) (xy 60.818586 62.042584) (xy 60.878711 62.0505) + (xy 60.878712 62.0505) (xy 61.121289 62.0505) (xy 61.169388 62.044167) (xy 61.361789 62.018838) + (xy 61.5961 61.956054) (xy 61.820212 61.863224) (xy 62.030289 61.741936) (xy 62.222738 61.594265) + (xy 62.394265 61.422738) (xy 62.491943 61.295441) (xy 65.5595 61.295441) (xy 65.5595 61.544558) + (xy 65.559501 61.544575) (xy 65.585831 61.744575) (xy 65.592018 61.791565) (xy 65.611219 61.863224) + (xy 65.656498 62.032207) (xy 65.75183 62.262361) (xy 65.751837 62.262376) (xy 65.8764 62.478126) + (xy 66.02806 62.675774) (xy 66.028066 62.675781) (xy 66.204218 62.851933) (xy 66.204225 62.851939) + (xy 66.401873 63.003599) (xy 66.617623 63.128162) (xy 66.617638 63.128169) (xy 66.716825 63.169253) + (xy 66.847793 63.223502) (xy 67.088435 63.287982) (xy 67.335435 63.3205) (xy 67.335442 63.3205) + (xy 67.584558 63.3205) (xy 67.584565 63.3205) (xy 67.831565 63.287982) (xy 68.072207 63.223502) + (xy 68.302373 63.128164) (xy 68.518127 63.003599) (xy 68.715776 62.851938) (xy 68.891938 62.675776) + (xy 69.043599 62.478127) (xy 69.168164 62.262373) (xy 69.263502 62.032207) (xy 69.327982 61.791565) + (xy 69.3605 61.544565) (xy 69.3605 61.295441) (xy 70.5595 61.295441) (xy 70.5595 61.544558) (xy 70.559501 61.544575) + (xy 70.585831 61.744575) (xy 70.592018 61.791565) (xy 70.611219 61.863224) (xy 70.656498 62.032207) + (xy 70.75183 62.262361) (xy 70.751837 62.262376) (xy 70.8764 62.478126) (xy 71.02806 62.675774) + (xy 71.028066 62.675781) (xy 71.204218 62.851933) (xy 71.204225 62.851939) (xy 71.401873 63.003599) + (xy 71.617623 63.128162) (xy 71.617638 63.128169) (xy 71.716825 63.169253) (xy 71.847793 63.223502) + (xy 72.088435 63.287982) (xy 72.335435 63.3205) (xy 72.335442 63.3205) (xy 72.584558 63.3205) (xy 72.584565 63.3205) + (xy 72.831565 63.287982) (xy 73.072207 63.223502) (xy 73.302373 63.128164) (xy 73.518127 63.003599) + (xy 73.715776 62.851938) (xy 73.891938 62.675776) (xy 74.043599 62.478127) (xy 74.168164 62.262373) + (xy 74.263502 62.032207) (xy 74.327982 61.791565) (xy 74.3605 61.544565) (xy 74.3605 61.295435) + (xy 74.327982 61.048435) (xy 74.263502 60.807793) (xy 74.20306 60.661873) (xy 74.168169 60.577638) + (xy 74.168162 60.577623) (xy 74.043599 60.361873) (xy 73.99023 60.292321) (xy 73.934724 60.219984) + (xy 75.5595 60.219984) (xy 75.5595 62.620015) (xy 75.57 62.722795) (xy 75.570001 62.722796) (xy 75.625186 62.889335) + (xy 75.625187 62.889337) (xy 75.717286 63.038651) (xy 75.717289 63.038655) (xy 75.841344 63.16271) + (xy 75.841348 63.162713) (xy 75.990662 63.254812) (xy 75.990664 63.254813) (xy 75.990666 63.254814) + (xy 76.157203 63.309999) (xy 76.259992 63.3205) (xy 76.259997 63.3205) (xy 78.660003 63.3205) (xy 78.660008 63.3205) + (xy 78.762797 63.309999) (xy 78.929334 63.254814) (xy 79.078655 63.162711) (xy 79.202711 63.038655) + (xy 79.294814 62.889334) (xy 79.349999 62.722797) (xy 79.3605 62.620008) (xy 79.3605 61.495441) + (xy 83.892833 61.495441) (xy 83.892833 61.744558) (xy 83.892834 61.744575) (xy 83.92535 61.991561) + (xy 83.989831 62.232207) (xy 84.085163 62.462361) (xy 84.08517 62.462376) (xy 84.209733 62.678126) + (xy 84.361393 62.875774) (xy 84.361399 62.875781) (xy 84.537551 63.051933) (xy 84.537558 63.051939) + (xy 84.735206 63.203599) (xy 84.950956 63.328162) (xy 84.950971 63.328169) (xy 85.050158 63.369253) + (xy 85.181126 63.423502) (xy 85.421768 63.487982) (xy 85.668768 63.5205) (xy 85.668775 63.5205) + (xy 85.917891 63.5205) (xy 85.917898 63.5205) (xy 86.164898 63.487982) (xy 86.40554 63.423502) (xy 86.635706 63.328164) + (xy 86.85146 63.203599) (xy 87.049109 63.051938) (xy 87.225271 62.875776) (xy 87.376932 62.678127) + (xy 87.501497 62.462373) (xy 87.596835 62.232207) (xy 87.661315 61.991565) (xy 87.693833 61.744565) + (xy 87.693833 61.495441) (xy 88.892833 61.495441) (xy 88.892833 61.744558) (xy 88.892834 61.744575) + (xy 88.92535 61.991561) (xy 88.989831 62.232207) (xy 89.085163 62.462361) (xy 89.08517 62.462376) + (xy 89.209733 62.678126) (xy 89.361393 62.875774) (xy 89.361399 62.875781) (xy 89.537551 63.051933) + (xy 89.537558 63.051939) (xy 89.735206 63.203599) (xy 89.950956 63.328162) (xy 89.950971 63.328169) + (xy 90.050158 63.369253) (xy 90.181126 63.423502) (xy 90.421768 63.487982) (xy 90.668768 63.5205) + (xy 90.668775 63.5205) (xy 90.917891 63.5205) (xy 90.917898 63.5205) (xy 91.164898 63.487982) (xy 91.40554 63.423502) + (xy 91.635706 63.328164) (xy 91.85146 63.203599) (xy 92.049109 63.051938) (xy 92.225271 62.875776) + (xy 92.376932 62.678127) (xy 92.501497 62.462373) (xy 92.596835 62.232207) (xy 92.661315 61.991565) + (xy 92.693833 61.744565) (xy 92.693833 61.495435) (xy 92.661315 61.248435) (xy 92.596835 61.007793) + (xy 92.513992 60.807792) (xy 92.501502 60.777638) (xy 92.501495 60.777623) (xy 92.376932 60.561873) + (xy 92.376864 60.561785) (xy 92.302004 60.464225) (xy 92.268057 60.419984) (xy 93.892833 60.419984) + (xy 93.892833 62.820015) (xy 93.903333 62.922795) (xy 93.903334 62.922797) (xy 93.914484 62.956446) + (xy 93.958519 63.089335) (xy 93.95852 63.089337) (xy 94.050619 63.238651) (xy 94.050622 63.238655) + (xy 94.174677 63.36271) (xy 94.174681 63.362713) (xy 94.323995 63.454812) (xy 94.323997 63.454813) + (xy 94.323999 63.454814) (xy 94.490536 63.509999) (xy 94.593325 63.5205) (xy 94.59333 63.5205) (xy 96.993336 63.5205) + (xy 96.993341 63.5205) (xy 97.09613 63.509999) (xy 97.262667 63.454814) (xy 97.411988 63.362711) + (xy 97.536044 63.238655) (xy 97.628147 63.089334) (xy 97.683332 62.922797) (xy 97.693833 62.820008) + (xy 97.693833 61.495441) (xy 102.226167 61.495441) (xy 102.226167 61.744558) (xy 102.226168 61.744575) + (xy 102.258684 61.991561) (xy 102.323165 62.232207) (xy 102.418497 62.462361) (xy 102.418504 62.462376) + (xy 102.543067 62.678126) (xy 102.694727 62.875774) (xy 102.694733 62.875781) (xy 102.870885 63.051933) + (xy 102.870892 63.051939) (xy 103.06854 63.203599) (xy 103.28429 63.328162) (xy 103.284305 63.328169) + (xy 103.383492 63.369253) (xy 103.51446 63.423502) (xy 103.755102 63.487982) (xy 104.002102 63.5205) + (xy 104.002109 63.5205) (xy 104.251225 63.5205) (xy 104.251232 63.5205) (xy 104.498232 63.487982) + (xy 104.738874 63.423502) (xy 104.96904 63.328164) (xy 105.184794 63.203599) (xy 105.382443 63.051938) + (xy 105.558605 62.875776) (xy 105.710266 62.678127) (xy 105.834831 62.462373) (xy 105.930169 62.232207) + (xy 105.994649 61.991565) (xy 106.027167 61.744565) (xy 106.027167 61.495441) (xy 107.226167 61.495441) + (xy 107.226167 61.744558) (xy 107.226168 61.744575) (xy 107.258684 61.991561) (xy 107.323165 62.232207) + (xy 107.418497 62.462361) (xy 107.418504 62.462376) (xy 107.543067 62.678126) (xy 107.694727 62.875774) + (xy 107.694733 62.875781) (xy 107.870885 63.051933) (xy 107.870892 63.051939) (xy 108.06854 63.203599) + (xy 108.28429 63.328162) (xy 108.284305 63.328169) (xy 108.383492 63.369253) (xy 108.51446 63.423502) + (xy 108.755102 63.487982) (xy 109.002102 63.5205) (xy 109.002109 63.5205) (xy 109.251225 63.5205) + (xy 109.251232 63.5205) (xy 109.498232 63.487982) (xy 109.738874 63.423502) (xy 109.96904 63.328164) + (xy 110.184794 63.203599) (xy 110.382443 63.051938) (xy 110.558605 62.875776) (xy 110.710266 62.678127) + (xy 110.834831 62.462373) (xy 110.930169 62.232207) (xy 110.994649 61.991565) (xy 111.027167 61.744565) + (xy 111.027167 61.495435) (xy 110.994649 61.248435) (xy 110.930169 61.007793) (xy 110.847326 60.807792) + (xy 110.834836 60.777638) (xy 110.834829 60.777623) (xy 110.710266 60.561873) (xy 110.710198 60.561785) + (xy 110.635338 60.464225) (xy 110.601391 60.419984) (xy 112.226167 60.419984) (xy 112.226167 62.820015) + (xy 112.236667 62.922795) (xy 112.236668 62.922797) (xy 112.247818 62.956446) (xy 112.291853 63.089335) + (xy 112.291854 63.089337) (xy 112.383953 63.238651) (xy 112.383956 63.238655) (xy 112.508011 63.36271) + (xy 112.508015 63.362713) (xy 112.657329 63.454812) (xy 112.657331 63.454813) (xy 112.657333 63.454814) + (xy 112.82387 63.509999) (xy 112.926659 63.5205) (xy 112.926664 63.5205) (xy 115.32667 63.5205) + (xy 115.326675 63.5205) (xy 115.429464 63.509999) (xy 115.596001 63.454814) (xy 115.745322 63.362711) + (xy 115.869378 63.238655) (xy 115.961481 63.089334) (xy 116.016666 62.922797) (xy 116.027167 62.820008) + (xy 116.027167 61.595441) (xy 120.5595 61.595441) (xy 120.5595 61.844558) (xy 120.559501 61.844575) + (xy 120.592017 62.091561) (xy 120.656498 62.332207) (xy 120.75183 62.562361) (xy 120.751837 62.562376) + (xy 120.8764 62.778126) (xy 121.02806 62.975774) (xy 121.028066 62.975781) (xy 121.204218 63.151933) + (xy 121.204225 63.151939) (xy 121.401873 63.303599) (xy 121.617623 63.428162) (xy 121.617638 63.428169) + (xy 121.716825 63.469253) (xy 121.847793 63.523502) (xy 122.088435 63.587982) (xy 122.335435 63.6205) + (xy 122.335442 63.6205) (xy 122.584558 63.6205) (xy 122.584565 63.6205) (xy 122.831565 63.587982) + (xy 123.072207 63.523502) (xy 123.302373 63.428164) (xy 123.518127 63.303599) (xy 123.715776 63.151938) + (xy 123.891938 62.975776) (xy 124.043599 62.778127) (xy 124.168164 62.562373) (xy 124.263502 62.332207) + (xy 124.327982 62.091565) (xy 124.3605 61.844565) (xy 124.3605 61.595441) (xy 125.5595 61.595441) + (xy 125.5595 61.844558) (xy 125.559501 61.844575) (xy 125.592017 62.091561) (xy 125.656498 62.332207) + (xy 125.75183 62.562361) (xy 125.751837 62.562376) (xy 125.8764 62.778126) (xy 126.02806 62.975774) + (xy 126.028066 62.975781) (xy 126.204218 63.151933) (xy 126.204225 63.151939) (xy 126.401873 63.303599) + (xy 126.617623 63.428162) (xy 126.617638 63.428169) (xy 126.716825 63.469253) (xy 126.847793 63.523502) + (xy 127.088435 63.587982) (xy 127.335435 63.6205) (xy 127.335442 63.6205) (xy 127.584558 63.6205) + (xy 127.584565 63.6205) (xy 127.831565 63.587982) (xy 128.072207 63.523502) (xy 128.302373 63.428164) + (xy 128.518127 63.303599) (xy 128.715776 63.151938) (xy 128.891938 62.975776) (xy 129.043599 62.778127) + (xy 129.168164 62.562373) (xy 129.263502 62.332207) (xy 129.327982 62.091565) (xy 129.3605 61.844565) + (xy 129.3605 61.595435) (xy 129.327982 61.348435) (xy 129.263502 61.107793) (xy 129.168164 60.877627) + (xy 129.043599 60.661873) (xy 128.934724 60.519984) (xy 130.5595 60.519984) (xy 130.5595 62.920015) + (xy 130.57 63.022795) (xy 130.570001 63.022797) (xy 130.592049 63.089334) (xy 130.625186 63.189335) + (xy 130.625187 63.189337) (xy 130.717286 63.338651) (xy 130.717289 63.338655) (xy 130.841344 63.46271) + (xy 130.841348 63.462713) (xy 130.990662 63.554812) (xy 130.990664 63.554813) (xy 130.990666 63.554814) + (xy 131.157203 63.609999) (xy 131.259992 63.6205) (xy 131.259997 63.6205) (xy 133.660003 63.6205) + (xy 133.660008 63.6205) (xy 133.762797 63.609999) (xy 133.929334 63.554814) (xy 134.078655 63.462711) + (xy 134.202711 63.338655) (xy 134.294814 63.189334) (xy 134.349999 63.022797) (xy 134.3605 62.920008) + (xy 134.3605 61.648992) (xy 138.4095 61.648992) (xy 138.4095 61.851007) (xy 138.448907 62.049119) + (xy 138.448909 62.049127) (xy 138.526213 62.235755) (xy 138.579904 62.316109) (xy 138.600782 62.382787) + (xy 138.582297 62.450167) (xy 138.579904 62.453891) (xy 138.526213 62.534244) (xy 138.448909 62.720872) + (xy 138.448907 62.72088) (xy 138.4095 62.918992) (xy 138.4095 63.121007) (xy 138.448907 63.319119) + (xy 138.44891 63.319131) (xy 138.482547 63.400338) (xy 138.490016 63.469807) (xy 138.470405 63.514864) + (xy 138.470895 63.515132) (xy 138.46791 63.520596) (xy 138.46726 63.522092) (xy 138.466646 63.522911) + (xy 138.466645 63.522913) (xy 138.416403 63.65762) (xy 138.416401 63.657627) (xy 138.41 63.717155) + (xy 138.41 64.04) (xy 139.294134 64.04) (xy 139.318326 64.042383) (xy 139.321123 64.042939) (xy 139.333995 64.045499) + (xy 139.333996 64.0455) (xy 139.333997 64.0455) (xy 139.37417 64.0455) (xy 139.359925 64.059745) + (xy 139.310556 64.145255) (xy 139.285 64.24063) (xy 139.285 64.33937) (xy 139.310556 64.434745) + (xy 139.359925 64.520255) (xy 139.37967 64.54) (xy 138.41 64.54) (xy 138.41 64.862844) (xy 138.416401 64.922372) + (xy 138.416403 64.922379) (xy 138.466645 65.057086) (xy 138.466649 65.057093) (xy 138.552809 65.172187) + (xy 138.552812 65.17219) (xy 138.667906 65.25835) (xy 138.667913 65.258354) (xy 138.80262 65.308596) + (xy 138.802627 65.308598) (xy 138.862155 65.314999) (xy 138.862172 65.315) (xy 139.41 65.315) (xy 139.41 64.57033) + (xy 139.429745 64.590075) (xy 139.515255 64.639444) (xy 139.61063 64.665) (xy 139.70937 64.665) + (xy 139.804745 64.639444) (xy 139.890255 64.590075) (xy 139.91 64.57033) (xy 139.91 65.315) (xy 140.457828 65.315) + (xy 140.457844 65.314999) (xy 140.517372 65.308598) (xy 140.517379 65.308596) (xy 140.652086 65.258354) + (xy 140.652093 65.25835) (xy 140.767187 65.17219) (xy 140.76719 65.172187) (xy 140.85335 65.057093) + (xy 140.853354 65.057086) (xy 140.903596 64.922379) (xy 140.903598 64.922372) (xy 140.909999 64.862844) + (xy 140.91 64.862827) (xy 140.91 64.54) (xy 139.94033 64.54) (xy 139.960075 64.520255) (xy 140.009444 64.434745) + (xy 140.035 64.33937) (xy 140.035 64.24063) (xy 140.009444 64.145255) (xy 139.960075 64.059745) + (xy 139.94583 64.0455) (xy 139.986004 64.0455) (xy 139.986004 64.045499) (xy 139.999473 64.04282) + (xy 140.001674 64.042383) (xy 140.025866 64.04) (xy 140.91 64.04) (xy 140.91 63.717172) (xy 140.909999 63.717155) + (xy 140.903598 63.657627) (xy 140.903596 63.65762) (xy 140.853354 63.522913) (xy 140.853353 63.522911) + (xy 140.852745 63.522099) (xy 140.85239 63.521148) (xy 140.849103 63.515128) (xy 140.849968 63.514655) + (xy 140.828329 63.456634) (xy 140.837452 63.400338) (xy 140.871091 63.319127) (xy 140.9105 63.121003) + (xy 140.9105 62.918997) (xy 140.871091 62.720873) (xy 140.793786 62.534244) (xy 140.740094 62.453889) + (xy 140.719217 62.387214) (xy 140.737701 62.319834) (xy 140.740078 62.316134) (xy 140.793786 62.235756) + (xy 140.871091 62.049127) (xy 140.9105 61.851003) (xy 140.9105 61.648997) (xy 140.871091 61.450873) + (xy 140.793786 61.264244) (xy 140.793784 61.264241) (xy 140.793782 61.264237) (xy 140.681558 61.096281) + (xy 140.538718 60.953441) (xy 140.370762 60.841217) (xy 140.370752 60.841212) (xy 140.184127 60.763909) + (xy 140.184119 60.763907) (xy 139.986007 60.7245) (xy 139.986003 60.7245) (xy 139.333997 60.7245) + (xy 139.333992 60.7245) (xy 139.13588 60.763907) (xy 139.135872 60.763909) (xy 138.949247 60.841212) + (xy 138.949237 60.841217) (xy 138.781281 60.953441) (xy 138.638441 61.096281) (xy 138.526217 61.264237) + (xy 138.526212 61.264247) (xy 138.448909 61.450872) (xy 138.448907 61.45088) (xy 138.4095 61.648992) + (xy 134.3605 61.648992) (xy 134.3605 60.519992) (xy 134.349999 60.417203) (xy 134.294814 60.250666) + (xy 134.23313 60.150662) (xy 134.202713 60.101348) (xy 134.20271 60.101344) (xy 134.078655 59.977289) + (xy 134.078651 59.977286) (xy 133.929337 59.885187) (xy 133.929335 59.885186) (xy 133.829237 59.852017) + (xy 133.762797 59.830001) (xy 133.762795 59.83) (xy 133.660015 59.8195) (xy 133.660008 59.8195) + (xy 131.259992 59.8195) (xy 131.259984 59.8195) (xy 131.157204 59.83) (xy 131.157203 59.830001) + (xy 130.990664 59.885186) (xy 130.990662 59.885187) (xy 130.841348 59.977286) (xy 130.841344 59.977289) + (xy 130.717289 60.101344) (xy 130.717286 60.101348) (xy 130.625187 60.250662) (xy 130.625186 60.250664) + (xy 130.570001 60.417203) (xy 130.57 60.417204) (xy 130.5595 60.519984) (xy 128.934724 60.519984) + (xy 128.891938 60.464224) (xy 128.891933 60.464218) (xy 128.715781 60.288066) (xy 128.715774 60.28806) + (xy 128.518126 60.1364) (xy 128.302376 60.011837) (xy 128.302361 60.01183) (xy 128.072207 59.916498) + (xy 127.831561 59.852017) (xy 127.584575 59.819501) (xy 127.58457 59.8195) (xy 127.584565 59.8195) + (xy 127.335435 59.8195) (xy 127.335429 59.8195) (xy 127.335424 59.819501) (xy 127.088438 59.852017) + (xy 126.847792 59.916498) (xy 126.617638 60.01183) (xy 126.617623 60.011837) (xy 126.401873 60.1364) + (xy 126.204225 60.28806) (xy 126.204218 60.288066) (xy 126.028066 60.464218) (xy 126.02806 60.464225) + (xy 125.8764 60.661873) (xy 125.751837 60.877623) (xy 125.75183 60.877638) (xy 125.656498 61.107792) + (xy 125.592017 61.348438) (xy 125.559501 61.595424) (xy 125.5595 61.595441) (xy 124.3605 61.595441) + (xy 124.3605 61.595435) (xy 124.327982 61.348435) (xy 124.263502 61.107793) (xy 124.168164 60.877627) + (xy 124.043599 60.661873) (xy 123.891938 60.464224) (xy 123.891933 60.464218) (xy 123.715781 60.288066) + (xy 123.715774 60.28806) (xy 123.518126 60.1364) (xy 123.302376 60.011837) (xy 123.302361 60.01183) + (xy 123.072207 59.916498) (xy 122.831561 59.852017) (xy 122.584575 59.819501) (xy 122.58457 59.8195) + (xy 122.584565 59.8195) (xy 122.335435 59.8195) (xy 122.335429 59.8195) (xy 122.335424 59.819501) + (xy 122.088438 59.852017) (xy 121.847792 59.916498) (xy 121.617638 60.01183) (xy 121.617623 60.011837) + (xy 121.401873 60.1364) (xy 121.204225 60.28806) (xy 121.204218 60.288066) (xy 121.028066 60.464218) + (xy 121.02806 60.464225) (xy 120.8764 60.661873) (xy 120.751837 60.877623) (xy 120.75183 60.877638) + (xy 120.656498 61.107792) (xy 120.592017 61.348438) (xy 120.559501 61.595424) (xy 120.5595 61.595441) + (xy 116.027167 61.595441) (xy 116.027167 60.419992) (xy 116.016666 60.317203) (xy 115.961481 60.150666) + (xy 115.952682 60.136401) (xy 115.86938 60.001348) (xy 115.869377 60.001344) (xy 115.745322 59.877289) + (xy 115.745318 59.877286) (xy 115.596004 59.785187) (xy 115.596002 59.785186) (xy 115.495904 59.752017) + (xy 115.429464 59.730001) (xy 115.429462 59.73) (xy 115.326682 59.7195) (xy 115.326675 59.7195) + (xy 112.926659 59.7195) (xy 112.926651 59.7195) (xy 112.823871 59.73) (xy 112.82387 59.730001) (xy 112.657331 59.785186) + (xy 112.657329 59.785187) (xy 112.508015 59.877286) (xy 112.508011 59.877289) (xy 112.383956 60.001344) + (xy 112.383953 60.001348) (xy 112.291854 60.150662) (xy 112.291853 60.150664) (xy 112.236668 60.317203) + (xy 112.236667 60.317204) (xy 112.226167 60.419984) (xy 110.601391 60.419984) (xy 110.558606 60.364225) + (xy 110.5586 60.364218) (xy 110.382448 60.188066) (xy 110.382441 60.18806) (xy 110.184793 60.0364) + (xy 109.969043 59.911837) (xy 109.969028 59.91183) (xy 109.738874 59.816498) (xy 109.498228 59.752017) + (xy 109.251242 59.719501) (xy 109.251237 59.7195) (xy 109.251232 59.7195) (xy 109.002102 59.7195) + (xy 109.002096 59.7195) (xy 109.002091 59.719501) (xy 108.755105 59.752017) (xy 108.514459 59.816498) + (xy 108.284305 59.91183) (xy 108.28429 59.911837) (xy 108.06854 60.0364) (xy 107.870892 60.18806) + (xy 107.870885 60.188066) (xy 107.694733 60.364218) (xy 107.694727 60.364225) (xy 107.543067 60.561873) + (xy 107.418504 60.777623) (xy 107.418497 60.777638) (xy 107.323165 61.007792) (xy 107.258684 61.248438) + (xy 107.226168 61.495424) (xy 107.226167 61.495441) (xy 106.027167 61.495441) (xy 106.027167 61.495435) + (xy 105.994649 61.248435) (xy 105.930169 61.007793) (xy 105.847326 60.807792) (xy 105.834836 60.777638) + (xy 105.834829 60.777623) (xy 105.710266 60.561873) (xy 105.558606 60.364225) (xy 105.5586 60.364218) + (xy 105.382448 60.188066) (xy 105.382441 60.18806) (xy 105.184793 60.0364) (xy 104.969043 59.911837) + (xy 104.969028 59.91183) (xy 104.738874 59.816498) (xy 104.498228 59.752017) (xy 104.251242 59.719501) + (xy 104.251237 59.7195) (xy 104.251232 59.7195) (xy 104.002102 59.7195) (xy 104.002096 59.7195) + (xy 104.002091 59.719501) (xy 103.755105 59.752017) (xy 103.514459 59.816498) (xy 103.284305 59.91183) + (xy 103.28429 59.911837) (xy 103.06854 60.0364) (xy 102.870892 60.18806) (xy 102.870885 60.188066) + (xy 102.694733 60.364218) (xy 102.694727 60.364225) (xy 102.543067 60.561873) (xy 102.418504 60.777623) + (xy 102.418497 60.777638) (xy 102.323165 61.007792) (xy 102.258684 61.248438) (xy 102.226168 61.495424) + (xy 102.226167 61.495441) (xy 97.693833 61.495441) (xy 97.693833 60.419992) (xy 97.683332 60.317203) + (xy 97.628147 60.150666) (xy 97.619348 60.136401) (xy 97.536046 60.001348) (xy 97.536043 60.001344) + (xy 97.411988 59.877289) (xy 97.411984 59.877286) (xy 97.26267 59.785187) (xy 97.262668 59.785186) + (xy 97.16257 59.752017) (xy 97.09613 59.730001) (xy 97.096128 59.73) (xy 96.993348 59.7195) (xy 96.993341 59.7195) + (xy 94.593325 59.7195) (xy 94.593317 59.7195) (xy 94.490537 59.73) (xy 94.490536 59.730001) (xy 94.323997 59.785186) + (xy 94.323995 59.785187) (xy 94.174681 59.877286) (xy 94.174677 59.877289) (xy 94.050622 60.001344) + (xy 94.050619 60.001348) (xy 93.95852 60.150662) (xy 93.958519 60.150664) (xy 93.903334 60.317203) + (xy 93.903333 60.317204) (xy 93.892833 60.419984) (xy 92.268057 60.419984) (xy 92.225272 60.364225) + (xy 92.225266 60.364218) (xy 92.049114 60.188066) (xy 92.049107 60.18806) (xy 91.851459 60.0364) + (xy 91.635709 59.911837) (xy 91.635694 59.91183) (xy 91.40554 59.816498) (xy 91.164894 59.752017) + (xy 90.917908 59.719501) (xy 90.917903 59.7195) (xy 90.917898 59.7195) (xy 90.668768 59.7195) (xy 90.668762 59.7195) + (xy 90.668757 59.719501) (xy 90.421771 59.752017) (xy 90.181125 59.816498) (xy 89.950971 59.91183) + (xy 89.950956 59.911837) (xy 89.735206 60.0364) (xy 89.537558 60.18806) (xy 89.537551 60.188066) + (xy 89.361399 60.364218) (xy 89.361393 60.364225) (xy 89.209733 60.561873) (xy 89.08517 60.777623) + (xy 89.085163 60.777638) (xy 88.989831 61.007792) (xy 88.92535 61.248438) (xy 88.892834 61.495424) + (xy 88.892833 61.495441) (xy 87.693833 61.495441) (xy 87.693833 61.495435) (xy 87.661315 61.248435) + (xy 87.596835 61.007793) (xy 87.513992 60.807792) (xy 87.501502 60.777638) (xy 87.501495 60.777623) + (xy 87.376932 60.561873) (xy 87.225272 60.364225) (xy 87.225266 60.364218) (xy 87.049114 60.188066) + (xy 87.049107 60.18806) (xy 86.851459 60.0364) (xy 86.635709 59.911837) (xy 86.635694 59.91183) + (xy 86.40554 59.816498) (xy 86.164894 59.752017) (xy 85.917908 59.719501) (xy 85.917903 59.7195) + (xy 85.917898 59.7195) (xy 85.668768 59.7195) (xy 85.668762 59.7195) (xy 85.668757 59.719501) (xy 85.421771 59.752017) + (xy 85.181125 59.816498) (xy 84.950971 59.91183) (xy 84.950956 59.911837) (xy 84.735206 60.0364) + (xy 84.537558 60.18806) (xy 84.537551 60.188066) (xy 84.361399 60.364218) (xy 84.361393 60.364225) + (xy 84.209733 60.561873) (xy 84.08517 60.777623) (xy 84.085163 60.777638) (xy 83.989831 61.007792) + (xy 83.92535 61.248438) (xy 83.892834 61.495424) (xy 83.892833 61.495441) (xy 79.3605 61.495441) + (xy 79.3605 60.219992) (xy 79.349999 60.117203) (xy 79.294814 59.950666) (xy 79.270863 59.911836) + (xy 79.202713 59.801348) (xy 79.20271 59.801344) (xy 79.078655 59.677289) (xy 79.078651 59.677286) + (xy 78.929337 59.585187) (xy 78.929335 59.585186) (xy 78.829237 59.552017) (xy 78.762797 59.530001) + (xy 78.762795 59.53) (xy 78.660015 59.5195) (xy 78.660008 59.5195) (xy 76.259992 59.5195) (xy 76.259984 59.5195) + (xy 76.157204 59.53) (xy 76.157203 59.530001) (xy 75.990664 59.585186) (xy 75.990662 59.585187) + (xy 75.841348 59.677286) (xy 75.841344 59.677289) (xy 75.717289 59.801344) (xy 75.717286 59.801348) + (xy 75.625187 59.950662) (xy 75.625186 59.950664) (xy 75.570001 60.117203) (xy 75.57 60.117204) + (xy 75.5595 60.219984) (xy 73.934724 60.219984) (xy 73.891939 60.164225) (xy 73.891933 60.164218) + (xy 73.715781 59.988066) (xy 73.715774 59.98806) (xy 73.518126 59.8364) (xy 73.302376 59.711837) + (xy 73.302361 59.71183) (xy 73.072207 59.616498) (xy 72.831561 59.552017) (xy 72.584575 59.519501) + (xy 72.58457 59.5195) (xy 72.584565 59.5195) (xy 72.335435 59.5195) (xy 72.335429 59.5195) (xy 72.335424 59.519501) + (xy 72.088438 59.552017) (xy 71.847792 59.616498) (xy 71.617638 59.71183) (xy 71.617623 59.711837) + (xy 71.401873 59.8364) (xy 71.204225 59.98806) (xy 71.204218 59.988066) (xy 71.028066 60.164218) + (xy 71.02806 60.164225) (xy 70.8764 60.361873) (xy 70.751837 60.577623) (xy 70.75183 60.577638) + (xy 70.656498 60.807792) (xy 70.592017 61.048438) (xy 70.559501 61.295424) (xy 70.5595 61.295441) + (xy 69.3605 61.295441) (xy 69.3605 61.295435) (xy 69.327982 61.048435) (xy 69.263502 60.807793) + (xy 69.20306 60.661873) (xy 69.168169 60.577638) (xy 69.168162 60.577623) (xy 69.043599 60.361873) + (xy 68.891939 60.164225) (xy 68.891933 60.164218) (xy 68.715781 59.988066) (xy 68.715774 59.98806) + (xy 68.518126 59.8364) (xy 68.302376 59.711837) (xy 68.302361 59.71183) (xy 68.072207 59.616498) + (xy 67.831561 59.552017) (xy 67.584575 59.519501) (xy 67.58457 59.5195) (xy 67.584565 59.5195) (xy 67.335435 59.5195) + (xy 67.335429 59.5195) (xy 67.335424 59.519501) (xy 67.088438 59.552017) (xy 66.847792 59.616498) + (xy 66.617638 59.71183) (xy 66.617623 59.711837) (xy 66.401873 59.8364) (xy 66.204225 59.98806) + (xy 66.204218 59.988066) (xy 66.028066 60.164218) (xy 66.02806 60.164225) (xy 65.8764 60.361873) + (xy 65.751837 60.577623) (xy 65.75183 60.577638) (xy 65.656498 60.807792) (xy 65.592017 61.048438) + (xy 65.559501 61.295424) (xy 65.5595 61.295441) (xy 62.491943 61.295441) (xy 62.541936 61.230289) + (xy 62.663224 61.020212) (xy 62.756054 60.7961) (xy 62.818838 60.561789) (xy 62.8505 60.321288) + (xy 62.8505 60.078712) (xy 62.818838 59.838211) (xy 62.756054 59.6039) (xy 62.663224 59.379788) + (xy 62.541936 59.169711) (xy 62.394265 58.977262) (xy 62.39426 58.977256) (xy 62.222743 58.805739) + (xy 62.222736 58.805733) (xy 62.030293 58.658067) (xy 62.030292 58.658066) (xy 62.030289 58.658064) + (xy 61.820212 58.536776) (xy 61.802009 58.529236) (xy 61.596104 58.443947) (xy 61.361785 58.381161) + (xy 61.121289 58.3495) (xy 61.121288 58.3495) (xy 60.878712 58.3495) (xy 60.878711 58.3495) (xy 60.638214 58.381161) + (xy 60.403895 58.443947) (xy 60.179794 58.536773) (xy 60.179785 58.536777) (xy 59.969706 58.658067) + (xy 59.777263 58.805733) (xy 59.777256 58.805739) (xy 59.605739 58.977256) (xy 59.605733 58.977263) + (xy 59.458067 59.169706) (xy 59.336777 59.379785) (xy 59.336773 59.379794) (xy 59.243947 59.603895) + (xy 59.181161 59.838214) (xy 59.1495 60.078711) (xy 58.4505 60.078711) (xy 58.4505 58.964427) (xy 58.450816 58.955581) + (xy 58.461533 58.805735) (xy 58.465131 58.755434) (xy 58.467646 58.737938) (xy 58.509356 58.546199) + (xy 58.514333 58.529248) (xy 58.582911 58.345385) (xy 58.590259 58.329298) (xy 58.652815 58.214734) + (xy 58.684291 58.157089) (xy 58.693845 58.142221) (xy 58.811448 57.985123) (xy 58.82302 57.971769) + (xy 58.961769 57.83302) (xy 58.975123 57.821448) (xy 59.132221 57.703845) (xy 59.147089 57.694291) + (xy 59.319298 57.600258) (xy 59.335385 57.592911) (xy 59.519248 57.524333) (xy 59.536199 57.519356) + (xy 59.727938 57.477646) (xy 59.745436 57.47513) (xy 59.945582 57.460816) (xy 59.954428 57.4605) + (xy 60.015892 57.4605) (xy 146.936 57.4605) + ) + ) + ) + (zone + (net 31) + (net_name "NC_8") + (layer "B.Cu") + (uuid "06f4926d-af92-4a86-ae5d-134a8feaa655") + (hatch edge 0.5) + (priority 7) + (connect_pads + (clearance 0) + ) + (min_thickness 0.25) + (filled_areas_thickness no) + (fill yes + (thermal_gap 0.5) + (thermal_bridge_width 0.5) + (smoothing fillet) + (radius 3) + ) + (polygon + (pts + (xy 76.46 138.22) (xy 76.66 123.02) (xy 81.46 123.02) (xy 81.26 138.22) + ) + ) + (filled_polygon + (layer "B.Cu") + (pts + (xy 80.598187 123.593724) (xy 80.739725 123.719369) (xy 80.751213 123.731009) (xy 80.944811 123.954963) + (xy 80.954668 123.968016) (xy 81.117102 124.215498) (xy 81.125155 124.229733) (xy 81.253611 124.496452) + (xy 81.259721 124.511624) (xy 81.351949 124.792914) (xy 81.356009 124.808757) (xy 81.410416 125.099748) + (xy 81.412355 125.115988) (xy 81.428208 125.415708) (xy 81.42837 125.423889) (xy 81.291628 135.816185) + (xy 81.291261 135.824223) (xy 81.267607 136.126639) (xy 81.265316 136.14256) (xy 81.203546 136.435437) + (xy 81.199213 136.450926) (xy 81.100055 136.733339) (xy 81.093753 136.748138) (xy 80.958874 137.015338) + (xy 80.95071 137.029196) (xy 80.782379 137.27669) (xy 80.77249 137.289375) (xy 80.573543 137.512996) + (xy 80.562095 137.524294) (xy 80.335868 137.720289) (xy 80.323054 137.730011) (xy 80.073366 137.895071) + (xy 80.059402 137.903052) (xy 79.929248 137.966616) (xy 79.790445 138.034405) (xy 79.775569 138.04051) + (xy 79.49188 138.135942) (xy 79.476335 138.140071) (xy 79.182675 138.197982) (xy 79.166726 138.200064) + (xy 78.868109 138.219472) (xy 78.85189 138.219463) (xy 78.556432 138.199936) (xy 78.540218 138.197783) + (xy 78.249979 138.139554) (xy 78.23419 138.135287) (xy 77.957478 138.04051) (xy 77.95412 138.039359) + (xy 77.939041 138.033056) (xy 77.677952 137.903052) (xy 77.674034 137.901101) (xy 77.659907 137.892861) + (xy 77.414584 137.727186) (xy 77.401662 137.717158) (xy 77.180274 137.52063) (xy 77.168786 137.50899) + (xy 76.978939 137.289375) (xy 76.975183 137.28503) (xy 76.965334 137.271988) (xy 76.945266 137.241412) + (xy 76.924939 137.174565) (xy 76.943978 137.10734) (xy 76.99634 137.06108) (xy 77.0654 137.050472) + (xy 77.110934 137.065987) (xy 77.217847 137.127714) (xy 77.217851 137.127716) (xy 77.44795 137.223026) + (xy 77.688536 137.287491) (xy 77.935466 137.32) (xy 78.184534 137.32) (xy 78.431463 137.287491) + (xy 78.672049 137.223026) (xy 78.902148 137.127716) (xy 78.902159 137.127711) (xy 79.117855 137.003178) + (xy 79.215045 136.9286) (xy 79.215045 136.928597) (xy 78.307488 136.021041) (xy 78.36789 135.996022) + (xy 78.474351 135.924888) (xy 78.564888 135.834351) (xy 78.636022 135.72789) (xy 78.661041 135.667488) + (xy 79.568597 136.575045) (xy 79.5686 136.575045) (xy 79.643178 136.477855) (xy 79.767711 136.262159) + (xy 79.767716 136.262148) (xy 79.863026 136.032049) (xy 79.927491 135.791463) (xy 79.96 135.544533) + (xy 79.96 135.295466) (xy 79.927491 135.048536) (xy 79.863026 134.80795) (xy 79.767716 134.577851) + (xy 79.767711 134.57784) (xy 79.643186 134.362158) (xy 79.64318 134.36215) (xy 79.568598 134.264953) + (xy 78.661041 135.17251) (xy 78.636022 135.11211) (xy 78.564888 135.005649) (xy 78.474351 134.915112) + (xy 78.36789 134.843978) (xy 78.307487 134.818957) (xy 79.215045 133.9114) (xy 79.117849 133.836819) + (xy 79.117841 133.836813) (xy 78.902159 133.712288) (xy 78.902148 133.712283) (xy 78.672049 133.616973) + (xy 78.431463 133.552508) (xy 78.184534 133.52) (xy 77.935466 133.52) (xy 77.688536 133.552508) + (xy 77.44795 133.616973) (xy 77.217851 133.712283) (xy 77.217847 133.712285) (xy 77.002143 133.836823) + (xy 76.904953 133.911399) (xy 76.904953 133.9114) (xy 77.812511 134.818958) (xy 77.75211 134.843978) + (xy 77.645649 134.915112) (xy 77.555112 135.005649) (xy 77.483978 135.11211) (xy 77.458958 135.172512) + (xy 76.533827 134.24738) (xy 76.512778 134.208832) (xy 76.615704 126.386499) (xy 76.617496 126.250334) + (xy 76.625318 125.655827) (xy 76.645883 125.589052) (xy 76.699284 125.543996) (xy 76.768567 125.534963) + (xy 76.831736 125.564821) (xy 76.859236 125.603512) (xy 76.860611 125.602835) (xy 76.862409 125.606482) + (xy 76.993488 125.833516) (xy 76.993494 125.833524) (xy 77.08008 125.946365) (xy 78.058958 124.967487) + (xy 78.083978 125.02789) (xy 78.155112 125.134351) (xy 78.245649 125.224888) (xy 78.35211 125.296022) + (xy 78.412511 125.321041) (xy 77.433633 126.299917) (xy 77.433633 126.299918) (xy 77.546475 126.386505) + (xy 77.546483 126.386511) (xy 77.773517 126.51759) (xy 77.773528 126.517595) (xy 78.015744 126.617924) + (xy 78.268979 126.685777) (xy 78.26899 126.685779) (xy 78.528905 126.719999) (xy 78.52892 126.72) + (xy 78.79108 126.72) (xy 78.791094 126.719999) (xy 79.051009 126.685779) (xy 79.05102 126.685777) + (xy 79.304255 126.617924) (xy 79.546471 126.517595) (xy 79.546482 126.51759) (xy 79.773516 126.386511) + (xy 79.773534 126.386499) (xy 79.886365 126.299919) (xy 79.886365 126.299917) (xy 78.907488 125.321041) + (xy 78.96789 125.296022) (xy 79.074351 125.224888) (xy 79.164888 125.134351) (xy 79.236022 125.02789) + (xy 79.261041 124.967488) (xy 80.239917 125.946365) (xy 80.239919 125.946365) (xy 80.326499 125.833534) + (xy 80.326511 125.833516) (xy 80.45759 125.606482) (xy 80.457595 125.606471) (xy 80.557924 125.364255) + (xy 80.625777 125.11102) (xy 80.625779 125.111009) (xy 80.659999 124.851094) (xy 80.66 124.85108) + (xy 80.66 124.588919) (xy 80.659999 124.588905) (xy 80.625779 124.32899) (xy 80.625777 124.328979) + (xy 80.557924 124.075744) (xy 80.457595 123.833528) (xy 80.457593 123.833524) (xy 80.40848 123.748458) + (xy 80.392007 123.680557) (xy 80.414859 123.61453) (xy 80.46978 123.57134) (xy 80.539334 123.564698) + ) + ) + ) + (zone + (net 29) + (net_name "NC_7") + (layer "B.Cu") + (uuid "1a4d980d-4e3e-4980-829c-6d547d3e13fe") + (hatch edge 0.5) + (priority 7) + (connect_pads + (clearance 0) + ) + (min_thickness 0.25) + (filled_areas_thickness no) + (fill yes + (thermal_gap 0.5) + (thermal_bridge_width 0.5) + (smoothing fillet) + (radius 3) + ) + (polygon + (pts + (xy 94.66 138.42) (xy 94.66 123.02) (xy 99.46 123.02) (xy 99.46 138.42) + ) + ) + (filled_polygon + (layer "B.Cu") + (pts + (xy 99.154489 124.2909) (xy 99.197425 124.339567) (xy 99.273716 124.49427) (xy 99.279923 124.509256) + (xy 99.375609 124.79114) (xy 99.379807 124.806806) (xy 99.437881 125.098758) (xy 99.439999 125.11484) + (xy 99.459623 125.414255) (xy 99.459735 125.415956) (xy 99.46 125.424066) (xy 99.46 136.015933) + (xy 99.459735 136.024043) (xy 99.439999 136.325159) (xy 99.437881 136.341241) (xy 99.379807 136.633193) + (xy 99.375609 136.648859) (xy 99.279923 136.930743) (xy 99.273716 136.945729) (xy 99.142055 137.21271) + (xy 99.133945 137.226757) (xy 98.968563 137.474269) (xy 98.958689 137.487137) (xy 98.762414 137.710945) + (xy 98.750945 137.722414) (xy 98.527137 137.918689) (xy 98.514269 137.928563) (xy 98.266757 138.093945) + (xy 98.25271 138.102055) (xy 97.985729 138.233716) (xy 97.970743 138.239923) (xy 97.688859 138.335609) + (xy 97.673193 138.339807) (xy 97.381241 138.397881) (xy 97.365159 138.399999) (xy 97.06811 138.419468) + (xy 97.05189 138.419468) (xy 96.75484 138.399999) (xy 96.738759 138.397881) (xy 96.695207 138.389218) + (xy 96.446806 138.339807) (xy 96.43114 138.335609) (xy 96.149256 138.239923) (xy 96.13427 138.233716) + (xy 95.867289 138.102055) (xy 95.853242 138.093945) (xy 95.60573 137.928563) (xy 95.592862 137.918689) + (xy 95.369054 137.722414) (xy 95.357585 137.710945) (xy 95.16131 137.487137) (xy 95.151436 137.474269) + (xy 94.986054 137.226757) (xy 94.98467 137.222337) (xy 94.977944 137.21271) (xy 94.899272 137.05318) + (xy 94.84628 136.945722) (xy 94.840076 136.930743) (xy 94.792581 136.790826) (xy 94.789672 136.721017) + (xy 94.824966 136.660717) (xy 94.873944 136.635834) (xy 95.792291 135.717487) (xy 95.817311 135.77789) + (xy 95.888445 135.884351) (xy 95.978982 135.974888) (xy 96.085443 136.046022) (xy 96.145844 136.071041) + (xy 95.238286 136.978598) (xy 95.335483 137.05318) (xy 95.335491 137.053186) (xy 95.551173 137.177711) + (xy 95.551184 137.177716) (xy 95.781283 137.273026) (xy 96.021869 137.337491) (xy 96.268799 137.37) + (xy 96.517867 137.37) (xy 96.764796 137.337491) (xy 97.005382 137.273026) (xy 97.235481 137.177716) + (xy 97.235492 137.177711) (xy 97.451188 137.053178) (xy 97.548378 136.9786) (xy 97.548378 136.978597) + (xy 96.640821 136.071041) (xy 96.701223 136.046022) (xy 96.807684 135.974888) (xy 96.898221 135.884351) + (xy 96.969355 135.77789) (xy 96.994374 135.717489) (xy 97.90193 136.625045) (xy 97.901933 136.625045) + (xy 97.976511 136.527855) (xy 98.101044 136.312159) (xy 98.101049 136.312148) (xy 98.196359 136.082049) + (xy 98.260824 135.841463) (xy 98.293333 135.594533) (xy 98.293333 135.345466) (xy 98.260824 135.098536) + (xy 98.196359 134.85795) (xy 98.101049 134.627851) (xy 98.101044 134.62784) (xy 97.976519 134.412158) + (xy 97.976513 134.41215) (xy 97.901931 134.314953) (xy 96.994374 135.22251) (xy 96.969355 135.16211) + (xy 96.898221 135.055649) (xy 96.807684 134.965112) (xy 96.701223 134.893978) (xy 96.64082 134.868957) + (xy 97.548378 133.9614) (xy 97.451182 133.886819) (xy 97.451174 133.886813) (xy 97.235492 133.762288) + (xy 97.235481 133.762283) (xy 97.005382 133.666973) (xy 96.764796 133.602508) (xy 96.517867 133.57) + (xy 96.268799 133.57) (xy 96.021869 133.602508) (xy 95.781283 133.666973) (xy 95.551184 133.762283) + (xy 95.55118 133.762285) (xy 95.335476 133.886823) (xy 95.238286 133.961399) (xy 95.238286 133.9614) + (xy 96.145844 134.868958) (xy 96.085443 134.893978) (xy 95.978982 134.965112) (xy 95.888445 135.055649) + (xy 95.817311 135.16211) (xy 95.792291 135.222511) (xy 94.884733 134.314953) (xy 94.884732 134.314953) + (xy 94.882376 134.318024) (xy 94.858162 134.335704) (xy 94.835511 134.355332) (xy 94.830245 134.356089) + (xy 94.825948 134.359227) (xy 94.796024 134.361009) (xy 94.766353 134.365276) (xy 94.761512 134.363065) + (xy 94.756202 134.363382) (xy 94.730066 134.348704) (xy 94.702797 134.336251) (xy 94.69992 134.331774) + (xy 94.695282 134.32917) (xy 94.68123 134.302692) (xy 94.665023 134.277473) (xy 94.663973 134.270175) + (xy 94.662529 134.267453) (xy 94.66 134.242538) (xy 94.66 125.424066) (xy 94.660265 125.415956) + (xy 94.680001 125.114826) (xy 94.682115 125.098774) (xy 94.740193 124.806802) (xy 94.74439 124.79114) + (xy 94.751914 124.768975) (xy 94.792103 124.71182) (xy 94.856812 124.685467) (xy 94.925496 124.698281) + (xy 94.976349 124.746195) (xy 94.993333 124.808833) (xy 94.993333 124.901094) (xy 95.027553 125.161009) + (xy 95.027555 125.16102) (xy 95.095408 125.414255) (xy 95.195737 125.656471) (xy 95.195742 125.656482) + (xy 95.326821 125.883516) (xy 95.326827 125.883524) (xy 95.413413 125.996365) (xy 96.392291 125.017487) + (xy 96.417311 125.07789) (xy 96.488445 125.184351) (xy 96.578982 125.274888) (xy 96.685443 125.346022) + (xy 96.745844 125.371041) (xy 95.766966 126.349917) (xy 95.766966 126.349918) (xy 95.879808 126.436505) + (xy 95.879816 126.436511) (xy 96.10685 126.56759) (xy 96.106861 126.567595) (xy 96.349077 126.667924) + (xy 96.602312 126.735777) (xy 96.602323 126.735779) (xy 96.862238 126.769999) (xy 96.862253 126.77) + (xy 97.124413 126.77) (xy 97.124427 126.769999) (xy 97.384342 126.735779) (xy 97.384353 126.735777) + (xy 97.637588 126.667924) (xy 97.879804 126.567595) (xy 97.879815 126.56759) (xy 98.106849 126.436511) + (xy 98.106867 126.436499) (xy 98.219698 126.349919) (xy 98.219698 126.349917) (xy 97.240821 125.371041) + (xy 97.301223 125.346022) (xy 97.407684 125.274888) (xy 97.498221 125.184351) (xy 97.569355 125.07789) + (xy 97.594374 125.017488) (xy 98.57325 125.996365) (xy 98.573252 125.996365) (xy 98.659832 125.883534) + (xy 98.659844 125.883516) (xy 98.790923 125.656482) (xy 98.790928 125.656471) (xy 98.891257 125.414255) + (xy 98.95911 125.16102) (xy 98.959112 125.161009) (xy 98.993332 124.901094) (xy 98.993333 124.90108) + (xy 98.993333 124.638919) (xy 98.993332 124.638905) (xy 98.963274 124.410597) (xy 98.974039 124.341561) + (xy 99.020419 124.289305) (xy 99.087688 124.27042) + ) + ) + ) + (zone + (net 81) + (net_name "/12V_DC-Regulated") + (layer "B.Cu") + (uuid "4e918ba6-85fd-440d-919e-a5b81b499b18") + (hatch edge 0.5) + (priority 5) + (connect_pads + (clearance 0) + ) + (min_thickness 0.25) + (filled_areas_thickness no) + (fill yes + (thermal_gap 0.5) + (thermal_bridge_width 0.5) + (smoothing fillet) + (radius 3) + ) + (polygon + (pts + (xy 145.06 101.82) (xy 145.26 89.62) (xy 56.71 90.37) (xy 56.71 105.97) (xy 145.06 106.02) + ) + ) + (filled_polygon + (layer "B.Cu") + (pts + (xy 141.860044 106.018188) (xy 141.859139 106.018188) (xy 141.859138 106.018188) (xy 141.85907 106.018187) + (xy 136.334026 106.01506) (xy 136.26249 106.01502) (xy 136.262489 106.01502) (xy 136.262468 106.01502) + (xy 136.262467 106.015019) (xy 136.26 106.015018) (xy 136.26 90.02) (xy 124.46 90.02) (xy 124.46 89.79617) + (xy 142.25938 89.645413) + ) + ) + (filled_polygon + (layer "B.Cu") + (pts + (xy 131.26 104.62) (xy 131.26 106.012189) (xy 130.657396 106.011848) (xy 130.656097 106.011848) + (xy 130.656095 106.011848) (xy 130.656093 106.011847) (xy 126.388089 106.009432) (xy 120.443541 106.006068) + (xy 118.46 106.004945) (xy 118.46 104.42) + ) + ) + (filled_polygon + (layer "B.Cu") + (pts + (xy 112.86 104.22) (xy 112.86 106.001775) (xy 111.250888 106.000865) (xy 111.250886 106.000864) + (xy 101.007771 105.995068) (xy 100.97296 105.995049) (xy 100.972954 105.995049) (xy 100.972953 105.995048) + (xy 99.627738 105.994287) (xy 99.26 105.994078) (xy 99.26 104.02) + ) + ) + (filled_polygon + (layer "B.Cu") + (pts + (xy 94.86 103.82) (xy 94.86 105.991589) (xy 90.539733 105.989145) (xy 83.23977 105.985013) (xy 82.578166 105.984639) + (xy 82.57816 105.984639) (xy 82.578159 105.984638) (xy 81.322118 105.983928) (xy 80.86 105.983666) + (xy 80.86 103.42) + ) + ) + (filled_polygon + (layer "B.Cu") + (pts + (xy 63.66 91.82) (xy 63.680063 93.043891) (xy 63.6505 92.992686) (xy 63.557314 92.8995) (xy 63.50025 92.866554) + (xy 63.443187 92.833608) (xy 63.379539 92.816554) (xy 63.315892 92.7995) (xy 63.184108 92.7995) + (xy 63.056812 92.833608) (xy 62.942686 92.8995) (xy 62.942683 92.899502) (xy 62.849502 92.992683) + (xy 62.8495 92.992686) (xy 62.783608 93.106812) (xy 62.7495 93.234108) (xy 62.7495 93.365891) (xy 62.783608 93.493187) + (xy 62.816554 93.55025) (xy 62.8495 93.607314) (xy 62.942686 93.7005) (xy 63.056814 93.766392) (xy 63.184108 93.8005) + (xy 63.18411 93.8005) (xy 63.31589 93.8005) (xy 63.315892 93.8005) (xy 63.443186 93.766392) (xy 63.557314 93.7005) + (xy 63.6505 93.607314) (xy 63.688228 93.541965) (xy 63.86 104.02) (xy 75.06 105.62) (xy 76.06 105.62) + (xy 76.06 105.980949) (xy 60.951773 105.972398) (xy 60.944823 105.972199) (xy 60.619487 105.953751) + (xy 60.605675 105.952188) (xy 60.59292 105.950014) (xy 60.287878 105.898026) (xy 60.274336 105.894929) + (xy 59.964589 105.805536) (xy 59.951471 105.800939) (xy 59.65369 105.677447) (xy 59.641168 105.671411) + (xy 59.359069 105.515358) (xy 59.347302 105.507958) (xy 59.084449 105.321319) (xy 59.073584 105.312648) + (xy 58.833266 105.097755) (xy 58.82344 105.087924) (xy 58.608693 104.847495) (xy 58.600028 104.836624) + (xy 58.473354 104.658008) (xy 58.450629 104.591938) (xy 58.4505 104.586276) (xy 58.4505 91.612638) + (xy 58.470185 91.545599) (xy 58.476608 91.536526) (xy 58.653885 91.308571) (xy 58.663696 91.297408) + (xy 58.893924 91.065222) (xy 58.904998 91.055322) (xy 59.161397 90.852417) (xy 59.173586 90.843908) + (xy 59.452459 90.673208) (xy 59.465596 90.666215) (xy 59.762901 90.53019) (xy 59.776784 90.524821) + (xy 60.088251 90.425421) (xy 60.102685 90.421754) (xy 60.423825 90.360412) (xy 60.438587 90.358502) + (xy 60.768506 90.335848) (xy 60.77592 90.335562) (xy 60.994551 90.33371) (xy 61.515689 90.329296) + (xy 63.594421 90.311689) + ) + ) + (filled_polygon + (layer "B.Cu") + (pts + (xy 81.86 91.02) (xy 69.26 90.62) (xy 69.26 90.263703) (xy 70.775418 90.250868) (xy 70.77542 90.250868) + (xy 70.781794 90.250814) (xy 70.781797 90.250815) (xy 72.19216 90.238869) (xy 81.86 90.156984) + ) + ) + (filled_polygon + (layer "B.Cu") + (pts + (xy 100.86 91.02) (xy 86.66 91.02) (xy 87.66 90.62) (xy 87.66 90.107859) (xy 100.86 89.996057) + ) + ) + (filled_polygon + (layer "B.Cu") + (pts + (xy 119.26 90.42) (xy 105.66 91.02) (xy 105.66 89.955402) (xy 119.26 89.840213) + ) + ) + ) + (zone + (net 81) + (net_name "/12V_DC-Regulated") + (layer "B.Cu") + (uuid "5117cd3b-dfa2-4cd2-aeae-44d3c12f6188") + (hatch edge 0.5) + (priority 8) + (connect_pads + (clearance 0) + ) + (min_thickness 0.25) + (filled_areas_thickness no) + (fill yes + (thermal_gap 0.5) + (thermal_bridge_width 0.5) + (smoothing fillet) + (radius 3) + ) + (polygon + (pts + (xy 131.26 114.62) (xy 132.26 115.62) (xy 139.06 115.62) (xy 139.86 116.62) (xy 139.86 126.02) (xy 145.66 131.02) + (xy 188.26 130.82) (xy 191.66 130.82) (xy 193.66 129.02) (xy 193.86 114.22) (xy 191.66 111.22) (xy 184.46 111.22) + (xy 183.06 112.62) (xy 182.86 124.22) (xy 180.66 125.82) (xy 149.46 126.02) (xy 145.86 123.02) (xy 146.06 89.62) + (xy 142.26 89.62) (xy 141.86 106.02) (xy 132.66 106.02) (xy 131.26 107.22) + ) + ) + (filled_polygon + (layer "B.Cu") + (pts + (xy 144.164428 89.620318) (xy 144.211578 89.623703) (xy 144.420925 89.638732) (xy 144.438493 89.641268) + (xy 144.685372 89.695184) (xy 144.702405 89.700206) (xy 144.939045 89.788836) (xy 144.955187 89.79624) + (xy 145.176737 89.917764) (xy 145.191656 89.927398) (xy 145.393576 90.079326) (xy 145.40696 90.090987) + (xy 145.58511 90.270206) (xy 145.596689 90.283657) (xy 145.747411 90.486491) (xy 145.756955 90.501468) + (xy 145.877148 90.723737) (xy 145.884455 90.739924) (xy 145.971665 90.97709) (xy 145.976585 90.994154) + (xy 146.02902 91.241342) (xy 146.031452 91.258934) (xy 146.048331 91.515532) (xy 146.048596 91.524413) + (xy 145.89596 117.014725) (xy 145.86 123.02) (xy 149.459998 126.019999) (xy 149.459999 126.02) (xy 149.459999 126.019999) + (xy 149.46 126.02) (xy 150.546817 126.013032) (xy 150.54683 126.013033) (xy 150.557015 126.012967) + (xy 150.557016 126.012968) (xy 159.881199 125.953197) (xy 180.66 125.82) (xy 182.86 124.22) (xy 183.042865 113.61374) + (xy 183.043254 113.605853) (xy 183.067725 113.305365) (xy 183.07002 113.289682) (xy 183.131824 112.998686) + (xy 183.136104 112.983418) (xy 183.234561 112.702678) (xy 183.240757 112.688081) (xy 183.249836 112.67) + (xy 183.374249 112.422218) (xy 183.382245 112.40855) (xy 183.548595 112.161897) (xy 183.558267 112.149365) + (xy 183.754707 111.926017) (xy 183.766031 111.91471) (xy 183.988937 111.719226) (xy 184.001796 111.70936) + (xy 184.248219 111.544706) (xy 184.262255 111.536602) (xy 184.528075 111.405513) (xy 184.543046 111.399313) + (xy 184.823702 111.304043) (xy 184.839341 111.299853) (xy 185.130032 111.24203) (xy 185.146091 111.239915) + (xy 185.418679 111.222049) (xy 185.445907 111.220265) (xy 185.454016 111.22) (xy 190.136148 111.22) + (xy 190.143413 111.220212) (xy 190.483491 111.240174) (xy 190.497904 111.241871) (xy 190.829739 111.300845) + (xy 190.843847 111.304215) (xy 191.166497 111.401603) (xy 191.180125 111.406605) (xy 191.400829 111.502634) + (xy 191.489155 111.541065) (xy 191.502117 111.547633) (xy 191.793298 111.717324) (xy 191.805402 111.725364) + (xy 192.057113 111.914701) (xy 192.074718 111.927943) (xy 192.085799 111.937343) (xy 192.329575 112.170046) + (xy 192.339481 112.180679) (xy 192.556685 112.443112) (xy 192.561153 112.448845) (xy 193.263941 113.407193) + (xy 193.267743 113.412682) (xy 193.438952 113.674634) (xy 193.445644 113.686185) (xy 193.58619 113.962059) + (xy 193.591601 113.974264) (xy 193.701674 114.263648) (xy 193.705741 114.276362) (xy 193.784064 114.575883) + (xy 193.786742 114.588962) (xy 193.832413 114.895193) (xy 193.833668 114.908483) (xy 193.846289 115.221157) + (xy 193.846379 115.227833) (xy 193.818915 117.260311) (xy 193.818915 117.260312) (xy 193.677775 127.704605) + (xy 193.677461 127.711899) (xy 193.652708 128.053172) (xy 193.650797 128.067643) (xy 193.586805 128.400055) + (xy 193.583207 128.414201) (xy 193.480596 128.736791) (xy 193.475361 128.750416) (xy 193.33555 129.05872) + (xy 193.328749 129.071636) (xy 193.153683 129.361367) (xy 193.145412 129.373394) (xy 192.937512 129.640547) + (xy 192.927885 129.651519) (xy 192.687467 129.894988) (xy 192.682187 129.90003) (xy 192.518491 130.047356) + (xy 192.512711 130.052246) (xy 192.234997 130.273057) (xy 192.222597 130.281736) (xy 191.923279 130.46509) + (xy 191.909914 130.472194) (xy 191.59048 130.617718) (xy 191.576349 130.62314) (xy 191.241573 130.72866) + (xy 191.226888 130.732321) (xy 190.881745 130.79627) (xy 190.866722 130.798114) (xy 190.51257 130.819769) + (xy 190.505002 130.82) (xy 188.26 130.82) (xy 188.257922 130.820009) (xy 188.252203 130.820035) + (xy 188.25208 130.820037) (xy 183.645142 130.841666) (xy 146.786306 131.014711) (xy 146.778909 131.014525) + (xy 146.432682 130.995468) (xy 146.417988 130.993775) (xy 146.080149 130.934272) (xy 146.06576 130.930842) + (xy 145.737403 130.83153) (xy 145.723525 130.826411) (xy 145.70897 130.820032) (xy 145.614134 130.778467) + (xy 145.409329 130.688706) (xy 145.39616 130.681971) (xy 145.100601 130.507836) (xy 145.088327 130.499581) + (xy 144.812653 130.289237) (xy 144.806907 130.284575) (xy 144.537405 130.052246) (xy 140.904051 126.920044) + (xy 140.898444 126.914901) (xy 140.643139 126.665928) (xy 140.632919 126.654659) (xy 140.412387 126.379249) + (xy 140.403625 126.366814) (xy 140.218475 126.066469) (xy 140.211316 126.053081) (xy 140.064335 125.732315) + (xy 140.058864 125.718138) (xy 139.952269 125.381791) (xy 139.948576 125.367054) (xy 139.883972 125.020187) + (xy 139.88211 125.00509) (xy 139.860234 124.649147) (xy 139.86 124.64154) (xy 139.86 116.62) (xy 139.06 115.62) + (xy 138.419688 115.62) (xy 132.971982 115.62) (xy 132.962253 115.619618) (xy 132.709785 115.599748) + (xy 132.690566 115.596704) (xy 132.449069 115.538725) (xy 132.430564 115.532712) (xy 132.201116 115.437671) + (xy 132.18378 115.428838) (xy 131.972013 115.299069) (xy 131.956274 115.287634) (xy 131.76742 115.126337) + (xy 131.753662 115.112579) (xy 131.727624 115.082093) (xy 131.592364 114.923723) (xy 131.58093 114.907986) + (xy 131.451161 114.696219) (xy 131.442328 114.678883) (xy 131.347287 114.449435) (xy 131.341274 114.43093) + (xy 131.33865 114.42) (xy 131.283294 114.189431) (xy 131.280251 114.170214) (xy 131.276944 114.128192) + (xy 131.260382 113.917745) (xy 131.26 113.908017) (xy 131.26 112.555305) (xy 131.86 112.555305) + (xy 131.86 112.784694) (xy 131.860001 112.78471) (xy 131.889942 113.012137) (xy 131.949318 113.23373) + (xy 132.037102 113.445659) (xy 132.037106 113.445669) (xy 132.151799 113.644324) (xy 132.151805 113.644331) + (xy 132.208381 113.718064) (xy 133.127037 112.799408) (xy 133.144075 112.862993) (xy 133.209901 112.977007) + (xy 133.302993 113.070099) (xy 133.417007 113.135925) (xy 133.48059 113.152962) (xy 132.561934 114.071617) + (xy 132.561934 114.071618) (xy 132.635666 114.128194) (xy 132.83433 114.242893) (xy 132.83434 114.242897) + (xy 133.046269 114.330681) (xy 133.267862 114.390057) (xy 133.495289 114.419998) (xy 133.495306 114.42) + (xy 133.724694 114.42) (xy 133.72471 114.419998) (xy 133.952137 114.390057) (xy 134.17373 114.330681) + (xy 134.385659 114.242897) (xy 134.385668 114.242893) (xy 134.584327 114.128197) (xy 134.584334 114.128192) + (xy 134.658064 114.071617) (xy 133.739409 113.152962) (xy 133.802993 113.135925) (xy 133.917007 113.070099) + (xy 134.010099 112.977007) (xy 134.075925 112.862993) (xy 134.092962 112.799409) (xy 135.011617 113.718064) + (xy 135.068192 113.644334) (xy 135.068197 113.644327) (xy 135.182893 113.445668) (xy 135.182897 113.445659) + (xy 135.270681 113.23373) (xy 135.330057 113.012137) (xy 135.359998 112.78471) (xy 135.36 112.784694) + (xy 135.36 112.555305) (xy 135.359998 112.555289) (xy 135.330057 112.327862) (xy 135.270681 112.106269) + (xy 135.182897 111.89434) (xy 135.182893 111.89433) (xy 135.068194 111.695666) (xy 135.011618 111.621934) + (xy 135.011617 111.621934) (xy 134.092962 112.540589) (xy 134.075925 112.477007) (xy 134.010099 112.362993) + (xy 133.917007 112.269901) (xy 133.802993 112.204075) (xy 133.739407 112.187037) (xy 134.658064 111.268381) + (xy 134.658064 111.26838) (xy 134.584331 111.211805) (xy 134.584324 111.211799) (xy 134.385669 111.097106) + (xy 134.385659 111.097102) (xy 134.17373 111.009318) (xy 133.952137 110.949942) (xy 133.72471 110.920001) + (xy 133.724694 110.92) (xy 133.495306 110.92) (xy 133.495289 110.920001) (xy 133.267862 110.949942) + (xy 133.046269 111.009318) (xy 132.83434 111.097102) (xy 132.83433 111.097106) (xy 132.635673 111.211801) + (xy 132.635659 111.21181) (xy 132.561934 111.26838) (xy 133.48059 112.187037) (xy 133.417007 112.204075) + (xy 133.302993 112.269901) (xy 133.209901 112.362993) (xy 133.144075 112.477007) (xy 133.127037 112.54059) + (xy 132.20838 111.621934) (xy 132.15181 111.695659) (xy 132.151801 111.695673) (xy 132.037106 111.89433) + (xy 132.037102 111.89434) (xy 131.949318 112.106269) (xy 131.889942 112.327862) (xy 131.860001 112.555289) + (xy 131.86 112.555305) (xy 131.26 112.555305) (xy 131.26 107.22) (xy 132.66 106.02) (xy 141.86 106.02) + (xy 142.25938 89.645412) (xy 142.268201 89.645338) (xy 142.310596 89.622627) (xy 142.335986 89.62) + (xy 144.155549 89.62) + ) + ) + ) + (zone + (net 23) + (net_name "NC_5") + (layer "B.Cu") + (uuid "57601b85-1426-4185-ba09-7eb92b351f58") + (hatch edge 0.5) + (priority 7) + (connect_pads + (clearance 0) + ) + (min_thickness 0.25) + (filled_areas_thickness no) + (fill yes + (thermal_gap 0.5) + (thermal_bridge_width 0.5) + (smoothing fillet) + (radius 3) + ) + (polygon + (pts + (xy 131.46 138.62) (xy 131.46 123.42) (xy 136.26 123.42) (xy 136.26 138.62) + ) + ) + (filled_polygon + (layer "B.Cu") + (pts + (xy 135.824606 124.467105) (xy 135.859432 124.501725) (xy 135.933945 124.613242) (xy 135.942055 124.627289) + (xy 136.073716 124.89427) (xy 136.079923 124.909256) (xy 136.175609 125.19114) (xy 136.179807 125.206806) + (xy 136.237881 125.498758) (xy 136.239999 125.51484) (xy 136.259735 125.815956) (xy 136.26 125.824066) + (xy 136.26 136.215933) (xy 136.259735 136.224043) (xy 136.239999 136.525159) (xy 136.237881 136.541241) + (xy 136.179807 136.833193) (xy 136.175609 136.848859) (xy 136.079923 137.130743) (xy 136.073716 137.145729) + (xy 135.942055 137.41271) (xy 135.933945 137.426757) (xy 135.768563 137.674269) (xy 135.758689 137.687137) + (xy 135.562414 137.910945) (xy 135.550945 137.922414) (xy 135.327137 138.118689) (xy 135.314269 138.128563) + (xy 135.066757 138.293945) (xy 135.05271 138.302055) (xy 134.785729 138.433716) (xy 134.770743 138.439923) + (xy 134.488859 138.535609) (xy 134.473193 138.539807) (xy 134.181241 138.597881) (xy 134.165159 138.599999) + (xy 133.86811 138.619468) (xy 133.85189 138.619468) (xy 133.55484 138.599999) (xy 133.538759 138.597881) + (xy 133.495207 138.589218) (xy 133.246806 138.539807) (xy 133.23114 138.535609) (xy 132.949256 138.439923) + (xy 132.93427 138.433716) (xy 132.667289 138.302055) (xy 132.653242 138.293945) (xy 132.40573 138.128563) + (xy 132.392862 138.118689) (xy 132.169054 137.922414) (xy 132.157585 137.910945) (xy 131.96131 137.687137) + (xy 131.951436 137.674269) (xy 131.786054 137.426757) (xy 131.777944 137.41271) (xy 131.710438 137.275821) + (xy 131.698442 137.206989) (xy 131.725563 137.142598) (xy 131.783192 137.103092) (xy 131.85303 137.101013) + (xy 131.897137 137.122601) (xy 132.00215 137.20318) (xy 132.002158 137.203186) (xy 132.21784 137.327711) + (xy 132.217851 137.327716) (xy 132.44795 137.423026) (xy 132.688536 137.487491) (xy 132.935466 137.52) + (xy 133.184534 137.52) (xy 133.431463 137.487491) (xy 133.672049 137.423026) (xy 133.902148 137.327716) + (xy 133.902159 137.327711) (xy 134.117855 137.203178) (xy 134.215045 137.1286) (xy 134.215045 137.128597) + (xy 133.307488 136.221041) (xy 133.36789 136.196022) (xy 133.474351 136.124888) (xy 133.564888 136.034351) + (xy 133.636022 135.92789) (xy 133.661041 135.867489) (xy 134.568597 136.775045) (xy 134.5686 136.775045) + (xy 134.643178 136.677855) (xy 134.767711 136.462159) (xy 134.767716 136.462148) (xy 134.863026 136.232049) + (xy 134.927491 135.991463) (xy 134.96 135.744533) (xy 134.96 135.495466) (xy 134.927491 135.248536) + (xy 134.863026 135.00795) (xy 134.767716 134.777851) (xy 134.767711 134.77784) (xy 134.643186 134.562158) + (xy 134.64318 134.56215) (xy 134.568598 134.464953) (xy 133.661041 135.37251) (xy 133.636022 135.31211) + (xy 133.564888 135.205649) (xy 133.474351 135.115112) (xy 133.36789 135.043978) (xy 133.307487 135.018957) + (xy 134.215045 134.1114) (xy 134.117849 134.036819) (xy 134.117841 134.036813) (xy 133.902159 133.912288) + (xy 133.902148 133.912283) (xy 133.672049 133.816973) (xy 133.431463 133.752508) (xy 133.184534 133.72) + (xy 132.935466 133.72) (xy 132.688536 133.752508) (xy 132.44795 133.816973) (xy 132.217851 133.912283) + (xy 132.217847 133.912285) (xy 132.002143 134.036823) (xy 131.904953 134.111399) (xy 131.904953 134.1114) + (xy 132.812511 135.018958) (xy 132.75211 135.043978) (xy 132.645649 135.115112) (xy 132.555112 135.205649) + (xy 132.483978 135.31211) (xy 132.458958 135.372512) (xy 131.536225 134.449778) (xy 131.523925 134.447026) + (xy 131.514715 134.437706) (xy 131.502797 134.432263) (xy 131.49063 134.413331) (xy 131.474815 134.397326) + (xy 131.471246 134.383169) (xy 131.465023 134.373485) (xy 131.46 134.33855) (xy 131.46 125.824066) + (xy 131.460265 125.815956) (xy 131.460887 125.806471) (xy 131.480001 125.514826) (xy 131.482115 125.498774) + (xy 131.490171 125.458276) (xy 131.522555 125.396368) (xy 131.583271 125.361794) (xy 131.653041 125.365535) + (xy 131.709712 125.406401) (xy 131.731562 125.450377) (xy 131.762076 125.564257) (xy 131.862404 125.806471) + (xy 131.862409 125.806482) (xy 131.993488 126.033516) (xy 131.993494 126.033524) (xy 132.08008 126.146365) + (xy 133.058958 125.167487) (xy 133.083978 125.22789) (xy 133.155112 125.334351) (xy 133.245649 125.424888) + (xy 133.35211 125.496022) (xy 133.412511 125.521041) (xy 132.433633 126.499917) (xy 132.433633 126.499918) + (xy 132.546475 126.586505) (xy 132.546483 126.586511) (xy 132.773517 126.71759) (xy 132.773528 126.717595) + (xy 133.015744 126.817924) (xy 133.268979 126.885777) (xy 133.26899 126.885779) (xy 133.528905 126.919999) + (xy 133.52892 126.92) (xy 133.79108 126.92) (xy 133.791094 126.919999) (xy 134.051009 126.885779) + (xy 134.05102 126.885777) (xy 134.304255 126.817924) (xy 134.546471 126.717595) (xy 134.546482 126.71759) + (xy 134.773516 126.586511) (xy 134.773534 126.586499) (xy 134.886365 126.499919) (xy 134.886365 126.499917) + (xy 133.907488 125.521041) (xy 133.96789 125.496022) (xy 134.074351 125.424888) (xy 134.164888 125.334351) + (xy 134.236022 125.22789) (xy 134.261041 125.167488) (xy 135.239917 126.146365) (xy 135.239919 126.146365) + (xy 135.326499 126.033534) (xy 135.326511 126.033516) (xy 135.45759 125.806482) (xy 135.457595 125.806471) + (xy 135.557924 125.564255) (xy 135.625777 125.31102) (xy 135.625779 125.311009) (xy 135.659999 125.051094) + (xy 135.66 125.05108) (xy 135.66 124.788919) (xy 135.659999 124.788905) (xy 135.633391 124.586802) + (xy 135.644156 124.517766) (xy 135.690536 124.46551) (xy 135.757805 124.446625) + ) + ) + ) + (zone + (net 9) + (net_name "NC_1") + (layer "B.Cu") + (uuid "58e0bd64-7f09-44fe-a16f-6122a9fecbb8") + (hatch edge 0.5) + (priority 7) + (connect_pads + (clearance 0) + ) + (min_thickness 0.25) + (filled_areas_thickness no) + (fill yes + (thermal_gap 0.5) + (thermal_bridge_width 0.5) + (smoothing fillet) + (radius 3) + ) + (polygon + (pts + (xy 119.46 73.82) (xy 119.46 58.62) (xy 124.26 58.62) (xy 124.26 73.82) + ) + ) + (filled_polygon + (layer "B.Cu") + (pts + (xy 122.165171 58.640001) (xy 122.181227 58.642116) (xy 122.473193 58.700192) (xy 122.488859 58.70439) + (xy 122.693229 58.773763) (xy 122.770745 58.800077) (xy 122.785722 58.80628) (xy 123.0388 58.931084) + (xy 123.05271 58.937944) (xy 123.066758 58.946054) (xy 123.314273 59.111439) (xy 123.327137 59.12131) + (xy 123.550945 59.317585) (xy 123.562414 59.329054) (xy 123.758689 59.552862) (xy 123.768563 59.56573) + (xy 123.933945 59.813242) (xy 123.942055 59.827289) (xy 124.073716 60.09427) (xy 124.079923 60.109256) + (xy 124.175609 60.39114) (xy 124.179807 60.406805) (xy 124.192434 60.470281) (xy 124.186207 60.539873) + (xy 124.143345 60.595051) (xy 124.077456 60.618296) (xy 124.009458 60.602229) (xy 123.972441 60.569961) + (xy 123.968598 60.564953) (xy 123.061041 61.47251) (xy 123.036022 61.41211) (xy 122.964888 61.305649) + (xy 122.874351 61.215112) (xy 122.76789 61.143978) (xy 122.707487 61.118957) (xy 123.615045 60.2114) + (xy 123.517849 60.136819) (xy 123.517841 60.136813) (xy 123.302159 60.012288) (xy 123.302148 60.012283) + (xy 123.072049 59.916973) (xy 122.831463 59.852508) (xy 122.584534 59.82) (xy 122.335466 59.82) + (xy 122.088536 59.852508) (xy 121.84795 59.916973) (xy 121.617851 60.012283) (xy 121.617847 60.012285) + (xy 121.402143 60.136823) (xy 121.304953 60.211399) (xy 121.304953 60.2114) (xy 122.212511 61.118958) + (xy 122.15211 61.143978) (xy 122.045649 61.215112) (xy 121.955112 61.305649) (xy 121.883978 61.41211) + (xy 121.858958 61.472511) (xy 120.9514 60.564953) (xy 120.951399 60.564953) (xy 120.876823 60.662143) + (xy 120.752285 60.877847) (xy 120.752283 60.877851) (xy 120.656973 61.10795) (xy 120.592508 61.348536) + (xy 120.56 61.595466) (xy 120.56 61.844533) (xy 120.592508 62.091463) (xy 120.656973 62.332049) + (xy 120.752283 62.562148) (xy 120.752288 62.562159) (xy 120.876813 62.777841) (xy 120.876819 62.777849) + (xy 120.9514 62.875045) (xy 121.858958 61.967487) (xy 121.883978 62.02789) (xy 121.955112 62.134351) + (xy 122.045649 62.224888) (xy 122.15211 62.296022) (xy 122.212511 62.321041) (xy 121.304953 63.228598) + (xy 121.40215 63.30318) (xy 121.402158 63.303186) (xy 121.61784 63.427711) (xy 121.617851 63.427716) + (xy 121.84795 63.523026) (xy 122.088536 63.587491) (xy 122.335466 63.62) (xy 122.584534 63.62) (xy 122.831463 63.587491) + (xy 123.072049 63.523026) (xy 123.302148 63.427716) (xy 123.302159 63.427711) (xy 123.517855 63.303178) + (xy 123.615045 63.2286) (xy 123.615045 63.228597) (xy 122.707488 62.321041) (xy 122.76789 62.296022) + (xy 122.874351 62.224888) (xy 122.964888 62.134351) (xy 123.036022 62.02789) (xy 123.061041 61.967489) + (xy 123.968597 62.875045) (xy 123.9686 62.875045) (xy 124.037625 62.785092) (xy 124.094053 62.743889) + (xy 124.163799 62.739735) (xy 124.224719 62.773948) (xy 124.257471 62.835666) (xy 124.26 62.860579) + (xy 124.26 71.415933) (xy 124.259735 71.424043) (xy 124.239999 71.725159) (xy 124.237881 71.741241) + (xy 124.179807 72.033193) (xy 124.175609 72.048859) (xy 124.079923 72.330743) (xy 124.073716 72.345729) + (xy 123.942055 72.61271) (xy 123.933945 72.626757) (xy 123.80536 72.819197) (xy 123.751748 72.864002) + (xy 123.682423 72.872709) (xy 123.619395 72.842554) (xy 123.582676 72.783111) (xy 123.579319 72.73412) + (xy 123.609999 72.501094) (xy 123.61 72.50108) (xy 123.61 72.238919) (xy 123.609999 72.238905) (xy 123.575779 71.97899) + (xy 123.575777 71.978979) (xy 123.507924 71.725744) (xy 123.407595 71.483528) (xy 123.40759 71.483517) + (xy 123.276511 71.256483) (xy 123.276505 71.256475) (xy 123.189918 71.143633) (xy 123.189917 71.143633) + (xy 122.211041 72.12251) (xy 122.186022 72.06211) (xy 122.114888 71.955649) (xy 122.024351 71.865112) + (xy 121.91789 71.793978) (xy 121.857487 71.768957) (xy 122.836365 70.79008) (xy 122.723524 70.703494) + (xy 122.723516 70.703488) (xy 122.496482 70.572409) (xy 122.496471 70.572404) (xy 122.254255 70.472075) + (xy 122.00102 70.404222) (xy 122.001009 70.40422) (xy 121.741094 70.37) (xy 121.478905 70.37) (xy 121.21899 70.40422) + (xy 121.218979 70.404222) (xy 120.965744 70.472075) (xy 120.723528 70.572404) (xy 120.723517 70.572409) + (xy 120.496471 70.703496) (xy 120.383633 70.790079) (xy 120.383633 70.79008) (xy 121.362511 71.768958) + (xy 121.30211 71.793978) (xy 121.195649 71.865112) (xy 121.105112 71.955649) (xy 121.033978 72.06211) + (xy 121.008958 72.122511) (xy 120.03008 71.143633) (xy 120.030079 71.143633) (xy 119.943496 71.256471) + (xy 119.812409 71.483517) (xy 119.812404 71.483529) (xy 119.715253 71.718071) (xy 119.671412 71.772474) + (xy 119.605118 71.794539) (xy 119.537418 71.77726) (xy 119.489808 71.726122) (xy 119.476957 71.678731) + (xy 119.460265 71.424043) (xy 119.46 71.415933) (xy 119.46 61.024066) (xy 119.460265 61.015956) + (xy 119.480001 60.714826) (xy 119.482115 60.698774) (xy 119.540193 60.406802) (xy 119.54439 60.39114) + (xy 119.602655 60.219495) (xy 119.605403 60.2114) (xy 119.640079 60.109248) (xy 119.646277 60.094283) + (xy 119.777947 59.827283) (xy 119.78605 59.813248) (xy 119.951444 59.565718) (xy 119.961301 59.552873) + (xy 120.15759 59.329048) (xy 120.169048 59.31759) (xy 120.392873 59.121301) (xy 120.405718 59.111444) + (xy 120.653248 58.94605) (xy 120.667283 58.937947) (xy 120.934283 58.806277) (xy 120.949248 58.800079) + (xy 121.147116 58.732912) (xy 121.23114 58.70439) (xy 121.246802 58.700193) (xy 121.538774 58.642115) + (xy 121.554826 58.640001) (xy 121.851898 58.620531) (xy 121.868102 58.620531) + ) + ) + ) + (zone + (net 21) + (net_name "NO_4") + (layer "B.Cu") + (uuid "6879dabe-e60d-498f-b074-e20ec1cdc533") + (hatch edge 0.5) + (priority 7) + (connect_pads + (clearance 0) + ) + (min_thickness 0.25) + (filled_areas_thickness no) + (fill yes + (thermal_gap 0.5) + (thermal_bridge_width 0.5) + (smoothing fillet) + (radius 3) + ) + (polygon + (pts + (xy 75.86 73.62) (xy 75.86 58.62) (xy 80.66 58.62) (xy 80.66 73.62) + ) + ) + (filled_polygon + (layer "B.Cu") + (pts + (xy 78.565171 58.640001) (xy 78.581227 58.642116) (xy 78.873193 58.700192) (xy 78.888859 58.70439) + (xy 79.093229 58.773763) (xy 79.170745 58.800077) (xy 79.185722 58.80628) (xy 79.4388 58.931084) + (xy 79.45271 58.937944) (xy 79.466758 58.946054) (xy 79.714273 59.111439) (xy 79.727137 59.12131) + (xy 79.950945 59.317585) (xy 79.962414 59.329054) (xy 80.158689 59.552862) (xy 80.168563 59.56573) + (xy 80.333945 59.813242) (xy 80.342055 59.827289) (xy 80.473716 60.09427) (xy 80.479923 60.109256) + (xy 80.575609 60.39114) (xy 80.579807 60.406806) (xy 80.637881 60.698758) (xy 80.639999 60.71484) + (xy 80.659735 61.015956) (xy 80.66 61.024066) (xy 80.66 71.071327) (xy 80.640315 71.138366) (xy 80.587511 71.184121) + (xy 80.518353 71.194065) (xy 80.454797 71.16504) (xy 80.428613 71.133327) (xy 80.326511 70.956483) + (xy 80.326505 70.956475) (xy 80.239918 70.843633) (xy 80.239917 70.843633) (xy 79.261041 71.82251) + (xy 79.236022 71.76211) (xy 79.164888 71.655649) (xy 79.074351 71.565112) (xy 78.96789 71.493978) + (xy 78.907487 71.468957) (xy 79.886365 70.49008) (xy 79.773524 70.403494) (xy 79.773516 70.403488) + (xy 79.546482 70.272409) (xy 79.546471 70.272404) (xy 79.304255 70.172075) (xy 79.05102 70.104222) + (xy 79.051009 70.10422) (xy 78.791094 70.07) (xy 78.528905 70.07) (xy 78.26899 70.10422) (xy 78.268979 70.104222) + (xy 78.015744 70.172075) (xy 77.773528 70.272404) (xy 77.773517 70.272409) (xy 77.546471 70.403496) + (xy 77.433633 70.490079) (xy 77.433633 70.49008) (xy 78.412511 71.468958) (xy 78.35211 71.493978) + (xy 78.245649 71.565112) (xy 78.155112 71.655649) (xy 78.083978 71.76211) (xy 78.058958 71.822511) + (xy 77.08008 70.843633) (xy 77.080079 70.843633) (xy 76.993496 70.956471) (xy 76.862409 71.183517) + (xy 76.862404 71.183528) (xy 76.762075 71.425744) (xy 76.694222 71.678979) (xy 76.69422 71.67899) + (xy 76.66 71.938905) (xy 76.66 72.201094) (xy 76.69422 72.461009) (xy 76.694222 72.46102) (xy 76.762075 72.714255) + (xy 76.804089 72.815685) (xy 76.804857 72.822836) (xy 76.808711 72.828911) (xy 76.808543 72.857112) + (xy 76.811558 72.885155) (xy 76.808337 72.891588) (xy 76.808295 72.89878) (xy 76.792908 72.922411) + (xy 76.780283 72.947634) (xy 76.774096 72.951304) (xy 76.770172 72.957332) (xy 76.744447 72.968895) + (xy 76.720194 72.983286) (xy 76.713006 72.983029) (xy 76.706445 72.985979) (xy 76.678549 72.981798) + (xy 76.650369 72.980792) (xy 76.642774 72.976437) (xy 76.637347 72.975624) (xy 76.607769 72.956366) + (xy 76.569054 72.922414) (xy 76.557585 72.910945) (xy 76.36131 72.687137) (xy 76.351436 72.674269) + (xy 76.186054 72.426757) (xy 76.177944 72.41271) (xy 76.171084 72.3988) (xy 76.04628 72.145722) + (xy 76.040076 72.130743) (xy 75.94439 71.848859) (xy 75.940192 71.833193) (xy 75.882116 71.541227) + (xy 75.880001 71.525171) (xy 75.860265 71.224043) (xy 75.86 71.215933) (xy 75.86 63.382708) (xy 75.879685 63.315669) + (xy 75.932489 63.269914) (xy 76.001647 63.25997) (xy 76.023004 63.265002) (xy 76.157303 63.309505) + (xy 76.15731 63.309506) (xy 76.260014 63.319999) (xy 76.260027 63.32) (xy 77.21 63.32) (xy 77.21 62.020001) + (xy 77.270402 62.045021) (xy 77.395981 62.07) (xy 77.524019 62.07) (xy 77.649598 62.045021) (xy 77.71 62.020001) + (xy 77.71 63.32) (xy 78.659973 63.32) (xy 78.659985 63.319999) (xy 78.762689 63.309506) (xy 78.762696 63.309505) + (xy 78.929118 63.254358) (xy 78.929123 63.254356) (xy 79.078344 63.162315) (xy 79.202315 63.038344) + (xy 79.294356 62.889123) (xy 79.294358 62.889118) (xy 79.349505 62.722696) (xy 79.349506 62.722689) + (xy 79.359999 62.619985) (xy 79.36 62.619972) (xy 79.36 61.67) (xy 78.060001 61.67) (xy 78.085021 61.609598) + (xy 78.11 61.484019) (xy 78.11 61.355981) (xy 78.085021 61.230402) (xy 78.060001 61.17) (xy 79.36 61.17) + (xy 79.36 60.220027) (xy 79.359999 60.220014) (xy 79.349506 60.11731) (xy 79.349505 60.117303) (xy 79.294358 59.950881) + (xy 79.294356 59.950876) (xy 79.202315 59.801655) (xy 79.078344 59.677684) (xy 78.929123 59.585643) + (xy 78.929118 59.585641) (xy 78.762696 59.530494) (xy 78.762689 59.530493) (xy 78.659985 59.52) + (xy 77.71 59.52) (xy 77.71 60.819998) (xy 77.649598 60.794979) (xy 77.524019 60.77) (xy 77.395981 60.77) + (xy 77.270402 60.794979) (xy 77.21 60.819998) (xy 77.21 59.52) (xy 76.667705 59.52) (xy 76.600666 59.500315) + (xy 76.554911 59.447511) (xy 76.544967 59.378353) (xy 76.573992 59.314797) (xy 76.585946 59.302772) + (xy 76.618415 59.274296) (xy 76.792873 59.121301) (xy 76.805718 59.111444) (xy 77.053248 58.94605) + (xy 77.067283 58.937947) (xy 77.334283 58.806277) (xy 77.349248 58.800079) (xy 77.547116 58.732912) + (xy 77.63114 58.70439) (xy 77.646802 58.700193) (xy 77.938774 58.642115) (xy 77.954826 58.640001) + (xy 78.251898 58.620531) (xy 78.268102 58.620531) + ) + ) + ) + (zone + (net 81) + (net_name "/12V_DC-Regulated") + (layer "B.Cu") + (uuid "757f6cae-ff20-41ee-b5d1-918d6173c6b2") + (hatch edge 0.5) + (priority 6) + (connect_pads + (clearance 0) + ) + (min_thickness 0.25) + (filled_areas_thickness no) + (fill yes + (thermal_gap 0.5) + (thermal_bridge_width 0.5) + (smoothing fillet) + (radius 2) + ) + (polygon + (pts + (xy 76.06 105.62) (xy 76.06 109.42) (xy 80.86 109.42) (xy 80.86 103.42) (xy 94.86 103.82) (xy 94.86 109.42) + (xy 99.26 109.42) (xy 99.26 104.02) (xy 112.86 104.22) (xy 112.86 109.22) (xy 118.46 109.22) (xy 118.46 104.42) + (xy 131.26 104.62) (xy 131.26 109.82) (xy 136.26 110.02) (xy 136.26 90.02) (xy 124.46 90.02) (xy 124.46 86.62) + (xy 119.26 86.62) (xy 119.26 90.42) (xy 105.66 91.02) (xy 105.66 86.82) (xy 100.86 86.82) (xy 100.86 91.02) + (xy 86.66 91.02) (xy 87.66 90.62) (xy 87.66 86.82) (xy 81.86 86.82) (xy 81.86 91.02) (xy 69.26 90.62) + (xy 69.26 87.22) (xy 63.46 87.22) (xy 63.66 91.82) (xy 63.86 104.02) (xy 75.06 105.62) + ) + ) + (filled_polygon + (layer "B.Cu") + (pts + (xy 122.876768 86.620381) (xy 123.110622 86.638786) (xy 123.129831 86.641829) (xy 123.353177 86.695449) + (xy 123.371669 86.701457) (xy 123.523069 86.76417) (xy 123.58387 86.789355) (xy 123.601207 86.798188) + (xy 123.797053 86.918202) (xy 123.81279 86.929636) (xy 123.987452 87.078811) (xy 124.001188 87.092547) + (xy 124.128545 87.241663) (xy 124.15036 87.267205) (xy 124.161797 87.282946) (xy 124.281811 87.478792) + (xy 124.290644 87.496129) (xy 124.378539 87.708323) (xy 124.384552 87.726829) (xy 124.438169 87.950163) + (xy 124.441213 87.969381) (xy 124.459618 88.203232) (xy 124.46 88.212961) (xy 124.46 89.796169) + (xy 124.46 90.02) (xy 136.26 90.02) (xy 136.26 106.02) (xy 132.66 106.02) (xy 131.26 107.22) (xy 131.26 104.62) + (xy 118.46 104.42) (xy 118.46 106.004945) (xy 118.46 107.607597) (xy 118.459618 107.617326) (xy 118.440974 107.854218) + (xy 118.43793 107.873436) (xy 118.3836 108.099736) (xy 118.377587 108.118242) (xy 118.288525 108.333255) + (xy 118.279692 108.350591) (xy 118.158087 108.549035) (xy 118.146649 108.564778) (xy 117.995503 108.741745) + (xy 117.981745 108.755503) (xy 117.804778 108.906649) (xy 117.789035 108.918087) (xy 117.590591 109.039692) + (xy 117.573255 109.048525) (xy 117.358242 109.137587) (xy 117.339736 109.1436) (xy 117.113436 109.19793) + (xy 117.094218 109.200974) (xy 116.857327 109.219618) (xy 116.847598 109.22) (xy 114.473987 109.22) + (xy 114.464258 109.219618) (xy 114.227118 109.200954) (xy 114.2079 109.19791) (xy 113.981358 109.143522) + (xy 113.962852 109.137509) (xy 113.747604 109.04835) (xy 113.730267 109.039516) (xy 113.531621 108.917786) + (xy 113.515879 108.906349) (xy 113.338718 108.755039) (xy 113.32496 108.741281) (xy 113.17365 108.56412) + (xy 113.162213 108.548378) (xy 113.040483 108.349732) (xy 113.031649 108.332395) (xy 112.990385 108.232776) + (xy 112.942488 108.11714) (xy 112.936479 108.098648) (xy 112.882088 107.872094) (xy 112.879045 107.852881) + (xy 112.867539 107.706687) (xy 112.860382 107.615742) (xy 112.86 107.606013) (xy 112.86 106.001776) + (xy 112.86 104.22) (xy 99.26 104.02) (xy 99.26 105.994079) (xy 99.26 107.702164) (xy 99.259618 107.711893) + (xy 99.239676 107.965278) (xy 99.236632 107.984496) (xy 99.17844 108.226884) (xy 99.172427 108.24539) + (xy 99.077032 108.475693) (xy 99.068198 108.49303) (xy 98.937953 108.70557) (xy 98.926516 108.721311) + (xy 98.764623 108.910864) (xy 98.750864 108.924623) (xy 98.561311 109.086516) (xy 98.54557 109.097953) + (xy 98.33303 109.228198) (xy 98.315693 109.237032) (xy 98.08539 109.332427) (xy 98.066884 109.33844) + (xy 97.824496 109.396632) (xy 97.805278 109.399676) (xy 97.551894 109.419618) (xy 97.542165 109.42) + (xy 96.57908 109.42) (xy 96.569351 109.419618) (xy 96.315771 109.39966) (xy 96.296553 109.396616) + (xy 96.053976 109.338379) (xy 96.03547 109.332366) (xy 95.804986 109.236896) (xy 95.787649 109.228062) + (xy 95.574939 109.097713) (xy 95.559204 109.086281) (xy 95.369487 108.924248) (xy 95.355751 108.910512) + (xy 95.193716 108.720793) (xy 95.182286 108.70506) (xy 95.051937 108.49235) (xy 95.043103 108.475013) + (xy 94.984385 108.333255) (xy 94.947631 108.244522) (xy 94.941622 108.22603) (xy 94.883382 107.983441) + (xy 94.880339 107.964228) (xy 94.873088 107.872099) (xy 94.860382 107.710648) (xy 94.86 107.700919) + (xy 94.86 105.991589) (xy 94.86 103.82) (xy 80.86 103.42) (xy 80.86 105.983666) (xy 80.86 107.696958) + (xy 80.859618 107.706687) (xy 80.839612 107.960886) (xy 80.836568 107.980104) (xy 80.778185 108.223286) + (xy 80.772172 108.241792) (xy 80.676464 108.47285) (xy 80.66763 108.490187) (xy 80.536959 108.703423) + (xy 80.525523 108.719164) (xy 80.363099 108.909339) (xy 80.349339 108.923099) (xy 80.159164 109.085523) + (xy 80.143423 109.096959) (xy 79.930187 109.22763) (xy 79.91285 109.236464) (xy 79.681792 109.332172) + (xy 79.663286 109.338185) (xy 79.420104 109.396568) (xy 79.400886 109.399612) (xy 79.146688 109.419618) + (xy 79.136959 109.42) (xy 77.7844 109.42) (xy 77.774671 109.419618) (xy 77.520261 109.399595) (xy 77.501043 109.396551) + (xy 77.257648 109.338117) (xy 77.239148 109.332106) (xy 77.007888 109.236315) (xy 76.990556 109.227484) + (xy 76.947263 109.200954) (xy 76.777133 109.096698) (xy 76.761394 109.085263) (xy 76.718174 109.04835) + (xy 76.666225 109.003981) (xy 76.571057 108.9227) (xy 76.557299 108.908942) (xy 76.420838 108.749166) + (xy 76.394733 108.718601) (xy 76.383303 108.702868) (xy 76.252512 108.489438) (xy 76.243686 108.472117) + (xy 76.14789 108.240843) (xy 76.141884 108.222357) (xy 76.083448 107.978956) (xy 76.080404 107.959738) + (xy 76.060382 107.705328) (xy 76.06 107.695599) (xy 76.06 105.980949) (xy 76.06 105.62) (xy 75.06 105.62) + (xy 63.86 104.02) (xy 63.688228 93.541967) (xy 63.716392 93.493186) (xy 63.7505 93.365892) (xy 63.7505 93.234108) + (xy 63.716392 93.106814) (xy 63.680062 93.04389) (xy 63.66 91.82) (xy 63.527427 88.770835) (xy 63.527397 88.760842) + (xy 63.527924 88.746727) (xy 63.535736 88.537142) (xy 63.538089 88.51729) (xy 63.538851 88.513509) + (xy 63.581283 88.302755) (xy 63.586798 88.283538) (xy 63.594698 88.262557) (xy 63.663909 88.078743) + (xy 63.672436 88.060671) (xy 63.672845 88.05996) (xy 63.781466 87.870924) (xy 63.792781 87.854463) + (xy 63.9309 87.684694) (xy 63.944712 87.670268) (xy 64.108316 87.524909) (xy 64.124273 87.512887) + (xy 64.309105 87.395719) (xy 64.326792 87.386415) (xy 64.528054 87.300476) (xy 64.546996 87.294139) + (xy 64.75947 87.241661) (xy 64.779185 87.238451) (xy 65.00231 87.220403) (xy 65.012307 87.22) (xy 67.733273 87.22) + (xy 67.743001 87.220381) (xy 67.966494 87.237971) (xy 67.985703 87.241014) (xy 68.198943 87.292208) + (xy 68.217435 87.298217) (xy 68.380831 87.365897) (xy 68.420039 87.382138) (xy 68.437376 87.390972) + (xy 68.54808 87.458811) (xy 68.611462 87.497652) (xy 68.624351 87.50555) (xy 68.640084 87.51698) + (xy 68.806851 87.659412) (xy 68.820587 87.673148) (xy 68.963017 87.839913) (xy 68.974449 87.855648) + (xy 69.089027 88.042623) (xy 69.097861 88.05996) (xy 69.18178 88.262557) (xy 69.187793 88.281063) + (xy 69.238984 88.494291) (xy 69.242028 88.513509) (xy 69.259618 88.736998) (xy 69.26 88.746727) + (xy 69.26 90.263702) (xy 69.26 90.62) (xy 81.86 91.02) (xy 81.86 88.493367) (xy 81.860382 88.483638) + (xy 81.865949 88.412904) (xy 81.879776 88.237203) (xy 81.882818 88.217998) (xy 81.939386 87.982378) + (xy 81.945392 87.963893) (xy 82.038122 87.740022) (xy 82.046955 87.722689) (xy 82.050233 87.71734) + (xy 82.17356 87.516088) (xy 82.184981 87.500368) (xy 82.342368 87.316091) (xy 82.356091 87.302368) + (xy 82.540368 87.144981) (xy 82.556088 87.13356) (xy 82.762692 87.006953) (xy 82.780022 86.998122) + (xy 83.003893 86.905392) (xy 83.022378 86.899386) (xy 83.257998 86.842818) (xy 83.277203 86.839776) + (xy 83.523638 86.820381) (xy 83.533367 86.82) (xy 86.011196 86.82) (xy 86.020924 86.820381) (xy 86.263514 86.839474) + (xy 86.282723 86.842517) (xy 86.51459 86.898183) (xy 86.533082 86.904191) (xy 86.708862 86.977002) + (xy 86.753384 86.995444) (xy 86.770721 87.004278) (xy 86.974025 87.128863) (xy 86.989766 87.1403) + (xy 87.171082 87.295158) (xy 87.184841 87.308917) (xy 87.339699 87.490233) (xy 87.351136 87.505974) + (xy 87.475721 87.709278) (xy 87.484555 87.726615) (xy 87.575805 87.94691) (xy 87.581818 87.965416) + (xy 87.637481 88.197271) (xy 87.640525 88.216489) (xy 87.659618 88.459076) (xy 87.66 88.468805) + (xy 87.66 90.107857) (xy 87.66 90.62) (xy 86.66 91.02) (xy 100.86 91.02) (xy 100.86 88.412904) (xy 100.860382 88.403175) + (xy 100.869058 88.29293) (xy 100.878785 88.169328) (xy 100.881827 88.150123) (xy 100.935448 87.926779) + (xy 100.941454 87.908294) (xy 101.029352 87.69609) (xy 101.038185 87.678756) (xy 101.039886 87.67598) + (xy 101.158193 87.48292) (xy 101.169614 87.4672) (xy 101.318801 87.292524) (xy 101.332524 87.278801) + (xy 101.5072 87.129614) (xy 101.52292 87.118193) (xy 101.718759 86.998183) (xy 101.73609 86.989352) + (xy 101.948294 86.901454) (xy 101.966779 86.895448) (xy 102.190123 86.841827) (xy 102.209328 86.838785) + (xy 102.443175 86.820381) (xy 102.452904 86.82) (xy 104.087424 86.82) (xy 104.097152 86.820381) + (xy 104.327817 86.838535) (xy 104.347026 86.841578) (xy 104.567262 86.894452) (xy 104.585752 86.90046) + (xy 104.756644 86.971245) (xy 104.795005 86.987135) (xy 104.812342 86.995969) (xy 105.005447 87.114304) + (xy 105.021188 87.12574) (xy 105.193409 87.27283) (xy 105.207169 87.28659) (xy 105.354259 87.458811) + (xy 105.365695 87.474552) (xy 105.48403 87.667657) (xy 105.492864 87.684994) (xy 105.579536 87.894238) + (xy 105.585549 87.912744) (xy 105.63842 88.132968) (xy 105.641464 88.152186) (xy 105.659618 88.382848) + (xy 105.66 88.392577) (xy 105.66 89.955401) (xy 105.66 91.02) (xy 119.26 90.42) (xy 119.26 88.234982) + (xy 119.260382 88.225253) (xy 119.267645 88.132968) (xy 119.279057 87.987952) (xy 119.282099 87.968747) + (xy 119.336528 87.742035) (xy 119.342534 87.72355) (xy 119.431758 87.508145) (xy 119.440586 87.490819) + (xy 119.562411 87.292018) (xy 119.573839 87.276291) (xy 119.5816 87.267205) (xy 119.702421 87.12574) + (xy 119.725251 87.09901) (xy 119.73901 87.085251) (xy 119.830683 87.006955) (xy 119.916294 86.933836) + (xy 119.932018 86.922411) (xy 120.130819 86.800586) (xy 120.148145 86.791758) (xy 120.36355 86.702534) + (xy 120.382035 86.696528) (xy 120.608747 86.642099) (xy 120.627952 86.639057) (xy 120.865253 86.620381) + (xy 120.874982 86.62) (xy 122.86704 86.62) + ) + ) + ) + (zone + (net 15) + (net_name "NC_2") + (layer "B.Cu") + (uuid "804c5c8b-f60b-4078-a645-fdcb53029481") + (hatch edge 0.5) + (priority 7) + (connect_pads + (clearance 0) + ) + (min_thickness 0.25) + (filled_areas_thickness no) + (fill yes + (thermal_gap 0.5) + (thermal_bridge_width 0.5) + (smoothing fillet) + (radius 3) + ) + (polygon + (pts + (xy 101.26 73.82) (xy 101.46 58.62) (xy 106.26 58.62) (xy 106.06 73.82) + ) + ) + (filled_polygon + (layer "B.Cu") + (pts + (xy 103.868109 58.620536) (xy 103.891082 58.622054) (xy 104.163576 58.640064) (xy 104.179771 58.642214) + (xy 104.470028 58.700447) (xy 104.485802 58.70471) (xy 104.765887 58.800642) (xy 104.78095 58.80694) + (xy 105.045965 58.938898) (xy 105.060092 58.947138) (xy 105.305415 59.112813) (xy 105.318337 59.122841) + (xy 105.539725 59.319369) (xy 105.551213 59.331009) (xy 105.744811 59.554963) (xy 105.754668 59.568016) + (xy 105.917102 59.815498) (xy 105.925155 59.829733) (xy 106.053611 60.096452) (xy 106.059721 60.111624) + (xy 106.151949 60.392914) (xy 106.156009 60.408757) (xy 106.210416 60.699748) (xy 106.212355 60.715988) + (xy 106.228208 61.015708) (xy 106.22837 61.02389) (xy 106.226381 61.175004) (xy 106.205816 61.241779) + (xy 106.152415 61.286835) (xy 106.083131 61.295867) (xy 106.019963 61.266008) (xy 105.982965 61.206738) + (xy 105.982617 61.205465) (xy 105.929694 61.007952) (xy 105.834383 60.777851) (xy 105.834378 60.77784) + (xy 105.709853 60.562158) (xy 105.709847 60.56215) (xy 105.635265 60.464953) (xy 104.727708 61.37251) + (xy 104.702689 61.31211) (xy 104.631555 61.205649) (xy 104.541018 61.115112) (xy 104.434557 61.043978) + (xy 104.374154 61.018957) (xy 105.281712 60.1114) (xy 105.184516 60.036819) (xy 105.184508 60.036813) + (xy 104.968826 59.912288) (xy 104.968815 59.912283) (xy 104.738716 59.816973) (xy 104.49813 59.752508) + (xy 104.251201 59.72) (xy 104.002133 59.72) (xy 103.755203 59.752508) (xy 103.514617 59.816973) + (xy 103.284518 59.912283) (xy 103.284514 59.912285) (xy 103.06881 60.036823) (xy 102.97162 60.111399) + (xy 102.97162 60.1114) (xy 103.879178 61.018958) (xy 103.818777 61.043978) (xy 103.712316 61.115112) + (xy 103.621779 61.205649) (xy 103.550645 61.31211) (xy 103.525625 61.372511) (xy 102.618067 60.464953) + (xy 102.618066 60.464953) (xy 102.54349 60.562143) (xy 102.418952 60.777847) (xy 102.41895 60.777851) + (xy 102.32364 61.00795) (xy 102.259175 61.248536) (xy 102.226667 61.495466) (xy 102.226667 61.744533) + (xy 102.259175 61.991463) (xy 102.32364 62.232049) (xy 102.41895 62.462148) (xy 102.418955 62.462159) + (xy 102.54348 62.677841) (xy 102.543486 62.677849) (xy 102.618067 62.775045) (xy 103.525625 61.867487) + (xy 103.550645 61.92789) (xy 103.621779 62.034351) (xy 103.712316 62.124888) (xy 103.818777 62.196022) + (xy 103.879178 62.221041) (xy 102.97162 63.128598) (xy 103.068817 63.20318) (xy 103.068825 63.203186) + (xy 103.284507 63.327711) (xy 103.284518 63.327716) (xy 103.514617 63.423026) (xy 103.755203 63.487491) + (xy 104.002133 63.52) (xy 104.251201 63.52) (xy 104.49813 63.487491) (xy 104.738716 63.423026) (xy 104.968815 63.327716) + (xy 104.968826 63.327711) (xy 105.184522 63.203178) (xy 105.281712 63.1286) (xy 105.281712 63.128597) + (xy 104.374155 62.221041) (xy 104.434557 62.196022) (xy 104.541018 62.124888) (xy 104.631555 62.034351) + (xy 104.702689 61.92789) (xy 104.727708 61.867489) (xy 105.635264 62.775045) (xy 105.635267 62.775045) + (xy 105.709845 62.677855) (xy 105.834378 62.462159) (xy 105.834383 62.462148) (xy 105.929694 62.232047) + (xy 105.970257 62.080663) (xy 106.006622 62.021002) (xy 106.069469 61.990473) (xy 106.138844 61.998768) + (xy 106.192722 62.043253) (xy 106.213997 62.109805) (xy 106.214021 62.114387) (xy 106.091628 71.416185) + (xy 106.091261 71.424223) (xy 106.067607 71.726639) (xy 106.065316 71.74256) (xy 106.003546 72.035437) + (xy 105.999213 72.050926) (xy 105.900055 72.333339) (xy 105.893753 72.348138) (xy 105.758874 72.615338) + (xy 105.75071 72.629196) (xy 105.582379 72.87669) (xy 105.57249 72.889375) (xy 105.373543 73.112996) + (xy 105.362095 73.124294) (xy 105.135868 73.320289) (xy 105.123054 73.330011) (xy 104.873366 73.495071) + (xy 104.859401 73.503052) (xy 104.681986 73.589698) (xy 104.613109 73.60143) (xy 104.548822 73.574061) + (xy 104.509538 73.516281) (xy 104.505678 73.485063) (xy 103.524155 72.503541) (xy 103.584557 72.478522) + (xy 103.691018 72.407388) (xy 103.781555 72.316851) (xy 103.852689 72.21039) (xy 103.877708 72.149989) + (xy 104.856584 73.128865) (xy 104.856586 73.128865) (xy 104.943166 73.016034) (xy 104.943178 73.016016) + (xy 105.074257 72.788982) (xy 105.074262 72.788971) (xy 105.174591 72.546755) (xy 105.242444 72.29352) + (xy 105.242446 72.293509) (xy 105.276666 72.033594) (xy 105.276667 72.03358) (xy 105.276667 71.771419) + (xy 105.276666 71.771405) (xy 105.242446 71.51149) (xy 105.242444 71.511479) (xy 105.174591 71.258244) + (xy 105.074262 71.016028) (xy 105.074257 71.016017) (xy 104.943178 70.788983) (xy 104.943172 70.788975) + (xy 104.856585 70.676133) (xy 104.856584 70.676133) (xy 103.877708 71.65501) (xy 103.852689 71.59461) + (xy 103.781555 71.488149) (xy 103.691018 71.397612) (xy 103.584557 71.326478) (xy 103.524154 71.301457) + (xy 104.503032 70.32258) (xy 104.390191 70.235994) (xy 104.390183 70.235988) (xy 104.163149 70.104909) + (xy 104.163138 70.104904) (xy 103.920922 70.004575) (xy 103.667687 69.936722) (xy 103.667676 69.93672) + (xy 103.407761 69.9025) (xy 103.145572 69.9025) (xy 102.885657 69.93672) (xy 102.885646 69.936722) + (xy 102.632411 70.004575) (xy 102.390195 70.104904) (xy 102.390184 70.104909) (xy 102.163138 70.235996) + (xy 102.0503 70.322579) (xy 102.0503 70.32258) (xy 103.029178 71.301458) (xy 102.968777 71.326478) + (xy 102.862316 71.397612) (xy 102.771779 71.488149) (xy 102.700645 71.59461) (xy 102.675625 71.655012) + (xy 101.696747 70.676133) (xy 101.696746 70.676133) (xy 101.610165 70.788968) (xy 101.530274 70.927342) + (xy 101.479706 70.975557) (xy 101.411099 70.988779) (xy 101.346234 70.962811) (xy 101.305707 70.905896) + (xy 101.298898 70.863709) (xy 101.299882 70.788983) (xy 101.330091 68.49305) (xy 101.401329 63.079015) + (xy 101.42224 61.489777) (xy 101.428371 61.023814) (xy 101.428738 61.015776) (xy 101.447349 60.77784) + (xy 101.452392 60.713357) (xy 101.454683 60.697439) (xy 101.483215 60.562158) (xy 101.516453 60.404559) + (xy 101.520786 60.389073) (xy 101.619948 60.10665) (xy 101.62624 60.091873) (xy 101.761132 59.824648) + (xy 101.769281 59.810815) (xy 101.937624 59.563303) (xy 101.947504 59.550629) (xy 102.146461 59.326997) + (xy 102.157904 59.315705) (xy 102.384131 59.11971) (xy 102.396934 59.109995) (xy 102.64664 58.944923) + (xy 102.660583 58.936954) (xy 102.929572 58.805585) (xy 102.944413 58.799495) (xy 103.228125 58.704055) + (xy 103.243659 58.699929) (xy 103.537331 58.642016) (xy 103.553267 58.639935) (xy 103.851891 58.620527) + ) + ) + ) + (zone + (net 18) + (net_name "NO_3") + (layer "B.Cu") + (uuid "81a8695d-7486-4c28-b2bb-9ee1964596c5") + (hatch edge 0.5) + (priority 7) + (connect_pads + (clearance 0) + ) + (min_thickness 0.25) + (filled_areas_thickness no) + (fill yes + (thermal_gap 0.5) + (thermal_bridge_width 0.5) + (smoothing fillet) + (radius 3) + ) + (polygon + (pts + (xy 94.06 73.62) (xy 94.06 58.62) (xy 98.86 58.62) (xy 98.86 73.62) + ) + ) + (filled_polygon + (layer "B.Cu") + (pts + (xy 96.765171 58.640001) (xy 96.781227 58.642116) (xy 97.073193 58.700192) (xy 97.088859 58.70439) + (xy 97.293229 58.773763) (xy 97.370745 58.800077) (xy 97.385722 58.80628) (xy 97.6388 58.931084) + (xy 97.65271 58.937944) (xy 97.666758 58.946054) (xy 97.914273 59.111439) (xy 97.927137 59.12131) + (xy 98.150945 59.317585) (xy 98.162414 59.329054) (xy 98.358689 59.552862) (xy 98.368563 59.56573) + (xy 98.533945 59.813242) (xy 98.542055 59.827289) (xy 98.673716 60.09427) (xy 98.679923 60.109256) + (xy 98.775609 60.39114) (xy 98.779807 60.406806) (xy 98.837881 60.698758) (xy 98.839999 60.71484) + (xy 98.859735 61.015956) (xy 98.86 61.024066) (xy 98.86 70.652037) (xy 98.840315 70.719076) (xy 98.787511 70.764831) + (xy 98.718353 70.774775) (xy 98.654797 70.74575) (xy 98.637625 70.727524) (xy 98.573252 70.643633) + (xy 98.57325 70.643633) (xy 97.594374 71.62251) (xy 97.569355 71.56211) (xy 97.498221 71.455649) + (xy 97.407684 71.365112) (xy 97.301223 71.293978) (xy 97.24082 71.268957) (xy 98.219698 70.29008) + (xy 98.106857 70.203494) (xy 98.106849 70.203488) (xy 97.879815 70.072409) (xy 97.879804 70.072404) + (xy 97.637588 69.972075) (xy 97.384353 69.904222) (xy 97.384342 69.90422) (xy 97.124427 69.87) (xy 96.862238 69.87) + (xy 96.602323 69.90422) (xy 96.602312 69.904222) (xy 96.349077 69.972075) (xy 96.106861 70.072404) + (xy 96.10685 70.072409) (xy 95.879804 70.203496) (xy 95.766966 70.290079) (xy 95.766966 70.29008) + (xy 96.745844 71.268958) (xy 96.685443 71.293978) (xy 96.578982 71.365112) (xy 96.488445 71.455649) + (xy 96.417311 71.56211) (xy 96.392291 71.622511) (xy 95.413413 70.643633) (xy 95.413412 70.643633) + (xy 95.326829 70.756471) (xy 95.195742 70.983517) (xy 95.195737 70.983528) (xy 95.095408 71.225744) + (xy 95.027555 71.478979) (xy 95.027553 71.47899) (xy 94.993333 71.738905) (xy 94.993333 72.001094) + (xy 95.027553 72.261009) (xy 95.027555 72.26102) (xy 95.095408 72.514255) (xy 95.195737 72.756471) + (xy 95.195742 72.756482) (xy 95.326829 72.983528) (xy 95.432535 73.121288) (xy 95.435129 73.127998) + (xy 95.440424 73.13287) (xy 95.447559 73.160152) (xy 95.457729 73.186457) (xy 95.456283 73.193505) + (xy 95.458104 73.200466) (xy 95.449355 73.227278) (xy 95.44369 73.254902) (xy 95.438663 73.260049) + (xy 95.436432 73.26689) (xy 95.414578 73.284715) (xy 95.394876 73.304892) (xy 95.387863 73.306505) + (xy 95.382289 73.311052) (xy 95.354272 73.314232) (xy 95.326785 73.320555) (xy 95.318317 73.318313) + (xy 95.312865 73.318932) (xy 95.279314 73.307985) (xy 95.267286 73.302054) (xy 95.253242 73.293945) + (xy 95.00573 73.128563) (xy 94.992862 73.118689) (xy 94.769054 72.922414) (xy 94.757585 72.910945) + (xy 94.622124 72.756482) (xy 94.561307 72.687133) (xy 94.551436 72.674269) (xy 94.386054 72.426757) + (xy 94.377944 72.41271) (xy 94.371084 72.3988) (xy 94.24628 72.145722) (xy 94.240076 72.130743) + (xy 94.14439 71.848859) (xy 94.140192 71.833193) (xy 94.121437 71.738905) (xy 94.082116 71.541227) + (xy 94.080001 71.525171) (xy 94.060265 71.224043) (xy 94.06 71.215933) (xy 94.06 63.513565) (xy 94.079685 63.446526) + (xy 94.132489 63.400771) (xy 94.201647 63.390827) (xy 94.249097 63.408026) (xy 94.324209 63.454356) + (xy 94.324214 63.454358) (xy 94.490636 63.509505) (xy 94.490643 63.509506) (xy 94.593347 63.519999) + (xy 94.59336 63.52) (xy 95.543333 63.52) (xy 95.543333 62.220001) (xy 95.603735 62.245021) (xy 95.729314 62.27) + (xy 95.857352 62.27) (xy 95.982931 62.245021) (xy 96.043333 62.220001) (xy 96.043333 63.52) (xy 96.993306 63.52) + (xy 96.993318 63.519999) (xy 97.096022 63.509506) (xy 97.096029 63.509505) (xy 97.262451 63.454358) + (xy 97.262456 63.454356) (xy 97.411677 63.362315) (xy 97.535648 63.238344) (xy 97.627689 63.089123) + (xy 97.627691 63.089118) (xy 97.682838 62.922696) (xy 97.682839 62.922689) (xy 97.693332 62.819985) + (xy 97.693333 62.819972) (xy 97.693333 61.87) (xy 96.393334 61.87) (xy 96.418354 61.809598) (xy 96.443333 61.684019) + (xy 96.443333 61.555981) (xy 96.418354 61.430402) (xy 96.393334 61.37) (xy 97.693333 61.37) (xy 97.693333 60.420027) + (xy 97.693332 60.420014) (xy 97.682839 60.31731) (xy 97.682838 60.317303) (xy 97.627691 60.150881) + (xy 97.627689 60.150876) (xy 97.535648 60.001655) (xy 97.411677 59.877684) (xy 97.262456 59.785643) + (xy 97.262451 59.785641) (xy 97.096029 59.730494) (xy 97.096022 59.730493) (xy 96.993318 59.72) + (xy 96.043333 59.72) (xy 96.043333 61.019998) (xy 95.982931 60.994979) (xy 95.857352 60.97) (xy 95.729314 60.97) + (xy 95.603735 60.994979) (xy 95.543333 61.019998) (xy 95.543333 59.72) (xy 94.688409 59.72) (xy 94.670956 59.714875) + (xy 94.652767 59.714767) (xy 94.638128 59.705235) (xy 94.62137 59.700315) (xy 94.609459 59.686569) + (xy 94.594215 59.676644) (xy 94.587052 59.66071) (xy 94.575615 59.647511) (xy 94.573026 59.629509) + (xy 94.565568 59.612917) (xy 94.568156 59.595641) (xy 94.565671 59.578353) (xy 94.573227 59.561806) + (xy 94.575923 59.543819) (xy 94.594407 59.515429) (xy 94.594696 59.514797) (xy 94.595181 59.514241) + (xy 94.609662 59.497727) (xy 94.75759 59.329048) (xy 94.769048 59.31759) (xy 94.992873 59.121301) + (xy 95.005718 59.111444) (xy 95.253248 58.94605) (xy 95.267283 58.937947) (xy 95.534283 58.806277) + (xy 95.549248 58.800079) (xy 95.747116 58.732912) (xy 95.83114 58.70439) (xy 95.846802 58.700193) + (xy 96.138774 58.642115) (xy 96.154826 58.640001) (xy 96.451898 58.620531) (xy 96.468102 58.620531) + ) + ) + ) + (zone + (net 26) + (net_name "NC_6") + (layer "B.Cu") + (uuid "92c3a14c-0a79-4cf8-a4c8-950bc5969e20") + (hatch edge 0.5) + (priority 7) + (connect_pads + (clearance 0) + ) + (min_thickness 0.25) + (filled_areas_thickness no) + (fill yes + (thermal_gap 0.5) + (thermal_bridge_width 0.5) + (smoothing fillet) + (radius 3) + ) + (polygon + (pts + (xy 112.86 138.42) (xy 113.06 123.02) (xy 117.86 123.02) (xy 117.66 138.42) + ) + ) + (filled_polygon + (layer "B.Cu") + (pts + (xy 117.459351 124.159049) (xy 117.508829 124.202533) (xy 117.517326 124.215476) (xy 117.525375 124.229701) + (xy 117.653871 124.496422) (xy 117.659982 124.511592) (xy 117.752258 124.792898) (xy 117.756319 124.808739) + (xy 117.810772 125.099735) (xy 117.812714 125.115974) (xy 117.828616 125.415706) (xy 117.82878 125.423885) + (xy 117.691218 136.016183) (xy 117.690852 136.024222) (xy 117.667249 136.326619) (xy 117.66496 136.342541) + (xy 117.603238 136.635409) (xy 117.598906 136.650902) (xy 117.499793 136.933303) (xy 117.493493 136.948103) + (xy 117.358658 137.215299) (xy 117.350495 137.22916) (xy 117.182202 137.476656) (xy 117.172313 137.489344) + (xy 116.973392 137.712977) (xy 116.961944 137.724277) (xy 116.735763 137.920263) (xy 116.722948 137.929986) + (xy 116.473277 138.095058) (xy 116.459311 138.103041) (xy 116.190393 138.234392) (xy 116.175512 138.2405) + (xy 115.89184 138.335939) (xy 115.876292 138.340069) (xy 115.582654 138.397981) (xy 115.566704 138.400063) + (xy 115.268108 138.419472) (xy 115.251888 138.419463) (xy 114.956415 138.399937) (xy 114.940203 138.397785) + (xy 114.64993 138.339556) (xy 114.634143 138.335289) (xy 114.354065 138.239369) (xy 114.338977 138.233062) + (xy 114.073943 138.101112) (xy 114.059815 138.092873) (xy 113.818589 137.929986) (xy 113.814467 137.927202) + (xy 113.801548 137.917178) (xy 113.580128 137.720654) (xy 113.568639 137.709015) (xy 113.375006 137.485061) + (xy 113.365149 137.472011) (xy 113.202678 137.22453) (xy 113.194624 137.210298) (xy 113.066128 136.943577) + (xy 113.060017 136.928407) (xy 113.057028 136.919295) (xy 112.967741 136.647101) (xy 112.963681 136.631267) + (xy 112.963088 136.628096) (xy 112.970102 136.558582) (xy 113.013586 136.503893) (xy 113.079734 136.481395) + (xy 113.147545 136.49823) (xy 113.183347 136.529797) (xy 113.218067 136.575045) (xy 114.125625 135.667487) + (xy 114.150645 135.72789) (xy 114.221779 135.834351) (xy 114.312316 135.924888) (xy 114.418777 135.996022) + (xy 114.479178 136.021041) (xy 113.57162 136.928598) (xy 113.668817 137.00318) (xy 113.668825 137.003186) + (xy 113.884507 137.127711) (xy 113.884518 137.127716) (xy 114.114617 137.223026) (xy 114.355203 137.287491) + (xy 114.602133 137.32) (xy 114.851201 137.32) (xy 115.09813 137.287491) (xy 115.338716 137.223026) + (xy 115.568815 137.127716) (xy 115.568826 137.127711) (xy 115.784522 137.003178) (xy 115.881712 136.9286) + (xy 115.881712 136.928597) (xy 114.974155 136.021041) (xy 115.034557 135.996022) (xy 115.141018 135.924888) + (xy 115.231555 135.834351) (xy 115.302689 135.72789) (xy 115.327708 135.667489) (xy 116.235264 136.575045) + (xy 116.235267 136.575045) (xy 116.309845 136.477855) (xy 116.434378 136.262159) (xy 116.434383 136.262148) + (xy 116.529693 136.032049) (xy 116.594158 135.791463) (xy 116.626667 135.544533) (xy 116.626667 135.295466) + (xy 116.594158 135.048536) (xy 116.529693 134.80795) (xy 116.434383 134.577851) (xy 116.434378 134.57784) + (xy 116.309853 134.362158) (xy 116.309847 134.36215) (xy 116.235265 134.264953) (xy 115.327708 135.17251) + (xy 115.302689 135.11211) (xy 115.231555 135.005649) (xy 115.141018 134.915112) (xy 115.034557 134.843978) + (xy 114.974154 134.818957) (xy 115.881712 133.9114) (xy 115.784516 133.836819) (xy 115.784508 133.836813) + (xy 115.568826 133.712288) (xy 115.568815 133.712283) (xy 115.338716 133.616973) (xy 115.09813 133.552508) + (xy 114.851201 133.52) (xy 114.602133 133.52) (xy 114.355203 133.552508) (xy 114.114617 133.616973) + (xy 113.884518 133.712283) (xy 113.884514 133.712285) (xy 113.66881 133.836823) (xy 113.57162 133.911399) + (xy 113.57162 133.9114) (xy 114.479178 134.818958) (xy 114.418777 134.843978) (xy 114.312316 134.915112) + (xy 114.221779 135.005649) (xy 114.150645 135.11211) (xy 114.125625 135.172511) (xy 113.218067 134.264953) + (xy 113.218066 134.264953) (xy 113.143483 134.362152) (xy 113.141236 134.365517) (xy 113.141015 134.365369) + (xy 113.141014 134.365371) (xy 113.14099 134.365353) (xy 113.1398 134.364557) (xy 113.094304 134.407889) + (xy 113.02569 134.421073) (xy 112.96084 134.395068) (xy 112.920344 134.338131) (xy 112.913557 134.296036) + (xy 113.028782 125.42379) (xy 113.029145 125.415803) (xy 113.052751 125.113371) (xy 113.055039 125.097458) + (xy 113.060077 125.073553) (xy 113.0926 124.919232) (xy 113.125687 124.857694) (xy 113.186791 124.823812) + (xy 113.256514 124.828345) (xy 113.312718 124.869852) (xy 113.336874 124.928619) (xy 113.360887 125.111009) + (xy 113.360889 125.11102) (xy 113.428742 125.364255) (xy 113.529071 125.606471) (xy 113.529076 125.606482) + (xy 113.660155 125.833516) (xy 113.660161 125.833524) (xy 113.746747 125.946365) (xy 114.725625 124.967487) + (xy 114.750645 125.02789) (xy 114.821779 125.134351) (xy 114.912316 125.224888) (xy 115.018777 125.296022) + (xy 115.079178 125.321041) (xy 114.1003 126.299917) (xy 114.1003 126.299918) (xy 114.213142 126.386505) + (xy 114.21315 126.386511) (xy 114.440184 126.51759) (xy 114.440195 126.517595) (xy 114.682411 126.617924) + (xy 114.935646 126.685777) (xy 114.935657 126.685779) (xy 115.195572 126.719999) (xy 115.195587 126.72) + (xy 115.457747 126.72) (xy 115.457761 126.719999) (xy 115.717676 126.685779) (xy 115.717687 126.685777) + (xy 115.970922 126.617924) (xy 116.213138 126.517595) (xy 116.213149 126.51759) (xy 116.440183 126.386511) + (xy 116.440201 126.386499) (xy 116.553032 126.299919) (xy 116.553032 126.299917) (xy 115.574155 125.321041) + (xy 115.634557 125.296022) (xy 115.741018 125.224888) (xy 115.831555 125.134351) (xy 115.902689 125.02789) + (xy 115.927708 124.967488) (xy 116.906584 125.946365) (xy 116.906586 125.946365) (xy 116.993166 125.833534) + (xy 116.993178 125.833516) (xy 117.124257 125.606482) (xy 117.124262 125.606471) (xy 117.224591 125.364255) + (xy 117.292444 125.11102) (xy 117.292446 125.111009) (xy 117.326666 124.851094) (xy 117.326667 124.85108) + (xy 117.326667 124.588919) (xy 117.326666 124.588905) (xy 117.292446 124.32899) (xy 117.292443 124.328973) + (xy 117.285398 124.302681) (xy 117.287059 124.232832) (xy 117.326221 124.174968) (xy 117.390449 124.147463) + ) + ) + ) + (zone + (net 25) + (net_name "NO_6") + (layer "B.Cu") + (uuid "936d0887-ce0a-4311-af8c-3b6e25f9296b") + (hatch edge 0.5) + (priority 7) + (connect_pads + (clearance 0) + ) + (min_thickness 0.25) + (filled_areas_thickness no) + (fill yes + (thermal_gap 0.5) + (thermal_bridge_width 0.5) + (smoothing fillet) + (radius 3) + ) + (polygon + (pts + (xy 101.66 138.62) (xy 101.66 123.22) (xy 106.46 123.22) (xy 106.46 138.62) + ) + ) + (filled_polygon + (layer "B.Cu") + (pts + (xy 105.171622 123.497956) (xy 105.25271 123.537944) (xy 105.266758 123.546054) (xy 105.514273 123.711439) + (xy 105.527137 123.72131) (xy 105.750945 123.917585) (xy 105.762414 123.929054) (xy 105.958689 124.152862) + (xy 105.968563 124.16573) (xy 106.133945 124.413242) (xy 106.142055 124.427289) (xy 106.273716 124.69427) + (xy 106.279923 124.709256) (xy 106.375609 124.99114) (xy 106.379807 125.006806) (xy 106.437881 125.298758) + (xy 106.439999 125.31484) (xy 106.459735 125.615956) (xy 106.46 125.624066) (xy 106.46 133.526434) + (xy 106.440315 133.593473) (xy 106.387511 133.639228) (xy 106.318353 133.649172) (xy 106.270904 133.631973) + (xy 106.195794 133.585645) (xy 106.195785 133.585641) (xy 106.029363 133.530494) (xy 106.029356 133.530493) + (xy 105.926652 133.52) (xy 104.976667 133.52) (xy 104.976667 134.819998) (xy 104.916265 134.794979) + (xy 104.790686 134.77) (xy 104.662648 134.77) (xy 104.537069 134.794979) (xy 104.476667 134.819998) + (xy 104.476667 133.52) (xy 103.526681 133.52) (xy 103.423977 133.530493) (xy 103.42397 133.530494) + (xy 103.257548 133.585641) (xy 103.257543 133.585643) (xy 103.108322 133.677684) (xy 102.984351 133.801655) + (xy 102.89231 133.950876) (xy 102.892308 133.950881) (xy 102.837161 134.117303) (xy 102.83716 134.11731) + (xy 102.826667 134.220014) (xy 102.826667 135.17) (xy 104.126666 135.17) (xy 104.101646 135.230402) + (xy 104.076667 135.355981) (xy 104.076667 135.484019) (xy 104.101646 135.609598) (xy 104.126666 135.67) + (xy 102.826667 135.67) (xy 102.826667 136.619985) (xy 102.83716 136.722689) (xy 102.837161 136.722696) + (xy 102.892308 136.889118) (xy 102.89231 136.889123) (xy 102.984351 137.038344) (xy 103.108322 137.162315) + (xy 103.257543 137.254356) (xy 103.257548 137.254358) (xy 103.42397 137.309505) (xy 103.423977 137.309506) + (xy 103.526681 137.319999) (xy 103.526694 137.32) (xy 104.476667 137.32) (xy 104.476667 136.020001) + (xy 104.537069 136.045021) (xy 104.662648 136.07) (xy 104.790686 136.07) (xy 104.916265 136.045021) + (xy 104.976667 136.020001) (xy 104.976667 137.32) (xy 105.92664 137.32) (xy 105.926649 137.319999) + (xy 105.963641 137.31622) (xy 105.979787 137.319221) (xy 105.99608 137.317175) (xy 106.013427 137.325474) + (xy 106.032334 137.328989) (xy 106.044292 137.340241) (xy 106.059107 137.347329) (xy 106.069214 137.363691) + (xy 106.083219 137.376869) (xy 106.087195 137.392799) (xy 106.095827 137.406772) (xy 106.095483 137.426001) + (xy 106.100141 137.444658) (xy 106.094861 137.460859) (xy 106.09458 137.476631) (xy 106.079347 137.508469) + (xy 105.968563 137.674269) (xy 105.958689 137.687137) (xy 105.762414 137.910945) (xy 105.750945 137.922414) + (xy 105.527137 138.118689) (xy 105.514269 138.128563) (xy 105.266757 138.293945) (xy 105.25271 138.302055) + (xy 104.985729 138.433716) (xy 104.970743 138.439923) (xy 104.688859 138.535609) (xy 104.673193 138.539807) + (xy 104.381241 138.597881) (xy 104.365159 138.599999) (xy 104.06811 138.619468) (xy 104.05189 138.619468) + (xy 103.75484 138.599999) (xy 103.738759 138.597881) (xy 103.695207 138.589218) (xy 103.446806 138.539807) + (xy 103.43114 138.535609) (xy 103.149256 138.439923) (xy 103.13427 138.433716) (xy 102.867289 138.302055) + (xy 102.853242 138.293945) (xy 102.60573 138.128563) (xy 102.592862 138.118689) (xy 102.369054 137.922414) + (xy 102.357585 137.910945) (xy 102.16131 137.687137) (xy 102.151436 137.674269) (xy 101.986054 137.426757) + (xy 101.977944 137.41271) (xy 101.899852 137.254356) (xy 101.84628 137.145722) (xy 101.840076 137.130743) + (xy 101.74439 136.848859) (xy 101.740192 136.833193) (xy 101.682116 136.541227) (xy 101.680001 136.525171) + (xy 101.660265 136.224043) (xy 101.66 136.215933) (xy 101.66 126.065607) (xy 101.66 125.949893) + (xy 101.676706 125.916519) (xy 101.67978 125.913333) (xy 102.675625 124.917487) (xy 102.700645 124.97789) + (xy 102.771779 125.084351) (xy 102.862316 125.174888) (xy 102.968777 125.246022) (xy 103.029178 125.271041) + (xy 102.0503 126.249917) (xy 102.0503 126.249918) (xy 102.163142 126.336505) (xy 102.16315 126.336511) + (xy 102.390184 126.46759) (xy 102.390195 126.467595) (xy 102.632411 126.567924) (xy 102.885646 126.635777) + (xy 102.885657 126.635779) (xy 103.145572 126.669999) (xy 103.145587 126.67) (xy 103.407747 126.67) + (xy 103.407761 126.669999) (xy 103.667676 126.635779) (xy 103.667687 126.635777) (xy 103.920922 126.567924) + (xy 104.163138 126.467595) (xy 104.163149 126.46759) (xy 104.390183 126.336511) (xy 104.390201 126.336499) + (xy 104.503032 126.249919) (xy 104.503032 126.249917) (xy 103.524155 125.271041) (xy 103.584557 125.246022) + (xy 103.691018 125.174888) (xy 103.781555 125.084351) (xy 103.852689 124.97789) (xy 103.877708 124.917488) + (xy 104.856584 125.896365) (xy 104.856586 125.896365) (xy 104.943166 125.783534) (xy 104.943178 125.783516) + (xy 105.074257 125.556482) (xy 105.074262 125.556471) (xy 105.174591 125.314255) (xy 105.242444 125.06102) + (xy 105.242446 125.061009) (xy 105.276666 124.801094) (xy 105.276667 124.80108) (xy 105.276667 124.538919) + (xy 105.276666 124.538905) (xy 105.242446 124.27899) (xy 105.242444 124.278979) (xy 105.174591 124.025744) + (xy 105.074262 123.783528) (xy 105.07426 123.783524) (xy 105.009391 123.671169) (xy 104.992918 123.603269) + (xy 105.01577 123.537242) (xy 105.070691 123.494051) (xy 105.140244 123.487409) + ) + ) + ) + (zone + (net 17) + (net_name "NC_3") + (layer "B.Cu") + (uuid "98e9f358-b36f-473c-89db-3791bfa138e9") + (hatch edge 0.5) + (priority 7) + (connect_pads + (clearance 0) + ) + (min_thickness 0.25) + (filled_areas_thickness no) + (fill yes + (thermal_gap 0.5) + (thermal_bridge_width 0.5) + (smoothing fillet) + (radius 3) + ) + (polygon + (pts + (xy 82.66 73.62) (xy 82.66 58.62) (xy 87.46 58.62) (xy 87.46 73.62) + ) + ) + (filled_polygon + (layer "B.Cu") + (pts + (xy 85.365171 58.640001) (xy 85.381227 58.642116) (xy 85.673193 58.700192) (xy 85.688859 58.70439) + (xy 85.893229 58.773763) (xy 85.970745 58.800077) (xy 85.985722 58.80628) (xy 86.2388 58.931084) + (xy 86.25271 58.937944) (xy 86.266758 58.946054) (xy 86.514273 59.111439) (xy 86.527137 59.12131) + (xy 86.750945 59.317585) (xy 86.762414 59.329054) (xy 86.958689 59.552862) (xy 86.968563 59.56573) + (xy 87.133945 59.813242) (xy 87.142055 59.827289) (xy 87.273716 60.09427) (xy 87.279763 60.108787) + (xy 87.279858 60.109064) (xy 87.351536 60.32022) (xy 87.352372 60.338523) (xy 87.358119 60.359223) + (xy 87.353934 60.372731) (xy 87.35458 60.386859) (xy 87.343802 60.405441) (xy 87.337446 60.425964) + (xy 87.321814 60.44507) (xy 86.394374 61.37251) (xy 86.369355 61.31211) (xy 86.298221 61.205649) + (xy 86.207684 61.115112) (xy 86.101223 61.043978) (xy 86.04082 61.018957) (xy 86.948378 60.1114) + (xy 86.851182 60.036819) (xy 86.851174 60.036813) (xy 86.635492 59.912288) (xy 86.635481 59.912283) + (xy 86.405382 59.816973) (xy 86.164796 59.752508) (xy 85.917867 59.72) (xy 85.668799 59.72) (xy 85.421869 59.752508) + (xy 85.181283 59.816973) (xy 84.951184 59.912283) (xy 84.95118 59.912285) (xy 84.735476 60.036823) + (xy 84.638286 60.111399) (xy 84.638286 60.1114) (xy 85.545844 61.018958) (xy 85.485443 61.043978) + (xy 85.378982 61.115112) (xy 85.288445 61.205649) (xy 85.217311 61.31211) (xy 85.192291 61.372511) + (xy 84.284733 60.464953) (xy 84.284732 60.464953) (xy 84.210156 60.562143) (xy 84.085618 60.777847) + (xy 84.085616 60.777851) (xy 83.990306 61.00795) (xy 83.925841 61.248536) (xy 83.893333 61.495466) + (xy 83.893333 61.744533) (xy 83.925841 61.991463) (xy 83.990306 62.232049) (xy 84.085616 62.462148) + (xy 84.085621 62.462159) (xy 84.210146 62.677841) (xy 84.210152 62.677849) (xy 84.284733 62.775045) + (xy 85.192291 61.867487) (xy 85.217311 61.92789) (xy 85.288445 62.034351) (xy 85.378982 62.124888) + (xy 85.485443 62.196022) (xy 85.545844 62.221041) (xy 84.638286 63.128598) (xy 84.735483 63.20318) + (xy 84.735491 63.203186) (xy 84.951173 63.327711) (xy 84.951184 63.327716) (xy 85.181283 63.423026) + (xy 85.421869 63.487491) (xy 85.668799 63.52) (xy 85.917867 63.52) (xy 86.164796 63.487491) (xy 86.405382 63.423026) + (xy 86.635481 63.327716) (xy 86.635492 63.327711) (xy 86.851188 63.203178) (xy 86.948378 63.1286) + (xy 86.948378 63.128597) (xy 86.040821 62.221041) (xy 86.101223 62.196022) (xy 86.207684 62.124888) + (xy 86.298221 62.034351) (xy 86.369355 61.92789) (xy 86.394374 61.867489) (xy 87.30193 62.775045) + (xy 87.32789 62.773344) (xy 87.396073 62.788602) (xy 87.445184 62.838301) (xy 87.46 62.897079) (xy 87.46 71.215933) + (xy 87.459735 71.224043) (xy 87.439999 71.525159) (xy 87.437881 71.541241) (xy 87.379807 71.833193) + (xy 87.375609 71.848859) (xy 87.279923 72.130743) (xy 87.273716 72.145729) (xy 87.142055 72.41271) + (xy 87.133946 72.426756) (xy 87.079345 72.508473) (xy 87.025733 72.553279) (xy 86.956408 72.561986) + (xy 86.89338 72.531832) (xy 86.85666 72.472389) (xy 86.856467 72.40749) (xy 86.90911 72.21102) (xy 86.909112 72.211009) + (xy 86.943332 71.951094) (xy 86.943333 71.95108) (xy 86.943333 71.688919) (xy 86.943332 71.688905) + (xy 86.909112 71.42899) (xy 86.90911 71.428979) (xy 86.841257 71.175744) (xy 86.740928 70.933528) + (xy 86.740923 70.933517) (xy 86.609844 70.706483) (xy 86.609838 70.706475) (xy 86.523251 70.593633) + (xy 86.52325 70.593633) (xy 85.544374 71.57251) (xy 85.519355 71.51211) (xy 85.448221 71.405649) + (xy 85.357684 71.315112) (xy 85.251223 71.243978) (xy 85.19082 71.218957) (xy 86.169698 70.24008) + (xy 86.056857 70.153494) (xy 86.056849 70.153488) (xy 85.829815 70.022409) (xy 85.829804 70.022404) + (xy 85.587588 69.922075) (xy 85.334353 69.854222) (xy 85.334342 69.85422) (xy 85.074427 69.82) (xy 84.812238 69.82) + (xy 84.552323 69.85422) (xy 84.552312 69.854222) (xy 84.299077 69.922075) (xy 84.056861 70.022404) + (xy 84.05685 70.022409) (xy 83.829804 70.153496) (xy 83.716966 70.240079) (xy 83.716966 70.24008) + (xy 84.695844 71.218958) (xy 84.635443 71.243978) (xy 84.528982 71.315112) (xy 84.438445 71.405649) + (xy 84.367311 71.51211) (xy 84.342291 71.572511) (xy 83.363413 70.593633) (xy 83.363412 70.593633) + (xy 83.276829 70.706471) (xy 83.145742 70.933517) (xy 83.145737 70.933528) (xy 83.045408 71.175744) + (xy 82.977555 71.428979) (xy 82.977553 71.42899) (xy 82.949031 71.645629) (xy 82.942844 71.659612) + (xy 82.941482 71.674843) (xy 82.928996 71.690914) (xy 82.920764 71.709525) (xy 82.907999 71.717944) + (xy 82.898619 71.73002) (xy 82.879428 71.736789) (xy 82.86244 71.747996) (xy 82.847148 71.748177) + (xy 82.832729 71.753265) (xy 82.812923 71.748584) (xy 82.792575 71.748827) (xy 82.779613 71.740713) + (xy 82.764732 71.737197) (xy 82.750601 71.722552) (xy 82.733352 71.711755) (xy 82.726101 71.697161) + (xy 82.716217 71.686918) (xy 82.704476 71.653638) (xy 82.682116 71.541227) (xy 82.680001 71.525171) + (xy 82.660265 71.224043) (xy 82.66 71.215933) (xy 82.66 61.024066) (xy 82.660265 61.015956) (xy 82.66079 61.00795) + (xy 82.680001 60.714826) (xy 82.682115 60.698774) (xy 82.740193 60.406802) (xy 82.74439 60.39114) + (xy 82.769536 60.317062) (xy 82.840082 60.109239) (xy 82.846277 60.094283) (xy 82.977947 59.827283) + (xy 82.98605 59.813248) (xy 83.151444 59.565718) (xy 83.161301 59.552873) (xy 83.35759 59.329048) + (xy 83.369048 59.31759) (xy 83.592873 59.121301) (xy 83.605718 59.111444) (xy 83.853248 58.94605) + (xy 83.867283 58.937947) (xy 84.134283 58.806277) (xy 84.149248 58.800079) (xy 84.347116 58.732912) + (xy 84.43114 58.70439) (xy 84.446802 58.700193) (xy 84.738774 58.642115) (xy 84.754826 58.640001) + (xy 85.051898 58.620531) (xy 85.068102 58.620531) + ) + ) + ) + (zone + (net 33) + (net_name "NO_8") + (layer "B.Cu") + (uuid "ab55418e-4de3-4bf8-b9af-f7ef16e73a5b") + (hatch edge 0.5) + (priority 7) + (connect_pads + (clearance 0) + ) + (min_thickness 0.25) + (filled_areas_thickness no) + (fill yes + (thermal_gap 0.5) + (thermal_bridge_width 0.5) + (smoothing fillet) + (radius 3) + ) + (polygon + (pts + (xy 65.06 138.22) (xy 65.06 123.02) (xy 69.86 123.02) (xy 69.86 138.22) + ) + ) + (filled_polygon + (layer "B.Cu") + (pts + (xy 68.260595 123.162686) (xy 68.370751 123.200079) (xy 68.385722 123.20628) (xy 68.556347 123.290423) + (xy 68.65271 123.337944) (xy 68.666758 123.346054) (xy 68.914273 123.511439) (xy 68.927137 123.52131) + (xy 69.150945 123.717585) (xy 69.162414 123.729054) (xy 69.358689 123.952862) (xy 69.368563 123.96573) + (xy 69.533945 124.213242) (xy 69.542055 124.227289) (xy 69.673716 124.49427) (xy 69.679923 124.509256) + (xy 69.775609 124.79114) (xy 69.779807 124.806806) (xy 69.837881 125.098758) (xy 69.839999 125.11484) + (xy 69.859735 125.415956) (xy 69.86 125.424066) (xy 69.86 133.567555) (xy 69.840315 133.634594) + (xy 69.787511 133.680349) (xy 69.718353 133.690293) (xy 69.670903 133.673094) (xy 69.529123 133.585643) + (xy 69.529118 133.585641) (xy 69.362696 133.530494) (xy 69.362689 133.530493) (xy 69.259985 133.52) + (xy 68.31 133.52) (xy 68.31 134.819998) (xy 68.249598 134.794979) (xy 68.124019 134.77) (xy 67.995981 134.77) + (xy 67.870402 134.794979) (xy 67.81 134.819998) (xy 67.81 133.52) (xy 66.860014 133.52) (xy 66.75731 133.530493) + (xy 66.757303 133.530494) (xy 66.590881 133.585641) (xy 66.590876 133.585643) (xy 66.441655 133.677684) + (xy 66.317684 133.801655) (xy 66.225643 133.950876) (xy 66.225641 133.950881) (xy 66.170494 134.117303) + (xy 66.170493 134.11731) (xy 66.16 134.220014) (xy 66.16 135.17) (xy 67.459999 135.17) (xy 67.434979 135.230402) + (xy 67.41 135.355981) (xy 67.41 135.484019) (xy 67.434979 135.609598) (xy 67.459999 135.67) (xy 66.16 135.67) + (xy 66.16 136.619985) (xy 66.170493 136.722689) (xy 66.170494 136.722696) (xy 66.225641 136.889118) + (xy 66.225643 136.889123) (xy 66.317684 137.038344) (xy 66.441655 137.162315) (xy 66.590876 137.254356) + (xy 66.590881 137.254358) (xy 66.757303 137.309505) (xy 66.75731 137.309506) (xy 66.860014 137.319999) + (xy 66.860027 137.32) (xy 67.81 137.32) (xy 67.81 136.020001) (xy 67.870402 136.045021) (xy 67.995981 136.07) + (xy 68.124019 136.07) (xy 68.249598 136.045021) (xy 68.31 136.020001) (xy 68.31 137.32) (xy 69.052295 137.32) + (xy 69.119334 137.339685) (xy 69.165089 137.392489) (xy 69.175033 137.461647) (xy 69.146008 137.525203) + (xy 69.134054 137.537228) (xy 68.927137 137.718689) (xy 68.914269 137.728563) (xy 68.666757 137.893945) + (xy 68.65271 137.902055) (xy 68.385729 138.033716) (xy 68.370743 138.039923) (xy 68.088859 138.135609) + (xy 68.073193 138.139807) (xy 67.781241 138.197881) (xy 67.765159 138.199999) (xy 67.46811 138.219468) + (xy 67.45189 138.219468) (xy 67.15484 138.199999) (xy 67.138759 138.197881) (xy 67.095207 138.189218) + (xy 66.846806 138.139807) (xy 66.83114 138.135609) (xy 66.549256 138.039923) (xy 66.53427 138.033716) + (xy 66.267289 137.902055) (xy 66.253242 137.893945) (xy 66.00573 137.728563) (xy 65.992862 137.718689) + (xy 65.769054 137.522414) (xy 65.757585 137.510945) (xy 65.59013 137.32) (xy 65.561307 137.287133) + (xy 65.551436 137.274269) (xy 65.386054 137.026757) (xy 65.377944 137.01271) (xy 65.371084 136.9988) + (xy 65.24628 136.745722) (xy 65.240076 136.730743) (xy 65.237344 136.722696) (xy 65.202479 136.619985) + (xy 65.14439 136.448859) (xy 65.140192 136.433193) (xy 65.082116 136.141227) (xy 65.080001 136.125171) + (xy 65.060265 135.824043) (xy 65.06 135.815933) (xy 65.06 126.132274) (xy 65.06 125.866446) (xy 66.008958 124.917487) + (xy 66.033978 124.97789) (xy 66.105112 125.084351) (xy 66.195649 125.174888) (xy 66.30211 125.246022) + (xy 66.362511 125.271041) (xy 65.383633 126.249917) (xy 65.383633 126.249918) (xy 65.496475 126.336505) + (xy 65.496483 126.336511) (xy 65.723517 126.46759) (xy 65.723528 126.467595) (xy 65.965744 126.567924) + (xy 66.218979 126.635777) (xy 66.21899 126.635779) (xy 66.478905 126.669999) (xy 66.47892 126.67) + (xy 66.74108 126.67) (xy 66.741094 126.669999) (xy 67.001009 126.635779) (xy 67.00102 126.635777) + (xy 67.254255 126.567924) (xy 67.496471 126.467595) (xy 67.496482 126.46759) (xy 67.723516 126.336511) + (xy 67.723534 126.336499) (xy 67.836365 126.249919) (xy 67.836365 126.249917) (xy 66.857488 125.271041) + (xy 66.91789 125.246022) (xy 67.024351 125.174888) (xy 67.114888 125.084351) (xy 67.186022 124.97789) + (xy 67.211041 124.917488) (xy 68.189917 125.896365) (xy 68.189919 125.896365) (xy 68.276499 125.783534) + (xy 68.276511 125.783516) (xy 68.40759 125.556482) (xy 68.407595 125.556471) (xy 68.507924 125.314255) + (xy 68.575777 125.06102) (xy 68.575779 125.061009) (xy 68.609999 124.801094) (xy 68.61 124.80108) + (xy 68.61 124.538919) (xy 68.609999 124.538905) (xy 68.575779 124.27899) (xy 68.575777 124.278979) + (xy 68.507924 124.025744) (xy 68.407595 123.783528) (xy 68.40759 123.783517) (xy 68.276503 123.556471) + (xy 68.122365 123.355592) (xy 68.097171 123.290423) (xy 68.11121 123.221978) (xy 68.160024 123.171988) + (xy 68.228115 123.156325) + ) + ) + ) + (zone + (net 28) + (net_name "NO_7") + (layer "B.Cu") + (uuid "b30d5f41-54a6-4bdb-89e9-c710a9468a22") + (hatch edge 0.5) + (priority 7) + (connect_pads + (clearance 0) + ) + (min_thickness 0.25) + (filled_areas_thickness no) + (fill yes + (thermal_gap 0.5) + (thermal_bridge_width 0.5) + (smoothing fillet) + (radius 3) + ) + (polygon + (pts + (xy 83.26 138.22) (xy 83.26 123.02) (xy 88.06 123.02) (xy 88.06 138.22) + ) + ) + (filled_polygon + (layer "B.Cu") + (pts + (xy 86.607466 123.217003) (xy 86.85271 123.337944) (xy 86.866758 123.346054) (xy 87.114273 123.511439) + (xy 87.127137 123.52131) (xy 87.350945 123.717585) (xy 87.362414 123.729054) (xy 87.558689 123.952862) + (xy 87.568563 123.96573) (xy 87.733945 124.213242) (xy 87.742055 124.227289) (xy 87.873716 124.49427) + (xy 87.879923 124.509256) (xy 87.975609 124.79114) (xy 87.979807 124.806806) (xy 88.037881 125.098758) + (xy 88.039999 125.11484) (xy 88.059735 125.415956) (xy 88.06 125.424066) (xy 88.06 133.535314) (xy 88.040315 133.602353) + (xy 87.987511 133.648108) (xy 87.918353 133.658052) (xy 87.870908 133.640856) (xy 87.862459 133.635645) + (xy 87.862451 133.635641) (xy 87.696029 133.580494) (xy 87.696022 133.580493) (xy 87.593318 133.57) + (xy 86.643333 133.57) (xy 86.643333 134.869998) (xy 86.582931 134.844979) (xy 86.457352 134.82) + (xy 86.329314 134.82) (xy 86.203735 134.844979) (xy 86.143333 134.869998) (xy 86.143333 133.57) + (xy 85.193347 133.57) (xy 85.090643 133.580493) (xy 85.090636 133.580494) (xy 84.924214 133.635641) + (xy 84.924209 133.635643) (xy 84.774988 133.727684) (xy 84.651017 133.851655) (xy 84.558976 134.000876) + (xy 84.558974 134.000881) (xy 84.503827 134.167303) (xy 84.503826 134.16731) (xy 84.493333 134.270014) + (xy 84.493333 135.22) (xy 85.793332 135.22) (xy 85.768312 135.280402) (xy 85.743333 135.405981) + (xy 85.743333 135.534019) (xy 85.768312 135.659598) (xy 85.793332 135.72) (xy 84.493333 135.72) + (xy 84.493333 136.669985) (xy 84.503826 136.772689) (xy 84.503827 136.772696) (xy 84.558974 136.939118) + (xy 84.558976 136.939123) (xy 84.651017 137.088344) (xy 84.774988 137.212315) (xy 84.924209 137.304356) + (xy 84.924214 137.304358) (xy 85.090636 137.359505) (xy 85.090643 137.359506) (xy 85.193347 137.369999) + (xy 85.19336 137.37) (xy 86.143333 137.37) (xy 86.143333 136.070001) (xy 86.203735 136.095021) (xy 86.329314 136.12) + (xy 86.457352 136.12) (xy 86.582931 136.095021) (xy 86.643333 136.070001) (xy 86.643333 137.37) + (xy 87.195281 137.37) (xy 87.220291 137.377343) (xy 87.246121 137.380901) (xy 87.25328 137.38703) + (xy 87.26232 137.389685) (xy 87.279387 137.409382) (xy 87.299196 137.426341) (xy 87.301905 137.435368) + (xy 87.308075 137.442489) (xy 87.311784 137.468289) (xy 87.319279 137.493262) (xy 87.316677 137.502319) + (xy 87.318019 137.511647) (xy 87.307188 137.535362) (xy 87.299993 137.560418) (xy 87.29089 137.571049) + (xy 87.288994 137.575203) (xy 87.27704 137.587228) (xy 87.127137 137.718689) (xy 87.114269 137.728563) + (xy 86.866757 137.893945) (xy 86.85271 137.902055) (xy 86.585729 138.033716) (xy 86.570743 138.039923) + (xy 86.288859 138.135609) (xy 86.273193 138.139807) (xy 85.981241 138.197881) (xy 85.965159 138.199999) + (xy 85.66811 138.219468) (xy 85.65189 138.219468) (xy 85.35484 138.199999) (xy 85.338759 138.197881) + (xy 85.295207 138.189218) (xy 85.046806 138.139807) (xy 85.03114 138.135609) (xy 84.749256 138.039923) + (xy 84.73427 138.033716) (xy 84.467289 137.902055) (xy 84.453242 137.893945) (xy 84.20573 137.728563) + (xy 84.192862 137.718689) (xy 83.969054 137.522414) (xy 83.957585 137.510945) (xy 83.868516 137.409382) + (xy 83.761307 137.287133) (xy 83.751436 137.274269) (xy 83.586054 137.026757) (xy 83.577944 137.01271) + (xy 83.459582 136.772696) (xy 83.44628 136.745722) (xy 83.440076 136.730743) (xy 83.34439 136.448859) + (xy 83.340192 136.433193) (xy 83.282116 136.141227) (xy 83.280001 136.125171) (xy 83.260265 135.824043) + (xy 83.26 135.815933) (xy 83.26 126.071981) (xy 83.279685 126.004942) (xy 83.332489 125.959187) + (xy 83.35466 125.955118) (xy 84.342291 124.967487) (xy 84.367311 125.02789) (xy 84.438445 125.134351) + (xy 84.528982 125.224888) (xy 84.635443 125.296022) (xy 84.695844 125.321041) (xy 83.716966 126.299917) + (xy 83.716966 126.299918) (xy 83.829808 126.386505) (xy 83.829816 126.386511) (xy 84.05685 126.51759) + (xy 84.056861 126.517595) (xy 84.299077 126.617924) (xy 84.552312 126.685777) (xy 84.552323 126.685779) + (xy 84.812238 126.719999) (xy 84.812253 126.72) (xy 85.074413 126.72) (xy 85.074427 126.719999) + (xy 85.334342 126.685779) (xy 85.334353 126.685777) (xy 85.587588 126.617924) (xy 85.829804 126.517595) + (xy 85.829815 126.51759) (xy 86.056849 126.386511) (xy 86.056867 126.386499) (xy 86.169698 126.299919) + (xy 86.169698 126.299917) (xy 85.190821 125.321041) (xy 85.251223 125.296022) (xy 85.357684 125.224888) + (xy 85.448221 125.134351) (xy 85.519355 125.02789) (xy 85.544374 124.967488) (xy 86.52325 125.946365) + (xy 86.523252 125.946365) (xy 86.609832 125.833534) (xy 86.609844 125.833516) (xy 86.740923 125.606482) + (xy 86.740928 125.606471) (xy 86.841257 125.364255) (xy 86.90911 125.11102) (xy 86.909112 125.111009) + (xy 86.943332 124.851094) (xy 86.943333 124.85108) (xy 86.943333 124.588919) (xy 86.943332 124.588905) + (xy 86.909112 124.32899) (xy 86.90911 124.328979) (xy 86.841257 124.075744) (xy 86.740928 123.833528) + (xy 86.740923 123.833517) (xy 86.609836 123.606471) (xy 86.454246 123.403701) (xy 86.429052 123.338532) + (xy 86.44309 123.270087) (xy 86.491904 123.220098) (xy 86.559996 123.204434) + ) + ) + ) + (zone + (net 20) + (net_name "NC_4") + (layer "B.Cu") + (uuid "cbed8b92-39e8-48c8-b9b9-0a585e7b4c03") + (hatch edge 0.5) + (priority 7) + (connect_pads + (clearance 0) + ) + (min_thickness 0.25) + (filled_areas_thickness no) + (fill yes + (thermal_gap 0.5) + (thermal_bridge_width 0.5) + (smoothing fillet) + (radius 3) + ) + (polygon + (pts + (xy 64.26 73.62) (xy 64.26 58.62) (xy 69.06 58.62) (xy 69.06 73.62) + ) + ) + (filled_polygon + (layer "B.Cu") + (pts + (xy 66.965171 58.640001) (xy 66.981227 58.642116) (xy 67.273193 58.700192) (xy 67.288859 58.70439) + (xy 67.493229 58.773763) (xy 67.570745 58.800077) (xy 67.585722 58.80628) (xy 67.8388 58.931084) + (xy 67.85271 58.937944) (xy 67.866758 58.946054) (xy 68.114273 59.111439) (xy 68.127137 59.12131) + (xy 68.350945 59.317585) (xy 68.362414 59.329054) (xy 68.558378 59.552508) (xy 68.558689 59.552862) + (xy 68.568563 59.565731) (xy 68.599857 59.612566) (xy 68.620735 59.679243) (xy 68.60225 59.746623) + (xy 68.550271 59.793313) (xy 68.481301 59.804489) (xy 68.434755 59.788843) (xy 68.302159 59.712288) + (xy 68.302148 59.712283) (xy 68.072049 59.616973) (xy 67.831463 59.552508) (xy 67.584534 59.52) + (xy 67.335466 59.52) (xy 67.088536 59.552508) (xy 66.84795 59.616973) (xy 66.617851 59.712283) (xy 66.617847 59.712285) + (xy 66.402143 59.836823) (xy 66.304953 59.911399) (xy 66.304953 59.9114) (xy 67.212511 60.818958) + (xy 67.15211 60.843978) (xy 67.045649 60.915112) (xy 66.955112 61.005649) (xy 66.883978 61.11211) + (xy 66.858958 61.172511) (xy 65.9514 60.264953) (xy 65.951399 60.264953) (xy 65.876823 60.362143) + (xy 65.752285 60.577847) (xy 65.752283 60.577851) (xy 65.656973 60.80795) (xy 65.592508 61.048536) + (xy 65.56 61.295466) (xy 65.56 61.544533) (xy 65.592508 61.791463) (xy 65.656973 62.032049) (xy 65.752283 62.262148) + (xy 65.752288 62.262159) (xy 65.876813 62.477841) (xy 65.876819 62.477849) (xy 65.9514 62.575045) + (xy 66.858958 61.667487) (xy 66.883978 61.72789) (xy 66.955112 61.834351) (xy 67.045649 61.924888) + (xy 67.15211 61.996022) (xy 67.212511 62.021041) (xy 66.304953 62.928598) (xy 66.40215 63.00318) + (xy 66.402158 63.003186) (xy 66.61784 63.127711) (xy 66.617851 63.127716) (xy 66.84795 63.223026) + (xy 67.088536 63.287491) (xy 67.335466 63.32) (xy 67.584534 63.32) (xy 67.831463 63.287491) (xy 68.072049 63.223026) + (xy 68.302148 63.127716) (xy 68.302159 63.127711) (xy 68.517855 63.003178) (xy 68.615045 62.9286) + (xy 68.615045 62.928597) (xy 67.707488 62.021041) (xy 67.76789 61.996022) (xy 67.874351 61.924888) + (xy 67.964888 61.834351) (xy 68.036022 61.72789) (xy 68.061041 61.667488) (xy 68.983769 62.590217) + (xy 68.996069 62.592969) (xy 69.045182 62.642666) (xy 69.06 62.701448) (xy 69.06 71.215933) (xy 69.059735 71.224043) + (xy 69.039999 71.525159) (xy 69.037881 71.541241) (xy 68.979807 71.833193) (xy 68.975609 71.848859) + (xy 68.879923 72.130743) (xy 68.873716 72.145728) (xy 68.845212 72.203529) (xy 68.797907 72.254949) + (xy 68.730312 72.272631) (xy 68.663888 72.250961) (xy 68.619724 72.19682) (xy 68.61 72.148686) (xy 68.61 71.888919) + (xy 68.609999 71.888905) (xy 68.575779 71.62899) (xy 68.575777 71.628979) (xy 68.507924 71.375744) + (xy 68.407595 71.133528) (xy 68.40759 71.133517) (xy 68.276511 70.906483) (xy 68.276505 70.906475) + (xy 68.189918 70.793633) (xy 68.189917 70.793633) (xy 67.211041 71.77251) (xy 67.186022 71.71211) + (xy 67.114888 71.605649) (xy 67.024351 71.515112) (xy 66.91789 71.443978) (xy 66.857487 71.418957) + (xy 67.836365 70.44008) (xy 67.723524 70.353494) (xy 67.723516 70.353488) (xy 67.496482 70.222409) + (xy 67.496471 70.222404) (xy 67.254255 70.122075) (xy 67.00102 70.054222) (xy 67.001009 70.05422) + (xy 66.741094 70.02) (xy 66.478905 70.02) (xy 66.21899 70.05422) (xy 66.218979 70.054222) (xy 65.965744 70.122075) + (xy 65.723528 70.222404) (xy 65.723517 70.222409) (xy 65.496471 70.353496) (xy 65.383633 70.440079) + (xy 65.383633 70.44008) (xy 66.362511 71.418958) (xy 66.30211 71.443978) (xy 66.195649 71.515112) + (xy 66.105112 71.605649) (xy 66.033978 71.71211) (xy 66.008958 71.772511) (xy 65.03008 70.793633) + (xy 65.030079 70.793633) (xy 64.943496 70.906471) (xy 64.812409 71.133517) (xy 64.812404 71.133528) + (xy 64.712075 71.375744) (xy 64.644222 71.628979) (xy 64.64422 71.62899) (xy 64.609999 71.888919) + (xy 64.609986 71.889119) (xy 64.609965 71.889175) (xy 64.60947 71.892938) (xy 64.608628 71.892827) + (xy 64.606111 71.899698) (xy 64.606581 71.910959) (xy 64.59431 71.931921) (xy 64.585959 71.954728) + (xy 64.576977 71.961534) (xy 64.571286 71.971259) (xy 64.549631 71.98226) (xy 64.530275 71.99693) + (xy 64.519041 71.9978) (xy 64.508994 72.002905) (xy 64.484829 72.000452) (xy 64.460614 72.002329) + (xy 64.450691 71.996986) (xy 64.439482 71.995849) (xy 64.420479 71.980721) (xy 64.399093 71.969208) + (xy 64.392216 71.958222) (xy 64.384818 71.952333) (xy 64.368833 71.920866) (xy 64.34439 71.848859) + (xy 64.340192 71.833193) (xy 64.282116 71.541227) (xy 64.280001 71.525171) (xy 64.260265 71.224043) + (xy 64.26 71.215933) (xy 64.26 61.024066) (xy 64.260265 61.015956) (xy 64.273898 60.80795) (xy 64.280001 60.714826) + (xy 64.282115 60.698774) (xy 64.340193 60.406802) (xy 64.34439 60.39114) (xy 64.372912 60.307116) + (xy 64.440079 60.109248) (xy 64.446277 60.094283) (xy 64.577947 59.827283) (xy 64.58605 59.813248) + (xy 64.751444 59.565718) (xy 64.761301 59.552873) (xy 64.95759 59.329048) (xy 64.969048 59.31759) + (xy 65.192873 59.121301) (xy 65.205718 59.111444) (xy 65.453248 58.94605) (xy 65.467283 58.937947) + (xy 65.734283 58.806277) (xy 65.749248 58.800079) (xy 65.947116 58.732912) (xy 66.03114 58.70439) + (xy 66.046802 58.700193) (xy 66.338774 58.642115) (xy 66.354826 58.640001) (xy 66.651898 58.620531) + (xy 66.668102 58.620531) + ) + ) + ) + (zone + (net 10) + (net_name "NO_1") + (layer "B.Cu") + (uuid "d8e93866-b77e-430a-b3bf-df1a5fccb281") + (hatch edge 0.5) + (priority 7) + (connect_pads + (clearance 0) + ) + (min_thickness 0.25) + (filled_areas_thickness no) + (fill yes + (thermal_gap 0.5) + (thermal_bridge_width 0.5) + (smoothing fillet) + (radius 3) + ) + (polygon + (pts + (xy 130.86 74.02) (xy 130.86 58.82) (xy 135.66 58.82) (xy 135.66 74.02) + ) + ) + (filled_polygon + (layer "B.Cu") + (pts + (xy 133.565171 58.840001) (xy 133.581227 58.842116) (xy 133.873193 58.900192) (xy 133.888859 58.90439) + (xy 134.093229 58.973763) (xy 134.170745 59.000077) (xy 134.185722 59.00628) (xy 134.4388 59.131084) + (xy 134.45271 59.137944) (xy 134.466758 59.146054) (xy 134.714273 59.311439) (xy 134.727137 59.32131) + (xy 134.950945 59.517585) (xy 134.962414 59.529054) (xy 135.158689 59.752862) (xy 135.168563 59.76573) + (xy 135.333945 60.013242) (xy 135.342055 60.027289) (xy 135.473716 60.29427) (xy 135.479923 60.309256) + (xy 135.575609 60.59114) (xy 135.579807 60.606806) (xy 135.637881 60.898758) (xy 135.639999 60.91484) + (xy 135.659735 61.215956) (xy 135.66 61.224066) (xy 135.66 71.421327) (xy 135.640315 71.488366) + (xy 135.587511 71.534121) (xy 135.518353 71.544065) (xy 135.454797 71.51504) (xy 135.428613 71.483327) + (xy 135.326511 71.306483) (xy 135.326505 71.306475) (xy 135.239918 71.193633) (xy 135.239917 71.193633) + (xy 134.261041 72.17251) (xy 134.236022 72.11211) (xy 134.164888 72.005649) (xy 134.074351 71.915112) + (xy 133.96789 71.843978) (xy 133.907487 71.818957) (xy 134.886365 70.84008) (xy 134.773524 70.753494) + (xy 134.773516 70.753488) (xy 134.546482 70.622409) (xy 134.546471 70.622404) (xy 134.304255 70.522075) + (xy 134.05102 70.454222) (xy 134.051009 70.45422) (xy 133.791094 70.42) (xy 133.528905 70.42) (xy 133.26899 70.45422) + (xy 133.268979 70.454222) (xy 133.015744 70.522075) (xy 132.773528 70.622404) (xy 132.773517 70.622409) + (xy 132.546471 70.753496) (xy 132.433633 70.840079) (xy 132.433633 70.84008) (xy 133.412511 71.818958) + (xy 133.35211 71.843978) (xy 133.245649 71.915112) (xy 133.155112 72.005649) (xy 133.083978 72.11211) + (xy 133.058958 72.172511) (xy 132.08008 71.193633) (xy 132.080079 71.193633) (xy 131.993496 71.306471) + (xy 131.862409 71.533517) (xy 131.862404 71.533528) (xy 131.762075 71.775744) (xy 131.694222 72.028979) + (xy 131.69422 72.02899) (xy 131.66 72.288905) (xy 131.66 72.551094) (xy 131.69422 72.811009) (xy 131.694222 72.81102) + (xy 131.762076 73.064258) (xy 131.836614 73.24421) (xy 131.837382 73.251361) (xy 131.841236 73.257436) + (xy 131.841068 73.285637) (xy 131.844083 73.313679) (xy 131.840862 73.320112) (xy 131.84082 73.327304) + (xy 131.825432 73.350937) (xy 131.812808 73.376158) (xy 131.806622 73.379828) (xy 131.802697 73.385857) + (xy 131.77697 73.397421) (xy 131.752719 73.41181) (xy 131.745531 73.411553) (xy 131.738969 73.414503) + (xy 131.711072 73.410322) (xy 131.682893 73.409316) (xy 131.675298 73.404961) (xy 131.669871 73.404148) + (xy 131.640294 73.38489) (xy 131.569054 73.322414) (xy 131.557585 73.310945) (xy 131.36131 73.087137) + (xy 131.351436 73.074269) (xy 131.186054 72.826757) (xy 131.177944 72.81271) (xy 131.048929 72.551094) + (xy 131.04628 72.545722) (xy 131.040076 72.530743) (xy 130.94439 72.248859) (xy 130.940192 72.233193) + (xy 130.882116 71.941227) (xy 130.880001 71.925171) (xy 130.860265 71.624043) (xy 130.86 71.615933) + (xy 130.86 63.682708) (xy 130.879685 63.615669) (xy 130.932489 63.569914) (xy 131.001647 63.55997) + (xy 131.023004 63.565002) (xy 131.157303 63.609505) (xy 131.15731 63.609506) (xy 131.260014 63.619999) + (xy 131.260027 63.62) (xy 132.21 63.62) (xy 132.21 62.320001) (xy 132.270402 62.345021) (xy 132.395981 62.37) + (xy 132.524019 62.37) (xy 132.649598 62.345021) (xy 132.71 62.320001) (xy 132.71 63.62) (xy 133.659973 63.62) + (xy 133.659985 63.619999) (xy 133.762689 63.609506) (xy 133.762696 63.609505) (xy 133.929118 63.554358) + (xy 133.929123 63.554356) (xy 134.078344 63.462315) (xy 134.202315 63.338344) (xy 134.294356 63.189123) + (xy 134.294358 63.189118) (xy 134.349505 63.022696) (xy 134.349506 63.022689) (xy 134.359999 62.919985) + (xy 134.36 62.919972) (xy 134.36 61.97) (xy 133.060001 61.97) (xy 133.085021 61.909598) (xy 133.11 61.784019) + (xy 133.11 61.655981) (xy 133.085021 61.530402) (xy 133.060001 61.47) (xy 134.36 61.47) (xy 134.36 60.520027) + (xy 134.359999 60.520014) (xy 134.349506 60.41731) (xy 134.349505 60.417303) (xy 134.294358 60.250881) + (xy 134.294356 60.250876) (xy 134.202315 60.101655) (xy 134.078344 59.977684) (xy 133.929123 59.885643) + (xy 133.929118 59.885641) (xy 133.762696 59.830494) (xy 133.762689 59.830493) (xy 133.659985 59.82) + (xy 132.71 59.82) (xy 132.71 61.119998) (xy 132.649598 61.094979) (xy 132.524019 61.07) (xy 132.395981 61.07) + (xy 132.270402 61.094979) (xy 132.21 61.119998) (xy 132.21 59.82) (xy 131.576107 59.82) (xy 131.558654 59.814875) + (xy 131.540466 59.814767) (xy 131.525827 59.805236) (xy 131.509068 59.800315) (xy 131.497157 59.786569) + (xy 131.481913 59.776644) (xy 131.47475 59.76071) (xy 131.463313 59.747511) (xy 131.460724 59.729509) + (xy 131.453266 59.712917) (xy 131.455854 59.695641) (xy 131.453369 59.678353) (xy 131.460925 59.661806) + (xy 131.463621 59.643819) (xy 131.482105 59.615427) (xy 131.482394 59.614797) (xy 131.482878 59.614242) + (xy 131.50047 59.594181) (xy 131.55759 59.529048) (xy 131.569048 59.51759) (xy 131.792873 59.321301) + (xy 131.805718 59.311444) (xy 132.053248 59.14605) (xy 132.067283 59.137947) (xy 132.334283 59.006277) + (xy 132.349248 59.000079) (xy 132.547116 58.932912) (xy 132.63114 58.90439) (xy 132.646802 58.900193) + (xy 132.938774 58.842115) (xy 132.954826 58.840001) (xy 133.251898 58.820531) (xy 133.268102 58.820531) + ) + ) + ) + (zone + (net 22) + (net_name "NO_5") + (layer "B.Cu") + (uuid "e686b2eb-07ae-4f51-b4c0-e5655be194c0") + (hatch edge 0.5) + (priority 7) + (connect_pads + (clearance 0) + ) + (min_thickness 0.25) + (filled_areas_thickness no) + (fill yes + (thermal_gap 0.5) + (thermal_bridge_width 0.5) + (smoothing fillet) + (radius 3) + ) + (polygon + (pts + (xy 120.26 138.42) (xy 120.26 123.42) (xy 125.06 123.42) (xy 125.06 138.42) + ) + ) + (filled_polygon + (layer "B.Cu") + (pts + (xy 123.397673 123.541327) (xy 123.425073 123.550628) (xy 123.570745 123.600077) (xy 123.585722 123.60628) + (xy 123.8388 123.731084) (xy 123.85271 123.737944) (xy 123.866758 123.746054) (xy 124.114273 123.911439) + (xy 124.127137 123.92131) (xy 124.350945 124.117585) (xy 124.362414 124.129054) (xy 124.558689 124.352862) + (xy 124.568563 124.36573) (xy 124.733945 124.613242) (xy 124.742055 124.627289) (xy 124.873716 124.89427) + (xy 124.879923 124.909256) (xy 124.975609 125.19114) (xy 124.979807 125.206806) (xy 125.037881 125.498758) + (xy 125.039999 125.51484) (xy 125.059735 125.815956) (xy 125.06 125.824066) (xy 125.06 133.982189) + (xy 125.040315 134.049228) (xy 124.987511 134.094983) (xy 124.918353 134.104927) (xy 124.854797 134.075902) + (xy 124.830462 134.047286) (xy 124.802319 134.00166) (xy 124.802316 134.001656) (xy 124.678344 133.877684) + (xy 124.529123 133.785643) (xy 124.529118 133.785641) (xy 124.362696 133.730494) (xy 124.362689 133.730493) + (xy 124.259985 133.72) (xy 123.31 133.72) (xy 123.31 135.019998) (xy 123.249598 134.994979) (xy 123.124019 134.97) + (xy 122.995981 134.97) (xy 122.870402 134.994979) (xy 122.81 135.019998) (xy 122.81 133.72) (xy 121.860014 133.72) + (xy 121.75731 133.730493) (xy 121.757303 133.730494) (xy 121.590881 133.785641) (xy 121.590876 133.785643) + (xy 121.441655 133.877684) (xy 121.317684 134.001655) (xy 121.225643 134.150876) (xy 121.225641 134.150881) + (xy 121.170494 134.317303) (xy 121.170493 134.31731) (xy 121.16 134.420014) (xy 121.16 135.37) (xy 122.459999 135.37) + (xy 122.434979 135.430402) (xy 122.41 135.555981) (xy 122.41 135.684019) (xy 122.434979 135.809598) + (xy 122.459999 135.87) (xy 121.16 135.87) (xy 121.16 136.819985) (xy 121.170493 136.922689) (xy 121.170494 136.922696) + (xy 121.225641 137.089118) (xy 121.225643 137.089123) (xy 121.317684 137.238344) (xy 121.441655 137.362315) + (xy 121.590876 137.454356) (xy 121.590881 137.454358) (xy 121.757303 137.509505) (xy 121.75731 137.509506) + (xy 121.860014 137.519999) (xy 121.860027 137.52) (xy 122.81 137.52) (xy 122.81 136.220001) (xy 122.870402 136.245021) + (xy 122.995981 136.27) (xy 123.124019 136.27) (xy 123.249598 136.245021) (xy 123.31 136.220001) + (xy 123.31 137.52) (xy 124.252295 137.52) (xy 124.319334 137.539685) (xy 124.365089 137.592489) + (xy 124.375033 137.661647) (xy 124.346008 137.725203) (xy 124.334054 137.737228) (xy 124.127137 137.918689) + (xy 124.114269 137.928563) (xy 123.866757 138.093945) (xy 123.85271 138.102055) (xy 123.585729 138.233716) + (xy 123.570743 138.239923) (xy 123.288859 138.335609) (xy 123.273193 138.339807) (xy 122.981241 138.397881) + (xy 122.965159 138.399999) (xy 122.66811 138.419468) (xy 122.65189 138.419468) (xy 122.35484 138.399999) + (xy 122.338759 138.397881) (xy 122.295207 138.389218) (xy 122.046806 138.339807) (xy 122.03114 138.335609) + (xy 121.749256 138.239923) (xy 121.73427 138.233716) (xy 121.467289 138.102055) (xy 121.453242 138.093945) + (xy 121.20573 137.928563) (xy 121.192862 137.918689) (xy 120.969054 137.722414) (xy 120.957585 137.710945) + (xy 120.79013 137.52) (xy 120.761307 137.487133) (xy 120.751436 137.474269) (xy 120.586054 137.226757) + (xy 120.577944 137.21271) (xy 120.571084 137.1988) (xy 120.44628 136.945722) (xy 120.440076 136.930743) + (xy 120.437344 136.922696) (xy 120.402479 136.819985) (xy 120.34439 136.648859) (xy 120.340192 136.633193) + (xy 120.282116 136.341227) (xy 120.280001 136.325171) (xy 120.260265 136.024043) (xy 120.26 136.015933) + (xy 120.26 126.606499) (xy 120.279685 126.53946) (xy 120.332489 126.493705) (xy 120.401647 126.483761) + (xy 120.459488 126.508124) (xy 120.496474 126.536505) (xy 120.723517 126.66759) (xy 120.723528 126.667595) + (xy 120.965744 126.767924) (xy 121.218979 126.835777) (xy 121.21899 126.835779) (xy 121.478905 126.869999) + (xy 121.47892 126.87) (xy 121.74108 126.87) (xy 121.741094 126.869999) (xy 122.001009 126.835779) + (xy 122.00102 126.835777) (xy 122.254255 126.767924) (xy 122.496471 126.667595) (xy 122.496482 126.66759) + (xy 122.723516 126.536511) (xy 122.723534 126.536499) (xy 122.836365 126.449919) (xy 122.836365 126.449917) + (xy 121.857488 125.471041) (xy 121.91789 125.446022) (xy 122.024351 125.374888) (xy 122.114888 125.284351) + (xy 122.186022 125.17789) (xy 122.211041 125.117488) (xy 123.189917 126.096365) (xy 123.189919 126.096365) + (xy 123.276499 125.983534) (xy 123.276511 125.983516) (xy 123.40759 125.756482) (xy 123.407595 125.756471) + (xy 123.507924 125.514255) (xy 123.575777 125.26102) (xy 123.575779 125.261009) (xy 123.609999 125.001094) + (xy 123.61 125.00108) (xy 123.61 124.738919) (xy 123.609999 124.738905) (xy 123.575779 124.47899) + (xy 123.575777 124.478979) (xy 123.507924 124.225744) (xy 123.407595 123.983528) (xy 123.40759 123.983517) + (xy 123.276503 123.756471) (xy 123.259439 123.734232) (xy 123.234245 123.669063) (xy 123.248284 123.600618) + (xy 123.297098 123.550628) (xy 123.365189 123.534965) + ) + ) + ) + (zone + (net 13) + (net_name "NO_2") + (layer "B.Cu") + (uuid "f91b4a36-7777-4d0d-bf84-1931245fb31e") + (hatch edge 0.5) + (priority 7) + (connect_pads + (clearance 0) + ) + (min_thickness 0.25) + (filled_areas_thickness no) + (fill yes + (thermal_gap 0.5) + (thermal_bridge_width 0.5) + (smoothing fillet) + (radius 3) + ) + (polygon + (pts + (xy 112.26 73.82) (xy 112.26 58.62) (xy 117.06 58.62) (xy 117.06 73.82) + ) + ) + (filled_polygon + (layer "B.Cu") + (pts + (xy 114.965171 58.640001) (xy 114.981227 58.642116) (xy 115.273193 58.700192) (xy 115.288859 58.70439) + (xy 115.493229 58.773763) (xy 115.570745 58.800077) (xy 115.585722 58.80628) (xy 115.8388 58.931084) + (xy 115.85271 58.937944) (xy 115.866758 58.946054) (xy 116.114273 59.111439) (xy 116.127137 59.12131) + (xy 116.350945 59.317585) (xy 116.362414 59.329054) (xy 116.558689 59.552862) (xy 116.568563 59.56573) + (xy 116.733945 59.813242) (xy 116.742055 59.827289) (xy 116.873716 60.09427) (xy 116.879923 60.109256) + (xy 116.975609 60.39114) (xy 116.979807 60.406806) (xy 117.037881 60.698758) (xy 117.039999 60.71484) + (xy 117.059735 61.015956) (xy 117.06 61.024066) (xy 117.06 70.603794) (xy 117.040315 70.670833) + (xy 116.987511 70.716588) (xy 116.927892 70.727529) (xy 116.906585 70.726132) (xy 115.927708 71.705011) + (xy 115.902689 71.64461) (xy 115.831555 71.538149) (xy 115.741018 71.447612) (xy 115.634557 71.376478) + (xy 115.574154 71.351457) (xy 116.553032 70.37258) (xy 116.440191 70.285994) (xy 116.440183 70.285988) + (xy 116.213149 70.154909) (xy 116.213138 70.154904) (xy 115.970922 70.054575) (xy 115.717687 69.986722) + (xy 115.717676 69.98672) (xy 115.457761 69.9525) (xy 115.195572 69.9525) (xy 114.935657 69.98672) + (xy 114.935646 69.986722) (xy 114.682411 70.054575) (xy 114.440195 70.154904) (xy 114.440184 70.154909) + (xy 114.213138 70.285996) (xy 114.1003 70.372579) (xy 114.1003 70.37258) (xy 115.079178 71.351458) + (xy 115.018777 71.376478) (xy 114.912316 71.447612) (xy 114.821779 71.538149) (xy 114.750645 71.64461) + (xy 114.725625 71.705011) (xy 113.746747 70.726133) (xy 113.746746 70.726133) (xy 113.660163 70.838971) + (xy 113.529076 71.066017) (xy 113.529071 71.066028) (xy 113.428742 71.308244) (xy 113.360889 71.561479) + (xy 113.360887 71.56149) (xy 113.326667 71.821405) (xy 113.326667 72.083594) (xy 113.360887 72.343509) + (xy 113.360889 72.34352) (xy 113.428742 72.596755) (xy 113.529071 72.838971) (xy 113.529076 72.838982) + (xy 113.660155 73.066016) (xy 113.660161 73.066024) (xy 113.746747 73.178865) (xy 114.725625 72.199987) + (xy 114.750645 72.26039) (xy 114.821779 72.366851) (xy 114.912316 72.457388) (xy 115.018777 72.528522) + (xy 115.079178 72.553541) (xy 114.1003 73.532418) (xy 114.103357 73.579064) (xy 114.096191 73.611084) + (xy 114.090174 73.643336) (xy 114.088599 73.645007) (xy 114.088098 73.647247) (xy 114.064766 73.670302) + (xy 114.04226 73.694189) (xy 114.040031 73.694743) (xy 114.038399 73.696357) (xy 114.006296 73.70314) + (xy 113.974459 73.711065) (xy 113.97145 73.710503) (xy 113.970039 73.710802) (xy 113.939763 73.704592) + (xy 113.749255 73.639923) (xy 113.73427 73.633716) (xy 113.467289 73.502055) (xy 113.453242 73.493945) + (xy 113.20573 73.328563) (xy 113.192862 73.318689) (xy 112.969054 73.122414) (xy 112.957585 73.110945) + (xy 112.76131 72.887137) (xy 112.751436 72.874269) (xy 112.586054 72.626757) (xy 112.577944 72.61271) + (xy 112.570076 72.596755) (xy 112.44628 72.345722) (xy 112.440076 72.330743) (xy 112.34439 72.048859) + (xy 112.340192 72.033193) (xy 112.324141 71.952499) (xy 112.282116 71.741229) (xy 112.280001 71.725171) + (xy 112.260265 71.424043) (xy 112.26 71.415933) (xy 112.26 63.413355) (xy 112.279685 63.346316) + (xy 112.332489 63.300561) (xy 112.401647 63.290617) (xy 112.465203 63.319642) (xy 112.471681 63.325674) + (xy 112.508322 63.362315) (xy 112.657543 63.454356) (xy 112.657548 63.454358) (xy 112.82397 63.509505) + (xy 112.823977 63.509506) (xy 112.926681 63.519999) (xy 112.926694 63.52) (xy 113.876667 63.52) + (xy 113.876667 62.220001) (xy 113.937069 62.245021) (xy 114.062648 62.27) (xy 114.190686 62.27) + (xy 114.316265 62.245021) (xy 114.376667 62.220001) (xy 114.376667 63.52) (xy 115.32664 63.52) (xy 115.326652 63.519999) + (xy 115.429356 63.509506) (xy 115.429363 63.509505) (xy 115.595785 63.454358) (xy 115.59579 63.454356) + (xy 115.745011 63.362315) (xy 115.868982 63.238344) (xy 115.961023 63.089123) (xy 115.961025 63.089118) + (xy 116.016172 62.922696) (xy 116.016173 62.922689) (xy 116.026666 62.819985) (xy 116.026667 62.819972) + (xy 116.026667 61.87) (xy 114.726668 61.87) (xy 114.751688 61.809598) (xy 114.776667 61.684019) + (xy 114.776667 61.555981) (xy 114.751688 61.430402) (xy 114.726668 61.37) (xy 116.026667 61.37) + (xy 116.026667 60.420027) (xy 116.026666 60.420014) (xy 116.016173 60.31731) (xy 116.016172 60.317303) + (xy 115.961025 60.150881) (xy 115.961023 60.150876) (xy 115.868982 60.001655) (xy 115.745011 59.877684) + (xy 115.59579 59.785643) (xy 115.595785 59.785641) (xy 115.429363 59.730494) (xy 115.429356 59.730493) + (xy 115.326652 59.72) (xy 114.376667 59.72) (xy 114.376667 61.019998) (xy 114.316265 60.994979) + (xy 114.190686 60.97) (xy 114.062648 60.97) (xy 113.937069 60.994979) (xy 113.876667 61.019998) + (xy 113.876667 59.72) (xy 112.926676 59.72) (xy 112.897864 59.722944) (xy 112.829171 59.710174) + (xy 112.778287 59.662293) (xy 112.761367 59.594503) (xy 112.783784 59.528326) (xy 112.792025 59.517839) + (xy 112.95759 59.329048) (xy 112.969048 59.31759) (xy 113.192873 59.121301) (xy 113.205718 59.111444) + (xy 113.453248 58.94605) (xy 113.467283 58.937947) (xy 113.734283 58.806277) (xy 113.749248 58.800079) + (xy 113.947116 58.732912) (xy 114.03114 58.70439) (xy 114.046802 58.700193) (xy 114.338774 58.642115) + (xy 114.354826 58.640001) (xy 114.651898 58.620531) (xy 114.668102 58.620531) + ) + ) + ) + (zone + (net 81) + (net_name "/12V_DC-Regulated") + (layer "In2.Cu") + (uuid "59ea6172-796b-47e4-b99b-d5d4871fe899") + (hatch edge 0.5) + (priority 2) + (connect_pads + (clearance 1) + ) + (min_thickness 0.25) + (filled_areas_thickness no) + (fill yes + (thermal_gap 0.5) + (thermal_bridge_width 0.5) + ) + (polygon + (pts + (xy 136.06 57.22) (xy 136.26 140.02) (xy 54.97 140.31) (xy 54.97 56.91) + ) + ) + (filled_polygon + (layer "In2.Cu") + (pts + (xy 136.003919 57.480185) (xy 136.049674 57.532989) (xy 136.060879 57.584198) (xy 136.065892 59.659161) + (xy 136.093687 71.166958) (xy 136.074164 71.234045) (xy 136.021471 71.279928) (xy 135.952336 71.290038) + (xy 135.888711 71.261167) (xy 135.857966 71.221058) (xy 135.851945 71.208555) (xy 135.702523 70.970752) + (xy 135.527416 70.751175) (xy 135.328825 70.552584) (xy 135.327612 70.551617) (xy 135.204268 70.453253) + (xy 135.109248 70.377477) (xy 134.871445 70.228055) (xy 134.871442 70.228053) (xy 134.618411 70.1062) + (xy 134.353329 70.013443) (xy 134.353317 70.013439) (xy 134.079512 69.950945) (xy 134.079494 69.950942) + (xy 133.800431 69.9195) (xy 133.800425 69.9195) (xy 133.519575 69.9195) (xy 133.519568 69.9195) + (xy 133.240505 69.950942) (xy 133.240487 69.950945) (xy 132.966682 70.013439) (xy 132.96667 70.013443) + (xy 132.701588 70.1062) (xy 132.448557 70.228053) (xy 132.210753 70.377476) (xy 131.991175 70.552583) + (xy 131.792583 70.751175) (xy 131.617476 70.970753) (xy 131.468053 71.208557) (xy 131.3462 71.461588) + (xy 131.253443 71.72667) (xy 131.253439 71.726682) (xy 131.190945 72.000487) (xy 131.190942 72.000505) + (xy 131.1595 72.279568) (xy 131.1595 72.560431) (xy 131.190942 72.839494) (xy 131.190945 72.839512) + (xy 131.253439 73.113317) (xy 131.253443 73.113329) (xy 131.3462 73.378411) (xy 131.468053 73.631442) + (xy 131.468055 73.631445) (xy 131.617477 73.869248) (xy 131.677906 73.945023) (xy 131.789167 74.084541) + (xy 131.792584 74.088825) (xy 131.991175 74.287416) (xy 132.210752 74.462523) (xy 132.382596 74.5705) + (xy 132.448557 74.611946) (xy 132.498458 74.635977) (xy 132.701592 74.733801) (xy 132.834859 74.780433) + (xy 132.96667 74.826556) (xy 132.966682 74.82656) (xy 133.240491 74.889055) (xy 133.240497 74.889055) + (xy 133.240505 74.889057) (xy 133.426547 74.910018) (xy 133.519569 74.920499) (xy 133.519572 74.9205) + (xy 133.519575 74.9205) (xy 133.800428 74.9205) (xy 133.800429 74.920499) (xy 133.943055 74.904429) + (xy 134.079494 74.889057) (xy 134.079499 74.889056) (xy 134.079509 74.889055) (xy 134.353318 74.82656) + (xy 134.618408 74.733801) (xy 134.871445 74.611945) (xy 135.109248 74.462523) (xy 135.328825 74.287416) + (xy 135.527416 74.088825) (xy 135.702523 73.869248) (xy 135.851945 73.631445) (xy 135.863989 73.606434) + (xy 135.910809 73.554576) (xy 135.978235 73.536262) (xy 136.04486 73.557308) (xy 136.089529 73.611033) + (xy 136.099709 73.659936) (xy 136.125195 84.211098) (xy 136.105672 84.278185) (xy 136.052979 84.324068) + (xy 135.983844 84.334178) (xy 135.920219 84.305307) (xy 135.882303 84.24662) (xy 135.878256 84.227582) + (xy 135.877245 84.219901) (xy 135.871993 84.180007) (xy 135.795639 83.895048) (xy 135.682743 83.622493) + (xy 135.677516 83.61344) (xy 135.535238 83.367006) (xy 135.355647 83.132959) (xy 135.355641 83.132952) + (xy 135.147047 82.924358) (xy 135.14704 82.924352) (xy 134.912993 82.744761) (xy 134.65751 82.597258) + (xy 134.6575 82.597254) (xy 134.384961 82.484364) (xy 134.384954 82.484362) (xy 134.384952 82.484361) + (xy 134.099993 82.408007) (xy 134.051113 82.401571) (xy 133.807513 82.3695) (xy 133.807506 82.3695) + (xy 133.512494 82.3695) (xy 133.512486 82.3695) (xy 133.234085 82.406153) (xy 133.220007 82.408007) + (xy 133.006353 82.465255) (xy 132.935048 82.484361) (xy 132.935038 82.484364) (xy 132.662499 82.597254) + (xy 132.662489 82.597258) (xy 132.407006 82.744761) (xy 132.172959 82.924352) (xy 132.172952 82.924358) + (xy 131.964358 83.132952) (xy 131.964352 83.132959) (xy 131.784761 83.367006) (xy 131.637258 83.622489) + (xy 131.637254 83.622499) (xy 131.524364 83.895038) (xy 131.524361 83.895048) (xy 131.448377 84.178628) + (xy 131.448008 84.180004) (xy 131.448006 84.180015) (xy 131.4095 84.472486) (xy 131.4095 84.767513) + (xy 131.435124 84.962137) (xy 131.448007 85.059993) (xy 131.519466 85.326682) (xy 131.524361 85.344951) + (xy 131.524364 85.344961) (xy 131.637254 85.6175) (xy 131.637258 85.61751) (xy 131.784761 85.872993) + (xy 131.964352 86.10704) (xy 131.964358 86.107047) (xy 132.172952 86.315641) (xy 132.172959 86.315647) + (xy 132.407006 86.495238) (xy 132.662489 86.642741) (xy 132.66249 86.642741) (xy 132.662493 86.642743) + (xy 132.935048 86.755639) (xy 133.220007 86.831993) (xy 133.512494 86.8705) (xy 133.512501 86.8705) + (xy 133.807499 86.8705) (xy 133.807506 86.8705) (xy 134.099993 86.831993) (xy 134.384952 86.755639) + (xy 134.657507 86.642743) (xy 134.912994 86.495238) (xy 135.147042 86.315646) (xy 135.355646 86.107042) + (xy 135.535238 85.872994) (xy 135.682743 85.617507) (xy 135.795639 85.344952) (xy 135.871993 85.059993) + (xy 135.880195 84.997691) (xy 135.908459 84.933797) (xy 135.966783 84.895325) (xy 136.036648 84.894493) + (xy 136.095872 84.931565) (xy 136.125652 84.99477) (xy 136.127133 85.013578) (xy 136.221155 123.93838) + (xy 136.201632 124.005467) (xy 136.148939 124.05135) (xy 136.079804 124.06146) (xy 136.016179 124.032589) + (xy 135.980114 123.979635) (xy 135.973801 123.961592) (xy 135.949722 123.911592) (xy 135.851946 123.708557) + (xy 135.820529 123.658557) (xy 135.702523 123.470752) (xy 135.527416 123.251175) (xy 135.328825 123.052584) + (xy 135.109248 122.877477) (xy 134.871445 122.728055) (xy 134.871442 122.728053) (xy 134.618411 122.6062) + (xy 134.353329 122.513443) (xy 134.353317 122.513439) (xy 134.079512 122.450945) (xy 134.079494 122.450942) + (xy 133.800431 122.4195) (xy 133.800425 122.4195) (xy 133.519575 122.4195) (xy 133.519568 122.4195) + (xy 133.240505 122.450942) (xy 133.240487 122.450945) (xy 132.966682 122.513439) (xy 132.96667 122.513443) + (xy 132.701588 122.6062) (xy 132.448557 122.728053) (xy 132.210753 122.877476) (xy 131.991175 123.052583) + (xy 131.792583 123.251175) (xy 131.617476 123.470753) (xy 131.468053 123.708557) (xy 131.3462 123.961588) + (xy 131.253443 124.22667) (xy 131.253439 124.226682) (xy 131.190945 124.500487) (xy 131.190942 124.500505) + (xy 131.1595 124.779568) (xy 131.1595 125.060431) (xy 131.190942 125.339494) (xy 131.190945 125.339512) + (xy 131.253439 125.613317) (xy 131.253443 125.613329) (xy 131.3462 125.878411) (xy 131.468053 126.131442) + (xy 131.468055 126.131445) (xy 131.617477 126.369248) (xy 131.792584 126.588825) (xy 131.991175 126.787416) + (xy 132.210752 126.962523) (xy 132.448555 127.111945) (xy 132.448557 127.111946) (xy 132.50485 127.139055) + (xy 132.701592 127.233801) (xy 132.90068 127.303465) (xy 132.96667 127.326556) (xy 132.966682 127.32656) + (xy 133.240491 127.389055) (xy 133.240497 127.389055) (xy 133.240505 127.389057) (xy 133.426547 127.410018) + (xy 133.519569 127.420499) (xy 133.519572 127.4205) (xy 133.519575 127.4205) (xy 133.800428 127.4205) + (xy 133.800429 127.420499) (xy 133.943055 127.404429) (xy 134.079494 127.389057) (xy 134.079499 127.389056) + (xy 134.079509 127.389055) (xy 134.353318 127.32656) (xy 134.618408 127.233801) (xy 134.871445 127.111945) + (xy 135.109248 126.962523) (xy 135.328825 126.787416) (xy 135.527416 126.588825) (xy 135.702523 126.369248) + (xy 135.851945 126.131445) (xy 135.973801 125.878408) (xy 135.984822 125.846909) (xy 136.025541 125.790135) + (xy 136.090493 125.764386) (xy 136.159055 125.777841) (xy 136.209459 125.826227) (xy 136.225863 125.887564) + (xy 136.250131 135.934188) (xy 136.257825 139.11974) (xy 136.257863 139.1352) (xy 136.23834 139.202287) + (xy 136.185647 139.24817) (xy 136.133863 139.2595) (xy 59.954428 139.2595) (xy 59.945582 139.259184) + (xy 59.923622 139.257613) (xy 59.745442 139.244869) (xy 59.727931 139.242351) (xy 59.536212 139.200646) + (xy 59.519236 139.195662) (xy 59.33539 139.12709) (xy 59.319298 139.11974) (xy 59.147095 139.025711) + (xy 59.13221 139.016146) (xy 58.975132 138.898558) (xy 58.961762 138.886972) (xy 58.823027 138.748237) + (xy 58.811441 138.734867) (xy 58.693849 138.577784) (xy 58.684288 138.562904) (xy 58.590259 138.390701) + (xy 58.582909 138.374609) (xy 58.575988 138.356054) (xy 58.514334 138.190755) (xy 58.509355 138.173797) + (xy 58.467647 137.982063) (xy 58.46513 137.964556) (xy 58.464453 137.955097) (xy 58.450816 137.764418) + (xy 58.4505 137.755572) (xy 58.4505 136.478711) (xy 59.1495 136.478711) (xy 59.1495 136.721288) + (xy 59.164367 136.834221) (xy 59.181162 136.961789) (xy 59.194425 137.011287) (xy 59.243947 137.196104) + (xy 59.336773 137.420205) (xy 59.336777 137.420214) (xy 59.339342 137.424657) (xy 59.458064 137.630289) + (xy 59.458066 137.630292) (xy 59.458067 137.630293) (xy 59.605733 137.822736) (xy 59.605739 137.822743) + (xy 59.777256 137.99426) (xy 59.777262 137.994265) (xy 59.969711 138.141936) (xy 60.179788 138.263224) + (xy 60.4039 138.356054) (xy 60.638211 138.418838) (xy 60.818586 138.442584) (xy 60.878711 138.4505) + (xy 60.878712 138.4505) (xy 61.121289 138.4505) (xy 61.169388 138.444167) (xy 61.361789 138.418838) + (xy 61.5961 138.356054) (xy 61.820212 138.263224) (xy 62.030289 138.141936) (xy 62.222738 137.994265) + (xy 62.394265 137.822738) (xy 62.541936 137.630289) (xy 62.663224 137.420212) (xy 62.756054 137.1961) + (xy 62.818838 136.961789) (xy 62.8505 136.721288) (xy 62.8505 136.478712) (xy 62.818838 136.238211) + (xy 62.756054 136.0039) (xy 62.663224 135.779788) (xy 62.541936 135.569711) (xy 62.394265 135.377262) + (xy 62.39426 135.377256) (xy 62.222743 135.205739) (xy 62.222736 135.205733) (xy 62.030293 135.058067) + (xy 62.030292 135.058066) (xy 62.030289 135.058064) (xy 61.850746 134.954405) (xy 61.820214 134.936777) + (xy 61.820205 134.936773) (xy 61.596104 134.843947) (xy 61.361785 134.781161) (xy 61.121289 134.7495) + (xy 61.121288 134.7495) (xy 60.878712 134.7495) (xy 60.878711 134.7495) (xy 60.638214 134.781161) + (xy 60.403895 134.843947) (xy 60.179794 134.936773) (xy 60.179785 134.936777) (xy 59.969706 135.058067) + (xy 59.777263 135.205733) (xy 59.777256 135.205739) (xy 59.605739 135.377256) (xy 59.605733 135.377263) + (xy 59.458067 135.569706) (xy 59.336777 135.779785) (xy 59.336773 135.779794) (xy 59.243947 136.003895) + (xy 59.181161 136.238214) (xy 59.1495 136.478711) (xy 58.4505 136.478711) (xy 58.4505 134.205778) + (xy 65.6595 134.205778) (xy 65.6595 136.634221) (xy 65.669904 136.766412) (xy 65.669905 136.766419) + (xy 65.724902 136.984678) (xy 65.724903 136.984681) (xy 65.817991 137.189622) (xy 65.817997 137.189632) + (xy 65.946174 137.374645) (xy 65.946178 137.37465) (xy 65.946181 137.374654) (xy 66.105346 137.533819) + (xy 66.10535 137.533822) (xy 66.105354 137.533825) (xy 66.236969 137.625008) (xy 66.290374 137.662007) + (xy 66.495317 137.755096) (xy 66.495321 137.755097) (xy 66.71358 137.810094) (xy 66.713582 137.810094) + (xy 66.713589 137.810096) (xy 66.845784 137.8205) (xy 66.845792 137.8205) (xy 69.274208 137.8205) + (xy 69.274216 137.8205) (xy 69.406411 137.810096) (xy 69.624683 137.755096) (xy 69.829626 137.662007) + (xy 70.014654 137.533819) (xy 70.173819 137.374654) (xy 70.302007 137.189626) (xy 70.395096 136.984683) + (xy 70.450096 136.766411) (xy 70.4605 136.634216) (xy 70.4605 135.919123) (xy 70.480185 135.852084) + (xy 70.532989 135.806329) (xy 70.602147 135.796385) (xy 70.665703 135.82541) (xy 70.703477 135.884188) + (xy 70.705388 135.891521) (xy 70.7078 135.902084) (xy 70.749684 136.085594) (xy 70.749687 136.085602) + (xy 70.838734 136.340082) (xy 70.955714 136.582994) (xy 70.955716 136.582997) (xy 71.099162 136.811289) + (xy 71.267266 137.022085) (xy 71.457915 137.212734) (xy 71.668711 137.380838) (xy 71.897003 137.524284) + (xy 72.139921 137.641267) (xy 72.331049 137.708145) (xy 72.394397 137.730312) (xy 72.394405 137.730315) + (xy 72.394408 137.730315) (xy 72.394409 137.730316) (xy 72.657268 137.790312) (xy 72.925187 137.820499) + (xy 72.925188 137.8205) (xy 72.925191 137.8205) (xy 73.194812 137.8205) (xy 73.194812 137.820499) + (xy 73.462732 137.790312) (xy 73.725591 137.730316) (xy 73.980079 137.641267) (xy 74.222997 137.524284) + (xy 74.451289 137.380838) (xy 74.662085 137.212734) (xy 74.852734 137.022085) (xy 75.020838 136.811289) + (xy 75.164284 136.582997) (xy 75.281267 136.340079) (xy 75.370316 136.085591) (xy 75.430312 135.822732) + (xy 75.430313 135.82272) (xy 75.430314 135.822717) (xy 75.43678 135.765332) (xy 75.463846 135.700918) + (xy 75.521441 135.661362) (xy 75.591278 135.659225) (xy 75.651185 135.695183) (xy 75.68214 135.757821) + (xy 75.68322 135.765332) (xy 75.689685 135.822717) (xy 75.689687 135.822729) (xy 75.689688 135.822732) + (xy 75.697356 135.856329) (xy 75.749684 136.085594) (xy 75.749687 136.085602) (xy 75.838734 136.340082) + (xy 75.955714 136.582994) (xy 75.955716 136.582997) (xy 76.099162 136.811289) (xy 76.267266 137.022085) + (xy 76.457915 137.212734) (xy 76.668711 137.380838) (xy 76.897003 137.524284) (xy 77.139921 137.641267) + (xy 77.331049 137.708145) (xy 77.394397 137.730312) (xy 77.394405 137.730315) (xy 77.394408 137.730315) + (xy 77.394409 137.730316) (xy 77.657268 137.790312) (xy 77.925187 137.820499) (xy 77.925188 137.8205) + (xy 77.925191 137.8205) (xy 78.194812 137.8205) (xy 78.194812 137.820499) (xy 78.462732 137.790312) + (xy 78.725591 137.730316) (xy 78.980079 137.641267) (xy 79.222997 137.524284) (xy 79.451289 137.380838) + (xy 79.662085 137.212734) (xy 79.852734 137.022085) (xy 80.020838 136.811289) (xy 80.164284 136.582997) + (xy 80.281267 136.340079) (xy 80.370316 136.085591) (xy 80.430312 135.822732) (xy 80.4605 135.554809) + (xy 80.4605 135.285191) (xy 80.430312 135.017268) (xy 80.370316 134.754409) (xy 80.281267 134.499921) + (xy 80.187982 134.306213) (xy 80.164287 134.257008) (xy 80.163514 134.255778) (xy 83.992833 134.255778) + (xy 83.992833 136.684221) (xy 84.003237 136.816412) (xy 84.003238 136.816419) (xy 84.058235 137.034678) + (xy 84.058236 137.034681) (xy 84.151324 137.239622) (xy 84.15133 137.239632) (xy 84.279507 137.424645) + (xy 84.279511 137.42465) (xy 84.279514 137.424654) (xy 84.438679 137.583819) (xy 84.438683 137.583822) + (xy 84.438687 137.583825) (xy 84.49814 137.625014) (xy 84.623707 137.712007) (xy 84.82865 137.805096) + (xy 84.828654 137.805097) (xy 85.046913 137.860094) (xy 85.046915 137.860094) (xy 85.046922 137.860096) + (xy 85.179117 137.8705) (xy 85.179125 137.8705) (xy 87.607541 137.8705) (xy 87.607549 137.8705) + (xy 87.739744 137.860096) (xy 87.958016 137.805096) (xy 88.162959 137.712007) (xy 88.347987 137.583819) + (xy 88.507152 137.424654) (xy 88.63534 137.239626) (xy 88.728429 137.034683) (xy 88.783429 136.816411) + (xy 88.793833 136.684216) (xy 88.793833 135.969123) (xy 88.813518 135.902084) (xy 88.866322 135.856329) + (xy 88.93548 135.846385) (xy 88.999036 135.87541) (xy 89.03681 135.934188) (xy 89.038721 135.941521) + (xy 89.045022 135.969123) (xy 89.083017 136.135594) (xy 89.08302 136.135602) (xy 89.172067 136.390082) + (xy 89.289047 136.632994) (xy 89.289049 136.632997) (xy 89.432495 136.861289) (xy 89.600599 137.072085) + (xy 89.791248 137.262734) (xy 90.002044 137.430838) (xy 90.230336 137.574284) (xy 90.230338 137.574285) + (xy 90.24961 137.583566) (xy 90.473254 137.691267) (xy 90.655667 137.755096) (xy 90.72773 137.780312) + (xy 90.727738 137.780315) (xy 90.727741 137.780315) (xy 90.727742 137.780316) (xy 90.990601 137.840312) + (xy 91.25852 137.870499) (xy 91.258521 137.8705) (xy 91.258524 137.8705) (xy 91.528145 137.8705) + (xy 91.528145 137.870499) (xy 91.796065 137.840312) (xy 92.058924 137.780316) (xy 92.313412 137.691267) + (xy 92.55633 137.574284) (xy 92.784622 137.430838) (xy 92.995418 137.262734) (xy 93.186067 137.072085) + (xy 93.354171 136.861289) (xy 93.497617 136.632997) (xy 93.6146 136.390079) (xy 93.703649 136.135591) + (xy 93.763645 135.872732) (xy 93.763646 135.87272) (xy 93.763647 135.872717) (xy 93.770113 135.815332) + (xy 93.797179 135.750918) (xy 93.854774 135.711362) (xy 93.924611 135.709225) (xy 93.984518 135.745183) + (xy 94.015473 135.807821) (xy 94.016553 135.815332) (xy 94.023018 135.872717) (xy 94.02302 135.872729) + (xy 94.023021 135.872732) (xy 94.037048 135.934188) (xy 94.083017 136.135594) (xy 94.08302 136.135602) + (xy 94.172067 136.390082) (xy 94.289047 136.632994) (xy 94.289049 136.632997) (xy 94.432495 136.861289) + (xy 94.600599 137.072085) (xy 94.791248 137.262734) (xy 95.002044 137.430838) (xy 95.230336 137.574284) + (xy 95.230338 137.574285) (xy 95.24961 137.583566) (xy 95.473254 137.691267) (xy 95.655667 137.755096) + (xy 95.72773 137.780312) (xy 95.727738 137.780315) (xy 95.727741 137.780315) (xy 95.727742 137.780316) + (xy 95.990601 137.840312) (xy 96.25852 137.870499) (xy 96.258521 137.8705) (xy 96.258524 137.8705) + (xy 96.528145 137.8705) (xy 96.528145 137.870499) (xy 96.796065 137.840312) (xy 97.058924 137.780316) + (xy 97.313412 137.691267) (xy 97.55633 137.574284) (xy 97.784622 137.430838) (xy 97.995418 137.262734) + (xy 98.186067 137.072085) (xy 98.354171 136.861289) (xy 98.497617 136.632997) (xy 98.6146 136.390079) + (xy 98.703649 136.135591) (xy 98.763645 135.872732) (xy 98.793833 135.604809) (xy 98.793833 135.335191) + (xy 98.763645 135.067268) (xy 98.703649 134.804409) (xy 98.6146 134.549921) (xy 98.497617 134.307003) + (xy 98.476622 134.273589) (xy 98.473941 134.269322) (xy 98.47394 134.269321) (xy 98.434013 134.205778) + (xy 102.326167 134.205778) (xy 102.326167 136.634221) (xy 102.336571 136.766412) (xy 102.336572 136.766419) + (xy 102.391569 136.984678) (xy 102.39157 136.984681) (xy 102.484658 137.189622) (xy 102.484664 137.189632) + (xy 102.612841 137.374645) (xy 102.612845 137.37465) (xy 102.612848 137.374654) (xy 102.772013 137.533819) + (xy 102.772017 137.533822) (xy 102.772021 137.533825) (xy 102.903636 137.625008) (xy 102.957041 137.662007) + (xy 103.161984 137.755096) (xy 103.161988 137.755097) (xy 103.380247 137.810094) (xy 103.380249 137.810094) + (xy 103.380256 137.810096) (xy 103.512451 137.8205) (xy 103.512459 137.8205) (xy 105.940875 137.8205) + (xy 105.940883 137.8205) (xy 106.073078 137.810096) (xy 106.29135 137.755096) (xy 106.496293 137.662007) + (xy 106.681321 137.533819) (xy 106.840486 137.374654) (xy 106.968674 137.189626) (xy 107.061763 136.984683) + (xy 107.116763 136.766411) (xy 107.127167 136.634216) (xy 107.127167 135.919123) (xy 107.146852 135.852084) + (xy 107.199656 135.806329) (xy 107.268814 135.796385) (xy 107.33237 135.82541) (xy 107.370144 135.884188) + (xy 107.372055 135.891521) (xy 107.374467 135.902084) (xy 107.416351 136.085594) (xy 107.416354 136.085602) + (xy 107.505401 136.340082) (xy 107.622381 136.582994) (xy 107.622383 136.582997) (xy 107.765829 136.811289) + (xy 107.933933 137.022085) (xy 108.124582 137.212734) (xy 108.335378 137.380838) (xy 108.56367 137.524284) + (xy 108.806588 137.641267) (xy 108.997716 137.708145) (xy 109.061064 137.730312) (xy 109.061072 137.730315) + (xy 109.061075 137.730315) (xy 109.061076 137.730316) (xy 109.323935 137.790312) (xy 109.591854 137.820499) + (xy 109.591855 137.8205) (xy 109.591858 137.8205) (xy 109.861479 137.8205) (xy 109.861479 137.820499) + (xy 110.129399 137.790312) (xy 110.392258 137.730316) (xy 110.646746 137.641267) (xy 110.889664 137.524284) + (xy 111.117956 137.380838) (xy 111.328752 137.212734) (xy 111.519401 137.022085) (xy 111.687505 136.811289) + (xy 111.830951 136.582997) (xy 111.947934 136.340079) (xy 112.036983 136.085591) (xy 112.096979 135.822732) + (xy 112.09698 135.82272) (xy 112.096981 135.822717) (xy 112.103447 135.765332) (xy 112.130513 135.700918) + (xy 112.188108 135.661362) (xy 112.257945 135.659225) (xy 112.317852 135.695183) (xy 112.348807 135.757821) + (xy 112.349887 135.765332) (xy 112.356352 135.822717) (xy 112.356354 135.822729) (xy 112.356355 135.822732) + (xy 112.364023 135.856329) (xy 112.416351 136.085594) (xy 112.416354 136.085602) (xy 112.505401 136.340082) + (xy 112.622381 136.582994) (xy 112.622383 136.582997) (xy 112.765829 136.811289) (xy 112.933933 137.022085) + (xy 113.124582 137.212734) (xy 113.335378 137.380838) (xy 113.56367 137.524284) (xy 113.806588 137.641267) + (xy 113.997716 137.708145) (xy 114.061064 137.730312) (xy 114.061072 137.730315) (xy 114.061075 137.730315) + (xy 114.061076 137.730316) (xy 114.323935 137.790312) (xy 114.591854 137.820499) (xy 114.591855 137.8205) + (xy 114.591858 137.8205) (xy 114.861479 137.8205) (xy 114.861479 137.820499) (xy 115.129399 137.790312) + (xy 115.392258 137.730316) (xy 115.646746 137.641267) (xy 115.889664 137.524284) (xy 116.117956 137.380838) + (xy 116.328752 137.212734) (xy 116.519401 137.022085) (xy 116.687505 136.811289) (xy 116.830951 136.582997) + (xy 116.947934 136.340079) (xy 117.036983 136.085591) (xy 117.096979 135.822732) (xy 117.127167 135.554809) + (xy 117.127167 135.285191) (xy 117.096979 135.017268) (xy 117.036983 134.754409) (xy 116.947934 134.499921) + (xy 116.911589 134.424451) (xy 116.902597 134.405778) (xy 120.6595 134.405778) (xy 120.6595 136.834221) + (xy 120.669904 136.966412) (xy 120.669905 136.966419) (xy 120.724902 137.184678) (xy 120.724903 137.184681) + (xy 120.817991 137.389622) (xy 120.817997 137.389632) (xy 120.946174 137.574645) (xy 120.946178 137.57465) + (xy 120.946181 137.574654) (xy 121.105346 137.733819) (xy 121.10535 137.733822) (xy 121.105354 137.733825) + (xy 121.215445 137.810096) (xy 121.290374 137.862007) (xy 121.495317 137.955096) (xy 121.495321 137.955097) + (xy 121.71358 138.010094) (xy 121.713582 138.010094) (xy 121.713589 138.010096) (xy 121.845784 138.0205) + (xy 121.845792 138.0205) (xy 124.274208 138.0205) (xy 124.274216 138.0205) (xy 124.406411 138.010096) + (xy 124.624683 137.955096) (xy 124.829626 137.862007) (xy 125.014654 137.733819) (xy 125.173819 137.574654) + (xy 125.302007 137.389626) (xy 125.395096 137.184683) (xy 125.450096 136.966411) (xy 125.4605 136.834216) + (xy 125.4605 136.119123) (xy 125.480185 136.052084) (xy 125.532989 136.006329) (xy 125.602147 135.996385) + (xy 125.665703 136.02541) (xy 125.703477 136.084188) (xy 125.705391 136.09153) (xy 125.749684 136.285594) + (xy 125.749687 136.285602) (xy 125.838734 136.540082) (xy 125.955714 136.782994) (xy 125.987894 136.834208) + (xy 126.099162 137.011289) (xy 126.267266 137.222085) (xy 126.457915 137.412734) (xy 126.668711 137.580838) + (xy 126.877466 137.712008) (xy 126.897005 137.724285) (xy 126.909529 137.730316) (xy 127.139921 137.841267) + (xy 127.331049 137.908145) (xy 127.394397 137.930312) (xy 127.394405 137.930315) (xy 127.394408 137.930315) + (xy 127.394409 137.930316) (xy 127.657268 137.990312) (xy 127.925187 138.020499) (xy 127.925188 138.0205) + (xy 127.925191 138.0205) (xy 128.194812 138.0205) (xy 128.194812 138.020499) (xy 128.462732 137.990312) + (xy 128.725591 137.930316) (xy 128.980079 137.841267) (xy 129.222997 137.724284) (xy 129.451289 137.580838) + (xy 129.662085 137.412734) (xy 129.852734 137.222085) (xy 130.020838 137.011289) (xy 130.164284 136.782997) + (xy 130.281267 136.540079) (xy 130.370316 136.285591) (xy 130.430312 136.022732) (xy 130.430313 136.02272) + (xy 130.430314 136.022717) (xy 130.43678 135.965332) (xy 130.463846 135.900918) (xy 130.521441 135.861362) + (xy 130.591278 135.859225) (xy 130.651185 135.895183) (xy 130.68214 135.957821) (xy 130.68322 135.965332) + (xy 130.689685 136.022717) (xy 130.689687 136.022729) (xy 130.689688 136.022732) (xy 130.703715 136.084188) + (xy 130.749684 136.285594) (xy 130.749687 136.285602) (xy 130.838734 136.540082) (xy 130.955714 136.782994) + (xy 130.987894 136.834208) (xy 131.099162 137.011289) (xy 131.267266 137.222085) (xy 131.457915 137.412734) + (xy 131.668711 137.580838) (xy 131.877466 137.712008) (xy 131.897005 137.724285) (xy 131.909529 137.730316) + (xy 132.139921 137.841267) (xy 132.331049 137.908145) (xy 132.394397 137.930312) (xy 132.394405 137.930315) + (xy 132.394408 137.930315) (xy 132.394409 137.930316) (xy 132.657268 137.990312) (xy 132.925187 138.020499) + (xy 132.925188 138.0205) (xy 132.925191 138.0205) (xy 133.194812 138.0205) (xy 133.194812 138.020499) + (xy 133.462732 137.990312) (xy 133.725591 137.930316) (xy 133.980079 137.841267) (xy 134.222997 137.724284) + (xy 134.451289 137.580838) (xy 134.662085 137.412734) (xy 134.852734 137.222085) (xy 135.020838 137.011289) + (xy 135.164284 136.782997) (xy 135.281267 136.540079) (xy 135.370316 136.285591) (xy 135.430312 136.022732) + (xy 135.4605 135.754809) (xy 135.4605 135.485191) (xy 135.430312 135.217268) (xy 135.370316 134.954409) + (xy 135.281267 134.699921) (xy 135.164284 134.457003) (xy 135.020838 134.228711) (xy 134.852734 134.017915) + (xy 134.662085 133.827266) (xy 134.451289 133.659162) (xy 134.222997 133.515716) (xy 134.222994 133.515714) + (xy 133.980082 133.398734) (xy 133.725602 133.309687) (xy 133.725594 133.309684) (xy 133.528446 133.264687) + (xy 133.462732 133.249688) (xy 133.462728 133.249687) (xy 133.462719 133.249686) (xy 133.194813 133.2195) + (xy 133.194809 133.2195) (xy 132.925191 133.2195) (xy 132.925186 133.2195) (xy 132.65728 133.249686) + (xy 132.657268 133.249688) (xy 132.394405 133.309684) (xy 132.394397 133.309687) (xy 132.139917 133.398734) + (xy 131.897005 133.515714) (xy 131.668712 133.659161) (xy 131.457915 133.827265) (xy 131.267265 134.017915) + (xy 131.099161 134.228712) (xy 130.955714 134.457005) (xy 130.838734 134.699917) (xy 130.749687 134.954397) + (xy 130.749684 134.954405) (xy 130.689688 135.217268) (xy 130.689686 135.21728) (xy 130.68322 135.274668) + (xy 130.656153 135.339082) (xy 130.598558 135.378637) (xy 130.528722 135.380774) (xy 130.468815 135.344816) + (xy 130.437859 135.282178) (xy 130.43678 135.274668) (xy 130.430313 135.21728) (xy 130.430312 135.217268) + (xy 130.370316 134.954409) (xy 130.281267 134.699921) (xy 130.164284 134.457003) (xy 130.020838 134.228711) + (xy 129.852734 134.017915) (xy 129.662085 133.827266) (xy 129.451289 133.659162) (xy 129.222997 133.515716) + (xy 129.222994 133.515714) (xy 128.980082 133.398734) (xy 128.725602 133.309687) (xy 128.725594 133.309684) + (xy 128.528446 133.264687) (xy 128.462732 133.249688) (xy 128.462728 133.249687) (xy 128.462719 133.249686) + (xy 128.194813 133.2195) (xy 128.194809 133.2195) (xy 127.925191 133.2195) (xy 127.925186 133.2195) + (xy 127.65728 133.249686) (xy 127.657268 133.249688) (xy 127.394405 133.309684) (xy 127.394397 133.309687) + (xy 127.139917 133.398734) (xy 126.897005 133.515714) (xy 126.668712 133.659161) (xy 126.457915 133.827265) + (xy 126.267265 134.017915) (xy 126.099161 134.228712) (xy 125.955714 134.457005) (xy 125.838734 134.699917) + (xy 125.749687 134.954397) (xy 125.749684 134.954405) (xy 125.705391 135.148469) (xy 125.671282 135.209447) + (xy 125.609621 135.242305) (xy 125.539984 135.23661) (xy 125.48448 135.19417) (xy 125.460732 135.12846) + (xy 125.4605 135.120876) (xy 125.4605 134.405791) (xy 125.4605 134.405784) (xy 125.450096 134.273589) + (xy 125.445611 134.255791) (xy 125.395097 134.055321) (xy 125.395096 134.055318) (xy 125.388138 134.04) + (xy 125.302007 133.850374) (xy 125.217245 133.728027) (xy 125.173825 133.665354) (xy 125.173822 133.66535) + (xy 125.173819 133.665346) (xy 125.014654 133.506181) (xy 125.01465 133.506178) (xy 125.014645 133.506174) + (xy 124.829632 133.377997) (xy 124.82963 133.377995) (xy 124.829626 133.377993) (xy 124.802597 133.365716) + (xy 124.624681 133.284903) (xy 124.624678 133.284902) (xy 124.406419 133.229905) (xy 124.406412 133.229904) + (xy 124.274221 133.2195) (xy 124.274216 133.2195) (xy 121.845784 133.2195) (xy 121.845778 133.2195) + (xy 121.713587 133.229904) (xy 121.71358 133.229905) (xy 121.495321 133.284902) (xy 121.495318 133.284903) + (xy 121.290377 133.377991) (xy 121.290367 133.377997) (xy 121.105354 133.506174) (xy 121.105342 133.506184) + (xy 120.946184 133.665342) (xy 120.946174 133.665354) (xy 120.817997 133.850367) (xy 120.817991 133.850377) + (xy 120.724903 134.055318) (xy 120.724902 134.055321) (xy 120.669905 134.27358) (xy 120.669904 134.273587) + (xy 120.6595 134.405778) (xy 116.902597 134.405778) (xy 116.830954 134.257008) (xy 116.830181 134.255778) + (xy 116.687505 134.028711) (xy 116.519401 133.817915) (xy 116.328752 133.627266) (xy 116.117956 133.459162) + (xy 115.889664 133.315716) (xy 115.889661 133.315714) (xy 115.646749 133.198734) (xy 115.392269 133.109687) + (xy 115.392261 133.109684) (xy 115.195113 133.064687) (xy 115.129399 133.049688) (xy 115.129395 133.049687) + (xy 115.129386 133.049686) (xy 114.86148 133.0195) (xy 114.861476 133.0195) (xy 114.591858 133.0195) + (xy 114.591853 133.0195) (xy 114.323947 133.049686) (xy 114.323935 133.049688) (xy 114.061072 133.109684) + (xy 114.061064 133.109687) (xy 113.806584 133.198734) (xy 113.563672 133.315714) (xy 113.335379 133.459161) + (xy 113.124582 133.627265) (xy 112.933932 133.817915) (xy 112.765828 134.028712) (xy 112.622381 134.257005) + (xy 112.505401 134.499917) (xy 112.416354 134.754397) (xy 112.416351 134.754405) (xy 112.356355 135.017268) + (xy 112.356353 135.01728) (xy 112.349887 135.074668) (xy 112.32282 135.139082) (xy 112.265225 135.178637) + (xy 112.195389 135.180774) (xy 112.135482 135.144816) (xy 112.104526 135.082178) (xy 112.103447 135.074668) + (xy 112.09698 135.01728) (xy 112.096979 135.017268) (xy 112.036983 134.754409) (xy 111.947934 134.499921) + (xy 111.830951 134.257003) (xy 111.687505 134.028711) (xy 111.519401 133.817915) (xy 111.328752 133.627266) + (xy 111.117956 133.459162) (xy 110.889664 133.315716) (xy 110.889661 133.315714) (xy 110.646749 133.198734) + (xy 110.392269 133.109687) (xy 110.392261 133.109684) (xy 110.195113 133.064687) (xy 110.129399 133.049688) + (xy 110.129395 133.049687) (xy 110.129386 133.049686) (xy 109.86148 133.0195) (xy 109.861476 133.0195) + (xy 109.591858 133.0195) (xy 109.591853 133.0195) (xy 109.323947 133.049686) (xy 109.323935 133.049688) + (xy 109.061072 133.109684) (xy 109.061064 133.109687) (xy 108.806584 133.198734) (xy 108.563672 133.315714) + (xy 108.335379 133.459161) (xy 108.124582 133.627265) (xy 107.933932 133.817915) (xy 107.765828 134.028712) + (xy 107.622381 134.257005) (xy 107.505401 134.499917) (xy 107.416354 134.754397) (xy 107.416351 134.754405) + (xy 107.372058 134.948469) (xy 107.337949 135.009447) (xy 107.276288 135.042305) (xy 107.206651 135.03661) + (xy 107.151147 134.99417) (xy 107.127399 134.92846) (xy 107.127167 134.920876) (xy 107.127167 134.205791) + (xy 107.127167 134.205784) (xy 107.116763 134.073589) (xy 107.108135 134.03935) (xy 107.061764 133.855321) + (xy 107.061763 133.855318) (xy 107.059517 133.850374) (xy 106.968674 133.650374) (xy 106.922916 133.584327) + (xy 106.840492 133.465354) (xy 106.840489 133.46535) (xy 106.840486 133.465346) (xy 106.681321 133.306181) + (xy 106.681317 133.306178) (xy 106.681312 133.306174) (xy 106.496299 133.177997) (xy 106.496297 133.177995) + (xy 106.496293 133.177993) (xy 106.484349 133.172568) (xy 106.291348 133.084903) (xy 106.291345 133.084902) + (xy 106.073086 133.029905) (xy 106.073079 133.029904) (xy 105.940888 133.0195) (xy 105.940883 133.0195) + (xy 103.512451 133.0195) (xy 103.512445 133.0195) (xy 103.380254 133.029904) (xy 103.380247 133.029905) + (xy 103.161988 133.084902) (xy 103.161985 133.084903) (xy 102.957044 133.177991) (xy 102.957034 133.177997) + (xy 102.772021 133.306174) (xy 102.772009 133.306184) (xy 102.612851 133.465342) (xy 102.612841 133.465354) + (xy 102.484664 133.650367) (xy 102.484658 133.650377) (xy 102.39157 133.855318) (xy 102.391569 133.855321) + (xy 102.336572 134.07358) (xy 102.336571 134.073587) (xy 102.326167 134.205778) (xy 98.434013 134.205778) + (xy 98.42277 134.187886) (xy 98.354171 134.078711) (xy 98.186067 133.867915) (xy 97.995418 133.677266) + (xy 97.990571 133.673401) (xy 97.851433 133.562442) (xy 97.784622 133.509162) (xy 97.575869 133.377993) + (xy 97.556327 133.365714) (xy 97.313415 133.248734) (xy 97.058935 133.159687) (xy 97.058927 133.159684) + (xy 96.83986 133.109684) (xy 96.796065 133.099688) (xy 96.796061 133.099687) (xy 96.796052 133.099686) + (xy 96.528146 133.0695) (xy 96.528142 133.0695) (xy 96.258524 133.0695) (xy 96.258519 133.0695) + (xy 95.990613 133.099686) (xy 95.990601 133.099688) (xy 95.727738 133.159684) (xy 95.72773 133.159687) + (xy 95.47325 133.248734) (xy 95.230338 133.365714) (xy 95.002045 133.509161) (xy 94.791248 133.677265) + (xy 94.600598 133.867915) (xy 94.432494 134.078712) (xy 94.289047 134.307005) (xy 94.172067 134.549917) + (xy 94.08302 134.804397) (xy 94.083017 134.804405) (xy 94.023021 135.067268) (xy 94.023019 135.06728) + (xy 94.016553 135.124668) (xy 93.989486 135.189082) (xy 93.931891 135.228637) (xy 93.862055 135.230774) + (xy 93.802148 135.194816) (xy 93.771192 135.132178) (xy 93.770113 135.124668) (xy 93.763646 135.06728) + (xy 93.763645 135.067268) (xy 93.703649 134.804409) (xy 93.6146 134.549921) (xy 93.497617 134.307003) + (xy 93.354171 134.078711) (xy 93.186067 133.867915) (xy 92.995418 133.677266) (xy 92.990571 133.673401) + (xy 92.851433 133.562442) (xy 92.784622 133.509162) (xy 92.575869 133.377993) (xy 92.556327 133.365714) + (xy 92.313415 133.248734) (xy 92.058935 133.159687) (xy 92.058927 133.159684) (xy 91.83986 133.109684) + (xy 91.796065 133.099688) (xy 91.796061 133.099687) (xy 91.796052 133.099686) (xy 91.528146 133.0695) + (xy 91.528142 133.0695) (xy 91.258524 133.0695) (xy 91.258519 133.0695) (xy 90.990613 133.099686) + (xy 90.990601 133.099688) (xy 90.727738 133.159684) (xy 90.72773 133.159687) (xy 90.47325 133.248734) + (xy 90.230338 133.365714) (xy 90.002045 133.509161) (xy 89.791248 133.677265) (xy 89.600598 133.867915) + (xy 89.432494 134.078712) (xy 89.289047 134.307005) (xy 89.172067 134.549917) (xy 89.08302 134.804397) + (xy 89.083017 134.804405) (xy 89.038724 134.998469) (xy 89.004615 135.059447) (xy 88.942954 135.092305) + (xy 88.873317 135.08661) (xy 88.817813 135.04417) (xy 88.794065 134.97846) (xy 88.793833 134.970876) + (xy 88.793833 134.255791) (xy 88.793833 134.255784) (xy 88.783429 134.123589) (xy 88.759137 134.027186) + (xy 88.72843 133.905321) (xy 88.728429 133.905318) (xy 88.728076 133.904541) (xy 88.63534 133.700374) + (xy 88.600695 133.650367) (xy 88.507158 133.515354) (xy 88.507155 133.51535) (xy 88.507152 133.515346) + (xy 88.347987 133.356181) (xy 88.347983 133.356178) (xy 88.347978 133.356174) (xy 88.162965 133.227997) + (xy 88.162963 133.227995) (xy 88.162959 133.227993) (xy 88.040936 133.172568) (xy 87.958014 133.134903) + (xy 87.958011 133.134902) (xy 87.739752 133.079905) (xy 87.739745 133.079904) (xy 87.607554 133.0695) + (xy 87.607549 133.0695) (xy 85.179117 133.0695) (xy 85.179111 133.0695) (xy 85.04692 133.079904) + (xy 85.046913 133.079905) (xy 84.828654 133.134902) (xy 84.828651 133.134903) (xy 84.62371 133.227991) + (xy 84.6237 133.227997) (xy 84.438687 133.356174) (xy 84.438675 133.356184) (xy 84.279517 133.515342) + (xy 84.279507 133.515354) (xy 84.15133 133.700367) (xy 84.151324 133.700377) (xy 84.058236 133.905318) + (xy 84.058235 133.905321) (xy 84.003238 134.12358) (xy 84.003237 134.123587) (xy 83.992833 134.255778) + (xy 80.163514 134.255778) (xy 80.020838 134.028711) (xy 79.852734 133.817915) (xy 79.662085 133.627266) + (xy 79.451289 133.459162) (xy 79.222997 133.315716) (xy 79.222994 133.315714) (xy 78.980082 133.198734) + (xy 78.725602 133.109687) (xy 78.725594 133.109684) (xy 78.528446 133.064687) (xy 78.462732 133.049688) + (xy 78.462728 133.049687) (xy 78.462719 133.049686) (xy 78.194813 133.0195) (xy 78.194809 133.0195) + (xy 77.925191 133.0195) (xy 77.925186 133.0195) (xy 77.65728 133.049686) (xy 77.657268 133.049688) + (xy 77.394405 133.109684) (xy 77.394397 133.109687) (xy 77.139917 133.198734) (xy 76.897005 133.315714) + (xy 76.668712 133.459161) (xy 76.457915 133.627265) (xy 76.267265 133.817915) (xy 76.099161 134.028712) + (xy 75.955714 134.257005) (xy 75.838734 134.499917) (xy 75.749687 134.754397) (xy 75.749684 134.754405) + (xy 75.689688 135.017268) (xy 75.689686 135.01728) (xy 75.68322 135.074668) (xy 75.656153 135.139082) + (xy 75.598558 135.178637) (xy 75.528722 135.180774) (xy 75.468815 135.144816) (xy 75.437859 135.082178) + (xy 75.43678 135.074668) (xy 75.430313 135.01728) (xy 75.430312 135.017268) (xy 75.370316 134.754409) + (xy 75.281267 134.499921) (xy 75.164284 134.257003) (xy 75.020838 134.028711) (xy 74.852734 133.817915) + (xy 74.662085 133.627266) (xy 74.451289 133.459162) (xy 74.222997 133.315716) (xy 74.222994 133.315714) + (xy 73.980082 133.198734) (xy 73.725602 133.109687) (xy 73.725594 133.109684) (xy 73.528446 133.064687) + (xy 73.462732 133.049688) (xy 73.462728 133.049687) (xy 73.462719 133.049686) (xy 73.194813 133.0195) + (xy 73.194809 133.0195) (xy 72.925191 133.0195) (xy 72.925186 133.0195) (xy 72.65728 133.049686) + (xy 72.657268 133.049688) (xy 72.394405 133.109684) (xy 72.394397 133.109687) (xy 72.139917 133.198734) + (xy 71.897005 133.315714) (xy 71.668712 133.459161) (xy 71.457915 133.627265) (xy 71.267265 133.817915) + (xy 71.099161 134.028712) (xy 70.955714 134.257005) (xy 70.838734 134.499917) (xy 70.749687 134.754397) + (xy 70.749684 134.754405) (xy 70.705391 134.948469) (xy 70.671282 135.009447) (xy 70.609621 135.042305) + (xy 70.539984 135.03661) (xy 70.48448 134.99417) (xy 70.460732 134.92846) (xy 70.4605 134.920876) + (xy 70.4605 134.205791) (xy 70.4605 134.205784) (xy 70.450096 134.073589) (xy 70.441468 134.03935) + (xy 70.395097 133.855321) (xy 70.395096 133.855318) (xy 70.39285 133.850374) (xy 70.302007 133.650374) + (xy 70.256249 133.584327) (xy 70.173825 133.465354) (xy 70.173822 133.46535) (xy 70.173819 133.465346) + (xy 70.014654 133.306181) (xy 70.01465 133.306178) (xy 70.014645 133.306174) (xy 69.829632 133.177997) + (xy 69.82963 133.177995) (xy 69.829626 133.177993) (xy 69.817682 133.172568) (xy 69.624681 133.084903) + (xy 69.624678 133.084902) (xy 69.406419 133.029905) (xy 69.406412 133.029904) (xy 69.274221 133.0195) + (xy 69.274216 133.0195) (xy 66.845784 133.0195) (xy 66.845778 133.0195) (xy 66.713587 133.029904) + (xy 66.71358 133.029905) (xy 66.495321 133.084902) (xy 66.495318 133.084903) (xy 66.290377 133.177991) + (xy 66.290367 133.177997) (xy 66.105354 133.306174) (xy 66.105342 133.306184) (xy 65.946184 133.465342) + (xy 65.946174 133.465354) (xy 65.817997 133.650367) (xy 65.817991 133.650377) (xy 65.724903 133.855318) + (xy 65.724902 133.855321) (xy 65.669905 134.07358) (xy 65.669904 134.073587) (xy 65.6595 134.205778) + (xy 58.4505 134.205778) (xy 58.4505 124.529568) (xy 64.1095 124.529568) (xy 64.1095 124.810431) + (xy 64.140942 125.089494) (xy 64.140945 125.089512) (xy 64.203439 125.363317) (xy 64.203443 125.363329) + (xy 64.2962 125.628411) (xy 64.418053 125.881442) (xy 64.418055 125.881445) (xy 64.567477 126.119248) + (xy 64.742584 126.338825) (xy 64.941175 126.537416) (xy 65.160752 126.712523) (xy 65.398555 126.861945) + (xy 65.651592 126.983801) (xy 65.794484 127.033801) (xy 65.91667 127.076556) (xy 65.916682 127.07656) + (xy 66.190491 127.139055) (xy 66.190497 127.139055) (xy 66.190505 127.139057) (xy 66.376547 127.160018) + (xy 66.469569 127.170499) (xy 66.469572 127.1705) (xy 66.469575 127.1705) (xy 66.750428 127.1705) + (xy 66.750429 127.170499) (xy 66.893055 127.154429) (xy 67.029494 127.139057) (xy 67.029499 127.139056) + (xy 67.029509 127.139055) (xy 67.303318 127.07656) (xy 67.568408 126.983801) (xy 67.821445 126.861945) + (xy 68.059248 126.712523) (xy 68.278825 126.537416) (xy 68.477416 126.338825) (xy 68.652523 126.119248) + (xy 68.801945 125.881445) (xy 68.923801 125.628408) (xy 69.01656 125.363318) (xy 69.079055 125.089509) + (xy 69.082332 125.060431) (xy 69.099232 124.910431) (xy 69.1105 124.810425) (xy 69.1105 124.579568) + (xy 76.1595 124.579568) (xy 76.1595 124.860431) (xy 76.190942 125.139494) (xy 76.190945 125.139512) + (xy 76.253439 125.413317) (xy 76.253443 125.413329) (xy 76.3462 125.678411) (xy 76.468053 125.931442) + (xy 76.468055 125.931445) (xy 76.617477 126.169248) (xy 76.792584 126.388825) (xy 76.991175 126.587416) + (xy 77.210752 126.762523) (xy 77.448555 126.911945) (xy 77.701592 127.033801) (xy 77.844484 127.083801) + (xy 77.96667 127.126556) (xy 77.966682 127.12656) (xy 78.240491 127.189055) (xy 78.240497 127.189055) + (xy 78.240505 127.189057) (xy 78.426547 127.210018) (xy 78.519569 127.220499) (xy 78.519572 127.2205) + (xy 78.519575 127.2205) (xy 78.800428 127.2205) (xy 78.800429 127.220499) (xy 78.943055 127.204429) + (xy 79.079494 127.189057) (xy 79.079499 127.189056) (xy 79.079509 127.189055) (xy 79.353318 127.12656) + (xy 79.618408 127.033801) (xy 79.871445 126.911945) (xy 80.109248 126.762523) (xy 80.328825 126.587416) + (xy 80.527416 126.388825) (xy 80.702523 126.169248) (xy 80.851945 125.931445) (xy 80.973801 125.678408) + (xy 81.06656 125.413318) (xy 81.129055 125.139509) (xy 81.143599 125.010431) (xy 81.160499 124.860431) + (xy 81.1605 124.860427) (xy 81.1605 124.579572) (xy 81.160499 124.579568) (xy 82.442833 124.579568) + (xy 82.442833 124.860431) (xy 82.474275 125.139494) (xy 82.474278 125.139512) (xy 82.536772 125.413317) + (xy 82.536776 125.413329) (xy 82.629533 125.678411) (xy 82.751386 125.931442) (xy 82.751388 125.931445) + (xy 82.90081 126.169248) (xy 83.075917 126.388825) (xy 83.274508 126.587416) (xy 83.494085 126.762523) + (xy 83.731888 126.911945) (xy 83.984925 127.033801) (xy 84.127817 127.083801) (xy 84.250003 127.126556) + (xy 84.250015 127.12656) (xy 84.523824 127.189055) (xy 84.52383 127.189055) (xy 84.523838 127.189057) + (xy 84.70988 127.210018) (xy 84.802902 127.220499) (xy 84.802905 127.2205) (xy 84.802908 127.2205) + (xy 85.083761 127.2205) (xy 85.083762 127.220499) (xy 85.226388 127.204429) (xy 85.362827 127.189057) + (xy 85.362832 127.189056) (xy 85.362842 127.189055) (xy 85.636651 127.12656) (xy 85.901741 127.033801) + (xy 86.154778 126.911945) (xy 86.392581 126.762523) (xy 86.612158 126.587416) (xy 86.810749 126.388825) + (xy 86.985856 126.169248) (xy 87.135278 125.931445) (xy 87.257134 125.678408) (xy 87.349893 125.413318) + (xy 87.412388 125.139509) (xy 87.426932 125.010431) (xy 87.443832 124.860431) (xy 87.443833 124.860427) + (xy 87.443833 124.629568) (xy 94.492833 124.629568) (xy 94.492833 124.910431) (xy 94.524275 125.189494) + (xy 94.524278 125.189512) (xy 94.586772 125.463317) (xy 94.586776 125.463329) (xy 94.679533 125.728411) + (xy 94.801386 125.981442) (xy 94.801388 125.981445) (xy 94.95081 126.219248) (xy 95.125917 126.438825) + (xy 95.324508 126.637416) (xy 95.544085 126.812523) (xy 95.703234 126.912523) (xy 95.78189 126.961946) + (xy 95.866233 127.002563) (xy 96.034925 127.083801) (xy 96.192829 127.139054) (xy 96.300003 127.176556) + (xy 96.300015 127.17656) (xy 96.573824 127.239055) (xy 96.57383 127.239055) (xy 96.573838 127.239057) + (xy 96.75988 127.260018) (xy 96.852902 127.270499) (xy 96.852905 127.2705) (xy 96.852908 127.2705) + (xy 97.133761 127.2705) (xy 97.133762 127.270499) (xy 97.276388 127.254429) (xy 97.412827 127.239057) + (xy 97.412832 127.239056) (xy 97.412842 127.239055) (xy 97.686651 127.17656) (xy 97.951741 127.083801) + (xy 98.204778 126.961945) (xy 98.442581 126.812523) (xy 98.662158 126.637416) (xy 98.860749 126.438825) + (xy 99.035856 126.219248) (xy 99.185278 125.981445) (xy 99.307134 125.728408) (xy 99.399893 125.463318) + (xy 99.462388 125.189509) (xy 99.476932 125.060431) (xy 99.482565 125.010431) (xy 99.493833 124.910425) + (xy 99.493833 124.629575) (xy 99.492035 124.613621) (xy 99.483739 124.539979) (xy 99.482566 124.529568) + (xy 100.776167 124.529568) (xy 100.776167 124.810431) (xy 100.807609 125.089494) (xy 100.807612 125.089512) + (xy 100.870106 125.363317) (xy 100.87011 125.363329) (xy 100.962867 125.628411) (xy 101.08472 125.881442) + (xy 101.084722 125.881445) (xy 101.234144 126.119248) (xy 101.409251 126.338825) (xy 101.607842 126.537416) + (xy 101.827419 126.712523) (xy 102.065222 126.861945) (xy 102.318259 126.983801) (xy 102.461151 127.033801) + (xy 102.583337 127.076556) (xy 102.583349 127.07656) (xy 102.857158 127.139055) (xy 102.857164 127.139055) + (xy 102.857172 127.139057) (xy 103.043214 127.160018) (xy 103.136236 127.170499) (xy 103.136239 127.1705) + (xy 103.136242 127.1705) (xy 103.417095 127.1705) (xy 103.417096 127.170499) (xy 103.559722 127.154429) + (xy 103.696161 127.139057) (xy 103.696166 127.139056) (xy 103.696176 127.139055) (xy 103.969985 127.07656) + (xy 104.235075 126.983801) (xy 104.488112 126.861945) (xy 104.725915 126.712523) (xy 104.945492 126.537416) + (xy 105.144083 126.338825) (xy 105.31919 126.119248) (xy 105.468612 125.881445) (xy 105.590468 125.628408) + (xy 105.683227 125.363318) (xy 105.745722 125.089509) (xy 105.748999 125.060431) (xy 105.765899 124.910431) + (xy 105.777167 124.810425) (xy 105.777167 124.579568) (xy 112.826167 124.579568) (xy 112.826167 124.860431) + (xy 112.857609 125.139494) (xy 112.857612 125.139512) (xy 112.920106 125.413317) (xy 112.92011 125.413329) + (xy 113.012867 125.678411) (xy 113.13472 125.931442) (xy 113.134722 125.931445) (xy 113.284144 126.169248) + (xy 113.459251 126.388825) (xy 113.657842 126.587416) (xy 113.877419 126.762523) (xy 114.115222 126.911945) + (xy 114.368259 127.033801) (xy 114.511151 127.083801) (xy 114.633337 127.126556) (xy 114.633349 127.12656) + (xy 114.907158 127.189055) (xy 114.907164 127.189055) (xy 114.907172 127.189057) (xy 115.093214 127.210018) + (xy 115.186236 127.220499) (xy 115.186239 127.2205) (xy 115.186242 127.2205) (xy 115.467095 127.2205) + (xy 115.467096 127.220499) (xy 115.609722 127.204429) (xy 115.746161 127.189057) (xy 115.746166 127.189056) + (xy 115.746176 127.189055) (xy 116.019985 127.12656) (xy 116.285075 127.033801) (xy 116.538112 126.911945) + (xy 116.775915 126.762523) (xy 116.995492 126.587416) (xy 117.194083 126.388825) (xy 117.36919 126.169248) + (xy 117.518612 125.931445) (xy 117.640468 125.678408) (xy 117.733227 125.413318) (xy 117.795722 125.139509) + (xy 117.810266 125.010431) (xy 117.827166 124.860431) (xy 117.827167 124.860427) (xy 117.827167 124.729568) + (xy 119.1095 124.729568) (xy 119.1095 125.010431) (xy 119.140942 125.289494) (xy 119.140945 125.289512) + (xy 119.203439 125.563317) (xy 119.203443 125.563329) (xy 119.2962 125.828411) (xy 119.418053 126.081442) + (xy 119.418055 126.081445) (xy 119.567477 126.319248) (xy 119.742584 126.538825) (xy 119.941175 126.737416) + (xy 120.160752 126.912523) (xy 120.398555 127.061945) (xy 120.398557 127.061946) (xy 120.4829 127.102563) + (xy 120.651592 127.183801) (xy 120.794484 127.233801) (xy 120.91667 127.276556) (xy 120.916682 127.27656) + (xy 121.190491 127.339055) (xy 121.190497 127.339055) (xy 121.190505 127.339057) (xy 121.376547 127.360018) + (xy 121.469569 127.370499) (xy 121.469572 127.3705) (xy 121.469575 127.3705) (xy 121.750428 127.3705) + (xy 121.750429 127.370499) (xy 121.893055 127.354429) (xy 122.029494 127.339057) (xy 122.029499 127.339056) + (xy 122.029509 127.339055) (xy 122.303318 127.27656) (xy 122.568408 127.183801) (xy 122.821445 127.061945) + (xy 123.059248 126.912523) (xy 123.278825 126.737416) (xy 123.477416 126.538825) (xy 123.652523 126.319248) + (xy 123.801945 126.081445) (xy 123.923801 125.828408) (xy 124.01656 125.563318) (xy 124.079055 125.289509) + (xy 124.1105 125.010425) (xy 124.1105 124.729575) (xy 124.093599 124.579572) (xy 124.079057 124.450505) + (xy 124.079054 124.450487) (xy 124.01656 124.176682) (xy 124.016556 124.17667) (xy 123.972704 124.05135) + (xy 123.923801 123.911592) (xy 123.801945 123.658555) (xy 123.652523 123.420752) (xy 123.477416 123.201175) + (xy 123.278825 123.002584) (xy 123.059248 122.827477) (xy 122.821445 122.678055) (xy 122.821442 122.678053) + (xy 122.568411 122.5562) (xy 122.303329 122.463443) (xy 122.303317 122.463439) (xy 122.029512 122.400945) + (xy 122.029494 122.400942) (xy 121.750431 122.3695) (xy 121.750425 122.3695) (xy 121.469575 122.3695) + (xy 121.469568 122.3695) (xy 121.190505 122.400942) (xy 121.190487 122.400945) (xy 120.916682 122.463439) + (xy 120.91667 122.463443) (xy 120.651588 122.5562) (xy 120.398557 122.678053) (xy 120.160753 122.827476) + (xy 119.941175 123.002583) (xy 119.742583 123.201175) (xy 119.567476 123.420753) (xy 119.418053 123.658557) + (xy 119.2962 123.911588) (xy 119.203443 124.17667) (xy 119.203439 124.176682) (xy 119.140945 124.450487) + (xy 119.140942 124.450505) (xy 119.1095 124.729568) (xy 117.827167 124.729568) (xy 117.827167 124.579572) + (xy 117.827166 124.579568) (xy 117.795724 124.300505) (xy 117.795721 124.300487) (xy 117.733227 124.026682) + (xy 117.733223 124.02667) (xy 117.692954 123.911588) (xy 117.640468 123.761592) (xy 117.518612 123.508555) + (xy 117.36919 123.270752) (xy 117.194083 123.051175) (xy 116.995492 122.852584) (xy 116.775915 122.677477) + (xy 116.538112 122.528055) (xy 116.538109 122.528053) (xy 116.285078 122.4062) (xy 116.019996 122.313443) + (xy 116.019984 122.313439) (xy 115.746179 122.250945) (xy 115.746161 122.250942) (xy 115.467098 122.2195) + (xy 115.467092 122.2195) (xy 115.186242 122.2195) (xy 115.186235 122.2195) (xy 114.907172 122.250942) + (xy 114.907154 122.250945) (xy 114.633349 122.313439) (xy 114.633337 122.313443) (xy 114.368255 122.4062) + (xy 114.115224 122.528053) (xy 113.87742 122.677476) (xy 113.657842 122.852583) (xy 113.45925 123.051175) + (xy 113.284143 123.270753) (xy 113.13472 123.508557) (xy 113.012867 123.761588) (xy 112.92011 124.02667) + (xy 112.920106 124.026682) (xy 112.857612 124.300487) (xy 112.857609 124.300505) (xy 112.826167 124.579568) + (xy 105.777167 124.579568) (xy 105.777167 124.529575) (xy 105.745722 124.250491) (xy 105.683227 123.976682) + (xy 105.677945 123.961588) (xy 105.660132 123.91068) (xy 105.590468 123.711592) (xy 105.468612 123.458555) + (xy 105.31919 123.220752) (xy 105.144083 123.001175) (xy 104.945492 122.802584) (xy 104.725915 122.627477) + (xy 104.488112 122.478055) (xy 104.488109 122.478053) (xy 104.235078 122.3562) (xy 103.969996 122.263443) + (xy 103.969984 122.263439) (xy 103.696179 122.200945) (xy 103.696161 122.200942) (xy 103.417098 122.1695) + (xy 103.417092 122.1695) (xy 103.136242 122.1695) (xy 103.136235 122.1695) (xy 102.857172 122.200942) + (xy 102.857154 122.200945) (xy 102.583349 122.263439) (xy 102.583337 122.263443) (xy 102.318255 122.3562) + (xy 102.065224 122.478053) (xy 101.82742 122.627476) (xy 101.607842 122.802583) (xy 101.40925 123.001175) + (xy 101.234143 123.220753) (xy 101.08472 123.458557) (xy 100.962867 123.711588) (xy 100.87011 123.97667) + (xy 100.870106 123.976682) (xy 100.807612 124.250487) (xy 100.807609 124.250505) (xy 100.776167 124.529568) + (xy 99.482566 124.529568) (xy 99.468049 124.40074) (xy 99.462388 124.350491) (xy 99.399893 124.076682) + (xy 99.307134 123.811592) (xy 99.185278 123.558555) (xy 99.035856 123.320752) (xy 98.860749 123.101175) + (xy 98.662158 122.902584) (xy 98.442581 122.727477) (xy 98.204778 122.578055) (xy 98.204775 122.578053) + (xy 97.951744 122.4562) (xy 97.686662 122.363443) (xy 97.68665 122.363439) (xy 97.412845 122.300945) + (xy 97.412827 122.300942) (xy 97.133764 122.2695) (xy 97.133758 122.2695) (xy 96.852908 122.2695) + (xy 96.852901 122.2695) (xy 96.573838 122.300942) (xy 96.57382 122.300945) (xy 96.300015 122.363439) + (xy 96.300003 122.363443) (xy 96.034921 122.4562) (xy 95.78189 122.578053) (xy 95.544086 122.727476) + (xy 95.324508 122.902583) (xy 95.125916 123.101175) (xy 94.950809 123.320753) (xy 94.801386 123.558557) + (xy 94.679533 123.811588) (xy 94.586776 124.07667) (xy 94.586772 124.076682) (xy 94.524278 124.350487) + (xy 94.524275 124.350505) (xy 94.492833 124.629568) (xy 87.443833 124.629568) (xy 87.443833 124.579572) + (xy 87.443832 124.579568) (xy 87.41239 124.300505) (xy 87.412387 124.300487) (xy 87.349893 124.026682) + (xy 87.349889 124.02667) (xy 87.30962 123.911588) (xy 87.257134 123.761592) (xy 87.135278 123.508555) + (xy 86.985856 123.270752) (xy 86.810749 123.051175) (xy 86.612158 122.852584) (xy 86.392581 122.677477) + (xy 86.154778 122.528055) (xy 86.154775 122.528053) (xy 85.901744 122.4062) (xy 85.636662 122.313443) + (xy 85.63665 122.313439) (xy 85.362845 122.250945) (xy 85.362827 122.250942) (xy 85.083764 122.2195) + (xy 85.083758 122.2195) (xy 84.802908 122.2195) (xy 84.802901 122.2195) (xy 84.523838 122.250942) + (xy 84.52382 122.250945) (xy 84.250015 122.313439) (xy 84.250003 122.313443) (xy 83.984921 122.4062) + (xy 83.73189 122.528053) (xy 83.494086 122.677476) (xy 83.274508 122.852583) (xy 83.075916 123.051175) + (xy 82.900809 123.270753) (xy 82.751386 123.508557) (xy 82.629533 123.761588) (xy 82.536776 124.02667) + (xy 82.536772 124.026682) (xy 82.474278 124.300487) (xy 82.474275 124.300505) (xy 82.442833 124.579568) + (xy 81.160499 124.579568) (xy 81.129057 124.300505) (xy 81.129054 124.300487) (xy 81.06656 124.026682) + (xy 81.066556 124.02667) (xy 81.026287 123.911588) (xy 80.973801 123.761592) (xy 80.851945 123.508555) + (xy 80.702523 123.270752) (xy 80.527416 123.051175) (xy 80.328825 122.852584) (xy 80.109248 122.677477) + (xy 79.871445 122.528055) (xy 79.871442 122.528053) (xy 79.618411 122.4062) (xy 79.353329 122.313443) + (xy 79.353317 122.313439) (xy 79.079512 122.250945) (xy 79.079494 122.250942) (xy 78.800431 122.2195) + (xy 78.800425 122.2195) (xy 78.519575 122.2195) (xy 78.519568 122.2195) (xy 78.240505 122.250942) + (xy 78.240487 122.250945) (xy 77.966682 122.313439) (xy 77.96667 122.313443) (xy 77.701588 122.4062) + (xy 77.448557 122.528053) (xy 77.210753 122.677476) (xy 76.991175 122.852583) (xy 76.792583 123.051175) + (xy 76.617476 123.270753) (xy 76.468053 123.508557) (xy 76.3462 123.761588) (xy 76.253443 124.02667) + (xy 76.253439 124.026682) (xy 76.190945 124.300487) (xy 76.190942 124.300505) (xy 76.1595 124.579568) + (xy 69.1105 124.579568) (xy 69.1105 124.529575) (xy 69.079055 124.250491) (xy 69.01656 123.976682) + (xy 69.011278 123.961588) (xy 68.993465 123.91068) (xy 68.923801 123.711592) (xy 68.801945 123.458555) + (xy 68.652523 123.220752) (xy 68.477416 123.001175) (xy 68.278825 122.802584) (xy 68.059248 122.627477) + (xy 67.821445 122.478055) (xy 67.821442 122.478053) (xy 67.568411 122.3562) (xy 67.303329 122.263443) + (xy 67.303317 122.263439) (xy 67.029512 122.200945) (xy 67.029494 122.200942) (xy 66.750431 122.1695) + (xy 66.750425 122.1695) (xy 66.469575 122.1695) (xy 66.469568 122.1695) (xy 66.190505 122.200942) + (xy 66.190487 122.200945) (xy 65.916682 122.263439) (xy 65.91667 122.263443) (xy 65.651588 122.3562) + (xy 65.398557 122.478053) (xy 65.160753 122.627476) (xy 64.941175 122.802583) (xy 64.742583 123.001175) + (xy 64.567476 123.220753) (xy 64.418053 123.458557) (xy 64.2962 123.711588) (xy 64.203443 123.97667) + (xy 64.203439 123.976682) (xy 64.140945 124.250487) (xy 64.140942 124.250505) (xy 64.1095 124.529568) + (xy 58.4505 124.529568) (xy 58.4505 112.322486) (xy 64.3595 112.322486) (xy 64.3595 112.617513) + (xy 64.387976 112.833799) (xy 64.398007 112.909993) (xy 64.474361 113.194951) (xy 64.474364 113.194961) + (xy 64.587254 113.4675) (xy 64.587258 113.46751) (xy 64.734761 113.722993) (xy 64.914352 113.95704) + (xy 64.914358 113.957047) (xy 65.122952 114.165641) (xy 65.122959 114.165647) (xy 65.357006 114.345238) + (xy 65.612489 114.492741) (xy 65.61249 114.492741) (xy 65.612493 114.492743) (xy 65.885048 114.605639) + (xy 66.170007 114.681993) (xy 66.462494 114.7205) (xy 66.462501 114.7205) (xy 66.757499 114.7205) + (xy 66.757506 114.7205) (xy 67.049993 114.681993) (xy 67.334952 114.605639) (xy 67.607507 114.492743) + (xy 67.862994 114.345238) (xy 68.097042 114.165646) (xy 68.305646 113.957042) (xy 68.448589 113.770756) + (xy 68.465913 113.748179) (xy 68.465913 113.748178) (xy 68.485238 113.722994) (xy 68.632743 113.467507) + (xy 68.745639 113.194952) (xy 68.821993 112.909993) (xy 68.8605 112.617506) (xy 68.8605 112.322494) + (xy 68.821993 112.030007) (xy 68.745639 111.745048) (xy 68.740004 111.731445) (xy 68.695506 111.624016) + (xy 68.632743 111.472493) (xy 68.63242 111.471934) (xy 68.485238 111.217006) (xy 68.305647 110.982959) + (xy 68.305641 110.982952) (xy 68.097047 110.774358) (xy 68.09704 110.774352) (xy 67.862993 110.594761) + (xy 67.670253 110.483483) (xy 67.60751 110.447258) (xy 67.6075 110.447254) (xy 67.444092 110.379568) + (xy 70.1595 110.379568) (xy 70.1595 110.660431) (xy 70.190942 110.939494) (xy 70.190945 110.939512) + (xy 70.253439 111.213317) (xy 70.253443 111.213329) (xy 70.3462 111.478411) (xy 70.468053 111.731442) + (xy 70.468055 111.731445) (xy 70.617477 111.969248) (xy 70.705811 112.080015) (xy 70.777571 112.17) + (xy 70.792584 112.188825) (xy 70.991175 112.387416) (xy 71.210752 112.562523) (xy 71.448555 112.711945) + (xy 71.448557 112.711946) (xy 71.498458 112.735977) (xy 71.701592 112.833801) (xy 71.844484 112.883801) + (xy 71.96667 112.926556) (xy 71.966682 112.92656) (xy 72.240491 112.989055) (xy 72.240497 112.989055) + (xy 72.240505 112.989057) (xy 72.426547 113.010018) (xy 72.519569 113.020499) (xy 72.519572 113.0205) + (xy 72.519575 113.0205) (xy 72.800428 113.0205) (xy 72.800429 113.020499) (xy 72.943055 113.004429) + (xy 73.079494 112.989057) (xy 73.079499 112.989056) (xy 73.079509 112.989055) (xy 73.353318 112.92656) + (xy 73.618408 112.833801) (xy 73.871445 112.711945) (xy 74.109248 112.562523) (xy 74.328825 112.387416) + (xy 74.360936 112.355305) (xy 76.86 112.355305) (xy 76.86 112.584694) (xy 76.860001 112.58471) (xy 76.889942 112.812137) + (xy 76.949318 113.03373) (xy 77.037102 113.245659) (xy 77.037106 113.245669) (xy 77.151799 113.444324) + (xy 77.151805 113.444331) (xy 77.208381 113.518064) (xy 78.127037 112.599408) (xy 78.144075 112.662993) + (xy 78.209901 112.777007) (xy 78.302993 112.870099) (xy 78.417007 112.935925) (xy 78.48059 112.952962) + (xy 77.561934 113.871617) (xy 77.561934 113.871618) (xy 77.635666 113.928194) (xy 77.83433 114.042893) + (xy 77.83434 114.042897) (xy 78.046269 114.130681) (xy 78.267862 114.190057) (xy 78.495289 114.219998) + (xy 78.495306 114.22) (xy 78.724694 114.22) (xy 78.72471 114.219998) (xy 78.952137 114.190057) (xy 79.17373 114.130681) + (xy 79.385659 114.042897) (xy 79.385668 114.042893) (xy 79.584327 113.928197) (xy 79.584334 113.928192) + (xy 79.658064 113.871617) (xy 78.739409 112.952962) (xy 78.802993 112.935925) (xy 78.917007 112.870099) + (xy 79.010099 112.777007) (xy 79.075925 112.662993) (xy 79.092962 112.599409) (xy 80.011617 113.518064) + (xy 80.068192 113.444334) (xy 80.068197 113.444327) (xy 80.182893 113.245668) (xy 80.182897 113.245659) + (xy 80.270681 113.03373) (xy 80.330057 112.812137) (xy 80.359998 112.58471) (xy 80.36 112.584694) + (xy 80.36 112.372486) (xy 82.692833 112.372486) (xy 82.692833 112.667513) (xy 82.71858 112.863073) + (xy 82.73134 112.959993) (xy 82.794297 113.194952) (xy 82.807694 113.244951) (xy 82.807697 113.244961) + (xy 82.920587 113.5175) (xy 82.920591 113.51751) (xy 83.068094 113.772993) (xy 83.247685 114.00704) + (xy 83.247691 114.007047) (xy 83.456285 114.215641) (xy 83.456292 114.215647) (xy 83.690339 114.395238) + (xy 83.945822 114.542741) (xy 83.945823 114.542741) (xy 83.945826 114.542743) (xy 84.218381 114.655639) + (xy 84.50334 114.731993) (xy 84.795827 114.7705) (xy 84.795834 114.7705) (xy 85.090832 114.7705) + (xy 85.090839 114.7705) (xy 85.383326 114.731993) (xy 85.668285 114.655639) (xy 85.94084 114.542743) + (xy 86.196327 114.395238) (xy 86.430375 114.215646) (xy 86.638979 114.007042) (xy 86.818571 113.772994) + (xy 86.832899 113.748178) (xy 86.966074 113.51751) (xy 86.966076 113.517507) (xy 87.078972 113.244952) + (xy 87.155326 112.959993) (xy 87.193833 112.667506) (xy 87.193833 112.372494) (xy 87.155326 112.080007) + (xy 87.078972 111.795048) (xy 87.073337 111.781445) (xy 87.047573 111.719245) (xy 86.966076 111.522493) + (xy 86.950587 111.495666) (xy 86.818571 111.267006) (xy 86.63898 111.032959) (xy 86.638974 111.032952) + (xy 86.43038 110.824358) (xy 86.430373 110.824352) (xy 86.196326 110.644761) (xy 86.003586 110.533483) + (xy 85.940843 110.497258) (xy 85.940833 110.497254) (xy 85.777425 110.429568) (xy 88.492833 110.429568) + (xy 88.492833 110.710431) (xy 88.524275 110.989494) (xy 88.524278 110.989512) (xy 88.586772 111.263317) + (xy 88.586776 111.263329) (xy 88.679533 111.528411) (xy 88.801386 111.781442) (xy 88.840151 111.843136) + (xy 88.95081 112.019248) (xy 88.999264 112.080007) (xy 89.099717 112.205972) (xy 89.125917 112.238825) + (xy 89.324508 112.437416) (xy 89.544085 112.612523) (xy 89.781888 112.761945) (xy 90.034925 112.883801) + (xy 90.234013 112.953465) (xy 90.300003 112.976556) (xy 90.300015 112.97656) (xy 90.573824 113.039055) + (xy 90.57383 113.039055) (xy 90.573838 113.039057) (xy 90.75988 113.060018) (xy 90.852902 113.070499) + (xy 90.852905 113.0705) (xy 90.852908 113.0705) (xy 91.133761 113.0705) (xy 91.133762 113.070499) + (xy 91.276388 113.054429) (xy 91.412827 113.039057) (xy 91.412832 113.039056) (xy 91.412842 113.039055) + (xy 91.686651 112.97656) (xy 91.951741 112.883801) (xy 92.204778 112.761945) (xy 92.442581 112.612523) + (xy 92.662158 112.437416) (xy 92.694269 112.405305) (xy 95.193333 112.405305) (xy 95.193333 112.634694) + (xy 95.193334 112.63471) (xy 95.223275 112.862137) (xy 95.282651 113.08373) (xy 95.370435 113.295659) + (xy 95.370439 113.295669) (xy 95.485132 113.494324) (xy 95.485138 113.494331) (xy 95.541714 113.568064) + (xy 96.46037 112.649408) (xy 96.477408 112.712993) (xy 96.543234 112.827007) (xy 96.636326 112.920099) + (xy 96.75034 112.985925) (xy 96.813923 113.002962) (xy 95.895267 113.921617) (xy 95.895267 113.921618) + (xy 95.968999 113.978194) (xy 96.167663 114.092893) (xy 96.167673 114.092897) (xy 96.379602 114.180681) + (xy 96.601195 114.240057) (xy 96.828622 114.269998) (xy 96.828639 114.27) (xy 97.058027 114.27) + (xy 97.058043 114.269998) (xy 97.28547 114.240057) (xy 97.507063 114.180681) (xy 97.718992 114.092897) + (xy 97.719001 114.092893) (xy 97.91766 113.978197) (xy 97.917667 113.978192) (xy 97.991397 113.921617) + (xy 97.072742 113.002962) (xy 97.136326 112.985925) (xy 97.25034 112.920099) (xy 97.343432 112.827007) + (xy 97.409258 112.712993) (xy 97.426295 112.649409) (xy 98.34495 113.568064) (xy 98.401525 113.494334) + (xy 98.40153 113.494327) (xy 98.516226 113.295668) (xy 98.51623 113.295659) (xy 98.604014 113.08373) + (xy 98.66339 112.862137) (xy 98.693331 112.63471) (xy 98.693333 112.634694) (xy 98.693333 112.405305) + (xy 98.693332 112.405291) (xy 98.684028 112.334621) (xy 98.684028 112.33462) (xy 98.68243 112.322486) + (xy 101.026167 112.322486) (xy 101.026167 112.617513) (xy 101.054643 112.833799) (xy 101.064674 112.909993) + (xy 101.141028 113.194951) (xy 101.141031 113.194961) (xy 101.253921 113.4675) (xy 101.253925 113.46751) + (xy 101.401428 113.722993) (xy 101.581019 113.95704) (xy 101.581025 113.957047) (xy 101.789619 114.165641) + (xy 101.789626 114.165647) (xy 102.023673 114.345238) (xy 102.279156 114.492741) (xy 102.279157 114.492741) + (xy 102.27916 114.492743) (xy 102.551715 114.605639) (xy 102.836674 114.681993) (xy 103.129161 114.7205) + (xy 103.129168 114.7205) (xy 103.424166 114.7205) (xy 103.424173 114.7205) (xy 103.71666 114.681993) + (xy 104.001619 114.605639) (xy 104.274174 114.492743) (xy 104.529661 114.345238) (xy 104.763709 114.165646) + (xy 104.972313 113.957042) (xy 105.115256 113.770756) (xy 105.13258 113.748179) (xy 105.13258 113.748178) + (xy 105.151905 113.722994) (xy 105.29941 113.467507) (xy 105.412306 113.194952) (xy 105.48866 112.909993) + (xy 105.527167 112.617506) (xy 105.527167 112.322494) (xy 105.48866 112.030007) (xy 105.412306 111.745048) + (xy 105.406671 111.731445) (xy 105.362173 111.624016) (xy 105.29941 111.472493) (xy 105.299087 111.471934) + (xy 105.151905 111.217006) (xy 104.972314 110.982959) (xy 104.972308 110.982952) (xy 104.763714 110.774358) + (xy 104.763707 110.774352) (xy 104.52966 110.594761) (xy 104.33692 110.483483) (xy 104.274177 110.447258) + (xy 104.274167 110.447254) (xy 104.110759 110.379568) (xy 106.826167 110.379568) (xy 106.826167 110.660431) + (xy 106.857609 110.939494) (xy 106.857612 110.939512) (xy 106.920106 111.213317) (xy 106.92011 111.213329) + (xy 107.012867 111.478411) (xy 107.13472 111.731442) (xy 107.134722 111.731445) (xy 107.284144 111.969248) + (xy 107.372478 112.080015) (xy 107.444238 112.17) (xy 107.459251 112.188825) (xy 107.657842 112.387416) + (xy 107.877419 112.562523) (xy 108.115222 112.711945) (xy 108.115224 112.711946) (xy 108.165125 112.735977) + (xy 108.368259 112.833801) (xy 108.511151 112.883801) (xy 108.633337 112.926556) (xy 108.633349 112.92656) + (xy 108.907158 112.989055) (xy 108.907164 112.989055) (xy 108.907172 112.989057) (xy 109.093214 113.010018) + (xy 109.186236 113.020499) (xy 109.186239 113.0205) (xy 109.186242 113.0205) (xy 109.467095 113.0205) + (xy 109.467096 113.020499) (xy 109.609722 113.004429) (xy 109.746161 112.989057) (xy 109.746166 112.989056) + (xy 109.746176 112.989055) (xy 110.019985 112.92656) (xy 110.285075 112.833801) (xy 110.538112 112.711945) + (xy 110.775915 112.562523) (xy 110.995492 112.387416) (xy 111.027603 112.355305) (xy 113.526667 112.355305) + (xy 113.526667 112.584694) (xy 113.526668 112.58471) (xy 113.556609 112.812137) (xy 113.615985 113.03373) + (xy 113.703769 113.245659) (xy 113.703773 113.245669) (xy 113.818466 113.444324) (xy 113.818472 113.444331) + (xy 113.875048 113.518064) (xy 114.793704 112.599408) (xy 114.810742 112.662993) (xy 114.876568 112.777007) + (xy 114.96966 112.870099) (xy 115.083674 112.935925) (xy 115.147257 112.952962) (xy 114.228601 113.871617) + (xy 114.228601 113.871618) (xy 114.302333 113.928194) (xy 114.500997 114.042893) (xy 114.501007 114.042897) + (xy 114.712936 114.130681) (xy 114.934529 114.190057) (xy 115.161956 114.219998) (xy 115.161973 114.22) + (xy 115.391361 114.22) (xy 115.391377 114.219998) (xy 115.618804 114.190057) (xy 115.840397 114.130681) + (xy 116.052326 114.042897) (xy 116.052335 114.042893) (xy 116.250994 113.928197) (xy 116.251001 113.928192) + (xy 116.324731 113.871617) (xy 115.406076 112.952962) (xy 115.46966 112.935925) (xy 115.583674 112.870099) + (xy 115.676766 112.777007) (xy 115.742592 112.662993) (xy 115.759629 112.599409) (xy 116.678284 113.518064) + (xy 116.734859 113.444334) (xy 116.734864 113.444327) (xy 116.84956 113.245668) (xy 116.849564 113.245659) + (xy 116.937348 113.03373) (xy 116.996724 112.812137) (xy 117.026665 112.58471) (xy 117.026667 112.584694) + (xy 117.026667 112.522486) (xy 119.3595 112.522486) (xy 119.3595 112.817513) (xy 119.38044 112.97656) + (xy 119.398007 113.109993) (xy 119.456644 113.32883) (xy 119.474361 113.394951) (xy 119.474364 113.394961) + (xy 119.587254 113.6675) (xy 119.587258 113.66751) (xy 119.734761 113.922993) (xy 119.914352 114.15704) + (xy 119.914358 114.157047) (xy 120.122952 114.365641) (xy 120.122959 114.365647) (xy 120.357006 114.545238) + (xy 120.612489 114.692741) (xy 120.61249 114.692741) (xy 120.612493 114.692743) (xy 120.885048 114.805639) + (xy 121.170007 114.881993) (xy 121.462494 114.9205) (xy 121.462501 114.9205) (xy 121.757499 114.9205) + (xy 121.757506 114.9205) (xy 122.049993 114.881993) (xy 122.334952 114.805639) (xy 122.607507 114.692743) + (xy 122.862994 114.545238) (xy 123.097042 114.365646) (xy 123.305646 114.157042) (xy 123.459112 113.957042) + (xy 123.465913 113.948179) (xy 123.465913 113.948178) (xy 123.485238 113.922994) (xy 123.486033 113.921618) + (xy 123.596111 113.730955) (xy 123.632743 113.667507) (xy 123.745639 113.394952) (xy 123.821993 113.109993) + (xy 123.8605 112.817506) (xy 123.8605 112.522494) (xy 123.821993 112.230007) (xy 123.745639 111.945048) + (xy 123.740004 111.931445) (xy 123.677871 111.781442) (xy 123.632743 111.672493) (xy 123.605632 111.625536) + (xy 123.485238 111.417006) (xy 123.305647 111.182959) (xy 123.305641 111.182952) (xy 123.097047 110.974358) + (xy 123.09704 110.974352) (xy 122.862993 110.794761) (xy 122.670253 110.683483) (xy 122.60751 110.647258) + (xy 122.6075 110.647254) (xy 122.444092 110.579568) (xy 125.1595 110.579568) (xy 125.1595 110.860431) + (xy 125.190942 111.139494) (xy 125.190945 111.139512) (xy 125.253439 111.413317) (xy 125.253443 111.413329) + (xy 125.3462 111.678411) (xy 125.468053 111.931442) (xy 125.483653 111.956269) (xy 125.617477 112.169248) + (xy 125.665931 112.230007) (xy 125.770188 112.360742) (xy 125.792584 112.388825) (xy 125.991175 112.587416) + (xy 126.210752 112.762523) (xy 126.448555 112.911945) (xy 126.701592 113.033801) (xy 126.844281 113.08373) + (xy 126.96667 113.126556) (xy 126.966682 113.12656) (xy 127.240491 113.189055) (xy 127.240497 113.189055) + (xy 127.240505 113.189057) (xy 127.426547 113.210018) (xy 127.519569 113.220499) (xy 127.519572 113.2205) + (xy 127.519575 113.2205) (xy 127.800428 113.2205) (xy 127.800429 113.220499) (xy 127.943055 113.204429) + (xy 128.079494 113.189057) (xy 128.079499 113.189056) (xy 128.079509 113.189055) (xy 128.353318 113.12656) + (xy 128.618408 113.033801) (xy 128.871445 112.911945) (xy 129.109248 112.762523) (xy 129.328825 112.587416) + (xy 129.360936 112.555305) (xy 131.86 112.555305) (xy 131.86 112.784694) (xy 131.860001 112.78471) + (xy 131.889942 113.012137) (xy 131.949318 113.23373) (xy 132.037102 113.445659) (xy 132.037106 113.445669) + (xy 132.151799 113.644324) (xy 132.151805 113.644331) (xy 132.208381 113.718064) (xy 133.127037 112.799408) + (xy 133.144075 112.862993) (xy 133.209901 112.977007) (xy 133.302993 113.070099) (xy 133.417007 113.135925) + (xy 133.48059 113.152962) (xy 132.561934 114.071617) (xy 132.561934 114.071618) (xy 132.635666 114.128194) + (xy 132.83433 114.242893) (xy 132.83434 114.242897) (xy 133.046269 114.330681) (xy 133.267862 114.390057) + (xy 133.495289 114.419998) (xy 133.495306 114.42) (xy 133.724694 114.42) (xy 133.72471 114.419998) + (xy 133.952137 114.390057) (xy 134.17373 114.330681) (xy 134.385659 114.242897) (xy 134.385668 114.242893) + (xy 134.584327 114.128197) (xy 134.584334 114.128192) (xy 134.658064 114.071617) (xy 133.739409 113.152962) + (xy 133.802993 113.135925) (xy 133.917007 113.070099) (xy 134.010099 112.977007) (xy 134.075925 112.862993) + (xy 134.092962 112.799409) (xy 135.011617 113.718064) (xy 135.068192 113.644334) (xy 135.068197 113.644327) + (xy 135.182893 113.445668) (xy 135.182897 113.445659) (xy 135.270681 113.23373) (xy 135.330057 113.012137) + (xy 135.359998 112.78471) (xy 135.36 112.784694) (xy 135.36 112.555305) (xy 135.359998 112.555289) + (xy 135.330057 112.327862) (xy 135.270681 112.106269) (xy 135.182897 111.89434) (xy 135.182893 111.89433) + (xy 135.068194 111.695666) (xy 135.011618 111.621934) (xy 135.011617 111.621934) (xy 134.092962 112.540589) + (xy 134.075925 112.477007) (xy 134.010099 112.362993) (xy 133.917007 112.269901) (xy 133.802993 112.204075) + (xy 133.739407 112.187037) (xy 134.658064 111.268381) (xy 134.658064 111.26838) (xy 134.584331 111.211805) + (xy 134.584324 111.211799) (xy 134.385669 111.097106) (xy 134.385659 111.097102) (xy 134.17373 111.009318) + (xy 133.952137 110.949942) (xy 133.72471 110.920001) (xy 133.724694 110.92) (xy 133.495306 110.92) + (xy 133.495289 110.920001) (xy 133.267862 110.949942) (xy 133.046269 111.009318) (xy 132.83434 111.097102) + (xy 132.83433 111.097106) (xy 132.635673 111.211801) (xy 132.635659 111.21181) (xy 132.561934 111.26838) + (xy 133.48059 112.187037) (xy 133.417007 112.204075) (xy 133.302993 112.269901) (xy 133.209901 112.362993) + (xy 133.144075 112.477007) (xy 133.127037 112.54059) (xy 132.20838 111.621934) (xy 132.15181 111.695659) + (xy 132.151801 111.695673) (xy 132.037106 111.89433) (xy 132.037102 111.89434) (xy 131.949318 112.106269) + (xy 131.889942 112.327862) (xy 131.860001 112.555289) (xy 131.86 112.555305) (xy 129.360936 112.555305) + (xy 129.527416 112.388825) (xy 129.702523 112.169248) (xy 129.851945 111.931445) (xy 129.973801 111.678408) + (xy 130.06656 111.413318) (xy 130.129055 111.139509) (xy 130.1605 110.860425) (xy 130.1605 110.579575) + (xy 130.145592 110.447258) (xy 130.129057 110.300505) (xy 130.129054 110.300487) (xy 130.121981 110.2695) + (xy 130.06656 110.026682) (xy 129.973801 109.761592) (xy 129.851945 109.508555) (xy 129.702523 109.270752) + (xy 129.527416 109.051175) (xy 129.328825 108.852584) (xy 129.109248 108.677477) (xy 128.871445 108.528055) + (xy 128.871442 108.528053) (xy 128.618411 108.4062) (xy 128.353329 108.313443) (xy 128.353317 108.313439) + (xy 128.079512 108.250945) (xy 128.079494 108.250942) (xy 127.800431 108.2195) (xy 127.800425 108.2195) + (xy 127.519575 108.2195) (xy 127.519568 108.2195) (xy 127.240505 108.250942) (xy 127.240487 108.250945) + (xy 126.966682 108.313439) (xy 126.96667 108.313443) (xy 126.701588 108.4062) (xy 126.448557 108.528053) + (xy 126.210753 108.677476) (xy 125.991175 108.852583) (xy 125.792583 109.051175) (xy 125.617476 109.270753) + (xy 125.468053 109.508557) (xy 125.3462 109.761588) (xy 125.253443 110.02667) (xy 125.253439 110.026682) + (xy 125.190945 110.300487) (xy 125.190942 110.300505) (xy 125.1595 110.579568) (xy 122.444092 110.579568) + (xy 122.334961 110.534364) (xy 122.334954 110.534362) (xy 122.334952 110.534361) (xy 122.049993 110.458007) + (xy 122.001113 110.451571) (xy 121.757513 110.4195) (xy 121.757506 110.4195) (xy 121.462494 110.4195) + (xy 121.462486 110.4195) (xy 121.184085 110.456153) (xy 121.170007 110.458007) (xy 120.888325 110.533483) + (xy 120.885048 110.534361) (xy 120.885038 110.534364) (xy 120.612499 110.647254) (xy 120.612489 110.647258) + (xy 120.357006 110.794761) (xy 120.122959 110.974352) (xy 120.122952 110.974358) (xy 119.914358 111.182952) + (xy 119.914352 111.182959) (xy 119.734761 111.417006) (xy 119.587258 111.672489) (xy 119.587254 111.672499) + (xy 119.474364 111.945038) (xy 119.474361 111.945048) (xy 119.398059 112.229815) (xy 119.398008 112.230004) + (xy 119.398006 112.230015) (xy 119.3595 112.522486) (xy 117.026667 112.522486) (xy 117.026667 112.355305) + (xy 117.026665 112.355289) (xy 116.996724 112.127862) (xy 116.937348 111.906269) (xy 116.849564 111.69434) + (xy 116.84956 111.69433) (xy 116.734861 111.495666) (xy 116.678285 111.421934) (xy 116.678284 111.421934) + (xy 115.759629 112.340589) (xy 115.742592 112.277007) (xy 115.676766 112.162993) (xy 115.583674 112.069901) + (xy 115.46966 112.004075) (xy 115.406074 111.987037) (xy 116.324731 111.068381) (xy 116.324731 111.06838) + (xy 116.250998 111.011805) (xy 116.250991 111.011799) (xy 116.052336 110.897106) (xy 116.052326 110.897102) + (xy 115.840397 110.809318) (xy 115.618804 110.749942) (xy 115.391377 110.720001) (xy 115.391361 110.72) + (xy 115.161973 110.72) (xy 115.161956 110.720001) (xy 114.934529 110.749942) (xy 114.712936 110.809318) + (xy 114.501007 110.897102) (xy 114.500997 110.897106) (xy 114.30234 111.011801) (xy 114.302326 111.01181) + (xy 114.228601 111.06838) (xy 115.147257 111.987037) (xy 115.083674 112.004075) (xy 114.96966 112.069901) + (xy 114.876568 112.162993) (xy 114.810742 112.277007) (xy 114.793704 112.34059) (xy 113.875047 111.421934) + (xy 113.818477 111.495659) (xy 113.818468 111.495673) (xy 113.703773 111.69433) (xy 113.703769 111.69434) + (xy 113.615985 111.906269) (xy 113.556609 112.127862) (xy 113.526668 112.355289) (xy 113.526667 112.355305) + (xy 111.027603 112.355305) (xy 111.194083 112.188825) (xy 111.36919 111.969248) (xy 111.518612 111.731445) + (xy 111.640468 111.478408) (xy 111.733227 111.213318) (xy 111.759752 111.097106) (xy 111.761661 111.088741) + (xy 111.761661 111.08874) (xy 111.779222 111.011799) (xy 111.795722 110.939509) (xy 111.827167 110.660425) + (xy 111.827167 110.379575) (xy 111.795722 110.100491) (xy 111.733227 109.826682) (xy 111.640468 109.561592) + (xy 111.518612 109.308555) (xy 111.36919 109.070752) (xy 111.194083 108.851175) (xy 110.995492 108.652584) + (xy 110.775915 108.477477) (xy 110.538112 108.328055) (xy 110.538109 108.328053) (xy 110.285078 108.2062) + (xy 110.019996 108.113443) (xy 110.019984 108.113439) (xy 109.746179 108.050945) (xy 109.746161 108.050942) + (xy 109.467098 108.0195) (xy 109.467092 108.0195) (xy 109.186242 108.0195) (xy 109.186235 108.0195) + (xy 108.907172 108.050942) (xy 108.907154 108.050945) (xy 108.633349 108.113439) (xy 108.633337 108.113443) + (xy 108.368255 108.2062) (xy 108.115224 108.328053) (xy 107.87742 108.477476) (xy 107.657842 108.652583) + (xy 107.45925 108.851175) (xy 107.284143 109.070753) (xy 107.13472 109.308557) (xy 107.012867 109.561588) + (xy 106.92011 109.82667) (xy 106.920106 109.826682) (xy 106.857612 110.100487) (xy 106.857609 110.100505) + (xy 106.826167 110.379568) (xy 104.110759 110.379568) (xy 104.001628 110.334364) (xy 104.001621 110.334362) + (xy 104.001619 110.334361) (xy 103.71666 110.258007) (xy 103.66778 110.251571) (xy 103.42418 110.2195) + (xy 103.424173 110.2195) (xy 103.129161 110.2195) (xy 103.129153 110.2195) (xy 102.850752 110.256153) + (xy 102.836674 110.258007) (xy 102.593843 110.323073) (xy 102.551715 110.334361) (xy 102.551705 110.334364) + (xy 102.279166 110.447254) (xy 102.279156 110.447258) (xy 102.023673 110.594761) (xy 101.789626 110.774352) + (xy 101.789619 110.774358) (xy 101.581025 110.982952) (xy 101.581019 110.982959) (xy 101.401428 111.217006) + (xy 101.253925 111.472489) (xy 101.253921 111.472499) (xy 101.141031 111.745038) (xy 101.141028 111.745048) + (xy 101.067356 112.02) (xy 101.064675 112.030004) (xy 101.064673 112.030015) (xy 101.026167 112.322486) + (xy 98.68243 112.322486) (xy 98.66339 112.177862) (xy 98.604014 111.956269) (xy 98.51623 111.74434) + (xy 98.516226 111.74433) (xy 98.401527 111.545666) (xy 98.344951 111.471934) (xy 98.34495 111.471934) + (xy 97.426295 112.390589) (xy 97.409258 112.327007) (xy 97.343432 112.212993) (xy 97.25034 112.119901) + (xy 97.136326 112.054075) (xy 97.07274 112.037037) (xy 97.991397 111.118381) (xy 97.991397 111.11838) + (xy 97.917664 111.061805) (xy 97.917657 111.061799) (xy 97.719002 110.947106) (xy 97.718992 110.947102) + (xy 97.507063 110.859318) (xy 97.28547 110.799942) (xy 97.058043 110.770001) (xy 97.058027 110.77) + (xy 96.828639 110.77) (xy 96.828622 110.770001) (xy 96.601195 110.799942) (xy 96.379602 110.859318) + (xy 96.167673 110.947102) (xy 96.167663 110.947106) (xy 95.969006 111.061801) (xy 95.968992 111.06181) + (xy 95.895267 111.11838) (xy 96.813923 112.037037) (xy 96.75034 112.054075) (xy 96.636326 112.119901) + (xy 96.543234 112.212993) (xy 96.477408 112.327007) (xy 96.46037 112.39059) (xy 95.541713 111.471934) + (xy 95.485143 111.545659) (xy 95.485134 111.545673) (xy 95.370439 111.74433) (xy 95.370435 111.74434) + (xy 95.282651 111.956269) (xy 95.223275 112.177862) (xy 95.193334 112.405289) (xy 95.193333 112.405305) + (xy 92.694269 112.405305) (xy 92.860749 112.238825) (xy 93.035856 112.019248) (xy 93.185278 111.781445) + (xy 93.307134 111.528408) (xy 93.399893 111.263318) (xy 93.462388 110.989509) (xy 93.476932 110.860431) + (xy 93.480997 110.824352) (xy 93.493833 110.710425) (xy 93.493833 110.429575) (xy 93.474502 110.258006) + (xy 93.46239 110.150505) (xy 93.462387 110.150487) (xy 93.399893 109.876682) (xy 93.399889 109.87667) + (xy 93.334505 109.689815) (xy 93.307134 109.611592) (xy 93.185278 109.358555) (xy 93.035856 109.120752) + (xy 92.860749 108.901175) (xy 92.662158 108.702584) (xy 92.442581 108.527477) (xy 92.204778 108.378055) + (xy 92.204775 108.378053) (xy 91.951744 108.2562) (xy 91.686662 108.163443) (xy 91.68665 108.163439) + (xy 91.412845 108.100945) (xy 91.412827 108.100942) (xy 91.133764 108.0695) (xy 91.133758 108.0695) + (xy 90.852908 108.0695) (xy 90.852901 108.0695) (xy 90.573838 108.100942) (xy 90.57382 108.100945) + (xy 90.300015 108.163439) (xy 90.300003 108.163443) (xy 90.034921 108.2562) (xy 89.78189 108.378053) + (xy 89.544086 108.527476) (xy 89.324508 108.702583) (xy 89.125916 108.901175) (xy 88.950809 109.120753) + (xy 88.801386 109.358557) (xy 88.679533 109.611588) (xy 88.586776 109.87667) (xy 88.586772 109.876682) + (xy 88.524278 110.150487) (xy 88.524275 110.150505) (xy 88.492833 110.429568) (xy 85.777425 110.429568) + (xy 85.668294 110.384364) (xy 85.668287 110.384362) (xy 85.668285 110.384361) (xy 85.383326 110.308007) + (xy 85.326237 110.300491) (xy 85.090846 110.2695) (xy 85.090839 110.2695) (xy 84.795827 110.2695) + (xy 84.795819 110.2695) (xy 84.517418 110.306153) (xy 84.50334 110.308007) (xy 84.447113 110.323073) + (xy 84.218381 110.384361) (xy 84.218371 110.384364) (xy 83.945832 110.497254) (xy 83.945822 110.497258) + (xy 83.690339 110.644761) (xy 83.456292 110.824352) (xy 83.456285 110.824358) (xy 83.247691 111.032952) + (xy 83.247685 111.032959) (xy 83.068094 111.267006) (xy 82.920591 111.522489) (xy 82.920587 111.522499) + (xy 82.807697 111.795038) (xy 82.807694 111.795048) (xy 82.738289 112.054075) (xy 82.731341 112.080004) + (xy 82.731339 112.080015) (xy 82.692833 112.372486) (xy 80.36 112.372486) (xy 80.36 112.355305) + (xy 80.359998 112.355289) (xy 80.330057 112.127862) (xy 80.270681 111.906269) (xy 80.182897 111.69434) + (xy 80.182893 111.69433) (xy 80.068194 111.495666) (xy 80.011618 111.421934) (xy 80.011617 111.421934) + (xy 79.092962 112.340589) (xy 79.075925 112.277007) (xy 79.010099 112.162993) (xy 78.917007 112.069901) + (xy 78.802993 112.004075) (xy 78.739407 111.987037) (xy 79.658064 111.068381) (xy 79.658064 111.06838) + (xy 79.584331 111.011805) (xy 79.584324 111.011799) (xy 79.385669 110.897106) (xy 79.385659 110.897102) + (xy 79.17373 110.809318) (xy 78.952137 110.749942) (xy 78.72471 110.720001) (xy 78.724694 110.72) + (xy 78.495306 110.72) (xy 78.495289 110.720001) (xy 78.267862 110.749942) (xy 78.046269 110.809318) + (xy 77.83434 110.897102) (xy 77.83433 110.897106) (xy 77.635673 111.011801) (xy 77.635659 111.01181) + (xy 77.561934 111.06838) (xy 78.48059 111.987037) (xy 78.417007 112.004075) (xy 78.302993 112.069901) + (xy 78.209901 112.162993) (xy 78.144075 112.277007) (xy 78.127037 112.34059) (xy 77.20838 111.421934) + (xy 77.15181 111.495659) (xy 77.151801 111.495673) (xy 77.037106 111.69433) (xy 77.037102 111.69434) + (xy 76.949318 111.906269) (xy 76.889942 112.127862) (xy 76.860001 112.355289) (xy 76.86 112.355305) + (xy 74.360936 112.355305) (xy 74.527416 112.188825) (xy 74.702523 111.969248) (xy 74.851945 111.731445) + (xy 74.973801 111.478408) (xy 75.06656 111.213318) (xy 75.093085 111.097106) (xy 75.094994 111.088741) + (xy 75.094994 111.08874) (xy 75.112555 111.011799) (xy 75.129055 110.939509) (xy 75.1605 110.660425) + (xy 75.1605 110.379575) (xy 75.129055 110.100491) (xy 75.06656 109.826682) (xy 74.973801 109.561592) + (xy 74.851945 109.308555) (xy 74.702523 109.070752) (xy 74.527416 108.851175) (xy 74.328825 108.652584) + (xy 74.109248 108.477477) (xy 73.871445 108.328055) (xy 73.871442 108.328053) (xy 73.618411 108.2062) + (xy 73.353329 108.113443) (xy 73.353317 108.113439) (xy 73.079512 108.050945) (xy 73.079494 108.050942) + (xy 72.800431 108.0195) (xy 72.800425 108.0195) (xy 72.519575 108.0195) (xy 72.519568 108.0195) + (xy 72.240505 108.050942) (xy 72.240487 108.050945) (xy 71.966682 108.113439) (xy 71.96667 108.113443) + (xy 71.701588 108.2062) (xy 71.448557 108.328053) (xy 71.210753 108.477476) (xy 70.991175 108.652583) + (xy 70.792583 108.851175) (xy 70.617476 109.070753) (xy 70.468053 109.308557) (xy 70.3462 109.561588) + (xy 70.253443 109.82667) (xy 70.253439 109.826682) (xy 70.190945 110.100487) (xy 70.190942 110.100505) + (xy 70.1595 110.379568) (xy 67.444092 110.379568) (xy 67.334961 110.334364) (xy 67.334954 110.334362) + (xy 67.334952 110.334361) (xy 67.049993 110.258007) (xy 67.001113 110.251571) (xy 66.757513 110.2195) + (xy 66.757506 110.2195) (xy 66.462494 110.2195) (xy 66.462486 110.2195) (xy 66.184085 110.256153) + (xy 66.170007 110.258007) (xy 65.927176 110.323073) (xy 65.885048 110.334361) (xy 65.885038 110.334364) + (xy 65.612499 110.447254) (xy 65.612489 110.447258) (xy 65.357006 110.594761) (xy 65.122959 110.774352) + (xy 65.122952 110.774358) (xy 64.914358 110.982952) (xy 64.914352 110.982959) (xy 64.734761 111.217006) + (xy 64.587258 111.472489) (xy 64.587254 111.472499) (xy 64.474364 111.745038) (xy 64.474361 111.745048) + (xy 64.400689 112.02) (xy 64.398008 112.030004) (xy 64.398006 112.030015) (xy 64.3595 112.322486) + (xy 58.4505 112.322486) (xy 58.4505 93.197648) (xy 61.9495 93.197648) (xy 61.9495 93.402351) (xy 61.981522 93.604534) + (xy 62.044781 93.799223) (xy 62.06838 93.845537) (xy 62.135293 93.976861) (xy 62.137715 93.981613) + (xy 62.258028 94.147213) (xy 62.402786 94.291971) (xy 62.511597 94.371025) (xy 62.56839 94.412287) + (xy 62.684607 94.471503) (xy 62.750776 94.505218) (xy 62.750778 94.505218) (xy 62.750781 94.50522) + (xy 62.832869 94.531892) (xy 62.945465 94.568477) (xy 63.046557 94.584488) (xy 63.147648 94.6005) + (xy 63.147649 94.6005) (xy 63.352351 94.6005) (xy 63.352352 94.6005) (xy 63.554534 94.568477) (xy 63.749219 94.50522) + (xy 63.93161 94.412287) (xy 64.057305 94.320965) (xy 64.097213 94.291971) (xy 64.097215 94.291968) + (xy 64.097219 94.291966) (xy 64.241966 94.147219) (xy 64.241968 94.147215) (xy 64.241971 94.147213) + (xy 64.334256 94.020191) (xy 64.362287 93.98161) (xy 64.45522 93.799219) (xy 64.518477 93.604534) + (xy 64.5505 93.402352) (xy 64.5505 93.197648) (xy 64.546971 93.175367) (xy 64.518477 92.995465) + (xy 64.489127 92.905137) (xy 64.45522 92.800781) (xy 64.455218 92.800778) (xy 64.455218 92.800776) + (xy 64.421503 92.734607) (xy 64.362287 92.61839) (xy 64.354556 92.607749) (xy 64.241971 92.452786) + (xy 64.097213 92.308028) (xy 63.931613 92.187715) (xy 63.931612 92.187714) (xy 63.93161 92.187713) + (xy 63.874653 92.158691) (xy 63.749223 92.094781) (xy 63.554534 92.031522) (xy 63.355098 91.999935) + (xy 63.352352 91.9995) (xy 63.147648 91.9995) (xy 63.144902 91.999935) (xy 62.945465 92.031522) + (xy 62.750776 92.094781) (xy 62.568386 92.187715) (xy 62.402786 92.308028) (xy 62.258028 92.452786) + (xy 62.137715 92.618386) (xy 62.044781 92.800776) (xy 61.981522 92.995465) (xy 61.9495 93.197648) + (xy 58.4505 93.197648) (xy 58.4505 86.079568) (xy 70.1095 86.079568) (xy 70.1095 86.360431) (xy 70.140942 86.639494) + (xy 70.140945 86.639512) (xy 70.203439 86.913317) (xy 70.203443 86.913329) (xy 70.2962 87.178411) + (xy 70.418053 87.431442) (xy 70.424843 87.442248) (xy 70.567477 87.669248) (xy 70.742584 87.888825) + (xy 70.941175 88.087416) (xy 71.160752 88.262523) (xy 71.398555 88.411945) (xy 71.651592 88.533801) + (xy 71.79537 88.584111) (xy 71.91667 88.626556) (xy 71.916682 88.62656) (xy 72.190491 88.689055) + (xy 72.190497 88.689055) (xy 72.190505 88.689057) (xy 72.376547 88.710018) (xy 72.469569 88.720499) + (xy 72.469572 88.7205) (xy 72.469575 88.7205) (xy 72.750428 88.7205) (xy 72.750429 88.720499) (xy 72.893055 88.704429) + (xy 73.029494 88.689057) (xy 73.029499 88.689056) (xy 73.029509 88.689055) (xy 73.303318 88.62656) + (xy 73.568408 88.533801) (xy 73.821445 88.411945) (xy 74.059248 88.262523) (xy 74.278825 88.087416) + (xy 74.477416 87.888825) (xy 74.652523 87.669248) (xy 74.801945 87.431445) (xy 74.923801 87.178408) + (xy 75.01656 86.913318) (xy 75.079055 86.639509) (xy 75.088096 86.559272) (xy 75.102709 86.429572) + (xy 75.1105 86.360425) (xy 75.1105 86.079575) (xy 75.098033 85.968924) (xy 75.079057 85.800505) + (xy 75.079054 85.800487) (xy 75.076673 85.790057) (xy 75.01656 85.526682) (xy 74.923801 85.261592) + (xy 74.818788 85.043529) (xy 74.801946 85.008557) (xy 74.797673 85.001756) (xy 74.652523 84.770752) + (xy 74.477416 84.551175) (xy 74.278825 84.352584) (xy 74.257738 84.335768) (xy 74.175267 84.269999) + (xy 74.059248 84.177477) (xy 73.971731 84.122486) (xy 76.4095 84.122486) (xy 76.4095 84.417513) + (xy 76.437967 84.63373) (xy 76.448007 84.709993) (xy 76.524361 84.994951) (xy 76.524364 84.994961) + (xy 76.637254 85.2675) (xy 76.637258 85.26751) (xy 76.784761 85.522993) (xy 76.964352 85.75704) + (xy 76.964358 85.757047) (xy 77.172952 85.965641) (xy 77.172959 85.965647) (xy 77.407006 86.145238) + (xy 77.662489 86.292741) (xy 77.66249 86.292741) (xy 77.662493 86.292743) (xy 77.935048 86.405639) + (xy 78.220007 86.481993) (xy 78.512494 86.5205) (xy 78.512501 86.5205) (xy 78.807499 86.5205) (xy 78.807506 86.5205) + (xy 79.099993 86.481993) (xy 79.384952 86.405639) (xy 79.657507 86.292743) (xy 79.912994 86.145238) + (xy 80.147042 85.965646) (xy 80.23312 85.879568) (xy 88.442833 85.879568) (xy 88.442833 86.160431) + (xy 88.474275 86.439494) (xy 88.474278 86.439512) (xy 88.536772 86.713317) (xy 88.536776 86.713329) + (xy 88.629533 86.978411) (xy 88.751386 87.231442) (xy 88.751388 87.231445) (xy 88.90081 87.469248) + (xy 89.075917 87.688825) (xy 89.274508 87.887416) (xy 89.494085 88.062523) (xy 89.667032 88.171193) + (xy 89.73189 88.211946) (xy 89.787703 88.238824) (xy 89.984925 88.333801) (xy 90.184013 88.403465) + (xy 90.250003 88.426556) (xy 90.250015 88.42656) (xy 90.523824 88.489055) (xy 90.52383 88.489055) + (xy 90.523838 88.489057) (xy 90.701339 88.509056) (xy 90.802902 88.520499) (xy 90.802905 88.5205) + (xy 90.802908 88.5205) (xy 91.083761 88.5205) (xy 91.083762 88.520499) (xy 91.226388 88.504429) + (xy 91.362827 88.489057) (xy 91.362832 88.489056) (xy 91.362842 88.489055) (xy 91.636651 88.42656) + (xy 91.901741 88.333801) (xy 92.154778 88.211945) (xy 92.392581 88.062523) (xy 92.612158 87.887416) + (xy 92.810749 87.688825) (xy 92.985856 87.469248) (xy 93.135278 87.231445) (xy 93.257134 86.978408) + (xy 93.349893 86.713318) (xy 93.412388 86.439509) (xy 93.413508 86.429575) (xy 93.434537 86.242927) + (xy 93.443833 86.160425) (xy 93.443833 85.879575) (xy 93.433351 85.786547) (xy 93.41239 85.600505) + (xy 93.412387 85.600487) (xy 93.365636 85.395659) (xy 93.349893 85.326682) (xy 93.3486 85.322988) + (xy 93.308446 85.208234) (xy 93.257134 85.061592) (xy 93.153146 84.845659) (xy 93.135279 84.808557) + (xy 93.130772 84.801384) (xy 92.985856 84.570752) (xy 92.810749 84.351175) (xy 92.612158 84.152584) + (xy 92.612051 84.152499) (xy 92.52951 84.086674) (xy 92.392581 83.977477) (xy 92.305063 83.922486) + (xy 94.742833 83.922486) (xy 94.742833 84.217513) (xy 94.771245 84.433317) (xy 94.78134 84.509993) + (xy 94.857694 84.794951) (xy 94.857697 84.794961) (xy 94.970587 85.0675) (xy 94.970591 85.06751) + (xy 95.118094 85.322993) (xy 95.297685 85.55704) (xy 95.297691 85.557047) (xy 95.506285 85.765641) + (xy 95.506292 85.765647) (xy 95.740339 85.945238) (xy 95.995822 86.092741) (xy 95.995823 86.092741) + (xy 95.995826 86.092743) (xy 96.268381 86.205639) (xy 96.55334 86.281993) (xy 96.845827 86.3205) + (xy 96.845834 86.3205) (xy 97.140832 86.3205) (xy 97.140839 86.3205) (xy 97.433326 86.281993) (xy 97.718285 86.205639) + (xy 97.99084 86.092743) (xy 98.217176 85.962068) (xy 106.776167 85.962068) (xy 106.776167 86.242931) + (xy 106.807609 86.521994) (xy 106.807612 86.522012) (xy 106.870106 86.795817) (xy 106.87011 86.795829) + (xy 106.962867 87.060911) (xy 107.08472 87.313942) (xy 107.084722 87.313945) (xy 107.234144 87.551748) + (xy 107.294162 87.627008) (xy 107.401562 87.761684) (xy 107.409251 87.771325) (xy 107.607842 87.969916) + (xy 107.827419 88.145023) (xy 108.065222 88.294445) (xy 108.318259 88.416301) (xy 108.517347 88.485965) + (xy 108.583337 88.509056) (xy 108.583349 88.50906) (xy 108.857158 88.571555) (xy 108.857164 88.571555) + (xy 108.857172 88.571557) (xy 109.034398 88.591525) (xy 109.136236 88.602999) (xy 109.136239 88.603) + (xy 109.136242 88.603) (xy 109.417095 88.603) (xy 109.417096 88.602999) (xy 109.584738 88.584111) + (xy 109.696161 88.571557) (xy 109.696166 88.571556) (xy 109.696176 88.571555) (xy 109.969985 88.50906) + (xy 110.235075 88.416301) (xy 110.488112 88.294445) (xy 110.725915 88.145023) (xy 110.945492 87.969916) + (xy 111.144083 87.771325) (xy 111.31919 87.551748) (xy 111.468612 87.313945) (xy 111.590468 87.060908) + (xy 111.683227 86.795818) (xy 111.745722 86.522009) (xy 111.746694 86.513389) (xy 111.756138 86.429568) + (xy 125.1095 86.429568) (xy 125.1095 86.710431) (xy 125.140942 86.989494) (xy 125.140945 86.989512) + (xy 125.203439 87.263317) (xy 125.203443 87.263329) (xy 125.2962 87.528411) (xy 125.418053 87.781442) + (xy 125.418055 87.781445) (xy 125.567477 88.019248) (xy 125.742584 88.238825) (xy 125.941175 88.437416) + (xy 126.160752 88.612523) (xy 126.398555 88.761945) (xy 126.651592 88.883801) (xy 126.766443 88.923989) + (xy 126.91667 88.976556) (xy 126.916682 88.97656) (xy 127.190491 89.039055) (xy 127.190497 89.039055) + (xy 127.190505 89.039057) (xy 127.376547 89.060018) (xy 127.469569 89.070499) (xy 127.469572 89.0705) + (xy 127.469575 89.0705) (xy 127.750428 89.0705) (xy 127.750429 89.070499) (xy 127.893055 89.054429) + (xy 128.029494 89.039057) (xy 128.029499 89.039056) (xy 128.029509 89.039055) (xy 128.303318 88.97656) + (xy 128.568408 88.883801) (xy 128.821445 88.761945) (xy 129.059248 88.612523) (xy 129.278825 88.437416) + (xy 129.477416 88.238825) (xy 129.652523 88.019248) (xy 129.801945 87.781445) (xy 129.923801 87.528408) + (xy 130.01656 87.263318) (xy 130.079055 86.989509) (xy 130.080306 86.978411) (xy 130.100205 86.801793) + (xy 130.1105 86.710425) (xy 130.1105 86.429575) (xy 130.09821 86.320499) (xy 130.079057 86.150505) + (xy 130.079054 86.150487) (xy 130.01656 85.876682) (xy 130.016556 85.87667) (xy 129.993465 85.81068) + (xy 129.923801 85.611592) (xy 129.801945 85.358555) (xy 129.652523 85.120752) (xy 129.477416 84.901175) + (xy 129.278825 84.702584) (xy 129.059248 84.527477) (xy 128.832011 84.384694) (xy 128.821442 84.378053) + (xy 128.568411 84.2562) (xy 128.303329 84.163443) (xy 128.303317 84.163439) (xy 128.029512 84.100945) + (xy 128.029494 84.100942) (xy 127.750431 84.0695) (xy 127.750425 84.0695) (xy 127.469575 84.0695) + (xy 127.469568 84.0695) (xy 127.190505 84.100942) (xy 127.190487 84.100945) (xy 126.916682 84.163439) + (xy 126.91667 84.163443) (xy 126.651588 84.2562) (xy 126.398557 84.378053) (xy 126.160753 84.527476) + (xy 125.941175 84.702583) (xy 125.742583 84.901175) (xy 125.567476 85.120753) (xy 125.418053 85.358557) + (xy 125.2962 85.611588) (xy 125.203443 85.87667) (xy 125.203439 85.876682) (xy 125.140945 86.150487) + (xy 125.140942 86.150505) (xy 125.1095 86.429568) (xy 111.756138 86.429568) (xy 111.768426 86.3205) + (xy 111.777167 86.242925) (xy 111.777167 85.962075) (xy 111.766685 85.869047) (xy 111.745724 85.683005) + (xy 111.745721 85.682987) (xy 111.7303 85.615425) (xy 111.683227 85.409182) (xy 111.666523 85.361446) + (xy 111.654355 85.32667) (xy 111.590468 85.144092) (xy 111.468612 84.891055) (xy 111.31919 84.653252) + (xy 111.144083 84.433675) (xy 110.945492 84.235084) (xy 110.94539 84.235003) (xy 110.838497 84.149758) + (xy 110.725915 84.059977) (xy 110.638398 84.004986) (xy 113.076167 84.004986) (xy 113.076167 84.300013) + (xy 113.103813 84.509995) (xy 113.114674 84.592493) (xy 113.191028 84.877451) (xy 113.191031 84.877461) + (xy 113.303921 85.15) (xy 113.303925 85.15001) (xy 113.451428 85.405493) (xy 113.631019 85.63954) + (xy 113.631025 85.639547) (xy 113.839619 85.848141) (xy 113.839626 85.848147) (xy 114.073673 86.027738) + (xy 114.329156 86.175241) (xy 114.329157 86.175241) (xy 114.32916 86.175243) (xy 114.601715 86.288139) + (xy 114.886674 86.364493) (xy 115.179161 86.403) (xy 115.179168 86.403) (xy 115.474166 86.403) (xy 115.474173 86.403) + (xy 115.76666 86.364493) (xy 116.051619 86.288139) (xy 116.324174 86.175243) (xy 116.579661 86.027738) + (xy 116.813709 85.848146) (xy 117.022313 85.639542) (xy 117.201905 85.405494) (xy 117.34941 85.150007) + (xy 117.462306 84.877452) (xy 117.53866 84.592493) (xy 117.550139 84.505305) (xy 119.91 84.505305) + (xy 119.91 84.734694) (xy 119.910001 84.73471) (xy 119.939942 84.962137) (xy 119.999318 85.18373) + (xy 120.087102 85.395659) (xy 120.087106 85.395669) (xy 120.201799 85.594324) (xy 120.201805 85.594331) + (xy 120.258381 85.668064) (xy 121.177037 84.749408) (xy 121.194075 84.812993) (xy 121.259901 84.927007) + (xy 121.352993 85.020099) (xy 121.467007 85.085925) (xy 121.53059 85.102962) (xy 120.611934 86.021617) + (xy 120.611934 86.021618) (xy 120.685666 86.078194) (xy 120.88433 86.192893) (xy 120.88434 86.192897) + (xy 121.096269 86.280681) (xy 121.317862 86.340057) (xy 121.545289 86.369998) (xy 121.545306 86.37) + (xy 121.774694 86.37) (xy 121.77471 86.369998) (xy 122.002137 86.340057) (xy 122.128043 86.306321) + (xy 122.22373 86.280681) (xy 122.435659 86.192897) (xy 122.435668 86.192893) (xy 122.634327 86.078197) + (xy 122.634334 86.078192) (xy 122.708064 86.021617) (xy 121.789409 85.102962) (xy 121.852993 85.085925) + (xy 121.967007 85.020099) (xy 122.060099 84.927007) (xy 122.125925 84.812993) (xy 122.142962 84.749409) + (xy 123.061617 85.668064) (xy 123.118192 85.594334) (xy 123.118197 85.594327) (xy 123.232893 85.395668) + (xy 123.232897 85.395659) (xy 123.320681 85.18373) (xy 123.380057 84.962137) (xy 123.409998 84.73471) + (xy 123.41 84.734694) (xy 123.41 84.505305) (xy 123.409998 84.505289) (xy 123.380057 84.277862) + (xy 123.320681 84.056269) (xy 123.232897 83.84434) (xy 123.232893 83.84433) (xy 123.118194 83.645666) + (xy 123.061618 83.571934) (xy 123.061617 83.571934) (xy 122.142962 84.490589) (xy 122.125925 84.427007) + (xy 122.060099 84.312993) (xy 121.967007 84.219901) (xy 121.852993 84.154075) (xy 121.789407 84.137037) + (xy 122.708064 83.218381) (xy 122.708064 83.21838) (xy 122.634331 83.161805) (xy 122.634324 83.161799) + (xy 122.435669 83.047106) (xy 122.435659 83.047102) (xy 122.22373 82.959318) (xy 122.002137 82.899942) + (xy 121.77471 82.870001) (xy 121.774694 82.87) (xy 121.545306 82.87) (xy 121.545289 82.870001) (xy 121.317862 82.899942) + (xy 121.096269 82.959318) (xy 120.88434 83.047102) (xy 120.88433 83.047106) (xy 120.685673 83.161801) + (xy 120.685659 83.16181) (xy 120.611934 83.21838) (xy 121.53059 84.137037) (xy 121.467007 84.154075) + (xy 121.352993 84.219901) (xy 121.259901 84.312993) (xy 121.194075 84.427007) (xy 121.177037 84.49059) + (xy 120.25838 83.571934) (xy 120.20181 83.645659) (xy 120.201801 83.645673) (xy 120.087106 83.84433) + (xy 120.087102 83.84434) (xy 119.999318 84.056269) (xy 119.939942 84.277862) (xy 119.910001 84.505289) + (xy 119.91 84.505305) (xy 117.550139 84.505305) (xy 117.577167 84.300006) (xy 117.577167 84.004994) + (xy 117.53866 83.712507) (xy 117.462306 83.427548) (xy 117.437229 83.367006) (xy 117.415185 83.313787) + (xy 117.349413 83.154999) (xy 117.349408 83.154989) (xy 117.201905 82.899506) (xy 117.022314 82.665459) + (xy 117.022308 82.665452) (xy 116.813714 82.456858) (xy 116.813707 82.456852) (xy 116.57966 82.277261) + (xy 116.324177 82.129758) (xy 116.324167 82.129754) (xy 116.051628 82.016864) (xy 116.051621 82.016862) + (xy 116.051619 82.016861) (xy 115.76666 81.940507) (xy 115.71778 81.934071) (xy 115.47418 81.902) + (xy 115.474173 81.902) (xy 115.179161 81.902) (xy 115.179153 81.902) (xy 114.900752 81.938653) (xy 114.886674 81.940507) + (xy 114.782904 81.968312) (xy 114.601715 82.016861) (xy 114.601705 82.016864) (xy 114.329166 82.129754) + (xy 114.329156 82.129758) (xy 114.073673 82.277261) (xy 113.839626 82.456852) (xy 113.839619 82.456858) + (xy 113.631025 82.665452) (xy 113.631019 82.665459) (xy 113.451428 82.899506) (xy 113.303925 83.154989) + (xy 113.303921 83.154999) (xy 113.191031 83.427538) (xy 113.191028 83.427548) (xy 113.116346 83.706269) + (xy 113.114675 83.712504) (xy 113.114673 83.712515) (xy 113.076167 84.004986) (xy 110.638398 84.004986) + (xy 110.5071 83.922486) (xy 110.488109 83.910553) (xy 110.235078 83.7887) (xy 109.969996 83.695943) + (xy 109.969984 83.695939) (xy 109.696179 83.633445) (xy 109.696161 83.633442) (xy 109.417098 83.602) + (xy 109.417092 83.602) (xy 109.136242 83.602) (xy 109.136235 83.602) (xy 108.857172 83.633442) (xy 108.857154 83.633445) + (xy 108.583349 83.695939) (xy 108.583337 83.695943) (xy 108.318255 83.7887) (xy 108.065224 83.910553) + (xy 107.82742 84.059976) (xy 107.607842 84.235083) (xy 107.40925 84.433675) (xy 107.234143 84.653253) + (xy 107.08472 84.891057) (xy 106.962867 85.144088) (xy 106.87011 85.40917) (xy 106.870106 85.409182) + (xy 106.807612 85.682987) (xy 106.807609 85.683005) (xy 106.776167 85.962068) (xy 98.217176 85.962068) + (xy 98.246327 85.945238) (xy 98.480375 85.765646) (xy 98.688979 85.557042) (xy 98.868571 85.322994) + (xy 99.016076 85.067507) (xy 99.128972 84.794952) (xy 99.205326 84.509993) (xy 99.243833 84.217506) + (xy 99.243833 84.037805) (xy 101.576667 84.037805) (xy 101.576667 84.267194) (xy 101.576668 84.26721) + (xy 101.606609 84.494637) (xy 101.665985 84.71623) (xy 101.753769 84.928159) (xy 101.753773 84.928169) + (xy 101.868466 85.126824) (xy 101.868472 85.126831) (xy 101.925048 85.200564) (xy 102.843704 84.281908) + (xy 102.860742 84.345493) (xy 102.926568 84.459507) (xy 103.01966 84.552599) (xy 103.133674 84.618425) + (xy 103.197257 84.635462) (xy 102.278601 85.554117) (xy 102.278601 85.554118) (xy 102.352333 85.610694) + (xy 102.550997 85.725393) (xy 102.551007 85.725397) (xy 102.762936 85.813181) (xy 102.984529 85.872557) + (xy 103.211956 85.902498) (xy 103.211973 85.9025) (xy 103.441361 85.9025) (xy 103.441377 85.902498) + (xy 103.668804 85.872557) (xy 103.79471 85.838821) (xy 103.890397 85.813181) (xy 104.102326 85.725397) + (xy 104.102335 85.725393) (xy 104.300994 85.610697) (xy 104.301001 85.610692) (xy 104.374731 85.554117) + (xy 103.456076 84.635462) (xy 103.51966 84.618425) (xy 103.633674 84.552599) (xy 103.726766 84.459507) + (xy 103.792592 84.345493) (xy 103.809629 84.281909) (xy 104.728284 85.200564) (xy 104.784859 85.126834) + (xy 104.784864 85.126827) (xy 104.89956 84.928168) (xy 104.899564 84.928159) (xy 104.987348 84.71623) + (xy 105.046724 84.494637) (xy 105.076665 84.26721) (xy 105.076667 84.267194) (xy 105.076667 84.037805) + (xy 105.076665 84.037789) (xy 105.046724 83.810362) (xy 104.987348 83.588769) (xy 104.899564 83.37684) + (xy 104.89956 83.37683) (xy 104.784861 83.178166) (xy 104.728285 83.104434) (xy 104.728284 83.104434) + (xy 103.809629 84.023089) (xy 103.792592 83.959507) (xy 103.726766 83.845493) (xy 103.633674 83.752401) + (xy 103.51966 83.686575) (xy 103.456074 83.669537) (xy 104.374731 82.750881) (xy 104.374731 82.75088) + (xy 104.300998 82.694305) (xy 104.300991 82.694299) (xy 104.102336 82.579606) (xy 104.102326 82.579602) + (xy 103.890397 82.491818) (xy 103.668804 82.432442) (xy 103.441377 82.402501) (xy 103.441361 82.4025) + (xy 103.211973 82.4025) (xy 103.211956 82.402501) (xy 102.984529 82.432442) (xy 102.762936 82.491818) + (xy 102.551007 82.579602) (xy 102.550997 82.579606) (xy 102.35234 82.694301) (xy 102.352326 82.69431) + (xy 102.278601 82.75088) (xy 103.197257 83.669537) (xy 103.133674 83.686575) (xy 103.01966 83.752401) + (xy 102.926568 83.845493) (xy 102.860742 83.959507) (xy 102.843704 84.02309) (xy 101.925047 83.104434) + (xy 101.868477 83.178159) (xy 101.868468 83.178173) (xy 101.753773 83.37683) (xy 101.753769 83.37684) + (xy 101.665985 83.588769) (xy 101.606609 83.810362) (xy 101.576668 84.037789) (xy 101.576667 84.037805) + (xy 99.243833 84.037805) (xy 99.243833 83.922494) (xy 99.205326 83.630007) (xy 99.128972 83.345048) + (xy 99.016076 83.072493) (xy 98.983094 83.015367) (xy 98.893875 82.860834) (xy 98.893874 82.860833) + (xy 98.890482 82.854958) (xy 98.868571 82.817006) (xy 98.86857 82.817004) (xy 98.68898 82.582959) + (xy 98.688974 82.582952) (xy 98.48038 82.374358) (xy 98.480373 82.374352) (xy 98.246326 82.194761) + (xy 97.990843 82.047258) (xy 97.990833 82.047254) (xy 97.718294 81.934364) (xy 97.718287 81.934362) + (xy 97.718285 81.934361) (xy 97.433326 81.858007) (xy 97.384446 81.851571) (xy 97.140846 81.8195) + (xy 97.140839 81.8195) (xy 96.845827 81.8195) (xy 96.845819 81.8195) (xy 96.567418 81.856153) (xy 96.55334 81.858007) + (xy 96.446338 81.886678) (xy 96.268381 81.934361) (xy 96.268371 81.934364) (xy 95.995832 82.047254) + (xy 95.995822 82.047258) (xy 95.740339 82.194761) (xy 95.506292 82.374352) (xy 95.506285 82.374358) + (xy 95.297691 82.582952) (xy 95.297685 82.582959) (xy 95.118094 82.817006) (xy 94.970591 83.072489) + (xy 94.970587 83.072499) (xy 94.857697 83.345038) (xy 94.857694 83.345048) (xy 94.783354 83.622493) + (xy 94.781341 83.630004) (xy 94.781339 83.630015) (xy 94.742833 83.922486) (xy 92.305063 83.922486) + (xy 92.180695 83.84434) (xy 92.154775 83.828053) (xy 91.901744 83.7062) (xy 91.636662 83.613443) + (xy 91.63665 83.613439) (xy 91.362845 83.550945) (xy 91.362827 83.550942) (xy 91.083764 83.5195) + (xy 91.083758 83.5195) (xy 90.802908 83.5195) (xy 90.802901 83.5195) (xy 90.523838 83.550942) (xy 90.52382 83.550945) + (xy 90.250015 83.613439) (xy 90.250003 83.613443) (xy 89.984921 83.7062) (xy 89.73189 83.828053) + (xy 89.494086 83.977476) (xy 89.274508 84.152583) (xy 89.075916 84.351175) (xy 88.900809 84.570753) + (xy 88.751386 84.808557) (xy 88.629533 85.061588) (xy 88.536776 85.32667) (xy 88.536772 85.326682) + (xy 88.474278 85.600487) (xy 88.474275 85.600505) (xy 88.442833 85.879568) (xy 80.23312 85.879568) + (xy 80.355646 85.757042) (xy 80.535238 85.522994) (xy 80.682743 85.267507) (xy 80.795639 84.994952) + (xy 80.871993 84.709993) (xy 80.9105 84.417506) (xy 80.9105 84.122494) (xy 80.898067 84.028055) + (xy 80.890085 83.967425) (xy 80.888489 83.955305) (xy 83.243333 83.955305) (xy 83.243333 84.184694) + (xy 83.243334 84.18471) (xy 83.273275 84.412137) (xy 83.332651 84.63373) (xy 83.420435 84.845659) + (xy 83.420439 84.845669) (xy 83.535132 85.044324) (xy 83.535138 85.044331) (xy 83.591714 85.118064) + (xy 84.51037 84.199408) (xy 84.527408 84.262993) (xy 84.593234 84.377007) (xy 84.686326 84.470099) + (xy 84.80034 84.535925) (xy 84.863923 84.552962) (xy 83.945267 85.471617) (xy 83.945267 85.471618) + (xy 84.018999 85.528194) (xy 84.217663 85.642893) (xy 84.217673 85.642897) (xy 84.429602 85.730681) + (xy 84.651195 85.790057) (xy 84.878622 85.819998) (xy 84.878639 85.82) (xy 85.108027 85.82) (xy 85.108043 85.819998) + (xy 85.33547 85.790057) (xy 85.461376 85.756321) (xy 85.557063 85.730681) (xy 85.768992 85.642897) + (xy 85.769001 85.642893) (xy 85.96766 85.528197) (xy 85.967667 85.528192) (xy 86.041397 85.471617) + (xy 85.122742 84.552962) (xy 85.186326 84.535925) (xy 85.30034 84.470099) (xy 85.393432 84.377007) + (xy 85.459258 84.262993) (xy 85.476295 84.199409) (xy 86.39495 85.118064) (xy 86.451525 85.044334) + (xy 86.45153 85.044327) (xy 86.566226 84.845668) (xy 86.56623 84.845659) (xy 86.654014 84.63373) + (xy 86.71339 84.412137) (xy 86.743331 84.18471) (xy 86.743333 84.184694) (xy 86.743333 83.955305) + (xy 86.743331 83.955289) (xy 86.71339 83.727862) (xy 86.654014 83.506269) (xy 86.56623 83.29434) + (xy 86.566226 83.29433) (xy 86.451527 83.095666) (xy 86.394951 83.021934) (xy 86.39495 83.021934) + (xy 85.476295 83.940589) (xy 85.459258 83.877007) (xy 85.393432 83.762993) (xy 85.30034 83.669901) + (xy 85.186326 83.604075) (xy 85.12274 83.587037) (xy 86.041397 82.668381) (xy 86.041397 82.66838) + (xy 85.967664 82.611805) (xy 85.967657 82.611799) (xy 85.769002 82.497106) (xy 85.768992 82.497102) + (xy 85.557063 82.409318) (xy 85.33547 82.349942) (xy 85.108043 82.320001) (xy 85.108027 82.32) (xy 84.878639 82.32) + (xy 84.878622 82.320001) (xy 84.651195 82.349942) (xy 84.429602 82.409318) (xy 84.217673 82.497102) + (xy 84.217663 82.497106) (xy 84.019006 82.611801) (xy 84.018992 82.61181) (xy 83.945267 82.66838) + (xy 84.863923 83.587037) (xy 84.80034 83.604075) (xy 84.686326 83.669901) (xy 84.593234 83.762993) + (xy 84.527408 83.877007) (xy 84.51037 83.94059) (xy 83.591713 83.021934) (xy 83.535143 83.095659) + (xy 83.535134 83.095673) (xy 83.420439 83.29433) (xy 83.420435 83.29434) (xy 83.332651 83.506269) + (xy 83.273275 83.727862) (xy 83.243334 83.955289) (xy 83.243333 83.955305) (xy 80.888489 83.955305) + (xy 80.88201 83.906096) (xy 80.871993 83.830007) (xy 80.795639 83.545048) (xy 80.79272 83.538002) + (xy 80.725961 83.37683) (xy 80.682743 83.272493) (xy 80.628283 83.178166) (xy 80.535238 83.017006) + (xy 80.362447 82.79182) (xy 80.362446 82.791818) (xy 80.355652 82.782964) (xy 80.355641 82.782952) + (xy 80.147047 82.574358) (xy 80.14704 82.574352) (xy 79.912993 82.394761) (xy 79.65751 82.247258) + (xy 79.6575 82.247254) (xy 79.384961 82.134364) (xy 79.384954 82.134362) (xy 79.384952 82.134361) + (xy 79.099993 82.058007) (xy 79.051113 82.051571) (xy 78.807513 82.0195) (xy 78.807506 82.0195) + (xy 78.512494 82.0195) (xy 78.512486 82.0195) (xy 78.234085 82.056153) (xy 78.220007 82.058007) + (xy 77.952227 82.129758) (xy 77.935048 82.134361) (xy 77.935038 82.134364) (xy 77.662499 82.247254) + (xy 77.662489 82.247258) (xy 77.407006 82.394761) (xy 77.172959 82.574352) (xy 77.172952 82.574358) + (xy 76.964358 82.782952) (xy 76.964352 82.782959) (xy 76.784761 83.017006) (xy 76.637258 83.272489) + (xy 76.637254 83.272499) (xy 76.524364 83.545038) (xy 76.524361 83.545048) (xy 76.45153 83.816861) + (xy 76.448008 83.830004) (xy 76.448006 83.830015) (xy 76.4095 84.122486) (xy 73.971731 84.122486) + (xy 73.821445 84.028055) (xy 73.821442 84.028053) (xy 73.568411 83.9062) (xy 73.303329 83.813443) + (xy 73.303317 83.813439) (xy 73.029512 83.750945) (xy 73.029494 83.750942) (xy 72.750431 83.7195) + (xy 72.750425 83.7195) (xy 72.469575 83.7195) (xy 72.469568 83.7195) (xy 72.190505 83.750942) (xy 72.190487 83.750945) + (xy 71.916682 83.813439) (xy 71.91667 83.813443) (xy 71.651588 83.9062) (xy 71.398557 84.028053) + (xy 71.160753 84.177476) (xy 70.941175 84.352583) (xy 70.742583 84.551175) (xy 70.567476 84.770753) + (xy 70.418053 85.008557) (xy 70.2962 85.261588) (xy 70.203443 85.52667) (xy 70.203439 85.526682) + (xy 70.140945 85.800487) (xy 70.140942 85.800505) (xy 70.1095 86.079568) (xy 58.4505 86.079568) + (xy 58.4505 84.155305) (xy 64.91 84.155305) (xy 64.91 84.384694) (xy 64.910001 84.38471) (xy 64.939942 84.612137) + (xy 64.999318 84.83373) (xy 65.087102 85.045659) (xy 65.087106 85.045669) (xy 65.201799 85.244324) + (xy 65.201805 85.244331) (xy 65.258381 85.318064) (xy 66.177037 84.399408) (xy 66.194075 84.462993) + (xy 66.259901 84.577007) (xy 66.352993 84.670099) (xy 66.467007 84.735925) (xy 66.53059 84.752962) + (xy 65.611934 85.671617) (xy 65.611934 85.671618) (xy 65.685666 85.728194) (xy 65.88433 85.842893) + (xy 65.88434 85.842897) (xy 66.096269 85.930681) (xy 66.317862 85.990057) (xy 66.545289 86.019998) + (xy 66.545306 86.02) (xy 66.774694 86.02) (xy 66.77471 86.019998) (xy 67.002137 85.990057) (xy 67.128043 85.956321) + (xy 67.22373 85.930681) (xy 67.435659 85.842897) (xy 67.435668 85.842893) (xy 67.634327 85.728197) + (xy 67.634334 85.728192) (xy 67.708064 85.671617) (xy 66.789409 84.752962) (xy 66.852993 84.735925) + (xy 66.967007 84.670099) (xy 67.060099 84.577007) (xy 67.125925 84.462993) (xy 67.142962 84.399409) + (xy 68.061617 85.318064) (xy 68.118192 85.244334) (xy 68.118197 85.244327) (xy 68.232893 85.045668) + (xy 68.232897 85.045659) (xy 68.320681 84.83373) (xy 68.380057 84.612137) (xy 68.409998 84.38471) + (xy 68.41 84.384694) (xy 68.41 84.155305) (xy 68.409998 84.155289) (xy 68.380057 83.927862) (xy 68.320681 83.706269) + (xy 68.232897 83.49434) (xy 68.232893 83.49433) (xy 68.118194 83.295666) (xy 68.061618 83.221934) + (xy 68.061617 83.221934) (xy 67.142962 84.140589) (xy 67.125925 84.077007) (xy 67.060099 83.962993) + (xy 66.967007 83.869901) (xy 66.852993 83.804075) (xy 66.789407 83.787037) (xy 67.708064 82.868381) + (xy 67.708064 82.86838) (xy 67.634331 82.811805) (xy 67.634324 82.811799) (xy 67.435669 82.697106) + (xy 67.435659 82.697102) (xy 67.22373 82.609318) (xy 67.002137 82.549942) (xy 66.77471 82.520001) + (xy 66.774694 82.52) (xy 66.545306 82.52) (xy 66.545289 82.520001) (xy 66.317862 82.549942) (xy 66.096269 82.609318) + (xy 65.88434 82.697102) (xy 65.88433 82.697106) (xy 65.685673 82.811801) (xy 65.685659 82.81181) + (xy 65.611934 82.86838) (xy 66.53059 83.787037) (xy 66.467007 83.804075) (xy 66.352993 83.869901) + (xy 66.259901 83.962993) (xy 66.194075 84.077007) (xy 66.177037 84.14059) (xy 65.25838 83.221934) + (xy 65.20181 83.295659) (xy 65.201801 83.295673) (xy 65.087106 83.49433) (xy 65.087102 83.49434) + (xy 64.999318 83.706269) (xy 64.939942 83.927862) (xy 64.910001 84.155289) (xy 64.91 84.155305) + (xy 58.4505 84.155305) (xy 58.4505 71.879568) (xy 64.1095 71.879568) (xy 64.1095 72.160431) (xy 64.140942 72.439494) + (xy 64.140945 72.439512) (xy 64.203439 72.713317) (xy 64.203443 72.713329) (xy 64.2962 72.978411) + (xy 64.418053 73.231442) (xy 64.418055 73.231445) (xy 64.567477 73.469248) (xy 64.696823 73.631442) + (xy 64.717093 73.656861) (xy 64.742584 73.688825) (xy 64.941175 73.887416) (xy 65.160752 74.062523) + (xy 65.398555 74.211945) (xy 65.651592 74.333801) (xy 65.794484 74.383801) (xy 65.91667 74.426556) + (xy 65.916682 74.42656) (xy 66.190491 74.489055) (xy 66.190497 74.489055) (xy 66.190505 74.489057) + (xy 66.348844 74.506897) (xy 66.469569 74.520499) (xy 66.469572 74.5205) (xy 66.469575 74.5205) + (xy 66.750428 74.5205) (xy 66.750429 74.520499) (xy 66.893055 74.504429) (xy 67.029494 74.489057) + (xy 67.029499 74.489056) (xy 67.029509 74.489055) (xy 67.303318 74.42656) (xy 67.568408 74.333801) + (xy 67.821445 74.211945) (xy 68.059248 74.062523) (xy 68.278825 73.887416) (xy 68.477416 73.688825) + (xy 68.652523 73.469248) (xy 68.801945 73.231445) (xy 68.923801 72.978408) (xy 69.01656 72.713318) + (xy 69.079055 72.439509) (xy 69.086661 72.372009) (xy 69.095956 72.289509) (xy 69.1105 72.160425) + (xy 69.1105 71.929568) (xy 76.1595 71.929568) (xy 76.1595 72.210431) (xy 76.190942 72.489494) (xy 76.190945 72.489512) + (xy 76.253439 72.763317) (xy 76.253443 72.763329) (xy 76.3462 73.028411) (xy 76.468053 73.281442) + (xy 76.468055 73.281445) (xy 76.617477 73.519248) (xy 76.792584 73.738825) (xy 76.991175 73.937416) + (xy 77.210752 74.112523) (xy 77.437238 74.254834) (xy 77.448557 74.261946) (xy 77.50485 74.289055) + (xy 77.701592 74.383801) (xy 77.871602 74.44329) (xy 77.96667 74.476556) (xy 77.966682 74.47656) + (xy 78.240491 74.539055) (xy 78.240497 74.539055) (xy 78.240505 74.539057) (xy 78.426547 74.560018) + (xy 78.519569 74.570499) (xy 78.519572 74.5705) (xy 78.519575 74.5705) (xy 78.800428 74.5705) (xy 78.800429 74.570499) + (xy 78.943055 74.554429) (xy 79.079494 74.539057) (xy 79.079499 74.539056) (xy 79.079509 74.539055) + (xy 79.353318 74.47656) (xy 79.618408 74.383801) (xy 79.871445 74.261945) (xy 80.109248 74.112523) + (xy 80.328825 73.937416) (xy 80.527416 73.738825) (xy 80.702523 73.519248) (xy 80.851945 73.281445) + (xy 80.973801 73.028408) (xy 81.06656 72.763318) (xy 81.129055 72.489509) (xy 81.129083 72.489267) + (xy 81.149815 72.305255) (xy 81.1605 72.210425) (xy 81.1605 71.929575) (xy 81.154561 71.876862) + (xy 81.133505 71.689979) (xy 81.132332 71.679568) (xy 82.442833 71.679568) (xy 82.442833 71.960431) + (xy 82.474275 72.239494) (xy 82.474278 72.239512) (xy 82.536772 72.513317) (xy 82.536776 72.513329) + (xy 82.629533 72.778411) (xy 82.751386 73.031442) (xy 82.751388 73.031445) (xy 82.90081 73.269248) + (xy 82.987862 73.378408) (xy 83.045752 73.451) (xy 83.075917 73.488825) (xy 83.274508 73.687416) + (xy 83.494085 73.862523) (xy 83.625383 73.945023) (xy 83.73189 74.011946) (xy 83.76976 74.030183) + (xy 83.984925 74.133801) (xy 84.127817 74.183801) (xy 84.250003 74.226556) (xy 84.250015 74.22656) + (xy 84.523824 74.289055) (xy 84.52383 74.289055) (xy 84.523838 74.289057) (xy 84.701339 74.309056) + (xy 84.802902 74.320499) (xy 84.802905 74.3205) (xy 84.802908 74.3205) (xy 85.083761 74.3205) (xy 85.083762 74.320499) + (xy 85.239724 74.302927) (xy 85.362827 74.289057) (xy 85.362832 74.289056) (xy 85.362842 74.289055) + (xy 85.636651 74.22656) (xy 85.901741 74.133801) (xy 86.154778 74.011945) (xy 86.392581 73.862523) + (xy 86.612158 73.687416) (xy 86.810749 73.488825) (xy 86.985856 73.269248) (xy 87.135278 73.031445) + (xy 87.257134 72.778408) (xy 87.349893 72.513318) (xy 87.412388 72.239509) (xy 87.413508 72.229575) + (xy 87.434537 72.042927) (xy 87.443833 71.960425) (xy 87.443833 71.729568) (xy 94.492833 71.729568) + (xy 94.492833 72.010431) (xy 94.524275 72.289494) (xy 94.524278 72.289512) (xy 94.586772 72.563317) + (xy 94.586776 72.563329) (xy 94.679533 72.828411) (xy 94.801386 73.081442) (xy 94.801388 73.081445) + (xy 94.95081 73.319248) (xy 95.125917 73.538825) (xy 95.324508 73.737416) (xy 95.544085 73.912523) + (xy 95.77144 74.05538) (xy 95.78189 74.061946) (xy 95.807799 74.074423) (xy 96.034925 74.183801) + (xy 96.188148 74.237416) (xy 96.300003 74.276556) (xy 96.300015 74.27656) (xy 96.573824 74.339055) + (xy 96.57383 74.339055) (xy 96.573838 74.339057) (xy 96.748534 74.35874) (xy 96.852902 74.370499) + (xy 96.852905 74.3705) (xy 96.852908 74.3705) (xy 97.133761 74.3705) (xy 97.133762 74.370499) (xy 97.28936 74.352968) + (xy 97.412827 74.339057) (xy 97.412832 74.339056) (xy 97.412842 74.339055) (xy 97.686651 74.27656) + (xy 97.951741 74.183801) (xy 98.204778 74.061945) (xy 98.442581 73.912523) (xy 98.662158 73.737416) + (xy 98.860749 73.538825) (xy 99.035856 73.319248) (xy 99.185278 73.081445) (xy 99.307134 72.828408) + (xy 99.399893 72.563318) (xy 99.462388 72.289509) (xy 99.463508 72.279575) (xy 99.484537 72.092927) + (xy 99.493833 72.010425) (xy 99.493833 71.762068) (xy 100.776167 71.762068) (xy 100.776167 72.042931) + (xy 100.807609 72.321994) (xy 100.807612 72.322012) (xy 100.870106 72.595817) (xy 100.87011 72.595829) + (xy 100.962867 72.860911) (xy 101.08472 73.113942) (xy 101.095278 73.130745) (xy 101.234144 73.351748) + (xy 101.409251 73.571325) (xy 101.607842 73.769916) (xy 101.827419 73.945023) (xy 102.065222 74.094445) + (xy 102.318259 74.216301) (xy 102.517347 74.285965) (xy 102.583337 74.309056) (xy 102.583349 74.30906) + (xy 102.857158 74.371555) (xy 102.857164 74.371555) (xy 102.857172 74.371557) (xy 103.043214 74.392518) + (xy 103.136236 74.402999) (xy 103.136239 74.403) (xy 103.136242 74.403) (xy 103.417095 74.403) (xy 103.417096 74.402999) + (xy 103.559722 74.386929) (xy 103.696161 74.371557) (xy 103.696166 74.371556) (xy 103.696176 74.371555) + (xy 103.969985 74.30906) (xy 104.235075 74.216301) (xy 104.488112 74.094445) (xy 104.725915 73.945023) + (xy 104.945492 73.769916) (xy 105.144083 73.571325) (xy 105.31919 73.351748) (xy 105.468612 73.113945) + (xy 105.590468 72.860908) (xy 105.683227 72.595818) (xy 105.745722 72.322009) (xy 105.751564 72.270165) + (xy 105.768895 72.116343) (xy 105.777167 72.042925) (xy 105.777167 71.812068) (xy 112.826167 71.812068) + (xy 112.826167 72.092931) (xy 112.857609 72.371994) (xy 112.857612 72.372012) (xy 112.920106 72.645817) + (xy 112.92011 72.645829) (xy 113.012867 72.910911) (xy 113.13472 73.163942) (xy 113.134722 73.163945) + (xy 113.284144 73.401748) (xy 113.459251 73.621325) (xy 113.657842 73.819916) (xy 113.877419 73.995023) + (xy 114.113072 74.143094) (xy 114.115224 74.144446) (xy 114.155623 74.163901) (xy 114.368259 74.266301) + (xy 114.535497 74.32482) (xy 114.633337 74.359056) (xy 114.633349 74.35906) (xy 114.907158 74.421555) + (xy 114.907164 74.421555) (xy 114.907172 74.421557) (xy 115.093214 74.442518) (xy 115.186236 74.452999) + (xy 115.186239 74.453) (xy 115.186242 74.453) (xy 115.467095 74.453) (xy 115.467096 74.452999) (xy 115.609722 74.436929) + (xy 115.746161 74.421557) (xy 115.746166 74.421556) (xy 115.746176 74.421555) (xy 116.019985 74.35906) + (xy 116.285075 74.266301) (xy 116.538112 74.144445) (xy 116.775915 73.995023) (xy 116.995492 73.819916) + (xy 117.194083 73.621325) (xy 117.36919 73.401748) (xy 117.518612 73.163945) (xy 117.640468 72.910908) + (xy 117.733227 72.645818) (xy 117.795722 72.372009) (xy 117.796485 72.365236) (xy 117.811772 72.229568) + (xy 119.1095 72.229568) (xy 119.1095 72.510431) (xy 119.140942 72.789494) (xy 119.140945 72.789512) + (xy 119.203439 73.063317) (xy 119.203443 73.063329) (xy 119.2962 73.328411) (xy 119.418053 73.581442) + (xy 119.436646 73.611033) (xy 119.567477 73.819248) (xy 119.656927 73.931415) (xy 119.735694 74.030186) + (xy 119.742584 74.038825) (xy 119.941175 74.237416) (xy 120.160752 74.412523) (xy 120.398555 74.561945) + (xy 120.651592 74.683801) (xy 120.809285 74.73898) (xy 120.91667 74.776556) (xy 120.916682 74.77656) + (xy 121.190491 74.839055) (xy 121.190497 74.839055) (xy 121.190505 74.839057) (xy 121.376547 74.860018) + (xy 121.469569 74.870499) (xy 121.469572 74.8705) (xy 121.469575 74.8705) (xy 121.750428 74.8705) + (xy 121.750429 74.870499) (xy 121.893055 74.854429) (xy 122.029494 74.839057) (xy 122.029499 74.839056) + (xy 122.029509 74.839055) (xy 122.303318 74.77656) (xy 122.568408 74.683801) (xy 122.821445 74.561945) + (xy 123.059248 74.412523) (xy 123.278825 74.237416) (xy 123.477416 74.038825) (xy 123.652523 73.819248) + (xy 123.801945 73.581445) (xy 123.923801 73.328408) (xy 124.01656 73.063318) (xy 124.079055 72.789509) + (xy 124.080306 72.778411) (xy 124.095245 72.645817) (xy 124.1105 72.510425) (xy 124.1105 72.229575) + (xy 124.095447 72.095977) (xy 124.079057 71.950505) (xy 124.079054 71.950487) (xy 124.047462 71.812075) + (xy 124.01656 71.676682) (xy 123.923801 71.411592) (xy 123.814211 71.184025) (xy 123.801946 71.158557) + (xy 123.801945 71.158555) (xy 123.652523 70.920752) (xy 123.477416 70.701175) (xy 123.278825 70.502584) + (xy 123.059248 70.327477) (xy 122.85824 70.201175) (xy 122.821442 70.178053) (xy 122.568411 70.0562) + (xy 122.303329 69.963443) (xy 122.303317 69.963439) (xy 122.029512 69.900945) (xy 122.029494 69.900942) + (xy 121.750431 69.8695) (xy 121.750425 69.8695) (xy 121.469575 69.8695) (xy 121.469568 69.8695) + (xy 121.190505 69.900942) (xy 121.190487 69.900945) (xy 120.916682 69.963439) (xy 120.91667 69.963443) + (xy 120.651588 70.0562) (xy 120.398557 70.178053) (xy 120.160753 70.327476) (xy 119.941175 70.502583) + (xy 119.742583 70.701175) (xy 119.567476 70.920753) (xy 119.418053 71.158557) (xy 119.2962 71.411588) + (xy 119.203443 71.67667) (xy 119.203439 71.676682) (xy 119.140945 71.950487) (xy 119.140942 71.950505) + (xy 119.1095 72.229568) (xy 117.811772 72.229568) (xy 117.813727 72.212213) (xy 117.813727 72.212212) + (xy 117.819932 72.157137) (xy 117.827167 72.092925) (xy 117.827167 71.812075) (xy 117.804562 71.611446) + (xy 117.795724 71.533005) (xy 117.795721 71.532987) (xy 117.774071 71.438134) (xy 117.733227 71.259182) + (xy 117.640468 70.994092) (xy 117.518612 70.741055) (xy 117.36919 70.503252) (xy 117.194083 70.283675) + (xy 116.995492 70.085084) (xy 116.775915 69.909977) (xy 116.545565 69.765238) (xy 116.538109 69.760553) + (xy 116.285078 69.6387) (xy 116.019996 69.545943) (xy 116.019984 69.545939) (xy 115.746179 69.483445) + (xy 115.746161 69.483442) (xy 115.467098 69.452) (xy 115.467092 69.452) (xy 115.186242 69.452) (xy 115.186235 69.452) + (xy 114.907172 69.483442) (xy 114.907154 69.483445) (xy 114.633349 69.545939) (xy 114.633337 69.545943) + (xy 114.368255 69.6387) (xy 114.115224 69.760553) (xy 113.87742 69.909976) (xy 113.657842 70.085083) + (xy 113.45925 70.283675) (xy 113.284143 70.503253) (xy 113.13472 70.741057) (xy 113.012867 70.994088) + (xy 112.92011 71.25917) (xy 112.920106 71.259182) (xy 112.857612 71.532987) (xy 112.857609 71.533005) + (xy 112.826167 71.812068) (xy 105.777167 71.812068) (xy 105.777167 71.762075) (xy 105.754063 71.55702) + (xy 105.745724 71.483005) (xy 105.745721 71.482987) (xy 105.742668 71.469613) (xy 105.683227 71.209182) + (xy 105.683008 71.208557) (xy 105.631583 71.061592) (xy 105.590468 70.944092) (xy 105.492691 70.741055) + (xy 105.468613 70.691057) (xy 105.465937 70.686798) (xy 105.31919 70.453252) (xy 105.144083 70.233675) + (xy 104.945492 70.035084) (xy 104.923916 70.017878) (xy 104.855652 69.963439) (xy 104.725915 69.859977) + (xy 104.488112 69.710555) (xy 104.488109 69.710553) (xy 104.235078 69.5887) (xy 103.969996 69.495943) + (xy 103.969984 69.495939) (xy 103.696179 69.433445) (xy 103.696161 69.433442) (xy 103.417098 69.402) + (xy 103.417092 69.402) (xy 103.136242 69.402) (xy 103.136235 69.402) (xy 102.857172 69.433442) (xy 102.857154 69.433445) + (xy 102.583349 69.495939) (xy 102.583337 69.495943) (xy 102.318255 69.5887) (xy 102.065224 69.710553) + (xy 101.82742 69.859976) (xy 101.607842 70.035083) (xy 101.40925 70.233675) (xy 101.234143 70.453253) + (xy 101.08472 70.691057) (xy 100.962867 70.944088) (xy 100.87011 71.20917) (xy 100.870106 71.209182) + (xy 100.807612 71.482987) (xy 100.807609 71.483005) (xy 100.776167 71.762068) (xy 99.493833 71.762068) + (xy 99.493833 71.729575) (xy 99.475906 71.570463) (xy 99.46239 71.450505) (xy 99.462387 71.450487) + (xy 99.453509 71.411592) (xy 99.399893 71.176682) (xy 99.39649 71.166958) (xy 99.336002 70.994092) + (xy 99.307134 70.911592) (xy 99.185278 70.658555) (xy 99.035856 70.420752) (xy 98.860749 70.201175) + (xy 98.662158 70.002584) (xy 98.442581 69.827477) (xy 98.278337 69.724275) (xy 98.204775 69.678053) + (xy 97.951744 69.5562) (xy 97.686662 69.463443) (xy 97.68665 69.463439) (xy 97.412845 69.400945) + (xy 97.412827 69.400942) (xy 97.133764 69.3695) (xy 97.133758 69.3695) (xy 96.852908 69.3695) (xy 96.852901 69.3695) + (xy 96.573838 69.400942) (xy 96.57382 69.400945) (xy 96.300015 69.463439) (xy 96.300003 69.463443) + (xy 96.034921 69.5562) (xy 95.78189 69.678053) (xy 95.544086 69.827476) (xy 95.324508 70.002583) + (xy 95.125916 70.201175) (xy 94.950809 70.420753) (xy 94.801386 70.658557) (xy 94.679533 70.911588) + (xy 94.586776 71.17667) (xy 94.586772 71.176682) (xy 94.524278 71.450487) (xy 94.524275 71.450505) + (xy 94.492833 71.729568) (xy 87.443833 71.729568) (xy 87.443833 71.679575) (xy 87.430263 71.559137) + (xy 87.41239 71.400505) (xy 87.412387 71.400487) (xy 87.349893 71.126682) (xy 87.349889 71.12667) + (xy 87.303496 70.994088) (xy 87.257134 70.861592) (xy 87.135278 70.608555) (xy 86.985856 70.370752) + (xy 86.810749 70.151175) (xy 86.612158 69.952584) (xy 86.392581 69.777477) (xy 86.181491 69.64484) + (xy 86.154775 69.628053) (xy 85.901744 69.5062) (xy 85.636662 69.413443) (xy 85.63665 69.413439) + (xy 85.362845 69.350945) (xy 85.362827 69.350942) (xy 85.083764 69.3195) (xy 85.083758 69.3195) + (xy 84.802908 69.3195) (xy 84.802901 69.3195) (xy 84.523838 69.350942) (xy 84.52382 69.350945) (xy 84.250015 69.413439) + (xy 84.250003 69.413443) (xy 83.984921 69.5062) (xy 83.73189 69.628053) (xy 83.494086 69.777476) + (xy 83.274508 69.952583) (xy 83.075916 70.151175) (xy 82.900809 70.370753) (xy 82.751386 70.608557) + (xy 82.629533 70.861588) (xy 82.536776 71.12667) (xy 82.536772 71.126682) (xy 82.474278 71.400487) + (xy 82.474275 71.400505) (xy 82.442833 71.679568) (xy 81.132332 71.679568) (xy 81.130414 71.662552) + (xy 81.129055 71.650491) (xy 81.06656 71.376682) (xy 80.973801 71.111592) (xy 80.851945 70.858555) + (xy 80.702523 70.620752) (xy 80.527416 70.401175) (xy 80.328825 70.202584) (xy 80.109248 70.027477) + (xy 79.871445 69.878055) (xy 79.871442 69.878053) (xy 79.618411 69.7562) (xy 79.353329 69.663443) + (xy 79.353317 69.663439) (xy 79.079512 69.600945) (xy 79.079494 69.600942) (xy 78.800431 69.5695) + (xy 78.800425 69.5695) (xy 78.519575 69.5695) (xy 78.519568 69.5695) (xy 78.240505 69.600942) (xy 78.240487 69.600945) + (xy 77.966682 69.663439) (xy 77.96667 69.663443) (xy 77.701588 69.7562) (xy 77.448557 69.878053) + (xy 77.210753 70.027476) (xy 76.991175 70.202583) (xy 76.792583 70.401175) (xy 76.617476 70.620753) + (xy 76.468053 70.858557) (xy 76.3462 71.111588) (xy 76.253443 71.37667) (xy 76.253439 71.376682) + (xy 76.190945 71.650487) (xy 76.190942 71.650505) (xy 76.1595 71.929568) (xy 69.1105 71.929568) + (xy 69.1105 71.879575) (xy 69.09526 71.744315) (xy 69.079057 71.600505) (xy 69.079054 71.600487) + (xy 69.070098 71.56125) (xy 69.01656 71.326682) (xy 68.923801 71.061592) (xy 68.801945 70.808555) + (xy 68.652523 70.570752) (xy 68.477416 70.351175) (xy 68.278825 70.152584) (xy 68.260992 70.138363) + (xy 68.194183 70.085084) (xy 68.059248 69.977477) (xy 67.854739 69.848975) (xy 67.821442 69.828053) + (xy 67.568411 69.7062) (xy 67.303329 69.613443) (xy 67.303317 69.613439) (xy 67.029512 69.550945) + (xy 67.029494 69.550942) (xy 66.750431 69.5195) (xy 66.750425 69.5195) (xy 66.469575 69.5195) (xy 66.469568 69.5195) + (xy 66.190505 69.550942) (xy 66.190487 69.550945) (xy 65.916682 69.613439) (xy 65.91667 69.613443) + (xy 65.651588 69.7062) (xy 65.398557 69.828053) (xy 65.160753 69.977476) (xy 64.941175 70.152583) + (xy 64.742583 70.351175) (xy 64.567476 70.570753) (xy 64.418053 70.808557) (xy 64.2962 71.061588) + (xy 64.203443 71.32667) (xy 64.203439 71.326682) (xy 64.140945 71.600487) (xy 64.140942 71.600505) + (xy 64.1095 71.879568) (xy 58.4505 71.879568) (xy 58.4505 60.078711) (xy 59.1495 60.078711) (xy 59.1495 60.321288) + (xy 59.181161 60.561785) (xy 59.243947 60.796104) (xy 59.336773 61.020205) (xy 59.336776 61.020212) + (xy 59.458064 61.230289) (xy 59.458066 61.230292) (xy 59.458067 61.230293) (xy 59.605733 61.422736) + (xy 59.605739 61.422743) (xy 59.777256 61.59426) (xy 59.777262 61.594265) (xy 59.969711 61.741936) + (xy 60.179788 61.863224) (xy 60.4039 61.956054) (xy 60.638211 62.018838) (xy 60.818586 62.042584) + (xy 60.878711 62.0505) (xy 60.878712 62.0505) (xy 61.121289 62.0505) (xy 61.169388 62.044167) (xy 61.361789 62.018838) + (xy 61.5961 61.956054) (xy 61.820212 61.863224) (xy 62.030289 61.741936) (xy 62.222738 61.594265) + (xy 62.394265 61.422738) (xy 62.499812 61.285186) (xy 65.0595 61.285186) (xy 65.0595 61.554813) + (xy 65.089686 61.822719) (xy 65.089687 61.822728) (xy 65.089688 61.822732) (xy 65.09701 61.854813) + (xy 65.149684 62.085594) (xy 65.149687 62.085602) (xy 65.238734 62.340082) (xy 65.355714 62.582994) + (xy 65.355716 62.582997) (xy 65.499162 62.811289) (xy 65.597187 62.934208) (xy 65.632967 62.979076) + (xy 65.667266 63.022085) (xy 65.857915 63.212734) (xy 66.068711 63.380838) (xy 66.297003 63.524284) + (xy 66.539921 63.641267) (xy 66.653009 63.680838) (xy 66.794397 63.730312) (xy 66.794405 63.730315) + (xy 66.794408 63.730315) (xy 66.794409 63.730316) (xy 67.057268 63.790312) (xy 67.325187 63.820499) + (xy 67.325188 63.8205) (xy 67.325191 63.8205) (xy 67.594812 63.8205) (xy 67.594812 63.820499) (xy 67.862732 63.790312) + (xy 68.125591 63.730316) (xy 68.380079 63.641267) (xy 68.622997 63.524284) (xy 68.851289 63.380838) + (xy 69.062085 63.212734) (xy 69.252734 63.022085) (xy 69.420838 62.811289) (xy 69.564284 62.582997) + (xy 69.681267 62.340079) (xy 69.770316 62.085591) (xy 69.830312 61.822732) (xy 69.830313 61.82272) + (xy 69.830314 61.822717) (xy 69.83678 61.765332) (xy 69.863846 61.700918) (xy 69.921441 61.661362) + (xy 69.991278 61.659225) (xy 70.051185 61.695183) (xy 70.08214 61.757821) (xy 70.08322 61.765332) + (xy 70.089685 61.822717) (xy 70.089687 61.822729) (xy 70.089688 61.822732) (xy 70.09701 61.854813) + (xy 70.149684 62.085594) (xy 70.149687 62.085602) (xy 70.238734 62.340082) (xy 70.355714 62.582994) + (xy 70.355716 62.582997) (xy 70.499162 62.811289) (xy 70.597187 62.934208) (xy 70.632967 62.979076) + (xy 70.667266 63.022085) (xy 70.857915 63.212734) (xy 71.068711 63.380838) (xy 71.297003 63.524284) + (xy 71.539921 63.641267) (xy 71.653009 63.680838) (xy 71.794397 63.730312) (xy 71.794405 63.730315) + (xy 71.794408 63.730315) (xy 71.794409 63.730316) (xy 72.057268 63.790312) (xy 72.325187 63.820499) + (xy 72.325188 63.8205) (xy 72.325191 63.8205) (xy 72.594812 63.8205) (xy 72.594812 63.820499) (xy 72.862732 63.790312) + (xy 73.125591 63.730316) (xy 73.380079 63.641267) (xy 73.622997 63.524284) (xy 73.851289 63.380838) + (xy 74.062085 63.212734) (xy 74.252734 63.022085) (xy 74.420838 62.811289) (xy 74.564284 62.582997) + (xy 74.681267 62.340079) (xy 74.770316 62.085591) (xy 74.814609 61.891529) (xy 74.848718 61.830552) + (xy 74.910379 61.797694) (xy 74.980016 61.803389) (xy 75.03552 61.845829) (xy 75.059268 61.911539) + (xy 75.0595 61.919123) (xy 75.0595 62.634221) (xy 75.069904 62.766412) (xy 75.069905 62.766419) + (xy 75.124902 62.984678) (xy 75.124903 62.984681) (xy 75.217991 63.189622) (xy 75.217997 63.189632) + (xy 75.346174 63.374645) (xy 75.346178 63.37465) (xy 75.346181 63.374654) (xy 75.505346 63.533819) + (xy 75.50535 63.533822) (xy 75.505354 63.533825) (xy 75.601555 63.600473) (xy 75.690374 63.662007) + (xy 75.895317 63.755096) (xy 75.895321 63.755097) (xy 76.11358 63.810094) (xy 76.113582 63.810094) + (xy 76.113589 63.810096) (xy 76.245784 63.8205) (xy 76.245792 63.8205) (xy 78.674208 63.8205) (xy 78.674216 63.8205) + (xy 78.806411 63.810096) (xy 79.024683 63.755096) (xy 79.229626 63.662007) (xy 79.414654 63.533819) + (xy 79.573819 63.374654) (xy 79.702007 63.189626) (xy 79.795096 62.984683) (xy 79.850096 62.766411) + (xy 79.8605 62.634216) (xy 79.8605 61.485186) (xy 83.392833 61.485186) (xy 83.392833 61.754813) + (xy 83.423019 62.022719) (xy 83.423021 62.022731) (xy 83.483017 62.285594) (xy 83.48302 62.285602) + (xy 83.572067 62.540082) (xy 83.689047 62.782994) (xy 83.689049 62.782997) (xy 83.832495 63.011289) + (xy 83.876454 63.066412) (xy 83.999088 63.220191) (xy 84.000599 63.222085) (xy 84.191248 63.412734) + (xy 84.402044 63.580838) (xy 84.630336 63.724284) (xy 84.630338 63.724285) (xy 84.642862 63.730316) + (xy 84.873254 63.841267) (xy 85.064382 63.908145) (xy 85.12773 63.930312) (xy 85.127738 63.930315) + (xy 85.127741 63.930315) (xy 85.127742 63.930316) (xy 85.390601 63.990312) (xy 85.65852 64.020499) + (xy 85.658521 64.0205) (xy 85.658524 64.0205) (xy 85.928145 64.0205) (xy 85.928145 64.020499) (xy 86.196065 63.990312) + (xy 86.458924 63.930316) (xy 86.713412 63.841267) (xy 86.95633 63.724284) (xy 87.184622 63.580838) + (xy 87.395418 63.412734) (xy 87.586067 63.222085) (xy 87.754171 63.011289) (xy 87.897617 62.782997) + (xy 88.0146 62.540079) (xy 88.103649 62.285591) (xy 88.163645 62.022732) (xy 88.163646 62.02272) + (xy 88.163647 62.022717) (xy 88.170113 61.965332) (xy 88.197179 61.900918) (xy 88.254774 61.861362) + (xy 88.324611 61.859225) (xy 88.384518 61.895183) (xy 88.415473 61.957821) (xy 88.416553 61.965332) + (xy 88.423018 62.022717) (xy 88.423021 62.022731) (xy 88.483017 62.285594) (xy 88.48302 62.285602) + (xy 88.572067 62.540082) (xy 88.689047 62.782994) (xy 88.689049 62.782997) (xy 88.832495 63.011289) + (xy 88.876454 63.066412) (xy 88.999088 63.220191) (xy 89.000599 63.222085) (xy 89.191248 63.412734) + (xy 89.402044 63.580838) (xy 89.630336 63.724284) (xy 89.630338 63.724285) (xy 89.642862 63.730316) + (xy 89.873254 63.841267) (xy 90.064382 63.908145) (xy 90.12773 63.930312) (xy 90.127738 63.930315) + (xy 90.127741 63.930315) (xy 90.127742 63.930316) (xy 90.390601 63.990312) (xy 90.65852 64.020499) + (xy 90.658521 64.0205) (xy 90.658524 64.0205) (xy 90.928145 64.0205) (xy 90.928145 64.020499) (xy 91.196065 63.990312) + (xy 91.458924 63.930316) (xy 91.713412 63.841267) (xy 91.95633 63.724284) (xy 92.184622 63.580838) + (xy 92.395418 63.412734) (xy 92.586067 63.222085) (xy 92.754171 63.011289) (xy 92.897617 62.782997) + (xy 93.0146 62.540079) (xy 93.103649 62.285591) (xy 93.147942 62.091529) (xy 93.182051 62.030552) + (xy 93.243712 61.997694) (xy 93.313349 62.003389) (xy 93.368853 62.045829) (xy 93.392601 62.111539) + (xy 93.392833 62.119123) (xy 93.392833 62.834221) (xy 93.403237 62.966412) (xy 93.403238 62.966419) + (xy 93.458235 63.184678) (xy 93.458236 63.184681) (xy 93.551324 63.389622) (xy 93.55133 63.389632) + (xy 93.679507 63.574645) (xy 93.679511 63.57465) (xy 93.679514 63.574654) (xy 93.838679 63.733819) + (xy 93.838683 63.733822) (xy 93.838687 63.733825) (xy 93.948778 63.810096) (xy 94.023707 63.862007) + (xy 94.22865 63.955096) (xy 94.228654 63.955097) (xy 94.446913 64.010094) (xy 94.446915 64.010094) + (xy 94.446922 64.010096) (xy 94.579117 64.0205) (xy 94.579125 64.0205) (xy 97.007541 64.0205) (xy 97.007549 64.0205) + (xy 97.139744 64.010096) (xy 97.358016 63.955096) (xy 97.562959 63.862007) (xy 97.747987 63.733819) + (xy 97.907152 63.574654) (xy 98.03534 63.389626) (xy 98.128429 63.184683) (xy 98.183429 62.966411) + (xy 98.193833 62.834216) (xy 98.193833 61.485186) (xy 101.726167 61.485186) (xy 101.726167 61.754813) + (xy 101.756353 62.022719) (xy 101.756355 62.022731) (xy 101.816351 62.285594) (xy 101.816354 62.285602) + (xy 101.905401 62.540082) (xy 102.022381 62.782994) (xy 102.022383 62.782997) (xy 102.165829 63.011289) + (xy 102.209788 63.066412) (xy 102.332422 63.220191) (xy 102.333933 63.222085) (xy 102.524582 63.412734) + (xy 102.735378 63.580838) (xy 102.96367 63.724284) (xy 102.963672 63.724285) (xy 102.976196 63.730316) + (xy 103.206588 63.841267) (xy 103.397716 63.908145) (xy 103.461064 63.930312) (xy 103.461072 63.930315) + (xy 103.461075 63.930315) (xy 103.461076 63.930316) (xy 103.723935 63.990312) (xy 103.991854 64.020499) + (xy 103.991855 64.0205) (xy 103.991858 64.0205) (xy 104.261479 64.0205) (xy 104.261479 64.020499) + (xy 104.529399 63.990312) (xy 104.792258 63.930316) (xy 105.046746 63.841267) (xy 105.289664 63.724284) + (xy 105.517956 63.580838) (xy 105.728752 63.412734) (xy 105.919401 63.222085) (xy 106.087505 63.011289) + (xy 106.230951 62.782997) (xy 106.347934 62.540079) (xy 106.436983 62.285591) (xy 106.496979 62.022732) + (xy 106.49698 62.02272) (xy 106.496981 62.022717) (xy 106.503447 61.965332) (xy 106.530513 61.900918) + (xy 106.588108 61.861362) (xy 106.657945 61.859225) (xy 106.717852 61.895183) (xy 106.748807 61.957821) + (xy 106.749887 61.965332) (xy 106.756352 62.022717) (xy 106.756355 62.022731) (xy 106.816351 62.285594) + (xy 106.816354 62.285602) (xy 106.905401 62.540082) (xy 107.022381 62.782994) (xy 107.022383 62.782997) + (xy 107.165829 63.011289) (xy 107.209788 63.066412) (xy 107.332422 63.220191) (xy 107.333933 63.222085) + (xy 107.524582 63.412734) (xy 107.735378 63.580838) (xy 107.96367 63.724284) (xy 107.963672 63.724285) + (xy 107.976196 63.730316) (xy 108.206588 63.841267) (xy 108.397716 63.908145) (xy 108.461064 63.930312) + (xy 108.461072 63.930315) (xy 108.461075 63.930315) (xy 108.461076 63.930316) (xy 108.723935 63.990312) + (xy 108.991854 64.020499) (xy 108.991855 64.0205) (xy 108.991858 64.0205) (xy 109.261479 64.0205) + (xy 109.261479 64.020499) (xy 109.529399 63.990312) (xy 109.792258 63.930316) (xy 110.046746 63.841267) + (xy 110.289664 63.724284) (xy 110.517956 63.580838) (xy 110.728752 63.412734) (xy 110.919401 63.222085) + (xy 111.087505 63.011289) (xy 111.230951 62.782997) (xy 111.347934 62.540079) (xy 111.436983 62.285591) + (xy 111.481276 62.091529) (xy 111.515385 62.030552) (xy 111.577046 61.997694) (xy 111.646683 62.003389) + (xy 111.702187 62.045829) (xy 111.725935 62.111539) (xy 111.726167 62.119123) (xy 111.726167 62.834221) + (xy 111.736571 62.966412) (xy 111.736572 62.966419) (xy 111.791569 63.184678) (xy 111.79157 63.184681) + (xy 111.884658 63.389622) (xy 111.884664 63.389632) (xy 112.012841 63.574645) (xy 112.012845 63.57465) + (xy 112.012848 63.574654) (xy 112.172013 63.733819) (xy 112.172017 63.733822) (xy 112.172021 63.733825) + (xy 112.282112 63.810096) (xy 112.357041 63.862007) (xy 112.561984 63.955096) (xy 112.561988 63.955097) + (xy 112.780247 64.010094) (xy 112.780249 64.010094) (xy 112.780256 64.010096) (xy 112.912451 64.0205) + (xy 112.912459 64.0205) (xy 115.340875 64.0205) (xy 115.340883 64.0205) (xy 115.473078 64.010096) + (xy 115.69135 63.955096) (xy 115.896293 63.862007) (xy 116.081321 63.733819) (xy 116.240486 63.574654) + (xy 116.368674 63.389626) (xy 116.461763 63.184683) (xy 116.516763 62.966411) (xy 116.527167 62.834216) + (xy 116.527167 61.585186) (xy 120.0595 61.585186) (xy 120.0595 61.854813) (xy 120.089686 62.122719) + (xy 120.089688 62.122731) (xy 120.149684 62.385594) (xy 120.149687 62.385602) (xy 120.238734 62.640082) + (xy 120.355714 62.882994) (xy 120.355716 62.882997) (xy 120.499162 63.111289) (xy 120.667266 63.322085) + (xy 120.857915 63.512734) (xy 121.068711 63.680838) (xy 121.297003 63.824284) (xy 121.539921 63.941267) + (xy 121.680081 63.990311) (xy 121.794397 64.030312) (xy 121.794405 64.030315) (xy 121.794408 64.030315) + (xy 121.794409 64.030316) (xy 122.057268 64.090312) (xy 122.325187 64.120499) (xy 122.325188 64.1205) + (xy 122.325191 64.1205) (xy 122.594812 64.1205) (xy 122.594812 64.120499) (xy 122.862732 64.090312) + (xy 123.125591 64.030316) (xy 123.380079 63.941267) (xy 123.622997 63.824284) (xy 123.851289 63.680838) + (xy 124.062085 63.512734) (xy 124.252734 63.322085) (xy 124.420838 63.111289) (xy 124.564284 62.882997) + (xy 124.681267 62.640079) (xy 124.770316 62.385591) (xy 124.830312 62.122732) (xy 124.830313 62.12272) + (xy 124.830314 62.122717) (xy 124.83678 62.065332) (xy 124.863846 62.000918) (xy 124.921441 61.961362) + (xy 124.991278 61.959225) (xy 125.051185 61.995183) (xy 125.08214 62.057821) (xy 125.08322 62.065332) + (xy 125.089685 62.122717) (xy 125.089688 62.122731) (xy 125.149684 62.385594) (xy 125.149687 62.385602) + (xy 125.238734 62.640082) (xy 125.355714 62.882994) (xy 125.355716 62.882997) (xy 125.499162 63.111289) + (xy 125.667266 63.322085) (xy 125.857915 63.512734) (xy 126.068711 63.680838) (xy 126.297003 63.824284) + (xy 126.539921 63.941267) (xy 126.680081 63.990311) (xy 126.794397 64.030312) (xy 126.794405 64.030315) + (xy 126.794408 64.030315) (xy 126.794409 64.030316) (xy 127.057268 64.090312) (xy 127.325187 64.120499) + (xy 127.325188 64.1205) (xy 127.325191 64.1205) (xy 127.594812 64.1205) (xy 127.594812 64.120499) + (xy 127.862732 64.090312) (xy 128.125591 64.030316) (xy 128.380079 63.941267) (xy 128.622997 63.824284) + (xy 128.851289 63.680838) (xy 129.062085 63.512734) (xy 129.252734 63.322085) (xy 129.420838 63.111289) + (xy 129.564284 62.882997) (xy 129.681267 62.640079) (xy 129.770316 62.385591) (xy 129.814609 62.191529) + (xy 129.848718 62.130552) (xy 129.910379 62.097694) (xy 129.980016 62.103389) (xy 130.03552 62.145829) + (xy 130.059268 62.211539) (xy 130.0595 62.219123) (xy 130.0595 62.934221) (xy 130.069904 63.066412) + (xy 130.069905 63.066419) (xy 130.124902 63.284678) (xy 130.124903 63.284681) (xy 130.217991 63.489622) + (xy 130.217997 63.489632) (xy 130.346174 63.674645) (xy 130.346178 63.67465) (xy 130.346181 63.674654) + (xy 130.505346 63.833819) (xy 130.50535 63.833822) (xy 130.505354 63.833825) (xy 130.642373 63.928752) + (xy 130.690374 63.962007) (xy 130.895317 64.055096) (xy 130.895321 64.055097) (xy 131.11358 64.110094) + (xy 131.113582 64.110094) (xy 131.113589 64.110096) (xy 131.245784 64.1205) (xy 131.245792 64.1205) + (xy 133.674208 64.1205) (xy 133.674216 64.1205) (xy 133.806411 64.110096) (xy 134.024683 64.055096) + (xy 134.229626 63.962007) (xy 134.414654 63.833819) (xy 134.573819 63.674654) (xy 134.702007 63.489626) + (xy 134.795096 63.284683) (xy 134.850096 63.066411) (xy 134.8605 62.934216) (xy 134.8605 60.505784) + (xy 134.850096 60.373589) (xy 134.795096 60.155317) (xy 134.702007 59.950374) (xy 134.6243 59.838211) + (xy 134.573825 59.765354) (xy 134.573822 59.76535) (xy 134.573819 59.765346) (xy 134.414654 59.606181) + (xy 134.41465 59.606178) (xy 134.414645 59.606174) (xy 134.229632 59.477997) (xy 134.22963 59.477995) + (xy 134.229626 59.477993) (xy 134.2018 59.465354) (xy 134.024681 59.384903) (xy 134.024678 59.384902) + (xy 133.806419 59.329905) (xy 133.806412 59.329904) (xy 133.674221 59.3195) (xy 133.674216 59.3195) + (xy 131.245784 59.3195) (xy 131.245778 59.3195) (xy 131.113587 59.329904) (xy 131.11358 59.329905) + (xy 130.895321 59.384902) (xy 130.895318 59.384903) (xy 130.690377 59.477991) (xy 130.690367 59.477997) + (xy 130.505354 59.606174) (xy 130.505342 59.606184) (xy 130.346184 59.765342) (xy 130.346174 59.765354) + (xy 130.217997 59.950367) (xy 130.217991 59.950377) (xy 130.124903 60.155318) (xy 130.124902 60.155321) + (xy 130.069905 60.37358) (xy 130.069904 60.373587) (xy 130.0595 60.505778) (xy 130.0595 61.220876) + (xy 130.039815 61.287915) (xy 129.987011 61.33367) (xy 129.917853 61.343614) (xy 129.854297 61.314589) + (xy 129.816523 61.255811) (xy 129.814609 61.248469) (xy 129.770315 61.054405) (xy 129.770312 61.054397) + (xy 129.735815 60.955811) (xy 129.681267 60.799921) (xy 129.564284 60.557003) (xy 129.420838 60.328711) + (xy 129.252734 60.117915) (xy 129.062085 59.927266) (xy 128.851289 59.759162) (xy 128.622997 59.615716) + (xy 128.622994 59.615714) (xy 128.380082 59.498734) (xy 128.125602 59.409687) (xy 128.125594 59.409684) + (xy 127.928446 59.364687) (xy 127.862732 59.349688) (xy 127.862728 59.349687) (xy 127.862719 59.349686) + (xy 127.594813 59.3195) (xy 127.594809 59.3195) (xy 127.325191 59.3195) (xy 127.325186 59.3195) + (xy 127.05728 59.349686) (xy 127.057268 59.349688) (xy 126.794405 59.409684) (xy 126.794397 59.409687) + (xy 126.539917 59.498734) (xy 126.297005 59.615714) (xy 126.068712 59.759161) (xy 125.857915 59.927265) + (xy 125.667265 60.117915) (xy 125.499161 60.328712) (xy 125.355714 60.557005) (xy 125.238734 60.799917) + (xy 125.149687 61.054397) (xy 125.149684 61.054405) (xy 125.089688 61.317268) (xy 125.089686 61.31728) + (xy 125.08322 61.374668) (xy 125.056153 61.439082) (xy 124.998558 61.478637) (xy 124.928722 61.480774) + (xy 124.868815 61.444816) (xy 124.837859 61.382178) (xy 124.83678 61.374668) (xy 124.830313 61.31728) + (xy 124.830312 61.317268) (xy 124.770316 61.054409) (xy 124.681267 60.799921) (xy 124.564284 60.557003) + (xy 124.420838 60.328711) (xy 124.252734 60.117915) (xy 124.062085 59.927266) (xy 123.851289 59.759162) + (xy 123.622997 59.615716) (xy 123.622994 59.615714) (xy 123.380082 59.498734) (xy 123.125602 59.409687) + (xy 123.125594 59.409684) (xy 122.928446 59.364687) (xy 122.862732 59.349688) (xy 122.862728 59.349687) + (xy 122.862719 59.349686) (xy 122.594813 59.3195) (xy 122.594809 59.3195) (xy 122.325191 59.3195) + (xy 122.325186 59.3195) (xy 122.05728 59.349686) (xy 122.057268 59.349688) (xy 121.794405 59.409684) + (xy 121.794397 59.409687) (xy 121.539917 59.498734) (xy 121.297005 59.615714) (xy 121.068712 59.759161) + (xy 120.857915 59.927265) (xy 120.667265 60.117915) (xy 120.499161 60.328712) (xy 120.355714 60.557005) + (xy 120.238734 60.799917) (xy 120.149687 61.054397) (xy 120.149684 61.054405) (xy 120.089688 61.317268) + (xy 120.089686 61.31728) (xy 120.0595 61.585186) (xy 116.527167 61.585186) (xy 116.527167 60.405784) + (xy 116.516763 60.273589) (xy 116.461763 60.055317) (xy 116.368674 59.850374) (xy 116.240486 59.665346) + (xy 116.081321 59.506181) (xy 116.081317 59.506178) (xy 116.081312 59.506174) (xy 115.896299 59.377997) + (xy 115.896297 59.377995) (xy 115.896293 59.377993) (xy 115.833977 59.349688) (xy 115.691348 59.284903) + (xy 115.691345 59.284902) (xy 115.473086 59.229905) (xy 115.473079 59.229904) (xy 115.340888 59.2195) + (xy 115.340883 59.2195) (xy 112.912451 59.2195) (xy 112.912445 59.2195) (xy 112.780254 59.229904) + (xy 112.780247 59.229905) (xy 112.561988 59.284902) (xy 112.561985 59.284903) (xy 112.357044 59.377991) + (xy 112.357034 59.377997) (xy 112.172021 59.506174) (xy 112.172009 59.506184) (xy 112.012851 59.665342) + (xy 112.012841 59.665354) (xy 111.884664 59.850367) (xy 111.884658 59.850377) (xy 111.79157 60.055318) + (xy 111.791569 60.055321) (xy 111.736572 60.27358) (xy 111.736571 60.273587) (xy 111.726167 60.405778) + (xy 111.726167 61.120876) (xy 111.706482 61.187915) (xy 111.653678 61.23367) (xy 111.58452 61.243614) + (xy 111.520964 61.214589) (xy 111.48319 61.155811) (xy 111.481276 61.148469) (xy 111.480442 61.144816) + (xy 111.436983 60.954409) (xy 111.347934 60.699921) (xy 111.230951 60.457003) (xy 111.087505 60.228711) + (xy 110.919401 60.017915) (xy 110.728752 59.827266) (xy 110.517956 59.659162) (xy 110.289664 59.515716) + (xy 110.289661 59.515714) (xy 110.046749 59.398734) (xy 109.792269 59.309687) (xy 109.792261 59.309684) + (xy 109.595113 59.264687) (xy 109.529399 59.249688) (xy 109.529395 59.249687) (xy 109.529386 59.249686) + (xy 109.26148 59.2195) (xy 109.261476 59.2195) (xy 108.991858 59.2195) (xy 108.991853 59.2195) (xy 108.723947 59.249686) + (xy 108.723935 59.249688) (xy 108.461072 59.309684) (xy 108.461064 59.309687) (xy 108.206584 59.398734) + (xy 107.963672 59.515714) (xy 107.735379 59.659161) (xy 107.524582 59.827265) (xy 107.333932 60.017915) + (xy 107.165828 60.228712) (xy 107.022381 60.457005) (xy 106.905401 60.699917) (xy 106.816354 60.954397) + (xy 106.816351 60.954405) (xy 106.756355 61.217268) (xy 106.756353 61.21728) (xy 106.749887 61.274668) + (xy 106.72282 61.339082) (xy 106.665225 61.378637) (xy 106.595389 61.380774) (xy 106.535482 61.344816) + (xy 106.504526 61.282178) (xy 106.503447 61.274668) (xy 106.498827 61.23367) (xy 106.496979 61.217268) + (xy 106.436983 60.954409) (xy 106.347934 60.699921) (xy 106.230951 60.457003) (xy 106.087505 60.228711) + (xy 105.919401 60.017915) (xy 105.728752 59.827266) (xy 105.517956 59.659162) (xy 105.289664 59.515716) + (xy 105.289661 59.515714) (xy 105.046749 59.398734) (xy 104.792269 59.309687) (xy 104.792261 59.309684) + (xy 104.595113 59.264687) (xy 104.529399 59.249688) (xy 104.529395 59.249687) (xy 104.529386 59.249686) + (xy 104.26148 59.2195) (xy 104.261476 59.2195) (xy 103.991858 59.2195) (xy 103.991853 59.2195) (xy 103.723947 59.249686) + (xy 103.723935 59.249688) (xy 103.461072 59.309684) (xy 103.461064 59.309687) (xy 103.206584 59.398734) + (xy 102.963672 59.515714) (xy 102.735379 59.659161) (xy 102.524582 59.827265) (xy 102.333932 60.017915) + (xy 102.165828 60.228712) (xy 102.022381 60.457005) (xy 101.905401 60.699917) (xy 101.816354 60.954397) + (xy 101.816351 60.954405) (xy 101.756355 61.217268) (xy 101.756353 61.21728) (xy 101.726167 61.485186) + (xy 98.193833 61.485186) (xy 98.193833 60.405784) (xy 98.183429 60.273589) (xy 98.128429 60.055317) + (xy 98.03534 59.850374) (xy 97.907152 59.665346) (xy 97.747987 59.506181) (xy 97.747983 59.506178) + (xy 97.747978 59.506174) (xy 97.562965 59.377997) (xy 97.562963 59.377995) (xy 97.562959 59.377993) + (xy 97.500643 59.349688) (xy 97.358014 59.284903) (xy 97.358011 59.284902) (xy 97.139752 59.229905) + (xy 97.139745 59.229904) (xy 97.007554 59.2195) (xy 97.007549 59.2195) (xy 94.579117 59.2195) (xy 94.579111 59.2195) + (xy 94.44692 59.229904) (xy 94.446913 59.229905) (xy 94.228654 59.284902) (xy 94.228651 59.284903) + (xy 94.02371 59.377991) (xy 94.0237 59.377997) (xy 93.838687 59.506174) (xy 93.838675 59.506184) + (xy 93.679517 59.665342) (xy 93.679507 59.665354) (xy 93.55133 59.850367) (xy 93.551324 59.850377) + (xy 93.458236 60.055318) (xy 93.458235 60.055321) (xy 93.403238 60.27358) (xy 93.403237 60.273587) + (xy 93.392833 60.405778) (xy 93.392833 61.120876) (xy 93.373148 61.187915) (xy 93.320344 61.23367) + (xy 93.251186 61.243614) (xy 93.18763 61.214589) (xy 93.149856 61.155811) (xy 93.147942 61.148469) + (xy 93.147108 61.144816) (xy 93.103649 60.954409) (xy 93.0146 60.699921) (xy 92.897617 60.457003) + (xy 92.754171 60.228711) (xy 92.586067 60.017915) (xy 92.395418 59.827266) (xy 92.184622 59.659162) + (xy 91.95633 59.515716) (xy 91.956327 59.515714) (xy 91.713415 59.398734) (xy 91.458935 59.309687) + (xy 91.458927 59.309684) (xy 91.261779 59.264687) (xy 91.196065 59.249688) (xy 91.196061 59.249687) + (xy 91.196052 59.249686) (xy 90.928146 59.2195) (xy 90.928142 59.2195) (xy 90.658524 59.2195) (xy 90.658519 59.2195) + (xy 90.390613 59.249686) (xy 90.390601 59.249688) (xy 90.127738 59.309684) (xy 90.12773 59.309687) + (xy 89.87325 59.398734) (xy 89.630338 59.515714) (xy 89.402045 59.659161) (xy 89.191248 59.827265) + (xy 89.000598 60.017915) (xy 88.832494 60.228712) (xy 88.689047 60.457005) (xy 88.572067 60.699917) + (xy 88.48302 60.954397) (xy 88.483017 60.954405) (xy 88.423021 61.217268) (xy 88.423019 61.21728) + (xy 88.416553 61.274668) (xy 88.389486 61.339082) (xy 88.331891 61.378637) (xy 88.262055 61.380774) + (xy 88.202148 61.344816) (xy 88.171192 61.282178) (xy 88.170113 61.274668) (xy 88.165493 61.23367) + (xy 88.163645 61.217268) (xy 88.103649 60.954409) (xy 88.0146 60.699921) (xy 87.897617 60.457003) + (xy 87.754171 60.228711) (xy 87.586067 60.017915) (xy 87.395418 59.827266) (xy 87.184622 59.659162) + (xy 86.95633 59.515716) (xy 86.956327 59.515714) (xy 86.713415 59.398734) (xy 86.458935 59.309687) + (xy 86.458927 59.309684) (xy 86.261779 59.264687) (xy 86.196065 59.249688) (xy 86.196061 59.249687) + (xy 86.196052 59.249686) (xy 85.928146 59.2195) (xy 85.928142 59.2195) (xy 85.658524 59.2195) (xy 85.658519 59.2195) + (xy 85.390613 59.249686) (xy 85.390601 59.249688) (xy 85.127738 59.309684) (xy 85.12773 59.309687) + (xy 84.87325 59.398734) (xy 84.630338 59.515714) (xy 84.402045 59.659161) (xy 84.191248 59.827265) + (xy 84.000598 60.017915) (xy 83.832494 60.228712) (xy 83.689047 60.457005) (xy 83.572067 60.699917) + (xy 83.48302 60.954397) (xy 83.483017 60.954405) (xy 83.423021 61.217268) (xy 83.423019 61.21728) + (xy 83.392833 61.485186) (xy 79.8605 61.485186) (xy 79.8605 60.205784) (xy 79.850096 60.073589) + (xy 79.836067 60.017915) (xy 79.795097 59.855321) (xy 79.795096 59.855318) (xy 79.79285 59.850374) + (xy 79.702007 59.650374) (xy 79.669806 59.603895) (xy 79.573825 59.465354) (xy 79.573822 59.46535) + (xy 79.573819 59.465346) (xy 79.414654 59.306181) (xy 79.41465 59.306178) (xy 79.414645 59.306174) + (xy 79.229632 59.177997) (xy 79.22963 59.177995) (xy 79.229626 59.177993) (xy 79.211381 59.169706) + (xy 79.024681 59.084903) (xy 79.024678 59.084902) (xy 78.806419 59.029905) (xy 78.806412 59.029904) + (xy 78.674221 59.0195) (xy 78.674216 59.0195) (xy 76.245784 59.0195) (xy 76.245778 59.0195) (xy 76.113587 59.029904) + (xy 76.11358 59.029905) (xy 75.895321 59.084902) (xy 75.895318 59.084903) (xy 75.690377 59.177991) + (xy 75.690367 59.177997) (xy 75.505354 59.306174) (xy 75.505342 59.306184) (xy 75.346184 59.465342) + (xy 75.346174 59.465354) (xy 75.217997 59.650367) (xy 75.217991 59.650377) (xy 75.124903 59.855318) + (xy 75.124902 59.855321) (xy 75.069905 60.07358) (xy 75.069904 60.073587) (xy 75.0595 60.205778) + (xy 75.0595 60.920876) (xy 75.039815 60.987915) (xy 74.987011 61.03367) (xy 74.917853 61.043614) + (xy 74.854297 61.014589) (xy 74.816523 60.955811) (xy 74.814609 60.948469) (xy 74.770315 60.754405) + (xy 74.770312 60.754397) (xy 74.748145 60.691049) (xy 74.681267 60.499921) (xy 74.564284 60.257003) + (xy 74.420838 60.028711) (xy 74.252734 59.817915) (xy 74.062085 59.627266) (xy 74.035636 59.606174) + (xy 74.008549 59.584573) (xy 73.851289 59.459162) (xy 73.622997 59.315716) (xy 73.622994 59.315714) + (xy 73.380082 59.198734) (xy 73.125602 59.109687) (xy 73.125594 59.109684) (xy 72.928446 59.064687) + (xy 72.862732 59.049688) (xy 72.862728 59.049687) (xy 72.862719 59.049686) (xy 72.594813 59.0195) + (xy 72.594809 59.0195) (xy 72.325191 59.0195) (xy 72.325186 59.0195) (xy 72.05728 59.049686) (xy 72.057268 59.049688) + (xy 71.794405 59.109684) (xy 71.794397 59.109687) (xy 71.539917 59.198734) (xy 71.297005 59.315714) + (xy 71.068712 59.459161) (xy 70.857915 59.627265) (xy 70.667265 59.817915) (xy 70.499161 60.028712) + (xy 70.355714 60.257005) (xy 70.238734 60.499917) (xy 70.149687 60.754397) (xy 70.149684 60.754405) + (xy 70.089688 61.017268) (xy 70.089686 61.01728) (xy 70.08322 61.074668) (xy 70.056153 61.139082) + (xy 69.998558 61.178637) (xy 69.928722 61.180774) (xy 69.868815 61.144816) (xy 69.837859 61.082178) + (xy 69.83678 61.074668) (xy 69.830644 61.020214) (xy 69.830312 61.017268) (xy 69.770316 60.754409) + (xy 69.681267 60.499921) (xy 69.564284 60.257003) (xy 69.420838 60.028711) (xy 69.252734 59.817915) + (xy 69.062085 59.627266) (xy 69.035636 59.606174) (xy 69.008549 59.584573) (xy 68.851289 59.459162) + (xy 68.622997 59.315716) (xy 68.622994 59.315714) (xy 68.380082 59.198734) (xy 68.125602 59.109687) + (xy 68.125594 59.109684) (xy 67.928446 59.064687) (xy 67.862732 59.049688) (xy 67.862728 59.049687) + (xy 67.862719 59.049686) (xy 67.594813 59.0195) (xy 67.594809 59.0195) (xy 67.325191 59.0195) (xy 67.325186 59.0195) + (xy 67.05728 59.049686) (xy 67.057268 59.049688) (xy 66.794405 59.109684) (xy 66.794397 59.109687) + (xy 66.539917 59.198734) (xy 66.297005 59.315714) (xy 66.068712 59.459161) (xy 65.857915 59.627265) + (xy 65.667265 59.817915) (xy 65.499161 60.028712) (xy 65.355714 60.257005) (xy 65.238734 60.499917) + (xy 65.149687 60.754397) (xy 65.149684 60.754405) (xy 65.089688 61.017268) (xy 65.089686 61.01728) + (xy 65.0595 61.285186) (xy 62.499812 61.285186) (xy 62.541936 61.230289) (xy 62.663224 61.020212) + (xy 62.756054 60.7961) (xy 62.818838 60.561789) (xy 62.8505 60.321288) (xy 62.8505 60.078712) (xy 62.843917 60.028712) + (xy 62.830562 59.927265) (xy 62.818838 59.838211) (xy 62.756054 59.6039) (xy 62.663224 59.379788) + (xy 62.541936 59.169711) (xy 62.394265 58.977262) (xy 62.39426 58.977256) (xy 62.222743 58.805739) + (xy 62.222736 58.805733) (xy 62.030293 58.658067) (xy 62.030292 58.658066) (xy 62.030289 58.658064) + (xy 61.820212 58.536776) (xy 61.802009 58.529236) (xy 61.596104 58.443947) (xy 61.361785 58.381161) + (xy 61.121289 58.3495) (xy 61.121288 58.3495) (xy 60.878712 58.3495) (xy 60.878711 58.3495) (xy 60.638214 58.381161) + (xy 60.403895 58.443947) (xy 60.179794 58.536773) (xy 60.179785 58.536777) (xy 59.969706 58.658067) + (xy 59.777263 58.805733) (xy 59.777256 58.805739) (xy 59.605739 58.977256) (xy 59.605733 58.977263) + (xy 59.458067 59.169706) (xy 59.336777 59.379785) (xy 59.336773 59.379794) (xy 59.243947 59.603895) + (xy 59.181161 59.838214) (xy 59.1495 60.078711) (xy 58.4505 60.078711) (xy 58.4505 58.964427) (xy 58.450816 58.955581) + (xy 58.461533 58.805735) (xy 58.46513 58.755436) (xy 58.467646 58.737938) (xy 58.509356 58.546199) + (xy 58.514333 58.529248) (xy 58.582911 58.345385) (xy 58.590259 58.329298) (xy 58.652815 58.214734) + (xy 58.684291 58.157089) (xy 58.693845 58.142221) (xy 58.811448 57.985123) (xy 58.82302 57.971769) + (xy 58.961769 57.83302) (xy 58.975123 57.821448) (xy 59.132221 57.703845) (xy 59.147089 57.694291) + (xy 59.319298 57.600258) (xy 59.335385 57.592911) (xy 59.519248 57.524333) (xy 59.536199 57.519356) + (xy 59.727938 57.477646) (xy 59.745436 57.47513) (xy 59.945582 57.460816) (xy 59.954428 57.4605) + (xy 60.015892 57.4605) (xy 135.93688 57.4605) + ) + ) + ) + (zone + (net 2) + (net_name "5V") + (layer "In2.Cu") + (uuid "70ad7914-0ae9-4356-90cb-1bbccdc4167d") + (name "5V-ZONE") + (hatch edge 0.5) + (priority 1) + (connect_pads + (clearance 1) + ) + (min_thickness 0.25) + (filled_areas_thickness no) + (fill yes + (thermal_gap 0.5) + (thermal_bridge_width 0.5) + ) + (polygon + (pts + (xy 174.36 56.62) (xy 205.31 56.82) (xy 203.86 102.32) (xy 173.81 102.47) (xy 174.26 89.02) + ) + ) + (filled_polygon + (layer "In2.Cu") + (pts + (xy 200.184418 57.460816) (xy 200.384561 57.47513) (xy 200.402063 57.477647) (xy 200.593797 57.519355) + (xy 200.610755 57.524334) (xy 200.771029 57.584114) (xy 200.794609 57.592909) (xy 200.810701 57.600259) + (xy 200.982904 57.694288) (xy 200.997784 57.703849) (xy 201.154867 57.821441) (xy 201.168237 57.833027) + (xy 201.306972 57.971762) (xy 201.318558 57.985132) (xy 201.436146 58.14221) (xy 201.445711 58.157095) + (xy 201.53974 58.329298) (xy 201.54709 58.34539) (xy 201.615662 58.529236) (xy 201.620646 58.546212) + (xy 201.662351 58.737931) (xy 201.664869 58.755442) (xy 201.679184 58.95558) (xy 201.6795 58.964427) + (xy 201.6795 102.207501) (xy 201.659815 102.27454) (xy 201.607011 102.320295) (xy 201.556119 102.331499) + (xy 200.209012 102.338224) (xy 200.141875 102.318875) (xy 200.111449 102.291542) (xy 200.052734 102.217915) + (xy 199.862085 102.027266) (xy 199.842899 102.011966) (xy 199.730776 101.922551) (xy 199.651289 101.859162) + (xy 199.422997 101.715716) (xy 199.422994 101.715714) (xy 199.180082 101.598734) (xy 198.925602 101.509687) + (xy 198.925594 101.509684) (xy 198.725507 101.464016) (xy 198.662732 101.449688) (xy 198.662728 101.449687) + (xy 198.662719 101.449686) (xy 198.394813 101.4195) (xy 198.394809 101.4195) (xy 198.125191 101.4195) + (xy 198.125186 101.4195) (xy 197.85728 101.449686) (xy 197.857268 101.449688) (xy 197.594405 101.509684) + (xy 197.594397 101.509687) (xy 197.339917 101.598734) (xy 197.097005 101.715714) (xy 196.868712 101.859161) + (xy 196.657915 102.027265) (xy 196.467265 102.217915) (xy 196.392978 102.311068) (xy 196.335789 102.351208) + (xy 196.29665 102.357753) (xy 189.550126 102.391429) (xy 189.482989 102.37208) (xy 189.436971 102.319505) + (xy 189.426683 102.250397) (xy 189.45539 102.186697) (xy 189.49321 102.156947) (xy 189.54161 102.132287) + (xy 189.627599 102.069813) (xy 189.707213 102.011971) (xy 189.707215 102.011968) (xy 189.707219 102.011966) + (xy 189.851966 101.867219) (xy 189.851968 101.867215) (xy 189.851971 101.867213) (xy 189.962038 101.715716) + (xy 189.972287 101.70161) (xy 190.06522 101.519219) (xy 190.128477 101.324534) (xy 190.1605 101.122352) + (xy 190.1605 100.917648) (xy 190.128477 100.715466) (xy 190.124962 100.704649) (xy 190.065218 100.520776) + (xy 190.018591 100.429267) (xy 189.972287 100.33839) (xy 189.964556 100.327749) (xy 189.851971 100.172786) + (xy 189.707213 100.028028) (xy 189.541613 99.907715) (xy 189.541612 99.907714) (xy 189.54161 99.907713) + (xy 189.484653 99.878691) (xy 189.359223 99.814781) (xy 189.164534 99.751522) (xy 188.989995 99.723878) + (xy 188.962352 99.7195) (xy 188.757648 99.7195) (xy 188.733329 99.723351) (xy 188.555465 99.751522) + (xy 188.360776 99.814781) (xy 188.178386 99.907715) (xy 188.012786 100.028028) (xy 187.868028 100.172786) + (xy 187.747715 100.338386) (xy 187.654781 100.520776) (xy 187.591522 100.715465) (xy 187.5595 100.917648) + (xy 187.5595 101.122351) (xy 187.591522 101.324534) (xy 187.654781 101.519223) (xy 187.747715 101.701613) + (xy 187.868028 101.867213) (xy 188.012786 102.011971) (xy 188.178388 102.132286) (xy 188.240165 102.163763) + (xy 188.290962 102.211737) (xy 188.307757 102.279558) (xy 188.28522 102.345693) (xy 188.230505 102.389145) + (xy 188.18449 102.398246) (xy 183.228191 102.422987) (xy 183.161054 102.403638) (xy 183.115036 102.351063) + (xy 183.104748 102.281955) (xy 183.133455 102.218255) (xy 183.171274 102.188505) (xy 183.28161 102.132287) + (xy 183.367599 102.069813) (xy 183.447213 102.011971) (xy 183.447215 102.011968) (xy 183.447219 102.011966) + (xy 183.591966 101.867219) (xy 183.591968 101.867215) (xy 183.591971 101.867213) (xy 183.702038 101.715716) + (xy 183.712287 101.70161) (xy 183.80522 101.519219) (xy 183.868477 101.324534) (xy 183.9005 101.122352) + (xy 183.9005 100.917648) (xy 183.868477 100.715466) (xy 183.864962 100.704649) (xy 183.805218 100.520776) + (xy 183.758591 100.429267) (xy 183.712287 100.33839) (xy 183.704556 100.327749) (xy 183.591971 100.172786) + (xy 183.447213 100.028028) (xy 183.281613 99.907715) (xy 183.281612 99.907714) (xy 183.28161 99.907713) + (xy 183.224653 99.878691) (xy 183.099223 99.814781) (xy 182.904534 99.751522) (xy 182.729995 99.723878) + (xy 182.702352 99.7195) (xy 182.497648 99.7195) (xy 182.473329 99.723351) (xy 182.295465 99.751522) + (xy 182.100776 99.814781) (xy 181.918386 99.907715) (xy 181.752786 100.028028) (xy 181.608028 100.172786) + (xy 181.487715 100.338386) (xy 181.394781 100.520776) (xy 181.331522 100.715465) (xy 181.2995 100.917648) + (xy 181.2995 101.122351) (xy 181.331522 101.324534) (xy 181.394781 101.519223) (xy 181.487715 101.701613) + (xy 181.608028 101.867213) (xy 181.752786 102.011971) (xy 181.918385 102.132284) (xy 181.918387 102.132285) + (xy 181.91839 102.132287) (xy 182.0409 102.194709) (xy 182.091695 102.242682) (xy 182.10849 102.310503) + (xy 182.085953 102.376638) (xy 182.031238 102.42009) (xy 181.985223 102.429191) (xy 174.076339 102.46867) + (xy 174.073781 102.467933) (xy 174.0712 102.46859) (xy 174.040399 102.458312) (xy 174.009202 102.449321) + (xy 174.006671 102.447057) (xy 174.004923 102.446474) (xy 173.994544 102.43621) (xy 173.979109 102.422405) + (xy 173.976836 102.41958) (xy 173.942006 102.370671) (xy 173.848068 102.25954) (xy 173.847138 102.258384) + (xy 173.834338 102.227417) (xy 173.820804 102.196794) (xy 173.820687 102.194388) (xy 173.820449 102.193812) + (xy 173.820614 102.192897) (xy 173.819818 102.176523) (xy 173.920697 99.161388) (xy 173.941395 99.096843) + (xy 174.028668 98.965703) (xy 174.104982 98.777108) (xy 174.124503 98.710021) (xy 174.144453 98.629096) + (xy 174.164542 98.42664) (xy 174.163476 97.989447) (xy 174.154303 97.856367) (xy 174.149878 97.823838) + (xy 174.148033 97.810903) (xy 174.097789 97.613755) (xy 174.076047 97.569) (xy 174.008896 97.43077) + (xy 174.008893 97.430766) (xy 174.008889 97.430756) (xy 174.008885 97.430749) (xy 174.008881 97.430742) + (xy 173.999856 97.416139) (xy 173.981357 97.348763) (xy 173.981403 97.346932) (xy 174.01089 96.465607) + (xy 174.022075 96.423631) (xy 174.020095 96.42283) (xy 174.065346 96.311) (xy 174.098767 96.228405) + (xy 174.118288 96.161317) (xy 174.138237 96.080394) (xy 174.158326 95.877938) (xy 174.157301 95.457883) + (xy 174.152037 95.357558) (xy 174.149508 95.332946) (xy 174.114153 95.15281) (xy 174.069283 95.042578) + (xy 174.060203 94.991688) (xy 174.105056 93.651091) (xy 174.109925 93.620598) (xy 174.112072 93.613222) + (xy 174.132022 93.532296) (xy 174.152111 93.329841) (xy 174.151126 92.925934) (xy 174.145863 92.825611) + (xy 174.143334 92.800998) (xy 174.137655 92.772066) (xy 174.135403 92.744048) (xy 174.26 89.02) + (xy 174.265266 87.313656) (xy 174.29365 78.117648) (xy 177.9595 78.117648) (xy 177.9595 78.322352) + (xy 177.963878 78.349995) (xy 177.991522 78.524534) (xy 178.054781 78.719223) (xy 178.100983 78.809898) + (xy 178.122439 78.852008) (xy 178.147715 78.901613) (xy 178.268028 79.067213) (xy 178.412786 79.211971) + (xy 178.541632 79.305581) (xy 178.57839 79.332287) (xy 178.689171 79.388733) (xy 178.760776 79.425218) + (xy 178.760778 79.425218) (xy 178.760781 79.42522) (xy 178.865137 79.459127) (xy 178.955465 79.488477) + (xy 179.056557 79.504488) (xy 179.157648 79.5205) (xy 179.157649 79.5205) (xy 179.362351 79.5205) + (xy 179.362352 79.5205) (xy 179.564534 79.488477) (xy 179.759219 79.42522) (xy 179.94161 79.332287) + (xy 180.069063 79.239688) (xy 180.107213 79.211971) (xy 180.107215 79.211968) (xy 180.107219 79.211966) + (xy 180.251966 79.067219) (xy 180.251968 79.067215) (xy 180.251971 79.067213) (xy 180.340692 78.945097) + (xy 180.372287 78.90161) (xy 180.46522 78.719219) (xy 180.528477 78.524534) (xy 180.5605 78.322352) + (xy 180.5605 78.117648) (xy 180.556272 78.090954) (xy 180.528477 77.915465) (xy 180.471473 77.740027) + (xy 180.46522 77.720781) (xy 180.465218 77.720778) (xy 180.465218 77.720776) (xy 180.430019 77.651696) + (xy 180.372287 77.53839) (xy 180.348009 77.504974) (xy 180.251971 77.372786) (xy 180.107213 77.228028) + (xy 179.941613 77.107715) (xy 179.941612 77.107714) (xy 179.94161 77.107713) (xy 179.884653 77.078691) + (xy 179.759223 77.014781) (xy 179.564534 76.951522) (xy 179.389995 76.923878) (xy 179.362352 76.9195) + (xy 179.157648 76.9195) (xy 179.133329 76.923351) (xy 178.955465 76.951522) (xy 178.760776 77.014781) + (xy 178.578386 77.107715) (xy 178.412786 77.228028) (xy 178.268028 77.372786) (xy 178.147715 77.538386) + (xy 178.054781 77.720776) (xy 177.991522 77.915465) (xy 177.963728 78.090954) (xy 177.9595 78.117648) + (xy 174.29365 78.117648) (xy 174.293666 78.112393) (xy 174.302051 75.395778) (xy 195.5095 75.395778) + (xy 195.5095 77.824221) (xy 195.519904 77.956412) (xy 195.519905 77.956419) (xy 195.574902 78.174678) + (xy 195.574903 78.174681) (xy 195.667991 78.379622) (xy 195.667997 78.379632) (xy 195.796174 78.564645) + (xy 195.796178 78.56465) (xy 195.796181 78.564654) (xy 195.955346 78.723819) (xy 195.95535 78.723822) + (xy 195.955354 78.723825) (xy 196.079593 78.809898) (xy 196.140374 78.852007) (xy 196.345317 78.945096) + (xy 196.345321 78.945097) (xy 196.56358 79.000094) (xy 196.563582 79.000094) (xy 196.563589 79.000096) + (xy 196.695784 79.0105) (xy 196.695792 79.0105) (xy 197.410877 79.0105) (xy 197.477916 79.030185) + (xy 197.523671 79.082989) (xy 197.533615 79.152147) (xy 197.50459 79.215703) (xy 197.445812 79.253477) + (xy 197.438478 79.255388) (xy 197.394613 79.2654) (xy 197.244405 79.299684) (xy 197.244397 79.299687) + (xy 196.989917 79.388734) (xy 196.747005 79.505714) (xy 196.518712 79.649161) (xy 196.307915 79.817265) + (xy 196.117265 80.007915) (xy 195.949161 80.218712) (xy 195.805714 80.447005) (xy 195.688734 80.689917) + (xy 195.599687 80.944397) (xy 195.599684 80.944405) (xy 195.539688 81.207268) (xy 195.539686 81.20728) + (xy 195.5095 81.475186) (xy 195.5095 81.744813) (xy 195.539686 82.012719) (xy 195.539688 82.012731) + (xy 195.599684 82.275594) (xy 195.599687 82.275602) (xy 195.688734 82.530082) (xy 195.805714 82.772994) + (xy 195.805716 82.772997) (xy 195.949162 83.001289) (xy 196.117266 83.212085) (xy 196.307915 83.402734) + (xy 196.518711 83.570838) (xy 196.747003 83.714284) (xy 196.989921 83.831267) (xy 197.181049 83.898145) + (xy 197.244397 83.920312) (xy 197.244405 83.920315) (xy 197.244408 83.920315) (xy 197.244409 83.920316) + (xy 197.507268 83.980312) (xy 197.775187 84.010499) (xy 197.775188 84.0105) (xy 197.775191 84.0105) + (xy 198.044812 84.0105) (xy 198.044812 84.010499) (xy 198.312732 83.980312) (xy 198.575591 83.920316) + (xy 198.830079 83.831267) (xy 199.072997 83.714284) (xy 199.301289 83.570838) (xy 199.512085 83.402734) + (xy 199.702734 83.212085) (xy 199.870838 83.001289) (xy 200.014284 82.772997) (xy 200.131267 82.530079) + (xy 200.220316 82.275591) (xy 200.280312 82.012732) (xy 200.3105 81.744809) (xy 200.3105 81.475191) + (xy 200.280312 81.207268) (xy 200.220316 80.944409) (xy 200.218707 80.939812) (xy 200.18711 80.849512) + (xy 200.131267 80.689921) (xy 200.014284 80.447003) (xy 199.870838 80.218711) (xy 199.702734 80.007915) + (xy 199.512085 79.817266) (xy 199.478901 79.790803) (xy 199.429456 79.751372) (xy 199.301289 79.649162) + (xy 199.143613 79.550087) (xy 199.072994 79.505714) (xy 198.830082 79.388734) (xy 198.575602 79.299687) + (xy 198.575594 79.299684) (xy 198.435909 79.267802) (xy 198.381529 79.25539) (xy 198.320552 79.221282) + (xy 198.287694 79.159621) (xy 198.293389 79.089984) (xy 198.335829 79.03448) (xy 198.401539 79.010732) + (xy 198.409123 79.0105) (xy 199.124208 79.0105) (xy 199.124216 79.0105) (xy 199.256411 79.000096) + (xy 199.474683 78.945096) (xy 199.679626 78.852007) (xy 199.864654 78.723819) (xy 200.023819 78.564654) + (xy 200.152007 78.379626) (xy 200.245096 78.174683) (xy 200.300096 77.956411) (xy 200.3105 77.824216) + (xy 200.3105 75.395784) (xy 200.300096 75.263589) (xy 200.291337 75.22883) (xy 200.245097 75.045321) + (xy 200.245096 75.045318) (xy 200.237805 75.029267) (xy 200.152007 74.840374) (xy 200.097844 74.762195) + (xy 200.023825 74.655354) (xy 200.023822 74.65535) (xy 200.023819 74.655346) (xy 199.864654 74.496181) + (xy 199.86465 74.496178) (xy 199.864645 74.496174) (xy 199.679632 74.367997) (xy 199.67963 74.367995) + (xy 199.679626 74.367993) (xy 199.646547 74.352968) (xy 199.474681 74.274903) (xy 199.474678 74.274902) + (xy 199.256419 74.219905) (xy 199.256412 74.219904) (xy 199.124221 74.2095) (xy 199.124216 74.2095) + (xy 196.695784 74.2095) (xy 196.695778 74.2095) (xy 196.563587 74.219904) (xy 196.56358 74.219905) + (xy 196.345321 74.274902) (xy 196.345318 74.274903) (xy 196.140377 74.367991) (xy 196.140367 74.367997) + (xy 195.955354 74.496174) (xy 195.955342 74.496184) (xy 195.796184 74.655342) (xy 195.796174 74.655354) + (xy 195.667997 74.840367) (xy 195.667991 74.840377) (xy 195.574903 75.045318) (xy 195.574902 75.045321) + (xy 195.519905 75.26358) (xy 195.519904 75.263587) (xy 195.5095 75.395778) (xy 174.302051 75.395778) + (xy 174.306613 73.917648) (xy 188.1595 73.917648) (xy 188.1595 74.122351) (xy 188.191522 74.324534) + (xy 188.254781 74.519223) (xy 188.297591 74.603241) (xy 188.341051 74.688536) (xy 188.347715 74.701613) + (xy 188.468028 74.867213) (xy 188.612786 75.011971) (xy 188.759093 75.118267) (xy 188.77839 75.132287) + (xy 188.894607 75.191503) (xy 188.960776 75.225218) (xy 188.960778 75.225218) (xy 188.960781 75.22522) + (xy 189.040564 75.251143) (xy 189.155465 75.288477) (xy 189.246029 75.302821) (xy 189.357648 75.3205) + (xy 189.357649 75.3205) (xy 189.562351 75.3205) (xy 189.562352 75.3205) (xy 189.764534 75.288477) + (xy 189.764537 75.288476) (xy 189.764538 75.288476) (xy 189.804725 75.275418) (xy 189.804726 75.275418) + (xy 189.841131 75.263589) (xy 189.959219 75.22522) (xy 190.14161 75.132287) (xy 190.23459 75.064732) + (xy 190.307213 75.011971) (xy 190.307215 75.011968) (xy 190.307219 75.011966) (xy 190.451966 74.867219) + (xy 190.451968 74.867215) (xy 190.451971 74.867213) (xy 190.527632 74.763073) (xy 190.572287 74.70161) + (xy 190.66522 74.519219) (xy 190.728477 74.324534) (xy 190.7605 74.122352) (xy 190.7605 73.917648) + (xy 190.73286 73.743136) (xy 190.728477 73.715465) (xy 190.699127 73.625137) (xy 190.66522 73.520781) + (xy 190.665218 73.520778) (xy 190.665218 73.520776) (xy 190.60213 73.396961) (xy 190.572287 73.33839) + (xy 190.564556 73.327749) (xy 190.451971 73.172786) (xy 190.307213 73.028028) (xy 190.141613 72.907715) + (xy 190.141612 72.907714) (xy 190.14161 72.907713) (xy 190.084653 72.878691) (xy 189.959223 72.814781) + (xy 189.764534 72.751522) (xy 189.589995 72.723878) (xy 189.562352 72.7195) (xy 189.357648 72.7195) + (xy 189.333329 72.723351) (xy 189.155465 72.751522) (xy 188.960776 72.814781) (xy 188.778386 72.907715) + (xy 188.612786 73.028028) (xy 188.468028 73.172786) (xy 188.347715 73.338386) (xy 188.254781 73.520776) + (xy 188.191522 73.715465) (xy 188.1595 73.917648) (xy 174.306613 73.917648) (xy 174.306629 73.912393) + (xy 174.330067 66.318394) (xy 174.33916 63.372155) (xy 175.36 63.372155) (xy 175.36 64.17) (xy 176.426988 64.17) + (xy 176.394075 64.227007) (xy 176.36 64.354174) (xy 176.36 64.485826) (xy 176.394075 64.612993) + (xy 176.426988 64.67) (xy 175.36 64.67) (xy 175.36 65.467844) (xy 175.366401 65.527372) (xy 175.366403 65.527379) + (xy 175.416645 65.662086) (xy 175.416649 65.662093) (xy 175.502809 65.777187) (xy 175.502812 65.77719) + (xy 175.617906 65.86335) (xy 175.617913 65.863354) (xy 175.75262 65.913596) (xy 175.752627 65.913598) + (xy 175.812155 65.919999) (xy 175.812172 65.92) (xy 176.61 65.92) (xy 176.61 64.853012) (xy 176.667007 64.885925) + (xy 176.794174 64.92) (xy 176.925826 64.92) (xy 177.052993 64.885925) (xy 177.11 64.853012) (xy 177.11 65.92) + (xy 177.907828 65.92) (xy 177.907844 65.919999) (xy 177.967372 65.913598) (xy 177.967379 65.913596) + (xy 178.102086 65.863354) (xy 178.102093 65.86335) (xy 178.217187 65.77719) (xy 178.21719 65.777187) + (xy 178.30335 65.662093) (xy 178.303354 65.662086) (xy 178.353596 65.527379) (xy 178.353598 65.527372) + (xy 178.359999 65.467844) (xy 178.36 65.467827) (xy 178.36 64.67) (xy 177.293012 64.67) (xy 177.325925 64.612993) + (xy 177.36 64.485826) (xy 177.36 64.354174) (xy 177.342502 64.288872) (xy 182.4595 64.288872) (xy 182.4595 64.551127) + (xy 182.484239 64.739027) (xy 182.49373 64.811116) (xy 182.530191 64.947191) (xy 182.561602 65.064418) + (xy 182.561605 65.064428) (xy 182.661953 65.30669) (xy 182.661958 65.3067) (xy 182.793075 65.533803) + (xy 182.952718 65.741851) (xy 182.952726 65.74186) (xy 183.13814 65.927274) (xy 183.138148 65.927281) + (xy 183.346196 66.086924) (xy 183.573299 66.218041) (xy 183.573309 66.218046) (xy 183.815571 66.318394) + (xy 183.815581 66.318398) (xy 184.068884 66.38627) (xy 184.32888 66.4205) (xy 184.328887 66.4205) + (xy 184.591113 66.4205) (xy 184.59112 66.4205) (xy 184.851116 66.38627) (xy 185.104419 66.318398) + (xy 185.346697 66.218043) (xy 185.573803 66.086924) (xy 185.781851 65.927282) (xy 185.781855 65.927277) + (xy 185.78186 65.927274) (xy 185.967274 65.74186) (xy 185.967277 65.741855) (xy 185.967282 65.741851) + (xy 186.126924 65.533803) (xy 186.258043 65.306697) (xy 186.258988 65.304417) (xy 186.290012 65.229517) + (xy 186.358398 65.064419) (xy 186.42627 64.811116) (xy 186.4605 64.55112) (xy 186.4605 64.28888) + (xy 186.42627 64.028884) (xy 186.358398 63.775581) (xy 186.354304 63.765697) (xy 186.258046 63.533309) + (xy 186.258041 63.533299) (xy 186.126924 63.306196) (xy 185.967281 63.098148) (xy 185.967274 63.09814) + (xy 185.78186 62.912726) (xy 185.781851 62.912718) (xy 185.573803 62.753075) (xy 185.3467 62.621958) + (xy 185.34669 62.621953) (xy 185.104428 62.521605) (xy 185.104421 62.521603) (xy 185.104419 62.521602) + (xy 184.851116 62.45373) (xy 184.783736 62.444859) (xy 184.591127 62.4195) (xy 184.59112 62.4195) + (xy 184.32888 62.4195) (xy 184.328872 62.4195) (xy 184.097772 62.449926) (xy 184.068884 62.45373) + (xy 183.815581 62.521602) (xy 183.815571 62.521605) (xy 183.573309 62.621953) (xy 183.573299 62.621958) + (xy 183.346196 62.753075) (xy 183.138148 62.912718) (xy 182.952718 63.098148) (xy 182.793075 63.306196) + (xy 182.661958 63.533299) (xy 182.661953 63.533309) (xy 182.561605 63.775571) (xy 182.561602 63.775581) + (xy 182.534282 63.877543) (xy 182.49373 64.028885) (xy 182.4595 64.288872) (xy 177.342502 64.288872) + (xy 177.325925 64.227007) (xy 177.293012 64.17) (xy 178.36 64.17) (xy 178.36 63.372172) (xy 178.359999 63.372155) + (xy 178.353598 63.312627) (xy 178.353596 63.31262) (xy 178.303354 63.177913) (xy 178.30335 63.177906) + (xy 178.21719 63.062812) (xy 178.217187 63.062809) (xy 178.102093 62.976649) (xy 178.102086 62.976645) + (xy 177.967379 62.926403) (xy 177.967372 62.926401) (xy 177.907844 62.92) (xy 177.11 62.92) (xy 177.11 63.986988) + (xy 177.052993 63.954075) (xy 176.925826 63.92) (xy 176.794174 63.92) (xy 176.667007 63.954075) + (xy 176.61 63.986988) (xy 176.61 62.92) (xy 175.812155 62.92) (xy 175.752627 62.926401) (xy 175.75262 62.926403) + (xy 175.617913 62.976645) (xy 175.617906 62.976649) (xy 175.502812 63.062809) (xy 175.502809 63.062812) + (xy 175.416649 63.177906) (xy 175.416645 63.177913) (xy 175.366403 63.31262) (xy 175.366401 63.312627) + (xy 175.36 63.372155) (xy 174.33916 63.372155) (xy 174.349325 60.078711) (xy 197.1495 60.078711) + (xy 197.1495 60.321288) (xy 197.181161 60.561785) (xy 197.243947 60.796104) (xy 197.336773 61.020205) + (xy 197.336776 61.020212) (xy 197.458064 61.230289) (xy 197.458066 61.230292) (xy 197.458067 61.230293) + (xy 197.605733 61.422736) (xy 197.605739 61.422743) (xy 197.777256 61.59426) (xy 197.777262 61.594265) + (xy 197.969711 61.741936) (xy 198.179788 61.863224) (xy 198.4039 61.956054) (xy 198.638211 62.018838) + (xy 198.818586 62.042584) (xy 198.878711 62.0505) (xy 198.878712 62.0505) (xy 199.121289 62.0505) + (xy 199.169388 62.044167) (xy 199.361789 62.018838) (xy 199.5961 61.956054) (xy 199.820212 61.863224) + (xy 200.030289 61.741936) (xy 200.222738 61.594265) (xy 200.394265 61.422738) (xy 200.541936 61.230289) + (xy 200.663224 61.020212) (xy 200.756054 60.7961) (xy 200.818838 60.561789) (xy 200.8505 60.321288) + (xy 200.8505 60.078712) (xy 200.818838 59.838211) (xy 200.756054 59.6039) (xy 200.663224 59.379788) + (xy 200.541936 59.169711) (xy 200.394265 58.977262) (xy 200.39426 58.977256) (xy 200.222743 58.805739) + (xy 200.222736 58.805733) (xy 200.030293 58.658067) (xy 200.030292 58.658066) (xy 200.030289 58.658064) + (xy 199.820212 58.536776) (xy 199.802009 58.529236) (xy 199.596104 58.443947) (xy 199.361785 58.381161) + (xy 199.121289 58.3495) (xy 199.121288 58.3495) (xy 198.878712 58.3495) (xy 198.878711 58.3495) + (xy 198.638214 58.381161) (xy 198.403895 58.443947) (xy 198.179794 58.536773) (xy 198.179785 58.536777) + (xy 197.969706 58.658067) (xy 197.777263 58.805733) (xy 197.777256 58.805739) (xy 197.605739 58.977256) + (xy 197.605733 58.977263) (xy 197.458067 59.169706) (xy 197.336777 59.379785) (xy 197.336773 59.379794) + (xy 197.243947 59.603895) (xy 197.181161 59.838214) (xy 197.1495 60.078711) (xy 174.349325 60.078711) + (xy 174.357024 57.584114) (xy 174.376915 57.517139) (xy 174.42986 57.471547) (xy 174.481023 57.4605) + (xy 200.114108 57.4605) (xy 200.175572 57.4605) + ) + ) + ) + (zone + (net 81) + (net_name "/12V_DC-Regulated") + (layer "In2.Cu") + (uuid "96f9dab0-8067-418e-97e5-fff717f1564f") + (hatch edge 0.5) + (priority 9) + (connect_pads + (clearance 0) + ) + (min_thickness 0.25) + (filled_areas_thickness no) + (fill yes + (thermal_gap 0.5) + (thermal_bridge_width 0.5) + (smoothing fillet) + (radius 3) + ) + (polygon + (pts + (xy 174.4 110) (xy 191.6 109.8) (xy 191.6 107.2) (xy 192.4 106.4) (xy 203.8 106.6) (xy 203.8 129) + (xy 174.6 129) + ) + ) + (filled_polygon + (layer "In2.Cu") + (pts + (xy 193.549115 106.420159) (xy 199.228918 106.519805) (xy 199.236316 106.520156) (xy 199.439919 106.535921) + (xy 199.582399 106.546955) (xy 199.597053 106.548976) (xy 199.93383 106.61611) (xy 199.948142 106.619863) + (xy 200.274517 106.726662) (xy 200.288289 106.732099) (xy 200.599603 106.877037) (xy 200.612625 106.884074) + (xy 200.727833 106.955537) (xy 200.904443 107.065087) (xy 200.916537 107.073629) (xy 201.184696 107.288133) + (xy 201.195686 107.298056) (xy 201.436368 107.542997) (xy 201.446097 107.55416) (xy 201.653676 107.823205) + (xy 201.679042 107.888307) (xy 201.6795 107.898951) (xy 201.6795 127.613895) (xy 201.673694 127.633665) + (xy 201.672749 127.654253) (xy 201.660836 127.677456) (xy 201.659815 127.680934) (xy 201.656629 127.685651) + (xy 201.529523 127.864789) (xy 201.520854 127.87566) (xy 201.30596 128.116127) (xy 201.296127 128.12596) + (xy 201.055655 128.340859) (xy 201.044783 128.349528) (xy 200.78178 128.536139) (xy 200.770006 128.543538) + (xy 200.487744 128.699539) (xy 200.475215 128.705572) (xy 200.177272 128.828983) (xy 200.164148 128.833576) + (xy 199.854252 128.922856) (xy 199.840695 128.92595) (xy 199.674324 128.954218) (xy 199.604935 128.946041) + (xy 199.550981 128.901648) (xy 199.529593 128.835132) (xy 199.547562 128.767612) (xy 199.58067 128.73165) + (xy 199.598423 128.718752) (xy 199.758752 128.558423) (xy 199.892026 128.374986) (xy 199.994963 128.17296) + (xy 200.06503 127.957318) (xy 200.1005 127.73337) (xy 200.1005 127.50663) (xy 200.06503 127.282682) + (xy 199.994963 127.06704) (xy 199.892026 126.865014) (xy 199.892024 126.865011) (xy 199.892023 126.865009) + (xy 199.758757 126.681583) (xy 199.758753 126.681578) (xy 199.598421 126.521246) (xy 199.598416 126.521242) + (xy 199.41499 126.387976) (xy 199.212962 126.285038) (xy 199.212961 126.285037) (xy 199.21296 126.285037) + (xy 198.997318 126.21497) (xy 198.997316 126.214969) (xy 198.997315 126.214969) (xy 198.825283 126.187722) + (xy 198.77337 126.1795) (xy 198.54663 126.1795) (xy 198.494716 126.187722) (xy 198.322685 126.214969) + (xy 198.107037 126.285038) (xy 197.905009 126.387976) (xy 197.721583 126.521242) (xy 197.721578 126.521246) + (xy 197.561246 126.681578) (xy 197.561242 126.681583) (xy 197.427976 126.865009) (xy 197.325038 127.067037) + (xy 197.254969 127.282685) (xy 197.2195 127.50663) (xy 197.2195 127.733369) (xy 197.254969 127.957314) + (xy 197.325038 128.172962) (xy 197.427976 128.37499) (xy 197.561242 128.558416) (xy 197.561246 128.558421) + (xy 197.561248 128.558423) (xy 197.721577 128.718752) (xy 197.788827 128.767612) (xy 197.799934 128.775681) + (xy 197.8426 128.831011) (xy 197.848579 128.900625) (xy 197.815974 128.96242) (xy 197.755135 128.996777) + (xy 197.727049 129) (xy 177.572051 129) (xy 177.565146 128.999808) (xy 177.542384 128.998538) (xy 177.241833 128.981772) + (xy 177.228107 128.980235) (xy 176.912244 128.926935) (xy 176.898777 128.923883) (xy 176.775071 128.888495) + (xy 176.590794 128.835781) (xy 176.577747 128.831249) (xy 176.281462 128.709436) (xy 176.268999 128.70348) + (xy 175.988118 128.549481) (xy 175.976396 128.542176) (xy 175.714373 128.357885) (xy 175.703539 128.349325) + (xy 175.463639 128.137037) (xy 175.453823 128.127324) (xy 175.239021 127.889671) (xy 175.230348 127.878929) + (xy 175.091344 127.685651) (xy 175.043308 127.618858) (xy 175.035891 127.60723) (xy 174.878927 127.327957) + (xy 174.872846 127.315568) (xy 174.866952 127.301651) (xy 174.74792 127.020577) (xy 174.743256 127.007591) + (xy 174.651917 126.700553) (xy 174.648722 126.687115) (xy 174.618933 126.521246) (xy 174.592098 126.371822) + (xy 174.590418 126.358116) (xy 174.588944 126.335893) (xy 174.56898 126.035001) (xy 174.568716 126.028139) + (xy 174.545753 123.84663) (xy 197.2195 123.84663) (xy 197.2195 124.073369) (xy 197.254969 124.297314) + (xy 197.325038 124.512962) (xy 197.427976 124.71499) (xy 197.561242 124.898416) (xy 197.561246 124.898421) + (xy 197.721578 125.058753) (xy 197.721583 125.058757) (xy 197.905009 125.192023) (xy 197.905011 125.192024) + (xy 197.905014 125.192026) (xy 198.10704 125.294963) (xy 198.322682 125.36503) (xy 198.54663 125.4005) + (xy 198.546631 125.4005) (xy 198.773369 125.4005) (xy 198.77337 125.4005) (xy 198.997318 125.36503) + (xy 199.21296 125.294963) (xy 199.414986 125.192026) (xy 199.598423 125.058752) (xy 199.758752 124.898423) + (xy 199.892026 124.714986) (xy 199.994963 124.51296) (xy 200.06503 124.297318) (xy 200.1005 124.07337) + (xy 200.1005 123.84663) (xy 200.06503 123.622682) (xy 199.994963 123.40704) (xy 199.892026 123.205014) + (xy 199.892024 123.205011) (xy 199.892023 123.205009) (xy 199.758757 123.021583) (xy 199.758753 123.021578) + (xy 199.598421 122.861246) (xy 199.598416 122.861242) (xy 199.41499 122.727976) (xy 199.212962 122.625038) + (xy 199.212961 122.625037) (xy 199.21296 122.625037) (xy 198.997318 122.55497) (xy 198.997316 122.554969) + (xy 198.997315 122.554969) (xy 198.825283 122.527722) (xy 198.77337 122.5195) (xy 198.54663 122.5195) + (xy 198.494716 122.527722) (xy 198.322685 122.554969) (xy 198.107037 122.625038) (xy 197.905009 122.727976) + (xy 197.721583 122.861242) (xy 197.721578 122.861246) (xy 197.561246 123.021578) (xy 197.561242 123.021583) + (xy 197.427976 123.205009) (xy 197.325038 123.407037) (xy 197.254969 123.622685) (xy 197.2195 123.84663) + (xy 174.545753 123.84663) (xy 174.512989 120.734108) (xy 181.0995 120.734108) (xy 181.0995 120.865892) + (xy 181.116554 120.929539) (xy 181.133608 120.993187) (xy 181.166554 121.05025) (xy 181.1995 121.107314) + (xy 181.292686 121.2005) (xy 181.406814 121.266392) (xy 181.534108 121.3005) (xy 181.53411 121.3005) + (xy 181.66589 121.3005) (xy 181.665892 121.3005) (xy 181.793186 121.266392) (xy 181.907314 121.2005) + (xy 182.0005 121.107314) (xy 182.066392 120.993186) (xy 182.1005 120.865892) (xy 182.1005 120.734108) + (xy 182.066392 120.606814) (xy 182.0005 120.492686) (xy 181.907314 120.3995) (xy 181.85025 120.366554) + (xy 181.793187 120.333608) (xy 181.729539 120.316554) (xy 181.665892 120.2995) (xy 181.534108 120.2995) + (xy 181.406812 120.333608) (xy 181.292686 120.3995) (xy 181.292683 120.399502) (xy 181.199502 120.492683) + (xy 181.1995 120.492686) (xy 181.133608 120.606812) (xy 181.102738 120.722023) (xy 181.0995 120.734108) + (xy 174.512989 120.734108) (xy 174.4987 119.37663) (xy 197.2195 119.37663) (xy 197.2195 119.603369) + (xy 197.254969 119.827314) (xy 197.325038 120.042962) (xy 197.427976 120.24499) (xy 197.561242 120.428416) + (xy 197.561246 120.428421) (xy 197.721578 120.588753) (xy 197.721583 120.588757) (xy 197.905009 120.722023) + (xy 197.905011 120.722024) (xy 197.905014 120.722026) (xy 198.10704 120.824963) (xy 198.322682 120.89503) + (xy 198.54663 120.9305) (xy 198.546631 120.9305) (xy 198.773369 120.9305) (xy 198.77337 120.9305) + (xy 198.997318 120.89503) (xy 199.21296 120.824963) (xy 199.414986 120.722026) (xy 199.598423 120.588752) + (xy 199.758752 120.428423) (xy 199.892026 120.244986) (xy 199.994963 120.04296) (xy 200.06503 119.827318) + (xy 200.1005 119.60337) (xy 200.1005 119.37663) (xy 200.06503 119.152682) (xy 199.994963 118.93704) + (xy 199.892026 118.735014) (xy 199.892024 118.735011) (xy 199.892023 118.735009) (xy 199.758757 118.551583) + (xy 199.758753 118.551578) (xy 199.598421 118.391246) (xy 199.598416 118.391242) (xy 199.41499 118.257976) + (xy 199.212962 118.155038) (xy 199.212961 118.155037) (xy 199.21296 118.155037) (xy 198.997318 118.08497) + (xy 198.997316 118.084969) (xy 198.997315 118.084969) (xy 198.825283 118.057722) (xy 198.77337 118.0495) + (xy 198.54663 118.0495) (xy 198.494716 118.057722) (xy 198.322685 118.084969) (xy 198.107037 118.155038) + (xy 197.905009 118.257976) (xy 197.721583 118.391242) (xy 197.721578 118.391246) (xy 197.561246 118.551578) + (xy 197.561242 118.551583) (xy 197.427976 118.735009) (xy 197.325038 118.937037) (xy 197.254969 119.152685) + (xy 197.2195 119.37663) (xy 174.4987 119.37663) (xy 174.448107 114.570247) (xy 197.2195 114.570247) + (xy 197.2195 117.089752) (xy 197.231131 117.148229) (xy 197.231132 117.14823) (xy 197.275447 117.214552) + (xy 197.341769 117.258867) (xy 197.34177 117.258868) (xy 197.400247 117.270499) (xy 197.40025 117.2705) + (xy 197.400252 117.2705) (xy 199.91975 117.2705) (xy 199.919751 117.270499) (xy 199.934568 117.267552) + (xy 199.978229 117.258868) (xy 199.978229 117.258867) (xy 199.978231 117.258867) (xy 200.044552 117.214552) + (xy 200.088867 117.148231) (xy 200.088867 117.148229) (xy 200.088868 117.148229) (xy 200.100499 117.089752) + (xy 200.1005 117.08975) (xy 200.1005 114.570249) (xy 200.100499 114.570247) (xy 200.088868 114.51177) + (xy 200.088867 114.511769) (xy 200.044552 114.445447) (xy 199.97823 114.401132) (xy 199.978229 114.401131) + (xy 199.919752 114.3895) (xy 199.919748 114.3895) (xy 197.400252 114.3895) (xy 197.400247 114.3895) + (xy 197.34177 114.401131) (xy 197.341769 114.401132) (xy 197.275447 114.445447) (xy 197.231132 114.511769) + (xy 197.231131 114.51177) (xy 197.2195 114.570247) (xy 174.448107 114.570247) (xy 174.441621 113.954108) + (xy 177.3595 113.954108) (xy 177.3595 114.085891) (xy 177.393608 114.213187) (xy 177.426554 114.27025) + (xy 177.4595 114.327314) (xy 177.552686 114.4205) (xy 177.666814 114.486392) (xy 177.794108 114.5205) + (xy 177.79411 114.5205) (xy 177.92589 114.5205) (xy 177.925892 114.5205) (xy 178.053186 114.486392) + (xy 178.167314 114.4205) (xy 178.2605 114.327314) (xy 178.326392 114.213186) (xy 178.3605 114.085892) + (xy 178.3605 113.954108) (xy 178.326392 113.826814) (xy 178.2605 113.712686) (xy 178.167314 113.6195) + (xy 178.11025 113.586554) (xy 178.053187 113.553608) (xy 177.989539 113.536554) (xy 177.925892 113.5195) + (xy 177.794108 113.5195) (xy 177.666812 113.553608) (xy 177.552686 113.6195) (xy 177.552683 113.619502) + (xy 177.459502 113.712683) (xy 177.4595 113.712686) (xy 177.393608 113.826812) (xy 177.3595 113.954108) + (xy 174.441621 113.954108) (xy 174.431578 112.999981) (xy 174.431699 112.993072) (xy 174.446528 112.667644) + (xy 174.447937 112.653824) (xy 174.498535 112.335548) (xy 174.501479 112.321978) (xy 174.587377 112.011337) + (xy 174.591812 111.99821) (xy 174.711932 111.699118) (xy 174.717808 111.68657) (xy 174.870636 111.4028) + (xy 174.877879 111.390987) (xy 175.061501 111.126094) (xy 175.070017 111.11517) (xy 175.282119 110.872488) + (xy 175.291824 110.862568) (xy 175.52972 110.645167) (xy 175.540487 110.636382) (xy 175.801228 110.446952) + (xy 175.812877 110.439448) (xy 176.093193 110.280371) (xy 176.105624 110.274211) (xy 176.401951 110.14751) + (xy 176.415004 110.142774) (xy 176.723657 110.050019) (xy 176.737147 110.046777) (xy 177.054237 109.989138) + (xy 177.068019 109.987424) (xy 177.393042 109.96539) (xy 177.399938 109.965116) (xy 191.6 109.8) + (xy 191.6 107.77056) (xy 191.600382 107.760831) (xy 191.611801 107.615741) (xy 191.611802 107.615731) + (xy 196.6595 107.615731) (xy 196.6595 110.024258) (xy 196.662354 110.054698) (xy 196.662354 110.054699) + (xy 196.707206 110.182881) (xy 196.707207 110.182882) (xy 196.78785 110.29215) (xy 196.897118 110.372793) + (xy 197.025302 110.417646) (xy 197.025301 110.417646) (xy 197.029271 110.418018) (xy 197.055735 110.4205) + (xy 199.464264 110.420499) (xy 199.494698 110.417646) (xy 199.622882 110.372793) (xy 199.73215 110.29215) + (xy 199.812793 110.182882) (xy 199.857646 110.054698) (xy 199.8605 110.024265) (xy 199.860499 107.615736) + (xy 199.857646 107.585302) (xy 199.812793 107.457118) (xy 199.73215 107.34785) (xy 199.622882 107.267207) + (xy 199.622881 107.267206) (xy 199.494695 107.222353) (xy 199.494698 107.222353) (xy 199.464268 107.2195) + (xy 197.055741 107.2195) (xy 197.025301 107.222354) (xy 197.0253 107.222354) (xy 196.897118 107.267206) + (xy 196.78785 107.34785) (xy 196.707206 107.457118) (xy 196.662353 107.585302) (xy 196.6595 107.615731) + (xy 191.611802 107.615731) (xy 191.616048 107.561766) (xy 191.61909 107.54256) (xy 191.664565 107.353143) + (xy 191.670571 107.334659) (xy 191.745118 107.154688) (xy 191.753943 107.137367) (xy 191.855735 106.971258) + (xy 191.867159 106.955537) (xy 191.928192 106.884077) (xy 191.993591 106.807503) (xy 192.007505 106.793612) + (xy 192.155193 106.667922) (xy 192.171309 106.656299) (xy 192.337101 106.555898) (xy 192.354867 106.547003) + (xy 192.534576 106.474405) (xy 192.55354 106.468463) (xy 192.742537 106.425536) (xy 192.762216 106.422701) + (xy 192.960635 106.410234) (xy 192.970568 106.41001) + ) + ) + ) + (zone + (net 3) + (net_name "VDD33") + (layer "In2.Cu") + (uuid "f6d4ae10-68f9-420d-9193-d013d0414efe") + (hatch edge 0.5) + (priority 3) + (connect_pads + (clearance 1) + ) + (min_thickness 0.25) + (filled_areas_thickness no) + (fill yes + (thermal_gap 0.5) + (thermal_bridge_width 0.5) + ) + (polygon + (pts + (xy 137.26 57.42) (xy 137.46 140.02) (xy 173.26 139.82) (xy 173.06 57.82) (xy 173.06 56.62) (xy 136.46 56.62) + ) + ) + (filled_polygon + (layer "In2.Cu") + (pts + (xy 147.003039 57.480185) (xy 147.048794 57.532989) (xy 147.06 57.5845) (xy 147.06 64.02) (xy 172.951423 64.02) + (xy 173.018462 64.039685) (xy 173.064217 64.092489) (xy 173.075423 64.143698) (xy 173.07825 65.3032) + (xy 173.058729 65.370287) (xy 173.006036 65.41617) (xy 172.936902 65.426283) (xy 172.873276 65.397413) + (xy 172.855874 65.378988) (xy 172.790222 65.293428) (xy 172.790216 65.293421) (xy 172.626578 65.129783) + (xy 172.626571 65.129777) (xy 172.442963 64.98889) (xy 172.242539 64.873175) (xy 172.242524 64.873168) + (xy 172.028719 64.784608) (xy 171.805167 64.724707) (xy 171.575727 64.694501) (xy 171.575722 64.6945) + (xy 171.575717 64.6945) (xy 171.344283 64.6945) (xy 171.344277 64.6945) (xy 171.344272 64.694501) + (xy 171.114832 64.724707) (xy 170.89128 64.784608) (xy 170.677475 64.873168) (xy 170.67746 64.873175) + (xy 170.477036 64.98889) (xy 170.293428 65.129777) (xy 170.293421 65.129783) (xy 170.129783 65.293421) + (xy 170.129777 65.293428) (xy 169.98889 65.477036) (xy 169.873175 65.67746) (xy 169.873168 65.677475) + (xy 169.784608 65.89128) (xy 169.724707 66.114832) (xy 169.694501 66.344272) (xy 169.6945 66.344289) + (xy 169.6945 66.57571) (xy 169.694501 66.575727) (xy 169.715112 66.732287) (xy 169.724708 66.805171) + (xy 169.74703 66.888477) (xy 169.784608 67.028719) (xy 169.873168 67.242524) (xy 169.873175 67.242539) + (xy 169.98889 67.442963) (xy 170.129777 67.626571) (xy 170.129783 67.626578) (xy 170.145524 67.642319) + (xy 170.179009 67.703642) (xy 170.174025 67.773334) (xy 170.145524 67.817681) (xy 170.129783 67.833421) + (xy 170.129777 67.833428) (xy 169.98889 68.017036) (xy 169.873175 68.21746) (xy 169.873168 68.217475) + (xy 169.784608 68.43128) (xy 169.724707 68.654832) (xy 169.694501 68.884272) (xy 169.6945 68.884289) + (xy 169.6945 69.11571) (xy 169.694501 69.115727) (xy 169.718263 69.296222) (xy 169.724708 69.345171) + (xy 169.759562 69.475245) (xy 169.784608 69.568719) (xy 169.873168 69.782524) (xy 169.873175 69.782539) + (xy 169.98889 69.982963) (xy 170.129777 70.166571) (xy 170.129783 70.166578) (xy 170.145524 70.182319) + (xy 170.179009 70.243642) (xy 170.174025 70.313334) (xy 170.145524 70.357681) (xy 170.129783 70.373421) + (xy 170.129777 70.373428) (xy 169.98889 70.557036) (xy 169.873175 70.75746) (xy 169.873168 70.757475) + (xy 169.784608 70.97128) (xy 169.724707 71.194832) (xy 169.694501 71.424272) (xy 169.6945 71.424289) + (xy 169.6945 71.65571) (xy 169.694501 71.655727) (xy 169.724707 71.885167) (xy 169.784608 72.108719) + (xy 169.873168 72.322524) (xy 169.873175 72.322539) (xy 169.98889 72.522963) (xy 170.129777 72.706571) + (xy 170.129783 72.706578) (xy 170.145524 72.722319) (xy 170.179009 72.783642) (xy 170.174025 72.853334) + (xy 170.145524 72.897681) (xy 170.129783 72.913421) (xy 170.129777 72.913428) (xy 169.98889 73.097036) + (xy 169.873175 73.29746) (xy 169.873168 73.297475) (xy 169.784608 73.51128) (xy 169.724707 73.734832) + (xy 169.694501 73.964272) (xy 169.6945 73.964289) (xy 169.6945 74.19571) (xy 169.694501 74.195727) + (xy 169.724707 74.425167) (xy 169.784608 74.648719) (xy 169.873168 74.862524) (xy 169.873175 74.862539) + (xy 169.98889 75.062963) (xy 170.129777 75.246571) (xy 170.129783 75.246578) (xy 170.145524 75.262319) + (xy 170.179009 75.323642) (xy 170.174025 75.393334) (xy 170.145524 75.437681) (xy 170.129783 75.453421) + (xy 170.129777 75.453428) (xy 169.98889 75.637036) (xy 169.873175 75.83746) (xy 169.873168 75.837475) + (xy 169.784608 76.05128) (xy 169.724707 76.274832) (xy 169.694501 76.504272) (xy 169.6945 76.504289) + (xy 169.6945 76.73571) (xy 169.694501 76.735727) (xy 169.724707 76.965167) (xy 169.784608 77.188719) + (xy 169.873168 77.402524) (xy 169.873175 77.402539) (xy 169.98889 77.602963) (xy 170.129777 77.786571) + (xy 170.129783 77.786578) (xy 170.145524 77.802319) (xy 170.179009 77.863642) (xy 170.174025 77.933334) + (xy 170.145524 77.977681) (xy 170.129783 77.993421) (xy 170.129777 77.993428) (xy 169.98889 78.177036) + (xy 169.873175 78.37746) (xy 169.873168 78.377475) (xy 169.784608 78.59128) (xy 169.724707 78.814832) + (xy 169.694501 79.044272) (xy 169.6945 79.044289) (xy 169.6945 79.27571) (xy 169.694501 79.275727) + (xy 169.724707 79.505167) (xy 169.784608 79.728719) (xy 169.873168 79.942524) (xy 169.873175 79.942539) + (xy 169.98889 80.142963) (xy 170.129777 80.326571) (xy 170.129783 80.326578) (xy 170.145524 80.342319) + (xy 170.179009 80.403642) (xy 170.174025 80.473334) (xy 170.145524 80.517681) (xy 170.129783 80.533421) + (xy 170.129777 80.533428) (xy 169.98889 80.717036) (xy 169.873175 80.91746) (xy 169.873168 80.917475) + (xy 169.784608 81.13128) (xy 169.724707 81.354832) (xy 169.694501 81.584272) (xy 169.6945 81.584289) + (xy 169.6945 81.81571) (xy 169.694501 81.815727) (xy 169.724707 82.045167) (xy 169.784608 82.268719) + (xy 169.873168 82.482524) (xy 169.873175 82.482539) (xy 169.98889 82.682963) (xy 170.129777 82.866571) + (xy 170.129783 82.866578) (xy 170.145524 82.882319) (xy 170.179009 82.943642) (xy 170.174025 83.013334) + (xy 170.145524 83.057681) (xy 170.129783 83.073421) (xy 170.129777 83.073428) (xy 169.98889 83.257036) + (xy 169.873175 83.45746) (xy 169.873168 83.457475) (xy 169.784608 83.67128) (xy 169.724707 83.894832) + (xy 169.694501 84.124272) (xy 169.6945 84.124289) (xy 169.6945 84.35571) (xy 169.694501 84.355727) + (xy 169.724707 84.585167) (xy 169.784608 84.808719) (xy 169.873168 85.022524) (xy 169.873175 85.022539) + (xy 169.98889 85.222963) (xy 170.129777 85.406571) (xy 170.129783 85.406578) (xy 170.145524 85.422319) + (xy 170.179009 85.483642) (xy 170.174025 85.553334) (xy 170.145524 85.597681) (xy 170.129783 85.613421) + (xy 170.129777 85.613428) (xy 169.98889 85.797036) (xy 169.873175 85.99746) (xy 169.873168 85.997475) + (xy 169.784608 86.21128) (xy 169.724707 86.434832) (xy 169.694501 86.664272) (xy 169.6945 86.664289) + (xy 169.6945 86.89571) (xy 169.694501 86.895727) (xy 169.724707 87.125167) (xy 169.784608 87.348719) + (xy 169.873168 87.562524) (xy 169.873175 87.562539) (xy 169.98889 87.762963) (xy 170.129777 87.946571) + (xy 170.129783 87.946578) (xy 170.145524 87.962319) (xy 170.179009 88.023642) (xy 170.174025 88.093334) + (xy 170.145524 88.137681) (xy 170.129783 88.153421) (xy 170.129777 88.153428) (xy 169.98889 88.337036) + (xy 169.873175 88.53746) (xy 169.873168 88.537475) (xy 169.784608 88.75128) (xy 169.724707 88.974832) + (xy 169.694501 89.204272) (xy 169.6945 89.204289) (xy 169.6945 89.43571) (xy 169.694501 89.435727) + (xy 169.724707 89.665167) (xy 169.784608 89.888719) (xy 169.873168 90.102524) (xy 169.873175 90.102539) + (xy 169.98889 90.302963) (xy 170.129777 90.486571) (xy 170.129783 90.486578) (xy 170.145524 90.502319) + (xy 170.179009 90.563642) (xy 170.174025 90.633334) (xy 170.145524 90.677681) (xy 170.129783 90.693421) + (xy 170.129777 90.693428) (xy 169.98889 90.877036) (xy 169.873175 91.07746) (xy 169.873168 91.077475) + (xy 169.784608 91.29128) (xy 169.724707 91.514832) (xy 169.694501 91.744272) (xy 169.6945 91.744289) + (xy 169.6945 91.97571) (xy 169.694501 91.975727) (xy 169.724707 92.205167) (xy 169.784608 92.428719) + (xy 169.873168 92.642524) (xy 169.873175 92.642539) (xy 169.98889 92.842963) (xy 170.129777 93.026571) + (xy 170.129783 93.026578) (xy 170.145524 93.042319) (xy 170.179009 93.103642) (xy 170.174025 93.173334) + (xy 170.145524 93.217681) (xy 170.129783 93.233421) (xy 170.129777 93.233428) (xy 169.98889 93.417036) + (xy 169.873175 93.61746) (xy 169.873168 93.617475) (xy 169.784608 93.83128) (xy 169.724707 94.054832) + (xy 169.694501 94.284272) (xy 169.6945 94.284289) (xy 169.6945 94.51571) (xy 169.694501 94.515727) + (xy 169.724707 94.745167) (xy 169.784608 94.968719) (xy 169.873168 95.182524) (xy 169.873175 95.182539) + (xy 169.98889 95.382963) (xy 170.129777 95.566571) (xy 170.129783 95.566578) (xy 170.145524 95.582319) + (xy 170.179009 95.643642) (xy 170.174025 95.713334) (xy 170.145524 95.757681) (xy 170.129783 95.773421) + (xy 170.129777 95.773428) (xy 169.98889 95.957036) (xy 169.873175 96.15746) (xy 169.873168 96.157475) + (xy 169.784608 96.37128) (xy 169.724707 96.594832) (xy 169.694501 96.824272) (xy 169.6945 96.824289) + (xy 169.6945 97.05571) (xy 169.694501 97.055727) (xy 169.724707 97.285167) (xy 169.784608 97.508719) + (xy 169.873168 97.722524) (xy 169.873175 97.722539) (xy 169.98889 97.922963) (xy 170.129777 98.106571) + (xy 170.129783 98.106578) (xy 170.145524 98.122319) (xy 170.179009 98.183642) (xy 170.174025 98.253334) + (xy 170.145524 98.297681) (xy 170.129783 98.313421) (xy 170.129777 98.313428) (xy 169.98889 98.497036) + (xy 169.873175 98.69746) (xy 169.873168 98.697475) (xy 169.784608 98.91128) (xy 169.724707 99.134832) + (xy 169.694501 99.364272) (xy 169.6945 99.364289) (xy 169.6945 99.59571) (xy 169.694501 99.595727) + (xy 169.724707 99.825167) (xy 169.784608 100.048719) (xy 169.873168 100.262524) (xy 169.873175 100.262539) + (xy 169.98889 100.462963) (xy 170.129777 100.646571) (xy 170.129783 100.646578) (xy 170.145524 100.662319) + (xy 170.179009 100.723642) (xy 170.174025 100.793334) (xy 170.145524 100.837681) (xy 170.129783 100.853421) + (xy 170.129777 100.853428) (xy 169.98889 101.037036) (xy 169.873175 101.23746) (xy 169.873168 101.237475) + (xy 169.784608 101.45128) (xy 169.724707 101.674832) (xy 169.694501 101.904272) (xy 169.6945 101.904289) + (xy 169.6945 102.13571) (xy 169.694501 102.135727) (xy 169.724707 102.365167) (xy 169.784608 102.588719) + (xy 169.873168 102.802524) (xy 169.873175 102.802539) (xy 169.98889 103.002963) (xy 170.129777 103.186571) + (xy 170.129783 103.186578) (xy 170.145524 103.202319) (xy 170.179009 103.263642) (xy 170.174025 103.333334) + (xy 170.145524 103.377681) (xy 170.129783 103.393421) (xy 170.129777 103.393428) (xy 169.98889 103.577036) + (xy 169.873175 103.77746) (xy 169.873168 103.777475) (xy 169.784608 103.99128) (xy 169.724707 104.214832) + (xy 169.694501 104.444272) (xy 169.6945 104.444289) (xy 169.6945 104.67571) (xy 169.694501 104.675727) + (xy 169.724707 104.905167) (xy 169.784608 105.128719) (xy 169.873168 105.342524) (xy 169.873175 105.342539) + (xy 169.98889 105.542963) (xy 170.129777 105.726571) (xy 170.129783 105.726578) (xy 170.145524 105.742319) + (xy 170.179009 105.803642) (xy 170.174025 105.873334) (xy 170.145524 105.917681) (xy 170.129783 105.933421) + (xy 170.129777 105.933428) (xy 169.98889 106.117036) (xy 169.873175 106.31746) (xy 169.873168 106.317475) + (xy 169.784608 106.53128) (xy 169.724707 106.754832) (xy 169.694501 106.984272) (xy 169.6945 106.984289) + (xy 169.6945 107.21571) (xy 169.694501 107.215727) (xy 169.724707 107.445167) (xy 169.784608 107.668719) + (xy 169.873168 107.882524) (xy 169.873175 107.882539) (xy 169.98889 108.082963) (xy 170.129777 108.266571) + (xy 170.129783 108.266578) (xy 170.145524 108.282319) (xy 170.179009 108.343642) (xy 170.174025 108.413334) + (xy 170.145524 108.457681) (xy 170.129783 108.473421) (xy 170.129777 108.473428) (xy 169.98889 108.657036) + (xy 169.873175 108.85746) (xy 169.873168 108.857475) (xy 169.784608 109.07128) (xy 169.724707 109.294832) + (xy 169.694501 109.524272) (xy 169.6945 109.524289) (xy 169.6945 109.75571) (xy 169.694501 109.755727) + (xy 169.724707 109.985167) (xy 169.784608 110.208719) (xy 169.873168 110.422524) (xy 169.873175 110.422539) + (xy 169.98889 110.622963) (xy 170.129777 110.806571) (xy 170.129783 110.806578) (xy 170.145524 110.822319) + (xy 170.179009 110.883642) (xy 170.174025 110.953334) (xy 170.145524 110.997681) (xy 170.129783 111.013421) + (xy 170.129777 111.013428) (xy 169.98889 111.197036) (xy 169.873175 111.39746) (xy 169.873168 111.397475) + (xy 169.784608 111.61128) (xy 169.724707 111.834832) (xy 169.694501 112.064272) (xy 169.6945 112.064289) + (xy 169.6945 112.29571) (xy 169.694501 112.295727) (xy 169.724707 112.525167) (xy 169.784608 112.748719) + (xy 169.873168 112.962524) (xy 169.873175 112.962539) (xy 169.98889 113.162963) (xy 170.129777 113.346571) + (xy 170.129783 113.346578) (xy 170.145524 113.362319) (xy 170.179009 113.423642) (xy 170.174025 113.493334) + (xy 170.145524 113.537681) (xy 170.129783 113.553421) (xy 170.129777 113.553428) (xy 169.98889 113.737036) + (xy 169.873175 113.93746) (xy 169.873168 113.937475) (xy 169.784608 114.15128) (xy 169.724707 114.374832) + (xy 169.694501 114.604272) (xy 169.6945 114.604289) (xy 169.6945 114.83571) (xy 169.694501 114.835727) + (xy 169.724707 115.065167) (xy 169.784608 115.288719) (xy 169.873168 115.502524) (xy 169.873175 115.502539) + (xy 169.98889 115.702963) (xy 170.129777 115.886571) (xy 170.129783 115.886578) (xy 170.145524 115.902319) + (xy 170.179009 115.963642) (xy 170.174025 116.033334) (xy 170.145524 116.077681) (xy 170.129783 116.093421) + (xy 170.129777 116.093428) (xy 169.98889 116.277036) (xy 169.873175 116.47746) (xy 169.873168 116.477475) + (xy 169.784608 116.69128) (xy 169.724707 116.914832) (xy 169.694501 117.144272) (xy 169.6945 117.144289) + (xy 169.6945 117.37571) (xy 169.694501 117.375727) (xy 169.724707 117.605167) (xy 169.784608 117.828719) + (xy 169.873168 118.042524) (xy 169.873175 118.042539) (xy 169.98889 118.242963) (xy 170.129777 118.426571) + (xy 170.129783 118.426578) (xy 170.145524 118.442319) (xy 170.179009 118.503642) (xy 170.174025 118.573334) + (xy 170.145524 118.617681) (xy 170.129783 118.633421) (xy 170.129777 118.633428) (xy 169.98889 118.817036) + (xy 169.873175 119.01746) (xy 169.873168 119.017475) (xy 169.784608 119.23128) (xy 169.724707 119.454832) + (xy 169.694501 119.684272) (xy 169.6945 119.684289) (xy 169.6945 119.91571) (xy 169.694501 119.915727) + (xy 169.724707 120.145167) (xy 169.784608 120.368719) (xy 169.873168 120.582524) (xy 169.873175 120.582539) + (xy 169.98889 120.782963) (xy 170.129777 120.966571) (xy 170.129783 120.966578) (xy 170.293421 121.130216) + (xy 170.293428 121.130222) (xy 170.477036 121.271109) (xy 170.67746 121.386824) (xy 170.677475 121.386831) + (xy 170.769616 121.424996) (xy 170.891281 121.475392) (xy 171.114829 121.535292) (xy 171.344283 121.5655) + (xy 171.34429 121.5655) (xy 171.57571 121.5655) (xy 171.575717 121.5655) (xy 171.805171 121.535292) + (xy 172.028719 121.475392) (xy 172.242536 121.386826) (xy 172.442964 121.271109) (xy 172.626573 121.130221) + (xy 172.790221 120.966573) (xy 172.931109 120.782964) (xy 172.982115 120.694619) (xy 173.032682 120.646404) + (xy 173.101289 120.63318) (xy 173.166153 120.659148) (xy 173.206682 120.716062) (xy 173.213502 120.756317) + (xy 173.23699 130.38627) (xy 173.23699 130.386271) (xy 166.66 130.42) (xy 166.798512 131.43576) + (xy 166.685259 131.493467) (xy 166.637632 131.517734) (xy 166.568965 131.53063) (xy 166.510723 131.509177) + (xy 166.482608 131.489699) (xy 166.429627 131.452993) (xy 166.224681 131.359903) (xy 166.224678 131.359902) + (xy 166.00642 131.304905) (xy 166.006413 131.304904) (xy 165.962347 131.301436) (xy 165.874217 131.2945) + (xy 165.874215 131.2945) (xy 165.045791 131.2945) (xy 165.045776 131.294501) (xy 164.913586 131.304904) + (xy 164.913579 131.304905) (xy 164.695321 131.359902) (xy 164.695318 131.359903) (xy 164.490377 131.452991) + (xy 164.490367 131.452997) (xy 164.305354 131.581174) (xy 164.305342 131.581184) (xy 164.146184 131.740342) + (xy 164.146174 131.740354) (xy 164.017997 131.925367) (xy 164.017991 131.925377) (xy 163.924903 132.130318) + (xy 163.924902 132.130321) (xy 163.869905 132.348579) (xy 163.869904 132.348586) (xy 163.8595 132.480777) + (xy 163.8595 133.859208) (xy 163.859501 133.859223) (xy 163.869904 133.991413) (xy 163.869905 133.99142) + (xy 163.924902 134.209678) (xy 163.924903 134.209681) (xy 164.017991 134.414622) (xy 164.017997 134.414632) + (xy 164.146174 134.599645) (xy 164.146178 134.59965) (xy 164.146181 134.599654) (xy 164.305346 134.758819) + (xy 164.30535 134.758822) (xy 164.305354 134.758825) (xy 164.409277 134.830823) (xy 164.490374 134.887007) + (xy 164.695317 134.980096) (xy 164.695321 134.980097) (xy 164.913579 135.035094) (xy 164.913581 135.035094) + (xy 164.913588 135.035096) (xy 165.045783 135.0455) (xy 165.874216 135.045499) (xy 166.006412 135.035096) + (xy 166.224683 134.980096) (xy 166.429626 134.887007) (xy 166.510722 134.830822) (xy 166.577037 134.808825) + (xy 166.637629 134.822264) (xy 166.764685 134.887002) (xy 166.845616 134.928239) (xy 166.845618 134.928239) + (xy 166.845621 134.928241) (xy 167.085215 135.00609) (xy 167.289794 135.038492) (xy 167.865386 139.2595) + (xy 137.581858 139.2595) (xy 137.514819 139.239815) (xy 137.469064 139.187011) (xy 137.457858 139.1358) + (xy 137.456804 138.7005) (xy 137.453407 137.297648) (xy 145.2995 137.297648) (xy 145.2995 137.502351) + (xy 145.331522 137.704534) (xy 145.394781 137.899223) (xy 145.487715 138.081613) (xy 145.608028 138.247213) + (xy 145.752786 138.391971) (xy 145.907749 138.504556) (xy 145.91839 138.512287) (xy 146.034607 138.571503) + (xy 146.100776 138.605218) (xy 146.100778 138.605218) (xy 146.100781 138.60522) (xy 146.205137 138.639127) + (xy 146.295465 138.668477) (xy 146.396557 138.684488) (xy 146.497648 138.7005) (xy 146.497649 138.7005) + (xy 146.702351 138.7005) (xy 146.702352 138.7005) (xy 146.904534 138.668477) (xy 147.099219 138.60522) + (xy 147.28161 138.512287) (xy 147.37459 138.444732) (xy 147.447213 138.391971) (xy 147.447215 138.391968) + (xy 147.447219 138.391966) (xy 147.591966 138.247219) (xy 147.591968 138.247215) (xy 147.591971 138.247213) + (xy 147.644732 138.17459) (xy 147.712287 138.08161) (xy 147.80522 137.899219) (xy 147.868477 137.704534) + (xy 147.9005 137.502352) (xy 147.9005 137.297648) (xy 147.868477 137.095466) (xy 147.80522 136.900781) + (xy 147.805218 136.900778) (xy 147.805218 136.900776) (xy 147.771503 136.834607) (xy 147.712287 136.71839) + (xy 147.704556 136.707749) (xy 147.591971 136.552786) (xy 147.447213 136.408028) (xy 147.281613 136.287715) + (xy 147.281612 136.287714) (xy 147.28161 136.287713) (xy 147.224653 136.258691) (xy 147.099223 136.194781) + (xy 146.904534 136.131522) (xy 146.729995 136.103878) (xy 146.702352 136.0995) (xy 146.497648 136.0995) + (xy 146.473329 136.103351) (xy 146.295465 136.131522) (xy 146.100776 136.194781) (xy 145.918386 136.287715) + (xy 145.752786 136.408028) (xy 145.608028 136.552786) (xy 145.487715 136.718386) (xy 145.394781 136.900776) + (xy 145.331522 137.095465) (xy 145.2995 137.297648) (xy 137.453407 137.297648) (xy 137.441744 132.480777) + (xy 138.6595 132.480777) (xy 138.6595 133.859208) (xy 138.659501 133.859223) (xy 138.669904 133.991413) + (xy 138.669905 133.99142) (xy 138.724902 134.209678) (xy 138.724903 134.209681) (xy 138.817991 134.414622) + (xy 138.817997 134.414632) (xy 138.946174 134.599645) (xy 138.946178 134.59965) (xy 138.946181 134.599654) + (xy 139.105346 134.758819) (xy 139.10535 134.758822) (xy 139.105354 134.758825) (xy 139.209277 134.830823) + (xy 139.290374 134.887007) (xy 139.495317 134.980096) (xy 139.495321 134.980097) (xy 139.713579 135.035094) + (xy 139.713581 135.035094) (xy 139.713588 135.035096) (xy 139.845783 135.0455) (xy 140.674216 135.045499) + (xy 140.806412 135.035096) (xy 141.024683 134.980096) (xy 141.229626 134.887007) (xy 141.310722 134.830822) + (xy 141.377037 134.808825) (xy 141.437629 134.822264) (xy 141.564685 134.887002) (xy 141.645616 134.928239) + (xy 141.645618 134.928239) (xy 141.645621 134.928241) (xy 141.885215 135.00609) (xy 142.134038 135.0455) + (xy 142.134039 135.0455) (xy 142.385961 135.0455) (xy 142.385962 135.0455) (xy 142.634785 135.00609) + (xy 142.874379 134.928241) (xy 143.098845 134.81387) (xy 143.302656 134.665793) (xy 143.480793 134.487656) + (xy 143.52731 134.42363) (xy 143.582638 134.380965) (xy 143.652251 134.374985) (xy 143.683923 134.386032) + (xy 143.837742 134.464408) (xy 144.002415 134.517914) (xy 144.002414 134.517914) (xy 144.009999 134.519115) + (xy 144.01 134.519114) (xy 144.01 133.45033) (xy 144.029745 133.470075) (xy 144.115255 133.519444) + (xy 144.21063 133.545) (xy 144.30937 133.545) (xy 144.404745 133.519444) (xy 144.490255 133.470075) + (xy 144.51 133.45033) (xy 144.51 134.519115) (xy 144.517584 134.517914) (xy 144.682257 134.464408) + (xy 144.836076 134.386032) (xy 144.904745 134.373135) (xy 144.969486 134.399411) (xy 144.992691 134.423632) + (xy 145.039203 134.487652) (xy 145.217345 134.665794) (xy 145.21735 134.665798) (xy 145.395117 134.794952) + (xy 145.421155 134.81387) (xy 145.564184 134.886747) (xy 145.645616 134.928239) (xy 145.645618 134.928239) + (xy 145.645621 134.928241) (xy 145.885215 135.00609) (xy 146.134038 135.0455) (xy 146.134039 135.0455) + (xy 146.385961 135.0455) (xy 146.385962 135.0455) (xy 146.634785 135.00609) (xy 146.874379 134.928241) + (xy 147.098845 134.81387) (xy 147.302656 134.665793) (xy 147.480793 134.487656) (xy 147.62887 134.283845) + (xy 147.743241 134.059379) (xy 147.82109 133.819785) (xy 147.8605 133.570962) (xy 147.8605 132.769038) + (xy 147.82109 132.520215) (xy 147.808276 132.480777) (xy 151.2595 132.480777) (xy 151.2595 133.859208) + (xy 151.259501 133.859223) (xy 151.269904 133.991413) (xy 151.269905 133.99142) (xy 151.324902 134.209678) + (xy 151.324903 134.209681) (xy 151.417991 134.414622) (xy 151.417997 134.414632) (xy 151.546174 134.599645) + (xy 151.546178 134.59965) (xy 151.546181 134.599654) (xy 151.705346 134.758819) (xy 151.70535 134.758822) + (xy 151.705354 134.758825) (xy 151.809277 134.830823) (xy 151.890374 134.887007) (xy 152.095317 134.980096) + (xy 152.095321 134.980097) (xy 152.313579 135.035094) (xy 152.313581 135.035094) (xy 152.313588 135.035096) + (xy 152.445783 135.0455) (xy 153.274216 135.045499) (xy 153.406412 135.035096) (xy 153.624683 134.980096) + (xy 153.829626 134.887007) (xy 153.910722 134.830822) (xy 153.977037 134.808825) (xy 154.037629 134.822264) + (xy 154.164685 134.887002) (xy 154.245616 134.928239) (xy 154.245618 134.928239) (xy 154.245621 134.928241) + (xy 154.485215 135.00609) (xy 154.734038 135.0455) (xy 154.734039 135.0455) (xy 154.985961 135.0455) + (xy 154.985962 135.0455) (xy 155.234785 135.00609) (xy 155.474379 134.928241) (xy 155.698845 134.81387) + (xy 155.902656 134.665793) (xy 156.080793 134.487656) (xy 156.12731 134.42363) (xy 156.182638 134.380965) + (xy 156.252251 134.374985) (xy 156.283923 134.386032) (xy 156.437742 134.464408) (xy 156.602415 134.517914) + (xy 156.602414 134.517914) (xy 156.609999 134.519115) (xy 156.61 134.519114) (xy 156.61 133.45033) + (xy 156.629745 133.470075) (xy 156.715255 133.519444) (xy 156.81063 133.545) (xy 156.90937 133.545) + (xy 157.004745 133.519444) (xy 157.090255 133.470075) (xy 157.11 133.45033) (xy 157.11 134.519115) + (xy 157.117584 134.517914) (xy 157.282257 134.464408) (xy 157.436076 134.386032) (xy 157.504745 134.373135) + (xy 157.569486 134.399411) (xy 157.592691 134.423632) (xy 157.639203 134.487652) (xy 157.817345 134.665794) + (xy 157.81735 134.665798) (xy 157.995117 134.794952) (xy 158.021155 134.81387) (xy 158.164184 134.886747) + (xy 158.245616 134.928239) (xy 158.245618 134.928239) (xy 158.245621 134.928241) (xy 158.485215 135.00609) + (xy 158.734038 135.0455) (xy 158.734039 135.0455) (xy 158.985961 135.0455) (xy 158.985962 135.0455) + (xy 159.234785 135.00609) (xy 159.474379 134.928241) (xy 159.698845 134.81387) (xy 159.902656 134.665793) + (xy 160.080793 134.487656) (xy 160.22887 134.283845) (xy 160.343241 134.059379) (xy 160.42109 133.819785) + (xy 160.4605 133.570962) (xy 160.4605 132.769038) (xy 160.42109 132.520215) (xy 160.343241 132.280621) + (xy 160.22887 132.056155) (xy 160.209952 132.030117) (xy 160.080798 131.85235) (xy 160.080794 131.852345) + (xy 159.902654 131.674205) (xy 159.902649 131.674201) (xy 159.698848 131.526132) (xy 159.698847 131.526131) + (xy 159.698845 131.52613) (xy 159.628747 131.490413) (xy 159.474383 131.41176) (xy 159.234785 131.33391) + (xy 158.985962 131.2945) (xy 158.734038 131.2945) (xy 158.668344 131.304905) (xy 158.485214 131.33391) + (xy 158.245616 131.41176) (xy 158.021151 131.526132) (xy 157.81735 131.674201) (xy 157.817345 131.674205) + (xy 157.639208 131.852342) (xy 157.59269 131.916369) (xy 157.537359 131.959034) (xy 157.467746 131.965013) + (xy 157.436077 131.953968) (xy 157.282257 131.875591) (xy 157.117589 131.822087) (xy 157.117581 131.822085) + (xy 157.11 131.820884) (xy 157.11 132.88967) (xy 157.090255 132.869925) (xy 157.004745 132.820556) + (xy 156.90937 132.795) (xy 156.81063 132.795) (xy 156.715255 132.820556) (xy 156.629745 132.869925) + (xy 156.61 132.88967) (xy 156.61 131.820884) (xy 156.609999 131.820884) (xy 156.602418 131.822085) + (xy 156.60241 131.822087) (xy 156.437742 131.875591) (xy 156.283922 131.953968) (xy 156.215253 131.966864) + (xy 156.150512 131.940588) (xy 156.127308 131.916367) (xy 156.080796 131.852347) (xy 155.902654 131.674205) + (xy 155.902649 131.674201) (xy 155.698848 131.526132) (xy 155.698847 131.526131) (xy 155.698845 131.52613) + (xy 155.628747 131.490413) (xy 155.474383 131.41176) (xy 155.234785 131.33391) (xy 154.985962 131.2945) + (xy 154.734038 131.2945) (xy 154.668344 131.304905) (xy 154.485214 131.33391) (xy 154.245616 131.41176) + (xy 154.085259 131.493467) (xy 154.037632 131.517734) (xy 153.968965 131.53063) (xy 153.910723 131.509177) + (xy 153.882608 131.489699) (xy 153.829627 131.452993) (xy 153.624681 131.359903) (xy 153.624678 131.359902) + (xy 153.40642 131.304905) (xy 153.406413 131.304904) (xy 153.362347 131.301436) (xy 153.274217 131.2945) + (xy 153.274215 131.2945) (xy 152.445791 131.2945) (xy 152.445776 131.294501) (xy 152.313586 131.304904) + (xy 152.313579 131.304905) (xy 152.095321 131.359902) (xy 152.095318 131.359903) (xy 151.890377 131.452991) + (xy 151.890367 131.452997) (xy 151.705354 131.581174) (xy 151.705342 131.581184) (xy 151.546184 131.740342) + (xy 151.546174 131.740354) (xy 151.417997 131.925367) (xy 151.417991 131.925377) (xy 151.324903 132.130318) + (xy 151.324902 132.130321) (xy 151.269905 132.348579) (xy 151.269904 132.348586) (xy 151.2595 132.480777) + (xy 147.808276 132.480777) (xy 147.743241 132.280621) (xy 147.62887 132.056155) (xy 147.609952 132.030117) + (xy 147.480798 131.85235) (xy 147.480794 131.852345) (xy 147.302654 131.674205) (xy 147.302649 131.674201) + (xy 147.098848 131.526132) (xy 147.098847 131.526131) (xy 147.098845 131.52613) (xy 147.028747 131.490413) + (xy 146.874383 131.41176) (xy 146.634785 131.33391) (xy 146.385962 131.2945) (xy 146.134038 131.2945) + (xy 146.068344 131.304905) (xy 145.885214 131.33391) (xy 145.645616 131.41176) (xy 145.421151 131.526132) + (xy 145.21735 131.674201) (xy 145.217345 131.674205) (xy 145.039208 131.852342) (xy 144.99269 131.916369) + (xy 144.937359 131.959034) (xy 144.867746 131.965013) (xy 144.836077 131.953968) (xy 144.682257 131.875591) + (xy 144.517589 131.822087) (xy 144.517581 131.822085) (xy 144.51 131.820884) (xy 144.51 132.88967) + (xy 144.490255 132.869925) (xy 144.404745 132.820556) (xy 144.30937 132.795) (xy 144.21063 132.795) + (xy 144.115255 132.820556) (xy 144.029745 132.869925) (xy 144.01 132.88967) (xy 144.01 131.820884) + (xy 144.009999 131.820884) (xy 144.002418 131.822085) (xy 144.00241 131.822087) (xy 143.837742 131.875591) + (xy 143.683922 131.953968) (xy 143.615253 131.966864) (xy 143.550512 131.940588) (xy 143.527308 131.916367) + (xy 143.480796 131.852347) (xy 143.302654 131.674205) (xy 143.302649 131.674201) (xy 143.098848 131.526132) + (xy 143.098847 131.526131) (xy 143.098845 131.52613) (xy 143.028747 131.490413) (xy 142.874383 131.41176) + (xy 142.634785 131.33391) (xy 142.385962 131.2945) (xy 142.134038 131.2945) (xy 142.068344 131.304905) + (xy 141.885214 131.33391) (xy 141.645616 131.41176) (xy 141.485259 131.493467) (xy 141.437632 131.517734) + (xy 141.368965 131.53063) (xy 141.310723 131.509177) (xy 141.282608 131.489699) (xy 141.229627 131.452993) + (xy 141.024681 131.359903) (xy 141.024678 131.359902) (xy 140.80642 131.304905) (xy 140.806413 131.304904) + (xy 140.762347 131.301436) (xy 140.674217 131.2945) (xy 140.674215 131.2945) (xy 139.845791 131.2945) + (xy 139.845776 131.294501) (xy 139.713586 131.304904) (xy 139.713579 131.304905) (xy 139.495321 131.359902) + (xy 139.495318 131.359903) (xy 139.290377 131.452991) (xy 139.290367 131.452997) (xy 139.105354 131.581174) + (xy 139.105342 131.581184) (xy 138.946184 131.740342) (xy 138.946174 131.740354) (xy 138.817997 131.925367) + (xy 138.817991 131.925377) (xy 138.724903 132.130318) (xy 138.724902 132.130321) (xy 138.669905 132.348579) + (xy 138.669904 132.348586) (xy 138.6595 132.480777) (xy 137.441744 132.480777) (xy 137.293909 71.424289) + (xy 146.8345 71.424289) (xy 146.8345 71.65571) (xy 146.834501 71.655727) (xy 146.864707 71.885167) + (xy 146.924608 72.108719) (xy 147.013168 72.322524) (xy 147.013175 72.322539) (xy 147.12889 72.522963) + (xy 147.269777 72.706571) (xy 147.269783 72.706578) (xy 147.285524 72.722319) (xy 147.319009 72.783642) + (xy 147.314025 72.853334) (xy 147.285524 72.897681) (xy 147.269783 72.913421) (xy 147.269777 72.913428) + (xy 147.12889 73.097036) (xy 147.013175 73.29746) (xy 147.013168 73.297475) (xy 146.924608 73.51128) + (xy 146.864707 73.734832) (xy 146.834501 73.964272) (xy 146.8345 73.964289) (xy 146.8345 74.19571) + (xy 146.834501 74.195727) (xy 146.864707 74.425167) (xy 146.924608 74.648719) (xy 147.013168 74.862524) + (xy 147.013175 74.862539) (xy 147.12889 75.062963) (xy 147.269777 75.246571) (xy 147.269783 75.246578) + (xy 147.285524 75.262319) (xy 147.319009 75.323642) (xy 147.314025 75.393334) (xy 147.285524 75.437681) + (xy 147.269783 75.453421) (xy 147.269777 75.453428) (xy 147.12889 75.637036) (xy 147.013175 75.83746) + (xy 147.013168 75.837475) (xy 146.924608 76.05128) (xy 146.864707 76.274832) (xy 146.834501 76.504272) + (xy 146.8345 76.504289) (xy 146.8345 76.73571) (xy 146.834501 76.735727) (xy 146.864707 76.965167) + (xy 146.924608 77.188719) (xy 147.013168 77.402524) (xy 147.013175 77.402539) (xy 147.12889 77.602963) + (xy 147.269777 77.786571) (xy 147.269783 77.786578) (xy 147.285524 77.802319) (xy 147.319009 77.863642) + (xy 147.314025 77.933334) (xy 147.285524 77.977681) (xy 147.269783 77.993421) (xy 147.269777 77.993428) + (xy 147.12889 78.177036) (xy 147.013175 78.37746) (xy 147.013168 78.377475) (xy 146.924608 78.59128) + (xy 146.864707 78.814832) (xy 146.834501 79.044272) (xy 146.8345 79.044289) (xy 146.8345 79.27571) + (xy 146.834501 79.275727) (xy 146.864707 79.505167) (xy 146.924608 79.728719) (xy 147.013168 79.942524) + (xy 147.013175 79.942539) (xy 147.12889 80.142963) (xy 147.269777 80.326571) (xy 147.269783 80.326578) + (xy 147.285524 80.342319) (xy 147.319009 80.403642) (xy 147.314025 80.473334) (xy 147.285524 80.517681) + (xy 147.269783 80.533421) (xy 147.269777 80.533428) (xy 147.12889 80.717036) (xy 147.013175 80.91746) + (xy 147.013168 80.917475) (xy 146.924608 81.13128) (xy 146.864707 81.354832) (xy 146.834501 81.584272) + (xy 146.8345 81.584289) (xy 146.8345 81.81571) (xy 146.834501 81.815727) (xy 146.864707 82.045167) + (xy 146.924608 82.268719) (xy 147.013168 82.482524) (xy 147.013175 82.482539) (xy 147.12889 82.682963) + (xy 147.269777 82.866571) (xy 147.269783 82.866578) (xy 147.285524 82.882319) (xy 147.319009 82.943642) + (xy 147.314025 83.013334) (xy 147.285524 83.057681) (xy 147.269783 83.073421) (xy 147.269777 83.073428) + (xy 147.12889 83.257036) (xy 147.013175 83.45746) (xy 147.013168 83.457475) (xy 146.924608 83.67128) + (xy 146.864707 83.894832) (xy 146.834501 84.124272) (xy 146.8345 84.124289) (xy 146.8345 84.35571) + (xy 146.834501 84.355727) (xy 146.864707 84.585167) (xy 146.924608 84.808719) (xy 147.013168 85.022524) + (xy 147.013175 85.022539) (xy 147.12889 85.222963) (xy 147.269777 85.406571) (xy 147.269783 85.406578) + (xy 147.285524 85.422319) (xy 147.319009 85.483642) (xy 147.314025 85.553334) (xy 147.285524 85.597681) + (xy 147.269783 85.613421) (xy 147.269777 85.613428) (xy 147.12889 85.797036) (xy 147.013175 85.99746) + (xy 147.013168 85.997475) (xy 146.924608 86.21128) (xy 146.864707 86.434832) (xy 146.834501 86.664272) + (xy 146.8345 86.664289) (xy 146.8345 86.89571) (xy 146.834501 86.895727) (xy 146.864707 87.125167) + (xy 146.924608 87.348719) (xy 147.013168 87.562524) (xy 147.013175 87.562539) (xy 147.12889 87.762963) + (xy 147.269777 87.946571) (xy 147.269783 87.946578) (xy 147.285524 87.962319) (xy 147.319009 88.023642) + (xy 147.314025 88.093334) (xy 147.285524 88.137681) (xy 147.269783 88.153421) (xy 147.269777 88.153428) + (xy 147.12889 88.337036) (xy 147.013175 88.53746) (xy 147.013168 88.537475) (xy 146.924608 88.75128) + (xy 146.864707 88.974832) (xy 146.834501 89.204272) (xy 146.8345 89.204289) (xy 146.8345 89.43571) + (xy 146.834501 89.435727) (xy 146.864707 89.665167) (xy 146.924608 89.888719) (xy 147.013168 90.102524) + (xy 147.013175 90.102539) (xy 147.12889 90.302963) (xy 147.269777 90.486571) (xy 147.269783 90.486578) + (xy 147.285524 90.502319) (xy 147.319009 90.563642) (xy 147.314025 90.633334) (xy 147.285524 90.677681) + (xy 147.269783 90.693421) (xy 147.269777 90.693428) (xy 147.12889 90.877036) (xy 147.013175 91.07746) + (xy 147.013168 91.077475) (xy 146.924608 91.29128) (xy 146.864707 91.514832) (xy 146.834501 91.744272) + (xy 146.8345 91.744289) (xy 146.8345 91.97571) (xy 146.834501 91.975727) (xy 146.864707 92.205167) + (xy 146.924608 92.428719) (xy 147.013168 92.642524) (xy 147.013175 92.642539) (xy 147.12889 92.842963) + (xy 147.269777 93.026571) (xy 147.269783 93.026578) (xy 147.285524 93.042319) (xy 147.319009 93.103642) + (xy 147.314025 93.173334) (xy 147.285524 93.217681) (xy 147.269783 93.233421) (xy 147.269777 93.233428) + (xy 147.12889 93.417036) (xy 147.013175 93.61746) (xy 147.013168 93.617475) (xy 146.924608 93.83128) + (xy 146.864707 94.054832) (xy 146.834501 94.284272) (xy 146.8345 94.284289) (xy 146.8345 94.51571) + (xy 146.834501 94.515727) (xy 146.864707 94.745167) (xy 146.924608 94.968719) (xy 147.013168 95.182524) + (xy 147.013175 95.182539) (xy 147.12889 95.382963) (xy 147.269777 95.566571) (xy 147.269783 95.566578) + (xy 147.285524 95.582319) (xy 147.319009 95.643642) (xy 147.314025 95.713334) (xy 147.285524 95.757681) + (xy 147.269783 95.773421) (xy 147.269777 95.773428) (xy 147.12889 95.957036) (xy 147.013175 96.15746) + (xy 147.013168 96.157475) (xy 146.924608 96.37128) (xy 146.864707 96.594832) (xy 146.834501 96.824272) + (xy 146.8345 96.824289) (xy 146.8345 97.05571) (xy 146.834501 97.055727) (xy 146.864707 97.285167) + (xy 146.924608 97.508719) (xy 147.013168 97.722524) (xy 147.013175 97.722539) (xy 147.12889 97.922963) + (xy 147.269777 98.106571) (xy 147.269783 98.106578) (xy 147.285524 98.122319) (xy 147.319009 98.183642) + (xy 147.314025 98.253334) (xy 147.285524 98.297681) (xy 147.269783 98.313421) (xy 147.269777 98.313428) + (xy 147.12889 98.497036) (xy 147.013175 98.69746) (xy 147.013168 98.697475) (xy 146.924608 98.91128) + (xy 146.864707 99.134832) (xy 146.834501 99.364272) (xy 146.8345 99.364289) (xy 146.8345 99.59571) + (xy 146.834501 99.595727) (xy 146.864707 99.825167) (xy 146.924608 100.048719) (xy 147.013168 100.262524) + (xy 147.013175 100.262539) (xy 147.12889 100.462963) (xy 147.269777 100.646571) (xy 147.269783 100.646578) + (xy 147.285524 100.662319) (xy 147.319009 100.723642) (xy 147.314025 100.793334) (xy 147.285524 100.837681) + (xy 147.269783 100.853421) (xy 147.269777 100.853428) (xy 147.12889 101.037036) (xy 147.013175 101.23746) + (xy 147.013168 101.237475) (xy 146.924608 101.45128) (xy 146.864707 101.674832) (xy 146.834501 101.904272) + (xy 146.8345 101.904289) (xy 146.8345 102.13571) (xy 146.834501 102.135727) (xy 146.864707 102.365167) + (xy 146.924608 102.588719) (xy 147.013168 102.802524) (xy 147.013175 102.802539) (xy 147.12889 103.002963) + (xy 147.269777 103.186571) (xy 147.269783 103.186578) (xy 147.285524 103.202319) (xy 147.319009 103.263642) + (xy 147.314025 103.333334) (xy 147.285524 103.377681) (xy 147.269783 103.393421) (xy 147.269777 103.393428) + (xy 147.12889 103.577036) (xy 147.013175 103.77746) (xy 147.013168 103.777475) (xy 146.924608 103.99128) + (xy 146.864707 104.214832) (xy 146.834501 104.444272) (xy 146.8345 104.444289) (xy 146.8345 104.67571) + (xy 146.834501 104.675727) (xy 146.864707 104.905167) (xy 146.924608 105.128719) (xy 147.013168 105.342524) + (xy 147.013175 105.342539) (xy 147.12889 105.542963) (xy 147.269777 105.726571) (xy 147.269783 105.726578) + (xy 147.285524 105.742319) (xy 147.319009 105.803642) (xy 147.314025 105.873334) (xy 147.285524 105.917681) + (xy 147.269783 105.933421) (xy 147.269777 105.933428) (xy 147.12889 106.117036) (xy 147.013175 106.31746) + (xy 147.013168 106.317475) (xy 146.924608 106.53128) (xy 146.864707 106.754832) (xy 146.834501 106.984272) + (xy 146.8345 106.984289) (xy 146.8345 107.21571) (xy 146.834501 107.215727) (xy 146.864707 107.445167) + (xy 146.924608 107.668719) (xy 147.013168 107.882524) (xy 147.013175 107.882539) (xy 147.12889 108.082963) + (xy 147.269777 108.266571) (xy 147.269783 108.266578) (xy 147.285524 108.282319) (xy 147.319009 108.343642) + (xy 147.314025 108.413334) (xy 147.285524 108.457681) (xy 147.269783 108.473421) (xy 147.269777 108.473428) + (xy 147.12889 108.657036) (xy 147.013175 108.85746) (xy 147.013168 108.857475) (xy 146.924608 109.07128) + (xy 146.864707 109.294832) (xy 146.834501 109.524272) (xy 146.8345 109.524289) (xy 146.8345 109.75571) + (xy 146.834501 109.755727) (xy 146.864707 109.985167) (xy 146.924608 110.208719) (xy 147.013168 110.422524) + (xy 147.013175 110.422539) (xy 147.12889 110.622963) (xy 147.269777 110.806571) (xy 147.269783 110.806578) + (xy 147.285524 110.822319) (xy 147.319009 110.883642) (xy 147.314025 110.953334) (xy 147.285524 110.997681) + (xy 147.269783 111.013421) (xy 147.269777 111.013428) (xy 147.12889 111.197036) (xy 147.013175 111.39746) + (xy 147.013168 111.397475) (xy 146.924608 111.61128) (xy 146.864707 111.834832) (xy 146.834501 112.064272) + (xy 146.8345 112.064289) (xy 146.8345 112.29571) (xy 146.834501 112.295727) (xy 146.864707 112.525167) + (xy 146.924608 112.748719) (xy 147.013168 112.962524) (xy 147.013175 112.962539) (xy 147.12889 113.162963) + (xy 147.269777 113.346571) (xy 147.269783 113.346578) (xy 147.285524 113.362319) (xy 147.319009 113.423642) + (xy 147.314025 113.493334) (xy 147.285524 113.537681) (xy 147.269783 113.553421) (xy 147.269777 113.553428) + (xy 147.12889 113.737036) (xy 147.013175 113.93746) (xy 147.013168 113.937475) (xy 146.924608 114.15128) + (xy 146.864707 114.374832) (xy 146.834501 114.604272) (xy 146.8345 114.604289) (xy 146.8345 114.83571) + (xy 146.834501 114.835727) (xy 146.864707 115.065167) (xy 146.924608 115.288719) (xy 147.013168 115.502524) + (xy 147.013175 115.502539) (xy 147.12889 115.702963) (xy 147.269777 115.886571) (xy 147.269783 115.886578) + (xy 147.285524 115.902319) (xy 147.319009 115.963642) (xy 147.314025 116.033334) (xy 147.285524 116.077681) + (xy 147.269783 116.093421) (xy 147.269777 116.093428) (xy 147.12889 116.277036) (xy 147.013175 116.47746) + (xy 147.013168 116.477475) (xy 146.924608 116.69128) (xy 146.864707 116.914832) (xy 146.834501 117.144272) + (xy 146.8345 117.144289) (xy 146.8345 117.37571) (xy 146.834501 117.375727) (xy 146.864707 117.605167) + (xy 146.924608 117.828719) (xy 147.013168 118.042524) (xy 147.013175 118.042539) (xy 147.12889 118.242963) + (xy 147.269777 118.426571) (xy 147.269783 118.426578) (xy 147.285524 118.442319) (xy 147.319009 118.503642) + (xy 147.314025 118.573334) (xy 147.285524 118.617681) (xy 147.269783 118.633421) (xy 147.269777 118.633428) + (xy 147.12889 118.817036) (xy 147.013175 119.01746) (xy 147.013168 119.017475) (xy 146.924608 119.23128) + (xy 146.864707 119.454832) (xy 146.834501 119.684272) (xy 146.8345 119.684289) (xy 146.8345 119.91571) + (xy 146.834501 119.915727) (xy 146.864707 120.145167) (xy 146.924608 120.368719) (xy 147.013168 120.582524) + (xy 147.013175 120.582539) (xy 147.12889 120.782963) (xy 147.269777 120.966571) (xy 147.269783 120.966578) + (xy 147.433421 121.130216) (xy 147.433428 121.130222) (xy 147.617036 121.271109) (xy 147.81746 121.386824) + (xy 147.817475 121.386831) (xy 147.909616 121.424996) (xy 148.031281 121.475392) (xy 148.254829 121.535292) + (xy 148.484283 121.5655) (xy 148.48429 121.5655) (xy 148.71571 121.5655) (xy 148.715717 121.5655) + (xy 148.945171 121.535292) (xy 149.168719 121.475392) (xy 149.382536 121.386826) (xy 149.582964 121.271109) + (xy 149.766573 121.130221) (xy 149.930221 120.966573) (xy 150.071109 120.782964) (xy 150.186826 120.582536) + (xy 150.275392 120.368719) (xy 150.335292 120.145171) (xy 150.3655 119.915717) (xy 150.3655 119.684283) + (xy 150.335292 119.454829) (xy 150.275392 119.231281) (xy 150.186826 119.017464) (xy 150.15252 118.958045) + (xy 150.071109 118.817036) (xy 149.930223 118.63343) (xy 149.930221 118.633427) (xy 149.914475 118.617681) + (xy 149.88099 118.556361) (xy 149.885973 118.48667) (xy 149.914475 118.442318) (xy 149.930221 118.426573) + (xy 150.071109 118.242964) (xy 150.186826 118.042536) (xy 150.275392 117.828719) (xy 150.335292 117.605171) + (xy 150.3655 117.375717) (xy 150.3655 117.144283) (xy 150.335292 116.914829) (xy 150.275392 116.691281) + (xy 150.186826 116.477464) (xy 150.111206 116.346487) (xy 150.071109 116.277036) (xy 149.930223 116.09343) + (xy 149.930221 116.093427) (xy 149.914475 116.077681) (xy 149.88099 116.016361) (xy 149.885973 115.94667) + (xy 149.914475 115.902318) (xy 149.930221 115.886573) (xy 150.071109 115.702964) (xy 150.186826 115.502536) + (xy 150.275392 115.288719) (xy 150.335292 115.065171) (xy 150.3655 114.835717) (xy 150.3655 114.604283) + (xy 150.335292 114.374829) (xy 150.275392 114.151281) (xy 150.186826 113.937464) (xy 150.140077 113.856493) + (xy 150.071109 113.737036) (xy 149.930223 113.55343) (xy 149.930221 113.553427) (xy 149.914475 113.537681) + (xy 149.88099 113.476361) (xy 149.885973 113.40667) (xy 149.914475 113.362318) (xy 149.930221 113.346573) + (xy 150.071109 113.162964) (xy 150.186826 112.962536) (xy 150.275392 112.748719) (xy 150.335292 112.525171) + (xy 150.3655 112.295717) (xy 150.3655 112.064283) (xy 150.335292 111.834829) (xy 150.275392 111.611281) + (xy 150.186826 111.397464) (xy 150.098763 111.244935) (xy 150.071109 111.197036) (xy 149.930223 111.01343) + (xy 149.930221 111.013427) (xy 149.914475 110.997681) (xy 149.88099 110.936361) (xy 149.885973 110.86667) + (xy 149.914475 110.822318) (xy 149.930221 110.806573) (xy 150.071109 110.622964) (xy 150.186826 110.422536) + (xy 150.275392 110.208719) (xy 150.335292 109.985171) (xy 150.3655 109.755717) (xy 150.3655 109.524283) + (xy 150.335292 109.294829) (xy 150.275392 109.071281) (xy 150.186826 108.857464) (xy 150.127634 108.754941) + (xy 150.071109 108.657036) (xy 149.930223 108.47343) (xy 149.930221 108.473427) (xy 149.914475 108.457681) + (xy 149.88099 108.396361) (xy 149.885973 108.32667) (xy 149.914475 108.282318) (xy 149.930221 108.266573) + (xy 150.071109 108.082964) (xy 150.186826 107.882536) (xy 150.275392 107.668719) (xy 150.335292 107.445171) + (xy 150.3655 107.215717) (xy 150.3655 106.984283) (xy 150.335292 106.754829) (xy 150.275392 106.531281) + (xy 150.186826 106.317464) (xy 150.121413 106.204166) (xy 150.071109 106.117036) (xy 149.930223 105.93343) + (xy 149.930221 105.933427) (xy 149.914475 105.917681) (xy 149.88099 105.856361) (xy 149.885973 105.78667) + (xy 149.914475 105.742318) (xy 149.930221 105.726573) (xy 150.071109 105.542964) (xy 150.186826 105.342536) + (xy 150.275392 105.128719) (xy 150.335292 104.905171) (xy 150.3655 104.675717) (xy 150.3655 104.444283) + (xy 150.335292 104.214829) (xy 150.275392 103.991281) (xy 150.186826 103.777464) (xy 150.071109 103.577036) + (xy 149.930221 103.393427) (xy 149.914475 103.377681) (xy 149.88099 103.316361) (xy 149.885973 103.24667) + (xy 149.914475 103.202318) (xy 149.930221 103.186573) (xy 150.071109 103.002964) (xy 150.186826 102.802536) + (xy 150.275392 102.588719) (xy 150.335292 102.365171) (xy 150.3655 102.135717) (xy 150.3655 101.904283) + (xy 150.335292 101.674829) (xy 150.275392 101.451281) (xy 150.186826 101.237464) (xy 150.071109 101.037036) + (xy 149.930221 100.853427) (xy 149.914475 100.837681) (xy 149.88099 100.776361) (xy 149.885973 100.70667) + (xy 149.914475 100.662318) (xy 149.930221 100.646573) (xy 150.071109 100.462964) (xy 150.186826 100.262536) + (xy 150.275392 100.048719) (xy 150.335292 99.825171) (xy 150.3655 99.595717) (xy 150.3655 99.364283) + (xy 150.335292 99.134829) (xy 150.275392 98.911281) (xy 150.186826 98.697464) (xy 150.102943 98.552175) + (xy 150.071109 98.497036) (xy 149.930223 98.31343) (xy 149.930221 98.313427) (xy 149.914475 98.297681) + (xy 149.88099 98.236361) (xy 149.885973 98.16667) (xy 149.914475 98.122318) (xy 149.930221 98.106573) + (xy 150.071109 97.922964) (xy 150.186826 97.722536) (xy 150.275392 97.508719) (xy 150.335292 97.285171) + (xy 150.3655 97.055717) (xy 150.3655 96.824283) (xy 150.335292 96.594829) (xy 150.275392 96.371281) + (xy 150.186826 96.157464) (xy 150.071109 95.957036) (xy 149.930221 95.773427) (xy 149.914475 95.757681) + (xy 149.88099 95.696361) (xy 149.885973 95.62667) (xy 149.914475 95.582318) (xy 149.930221 95.566573) + (xy 150.071109 95.382964) (xy 150.186826 95.182536) (xy 150.275392 94.968719) (xy 150.335292 94.745171) + (xy 150.3655 94.515717) (xy 150.3655 94.284283) (xy 150.335292 94.054829) (xy 150.275392 93.831281) + (xy 150.186826 93.617464) (xy 150.076576 93.426506) (xy 150.071109 93.417036) (xy 149.930223 93.23343) + (xy 149.930221 93.233427) (xy 149.914475 93.217681) (xy 149.88099 93.156361) (xy 149.885973 93.08667) + (xy 149.914475 93.042318) (xy 149.930221 93.026573) (xy 150.071109 92.842964) (xy 150.186826 92.642536) + (xy 150.275392 92.428719) (xy 150.335292 92.205171) (xy 150.3655 91.975717) (xy 150.3655 91.744283) + (xy 150.335292 91.514829) (xy 150.275392 91.291281) (xy 150.186826 91.077464) (xy 150.071109 90.877036) + (xy 149.930221 90.693427) (xy 149.914475 90.677681) (xy 149.88099 90.616361) (xy 149.885973 90.54667) + (xy 149.914475 90.502318) (xy 149.930221 90.486573) (xy 150.071109 90.302964) (xy 150.186826 90.102536) + (xy 150.275392 89.888719) (xy 150.335292 89.665171) (xy 150.3655 89.435717) (xy 150.3655 89.204283) + (xy 150.335292 88.974829) (xy 150.275392 88.751281) (xy 150.186826 88.537464) (xy 150.071109 88.337036) + (xy 149.930221 88.153427) (xy 149.914475 88.137681) (xy 149.88099 88.076361) (xy 149.885973 88.00667) + (xy 149.914475 87.962318) (xy 149.930221 87.946573) (xy 150.071109 87.762964) (xy 150.186826 87.562536) + (xy 150.275392 87.348719) (xy 150.335292 87.125171) (xy 150.3655 86.895717) (xy 150.3655 86.664283) + (xy 150.335292 86.434829) (xy 150.275392 86.211281) (xy 150.186826 85.997464) (xy 150.071109 85.797036) + (xy 149.930221 85.613427) (xy 149.914475 85.597681) (xy 149.88099 85.536361) (xy 149.885973 85.46667) + (xy 149.914475 85.422318) (xy 149.930221 85.406573) (xy 150.071109 85.222964) (xy 150.186826 85.022536) + (xy 150.275392 84.808719) (xy 150.335292 84.585171) (xy 150.3655 84.355717) (xy 150.3655 84.124283) + (xy 150.335292 83.894829) (xy 150.275392 83.671281) (xy 150.186826 83.457464) (xy 150.071109 83.257036) + (xy 149.930221 83.073427) (xy 149.914475 83.057681) (xy 149.88099 82.996361) (xy 149.885973 82.92667) + (xy 149.914475 82.882318) (xy 149.930221 82.866573) (xy 150.071109 82.682964) (xy 150.186826 82.482536) + (xy 150.275392 82.268719) (xy 150.335292 82.045171) (xy 150.3655 81.815717) (xy 150.3655 81.584283) + (xy 150.335292 81.354829) (xy 150.275392 81.131281) (xy 150.186826 80.917464) (xy 150.071109 80.717036) + (xy 149.930221 80.533427) (xy 149.914475 80.517681) (xy 149.88099 80.456361) (xy 149.885973 80.38667) + (xy 149.914475 80.342318) (xy 149.930221 80.326573) (xy 150.071109 80.142964) (xy 150.186826 79.942536) + (xy 150.275392 79.728719) (xy 150.335292 79.505171) (xy 150.3655 79.275717) (xy 150.3655 79.044283) + (xy 150.335292 78.814829) (xy 150.275392 78.591281) (xy 150.186826 78.377464) (xy 150.071109 78.177036) + (xy 149.930221 77.993427) (xy 149.914475 77.977681) (xy 149.88099 77.916361) (xy 149.885973 77.84667) + (xy 149.914475 77.802318) (xy 149.930221 77.786573) (xy 150.071109 77.602964) (xy 150.186826 77.402536) + (xy 150.275392 77.188719) (xy 150.335292 76.965171) (xy 150.3655 76.735717) (xy 150.3655 76.504283) + (xy 150.335292 76.274829) (xy 150.275392 76.051281) (xy 150.186826 75.837464) (xy 150.071109 75.637036) + (xy 149.930221 75.453427) (xy 149.914475 75.437681) (xy 149.88099 75.376361) (xy 149.885973 75.30667) + (xy 149.914475 75.262318) (xy 149.930221 75.246573) (xy 150.071109 75.062964) (xy 150.186826 74.862536) + (xy 150.275392 74.648719) (xy 150.335292 74.425171) (xy 150.3655 74.195717) (xy 150.3655 73.964283) + (xy 150.335292 73.734829) (xy 150.275392 73.511281) (xy 150.186826 73.297464) (xy 150.071109 73.097036) + (xy 149.930221 72.913427) (xy 149.914475 72.897681) (xy 149.88099 72.836361) (xy 149.885973 72.76667) + (xy 149.914475 72.722318) (xy 149.930221 72.706573) (xy 150.071109 72.522964) (xy 150.186826 72.322536) + (xy 150.275392 72.108719) (xy 150.335292 71.885171) (xy 150.3655 71.655717) (xy 150.3655 71.424283) + (xy 150.335292 71.194829) (xy 150.275392 70.971281) (xy 150.186826 70.757464) (xy 150.071109 70.557036) + (xy 149.930221 70.373427) (xy 149.930216 70.373421) (xy 149.766578 70.209783) (xy 149.766571 70.209777) + (xy 149.582963 70.06889) (xy 149.382539 69.953175) (xy 149.382529 69.953171) (xy 149.168721 69.864609) + (xy 149.168722 69.864609) (xy 149.168719 69.864608) (xy 149.122037 69.852099) (xy 149.066452 69.820006) + (xy 148.737574 69.491128) (xy 148.796853 69.475245) (xy 148.913147 69.408102) (xy 149.008102 69.313147) + (xy 149.075245 69.196853) (xy 149.091128 69.137574) (xy 149.654417 69.700863) (xy 149.654418 69.700863) + (xy 149.681924 69.663005) (xy 149.77232 69.485594) (xy 149.833852 69.296222) (xy 149.865 69.099563) + (xy 149.865 68.900436) (xy 149.833852 68.703777) (xy 149.77232 68.514405) (xy 149.681924 68.336994) + (xy 149.654417 68.299135) (xy 149.654417 68.299134) (xy 149.091128 68.862424) (xy 149.075245 68.803147) + (xy 149.008102 68.686853) (xy 148.913147 68.591898) (xy 148.796853 68.524755) (xy 148.737574 68.508871) + (xy 149.300864 67.945581) (xy 149.300606 67.942312) (xy 149.263343 67.893988) (xy 149.257364 67.824375) + (xy 149.28997 67.76258) (xy 149.350808 67.728223) (xy 149.378894 67.725) (xy 149.412828 67.725) + (xy 149.412844 67.724999) (xy 149.472372 67.718598) (xy 149.472379 67.718596) (xy 149.607086 67.668354) + (xy 149.607093 67.66835) (xy 149.722187 67.58219) (xy 149.72219 67.582187) (xy 149.80835 67.467093) + (xy 149.808354 67.467086) (xy 149.858596 67.332379) (xy 149.858598 67.332372) (xy 149.864999 67.272844) + (xy 149.865 67.272827) (xy 149.865 66.71) (xy 149.04456 66.71) (xy 149.075245 66.656853) (xy 149.11 66.527143) + (xy 149.11 66.392857) (xy 149.075245 66.263147) (xy 149.04456 66.21) (xy 149.865 66.21) (xy 149.865 65.647172) + (xy 149.864999 65.647155) (xy 149.858598 65.587627) (xy 149.858596 65.58762) (xy 149.808354 65.452913) + (xy 149.80835 65.452906) (xy 149.72219 65.337812) (xy 149.722187 65.337809) (xy 149.607093 65.251649) + (xy 149.607086 65.251645) (xy 149.472379 65.201403) (xy 149.472372 65.201401) (xy 149.412844 65.195) + (xy 148.85 65.195) (xy 148.85 66.015439) (xy 148.796853 65.984755) (xy 148.667143 65.95) (xy 148.532857 65.95) + (xy 148.403147 65.984755) (xy 148.35 66.015439) (xy 148.35 65.195) (xy 147.787155 65.195) (xy 147.727627 65.201401) + (xy 147.72762 65.201403) (xy 147.592913 65.251645) (xy 147.592906 65.251649) (xy 147.477812 65.337809) + (xy 147.477809 65.337812) (xy 147.391649 65.452906) (xy 147.391645 65.452913) (xy 147.341403 65.58762) + (xy 147.341401 65.587627) (xy 147.335 65.647155) (xy 147.335 66.21) (xy 148.15544 66.21) (xy 148.124755 66.263147) + (xy 148.09 66.392857) (xy 148.09 66.527143) (xy 148.124755 66.656853) (xy 148.15544 66.71) (xy 147.335 66.71) + (xy 147.335 67.272844) (xy 147.341401 67.332372) (xy 147.341403 67.332379) (xy 147.391645 67.467086) + (xy 147.391649 67.467093) (xy 147.477809 67.582187) (xy 147.477812 67.58219) (xy 147.592906 67.66835) + (xy 147.592913 67.668354) (xy 147.72762 67.718596) (xy 147.727627 67.718598) (xy 147.787155 67.724999) + (xy 147.787172 67.725) (xy 147.821105 67.725) (xy 147.888144 67.744685) (xy 147.933899 67.797489) + (xy 147.943843 67.866647) (xy 147.914818 67.930203) (xy 147.899219 67.944519) (xy 147.899135 67.945581) + (xy 148.462425 68.508871) (xy 148.403147 68.524755) (xy 148.286853 68.591898) (xy 148.191898 68.686853) + (xy 148.124755 68.803147) (xy 148.108871 68.862425) (xy 147.545581 68.299135) (xy 147.54558 68.299135) + (xy 147.518077 68.33699) (xy 147.427679 68.514405) (xy 147.366147 68.703777) (xy 147.335 68.900436) + (xy 147.335 69.099563) (xy 147.366147 69.296222) (xy 147.427679 69.485594) (xy 147.518077 69.663008) + (xy 147.54558 69.700863) (xy 147.545581 69.700864) (xy 148.108871 69.137574) (xy 148.124755 69.196853) + (xy 148.191898 69.313147) (xy 148.286853 69.408102) (xy 148.403147 69.475245) (xy 148.462425 69.491128) + (xy 148.133546 69.820006) (xy 148.07796 69.852099) (xy 148.031287 69.864605) (xy 147.81747 69.953171) + (xy 147.81746 69.953175) (xy 147.617036 70.06889) (xy 147.433428 70.209777) (xy 147.433421 70.209783) + (xy 147.269783 70.373421) (xy 147.269777 70.373428) (xy 147.12889 70.557036) (xy 147.013175 70.75746) + (xy 147.013168 70.757475) (xy 146.924608 70.97128) (xy 146.864707 71.194832) (xy 146.834501 71.424272) + (xy 146.8345 71.424289) (xy 137.293909 71.424289) (xy 137.273269 62.899941) (xy 137.9095 62.899941) + (xy 137.9095 63.140058) (xy 137.947063 63.377223) (xy 137.947063 63.377226) (xy 137.953035 63.395604) + (xy 137.95503 63.465445) (xy 137.95432 63.468032) (xy 137.920114 63.587579) (xy 137.920113 63.587586) + (xy 137.9095 63.706966) (xy 137.9095 64.873028) (xy 137.9095 64.873033) (xy 137.909501 64.873036) + (xy 137.911571 64.89633) (xy 137.920113 64.992415) (xy 137.976089 65.188045) (xy 137.97609 65.188048) + (xy 137.976091 65.188049) (xy 138.070302 65.368407) (xy 138.070304 65.368409) (xy 138.19889 65.526109) + (xy 138.274328 65.58762) (xy 138.356593 65.654698) (xy 138.536951 65.748909) (xy 138.732582 65.804886) + (xy 138.851963 65.8155) (xy 140.068347 65.815499) (xy 140.135386 65.835184) (xy 140.181141 65.887987) + (xy 140.190819 65.920092) (xy 140.191522 65.924531) (xy 140.191523 65.924534) (xy 140.25478 66.119219) + (xy 140.301035 66.21) (xy 140.347715 66.301613) (xy 140.468028 66.467213) (xy 140.612786 66.611971) + (xy 140.747714 66.71) (xy 140.77839 66.732287) (xy 140.894607 66.791503) (xy 140.960776 66.825218) + (xy 140.960778 66.825218) (xy 140.960781 66.82522) (xy 141.065137 66.859127) (xy 141.155465 66.888477) + (xy 141.256557 66.904488) (xy 141.357648 66.9205) (xy 141.357649 66.9205) (xy 141.562351 66.9205) + (xy 141.562352 66.9205) (xy 141.764534 66.888477) (xy 141.959219 66.82522) (xy 142.14161 66.732287) + (xy 142.245437 66.656853) (xy 142.307213 66.611971) (xy 142.307215 66.611968) (xy 142.307219 66.611966) + (xy 142.451966 66.467219) (xy 142.451968 66.467215) (xy 142.451971 66.467213) (xy 142.541279 66.344289) + (xy 142.572287 66.30161) (xy 142.66522 66.119219) (xy 142.728477 65.924534) (xy 142.7605 65.722352) + (xy 142.7605 65.517648) (xy 142.73716 65.370287) (xy 142.728477 65.315465) (xy 142.668145 65.129783) + (xy 142.66522 65.120781) (xy 142.665218 65.120778) (xy 142.665218 65.120776) (xy 142.631503 65.054607) + (xy 142.572287 64.93839) (xy 142.524906 64.873175) (xy 142.451971 64.772786) (xy 142.307213 64.628028) + (xy 142.141613 64.507715) (xy 142.141612 64.507714) (xy 142.14161 64.507713) (xy 142.084653 64.478691) + (xy 141.959223 64.414781) (xy 141.764534 64.351522) (xy 141.589995 64.323878) (xy 141.562352 64.3195) + (xy 141.562351 64.3195) (xy 141.5345 64.3195) (xy 141.467461 64.299815) (xy 141.421706 64.247011) + (xy 141.4105 64.1955) (xy 141.410499 63.706971) (xy 141.410499 63.706964) (xy 141.399886 63.587582) + (xy 141.365678 63.468031) (xy 141.366161 63.398166) (xy 141.36694 63.395675) (xy 141.372937 63.377222) + (xy 141.4105 63.140059) (xy 141.4105 62.899941) (xy 141.372937 62.662778) (xy 141.298736 62.434411) + (xy 141.298734 62.434408) (xy 141.298734 62.434406) (xy 141.189723 62.220463) (xy 141.120365 62.125) + (xy 141.048586 62.026204) (xy 140.878796 61.856414) (xy 140.69698 61.724317) (xy 140.654316 61.668988) + (xy 140.648337 61.599375) (xy 140.680943 61.53758) (xy 140.741782 61.503222) (xy 140.769867 61.5) + (xy 140.880353 61.5) (xy 140.870612 61.451025) (xy 140.870609 61.451016) (xy 140.793347 61.264486) + (xy 140.79334 61.264473) (xy 140.68117 61.0966) (xy 140.681167 61.096596) (xy 140.538403 60.953832) + (xy 140.538399 60.953829) (xy 140.370526 60.841659) (xy 140.370513 60.841652) (xy 140.183983 60.76439) + (xy 140.183974 60.764387) (xy 139.985958 60.725) (xy 139.91 60.725) (xy 139.91 61.3705) (xy 139.890315 61.437539) + (xy 139.881712 61.444993) (xy 139.804745 61.400556) (xy 139.70937 61.375) (xy 139.61063 61.375) + (xy 139.515255 61.400556) (xy 139.440175 61.443902) (xy 139.421206 61.422011) (xy 139.41 61.3705) + (xy 139.41 60.725) (xy 139.334041 60.725) (xy 139.136025 60.764387) (xy 139.136016 60.76439) (xy 138.949486 60.841652) + (xy 138.949473 60.841659) (xy 138.7816 60.953829) (xy 138.781596 60.953832) (xy 138.638832 61.096596) + (xy 138.638829 61.0966) (xy 138.526659 61.264473) (xy 138.526652 61.264486) (xy 138.44939 61.451016) + (xy 138.449387 61.451025) (xy 138.439647 61.5) (xy 138.550133 61.5) (xy 138.617172 61.519685) (xy 138.662927 61.572489) + (xy 138.672871 61.641647) (xy 138.643846 61.705203) (xy 138.623019 61.724318) (xy 138.441201 61.856416) + (xy 138.271416 62.026201) (xy 138.130276 62.220463) (xy 138.021265 62.434406) (xy 137.947063 62.662777) + (xy 137.9095 62.899941) (xy 137.273269 62.899941) (xy 137.260399 57.584799) (xy 137.279922 57.517713) + (xy 137.332615 57.471831) (xy 137.384399 57.4605) (xy 146.936 57.4605) + ) + ) + ) + (zone + (net 3) + (net_name "VDD33") + (layer "In2.Cu") + (uuid "f8746a87-47d1-437a-b9ce-7b282e884f94") + (hatch edge 0.5) + (priority 4) + (connect_pads + (clearance 1) + ) + (min_thickness 0.25) + (filled_areas_thickness no) + (fill yes + (thermal_gap 0.5) + (thermal_bridge_width 0.5) + ) + (polygon + (pts + (xy 166.66 130.42) (xy 205.66 130.22) (xy 205.26 142.62) (xy 168.46 143.62) + ) + ) + (filled_polygon + (layer "In2.Cu") + (pts + (xy 201.622004 130.260391) (xy 201.668029 130.31296) (xy 201.6795 130.365049) (xy 201.6795 137.755572) + (xy 201.679184 137.764419) (xy 201.664869 137.964557) (xy 201.662351 137.982068) (xy 201.620646 138.173787) + (xy 201.615662 138.190763) (xy 201.54709 138.374609) (xy 201.53974 138.390701) (xy 201.445711 138.562904) + (xy 201.436146 138.577789) (xy 201.318558 138.734867) (xy 201.306972 138.748237) (xy 201.168237 138.886972) + (xy 201.154867 138.898558) (xy 200.997789 139.016146) (xy 200.982904 139.025711) (xy 200.810701 139.11974) + (xy 200.794609 139.12709) (xy 200.610763 139.195662) (xy 200.593787 139.200646) (xy 200.402068 139.242351) + (xy 200.384557 139.244869) (xy 200.203779 139.257799) (xy 200.184417 139.259184) (xy 200.175572 139.2595) + (xy 167.865386 139.2595) (xy 167.486187 136.478711) (xy 197.1495 136.478711) (xy 197.1495 136.721288) + (xy 197.181161 136.961785) (xy 197.243947 137.196104) (xy 197.336773 137.420205) (xy 197.336776 137.420212) + (xy 197.458064 137.630289) (xy 197.458066 137.630292) (xy 197.458067 137.630293) (xy 197.605733 137.822736) + (xy 197.605739 137.822743) (xy 197.777256 137.99426) (xy 197.777262 137.994265) (xy 197.969711 138.141936) + (xy 198.179788 138.263224) (xy 198.4039 138.356054) (xy 198.638211 138.418838) (xy 198.818586 138.442584) + (xy 198.878711 138.4505) (xy 198.878712 138.4505) (xy 199.121289 138.4505) (xy 199.169388 138.444167) + (xy 199.361789 138.418838) (xy 199.5961 138.356054) (xy 199.820212 138.263224) (xy 200.030289 138.141936) + (xy 200.222738 137.994265) (xy 200.394265 137.822738) (xy 200.541936 137.630289) (xy 200.663224 137.420212) + (xy 200.756054 137.1961) (xy 200.818838 136.961789) (xy 200.8505 136.721288) (xy 200.8505 136.478712) + (xy 200.818838 136.238211) (xy 200.756054 136.0039) (xy 200.663224 135.779788) (xy 200.541936 135.569711) + (xy 200.394265 135.377262) (xy 200.39426 135.377256) (xy 200.222743 135.205739) (xy 200.222736 135.205733) + (xy 200.030293 135.058067) (xy 200.030292 135.058066) (xy 200.030289 135.058064) (xy 199.820212 134.936776) + (xy 199.799602 134.928239) (xy 199.596104 134.843947) (xy 199.465028 134.808825) (xy 199.361789 134.781162) + (xy 199.361788 134.781161) (xy 199.361785 134.781161) (xy 199.121289 134.7495) (xy 199.121288 134.7495) + (xy 198.878712 134.7495) (xy 198.878711 134.7495) (xy 198.638214 134.781161) (xy 198.403895 134.843947) + (xy 198.179794 134.936773) (xy 198.179785 134.936777) (xy 198.009496 135.035094) (xy 197.973193 135.056054) + (xy 197.969706 135.058067) (xy 197.777263 135.205733) (xy 197.777256 135.205739) (xy 197.605739 135.377256) + (xy 197.605733 135.377263) (xy 197.458067 135.569706) (xy 197.336777 135.779785) (xy 197.336773 135.779794) + (xy 197.243947 136.003895) (xy 197.181161 136.238214) (xy 197.1495 136.478711) (xy 167.486187 136.478711) + (xy 167.289794 135.038492) (xy 167.334038 135.0455) (xy 167.334039 135.0455) (xy 167.585961 135.0455) + (xy 167.585962 135.0455) (xy 167.834785 135.00609) (xy 168.074379 134.928241) (xy 168.298845 134.81387) + (xy 168.502656 134.665793) (xy 168.680793 134.487656) (xy 168.72731 134.42363) (xy 168.782638 134.380965) + (xy 168.852251 134.374985) (xy 168.883923 134.386032) (xy 169.037742 134.464408) (xy 169.202415 134.517914) + (xy 169.202414 134.517914) (xy 169.209999 134.519115) (xy 169.21 134.519114) (xy 169.21 133.45033) + (xy 169.229745 133.470075) (xy 169.315255 133.519444) (xy 169.41063 133.545) (xy 169.50937 133.545) + (xy 169.604745 133.519444) (xy 169.690255 133.470075) (xy 169.71 133.45033) (xy 169.71 134.519115) + (xy 169.717584 134.517914) (xy 169.882257 134.464408) (xy 170.036076 134.386032) (xy 170.104745 134.373135) + (xy 170.169486 134.399411) (xy 170.192691 134.423632) (xy 170.239203 134.487652) (xy 170.417345 134.665794) + (xy 170.41735 134.665798) (xy 170.595117 134.794952) (xy 170.621155 134.81387) (xy 170.743359 134.876136) + (xy 170.845616 134.928239) (xy 170.845618 134.928239) (xy 170.845621 134.928241) (xy 171.085215 135.00609) + (xy 171.334038 135.0455) (xy 171.334039 135.0455) (xy 171.585961 135.0455) (xy 171.585962 135.0455) + (xy 171.834785 135.00609) (xy 172.074379 134.928241) (xy 172.298845 134.81387) (xy 172.502656 134.665793) + (xy 172.680793 134.487656) (xy 172.82887 134.283845) (xy 172.943241 134.059379) (xy 173.02109 133.819785) + (xy 173.0605 133.570962) (xy 173.0605 132.769038) (xy 173.02109 132.520215) (xy 173.008276 132.480777) + (xy 176.2595 132.480777) (xy 176.2595 133.859208) (xy 176.259501 133.859223) (xy 176.269904 133.991413) + (xy 176.269905 133.99142) (xy 176.324902 134.209678) (xy 176.324903 134.209681) (xy 176.417991 134.414622) + (xy 176.417997 134.414632) (xy 176.546174 134.599645) (xy 176.546178 134.59965) (xy 176.546181 134.599654) + (xy 176.705346 134.758819) (xy 176.70535 134.758822) (xy 176.705354 134.758825) (xy 176.798261 134.823191) + (xy 176.890374 134.887007) (xy 177.095317 134.980096) (xy 177.095321 134.980097) (xy 177.313579 135.035094) + (xy 177.313581 135.035094) (xy 177.313588 135.035096) (xy 177.445783 135.0455) (xy 178.274216 135.045499) + (xy 178.406412 135.035096) (xy 178.624683 134.980096) (xy 178.829626 134.887007) (xy 178.910722 134.830822) + (xy 178.977037 134.808825) (xy 179.037629 134.822264) (xy 179.143359 134.876136) (xy 179.245616 134.928239) + (xy 179.245618 134.928239) (xy 179.245621 134.928241) (xy 179.485215 135.00609) (xy 179.734038 135.0455) + (xy 179.734039 135.0455) (xy 179.985961 135.0455) (xy 179.985962 135.0455) (xy 180.234785 135.00609) + (xy 180.474379 134.928241) (xy 180.698845 134.81387) (xy 180.902656 134.665793) (xy 181.080793 134.487656) + (xy 181.12731 134.42363) (xy 181.182638 134.380965) (xy 181.252251 134.374985) (xy 181.283923 134.386032) + (xy 181.437742 134.464408) (xy 181.602415 134.517914) (xy 181.602414 134.517914) (xy 181.609999 134.519115) + (xy 181.61 134.519114) (xy 181.61 133.45033) (xy 181.629745 133.470075) (xy 181.715255 133.519444) + (xy 181.81063 133.545) (xy 181.90937 133.545) (xy 182.004745 133.519444) (xy 182.090255 133.470075) + (xy 182.11 133.45033) (xy 182.11 134.519115) (xy 182.117584 134.517914) (xy 182.282257 134.464408) + (xy 182.436076 134.386032) (xy 182.504745 134.373135) (xy 182.569486 134.399411) (xy 182.592691 134.423632) + (xy 182.639203 134.487652) (xy 182.817345 134.665794) (xy 182.81735 134.665798) (xy 182.995117 134.794952) + (xy 183.021155 134.81387) (xy 183.143359 134.876136) (xy 183.245616 134.928239) (xy 183.245618 134.928239) + (xy 183.245621 134.928241) (xy 183.485215 135.00609) (xy 183.734038 135.0455) (xy 183.734039 135.0455) + (xy 183.985961 135.0455) (xy 183.985962 135.0455) (xy 184.234785 135.00609) (xy 184.474379 134.928241) + (xy 184.698845 134.81387) (xy 184.902656 134.665793) (xy 185.080793 134.487656) (xy 185.22887 134.283845) + (xy 185.343241 134.059379) (xy 185.42109 133.819785) (xy 185.4605 133.570962) (xy 185.4605 132.769038) + (xy 185.42109 132.520215) (xy 185.361162 132.335777) (xy 188.0995 132.335777) (xy 188.0995 133.964208) + (xy 188.099501 133.964223) (xy 188.109904 134.096413) (xy 188.109905 134.09642) (xy 188.164902 134.314678) + (xy 188.164903 134.314681) (xy 188.257991 134.519622) (xy 188.257997 134.519632) (xy 188.386174 134.704645) + (xy 188.386178 134.70465) (xy 188.386181 134.704654) (xy 188.545346 134.863819) (xy 188.54535 134.863822) + (xy 188.545354 134.863825) (xy 188.650653 134.936776) (xy 188.730374 134.992007) (xy 188.935317 135.085096) + (xy 188.935321 135.085097) (xy 189.153579 135.140094) (xy 189.153581 135.140094) (xy 189.153588 135.140096) + (xy 189.285783 135.1505) (xy 190.614216 135.150499) (xy 190.746412 135.140096) (xy 190.964683 135.085096) + (xy 191.169626 134.992007) (xy 191.186819 134.980096) (xy 191.221481 134.956081) (xy 191.336875 134.876135) + (xy 191.403191 134.854139) (xy 191.469491 134.870677) (xy 191.629784 134.963222) (xy 191.629785 134.963222) + (xy 191.629788 134.963224) (xy 191.8539 135.056054) (xy 192.088211 135.118838) (xy 192.268586 135.142584) + (xy 192.328711 135.1505) (xy 192.328712 135.1505) (xy 192.571289 135.1505) (xy 192.619388 135.144167) + (xy 192.811789 135.118838) (xy 193.0461 135.056054) (xy 193.270212 134.963224) (xy 193.480289 134.841936) + (xy 193.672738 134.694265) (xy 193.844265 134.522738) (xy 193.991936 134.330289) (xy 194.113224 134.120212) + (xy 194.206054 133.8961) (xy 194.268838 133.661789) (xy 194.3005 133.421288) (xy 194.3005 132.878712) + (xy 194.268838 132.638211) (xy 194.206054 132.4039) (xy 194.113224 132.179788) (xy 193.991936 131.969711) + (xy 193.901876 131.852342) (xy 193.844266 131.777263) (xy 193.84426 131.777256) (xy 193.672743 131.605739) + (xy 193.672736 131.605733) (xy 193.480293 131.458067) (xy 193.480292 131.458066) (xy 193.480289 131.458064) + (xy 193.270212 131.336776) (xy 193.263293 131.33391) (xy 193.046104 131.243947) (xy 192.811785 131.181161) + (xy 192.571289 131.1495) (xy 192.571288 131.1495) (xy 192.328712 131.1495) (xy 192.328711 131.1495) + (xy 192.088214 131.181161) (xy 191.853895 131.243947) (xy 191.629794 131.336773) (xy 191.629784 131.336777) + (xy 191.469492 131.429322) (xy 191.401591 131.445795) (xy 191.336876 131.423863) (xy 191.169632 131.307997) + (xy 191.16963 131.307995) (xy 191.169626 131.307993) (xy 191.162825 131.304904) (xy 190.964681 131.214903) + (xy 190.964678 131.214902) (xy 190.74642 131.159905) (xy 190.746413 131.159904) (xy 190.702347 131.156436) + (xy 190.614217 131.1495) (xy 190.614215 131.1495) (xy 189.285791 131.1495) (xy 189.285776 131.149501) + (xy 189.153586 131.159904) (xy 189.153579 131.159905) (xy 188.935321 131.214902) (xy 188.935318 131.214903) + (xy 188.730377 131.307991) (xy 188.730367 131.307997) (xy 188.545354 131.436174) (xy 188.545342 131.436184) + (xy 188.386184 131.595342) (xy 188.386174 131.595354) (xy 188.257997 131.780367) (xy 188.257991 131.780377) + (xy 188.164903 131.985318) (xy 188.164902 131.985321) (xy 188.109905 132.203579) (xy 188.109904 132.203586) + (xy 188.0995 132.335777) (xy 185.361162 132.335777) (xy 185.343241 132.280621) (xy 185.22887 132.056155) + (xy 185.166061 131.969706) (xy 185.080798 131.85235) (xy 185.080794 131.852345) (xy 184.902654 131.674205) + (xy 184.902649 131.674201) (xy 184.698848 131.526132) (xy 184.698847 131.526131) (xy 184.698845 131.52613) + (xy 184.602045 131.476808) (xy 184.474383 131.41176) (xy 184.234785 131.33391) (xy 183.985962 131.2945) + (xy 183.734038 131.2945) (xy 183.648822 131.307997) (xy 183.485214 131.33391) (xy 183.245616 131.41176) + (xy 183.021151 131.526132) (xy 182.81735 131.674201) (xy 182.817345 131.674205) (xy 182.639208 131.852342) + (xy 182.59269 131.916369) (xy 182.537359 131.959034) (xy 182.467746 131.965013) (xy 182.436077 131.953968) + (xy 182.282257 131.875591) (xy 182.117589 131.822087) (xy 182.117581 131.822085) (xy 182.11 131.820884) + (xy 182.11 132.88967) (xy 182.090255 132.869925) (xy 182.004745 132.820556) (xy 181.90937 132.795) + (xy 181.81063 132.795) (xy 181.715255 132.820556) (xy 181.629745 132.869925) (xy 181.61 132.88967) + (xy 181.61 131.820884) (xy 181.609999 131.820884) (xy 181.602418 131.822085) (xy 181.60241 131.822087) + (xy 181.437742 131.875591) (xy 181.283922 131.953968) (xy 181.215253 131.966864) (xy 181.150512 131.940588) + (xy 181.127308 131.916367) (xy 181.080796 131.852347) (xy 180.902654 131.674205) (xy 180.902649 131.674201) + (xy 180.698848 131.526132) (xy 180.698847 131.526131) (xy 180.698845 131.52613) (xy 180.602045 131.476808) + (xy 180.474383 131.41176) (xy 180.234785 131.33391) (xy 179.985962 131.2945) (xy 179.734038 131.2945) + (xy 179.648822 131.307997) (xy 179.485214 131.33391) (xy 179.245616 131.41176) (xy 179.085259 131.493467) + (xy 179.037632 131.517734) (xy 178.968965 131.53063) (xy 178.910723 131.509177) (xy 178.864001 131.476808) + (xy 178.829627 131.452993) (xy 178.624681 131.359903) (xy 178.624678 131.359902) (xy 178.40642 131.304905) + (xy 178.406413 131.304904) (xy 178.362347 131.301436) (xy 178.274217 131.2945) (xy 178.274215 131.2945) + (xy 177.445791 131.2945) (xy 177.445776 131.294501) (xy 177.313586 131.304904) (xy 177.313579 131.304905) + (xy 177.095321 131.359902) (xy 177.095318 131.359903) (xy 176.890377 131.452991) (xy 176.890367 131.452997) + (xy 176.705354 131.581174) (xy 176.705342 131.581184) (xy 176.546184 131.740342) (xy 176.546174 131.740354) + (xy 176.417997 131.925367) (xy 176.417991 131.925377) (xy 176.324903 132.130318) (xy 176.324902 132.130321) + (xy 176.269905 132.348579) (xy 176.269904 132.348586) (xy 176.2595 132.480777) (xy 173.008276 132.480777) + (xy 172.943241 132.280621) (xy 172.82887 132.056155) (xy 172.766061 131.969706) (xy 172.680798 131.85235) + (xy 172.680794 131.852345) (xy 172.502654 131.674205) (xy 172.502649 131.674201) (xy 172.298848 131.526132) + (xy 172.298847 131.526131) (xy 172.298845 131.52613) (xy 172.202045 131.476808) (xy 172.074383 131.41176) + (xy 171.834785 131.33391) (xy 171.585962 131.2945) (xy 171.334038 131.2945) (xy 171.248822 131.307997) + (xy 171.085214 131.33391) (xy 170.845616 131.41176) (xy 170.621151 131.526132) (xy 170.41735 131.674201) + (xy 170.417345 131.674205) (xy 170.239208 131.852342) (xy 170.19269 131.916369) (xy 170.137359 131.959034) + (xy 170.067746 131.965013) (xy 170.036077 131.953968) (xy 169.882257 131.875591) (xy 169.717589 131.822087) + (xy 169.717581 131.822085) (xy 169.71 131.820884) (xy 169.71 132.88967) (xy 169.690255 132.869925) + (xy 169.604745 132.820556) (xy 169.50937 132.795) (xy 169.41063 132.795) (xy 169.315255 132.820556) + (xy 169.229745 132.869925) (xy 169.21 132.88967) (xy 169.21 131.820884) (xy 169.209999 131.820884) + (xy 169.202418 131.822085) (xy 169.20241 131.822087) (xy 169.037742 131.875591) (xy 168.883922 131.953968) + (xy 168.815253 131.966864) (xy 168.750512 131.940588) (xy 168.727308 131.916367) (xy 168.680796 131.852347) + (xy 168.502654 131.674205) (xy 168.502649 131.674201) (xy 168.298848 131.526132) (xy 168.298847 131.526131) + (xy 168.298845 131.52613) (xy 168.202045 131.476808) (xy 168.074383 131.41176) (xy 167.834785 131.33391) + (xy 167.585962 131.2945) (xy 167.334038 131.2945) (xy 167.248822 131.307997) (xy 167.085214 131.33391) + (xy 166.845613 131.411761) (xy 166.798512 131.435759) (xy 166.66 130.42) (xy 201.554866 130.241051) + ) + ) + ) + (group "group-boardStackUp" + (uuid "48dc57b9-27e3-4a68-be0b-fcd4e2478275") + (members "009a23d7-ae08-4bc0-9510-02123581c408" "01ac2c1f-abd8-4559-bba0-89d4016bc5ec" + "085333b1-b4fd-43d9-b07d-3893e7c9f80f" "09a68a35-101b-48ed-90b7-edb107b2b9b9" + "0fb9b365-0dfe-41f4-9c79-c46276ae5c3e" "123a8d3a-e686-42a8-a57b-92649db68ce9" + "12b75cb6-f342-486c-be64-a195bf5fb8f9" "13e80652-0312-4f7d-8a77-48c7ff547079" + "1485917a-1066-41d2-9d0e-879d4ce7927e" "1a08e0e6-53e6-4eed-89d4-1a8cf05b7ef9" + "204c7b23-16f7-400d-b2e5-13baeeb7ebb7" "256145a3-0ad7-41af-94d3-b9cd4fed2926" + "28a4bd0e-6bd7-42d5-a97c-18d1c9697d31" "2a83b24a-b0c6-460a-b8eb-3dc1c37d6f63" + "2bf8b61b-148a-419f-b520-87f3e09f2fdf" "2c4be950-8575-4309-870f-448177508db8" + "2cf29177-f6dd-4992-89fa-9a92e2eb09a0" "2d77e7a5-b22a-4170-b2cd-96e0fa141699" + "2e6d7440-75be-43a2-a417-addbd427c081" "304cd513-577b-4552-a5ef-fa131a5f607d" + "32020c0f-e37d-455a-a5fc-f44a53548fda" "32d3a54e-1328-4f78-b6ba-98a0e7d0f2d4" + "3375b3d7-822c-49f7-be26-75de5a691e09" "36bcb5d9-484f-4698-828d-c4f4648b4485" + "37654cc4-9d9e-49b8-bea5-d8ac6076ae78" "3a3ef275-0f6b-4f7c-94ce-b183826490db" + "3e3fb319-899c-48c9-bc4c-826a8930422c" "3fde7d65-8639-4366-a8d7-6ef977ebbe3b" + "408f51fb-6c74-4582-84ea-942b5bdd11c2" "41edaaab-51cf-499d-af1e-9833d9674290" + "43d55592-06d9-47c1-bc1b-3bf75c2d4f7e" "4439e608-e535-49cb-a0bc-80c6c82c6acf" + "45bec16f-4385-4472-9cb7-3a41f343d352" "4661ca4b-f232-4161-9313-c0b9ae453dc7" + "4780ebfc-4110-4d15-abd8-58f87a21c5b1" "47c06181-3f69-4f63-96ae-f5cf3e6c40a6" + "4f72e358-b009-479b-85eb-b9981f1dc500" "50903b5b-85c0-4501-a83b-823374ff0925" + "533921f7-3260-4bbb-8c61-d934517af77a" "54fc6c4a-8e1b-411d-a8be-5a3a01dfb77e" + "5867eb57-af30-4b3e-8662-f301efc4733f" "5ae2f48c-4bf6-427d-b49b-16403c114577" + "5b00a827-f514-4007-b090-c1eb7c500bf1" "5c2510fc-bc21-43e3-9b31-91fed8d2b6cf" + "5c2f4bb7-8efe-4589-bb4a-65b102d76cd4" "5e5939b6-9102-4702-893d-93f05182dd43" + "65cfec05-3536-4d3d-9387-f98b21d8f66c" "677eeddd-d076-47b5-841d-28fee4d3775d" + "6b26dfca-9948-4823-aec4-6584ee83a9ae" "6c002b70-b2eb-47a9-a35c-456543a3d438" + "6fb0a1e4-e9d0-4bcf-9584-63875f4cbb52" "6fd70013-2a30-4708-91a1-fc485cceb310" + "70839f0d-0635-44aa-a04a-5bd6269ea85b" "70b06379-a968-4dad-b4f3-3f74d3d02fe8" + "748b628d-9254-48af-8452-2a2d9f564a29" "75da59fa-c6e1-412b-895d-5c86bdc0c730" + "7707d748-9981-4937-bd09-3af2b253e7bd" "77e32de8-48e0-4827-9809-f9d3d2c5c452" + "7866b8b7-24f1-443f-912a-c4d37951c2f2" "7a0cb82b-52cf-44dc-8811-d567a990945d" + "84af7fb5-41e5-4e35-8cb1-3950ff29d048" "88177001-3a3f-4d41-be13-e8f848a57866" + "8854e799-aef1-45c9-b908-61c72610a6c9" "88acc656-1b1b-4bd1-85a2-169f827baee5" + "88f78641-f7f8-458d-8985-37951b1c77fe" "898e5c87-95f9-4cb1-a05c-6aba925dd718" + "8b9afba3-a0e9-4eb5-95ed-1540d1f24c8c" "8c5cbe45-355a-4850-83b4-3c1339ed9691" + "9667a164-851f-446b-8608-59f4d5f51c36" "96a0fe57-11b5-460b-8f4a-18a68a481163" + "99b7eae8-29be-4dc2-affc-0b01a449e535" "9aae0be2-9630-44a5-bd6d-f248f4cc9222" + "9aef5ad6-24f5-4b4c-84ab-fec5a0206c89" "9b3f7cfb-0ee5-4a66-8009-b490cd110803" + "9e93d958-f007-47cb-b485-6eebf29e87f4" "9eabf41a-1ce1-45a9-821d-c1fa06f846eb" + "a47c2945-1b33-4929-970a-4fc7b239bce7" "a7c37a65-afdc-42fa-9119-463bdf6de708" + "aa17ac04-358e-4260-b16d-2965c52161aa" "ab0ea630-9d42-468f-938f-fa84040688e5" + "adb5df42-22b7-4f89-a0ca-f5fe26fd830d" "b0bf5226-aa05-474c-996a-77161b80a58e" + "b1c10e42-7a73-49ea-a452-ede90b3c430f" "b1f3f240-ca2b-41ea-b206-18f0a5828010" + "b22198c0-cf0b-4e5e-acad-3bcdd102b0ff" "b289fe5b-cd0d-4958-b5ed-71663a06e6e1" + "b6043349-f418-4b3b-99a5-9116a5762c1d" "b6b1c058-2e19-495b-9971-b0883b7144a5" + "b8876dec-2ddf-4d91-a23b-b2a3f767fd28" "ba138485-5fb7-4cdd-95a7-0013e58888b2" + "bb630b73-56f7-49b5-ac1a-ede409f1c47c" "bb6fe073-e4e6-4d23-a6d5-4f4e62cf8adb" + "bba97ed1-d46f-40c8-8235-c99780b44f9c" "c27bb6c1-aa23-4d6c-8d94-e32b2f983ca7" + "c2893b13-6b69-4b25-b98f-2263b1047cea" "c3abe9a3-5582-46b4-9d92-b9d0136eedbd" + "c8167199-a5fa-4397-a7af-11e95065ba94" "c881e1b1-b5e8-4513-83cc-e1ad89abb42d" + "c91b93b8-154c-42d7-a980-fd5dc0bd24a4" "cecb8b59-7ea0-4049-a130-2d9a86e63697" + "d1152874-defc-4365-aebf-7345295798e1" "d2e31aca-549d-4ace-a4c1-d79ac713a4f5" + "d3c182bc-b5c4-4381-a3d6-9f786e804c3d" "d9797895-b2b8-4ebe-97d1-b54c83c38ebf" + "dbc72154-a486-4345-a283-bf5d3de25514" "deb952a6-23a2-4a71-9238-2bdca8aeebca" + "e19cdbf9-1367-4f4a-ba4e-6427d9520d27" "e59b0680-5b46-4d2f-9a60-77a942f7e1fc" + "e6e613fa-b80a-4cf7-97c8-a211f71aecec" "ecd16730-a9ec-4bd0-94dd-720bc7a4ffde" + "ed605791-c8be-4986-9ae2-50ab615fb922" "f21c19ae-6288-4f32-8cd5-6dae708ccb1e" + "f32371a9-8d51-4161-85ac-c1e858cf337a" "f39d1349-35f4-4350-b407-c6919e293dc3" + "f44e24d8-79a4-4eed-8c61-d9916d9a5d0a" "f4c900df-c53b-4555-8490-c168e061bf3e" + "f59e966a-c6dd-4e2b-88e3-ad18c8e084ed" "f5a1297a-70dc-4886-8d5a-db9fb504b0f0" + "fbfc65da-2c66-427f-9381-c90c0d08cc64" "ff1c5bfb-2f05-4c30-b881-a1cad02e959d" + "ff40ded9-98ed-43d5-ae69-45c9b96f94ef" + ) + ) + (group "group-boardCharacteristics" + (uuid "dfc9f6a3-4adb-48da-a481-ce0e76662614") + (members "0a7119a0-8127-4590-a0c8-b5231a556b8a" "1b71d465-bf8d-4cf3-a89f-23aead2bbadd" + "21c59d6a-bfae-470d-856e-4242a930da70" "2d7a2378-a1a9-4f42-8622-76f85288e8c5" + "351492f9-6281-4792-a3ec-b41709a8a08f" "35b53a2e-5435-402a-8e0e-97e0af74dfe9" + "3d0d0b1f-d595-4533-b85e-65920c6b8c5d" "5d551370-5d1d-4416-8d52-3f7779ac89d2" + "612800a5-e0df-467d-b860-9c0d9684d6a4" "76442408-cac2-472b-8938-d61c04a87f4c" + "7d0c8ce1-05f7-4336-b7f4-7599911f2ec1" "7e15a456-ef9a-4040-870e-eb976f178580" + "82060cc2-ea8c-49ed-b4f6-23a8921921f4" "869ce8e3-50c0-4cee-bc0a-7b9d7924bf26" + "91610a62-9aba-40b5-9e2e-6217b36eb26e" "abaadafe-cac7-45f4-98bb-3e5d3b920c83" + "b10e2ab9-eaee-4b40-ac7f-709a0d68970f" "b16785e5-7116-43e5-9d02-67e6d299f6d8" + "c0d130e7-8983-411d-9ffd-ba346524065e" "d01586d4-4d66-42f9-b230-7d54786f4782" + "f130f6ce-7f50-48e4-9e7e-f42f0bc912ba" "f3fc6b4a-e3b6-43a8-86ce-ccc11cd9ecfe" + "f7cafe70-6486-46df-b79c-2bca0452520a" + ) + ) + (embedded_fonts no) +) diff --git a/KiCad/8Relays/SmartFuseBox.kicad_prl b/KiCad/8Relays/SmartFuseBox.kicad_prl new file mode 100644 index 0000000..d0e0284 --- /dev/null +++ b/KiCad/8Relays/SmartFuseBox.kicad_prl @@ -0,0 +1,137 @@ +{ + "board": { + "active_layer": 5, + "active_layer_preset": "", + "auto_track_width": true, + "hidden_netclasses": [], + "hidden_nets": [], + "high_contrast_mode": 0, + "net_color_mode": 1, + "opacity": { + "images": 0.6, + "pads": 1.0, + "shapes": 1.0, + "tracks": 1.0, + "vias": 1.0, + "zones": 0.6 + }, + "selection_filter": { + "dimensions": true, + "footprints": true, + "graphics": true, + "keepouts": true, + "lockedItems": false, + "otherItems": true, + "pads": true, + "text": true, + "tracks": true, + "vias": true, + "zones": true + }, + "visible_items": [ + "vias", + "footprint_text", + "footprint_anchors", + "ratsnest", + "grid", + "footprints_front", + "footprints_back", + "footprint_values", + "footprint_references", + "tracks", + "drc_errors", + "drawing_sheet", + "bitmaps", + "pads", + "zones", + "drc_warnings", + "drc_exclusions", + "locked_item_shadows", + "conflict_shadows", + "shapes" + ], + "visible_layers": "ffffffff_ffffffff_fffffff7_ffffffaf", + "zone_display_mode": 0 + }, + "git": { + "repo_type": "", + "repo_username": "", + "ssh_key": "" + }, + "meta": { + "filename": "SmartFuseBox.kicad_prl", + "version": 5 + }, + "net_inspector_panel": { + "col_hidden": [ + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "col_order": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11 + ], + "col_widths": [ + 186, + 171, + 112, + 79, + 112, + 112, + 112, + 83, + 112, + 112, + 112, + 112 + ], + "custom_group_rules": [], + "expanded_rows": [], + "filter_by_net_name": true, + "filter_by_netclass": true, + "filter_text": "", + "group_by_constraint": false, + "group_by_netclass": false, + "show_unconnected_nets": false, + "show_zero_pad_nets": false, + "sort_ascending": true, + "sorting_column": 0 + }, + "open_jobsets": [], + "project": { + "files": [] + }, + "schematic": { + "selection_filter": { + "graphics": true, + "images": true, + "labels": true, + "lockedItems": false, + "otherItems": true, + "pins": true, + "symbols": true, + "text": true, + "wires": true + } + } +} diff --git a/KiCad/8Relays/SmartFuseBox.kicad_pro b/KiCad/8Relays/SmartFuseBox.kicad_pro new file mode 100644 index 0000000..3cdb4c1 --- /dev/null +++ b/KiCad/8Relays/SmartFuseBox.kicad_pro @@ -0,0 +1,783 @@ +{ + "board": { + "3dviewports": [], + "design_settings": { + "defaults": { + "apply_defaults_to_fp_fields": false, + "apply_defaults_to_fp_shapes": false, + "apply_defaults_to_fp_text": false, + "board_outline_line_width": 0.05, + "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": false, + "courtyard_line_width": 0.05, + "dimension_precision": 4, + "dimension_units": 3, + "dimensions": { + "arrow_length": 1270000, + "extension_offset": 500000, + "keep_text_aligned": true, + "suppress_zeroes": true, + "text_position": 0, + "units_format": 0 + }, + "fab_line_width": 0.1, + "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.1, + "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.8, + "height": 1.27, + "width": 2.54 + }, + "silk_line_width": 0.1, + "silk_text_italic": false, + "silk_text_size_h": 1.0, + "silk_text_size_v": 1.0, + "silk_text_thickness": 0.1, + "silk_text_upright": false, + "zones": { + "min_clearance": 0.0 + } + }, + "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", + "connection_width": "warning", + "copper_edge_clearance": "error", + "copper_sliver": "warning", + "courtyards_overlap": "error", + "creepage": "error", + "diff_pair_gap_out_of_range": "error", + "diff_pair_uncoupled_length_too_long": "error", + "drill_out_of_range": "error", + "duplicate_footprints": "warning", + "extra_footprint": "warning", + "footprint": "error", + "footprint_filters_mismatch": "ignore", + "footprint_symbol_mismatch": "warning", + "footprint_type_mismatch": "ignore", + "hole_clearance": "error", + "hole_to_hole": "warning", + "holes_co_located": "warning", + "invalid_outline": "error", + "isolated_copper": "warning", + "item_on_disabled_layer": "error", + "items_not_allowed": "error", + "length_out_of_range": "error", + "lib_footprint_issues": "warning", + "lib_footprint_mismatch": "warning", + "malformed_courtyard": "error", + "microvia_drill_out_of_range": "error", + "mirrored_text_on_front_layer": "warning", + "missing_courtyard": "ignore", + "missing_footprint": "warning", + "net_conflict": "warning", + "nonmirrored_text_on_back_layer": "warning", + "npth_inside_courtyard": "ignore", + "padstack": "warning", + "pth_inside_courtyard": "ignore", + "shorting_items": "error", + "silk_edge_clearance": "warning", + "silk_over_copper": "warning", + "silk_overlap": "warning", + "skew_out_of_range": "error", + "solder_mask_bridge": "error", + "starved_thermal": "error", + "text_height": "warning", + "text_on_edge_cuts": "error", + "text_thickness": "warning", + "through_hole_pad_without_hole": "error", + "too_many_vias": "error", + "track_angle": "error", + "track_dangling": "warning", + "track_segment_length": "error", + "track_width": "error", + "tracks_crossing": "error", + "unconnected_items": "error", + "unresolved_variable": "error", + "via_dangling": "warning", + "zones_intersect": "error" + }, + "rules": { + "max_error": 0.005, + "min_clearance": 0.15, + "min_connection": 0.15, + "min_copper_edge_clearance": 0.5, + "min_groove_width": 0.0, + "min_hole_clearance": 0.25, + "min_hole_to_hole": 0.25, + "min_microvia_diameter": 0.2, + "min_microvia_drill": 0.1, + "min_resolved_spokes": 2, + "min_silk_clearance": 0.0, + "min_text_height": 0.8, + "min_text_thickness": 0.08, + "min_through_hole_diameter": 0.3, + "min_track_width": 0.15, + "min_via_annular_width": 0.15, + "min_via_diameter": 0.5, + "solder_mask_to_copper_clearance": 0.0, + "use_height_for_length_calcs": true + }, + "teardrop_options": [ + { + "td_onpthpad": true, + "td_onroundshapesonly": false, + "td_onsmdpad": true, + "td_ontrackend": false, + "td_onvia": true + } + ], + "teardrop_parameters": [ + { + "td_allow_use_two_tracks": true, + "td_curve_segcount": 0, + "td_height_ratio": 1.0, + "td_length_ratio": 0.5, + "td_maxheight": 2.0, + "td_maxlen": 1.0, + "td_on_pad_in_zone": false, + "td_target_name": "td_round_shape", + "td_width_to_size_filter_ratio": 0.9 + }, + { + "td_allow_use_two_tracks": true, + "td_curve_segcount": 0, + "td_height_ratio": 1.0, + "td_length_ratio": 0.5, + "td_maxheight": 2.0, + "td_maxlen": 1.0, + "td_on_pad_in_zone": false, + "td_target_name": "td_rect_shape", + "td_width_to_size_filter_ratio": 0.9 + }, + { + "td_allow_use_two_tracks": true, + "td_curve_segcount": 0, + "td_height_ratio": 1.0, + "td_length_ratio": 0.5, + "td_maxheight": 2.0, + "td_maxlen": 1.0, + "td_on_pad_in_zone": false, + "td_target_name": "td_track_end", + "td_width_to_size_filter_ratio": 0.9 + } + ], + "track_widths": [ + 0.0, + 0.5, + 0.8, + 1.0, + 2.0, + 2.5, + 3.0, + 12.0 + ], + "tuning_pattern_settings": { + "diff_pair_defaults": { + "corner_radius_percentage": 80, + "corner_style": 1, + "max_amplitude": 1.0, + "min_amplitude": 0.2, + "single_sided": false, + "spacing": 1.0 + }, + "diff_pair_skew_defaults": { + "corner_radius_percentage": 80, + "corner_style": 1, + "max_amplitude": 1.0, + "min_amplitude": 0.2, + "single_sided": false, + "spacing": 0.6 + }, + "single_track_defaults": { + "corner_radius_percentage": 80, + "corner_style": 1, + "max_amplitude": 1.0, + "min_amplitude": 0.2, + "single_sided": false, + "spacing": 0.6 + } + }, + "via_dimensions": [ + { + "diameter": 0.0, + "drill": 0.0 + } + ], + "zones_allow_external_fillets": false + }, + "ipc2581": { + "dist": "", + "distpn": "", + "internal_id": "", + "mfg": "", + "mpn": "" + }, + "layer_pairs": [], + "layer_presets": [], + "viewports": [] + }, + "boards": [], + "cvpcb": { + "equivalence_files": [] + }, + "erc": { + "erc_exclusions": [], + "meta": { + "version": 0 + }, + "pin_map": [ + [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 2 + ], + [ + 0, + 2, + 0, + 1, + 0, + 0, + 1, + 0, + 2, + 2, + 2, + 2 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 1, + 0, + 1, + 2 + ], + [ + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 1, + 2, + 1, + 1, + 2 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 2 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 2 + ], + [ + 1, + 1, + 1, + 1, + 1, + 0, + 1, + 1, + 1, + 1, + 1, + 2 + ], + [ + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 2 + ], + [ + 0, + 2, + 1, + 2, + 0, + 0, + 1, + 0, + 2, + 2, + 2, + 2 + ], + [ + 0, + 2, + 0, + 1, + 0, + 0, + 1, + 0, + 2, + 0, + 0, + 2 + ], + [ + 0, + 2, + 1, + 1, + 0, + 0, + 1, + 0, + 2, + 0, + 0, + 2 + ], + [ + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2 + ] + ], + "rule_severities": { + "bus_definition_conflict": "error", + "bus_entry_needed": "error", + "bus_to_bus_conflict": "error", + "bus_to_net_conflict": "error", + "different_unit_footprint": "error", + "different_unit_net": "error", + "duplicate_reference": "error", + "duplicate_sheet_names": "error", + "endpoint_off_grid": "warning", + "extra_units": "error", + "footprint_filter": "ignore", + "footprint_link_issues": "warning", + "four_way_junction": "ignore", + "global_label_dangling": "warning", + "hier_label_mismatch": "error", + "label_dangling": "error", + "label_multiple_wires": "warning", + "lib_symbol_issues": "warning", + "lib_symbol_mismatch": "warning", + "missing_bidi_pin": "warning", + "missing_input_pin": "warning", + "missing_power_pin": "error", + "missing_unit": "warning", + "multiple_net_names": "warning", + "net_not_bus_member": "warning", + "no_connect_connected": "warning", + "no_connect_dangling": "warning", + "pin_not_connected": "error", + "pin_not_driven": "error", + "pin_to_pin": "warning", + "power_pin_not_driven": "error", + "same_local_global_label": "warning", + "similar_label_and_power": "warning", + "similar_labels": "warning", + "similar_power": "warning", + "simulation_model_issue": "ignore", + "single_global_label": "ignore", + "unannotated": "error", + "unconnected_wire_endpoint": "warning", + "undefined_netclass": "error", + "unit_value_mismatch": "error", + "unresolved_variable": "error", + "wire_dangling": "error" + } + }, + "libraries": { + "pinned_footprint_libs": [], + "pinned_symbol_libs": [] + }, + "meta": { + "filename": "SmartFuseBox.kicad_pro", + "version": 3 + }, + "net_settings": { + "classes": [ + { + "bus_width": 12, + "clearance": 0.2, + "diff_pair_gap": 0.25, + "diff_pair_via_gap": 0.25, + "diff_pair_width": 0.2, + "line_style": 0, + "microvia_diameter": 0.3, + "microvia_drill": 0.1, + "name": "Default", + "pcb_color": "rgba(0, 0, 0, 0.000)", + "priority": 2147483647, + "schematic_color": "rgba(0, 0, 0, 0.000)", + "track_width": 0.2, + "via_diameter": 0.6, + "via_drill": 0.3, + "wire_width": 6 + } + ], + "meta": { + "version": 4 + }, + "net_colors": null, + "netclass_assignments": null, + "netclass_patterns": [] + }, + "pcbnew": { + "last_paths": { + "gencad": "", + "idf": "", + "netlist": "", + "plot": "", + "pos_files": "./", + "specctra_dsn": "", + "step": "", + "svg": "", + "vrml": "" + }, + "page_layout_descr_file": "" + }, + "schematic": { + "annotate_start_num": 0, + "bom_export_filename": "${PROJECTNAME}.csv", + "bom_fmt_presets": [], + "bom_fmt_settings": { + "field_delimiter": ",", + "keep_line_breaks": false, + "keep_tabs": false, + "name": "CSV", + "ref_delimiter": ",", + "ref_range_delimiter": "", + "string_delimiter": "\"" + }, + "bom_presets": [], + "bom_settings": { + "exclude_dnp": false, + "fields_ordered": [ + { + "group_by": false, + "label": "Reference", + "name": "Reference", + "show": true + }, + { + "group_by": false, + "label": "Qty", + "name": "${QUANTITY}", + "show": true + }, + { + "group_by": true, + "label": "Value", + "name": "Value", + "show": true + }, + { + "group_by": true, + "label": "DNP", + "name": "${DNP}", + "show": true + }, + { + "group_by": true, + "label": "Exclude from BOM", + "name": "${EXCLUDE_FROM_BOM}", + "show": true + }, + { + "group_by": true, + "label": "Exclude from Board", + "name": "${EXCLUDE_FROM_BOARD}", + "show": true + }, + { + "group_by": true, + "label": "Footprint", + "name": "Footprint", + "show": true + }, + { + "group_by": false, + "label": "Datasheet", + "name": "Datasheet", + "show": true + }, + { + "group_by": false, + "label": "Field5", + "name": "Field5", + "show": false + }, + { + "group_by": false, + "label": "Description", + "name": "Description", + "show": false + }, + { + "group_by": false, + "label": "#", + "name": "${ITEM_NUMBER}", + "show": false + }, + { + "group_by": false, + "label": "MPN", + "name": "MPN", + "show": false + }, + { + "group_by": false, + "label": "Link", + "name": "Link", + "show": true + }, + { + "group_by": false, + "label": "Indicator", + "name": "Indicator", + "show": false + }, + { + "group_by": false, + "label": "Rating", + "name": "Rating", + "show": false + }, + { + "group_by": false, + "label": "Sim.Pins", + "name": "Sim.Pins", + "show": false + }, + { + "group_by": false, + "label": "Sim.Device", + "name": "Sim.Device", + "show": false + }, + { + "group_by": false, + "label": "Sim.Type", + "name": "Sim.Type", + "show": false + }, + { + "group_by": false, + "label": "CREATOR", + "name": "CREATOR", + "show": false + }, + { + "group_by": false, + "label": "PARTREV", + "name": "PARTREV", + "show": false + }, + { + "group_by": false, + "label": "Package", + "name": "Package", + "show": false + }, + { + "group_by": false, + "label": "Price", + "name": "Price", + "show": false + }, + { + "group_by": false, + "label": "MANUFACTURER", + "name": "MANUFACTURER", + "show": false + }, + { + "group_by": false, + "label": "STANDARD", + "name": "STANDARD", + "show": false + }, + { + "group_by": false, + "label": "MF", + "name": "MF", + "show": false + }, + { + "group_by": false, + "label": "MAXIMUM_PACKAGE_HEIGHT", + "name": "MAXIMUM_PACKAGE_HEIGHT", + "show": false + }, + { + "group_by": false, + "label": "MP", + "name": "MP", + "show": false + }, + { + "group_by": false, + "label": "SnapEDA_Link", + "name": "SnapEDA_Link", + "show": false + }, + { + "group_by": false, + "label": "VERIFIER", + "name": "VERIFIER", + "show": false + }, + { + "group_by": false, + "label": "Availability", + "name": "Availability", + "show": false + }, + { + "group_by": false, + "label": "Check_prices", + "name": "Check_prices", + "show": false + }, + { + "group_by": false, + "label": "Description_1", + "name": "Description_1", + "show": false + } + ], + "filter_string": "", + "group_symbols": true, + "include_excluded_from_bom": true, + "name": "", + "sort_asc": true, + "sort_field": "Reference" + }, + "connection_grid_size": 50.0, + "drawing": { + "dashed_lines_dash_length_ratio": 12.0, + "dashed_lines_gap_length_ratio": 3.0, + "default_line_thickness": 6.0, + "default_text_size": 50.0, + "field_names": [], + "intersheets_ref_own_page": false, + "intersheets_ref_prefix": "", + "intersheets_ref_short": false, + "intersheets_ref_show": false, + "intersheets_ref_suffix": "", + "junction_size_choice": 3, + "label_size_ratio": 0.375, + "operating_point_overlay_i_precision": 3, + "operating_point_overlay_i_range": "~A", + "operating_point_overlay_v_precision": 3, + "operating_point_overlay_v_range": "~V", + "overbar_offset_ratio": 1.23, + "pin_symbol_size": 25.0, + "text_offset_ratio": 0.15 + }, + "legacy_lib_dir": "", + "legacy_lib_list": [], + "meta": { + "version": 1 + }, + "net_format_name": "", + "page_layout_descr_file": "", + "plot_directory": "", + "space_save_all_events": true, + "spice_current_sheet_as_root": false, + "spice_external_command": "spice \"%I\"", + "spice_model_current_sheet_as_root": true, + "spice_save_all_currents": false, + "spice_save_all_dissipations": false, + "spice_save_all_voltages": false, + "subpart_first_id": 65, + "subpart_id_separator": 0 + }, + "sheets": [ + [ + "c0735f89-9606-4ac5-a2cd-a138ec47fb2a", + "Root" + ] + ], + "text_variables": {} +} diff --git a/KiCad/8Relays/SmartFuseBox.kicad_sch b/KiCad/8Relays/SmartFuseBox.kicad_sch new file mode 100644 index 0000000..6e9ce8b --- /dev/null +++ b/KiCad/8Relays/SmartFuseBox.kicad_sch @@ -0,0 +1,23188 @@ +(kicad_sch + (version 20250114) + (generator "eeschema") + (generator_version "9.0") + (uuid "c0735f89-9606-4ac5-a2cd-a138ec47fb2a") + (paper "A2") + (title_block + (title "SmartFuseBox") + (date "2026-03-13") + (rev "Rev1.0.0") + (company "Fiverr Client") + ) + (lib_symbols + (symbol "BK-6013:BK-6013" + (pin_names + (offset 1.016) + ) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "XF" + (at -2.54 3.81 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + ) + (property "Value" "BK-6013" + (at -2.54 -5.08 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + ) + (property "Footprint" "BK-6013:FUSE_BK-6013" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (justify bottom) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "MF" "MPD (Memory Protection Devices)" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (justify bottom) + (hide yes) + ) + ) + (property "MAXIMUM_PACKAGE_HEIGHT" "8.9mm" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (justify bottom) + (hide yes) + ) + ) + (property "Package" "Non-Standard MPD" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (justify bottom) + (hide yes) + ) + ) + (property "Price" "None" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (justify bottom) + (hide yes) + ) + ) + (property "Check_prices" "https://www.snapeda.com/parts/BK-6013/MPD/view-part/?ref=eda" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (justify bottom) + (hide yes) + ) + ) + (property "STANDARD" "Manufacturer recommendations" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (justify bottom) + (hide yes) + ) + ) + (property "PARTREV" "02/07/14" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (justify bottom) + (hide yes) + ) + ) + (property "SnapEDA_Link" "https://www.snapeda.com/parts/BK-6013/MPD/view-part/?ref=snap" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (justify bottom) + (hide yes) + ) + ) + (property "MP" "BK-6013" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (justify bottom) + (hide yes) + ) + ) + (property "Description_1" "Fuse Holder 1 Circuit Blade Through Hole" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (justify bottom) + (hide yes) + ) + ) + (property "Availability" "In Stock" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (justify bottom) + (hide yes) + ) + ) + (property "MANUFACTURER" "MPD" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (justify bottom) + (hide yes) + ) + ) + (symbol "BK-6013_0_0" + (polyline + (pts + (xy -5.08 0) (xy -3.81 0) + ) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start -3.81 0) + (mid -1.905 1.8967) + (end 0 0) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 3.81 0) + (mid 1.905 -1.8967) + (end 0 0) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 5.08 0) (xy 3.81 0) + ) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (pin passive line + (at -7.62 0 0) + (length 2.54) + (name "~" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + (number "1" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + ) + (pin passive line + (at -7.62 0 0) + (length 2.54) + (hide yes) + (name "~" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + (number "2" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + ) + (pin passive line + (at 7.62 0 180) + (length 2.54) + (name "~" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + (number "3" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + ) + (pin passive line + (at 7.62 0 180) + (length 2.54) + (hide yes) + (name "~" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + (number "4" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + ) + ) + (embedded_fonts no) + ) + (symbol "Connector:Conn_01x02_Socket" + (pin_names + (offset 1.016) + (hide yes) + ) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "J" + (at 0 2.54 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "Conn_01x02_Socket" + (at 0 -5.08 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Generic connector, single row, 01x02, script generated" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_locked" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "ki_keywords" "connector" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "Connector*:*_1x??_*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "Conn_01x02_Socket_1_1" + (polyline + (pts + (xy -1.27 0) (xy -0.508 0) + ) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -1.27 -2.54) (xy -0.508 -2.54) + ) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 0 -0.508) + (mid -0.5058 0) + (end 0 0.508) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 0 -3.048) + (mid -0.5058 -2.54) + (end 0 -2.032) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (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) + ) + ) + ) + ) + (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) + ) + ) + ) + ) + ) + (embedded_fonts no) + ) + (symbol "Connector:Conn_01x03_Socket" + (pin_names + (offset 1.016) + (hide yes) + ) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "J" + (at 0 5.08 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "Conn_01x03_Socket" + (at 0 -5.08 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Generic connector, single row, 01x03, script generated" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_locked" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "ki_keywords" "connector" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "Connector*:*_1x??_*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "Conn_01x03_Socket_1_1" + (polyline + (pts + (xy -1.27 2.54) (xy -0.508 2.54) + ) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -1.27 0) (xy -0.508 0) + ) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -1.27 -2.54) (xy -0.508 -2.54) + ) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 0 2.032) + (mid -0.5058 2.54) + (end 0 3.048) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 0 -0.508) + (mid -0.5058 0) + (end 0 0.508) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 0 -3.048) + (mid -0.5058 -2.54) + (end 0 -2.032) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (pin passive line + (at -5.08 2.54 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 0 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 -2.54 0) + (length 3.81) + (name "Pin_3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + (embedded_fonts no) + ) + (symbol "Connector:Conn_01x04_Socket" + (pin_names + (offset 1.016) + (hide yes) + ) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "J" + (at 0 5.08 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "Conn_01x04_Socket" + (at 0 -7.62 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Generic connector, single row, 01x04, script generated" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_locked" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "ki_keywords" "connector" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "Connector*:*_1x??_*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "Conn_01x04_Socket_1_1" + (polyline + (pts + (xy -1.27 2.54) (xy -0.508 2.54) + ) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -1.27 0) (xy -0.508 0) + ) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -1.27 -2.54) (xy -0.508 -2.54) + ) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -1.27 -5.08) (xy -0.508 -5.08) + ) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 0 2.032) + (mid -0.5058 2.54) + (end 0 3.048) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 0 -0.508) + (mid -0.5058 0) + (end 0 0.508) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 0 -3.048) + (mid -0.5058 -2.54) + (end 0 -2.032) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 0 -5.588) + (mid -0.5058 -5.08) + (end 0 -4.572) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (pin passive line + (at -5.08 2.54 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 0 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 -2.54 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 -5.08 0) + (length 3.81) + (name "Pin_4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + (embedded_fonts no) + ) + (symbol "Device:Buzzer" + (pin_names + (offset 0.0254) + (hide yes) + ) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "BZ" + (at 3.81 1.27 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "Buzzer" + (at 3.81 -1.27 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "" + (at -0.635 2.54 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at -0.635 2.54 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Buzzer, polarized" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "quartz resonator ceramic" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "*Buzzer*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "Buzzer_0_1" + (polyline + (pts + (xy -1.651 1.905) (xy -1.143 1.905) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -1.397 2.159) (xy -1.397 1.651) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 0 3.175) + (mid 3.1612 0) + (end 0 -3.175) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0 3.175) (xy 0 -3.175) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "Buzzer_1_1" + (pin passive line + (at -2.54 2.54 0) + (length 2.54) + (name "+" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -2.54 -2.54 0) + (length 2.54) + (name "-" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + (embedded_fonts no) + ) + (symbol "Device:C" + (pin_numbers + (hide yes) + ) + (pin_names + (offset 0.254) + ) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "C" + (at 0.635 2.54 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "C" + (at 0.635 -2.54 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "" + (at 0.9652 -3.81 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Unpolarized capacitor" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "cap capacitor" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "C_*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "C_0_1" + (polyline + (pts + (xy -2.032 0.762) (xy 2.032 0.762) + ) + (stroke + (width 0.508) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -2.032 -0.762) (xy 2.032 -0.762) + ) + (stroke + (width 0.508) + (type default) + ) + (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) + ) + ) + ) + ) + ) + (embedded_fonts no) + ) + (symbol "Device:C_Polarized" + (pin_numbers + (hide yes) + ) + (pin_names + (offset 0.254) + ) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "C" + (at 0.635 2.54 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "C_Polarized" + (at 0.635 -2.54 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "" + (at 0.9652 -3.81 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Polarized capacitor" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "cap capacitor" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "CP_*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "C_Polarized_0_1" + (rectangle + (start -2.286 0.508) + (end 2.286 1.016) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -1.778 2.286) (xy -0.762 2.286) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -1.27 2.794) (xy -1.27 1.778) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start 2.286 -0.508) + (end -2.286 -1.016) + (stroke + (width 0) + (type default) + ) + (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) + ) + ) + ) + ) + ) + (embedded_fonts no) + ) + (symbol "Device:L" + (pin_numbers + (hide yes) + ) + (pin_names + (offset 1.016) + (hide yes) + ) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "L" + (at -1.27 0 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "L" + (at 1.905 0 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Inductor" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "inductor choke coil reactor magnetic" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "Choke_* *Coil* Inductor_* L_*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "L_0_1" + (arc + (start 0 2.54) + (mid 0.6323 1.905) + (end 0 1.27) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 0 1.27) + (mid 0.6323 0.635) + (end 0 0) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 0 0) + (mid 0.6323 -0.635) + (end 0 -1.27) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 0 -1.27) + (mid 0.6323 -1.905) + (end 0 -2.54) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "L_1_1" + (pin passive line + (at 0 3.81 270) + (length 1.27) + (name "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 0 -3.81 90) + (length 1.27) + (name "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + (embedded_fonts no) + ) + (symbol "Device:LED" + (pin_numbers + (hide yes) + ) + (pin_names + (offset 1.016) + (hide yes) + ) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "D" + (at 0 2.54 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "LED" + (at 0 -2.54 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Light emitting diode" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Sim.Pins" "1=K 2=A" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "LED diode" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "LED* LED_SMD:* LED_THT:*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "LED_0_1" + (polyline + (pts + (xy -3.048 -0.762) (xy -4.572 -2.286) (xy -3.81 -2.286) (xy -4.572 -2.286) (xy -4.572 -1.524) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -1.778 -0.762) (xy -3.302 -2.286) (xy -2.54 -2.286) (xy -3.302 -2.286) (xy -3.302 -1.524) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -1.27 0) (xy 1.27 0) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -1.27 -1.27) (xy -1.27 1.27) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 1.27 -1.27) (xy 1.27 1.27) (xy -1.27 0) (xy 1.27 -1.27) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "LED_1_1" + (pin passive line + (at -3.81 0 0) + (length 2.54) + (name "K" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 3.81 0 180) + (length 2.54) + (name "A" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + (embedded_fonts no) + ) + (symbol "ESP32-S3-DEVKITC-1-N16R8V:ESP32-S3-DEVKITC-1-N16R8V" + (pin_names + (offset 1.016) + ) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "U" + (at -17.78 35.56 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left top) + ) + ) + (property "Value" "ESP32-S3-DEVKITC-1-N16R8V" + (at -17.78 -35.56 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + ) + (property "Footprint" "ESP32-S3-DEVKITC-1-N16R8V:XCVR_ESP32-S3-DEVKITC-1-N16R8V" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (justify bottom) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "MF" "Espressif Systems" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (justify bottom) + (hide yes) + ) + ) + (property "MAXIMUM_PACKAGE_HEIGHT" "7.39mm" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (justify bottom) + (hide yes) + ) + ) + (property "CREATOR" "RODRIGO" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (justify bottom) + (hide yes) + ) + ) + (property "Price" "None" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (justify bottom) + (hide yes) + ) + ) + (property "Package" "None" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (justify bottom) + (hide yes) + ) + ) + (property "Check_prices" "https://www.snapeda.com/parts/ESP32-S3-DEVKITC-1-N16R8V/Espressif+Systems/view-part/?ref=eda" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (justify bottom) + (hide yes) + ) + ) + (property "STANDARD" "Manufacturer Recommendations" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (justify bottom) + (hide yes) + ) + ) + (property "PARTREV" "1.1" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (justify bottom) + (hide yes) + ) + ) + (property "VERIFIER" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (justify bottom) + (hide yes) + ) + ) + (property "SnapEDA_Link" "https://www.snapeda.com/parts/ESP32-S3-DEVKITC-1-N16R8V/Espressif+Systems/view-part/?ref=snap" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (justify bottom) + (hide yes) + ) + ) + (property "MP" "ESP32-S3-DEVKITC-1-N16R8V" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (justify bottom) + (hide yes) + ) + ) + (property "Description_1" "Development Boards & Kits - Wireless Gen-Purpose Dev Board, embeds ESP32-S3-WROOM-2-N16R8V, 16 MB Octal Flash, 8 MB Octal PSRAM, with Pin Header" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (justify bottom) + (hide yes) + ) + ) + (property "Availability" "Not in stock" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (justify bottom) + (hide yes) + ) + ) + (property "MANUFACTURER" "Espressif Systems" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (justify bottom) + (hide yes) + ) + ) + (symbol "ESP32-S3-DEVKITC-1-N16R8V_0_0" + (rectangle + (start -17.78 -33.02) + (end 17.78 33.02) + (stroke + (width 0.254) + (type default) + ) + (fill + (type background) + ) + ) + (pin input line + (at -22.86 25.4 0) + (length 5.08) + (name "RST" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + (number "J1_3" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + ) + (pin bidirectional line + (at -22.86 20.32 0) + (length 5.08) + (name "GPIO0" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + (number "J3_14" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + ) + (pin bidirectional line + (at -22.86 17.78 0) + (length 5.08) + (name "GPIO1" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + (number "J3_4" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + ) + (pin bidirectional line + (at -22.86 15.24 0) + (length 5.08) + (name "GPIO2" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + (number "J3_5" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + ) + (pin bidirectional line + (at -22.86 12.7 0) + (length 5.08) + (name "GPIO3" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + (number "J1_13" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + ) + (pin bidirectional line + (at -22.86 10.16 0) + (length 5.08) + (name "GPIO4" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + (number "J1_4" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + ) + (pin bidirectional line + (at -22.86 7.62 0) + (length 5.08) + (name "GPIO5" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + (number "J1_5" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + ) + (pin bidirectional line + (at -22.86 5.08 0) + (length 5.08) + (name "GPIO6" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + (number "J1_6" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + ) + (pin bidirectional line + (at -22.86 2.54 0) + (length 5.08) + (name "GPIO7" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + (number "J1_7" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + ) + (pin bidirectional line + (at -22.86 0 0) + (length 5.08) + (name "GPIO8" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + (number "J1_12" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + ) + (pin bidirectional line + (at -22.86 -2.54 0) + (length 5.08) + (name "GPIO9" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + (number "J1_15" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + ) + (pin bidirectional line + (at -22.86 -5.08 0) + (length 5.08) + (name "GPIO10" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + (number "J1_16" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + ) + (pin bidirectional line + (at -22.86 -7.62 0) + (length 5.08) + (name "GPIO11" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + (number "J1_17" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + ) + (pin bidirectional line + (at -22.86 -10.16 0) + (length 5.08) + (name "GPIO12" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + (number "J1_18" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + ) + (pin bidirectional line + (at -22.86 -12.7 0) + (length 5.08) + (name "GPIO13" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + (number "J1_19" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + ) + (pin bidirectional line + (at -22.86 -15.24 0) + (length 5.08) + (name "GPIO14" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + (number "J1_20" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + ) + (pin bidirectional line + (at -22.86 -17.78 0) + (length 5.08) + (name "GPIO15" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + (number "J1_8" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + ) + (pin bidirectional line + (at -22.86 -20.32 0) + (length 5.08) + (name "GPIO16" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + (number "J1_9" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + ) + (pin bidirectional line + (at -22.86 -22.86 0) + (length 5.08) + (name "GPIO17" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + (number "J1_10" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + ) + (pin bidirectional line + (at -22.86 -25.4 0) + (length 5.08) + (name "GPIO18" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + (number "J1_11" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + ) + (pin bidirectional line + (at -22.86 -27.94 0) + (length 5.08) + (name "GPIO21" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + (number "J3_18" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + ) + (pin power_in line + (at 22.86 30.48 180) + (length 5.08) + (name "5V0" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + (number "J1_21" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + ) + (pin power_in line + (at 22.86 27.94 180) + (length 5.08) + (name "3V3" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + (number "J1_1" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + ) + (pin power_in line + (at 22.86 27.94 180) + (length 5.08) + (hide yes) + (name "3V3" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + (number "J1_2" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + ) + (pin bidirectional line + (at 22.86 20.32 180) + (length 5.08) + (name "GPIO35" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + (number "J3_13" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + ) + (pin bidirectional line + (at 22.86 17.78 180) + (length 5.08) + (name "GPIO36" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + (number "J3_12" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + ) + (pin bidirectional line + (at 22.86 15.24 180) + (length 5.08) + (name "GPIO37" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + (number "J3_11" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + ) + (pin bidirectional line + (at 22.86 12.7 180) + (length 5.08) + (name "GPIO38" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + (number "J3_10" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + ) + (pin bidirectional line + (at 22.86 10.16 180) + (length 5.08) + (name "GPIO45" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + (number "J3_15" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + ) + (pin bidirectional line + (at 22.86 7.62 180) + (length 5.08) + (name "GPIO46" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + (number "J1_14" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + ) + (pin bidirectional line + (at 22.86 5.08 180) + (length 5.08) + (name "GPIO47" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + (number "J3_17" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + ) + (pin bidirectional line + (at 22.86 2.54 180) + (length 5.08) + (name "GPIO48" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + (number "J3_16" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + ) + (pin bidirectional line + (at 22.86 -2.54 180) + (length 5.08) + (name "MTCK/GPIO39" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + (number "J3_9" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + ) + (pin bidirectional line + (at 22.86 -5.08 180) + (length 5.08) + (name "MTDO/GPIO40" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + (number "J3_8" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + ) + (pin bidirectional line + (at 22.86 -7.62 180) + (length 5.08) + (name "MTDI/GPIO41" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + (number "J3_7" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + ) + (pin bidirectional line + (at 22.86 -10.16 180) + (length 5.08) + (name "MTMS/GPIO42" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + (number "J3_6" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + ) + (pin bidirectional line + (at 22.86 -15.24 180) + (length 5.08) + (name "U0TXD/GPIO43" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + (number "J3_2" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + ) + (pin bidirectional line + (at 22.86 -17.78 180) + (length 5.08) + (name "U0RXD/GPIO44" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + (number "J3_3" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + ) + (pin bidirectional line + (at 22.86 -22.86 180) + (length 5.08) + (name "USB_D-/GPIO19" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + (number "J3_20" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + ) + (pin bidirectional line + (at 22.86 -25.4 180) + (length 5.08) + (name "USB_D+/GPIO20" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + (number "J3_19" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + ) + (pin power_in line + (at 22.86 -30.48 180) + (length 5.08) + (name "GND" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + (number "J1_22" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + ) + (pin power_in line + (at 22.86 -30.48 180) + (length 5.08) + (hide yes) + (name "GND" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + (number "J3_1" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + ) + (pin power_in line + (at 22.86 -30.48 180) + (length 5.08) + (hide yes) + (name "GND" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + (number "J3_21" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + ) + (pin power_in line + (at 22.86 -30.48 180) + (length 5.08) + (hide yes) + (name "GND" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + (number "J3_22" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + ) + ) + (embedded_fonts no) + ) + (symbol "Interface_CAN_LIN:SN65HVD230" + (pin_names + (offset 1.016) + ) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "U" + (at -2.54 10.16 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + ) + (property "Value" "SN65HVD230" + (at -2.54 7.62 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + ) + (property "Footprint" "Package_SO:SOIC-8_3.9x4.9mm_P1.27mm" + (at 0 -12.7 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "http://www.ti.com/lit/ds/symlink/sn65hvd230.pdf" + (at -2.54 10.16 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "CAN Bus Transceivers, 3.3V, 1Mbps, Low-Power capabilities, SOIC-8" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "can transeiver ti low-power" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "SOIC*3.9x4.9mm*P1.27mm*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "SN65HVD230_0_1" + (rectangle + (start -7.62 5.08) + (end 7.62 -7.62) + (stroke + (width 0.254) + (type default) + ) + (fill + (type background) + ) + ) + ) + (symbol "SN65HVD230_1_1" + (pin input line + (at -10.16 2.54 0) + (length 2.54) + (name "D" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at -10.16 0 0) + (length 2.54) + (name "R" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at -10.16 -2.54 0) + (length 2.54) + (name "Vref" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "5" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at -10.16 -5.08 0) + (length 2.54) + (name "Rs" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "8" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 0 7.62 270) + (length 2.54) + (name "VCC" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in 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 bidirectional line + (at 10.16 0 180) + (length 2.54) + (name "CANH" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "7" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 10.16 -2.54 180) + (length 2.54) + (name "CANL" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "6" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + (embedded_fonts no) + ) + (symbol "Mechanical:MountingHole" + (pin_names + (offset 1.016) + ) + (exclude_from_sim no) + (in_bom no) + (on_board yes) + (property "Reference" "H" + (at 0 5.08 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "MountingHole" + (at 0 3.175 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Mounting Hole without connection" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "mounting hole" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "MountingHole*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "MountingHole_0_1" + (circle + (center 0 0) + (radius 1.27) + (stroke + (width 1.27) + (type default) + ) + (fill + (type none) + ) + ) + ) + (embedded_fonts no) + ) + (symbol "PCM_4ms_Power-symbol:PWR_FLAG" + (power) + (pin_numbers + (hide yes) + ) + (pin_names + (offset 0) + (hide yes) + ) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "#FLG" + (at 0 1.905 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "PWR_FLAG" + (at 0 3.81 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (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) + ) + (fill + (type none) + ) + ) + ) + (embedded_fonts no) + ) + (symbol "PCM_Diode_Schottky_AKL:SS54" + (pin_numbers + (hide yes) + ) + (pin_names + (offset 1.016) + (hide yes) + ) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "D" + (at 0 5.08 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "SS54" + (at 0 2.54 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "PCM_Diode_SMD_AKL:D_SMC" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "https://www.laro.com.pl/pdf/ss56.pdf" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "SMC Schottky diode, 40V, 5A, Alternate KiCAD Library" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "diode Schottky SS54" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "TO-???* *_Diode_* *SingleDiode* D_*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "SS54_0_1" + (polyline + (pts + (xy -1.27 0) (xy 1.27 0) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -1.27 -1.27) (xy -1.27 1.27) (xy 1.27 0) (xy -1.27 -1.27) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type outline) + ) + ) + (polyline + (pts + (xy 1.905 -0.762) (xy 1.905 -1.27) (xy 1.27 -1.27) (xy 1.27 1.27) (xy 0.635 1.27) (xy 0.635 0.762) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "SS54_0_2" + (polyline + (pts + (xy -2.54 -2.54) (xy 2.54 2.54) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -0.889 -0.889) (xy -1.778 0) (xy 0.889 0.889) (xy 0 -1.778) (xy -0.889 -0.889) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type outline) + ) + ) + (polyline + (pts + (xy 0 1.778) (xy 1.778 0) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0 1.778) (xy -0.381 1.397) (xy 0 1.016) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 1.778 0) (xy 2.159 0.381) (xy 1.778 0.762) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "SS54_1_1" + (pin passive line + (at -3.81 0 0) + (length 2.54) + (name "A" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 3.81 0 180) + (length 2.54) + (name "K" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + (symbol "SS54_1_2" + (pin passive line + (at -2.54 -2.54 0) + (length 0) + (name "A" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 2.54 2.54 180) + (length 0) + (name "K" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + (embedded_fonts no) + ) + (symbol "PCM_Elektuur:R" + (pin_numbers + (hide yes) + ) + (pin_names + (offset 0) + (hide yes) + ) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "R" + (at 2.54 3.175 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "R" + (at 0 0 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "resistor" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Indicator" "+" + (at -3.175 3.175 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Rating" "W" + (at 2.54 -3.175 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + (hide yes) + ) + ) + (property "ki_keywords" "R res resistor" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "R_1_1" + (polyline + (pts + (xy -1.524 -3.429) (xy 1.524 -3.429) (xy 1.524 3.429) (xy -1.524 3.429) (xy -1.524 -3.429) (xy -1.27 -3.175) + (xy -1.27 3.175) (xy 1.27 3.175) (xy 1.27 -3.175) (xy -1.27 -3.175) (xy -1.524 -3.429) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type outline) + ) + ) + (pin passive line + (at 0 5.08 270) + (length 1.651) + (name "+" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 0 -5.08 90) + (length 1.651) + (name "-" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + (symbol "R_1_2" + (polyline + (pts + (xy -0.508 -3.429) (xy 1.524 -3.429) (xy 1.524 3.429) (xy -0.508 3.429) (xy -0.508 3.175) (xy 1.27 3.175) + (xy 1.27 -3.175) (xy -0.508 -3.175) (xy -0.508 -3.429) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type outline) + ) + ) + (pin passive line + (at 0 5.08 270) + (length 1.651) + (name "+" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 0 -5.08 90) + (length 1.651) + (name "-" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + (symbol "R_1_3" + (polyline + (pts + (xy 0 3.4798) (xy 0 3.2004) (xy 0.7112 2.794) (xy -1.1938 1.6764) (xy 0.7112 0.5588) (xy -1.1938 -0.5588) + (xy 0.7112 -1.6764) (xy -1.1938 -2.794) (xy 0 -3.4798) (xy 0 -3.2004) (xy -0.7112 -2.794) (xy 1.1938 -1.6764) + (xy -0.7112 -0.5588) (xy 1.1938 0.5588) (xy -0.7112 1.6764) (xy 1.1938 2.794) (xy 0 3.4798) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type outline) + ) + ) + (pin passive line + (at 0 5.08 270) + (length 1.6002) + (name "+" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 0 -5.08 90) + (length 1.6002) + (name "-" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + (symbol "R_1_4" + (polyline + (pts + (xy 0 4.5466) (xy 0 4.2672) (xy 0.0508 4.2418) (xy 1.016 3.683) (xy -1.524 2.2098) (xy 1.016 0.7366) + (xy -1.524 -0.7366) (xy 1.016 -2.2098) (xy -1.524 -3.683) (xy -0.0762 -4.5212) (xy 0 -4.5466) + (xy 0 -4.2672) (xy -0.0508 -4.2418) (xy -1.016 -3.683) (xy 1.524 -2.2098) (xy -1.016 -0.7366) + (xy 1.524 0.7366) (xy -1.016 2.2098) (xy 1.524 3.683) (xy 0.0762 4.5212) (xy 0 4.5466) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type outline) + ) + ) + (pin passive line + (at 0 5.08 270) + (length 0.5334) + (name "+" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 0 -5.08 90) + (length 0.5334) + (name "-" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + (embedded_fonts no) + ) + (symbol "PCM_Transistor_BJT_AKL:2N2222" + (pin_names + (hide yes) + ) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "Q" + (at 5.08 1.27 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "2N2222" + (at 5.08 -1.27 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "PCM_Package_TO_SOT_THT_AKL:TO-18-3_EBC" + (at 5.08 2.54 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "https://www.farnell.com/datasheets/296640.pdf" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "NPN TO-18 transistor, 30V, 0.8A, 500mW, Alternate KiCAD Library" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "transistor NPN 2N2222" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "2N2222_0_1" + (polyline + (pts + (xy 0.635 1.905) (xy 0.635 -1.905) (xy 0.635 -1.905) + ) + (stroke + (width 0.508) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0.635 0.635) (xy 2.54 2.54) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0.635 -0.635) (xy 2.54 -2.54) (xy 2.54 -2.54) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (circle + (center 1.27 0) + (radius 2.8194) + (stroke + (width 0.254) + (type default) + ) + (fill + (type background) + ) + ) + (polyline + (pts + (xy 1.27 -1.778) (xy 1.778 -1.27) (xy 2.286 -2.286) (xy 1.27 -1.778) (xy 1.27 -1.778) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type outline) + ) + ) + ) + (symbol "2N2222_1_1" + (pin passive line + (at -5.08 0 0) + (length 5.715) + (name "B" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 2.54 5.08 270) + (length 2.54) + (name "C" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 2.54 -5.08 90) + (length 2.54) + (name "E" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + (embedded_fonts no) + ) + (symbol "Regulator_Switching:MP2303ADN" + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "U" + (at -7.366 8.636 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "MP2303ADN" + (at 7.62 8.89 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Package_SO:SOIC-8-1EP_3.9x4.9mm_P1.27mm_EP2.62x3.51mm" + (at 0 -2.54 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "https://www.monolithicpower.com/pub/media/document/MP2303A_r1.1.pdf" + (at 0 -2.54 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Synchronous Rectified 3A, 28V, 360kHz Step-Down Converter, SOIC-8" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "buck converter step down" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "SOIC*1EP*3.9x4.9mm*P1.27mm*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "MP2303ADN_0_1" + (rectangle + (start -7.62 7.62) + (end 7.62 -7.62) + (stroke + (width 0.254) + (type default) + ) + (fill + (type background) + ) + ) + ) + (symbol "MP2303ADN_1_1" + (pin input line + (at -10.16 5.08 0) + (length 2.54) + (name "EN" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "7" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at -10.16 0 0) + (length 2.54) + (name "SS" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "8" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -10.16 -5.08 0) + (length 2.54) + (name "COMP" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "6" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 0 10.16 270) + (length 2.54) + (name "IN" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 0 -10.16 90) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 10.16 5.08 180) + (length 2.54) + (name "BS" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 10.16 0 180) + (length 2.54) + (name "SW" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at 10.16 -5.08 180) + (length 2.54) + (name "FB" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "5" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + (embedded_fonts no) + ) + (symbol "Relay:SANYOU_SRD_Form_C" + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "K" + (at 11.43 3.81 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "SANYOU_SRD_Form_C" + (at 11.43 1.27 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Relay_THT:Relay_SPDT_SANYOU_SRD_Series_Form_C" + (at 11.43 -1.27 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + (hide yes) + ) + ) + (property "Datasheet" "http://www.sanyourelay.ca/public/products/pdf/SRD.pdf" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Sanyo SRD relay, Single Pole Miniature Power Relay," + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "Single Pole Relay SPDT" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "Relay*SPDT*SANYOU*SRD*Series*Form*C*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "SANYOU_SRD_Form_C_0_0" + (polyline + (pts + (xy 7.62 5.08) (xy 7.62 2.54) (xy 6.985 3.175) (xy 7.62 3.81) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "SANYOU_SRD_Form_C_0_1" + (rectangle + (start -10.16 5.08) + (end 10.16 -5.08) + (stroke + (width 0.254) + (type default) + ) + (fill + (type background) + ) + ) + (rectangle + (start -8.255 1.905) + (end -1.905 -1.905) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -7.62 -1.905) (xy -2.54 1.905) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -5.08 5.08) (xy -5.08 1.905) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -5.08 -5.08) (xy -5.08 -1.905) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -1.905 0) (xy -1.27 0) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -0.635 0) (xy 0 0) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0.635 0) (xy 1.27 0) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 1.905 0) (xy 2.54 0) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 3.175 0) (xy 3.81 0) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 5.08 -2.54) (xy 3.175 3.81) + ) + (stroke + (width 0.508) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 5.08 -2.54) (xy 5.08 -5.08) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "SANYOU_SRD_Form_C_1_1" + (polyline + (pts + (xy 2.54 3.81) (xy 3.175 3.175) (xy 2.54 2.54) (xy 2.54 5.08) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type outline) + ) + ) + (pin passive line + (at -5.08 7.62 270) + (length 2.54) + (name "~" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "5" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 -7.62 90) + (length 2.54) + (name "~" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 2.54 7.62 270) + (length 2.54) + (name "~" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 5.08 -7.62 90) + (length 2.54) + (name "~" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 7.62 7.62 270) + (length 2.54) + (name "~" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + (embedded_fonts no) + ) + (symbol "Sensor_Temperature:DS18B20" + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "U" + (at -3.81 6.35 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "DS18B20" + (at 6.35 6.35 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Package_TO_SOT_THT:TO-92_Inline" + (at -25.4 -6.35 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "http://datasheets.maximintegrated.com/en/ds/DS18B20.pdf" + (at -3.81 6.35 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Programmable Resolution 1-Wire Digital Thermometer TO-92" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "OneWire 1Wire Dallas Maxim" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "TO*92*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "DS18B20_0_1" + (rectangle + (start -5.08 5.08) + (end 5.08 -5.08) + (stroke + (width 0.254) + (type default) + ) + (fill + (type background) + ) + ) + (polyline + (pts + (xy -3.937 3.175) (xy -3.937 0) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -3.937 3.175) (xy -3.302 3.175) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -3.937 2.54) (xy -3.302 2.54) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -3.937 1.905) (xy -3.302 1.905) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -3.937 1.27) (xy -3.302 1.27) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -3.937 0.635) (xy -3.302 0.635) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start -3.937 3.175) + (mid -3.302 3.8073) + (end -2.667 3.175) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (circle + (center -3.302 -2.54) + (radius 1.27) + (stroke + (width 0.254) + (type default) + ) + (fill + (type outline) + ) + ) + (polyline + (pts + (xy -2.667 3.175) (xy -2.667 0) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -2.667 -1.905) + (end -3.937 0) + (stroke + (width 0.254) + (type default) + ) + (fill + (type outline) + ) + ) + ) + (symbol "DS18B20_1_1" + (pin power_in line + (at 0 7.62 270) + (length 2.54) + (name "V_{DD}" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 0 -7.62 90) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 7.62 0 180) + (length 2.54) + (name "DQ" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + (embedded_fonts no) + ) + (symbol "Simulation_SPICE:NPN" + (pin_numbers + (hide yes) + ) + (pin_names + (offset 0) + ) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "Q" + (at -2.54 7.62 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "NPN" + (at -2.54 5.08 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 63.5 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "https://ngspice.sourceforge.io/docs/ngspice-html-manual/manual.xhtml#cha_BJTs" + (at 63.5 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Bipolar transistor symbol for simulation only, substrate tied to the emitter" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Sim.Device" "NPN" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Sim.Type" "GUMMELPOON" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Sim.Pins" "1=C 2=B 3=E" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "simulation" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "NPN_0_1" + (polyline + (pts + (xy -2.54 0) (xy 0.635 0) + ) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0.635 1.905) (xy 0.635 -1.905) (xy 0.635 -1.905) + ) + (stroke + (width 0.508) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0.635 0.635) (xy 2.54 2.54) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0.635 -0.635) (xy 2.54 -2.54) (xy 2.54 -2.54) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (circle + (center 1.27 0) + (radius 2.8194) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 1.27 -1.778) (xy 1.778 -1.27) (xy 2.286 -2.286) (xy 1.27 -1.778) (xy 1.27 -1.778) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type outline) + ) + ) + (polyline + (pts + (xy 2.794 -1.27) (xy 2.794 -1.27) + ) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 2.794 -1.27) (xy 2.794 -1.27) + ) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "NPN_1_1" + (pin input line + (at -5.08 0 0) + (length 2.54) + (name "B" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin open_collector line + (at 2.54 5.08 270) + (length 2.54) + (name "C" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin open_emitter line + (at 2.54 -5.08 90) + (length 2.54) + (name "E" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + (embedded_fonts no) + ) + (symbol "Transistor_Array:ULN2803A" + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "U" + (at 0 13.335 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "ULN2803A" + (at 0 11.43 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 1.27 -16.51 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + (hide yes) + ) + ) + (property "Datasheet" "http://www.ti.com/lit/ds/symlink/uln2803a.pdf" + (at 2.54 -5.08 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Darlington Transistor Arrays, SOIC18/DIP18" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "Darlington transistor array" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "DIP*W7.62mm* SOIC*7.5x11.6mm*P1.27mm*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "ULN2803A_0_1" + (rectangle + (start -7.62 -15.24) + (end 7.62 10.16) + (stroke + (width 0.254) + (type default) + ) + (fill + (type background) + ) + ) + (polyline + (pts + (xy -4.572 5.08) (xy -3.556 5.08) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -3.556 6.096) (xy -3.556 4.064) (xy -2.032 5.08) (xy -3.556 6.096) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (circle + (center -1.778 5.08) + (radius 0.254) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -1.524 5.08) (xy 4.064 5.08) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (circle + (center -1.27 2.54) + (radius 0.254) + (stroke + (width 0) + (type default) + ) + (fill + (type outline) + ) + ) + (circle + (center -1.27 0) + (radius 0.254) + (stroke + (width 0) + (type default) + ) + (fill + (type outline) + ) + ) + (circle + (center -1.27 -2.286) + (radius 0.254) + (stroke + (width 0) + (type default) + ) + (fill + (type outline) + ) + ) + (circle + (center -0.508 5.08) + (radius 0.254) + (stroke + (width 0) + (type default) + ) + (fill + (type outline) + ) + ) + (polyline + (pts + (xy -0.508 5.08) (xy -0.508 7.62) (xy 2.286 7.62) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0 6.731) (xy -1.016 6.731) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0 5.969) (xy -1.016 5.969) (xy -0.508 6.731) (xy 0 5.969) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "ULN2803A_1_1" + (pin input line + (at -10.16 5.08 0) + (length 2.54) + (name "I1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at -10.16 2.54 0) + (length 2.54) + (name "I2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at -10.16 0 0) + (length 2.54) + (name "I3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at -10.16 -2.54 0) + (length 2.54) + (name "I4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at -10.16 -5.08 0) + (length 2.54) + (name "I5" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "5" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at -10.16 -7.62 0) + (length 2.54) + (name "I6" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "6" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at -10.16 -10.16 0) + (length 2.54) + (name "I7" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "7" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at -10.16 -12.7 0) + (length 2.54) + (name "I8" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "8" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 0 -17.78 90) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "9" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 10.16 7.62 180) + (length 2.54) + (name "COM" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "10" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin open_collector line + (at 10.16 5.08 180) + (length 2.54) + (name "O1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "18" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin open_collector line + (at 10.16 2.54 180) + (length 2.54) + (name "O2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "17" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin open_collector line + (at 10.16 0 180) + (length 2.54) + (name "O3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "16" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin open_collector line + (at 10.16 -2.54 180) + (length 2.54) + (name "O4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "15" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin open_collector line + (at 10.16 -5.08 180) + (length 2.54) + (name "O5" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "14" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin open_collector line + (at 10.16 -7.62 180) + (length 2.54) + (name "O6" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "13" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin open_collector line + (at 10.16 -10.16 180) + (length 2.54) + (name "O7" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "12" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin open_collector line + (at 10.16 -12.7 180) + (length 2.54) + (name "O8" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "11" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + (embedded_fonts no) + ) + (symbol "power:GND" + (power) + (pin_numbers + (hide yes) + ) + (pin_names + (offset 0) + (hide yes) + ) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "#PWR" + (at 0 -6.35 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 0 -3.81 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "global power" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (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) + ) + (fill + (type none) + ) + ) + ) + (symbol "GND_1_1" + (pin power_in line + (at 0 0 270) + (length 0) + (name "~" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + (embedded_fonts no) + ) + ) + (text "Sensor interface connectors providing power\n and signal access for external sensors. \nEach port includes VDD33 (3.3V) and GND power\n rails shared across the board. \nThe top connectors are intended for I²C devices\n using SIG_A1 (SDA) and SIG_A2 (SCL),\n allowing multiple sensors on the same bus. \nThe remaining connectors provide independent\n GPIO signal pairs (SIG_Ax) for digital sensors\n such as DS18B20 (1-Wire), switches, or other sensor outputs. \nThis architecture allows flexible connection of both bus-based\n and single-signal sensors while sharing common power rails." + (exclude_from_sim no) + (at 15.24 321.31 0) + (effects + (font + (size 2 2) + (thickness 0.254) + (bold yes) + ) + (justify left) + ) + (uuid "1886710f-c8e4-44ef-97e2-8ad6f9175c91") + ) + (text "The relay driver stage enables the\n ESP32 controller to switch\nexternal power loads safely by using\ntransistor current amplification and\nrelay contact isolation." + (exclude_from_sim no) + (at 280.67 151.13 0) + (effects + (font + (size 2.5 2.5) + (thickness 0.254) + (bold yes) + ) + (justify left) + ) + (uuid "1f533418-3f10-4b06-9d6b-51545f369691") + ) + (text "GPIO Design Notes\n\n• Selected GPIO pins avoid boot strapping conflicts.\n• Relay outputs grouped for easier PCB routing.\n• Communication pins reserved for CAN interface.\n• High-current loads isolated through driver circuits." + (exclude_from_sim no) + (at 36.83 220.98 0) + (effects + (font + (size 2 2) + (thickness 0.4) + (bold yes) + ) + (justify left) + ) + (uuid "4ba85b28-4f86-49c8-b589-89f76f24c16e") + ) + (text "I2C" + (exclude_from_sim no) + (at 54.61 260.35 0) + (effects + (font + (size 2.5 2.5) + (thickness 0.254) + (bold yes) + ) + (justify left) + ) + (uuid "5fa5659b-5b0e-4a57-b6f4-bb142bfa7360") + ) + (text "CAN INTERFACE NOTES\n\n• Transceiver supply: 3.3V\n• Differential bus lines: CANH / CANL\n• Termination resistor: 120Ω at bus ends((jumper)" + (exclude_from_sim no) + (at 128.27 187.96 0) + (effects + (font + (size 2 2) + (thickness 0.254) + (bold yes) + ) + (justify left) + ) + (uuid "61a6b8e6-f3a4-436b-b8ae-63c292d2eea9") + ) + (text "${TITLE}" + (exclude_from_sim no) + (at 280.67 -17.78 0) + (effects + (font + (face "Arial Black") + (size 7 7) + (thickness 0.254) + (bold yes) + ) + (justify left) + ) + (uuid "7dfe4b5c-8a90-42f5-890d-d536f8b67e80") + ) + (text "One-wire" + (exclude_from_sim no) + (at 24.13 260.35 0) + (effects + (font + (size 2.5 2.5) + (thickness 0.254) + (bold yes) + ) + (justify left) + ) + (uuid "84e203a5-a0b8-4190-a355-7ad1e6c6916e") + ) + (text "12V INPUT" + (exclude_from_sim no) + (at 49.53 40.64 0) + (effects + (font + (size 1.5 1.5) + (thickness 0.3) + (bold yes) + ) + ) + (uuid "94ce1d64-399a-4474-bde1-1c74666b6f5c") + ) + (text "GPIO → transistor driver → buzzer load\n\nTransistor driver used to isolate MCU from load current\nand protect GPIO pins." + (exclude_from_sim no) + (at 165.1 222.25 0) + (effects + (font + (size 2 2) + (thickness 0.254) + (bold yes) + ) + (justify left) + ) + (uuid "b7ab7816-ae6b-45e3-94a3-86d0d350c624") + ) + (text "Digital temperature sensor used for thermal monitoring.\n\nDS18B20 communicates with the ESP32 using the 1-Wire protocol,\nrequiring only one GPIO line and a pull-up resistor.\n\nSelected instead of DHT11/DHT22 due to:\n• higher measurement accuracy\n• wider operating temperature range\n• better noise immunity\n• ability to support multiple sensors on the same bus" + (exclude_from_sim no) + (at 93.98 293.37 0) + (effects + (font + (size 2 2) + (thickness 0.254) + (bold yes) + ) + (justify left) + ) + (uuid "ed8cdf1f-451b-4d8f-b48c-120a556d0028") + ) + (text "POWER STAGE NOTES\n• Input voltage: 12V nominal\n• Output voltage: 5V regulated\n• Maximum load current: ~2-3A\n• Buck switching frequency: ~150kHz" + (exclude_from_sim no) + (at 29.21 88.9 0) + (effects + (font + (size 2 2) + ) + (justify left) + ) + (uuid "f9fe57f3-ac78-42ef-a070-88c1d01866e6") + ) + (text_box "Power Regulation/Converter\n" + (exclude_from_sim no) + (at 27.94 33.02 0) + (size 207.01 68.58) + (margins 0.9525 0.9525 0.9525 0.9525) + (stroke + (width 0) + (type solid) + ) + (fill + (type none) + ) + (effects + (font + (face "Arial Black") + (size 2.3 2.3) + ) + (justify left top) + ) + (uuid "2f4d4321-9068-4c9d-bf87-08a820c49830") + ) + (text_box "MicroController\n" + (exclude_from_sim no) + (at 35.56 106.68 0) + (size 86.36 102.87) + (margins 0.9525 0.9525 0.9525 0.9525) + (stroke + (width 0) + (type solid) + ) + (fill + (type none) + ) + (effects + (font + (size 2.4 2.4) + (thickness 0.48) + (bold yes) + ) + (justify left top) + ) + (uuid "7c916174-4e74-4d01-9cf6-f42c7a1d2df4") + ) + (text_box "CAN TRANSCIEVER" + (exclude_from_sim no) + (at 124.46 106.68 0) + (size 86.36 67.31) + (margins 0.9525 0.9525 0.9525 0.9525) + (stroke + (width 0) + (type solid) + ) + (fill + (type none) + ) + (effects + (font + (size 2.4 2.4) + (thickness 0.48) + (bold yes) + ) + (justify left top) + ) + (uuid "c815505e-6060-447a-bfd2-79a4f084d504") + ) + (junction + (at 219.71 52.07) + (diameter 0) + (color 0 0 0 0) + (uuid "00749fd9-b393-4574-a5e3-bcf8cf7ed96d") + ) + (junction + (at 476.25 237.49) + (diameter 0) + (color 0 0 0 0) + (uuid "03345079-e856-4844-a97a-eb285f506038") + ) + (junction + (at 374.65 24.13) + (diameter 0) + (color 0 0 0 0) + (uuid "0a770ef6-d902-4cc5-afbe-20eee25eab48") + ) + (junction + (at 63.5 111.76) + (diameter 0) + (color 0 0 0 0) + (uuid "0cfcece2-c997-43b9-a073-0e10a186a4d1") + ) + (junction + (at 387.35 241.3) + (diameter 0) + (color 0 0 0 0) + (uuid "21f5f632-ffad-4ef4-b039-61ac4a144c93") + ) + (junction + (at 384.81 143.51) + (diameter 0) + (color 0 0 0 0) + (uuid "2a9c380f-0df7-4982-b3b6-24933bbc4ca6") + ) + (junction + (at 55.88 111.76) + (diameter 0) + (color 0 0 0 0) + (uuid "2f773d93-d210-43ef-9852-cf95241711b2") + ) + (junction + (at 294.64 25.4) + (diameter 0) + (color 0 0 0 0) + (uuid "3cec656f-d1ee-4d0b-9bf1-b275657b23f8") + ) + (junction + (at 387.35 50.8) + (diameter 0) + (color 0 0 0 0) + (uuid "3f98f56a-3957-4742-b17e-6b27c6036407") + ) + (junction + (at 128.27 247.65) + (diameter 0) + (color 0 0 0 0) + (uuid "517bb440-53d9-4473-93a1-26c3a8d66b8a") + ) + (junction + (at 179.07 62.23) + (diameter 0) + (color 0 0 0 0) + (uuid "5e0f05ef-a1f9-4c5c-8737-f7ba8fbd31ee") + ) + (junction + (at 374.65 214.63) + (diameter 0) + (color 0 0 0 0) + (uuid "66034f83-32c4-4993-af72-aa2a19350648") + ) + (junction + (at 160.02 46.99) + (diameter 0) + (color 0 0 0 0) + (uuid "66eb818a-60bf-4211-90e1-cf0e44143614") + ) + (junction + (at 307.34 52.07) + (diameter 0) + (color 0 0 0 0) + (uuid "6c7a6554-0bde-4a07-8e30-5c301d752e9e") + ) + (junction + (at 471.17 142.24) + (diameter 0) + (color 0 0 0 0) + (uuid "6cc6d0b9-87e4-4710-b955-59728f940c25") + ) + (junction + (at 73.66 111.76) + (diameter 0) + (color 0 0 0 0) + (uuid "6cdb7e9e-eff6-46cb-b138-273e122914ff") + ) + (junction + (at 144.78 46.99) + (diameter 0) + (color 0 0 0 0) + (uuid "6d0d42c7-4755-4d51-ae45-cdd4e4b6077b") + ) + (junction + (at 109.22 247.65) + (diameter 0) + (color 0 0 0 0) + (uuid "72365e1d-fa6b-4080-a569-578d27bbcd57") + ) + (junction + (at 104.14 143.51) + (diameter 0) + (color 0 0 0 0) + (uuid "7a1f8250-a50f-43c8-bc75-2d737b2f8111") + ) + (junction + (at 63.5 50.8) + (diameter 0) + (color 0 0 0 0) + (uuid "7ec38f6a-692f-4345-82aa-89ac1d134029") + ) + (junction + (at 140.97 260.35) + (diameter 0) + (color 0 0 0 0) + (uuid "7edddaf4-ae6c-469a-80e1-0d11e9043355") + ) + (junction + (at 175.26 67.31) + (diameter 0) + (color 0 0 0 0) + (uuid "7fe084d9-ce60-42a7-bebc-f26e02c7b503") + ) + (junction + (at 157.48 113.03) + (diameter 0) + (color 0 0 0 0) + (uuid "8949bb0e-bed5-4280-b4e7-cce914ff295f") + ) + (junction + (at 222.25 314.96) + (diameter 0) + (color 0 0 0 0) + (uuid "895115a4-0893-4e8f-910b-e39c98c56a04") + ) + (junction + (at 307.34 240.03) + (diameter 0) + (color 0 0 0 0) + (uuid "90146bf2-fe74-49af-a451-5142b79724bf") + ) + (junction + (at 213.36 234.95) + (diameter 0) + (color 0 0 0 0) + (uuid "b325e9c9-5372-4f47-b0ef-aca5484214fd") + ) + (junction + (at 104.14 140.97) + (diameter 0) + (color 0 0 0 0) + (uuid "b580455c-9432-4967-9592-72c451b8c215") + ) + (junction + (at 224.79 234.95) + (diameter 0) + (color 0 0 0 0) + (uuid "bc42ecff-b236-4b38-b43d-00cd1cb8c8c8") + ) + (junction + (at 458.47 115.57) + (diameter 0) + (color 0 0 0 0) + (uuid "c1e18bd4-5e47-4ce1-b2d3-b3a719126c8b") + ) + (junction + (at 83.82 50.8) + (diameter 0) + (color 0 0 0 0) + (uuid "c2f85326-2ad1-4faf-9739-fd1a138d18a5") + ) + (junction + (at 294.64 213.36) + (diameter 0) + (color 0 0 0 0) + (uuid "cc2335fa-a67d-4bcc-a43f-432d5be252b7") + ) + (junction + (at 372.11 116.84) + (diameter 0) + (color 0 0 0 0) + (uuid "d88dc5bb-add9-48e8-ac1c-98b116a052a5") + ) + (junction + (at 463.55 22.86) + (diameter 0) + (color 0 0 0 0) + (uuid "de899014-8825-4ef5-9d2b-7529f20b1e0f") + ) + (junction + (at 476.25 49.53) + (diameter 0) + (color 0 0 0 0) + (uuid "e718da4f-a291-4d90-a4dd-75bb36b52115") + ) + (junction + (at 222.25 317.5) + (diameter 0) + (color 0 0 0 0) + (uuid "ef623277-c1c2-4701-8195-6559118eb24e") + ) + (junction + (at 140.97 247.65) + (diameter 0) + (color 0 0 0 0) + (uuid "feeb0b44-75a3-4e8a-a78f-c45cd9e875d0") + ) + (junction + (at 463.55 210.82) + (diameter 0) + (color 0 0 0 0) + (uuid "ffbabcbc-6cb9-40d4-b344-cefe5502f583") + ) + (no_connect + (at 101.6 194.31) + (uuid "00008229-8667-4aac-89b8-817b27b04e4b") + ) + (no_connect + (at 55.88 146.05) + (uuid "0d1fa66e-6da7-493a-8ebf-71b5ab6d3660") + ) + (no_connect + (at 146.05 147.32) + (uuid "20fd124d-ca2e-4dc6-a2b4-200ccfe2f65e") + ) + (no_connect + (at 101.6 181.61) + (uuid "474610a0-a353-41dd-ad34-6dedec7e2fa3") + ) + (no_connect + (at 101.6 161.29) + (uuid "53a6774b-87f7-4d0b-96ef-8b3ea35e7d65") + ) + (no_connect + (at 101.6 156.21) + (uuid "5d92ac2c-7627-4088-90fd-4a4c4ddd9638") + ) + (no_connect + (at 101.6 158.75) + (uuid "5f0acdb0-51b9-42be-83c4-3700c2096d53") + ) + (no_connect + (at 101.6 166.37) + (uuid "798fc76b-a38e-462c-a32c-d4a740befad2") + ) + (no_connect + (at 55.88 186.69) + (uuid "79df2bf6-2aae-4923-9e5d-b88a096799c9") + ) + (no_connect + (at 101.6 168.91) + (uuid "7ced541e-dcd4-4704-8c65-9be2c98a28d4") + ) + (no_connect + (at 101.6 153.67) + (uuid "87ea1db3-79d8-49c8-a9a8-e22b93a0585a") + ) + (no_connect + (at 101.6 176.53) + (uuid "a6f61b8e-fc93-4518-9738-3885f8d238d5") + ) + (no_connect + (at 101.6 173.99) + (uuid "a99b91ca-4ce0-411b-9c2d-ddc1c5c63299") + ) + (no_connect + (at 55.88 158.75) + (uuid "c384b8ad-7f41-442b-8d24-e473a70ffc01") + ) + (no_connect + (at 101.6 163.83) + (uuid "dd285502-57ed-4a0d-b5c9-a51cf8827513") + ) + (no_connect + (at 101.6 196.85) + (uuid "eaa72fee-323d-41e8-857d-3fb508a36139") + ) + (no_connect + (at 101.6 151.13) + (uuid "f2379b84-fda9-42fa-8a33-66a895ac3e86") + ) + (no_connect + (at 55.88 151.13) + (uuid "f53d20fb-6c49-47b2-b1aa-cdde5f1fdaf9") + ) + (no_connect + (at 101.6 179.07) + (uuid "f6085b78-6772-4a32-b2fa-13fc3c4e3671") + ) + (wire + (pts + (xy 294.64 213.36) (xy 304.8 213.36) + ) + (stroke + (width 0) + (type default) + ) + (uuid "0168d402-1a0c-4d67-937a-9a3e1de84b71") + ) + (wire + (pts + (xy 45.72 119.38) (xy 45.72 120.65) + ) + (stroke + (width 0) + (type default) + ) + (uuid "03710480-dd0a-4df9-88f0-5b16ac4eae7c") + ) + (wire + (pts + (xy 372.11 255.27) (xy 372.11 260.35) + ) + (stroke + (width 0) + (type default) + ) + (uuid "03bfb4d2-0133-4b1a-9080-f882649ca3dd") + ) + (wire + (pts + (xy 397.51 163.83) (xy 394.97 163.83) + ) + (stroke + (width 0) + (type default) + ) + (uuid "05554a40-019b-4d1b-9a2c-ca636f41b6f6") + ) + (wire + (pts + (xy 36.83 285.75) (xy 34.29 285.75) + ) + (stroke + (width 0) + (type default) + ) + (uuid "065715d8-c50d-40ea-96db-b4ab4b257bff") + ) + (wire + (pts + (xy 224.79 246.38) (xy 224.79 259.08) + ) + (stroke + (width 0) + (type default) + ) + (uuid "0682b9f4-5a2d-4a56-b732-56ea3e4a9adc") + ) + (wire + (pts + (xy 372.11 116.84) (xy 382.27 116.84) + ) + (stroke + (width 0) + (type default) + ) + (uuid "068a5048-af2e-4ded-a83b-36dca5aa8f08") + ) + (wire + (pts + (xy 135.89 260.35) (xy 140.97 260.35) + ) + (stroke + (width 0) + (type default) + ) + (uuid "07ca9f97-c40a-455a-a576-a665e3187f2d") + ) + (wire + (pts + (xy 292.1 240.03) (xy 307.34 240.03) + ) + (stroke + (width 0) + (type default) + ) + (uuid "07d82c7b-b116-4c0e-bb9d-23bce7a02fcb") + ) + (wire + (pts + (xy 49.53 181.61) (xy 55.88 181.61) + ) + (stroke + (width 0) + (type default) + ) + (uuid "08f84275-2227-46c5-831b-0e79c62aa9dc") + ) + (wire + (pts + (xy 392.43 139.7) (xy 392.43 146.05) + ) + (stroke + (width 0) + (type default) + ) + (uuid "0914eff9-2533-4099-a910-f4addea4cbaa") + ) + (wire + (pts + (xy 461.01 237.49) (xy 476.25 237.49) + ) + (stroke + (width 0) + (type default) + ) + (uuid "09fe635f-26a2-4661-8c74-33d3f812e57d") + ) + (wire + (pts + (xy 473.71 31.75) (xy 473.71 30.48) + ) + (stroke + (width 0) + (type default) + ) + (uuid "0bf9764b-8ee5-4107-95ae-459e5325d46f") + ) + (wire + (pts + (xy 83.82 50.8) (xy 74.93 50.8) + ) + (stroke + (width 0) + (type default) + ) + (uuid "0c95b2df-3f1a-492a-86f4-faf4f28aac57") + ) + (wire + (pts + (xy 160.02 85.09) (xy 160.02 72.39) + ) + (stroke + (width 0) + (type default) + ) + (uuid "0d9b15e4-e0de-4380-9187-554861f19341") + ) + (wire + (pts + (xy 83.82 52.07) (xy 83.82 50.8) + ) + (stroke + (width 0) + (type default) + ) + (uuid "0de16bfb-877e-4dcf-aca7-64fcb7557624") + ) + (wire + (pts + (xy 396.24 237.49) (xy 394.97 237.49) + ) + (stroke + (width 0) + (type default) + ) + (uuid "0e3aea8e-80a9-4930-88e0-1c7e248c0041") + ) + (wire + (pts + (xy 50.8 168.91) (xy 55.88 168.91) + ) + (stroke + (width 0) + (type default) + ) + (uuid "0f2328bf-5271-40eb-bfc3-bce4d72d96af") + ) + (wire + (pts + (xy 317.5 72.39) (xy 317.5 69.85) + ) + (stroke + (width 0) + (type default) + ) + (uuid "10a72a88-b660-4bb2-9125-d5a29b4abed9") + ) + (wire + (pts + (xy 109.22 256.54) (xy 109.22 255.27) + ) + (stroke + (width 0) + (type default) + ) + (uuid "1148560f-7a54-42e3-b197-1b6a5fd9be84") + ) + (wire + (pts + (xy 160.02 52.07) (xy 160.02 46.99) + ) + (stroke + (width 0) + (type default) + ) + (uuid "12d94e9a-4398-4611-ac2e-e0e39e41a9eb") + ) + (wire + (pts + (xy 461.01 55.88) (xy 461.01 49.53) + ) + (stroke + (width 0) + (type default) + ) + (uuid "12e38131-3c3f-4413-861b-3059a4072649") + ) + (wire + (pts + (xy 139.7 46.99) (xy 144.78 46.99) + ) + (stroke + (width 0) + (type default) + ) + (uuid "16138ea2-2bfe-43f3-b5d0-860490b503b7") + ) + (wire + (pts + (xy 372.11 64.77) (xy 372.11 69.85) + ) + (stroke + (width 0) + (type default) + ) + (uuid "1735b7f6-3644-438f-b357-155e143517c4") + ) + (wire + (pts + (xy 320.04 107.95) (xy 318.77 107.95) + ) + (stroke + (width 0) + (type default) + ) + (uuid "17d43789-555f-4eb1-88a3-077bd5fa3656") + ) + (wire + (pts + (xy 50.8 166.37) (xy 55.88 166.37) + ) + (stroke + (width 0) + (type default) + ) + (uuid "193e4085-2831-4c83-995e-57d928aa983e") + ) + (wire + (pts + (xy 210.82 327.66) (xy 210.82 326.39) + ) + (stroke + (width 0) + (type default) + ) + (uuid "1a061bf0-c1b6-4470-b7ad-98e55c83214b") + ) + (wire + (pts + (xy 372.11 241.3) (xy 387.35 241.3) + ) + (stroke + (width 0) + (type default) + ) + (uuid "1d029e10-2b69-4108-bf41-7057f614ce10") + ) + (wire + (pts + (xy 488.95 257.81) (xy 486.41 257.81) + ) + (stroke + (width 0) + (type default) + ) + (uuid "1d3cb60b-d221-4186-b1df-bbef1cfd1498") + ) + (wire + (pts + (xy 400.05 243.84) (xy 403.86 243.84) + ) + (stroke + (width 0) + (type default) + ) + (uuid "1dd74662-58c8-4769-82ba-7ab83e23d302") + ) + (wire + (pts + (xy 387.35 241.3) (xy 387.35 243.84) + ) + (stroke + (width 0) + (type default) + ) + (uuid "1e33a641-ade7-493b-a8d4-57ac4a05e099") + ) + (wire + (pts + (xy 222.25 311.15) (xy 234.95 311.15) + ) + (stroke + (width 0) + (type default) + ) + (uuid "20ce89f1-8bd1-4e9d-98d1-7548ff43f2cd") + ) + (wire + (pts + (xy 156.21 157.48) (xy 156.21 154.94) + ) + (stroke + (width 0) + (type default) + ) + (uuid "20dc7fb2-3a1c-4a8a-b4ab-61918da4260d") + ) + (wire + (pts + (xy 63.5 119.38) (xy 63.5 120.65) + ) + (stroke + (width 0) + (type default) + ) + (uuid "2114e21d-4731-4783-aeac-ceb67bab8392") + ) + (wire + (pts + (xy 220.98 52.07) (xy 219.71 52.07) + ) + (stroke + (width 0) + (type default) + ) + (uuid "2708d713-1b97-48e8-9065-2340ce3bcbba") + ) + (wire + (pts + (xy 483.87 233.68) (xy 483.87 240.03) + ) + (stroke + (width 0) + (type default) + ) + (uuid "27f5bbc1-1e5e-4ac6-b366-2d0c6cdac5a4") + ) + (wire + (pts + (xy 365.76 116.84) (xy 372.11 116.84) + ) + (stroke + (width 0) + (type default) + ) + (uuid "2b7ca2cc-d0e3-414a-8c2f-851447db3cbe") + ) + (wire + (pts + (xy 384.81 135.89) (xy 384.81 143.51) + ) + (stroke + (width 0) + (type default) + ) + (uuid "2b8213be-059a-4152-a9da-3dd57a847b72") + ) + (wire + (pts + (xy 104.14 140.97) (xy 101.6 140.97) + ) + (stroke + (width 0) + (type default) + ) + (uuid "2c5af408-6402-4ffc-9127-bad1d7177a7d") + ) + (wire + (pts + (xy 63.5 40.64) (xy 63.5 50.8) + ) + (stroke + (width 0) + (type default) + ) + (uuid "2cbac999-b7af-4685-a74d-137bf3fd66eb") + ) + (wire + (pts + (xy 458.47 115.57) (xy 468.63 115.57) + ) + (stroke + (width 0) + (type default) + ) + (uuid "2e1a752a-bf78-4d83-a777-9a0cc63b08ca") + ) + (wire + (pts + (xy 374.65 33.02) (xy 374.65 31.75) + ) + (stroke + (width 0) + (type default) + ) + (uuid "2e3d1e1c-224f-4b7b-919a-a78d99d00fa4") + ) + (wire + (pts + (xy 186.69 167.64) (xy 185.42 167.64) + ) + (stroke + (width 0) + (type default) + ) + (uuid "2e5c0556-fb07-4b37-900e-8518b7534ac8") + ) + (wire + (pts + (xy 140.97 247.65) (xy 128.27 247.65) + ) + (stroke + (width 0) + (type default) + ) + (uuid "2e917844-5147-496b-b74f-03e70a1a2e50") + ) + (wire + (pts + (xy 394.97 237.49) (xy 394.97 243.84) + ) + (stroke + (width 0) + (type default) + ) + (uuid "2f32d4ce-9d86-41b6-aca3-19a8b3b0d991") + ) + (wire + (pts + (xy 483.87 45.72) (xy 483.87 52.07) + ) + (stroke + (width 0) + (type default) + ) + (uuid "2f8eb466-77f1-4b09-bd98-1ebd0501fbbd") + ) + (wire + (pts + (xy 384.81 223.52) (xy 384.81 222.25) + ) + (stroke + (width 0) + (type default) + ) + (uuid "30379559-cd52-4b31-8dd9-efe15f540442") + ) + (wire + (pts + (xy 307.34 240.03) (xy 307.34 242.57) + ) + (stroke + (width 0) + (type default) + ) + (uuid "306ae9f2-1927-452a-b642-68e3f4d79266") + ) + (wire + (pts + (xy 144.78 57.15) (xy 149.86 57.15) + ) + (stroke + (width 0) + (type default) + ) + (uuid "30c24e23-43c1-4036-94b6-e5b0820a2bda") + ) + (wire + (pts + (xy 317.5 260.35) (xy 317.5 257.81) + ) + (stroke + (width 0) + (type default) + ) + (uuid "31abdb26-a4db-4541-bda0-2013de93842b") + ) + (wire + (pts + (xy 308.61 129.54) (xy 308.61 125.73) + ) + (stroke + (width 0) + (type default) + ) + (uuid "337d128a-9ab1-40cf-93ec-9f055b68c4ca") + ) + (wire + (pts + (xy 374.65 223.52) (xy 374.65 222.25) + ) + (stroke + (width 0) + (type default) + ) + (uuid "33822191-f056-42e8-9343-5f01088661f5") + ) + (wire + (pts + (xy 171.45 57.15) (xy 170.18 57.15) + ) + (stroke + (width 0) + (type default) + ) + (uuid "33b57ecd-c9b6-4df3-962a-4f50c14abe02") + ) + (wire + (pts + (xy 179.07 62.23) (xy 180.34 62.23) + ) + (stroke + (width 0) + (type default) + ) + (uuid "340d381a-c88f-4523-9a3e-c7251eba1ce3") + ) + (wire + (pts + (xy 50.8 161.29) (xy 55.88 161.29) + ) + (stroke + (width 0) + (type default) + ) + (uuid "351b68e7-95d6-4ee3-8cc2-e352439773da") + ) + (wire + (pts + (xy 471.17 134.62) (xy 471.17 142.24) + ) + (stroke + (width 0) + (type default) + ) + (uuid "35800d9a-9d36-45d3-be4d-11401bf075a5") + ) + (wire + (pts + (xy 463.55 22.86) (xy 473.71 22.86) + ) + (stroke + (width 0) + (type default) + ) + (uuid "36aaf708-c2f4-4701-9a6d-5ce43111fa8f") + ) + (wire + (pts + (xy 213.36 234.95) (xy 224.79 234.95) + ) + (stroke + (width 0) + (type default) + ) + (uuid "36ef444a-cd02-4133-9a8c-f67e2060f874") + ) + (wire + (pts + (xy 137.16 149.86) (xy 146.05 149.86) + ) + (stroke + (width 0) + (type default) + ) + (uuid "37839a82-13e7-4028-bfa8-4032e066245f") + ) + (wire + (pts + (xy 200.66 62.23) (xy 187.96 62.23) + ) + (stroke + (width 0) + (type default) + ) + (uuid "38d22b60-3b88-43fd-8228-128a5cd3a42f") + ) + (wire + (pts + (xy 320.04 54.61) (xy 323.85 54.61) + ) + (stroke + (width 0) + (type default) + ) + (uuid "3917f266-85f3-4970-9bee-da124fc0147b") + ) + (wire + (pts + (xy 320.04 72.39) (xy 317.5 72.39) + ) + (stroke + (width 0) + (type default) + ) + (uuid "39a17d16-6728-48b2-90eb-3d76ef6c0db0") + ) + (wire + (pts + (xy 396.24 46.99) (xy 394.97 46.99) + ) + (stroke + (width 0) + (type default) + ) + (uuid "3a244250-72fa-4628-927c-9c5c53a43c83") + ) + (wire + (pts + (xy 49.53 179.07) (xy 55.88 179.07) + ) + (stroke + (width 0) + (type default) + ) + (uuid "3a9320e4-a562-4283-95bb-df193a3eeda9") + ) + (wire + (pts + (xy 448.31 115.57) (xy 458.47 115.57) + ) + (stroke + (width 0) + (type default) + ) + (uuid "3c39bb46-de72-4574-a173-70f53b4f6d18") + ) + (wire + (pts + (xy 372.11 125.73) (xy 372.11 124.46) + ) + (stroke + (width 0) + (type default) + ) + (uuid "3c799cea-dfb5-4974-8a2f-0d6a2d4650fb") + ) + (wire + (pts + (xy 394.97 46.99) (xy 394.97 53.34) + ) + (stroke + (width 0) + (type default) + ) + (uuid "3d63e708-3c42-4fc8-96f1-d3e7a35fadbd") + ) + (wire + (pts + (xy 292.1 66.04) (xy 292.1 71.12) + ) + (stroke + (width 0) + (type default) + ) + (uuid "3da97c0c-3fe0-4196-829c-e1b87cbb3ea8") + ) + (wire + (pts + (xy 372.11 260.35) (xy 387.35 260.35) + ) + (stroke + (width 0) + (type default) + ) + (uuid "3df0ab95-541a-4acd-b097-e129666afa87") + ) + (wire + (pts + (xy 83.82 62.23) (xy 83.82 59.69) + ) + (stroke + (width 0) + (type default) + ) + (uuid "3df70bbc-9738-405d-a26f-bba097115e0f") + ) + (wire + (pts + (xy 292.1 58.42) (xy 292.1 52.07) + ) + (stroke + (width 0) + (type default) + ) + (uuid "3ec75721-5606-4d9b-adc4-c6892d810195") + ) + (wire + (pts + (xy 198.12 321.31) (xy 203.2 321.31) + ) + (stroke + (width 0) + (type default) + ) + (uuid "3fc7dc50-53ca-4b86-a9d9-b3a4d126ed76") + ) + (wire + (pts + (xy 109.22 59.69) (xy 109.22 60.96) + ) + (stroke + (width 0) + (type default) + ) + (uuid "40519f0e-8d76-4458-9ae9-d38aea5777f5") + ) + (wire + (pts + (xy 320.04 105.41) (xy 318.77 105.41) + ) + (stroke + (width 0) + (type default) + ) + (uuid "40e9714f-ec8d-4efe-881b-55c835bd6ca8") + ) + (wire + (pts + (xy 50.8 196.85) (xy 55.88 196.85) + ) + (stroke + (width 0) + (type default) + ) + (uuid "42164fd4-4c56-492d-9608-15c3b2f01f72") + ) + (wire + (pts + (xy 314.96 48.26) (xy 314.96 54.61) + ) + (stroke + (width 0) + (type default) + ) + (uuid "42f0edab-9aa4-41fc-ac01-05636a9d8f9e") + ) + (wire + (pts + (xy 450.85 134.62) (xy 471.17 134.62) + ) + (stroke + (width 0) + (type default) + ) + (uuid "43270df5-0e57-49f2-88e9-630f20485183") + ) + (wire + (pts + (xy 455.93 142.24) (xy 471.17 142.24) + ) + (stroke + (width 0) + (type default) + ) + (uuid "437a4095-1214-4dac-81c2-4d8b5853a923") + ) + (wire + (pts + (xy 55.88 120.65) (xy 55.88 119.38) + ) + (stroke + (width 0) + (type default) + ) + (uuid "43de66d8-8df5-4d68-b9d0-283bab8a76e1") + ) + (wire + (pts + (xy 41.91 236.22) (xy 41.91 240.03) + ) + (stroke + (width 0) + (type default) + ) + (uuid "45e65415-17fa-4197-9ef7-db0dbe4fd4ce") + ) + (wire + (pts + (xy 156.21 133.35) (xy 156.21 137.16) + ) + (stroke + (width 0) + (type default) + ) + (uuid "46d15c4f-02e7-49ea-8340-5afca7239278") + ) + (wire + (pts + (xy 101.6 201.93) (xy 105.41 201.93) + ) + (stroke + (width 0) + (type default) + ) + (uuid "48576e16-3559-4d18-97f1-d930c9c37b70") + ) + (wire + (pts + (xy 481.33 162.56) (xy 481.33 160.02) + ) + (stroke + (width 0) + (type default) + ) + (uuid "48a12787-d080-4ac8-959d-7f9e4fce64fc") + ) + (wire + (pts + (xy 58.42 289.56) (xy 60.96 289.56) + ) + (stroke + (width 0) + (type default) + ) + (uuid "48e93a35-160b-413b-89f7-f24dea0b3a47") + ) + (wire + (pts + (xy 224.79 234.95) (xy 224.79 241.3) + ) + (stroke + (width 0) + (type default) + ) + (uuid "49e788f9-e5e2-48d5-b3bf-f984f46e21ce") + ) + (wire + (pts + (xy 320.04 115.57) (xy 318.77 115.57) + ) + (stroke + (width 0) + (type default) + ) + (uuid "4a2df2d6-d60c-4d8a-b1fd-15b99e0d3921") + ) + (wire + (pts + (xy 384.81 143.51) (xy 384.81 146.05) + ) + (stroke + (width 0) + (type default) + ) + (uuid "4b580c61-b2a8-40b1-8d4a-ad83e90a75d7") + ) + (wire + (pts + (xy 57.15 251.46) (xy 52.07 251.46) + ) + (stroke + (width 0) + (type default) + ) + (uuid "4c424bd8-2385-416e-b828-369bf4233d80") + ) + (wire + (pts + (xy 471.17 142.24) (xy 471.17 144.78) + ) + (stroke + (width 0) + (type default) + ) + (uuid "4cdd9514-12ef-4545-88c7-d42f6f7e08b3") + ) + (wire + (pts + (xy 304.8 222.25) (xy 304.8 220.98) + ) + (stroke + (width 0) + (type default) + ) + (uuid "4e0875aa-ad81-49e4-b557-29c591e0ccce") + ) + (wire + (pts + (xy 457.2 22.86) (xy 463.55 22.86) + ) + (stroke + (width 0) + (type default) + ) + (uuid "4e26abe2-bc07-4b48-9c2c-b170cab9effc") + ) + (wire + (pts + (xy 455.93 231.14) (xy 476.25 231.14) + ) + (stroke + (width 0) + (type default) + ) + (uuid "4e647d49-028f-48bf-a54f-81ac0c0dbc97") + ) + (wire + (pts + (xy 99.06 256.54) (xy 99.06 255.27) + ) + (stroke + (width 0) + (type default) + ) + (uuid "4f22285a-2dff-41ef-880a-547ca9feda3e") + ) + (wire + (pts + (xy 63.5 111.76) (xy 73.66 111.76) + ) + (stroke + (width 0) + (type default) + ) + (uuid "4f29e9f3-72fc-43c5-9b2d-bf5a9e752ed3") + ) + (wire + (pts + (xy 125.73 69.85) (xy 125.73 71.12) + ) + (stroke + (width 0) + (type default) + ) + (uuid "502f53eb-d8f5-4aa9-9e64-7293d124c780") + ) + (wire + (pts + (xy 208.28 52.07) (xy 208.28 54.61) + ) + (stroke + (width 0) + (type default) + ) + (uuid "514d4ec4-4db4-4967-a122-73d7a6803501") + ) + (wire + (pts + (xy 294.64 25.4) (xy 304.8 25.4) + ) + (stroke + (width 0) + (type default) + ) + (uuid "5416f6d2-9582-4d37-a814-662412ec4494") + ) + (wire + (pts + (xy 463.55 219.71) (xy 463.55 218.44) + ) + (stroke + (width 0) + (type default) + ) + (uuid "549018cf-ac61-438d-ab84-8267dceea55a") + ) + (wire + (pts + (xy 368.3 214.63) (xy 374.65 214.63) + ) + (stroke + (width 0) + (type default) + ) + (uuid "5523b208-ef0b-413f-a455-05879a3c2bbe") + ) + (wire + (pts + (xy 170.18 67.31) (xy 175.26 67.31) + ) + (stroke + (width 0) + (type default) + ) + (uuid "567b90ef-35d2-46ca-b5ca-cdd162f559ca") + ) + (wire + (pts + (xy 369.57 149.86) (xy 369.57 143.51) + ) + (stroke + (width 0) + (type default) + ) + (uuid "5762ddc9-85a6-4379-8b89-2b9a38e8fbc6") + ) + (wire + (pts + (xy 62.23 53.34) (xy 62.23 59.69) + ) + (stroke + (width 0) + (type default) + ) + (uuid "579aa075-ae5b-4eb9-8cb7-a40a54d8d010") + ) + (wire + (pts + (xy 139.7 67.31) (xy 149.86 67.31) + ) + (stroke + (width 0) + (type default) + ) + (uuid "585d7985-08e2-4540-a248-ce9f124fc8b6") + ) + (wire + (pts + (xy 292.1 87.63) (xy 313.69 87.63) + ) + (stroke + (width 0) + (type default) + ) + (uuid "596edba1-c0e5-4f8d-9e90-464b8061a0e6") + ) + (wire + (pts + (xy 190.5 67.31) (xy 175.26 67.31) + ) + (stroke + (width 0) + (type default) + ) + (uuid "5a3947e2-8586-4f5e-8c2d-53d02d81dbf6") + ) + (wire + (pts + (xy 185.42 167.64) (xy 185.42 166.37) + ) + (stroke + (width 0) + (type default) + ) + (uuid "5ae77037-8c73-49c5-b391-7d876eaea70f") + ) + (wire + (pts + (xy 288.29 213.36) (xy 294.64 213.36) + ) + (stroke + (width 0) + (type default) + ) + (uuid "5b82924f-41fb-4fb3-89c9-cf68d1856b99") + ) + (wire + (pts + (xy 213.36 264.16) (xy 217.17 264.16) + ) + (stroke + (width 0) + (type default) + ) + (uuid "5d56eeb0-11f0-4b7c-946e-7b88794847f0") + ) + (wire + (pts + (xy 314.96 236.22) (xy 314.96 242.57) + ) + (stroke + (width 0) + (type default) + ) + (uuid "5e2cbddf-246c-4820-8433-de2e43f2de55") + ) + (wire + (pts + (xy 125.73 62.23) (xy 149.86 62.23) + ) + (stroke + (width 0) + (type default) + ) + (uuid "5f8be558-731f-4725-964b-0bd6939eb6aa") + ) + (wire + (pts + (xy 455.93 156.21) (xy 455.93 161.29) + ) + (stroke + (width 0) + (type default) + ) + (uuid "604b5b91-dd07-442f-8919-56f24bdd9278") + ) + (wire + (pts + (xy 36.83 288.29) (xy 34.29 288.29) + ) + (stroke + (width 0) + (type default) + ) + (uuid "606a91b9-1b2c-426c-aafe-c2d5c72f83fb") + ) + (wire + (pts + (xy 109.22 247.65) (xy 128.27 247.65) + ) + (stroke + (width 0) + (type default) + ) + (uuid "61315ed5-82d4-44ed-a61c-1f641a9c74d0") + ) + (wire + (pts + (xy 468.63 124.46) (xy 468.63 123.19) + ) + (stroke + (width 0) + (type default) + ) + (uuid "625cf019-9bc0-4bcb-bb15-b35921223f64") + ) + (wire + (pts + (xy 50.8 194.31) (xy 55.88 194.31) + ) + (stroke + (width 0) + (type default) + ) + (uuid "65d7cef0-3a59-4c90-88b4-323d908f1112") + ) + (wire + (pts + (xy 369.57 162.56) (xy 384.81 162.56) + ) + (stroke + (width 0) + (type default) + ) + (uuid "679e5d26-f489-4e53-9f65-b5b33f64fc30") + ) + (wire + (pts + (xy 304.8 34.29) (xy 304.8 33.02) + ) + (stroke + (width 0) + (type default) + ) + (uuid "68b0162d-c42d-48af-837c-0ab141cc5ebb") + ) + (wire + (pts + (xy 38.1 251.46) (xy 41.91 251.46) + ) + (stroke + (width 0) + (type default) + ) + (uuid "6bafcf76-fe8d-48ba-a403-37bb752682bc") + ) + (wire + (pts + (xy 200.66 264.16) (xy 203.2 264.16) + ) + (stroke + (width 0) + (type default) + ) + (uuid "6c6298d0-405c-42ab-b045-5168aae18196") + ) + (wire + (pts + (xy 219.71 52.07) (xy 219.71 54.61) + ) + (stroke + (width 0) + (type default) + ) + (uuid "6d252dc2-e0d6-40df-9f1b-3167200d1831") + ) + (wire + (pts + (xy 147.32 113.03) (xy 147.32 114.3) + ) + (stroke + (width 0) + (type default) + ) + (uuid "6e9ebba4-3914-4f8f-acc0-61299b163a55") + ) + (wire + (pts + (xy 170.18 62.23) (xy 179.07 62.23) + ) + (stroke + (width 0) + (type default) + ) + (uuid "71d823ac-08f1-4ac8-b430-01f962870863") + ) + (wire + (pts + (xy 476.25 41.91) (xy 476.25 49.53) + ) + (stroke + (width 0) + (type default) + ) + (uuid "743e0a54-a07c-46e9-8f0b-5aa7ac0b4c35") + ) + (wire + (pts + (xy 49.53 173.99) (xy 55.88 173.99) + ) + (stroke + (width 0) + (type default) + ) + (uuid "74cb48a8-d1ad-4b80-b03c-aa358b539877") + ) + (wire + (pts + (xy 483.87 162.56) (xy 481.33 162.56) + ) + (stroke + (width 0) + (type default) + ) + (uuid "752a0762-0a8f-41a0-b8c0-bbd21389d547") + ) + (wire + (pts + (xy 316.23 236.22) (xy 314.96 236.22) + ) + (stroke + (width 0) + (type default) + ) + (uuid "752dfb2b-0c9a-41c4-b700-35063cd8bc58") + ) + (wire + (pts + (xy 372.11 247.65) (xy 372.11 241.3) + ) + (stroke + (width 0) + (type default) + ) + (uuid "75c573cf-f8d5-4298-914f-02981c1cb610") + ) + (wire + (pts + (xy 372.11 57.15) (xy 372.11 50.8) + ) + (stroke + (width 0) + (type default) + ) + (uuid "775b4e97-4939-4552-9700-c2ffa4d7c239") + ) + (wire + (pts + (xy 476.25 67.31) (xy 476.25 68.58) + ) + (stroke + (width 0) + (type default) + ) + (uuid "7898f7dd-ea22-4d15-a688-8ee71ca7f144") + ) + (wire + (pts + (xy 384.81 161.29) (xy 384.81 162.56) + ) + (stroke + (width 0) + (type default) + ) + (uuid "790fb172-bdb0-4b81-936f-349a5909b0e3") + ) + (wire + (pts + (xy 52.07 251.46) (xy 52.07 250.19) + ) + (stroke + (width 0) + (type default) + ) + (uuid "798ae920-0676-4cbc-89a1-efe3d65f518d") + ) + (wire + (pts + (xy 180.34 147.32) (xy 166.37 147.32) + ) + (stroke + (width 0) + (type default) + ) + (uuid "7a270dda-6130-46d7-86f2-a3902d08abe7") + ) + (wire + (pts + (xy 294.64 222.25) (xy 294.64 220.98) + ) + (stroke + (width 0) + (type default) + ) + (uuid "7acae627-5236-4781-b319-2a66dfba43b5") + ) + (wire + (pts + (xy 320.04 118.11) (xy 318.77 118.11) + ) + (stroke + (width 0) + (type default) + ) + (uuid "7aec85da-7705-498f-9f82-97f253c5204e") + ) + (wire + (pts + (xy 222.25 314.96) (xy 222.25 311.15) + ) + (stroke + (width 0) + (type default) + ) + (uuid "7c564d51-c46b-48c8-9360-69f7a6970843") + ) + (wire + (pts + (xy 34.29 290.83) (xy 36.83 290.83) + ) + (stroke + (width 0) + (type default) + ) + (uuid "7d27ad98-5254-4094-83f1-c2698e3aa6f0") + ) + (wire + (pts + (xy 144.78 46.99) (xy 160.02 46.99) + ) + (stroke + (width 0) + (type default) + ) + (uuid "7dcd85e1-b678-40c7-8814-394ac59bb6da") + ) + (wire + (pts + (xy 153.67 133.35) (xy 156.21 133.35) + ) + (stroke + (width 0) + (type default) + ) + (uuid "7ffbdc48-1a2b-4dec-86bc-e2d903fa7e9e") + ) + (wire + (pts + (xy 387.35 50.8) (xy 387.35 53.34) + ) + (stroke + (width 0) + (type default) + ) + (uuid "80d63728-ac71-4fb6-bb72-a85be00865c4") + ) + (wire + (pts + (xy 50.8 189.23) (xy 55.88 189.23) + ) + (stroke + (width 0) + (type default) + ) + (uuid "811821c8-6032-47f1-bd5b-b5cea8725f69") + ) + (wire + (pts + (xy 63.5 50.8) (xy 67.31 50.8) + ) + (stroke + (width 0) + (type default) + ) + (uuid "832ea569-48ed-458b-b6d8-f3cb779d5d1e") + ) + (wire + (pts + (xy 307.34 257.81) (xy 307.34 259.08) + ) + (stroke + (width 0) + (type default) + ) + (uuid "83a437e3-1489-452d-a6b2-cc0256cde5e4") + ) + (wire + (pts + (xy 394.97 163.83) (xy 394.97 161.29) + ) + (stroke + (width 0) + (type default) + ) + (uuid "843500b5-79ff-45a3-89a2-33d20eb95229") + ) + (wire + (pts + (xy 58.42 274.32) (xy 60.96 274.32) + ) + (stroke + (width 0) + (type default) + ) + (uuid "844eb43c-789f-4a3c-bbbc-a18550fc8ec3") + ) + (wire + (pts + (xy 292.1 52.07) (xy 307.34 52.07) + ) + (stroke + (width 0) + (type default) + ) + (uuid "84ea96e0-c2ce-4341-9c02-df027ce1e9bd") + ) + (wire + (pts + (xy 104.14 143.51) (xy 101.6 143.51) + ) + (stroke + (width 0) + (type default) + ) + (uuid "8591e1d3-62cb-498f-88d6-811519c0c348") + ) + (wire + (pts + (xy 455.93 148.59) (xy 455.93 142.24) + ) + (stroke + (width 0) + (type default) + ) + (uuid "859a5e37-84aa-47b6-bd6d-77662be26d4e") + ) + (wire + (pts + (xy 106.68 48.26) (xy 109.22 48.26) + ) + (stroke + (width 0) + (type default) + ) + (uuid "86c9089f-db2c-486b-8bea-a490f0cbab7c") + ) + (wire + (pts + (xy 476.25 231.14) (xy 476.25 237.49) + ) + (stroke + (width 0) + (type default) + ) + (uuid "88605585-0f58-4f7e-99be-5531ae7b07a3") + ) + (wire + (pts + (xy 50.8 163.83) (xy 55.88 163.83) + ) + (stroke + (width 0) + (type default) + ) + (uuid "88a39579-eb5f-4edc-9003-382b53db5209") + ) + (wire + (pts + (xy 58.42 50.8) (xy 63.5 50.8) + ) + (stroke + (width 0) + (type default) + ) + (uuid "89be375a-dd5f-49c0-b9f6-cb2e8b7148ef") + ) + (wire + (pts + (xy 106.68 186.69) (xy 101.6 186.69) + ) + (stroke + (width 0) + (type default) + ) + (uuid "8a15b95d-419e-486d-8ff3-ce0cb7427907") + ) + (wire + (pts + (xy 374.65 214.63) (xy 384.81 214.63) + ) + (stroke + (width 0) + (type default) + ) + (uuid "8b4b3205-db7b-4545-a297-73b69767e15f") + ) + (wire + (pts + (xy 400.05 261.62) (xy 397.51 261.62) + ) + (stroke + (width 0) + (type default) + ) + (uuid "8c0c65e3-a9b6-4534-b1cf-a23f9bc4fc83") + ) + (wire + (pts + (xy 397.51 146.05) (xy 401.32 146.05) + ) + (stroke + (width 0) + (type default) + ) + (uuid "8c1b10aa-b696-4cee-9d88-8ebc5b06ad57") + ) + (wire + (pts + (xy 107.95 140.97) (xy 104.14 140.97) + ) + (stroke + (width 0) + (type default) + ) + (uuid "8cc93ae3-48d6-4036-8a60-e2f9afc15521") + ) + (wire + (pts + (xy 157.48 113.03) (xy 147.32 113.03) + ) + (stroke + (width 0) + (type default) + ) + (uuid "8dcf7ced-ccaa-447a-8a7d-26c22d16c111") + ) + (wire + (pts + (xy 369.57 44.45) (xy 387.35 44.45) + ) + (stroke + (width 0) + (type default) + ) + (uuid "8eb242e7-42b8-47b0-abcf-7132ad5bb79d") + ) + (wire + (pts + (xy 382.27 125.73) (xy 382.27 124.46) + ) + (stroke + (width 0) + (type default) + ) + (uuid "8f2e6b84-3920-4379-b4e7-cc35eb27d089") + ) + (wire + (pts + (xy 41.91 251.46) (xy 41.91 250.19) + ) + (stroke + (width 0) + (type default) + ) + (uuid "8f601f8b-01a2-4ef8-bcc4-cb9ccfd56292") + ) + (wire + (pts + (xy 476.25 237.49) (xy 476.25 240.03) + ) + (stroke + (width 0) + (type default) + ) + (uuid "8f7adb4a-ebda-41f8-bb84-02d7c33a219c") + ) + (wire + (pts + (xy 485.14 45.72) (xy 483.87 45.72) + ) + (stroke + (width 0) + (type default) + ) + (uuid "903c9291-5c46-45c9-9b38-5386e02c0409") + ) + (wire + (pts + (xy 393.7 139.7) (xy 392.43 139.7) + ) + (stroke + (width 0) + (type default) + ) + (uuid "9064186a-421a-4d38-808d-bfe7088fdae0") + ) + (wire + (pts + (xy 320.04 120.65) (xy 318.77 120.65) + ) + (stroke + (width 0) + (type default) + ) + (uuid "92d21cc9-1ebe-452e-9dfd-c26809420811") + ) + (wire + (pts + (xy 146.05 247.65) (xy 140.97 247.65) + ) + (stroke + (width 0) + (type default) + ) + (uuid "94d3d297-d2e0-4e94-abe2-530716c16deb") + ) + (wire + (pts + (xy 463.55 31.75) (xy 463.55 30.48) + ) + (stroke + (width 0) + (type default) + ) + (uuid "96dee5e8-4d5f-4bdc-9a49-7af5e6237c6e") + ) + (wire + (pts + (xy 226.06 233.68) (xy 224.79 233.68) + ) + (stroke + (width 0) + (type default) + ) + (uuid "99c39273-212c-4f46-b395-1f22c8c238ee") + ) + (wire + (pts + (xy 307.34 232.41) (xy 307.34 240.03) + ) + (stroke + (width 0) + (type default) + ) + (uuid "9a0f0fcf-ea25-4129-a4f3-9b50f34edac5") + ) + (wire + (pts + (xy 58.42 284.48) (xy 60.96 284.48) + ) + (stroke + (width 0) + (type default) + ) + (uuid "9a1422b6-7fda-4309-a1ee-e8c12529c154") + ) + (wire + (pts + (xy 476.25 255.27) (xy 476.25 256.54) + ) + (stroke + (width 0) + (type default) + ) + (uuid "9a43a73c-3df4-4ab4-b60e-0980f454ee31") + ) + (wire + (pts + (xy 292.1 259.08) (xy 307.34 259.08) + ) + (stroke + (width 0) + (type default) + ) + (uuid "9c26e938-7830-4930-9791-4b7f5de0056e") + ) + (wire + (pts + (xy 43.18 53.34) (xy 62.23 53.34) + ) + (stroke + (width 0) + (type default) + ) + (uuid "9c6ff4fd-8633-4c0d-b3a0-c0b972c8a6bc") + ) + (wire + (pts + (xy 358.14 236.22) (xy 387.35 236.22) + ) + (stroke + (width 0) + (type default) + ) + (uuid "9ccc5706-39b1-47f6-88df-a416fb7df33a") + ) + (wire + (pts + (xy 45.72 111.76) (xy 55.88 111.76) + ) + (stroke + (width 0) + (type default) + ) + (uuid "9d745fd0-3272-4e8e-abb1-85b3c9bf760d") + ) + (wire + (pts + (xy 200.66 67.31) (xy 200.66 62.23) + ) + (stroke + (width 0) + (type default) + ) + (uuid "a021a6ea-95d5-405d-9fc7-463055fa3ebd") + ) + (wire + (pts + (xy 52.07 236.22) (xy 41.91 236.22) + ) + (stroke + (width 0) + (type default) + ) + (uuid "a026c114-cb68-482d-b787-3ec6e9721748") + ) + (wire + (pts + (xy 224.79 273.05) (xy 224.79 269.24) + ) + (stroke + (width 0) + (type default) + ) + (uuid "a08d3c5d-9f4b-4767-8cdf-1e92e42a8a0e") + ) + (wire + (pts + (xy 219.71 52.07) (xy 208.28 52.07) + ) + (stroke + (width 0) + (type default) + ) + (uuid "a17ebe41-1927-4be1-b518-59b3d0b22445") + ) + (wire + (pts + (xy 473.71 219.71) (xy 473.71 218.44) + ) + (stroke + (width 0) + (type default) + ) + (uuid "a206f60c-8a1b-42d0-8321-de74dec6d7a4") + ) + (wire + (pts + (xy 64.77 40.64) (xy 63.5 40.64) + ) + (stroke + (width 0) + (type default) + ) + (uuid "a3676717-c5a0-48e1-b14c-101cec074889") + ) + (wire + (pts + (xy 128.27 247.65) (xy 128.27 252.73) + ) + (stroke + (width 0) + (type default) + ) + (uuid "a3d3cc41-f42a-4322-bc43-081492cf1628") + ) + (wire + (pts + (xy 307.34 45.72) (xy 307.34 52.07) + ) + (stroke + (width 0) + (type default) + ) + (uuid "a44f7fea-6b85-4757-9393-917d601f62b7") + ) + (wire + (pts + (xy 307.34 69.85) (xy 307.34 71.12) + ) + (stroke + (width 0) + (type default) + ) + (uuid "a55839bd-e521-4b12-a984-ce226d97b191") + ) + (wire + (pts + (xy 161.29 113.03) (xy 157.48 113.03) + ) + (stroke + (width 0) + (type default) + ) + (uuid "a55d2980-4b02-4f3c-8d07-7c832680fc0b") + ) + (wire + (pts + (xy 488.95 52.07) (xy 492.76 52.07) + ) + (stroke + (width 0) + (type default) + ) + (uuid "a6d478e3-45ae-40f2-96a1-b8395cde2c62") + ) + (wire + (pts + (xy 307.34 52.07) (xy 307.34 54.61) + ) + (stroke + (width 0) + (type default) + ) + (uuid "a7a51645-8a4b-476b-b6ad-530cc24275d5") + ) + (wire + (pts + (xy 461.01 251.46) (xy 461.01 256.54) + ) + (stroke + (width 0) + (type default) + ) + (uuid "a85ade22-76af-4f7a-809b-9474f66eebd3") + ) + (wire + (pts + (xy 320.04 242.57) (xy 323.85 242.57) + ) + (stroke + (width 0) + (type default) + ) + (uuid "a9034ef3-51f0-4117-9b0a-c91bf62832b9") + ) + (wire + (pts + (xy 140.97 247.65) (xy 140.97 250.19) + ) + (stroke + (width 0) + (type default) + ) + (uuid "a91f1952-60f4-442f-862b-254c45ee1f29") + ) + (wire + (pts + (xy 372.11 50.8) (xy 387.35 50.8) + ) + (stroke + (width 0) + (type default) + ) + (uuid "a99f27e2-2e20-441d-a30e-0d0a8410bc16") + ) + (wire + (pts + (xy 387.35 259.08) (xy 387.35 260.35) + ) + (stroke + (width 0) + (type default) + ) + (uuid "a9e06ed1-da56-4b9c-a857-b63b01775a9c") + ) + (wire + (pts + (xy 109.22 48.26) (xy 109.22 52.07) + ) + (stroke + (width 0) + (type default) + ) + (uuid "aa3460ad-52b7-4d7e-90ba-afcc12466bb8") + ) + (wire + (pts + (xy 316.23 48.26) (xy 314.96 48.26) + ) + (stroke + (width 0) + (type default) + ) + (uuid "aa9a57ef-da9d-4bb3-890a-7c59ff87b5bc") + ) + (wire + (pts + (xy 222.25 317.5) (xy 222.25 321.31) + ) + (stroke + (width 0) + (type default) + ) + (uuid "ab05b761-75d2-4093-b0a2-d9586e117caa") + ) + (wire + (pts + (xy 369.57 157.48) (xy 369.57 162.56) + ) + (stroke + (width 0) + (type default) + ) + (uuid "ab1a9189-632c-4a08-8f55-9a17beee41cf") + ) + (wire + (pts + (xy 288.29 25.4) (xy 294.64 25.4) + ) + (stroke + (width 0) + (type default) + ) + (uuid "aba49d5a-255b-4d98-9954-b4e0b3e84e61") + ) + (wire + (pts + (xy 387.35 44.45) (xy 387.35 50.8) + ) + (stroke + (width 0) + (type default) + ) + (uuid "adcc8df0-1f11-4d75-96de-01f0a6ef282a") + ) + (wire + (pts + (xy 397.51 71.12) (xy 397.51 68.58) + ) + (stroke + (width 0) + (type default) + ) + (uuid "aeadf4fc-afce-4b4e-b6ce-3783129a2b64") + ) + (wire + (pts + (xy 374.65 24.13) (xy 384.81 24.13) + ) + (stroke + (width 0) + (type default) + ) + (uuid "aecdd769-e880-4a97-9a6e-21d4214e8a1a") + ) + (wire + (pts + (xy 73.66 111.76) (xy 77.47 111.76) + ) + (stroke + (width 0) + (type default) + ) + (uuid "af466ba9-da61-4f8e-9ddb-35171f221378") + ) + (wire + (pts + (xy 461.01 243.84) (xy 461.01 237.49) + ) + (stroke + (width 0) + (type default) + ) + (uuid "b2484e19-b9d5-4196-b1e6-80749707bd76") + ) + (wire + (pts + (xy 320.04 110.49) (xy 318.77 110.49) + ) + (stroke + (width 0) + (type default) + ) + (uuid "b267e93b-427b-4e5e-a334-3287dbc21664") + ) + (wire + (pts + (xy 365.76 135.89) (xy 384.81 135.89) + ) + (stroke + (width 0) + (type default) + ) + (uuid "b29aab0e-4f56-4227-80cb-95e0cc1cc64e") + ) + (wire + (pts + (xy 234.95 311.15) (xy 234.95 313.69) + ) + (stroke + (width 0) + (type default) + ) + (uuid "b2fe3474-9896-4638-ac48-5d21fc651edf") + ) + (wire + (pts + (xy 292.1 71.12) (xy 307.34 71.12) + ) + (stroke + (width 0) + (type default) + ) + (uuid "b45b39cc-26b5-4b3d-a0fe-360a5f744858") + ) + (wire + (pts + (xy 147.32 123.19) (xy 147.32 121.92) + ) + (stroke + (width 0) + (type default) + ) + (uuid "b46f6548-1772-4506-b61a-2217bf6c88cb") + ) + (wire + (pts + (xy 58.42 269.24) (xy 60.96 269.24) + ) + (stroke + (width 0) + (type default) + ) + (uuid "b4ae520c-c647-4f18-9f49-bddec2ebb1bb") + ) + (wire + (pts + (xy 320.04 102.87) (xy 318.77 102.87) + ) + (stroke + (width 0) + (type default) + ) + (uuid "b5fdc3fa-a70e-4004-a811-30b3112b646a") + ) + (wire + (pts + (xy 179.07 57.15) (xy 179.07 62.23) + ) + (stroke + (width 0) + (type default) + ) + (uuid "b84e8304-78b8-427a-abd9-f26b39a44a01") + ) + (wire + (pts + (xy 455.93 161.29) (xy 471.17 161.29) + ) + (stroke + (width 0) + (type default) + ) + (uuid "b9622c0a-43d7-4d2f-a5cf-78c78e409e1f") + ) + (wire + (pts + (xy 49.53 171.45) (xy 55.88 171.45) + ) + (stroke + (width 0) + (type default) + ) + (uuid "ba13b14c-6788-48e6-95ee-d88fb4a39726") + ) + (wire + (pts + (xy 49.53 184.15) (xy 55.88 184.15) + ) + (stroke + (width 0) + (type default) + ) + (uuid "ba2cbc63-3191-45fc-a08c-0d250cf7eb05") + ) + (wire + (pts + (xy 157.48 123.19) (xy 157.48 121.92) + ) + (stroke + (width 0) + (type default) + ) + (uuid "ba83054d-9d84-4ef5-a75a-7c0706d0334f") + ) + (wire + (pts + (xy 463.55 210.82) (xy 473.71 210.82) + ) + (stroke + (width 0) + (type default) + ) + (uuid "bb41f07d-6720-4334-abbf-ad4be4ba23dc") + ) + (wire + (pts + (xy 210.82 316.23) (xy 210.82 314.96) + ) + (stroke + (width 0) + (type default) + ) + (uuid "bb6a6405-5bcb-4f1e-9153-b9abf4afe66e") + ) + (wire + (pts + (xy 34.29 273.05) (xy 36.83 273.05) + ) + (stroke + (width 0) + (type default) + ) + (uuid "bc7d4bad-2cff-4520-b31d-681f9daa1ae0") + ) + (wire + (pts + (xy 461.01 68.58) (xy 476.25 68.58) + ) + (stroke + (width 0) + (type default) + ) + (uuid "bceca2b2-44ab-45b8-b2f1-71b990185d41") + ) + (wire + (pts + (xy 34.29 270.51) (xy 36.83 270.51) + ) + (stroke + (width 0) + (type default) + ) + (uuid "bd4c0fff-be28-4b05-af70-0cbf74158cd4") + ) + (wire + (pts + (xy 213.36 243.84) (xy 213.36 242.57) + ) + (stroke + (width 0) + (type default) + ) + (uuid "bd5e9458-d3c8-4ace-9177-f58a0ce68200") + ) + (wire + (pts + (xy 320.04 260.35) (xy 317.5 260.35) + ) + (stroke + (width 0) + (type default) + ) + (uuid "bd823478-66f0-4022-97cd-deec16e7c4dd") + ) + (wire + (pts + (xy 109.22 247.65) (xy 99.06 247.65) + ) + (stroke + (width 0) + (type default) + ) + (uuid "be0a38e8-11aa-42c4-bf8c-be94c0d3b0c0") + ) + (wire + (pts + (xy 476.25 49.53) (xy 476.25 52.07) + ) + (stroke + (width 0) + (type default) + ) + (uuid "be0f8cf0-fb30-4e1b-ba96-c35b0030f33a") + ) + (wire + (pts + (xy 222.25 321.31) (xy 234.95 321.31) + ) + (stroke + (width 0) + (type default) + ) + (uuid "bf1b78f4-e8c2-439b-bec4-b30105710b2d") + ) + (wire + (pts + (xy 397.51 261.62) (xy 397.51 259.08) + ) + (stroke + (width 0) + (type default) + ) + (uuid "bf2bc99f-62b3-4737-b2ef-1f38a545a744") + ) + (wire + (pts + (xy 292.1 254) (xy 292.1 259.08) + ) + (stroke + (width 0) + (type default) + ) + (uuid "bf82b689-8ed9-4236-8e9a-e27b5185cf53") + ) + (wire + (pts + (xy 34.29 267.97) (xy 36.83 267.97) + ) + (stroke + (width 0) + (type default) + ) + (uuid "bfb417db-5d87-4143-b910-ff2594a1b324") + ) + (wire + (pts + (xy 483.87 144.78) (xy 487.68 144.78) + ) + (stroke + (width 0) + (type default) + ) + (uuid "c01d7b73-9237-48d9-a6b7-fa90544da6a3") + ) + (wire + (pts + (xy 461.01 63.5) (xy 461.01 68.58) + ) + (stroke + (width 0) + (type default) + ) + (uuid "c5b7c3dc-e07f-45b1-8e76-504f8b911cae") + ) + (wire + (pts + (xy 471.17 160.02) (xy 471.17 161.29) + ) + (stroke + (width 0) + (type default) + ) + (uuid "c6d968a8-4e18-414c-bc2b-676dfe6e1f98") + ) + (wire + (pts + (xy 93.98 60.96) (xy 93.98 58.42) + ) + (stroke + (width 0) + (type default) + ) + (uuid "c71e3a9d-ca1e-4ea7-a9c5-779ff46d6983") + ) + (wire + (pts + (xy 58.42 271.78) (xy 60.96 271.78) + ) + (stroke + (width 0) + (type default) + ) + (uuid "c858095c-faf6-4d03-a8ec-cd204609d548") + ) + (wire + (pts + (xy 294.64 34.29) (xy 294.64 33.02) + ) + (stroke + (width 0) + (type default) + ) + (uuid "c89c0ee5-cfa2-44ac-849e-1841267c56ef") + ) + (wire + (pts + (xy 368.3 24.13) (xy 374.65 24.13) + ) + (stroke + (width 0) + (type default) + ) + (uuid "c8a1dffb-a94a-4981-878c-1c606da5dec3") + ) + (wire + (pts + (xy 372.11 69.85) (xy 387.35 69.85) + ) + (stroke + (width 0) + (type default) + ) + (uuid "c8c40f18-fe33-4b66-922e-52796e91ac04") + ) + (wire + (pts + (xy 298.45 45.72) (xy 307.34 45.72) + ) + (stroke + (width 0) + (type default) + ) + (uuid "c992d005-f582-4d04-8e78-eaa56aa61f5d") + ) + (wire + (pts + (xy 203.2 234.95) (xy 213.36 234.95) + ) + (stroke + (width 0) + (type default) + ) + (uuid "cbc674b3-26b6-4de9-b62e-c71fc29bf1b6") + ) + (wire + (pts + (xy 83.82 50.8) (xy 93.98 50.8) + ) + (stroke + (width 0) + (type default) + ) + (uuid "ccb73d78-425d-4cbf-8b77-01ed5bcd0f49") + ) + (wire + (pts + (xy 457.2 210.82) (xy 463.55 210.82) + ) + (stroke + (width 0) + (type default) + ) + (uuid "cf848e1c-7f2f-46cb-8447-d146bb776baa") + ) + (wire + (pts + (xy 180.34 144.78) (xy 166.37 144.78) + ) + (stroke + (width 0) + (type default) + ) + (uuid "d0c3bfc2-2059-409b-b8b4-d302bbf28419") + ) + (wire + (pts + (xy 208.28 62.23) (xy 208.28 63.5) + ) + (stroke + (width 0) + (type default) + ) + (uuid "d0db9e46-a00e-4a3f-941c-6b2d12a2a4e1") + ) + (wire + (pts + (xy 480.06 138.43) (xy 478.79 138.43) + ) + (stroke + (width 0) + (type default) + ) + (uuid "d11fff9e-b901-4092-9b30-c170c928d409") + ) + (wire + (pts + (xy 488.95 69.85) (xy 486.41 69.85) + ) + (stroke + (width 0) + (type default) + ) + (uuid "d2cab0fa-1a94-4dcb-8cfa-822ab8362084") + ) + (wire + (pts + (xy 58.42 287.02) (xy 60.96 287.02) + ) + (stroke + (width 0) + (type default) + ) + (uuid "d6de2930-6b16-4531-99f4-8b42fb1a7aea") + ) + (wire + (pts + (xy 461.01 49.53) (xy 476.25 49.53) + ) + (stroke + (width 0) + (type default) + ) + (uuid "d78670d4-22f4-45b7-869f-a6857b220275") + ) + (wire + (pts + (xy 486.41 69.85) (xy 486.41 67.31) + ) + (stroke + (width 0) + (type default) + ) + (uuid "d7b0df8b-8393-46c6-b5e6-5660507c9be1") + ) + (wire + (pts + (xy 458.47 41.91) (xy 476.25 41.91) + ) + (stroke + (width 0) + (type default) + ) + (uuid "d80c4aa8-5c8f-47bb-9125-9733e8649f1b") + ) + (wire + (pts + (xy 107.95 143.51) (xy 104.14 143.51) + ) + (stroke + (width 0) + (type default) + ) + (uuid "d9ca52ab-7a30-4548-9983-903810c5b1d5") + ) + (wire + (pts + (xy 106.68 189.23) (xy 101.6 189.23) + ) + (stroke + (width 0) + (type default) + ) + (uuid "da50d5a7-da8d-44de-b43c-b78e0e91c386") + ) + (wire + (pts + (xy 50.8 199.39) (xy 55.88 199.39) + ) + (stroke + (width 0) + (type default) + ) + (uuid "da5e891e-6eeb-4dbc-a6e5-7e82ffe1454f") + ) + (wire + (pts + (xy 53.34 153.67) (xy 55.88 153.67) + ) + (stroke + (width 0) + (type default) + ) + (uuid "dc4d3169-4f1a-4a27-9674-8e7589c5d5aa") + ) + (wire + (pts + (xy 387.35 236.22) (xy 387.35 241.3) + ) + (stroke + (width 0) + (type default) + ) + (uuid "dcd6aacc-4168-4831-b462-237a971383db") + ) + (wire + (pts + (xy 384.81 33.02) (xy 384.81 31.75) + ) + (stroke + (width 0) + (type default) + ) + (uuid "de0838ad-6051-4a71-a926-c13df42a88d4") + ) + (wire + (pts + (xy 52.07 236.22) (xy 52.07 240.03) + ) + (stroke + (width 0) + (type default) + ) + (uuid "de96dd4a-4e37-47ac-a34c-ddf7c12f16bc") + ) + (wire + (pts + (xy 140.97 260.35) (xy 148.59 260.35) + ) + (stroke + (width 0) + (type default) + ) + (uuid "dea4e798-b345-4dd6-b58a-b899587c6c02") + ) + (wire + (pts + (xy 73.66 120.65) (xy 73.66 119.38) + ) + (stroke + (width 0) + (type default) + ) + (uuid "e04ce20c-e6a9-4a4e-85b8-e58d8525a4cd") + ) + (wire + (pts + (xy 478.79 138.43) (xy 478.79 144.78) + ) + (stroke + (width 0) + (type default) + ) + (uuid "e172a1ef-d8d0-4868-b167-5ba7a08a911e") + ) + (wire + (pts + (xy 387.35 68.58) (xy 387.35 69.85) + ) + (stroke + (width 0) + (type default) + ) + (uuid "e1a70881-5c1f-41fd-bf2f-31878bec3fe2") + ) + (wire + (pts + (xy 485.14 233.68) (xy 483.87 233.68) + ) + (stroke + (width 0) + (type default) + ) + (uuid "e3423921-7f8d-409a-bc45-19d30138c69b") + ) + (wire + (pts + (xy 461.01 256.54) (xy 476.25 256.54) + ) + (stroke + (width 0) + (type default) + ) + (uuid "e492f92e-1f5e-4ab5-9ff1-e0d99b566756") + ) + (wire + (pts + (xy 49.53 176.53) (xy 55.88 176.53) + ) + (stroke + (width 0) + (type default) + ) + (uuid "e4cd444f-dc9e-4d0a-b037-307ea6755d87") + ) + (wire + (pts + (xy 210.82 314.96) (xy 222.25 314.96) + ) + (stroke + (width 0) + (type default) + ) + (uuid "e77edec4-cb78-4f82-9774-cfeffa9ff4a4") + ) + (wire + (pts + (xy 175.26 85.09) (xy 175.26 82.55) + ) + (stroke + (width 0) + (type default) + ) + (uuid "ea38524f-16d6-4ff8-ae82-5f94c552edc1") + ) + (wire + (pts + (xy 458.47 124.46) (xy 458.47 123.19) + ) + (stroke + (width 0) + (type default) + ) + (uuid "ea656bb9-7fdb-47fb-9073-d7e5b1a66262") + ) + (wire + (pts + (xy 219.71 317.5) (xy 222.25 317.5) + ) + (stroke + (width 0) + (type default) + ) + (uuid "eb19f073-6ed1-4050-9761-6cc5d2e4f75a") + ) + (wire + (pts + (xy 185.42 321.31) (xy 187.96 321.31) + ) + (stroke + (width 0) + (type default) + ) + (uuid "ef24d525-eb70-4175-9f95-0e83dca96ee9") + ) + (wire + (pts + (xy 486.41 257.81) (xy 486.41 255.27) + ) + (stroke + (width 0) + (type default) + ) + (uuid "f0a81fd1-04cd-437e-bcfb-6a044148c5d2") + ) + (wire + (pts + (xy 224.79 233.68) (xy 224.79 234.95) + ) + (stroke + (width 0) + (type default) + ) + (uuid "f19d46ee-54aa-4ee4-8f85-451360ee7eea") + ) + (wire + (pts + (xy 203.2 243.84) (xy 203.2 242.57) + ) + (stroke + (width 0) + (type default) + ) + (uuid "f2c51fbe-175a-4857-8325-5673b8b4f925") + ) + (wire + (pts + (xy 369.57 143.51) (xy 384.81 143.51) + ) + (stroke + (width 0) + (type default) + ) + (uuid "f2dffad2-d046-4d24-8ceb-d7fb430d6419") + ) + (wire + (pts + (xy 157.48 113.03) (xy 157.48 114.3) + ) + (stroke + (width 0) + (type default) + ) + (uuid "f3d69749-511f-4082-a111-f9a17daf9b71") + ) + (wire + (pts + (xy 400.05 71.12) (xy 397.51 71.12) + ) + (stroke + (width 0) + (type default) + ) + (uuid "f6c3bf1f-7c8e-4d93-befb-85c0465336ad") + ) + (wire + (pts + (xy 55.88 111.76) (xy 63.5 111.76) + ) + (stroke + (width 0) + (type default) + ) + (uuid "f6da8738-7ebf-4bfa-bddb-3abfa4fd8bd7") + ) + (wire + (pts + (xy 292.1 246.38) (xy 292.1 240.03) + ) + (stroke + (width 0) + (type default) + ) + (uuid "f7a0a913-86fa-447a-a66e-ed2a2310ed4d") + ) + (wire + (pts + (xy 400.05 53.34) (xy 403.86 53.34) + ) + (stroke + (width 0) + (type default) + ) + (uuid "f91c0303-1919-4ef9-8d64-78b1f2211d1a") + ) + (wire + (pts + (xy 175.26 67.31) (xy 175.26 72.39) + ) + (stroke + (width 0) + (type default) + ) + (uuid "f93c8dad-779f-4117-ace6-428e9169fd0b") + ) + (wire + (pts + (xy 320.04 113.03) (xy 318.77 113.03) + ) + (stroke + (width 0) + (type default) + ) + (uuid "fb74585b-b184-4f75-b2db-8bc79c5fb3c9") + ) + (wire + (pts + (xy 283.21 232.41) (xy 307.34 232.41) + ) + (stroke + (width 0) + (type default) + ) + (uuid "fd89941d-ee56-40ec-9e89-708db599e439") + ) + (wire + (pts + (xy 488.95 240.03) (xy 492.76 240.03) + ) + (stroke + (width 0) + (type default) + ) + (uuid "fd8b351c-6339-4056-ba0e-cf712b9b7f06") + ) + (wire + (pts + (xy 50.8 191.77) (xy 55.88 191.77) + ) + (stroke + (width 0) + (type default) + ) + (uuid "fff8df50-b11a-414e-9949-92804e46ca8c") + ) + (label "12V_Unregulated" + (at 318.77 100.33 0) + (effects + (font + (size 1.27 1.27) + (thickness 0.254) + (bold yes) + ) + (justify left bottom) + ) + (uuid "048a7234-dd5d-46c3-9beb-a88d4098f214") + ) + (label "12V_Unregulated" + (at 283.21 232.41 0) + (effects + (font + (size 1.27 1.27) + (thickness 0.254) + (bold yes) + ) + (justify left bottom) + ) + (uuid "0582c653-415e-42fd-a7dc-2f11dee296e9") + ) + (label "12V_Unregulated" + (at 457.2 210.82 0) + (effects + (font + (size 1.27 1.27) + (thickness 0.254) + (bold yes) + ) + (justify left bottom) + ) + (uuid "070e6767-7131-4fc7-8440-20707a1a0ce7") + ) + (label "12V_Unregulated" + (at 106.68 48.26 0) + (effects + (font + (size 1.27 1.27) + (thickness 0.254) + (bold yes) + ) + (justify left bottom) + ) + (uuid "0cd92220-805e-443a-9d40-43b409f1ba81") + ) + (label "12V_Unregulated" + (at 458.47 41.91 0) + (effects + (font + (size 1.27 1.27) + (thickness 0.254) + (bold yes) + ) + (justify left bottom) + ) + (uuid "100133bf-01c2-4251-bdd5-84720e68e04b") + ) + (label "CANL" + (at 170.18 147.32 0) + (effects + (font + (size 1.27 1.27) + (thickness 0.254) + (bold yes) + ) + (justify left bottom) + ) + (uuid "1207cc92-7130-4080-b89c-49da45edf98f") + ) + (label "CANL" + (at 186.69 167.64 0) + (effects + (font + (size 1.27 1.27) + (thickness 0.254) + (bold yes) + ) + (justify left bottom) + ) + (uuid "1741f2a4-9d76-4f79-b84c-53977941f276") + ) + (label "12V_Unregulated" + (at 365.76 135.89 0) + (effects + (font + (size 1.27 1.27) + (thickness 0.254) + (bold yes) + ) + (justify left bottom) + ) + (uuid "308500ea-0789-402a-b73a-d9d2f2b91554") + ) + (label "12V_Unregulated" + (at 448.31 115.57 0) + (effects + (font + (size 1.27 1.27) + (thickness 0.254) + (bold yes) + ) + (justify left bottom) + ) + (uuid "37df78de-8eab-477d-a262-13c1dee1f6c0") + ) + (label "12V_Unregulated" + (at 288.29 25.4 0) + (effects + (font + (size 1.27 1.27) + (thickness 0.254) + (bold yes) + ) + (justify left bottom) + ) + (uuid "3a0b0949-86c0-4c28-b128-4ee7d37c5c07") + ) + (label "12V_Unregulated" + (at 298.45 45.72 0) + (effects + (font + (size 1.27 1.27) + (thickness 0.254) + (bold yes) + ) + (justify left bottom) + ) + (uuid "488f3f7d-ff6f-494e-8b15-ba1cf1241980") + ) + (label "12V_Unregulated" + (at 358.14 236.22 0) + (effects + (font + (size 1.27 1.27) + (thickness 0.254) + (bold yes) + ) + (justify left bottom) + ) + (uuid "5d6d020f-f3a8-43d4-8886-98ddeb6a1d05") + ) + (label "12V_Unregulated" + (at 83.82 50.8 0) + (effects + (font + (size 1.27 1.27) + (thickness 0.254) + (bold yes) + ) + (justify left bottom) + ) + (uuid "5ed234b4-5c63-4b60-a5eb-8fd0274232f3") + ) + (label "12V_Unregulated" + (at 450.85 134.62 0) + (effects + (font + (size 1.27 1.27) + (thickness 0.254) + (bold yes) + ) + (justify left bottom) + ) + (uuid "6daacae8-db90-47c4-a0bb-6a0cc88c1071") + ) + (label "12V_Unregulated" + (at 139.7 46.99 0) + (effects + (font + (size 1.27 1.27) + (thickness 0.254) + (bold yes) + ) + (justify left bottom) + ) + (uuid "748cec3c-5c9f-4c77-9936-b10794fa76b8") + ) + (label "12V_DC-Regulated" + (at 313.69 87.63 0) + (effects + (font + (size 1.27 1.27) + (thickness 0.254) + (bold yes) + ) + (justify left bottom) + ) + (uuid "76bf1e30-feab-4eef-99b8-1632526bd949") + ) + (label "12V_Unregulated" + (at 455.93 231.14 0) + (effects + (font + (size 1.27 1.27) + (thickness 0.254) + (bold yes) + ) + (justify left bottom) + ) + (uuid "887b9443-1a49-45ff-8b43-5fc14739a8a9") + ) + (label "12V_Unregulated" + (at 369.57 44.45 0) + (effects + (font + (size 1.27 1.27) + (thickness 0.254) + (bold yes) + ) + (justify left bottom) + ) + (uuid "9879149b-4b0d-4399-82ce-d5c56d470b18") + ) + (label "12V_Unregulated" + (at 368.3 24.13 0) + (effects + (font + (size 1.27 1.27) + (thickness 0.254) + (bold yes) + ) + (justify left bottom) + ) + (uuid "ab6f37a7-06f2-4292-bfc0-27ae1561bd35") + ) + (label "12V_Unregulated" + (at 365.76 116.84 0) + (effects + (font + (size 1.27 1.27) + (thickness 0.254) + (bold yes) + ) + (justify left bottom) + ) + (uuid "c7935789-909a-4549-b384-e26de3e5ab97") + ) + (label "12V_Unregulated" + (at 292.1 87.63 0) + (effects + (font + (size 1.27 1.27) + (thickness 0.254) + (bold yes) + ) + (justify left bottom) + ) + (uuid "caf59b0d-a602-42ad-a560-c4bf6d1c2c6e") + ) + (label "12V_Unregulated" + (at 457.2 22.86 0) + (effects + (font + (size 1.27 1.27) + (thickness 0.254) + (bold yes) + ) + (justify left bottom) + ) + (uuid "d662c442-0aa1-4a9f-8587-8349c4c389d4") + ) + (label "CANH" + (at 170.18 144.78 0) + (effects + (font + (size 1.27 1.27) + (thickness 0.254) + (bold yes) + ) + (justify left bottom) + ) + (uuid "d676da65-164b-4b54-859c-786d80dce4ab") + ) + (label "12V_Unregulated" + (at 368.3 214.63 0) + (effects + (font + (size 1.27 1.27) + (thickness 0.254) + (bold yes) + ) + (justify left bottom) + ) + (uuid "e1f2cdcc-0fc5-45ea-96f7-06a7834d86e4") + ) + (label "CANH" + (at 185.42 156.21 0) + (effects + (font + (size 1.27 1.27) + (thickness 0.254) + (bold yes) + ) + (justify left bottom) + ) + (uuid "fa877ca6-0663-42db-ba9e-62bc70c6691f") + ) + (label "12V_Unregulated" + (at 288.29 213.36 0) + (effects + (font + (size 1.27 1.27) + (thickness 0.254) + (bold yes) + ) + (justify left bottom) + ) + (uuid "fdecd3e2-6296-4c56-903b-3d7c832f045c") + ) + (global_label "R-4" + (shape input) + (at 369.57 162.56 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + (uuid "030c1e04-f571-48d9-8a89-83284a29fc8e") + (property "Intersheetrefs" "${INTERSHEET_REFS}" + (at 362.5329 162.56 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + (hide yes) + ) + ) + ) + (global_label "COM_3" + (shape input) + (at 488.95 69.85 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + (thickness 0.254) + (bold yes) + ) + (justify left) + ) + (uuid "050bc58b-f83b-482d-852a-b8ca2175ec49") + (property "Intersheetrefs" "${INTERSHEET_REFS}" + (at 498.6402 69.85 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + (hide yes) + ) + ) + ) + (global_label "5V" + (shape input) + (at 107.95 140.97 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + (thickness 0.254) + (bold yes) + ) + (justify left) + ) + (uuid "09eb37fb-c4df-434a-9283-8303ab835b55") + (property "Intersheetrefs" "${INTERSHEET_REFS}" + (at 113.7093 140.97 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + (hide yes) + ) + ) + ) + (global_label "VDD33" + (shape input) + (at 77.47 111.76 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + (thickness 0.254) + (bold yes) + ) + (justify left) + ) + (uuid "0ae0c9ac-a109-4364-9bdb-88e85f338e8f") + (property "Intersheetrefs" "${INTERSHEET_REFS}" + (at 86.9788 111.76 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + (hide yes) + ) + ) + ) + (global_label "COM_2" + (shape input) + (at 422.91 60.96 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + (thickness 0.254) + (bold yes) + ) + (justify right) + ) + (uuid "0c33d8a0-ffe8-49a1-861a-203cf67f884f") + (property "Intersheetrefs" "${INTERSHEET_REFS}" + (at 413.2198 60.96 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + (hide yes) + ) + ) + ) + (global_label "RELAY_3" + (shape input) + (at 298.45 115.57 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + (thickness 0.254) + (bold yes) + ) + (justify right) + ) + (uuid "0f34ce7a-3b6d-46d3-871f-a7d63372f643") + (property "Intersheetrefs" "${INTERSHEET_REFS}" + (at 287.1874 115.57 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + (hide yes) + ) + ) + ) + (global_label "R-1" + (shape input) + (at 292.1 69.85 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + (uuid "10932b9f-342a-42f4-8d17-f19a438f1b52") + (property "Intersheetrefs" "${INTERSHEET_REFS}" + (at 285.0629 69.85 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + (hide yes) + ) + ) + ) + (global_label "COM_5" + (shape input) + (at 506.73 152.4 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + (thickness 0.254) + (bold yes) + ) + (justify right) + ) + (uuid "10c329e1-bb5d-44d8-b647-b4cdf67700ba") + (property "Intersheetrefs" "${INTERSHEET_REFS}" + (at 497.0398 152.4 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + (hide yes) + ) + ) + ) + (global_label "SIG_A3" + (shape input) + (at 34.29 267.97 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + (thickness 0.254) + (bold yes) + ) + (justify right) + ) + (uuid "10d62d5b-b563-483a-ad10-975fa6e554c0") + (property "Intersheetrefs" "${INTERSHEET_REFS}" + (at 24.4788 267.97 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + (hide yes) + ) + ) + ) + (global_label "VDD33" + (shape input) + (at 51.9983 236.22 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + (thickness 0.254) + (bold yes) + ) + (justify left) + ) + (uuid "13d3783c-2473-47e4-996b-51aa47b109e9") + (property "Intersheetrefs" "${INTERSHEET_REFS}" + (at 61.5071 236.22 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + (hide yes) + ) + ) + ) + (global_label "RELAY_5" + (shape input) + (at 298.45 110.49 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + (thickness 0.254) + (bold yes) + ) + (justify right) + ) + (uuid "16fda19f-4aa1-450f-9c87-a1a264a3456c") + (property "Intersheetrefs" "${INTERSHEET_REFS}" + (at 287.1874 110.49 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + (hide yes) + ) + ) + ) + (global_label "COM_6" + (shape input) + (at 422.91 251.46 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + (thickness 0.254) + (bold yes) + ) + (justify right) + ) + (uuid "186f9402-7b98-4ae8-8572-9672bc482b47") + (property "Intersheetrefs" "${INTERSHEET_REFS}" + (at 413.2198 251.46 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + (hide yes) + ) + ) + ) + (global_label "RELAY_2" + (shape input) + (at 298.45 118.11 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + (thickness 0.254) + (bold yes) + ) + (justify right) + ) + (uuid "195782a5-0eb4-4a7a-aa5a-e5487fe68060") + (property "Intersheetrefs" "${INTERSHEET_REFS}" + (at 287.1874 118.11 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + (hide yes) + ) + ) + ) + (global_label "R-7" + (shape input) + (at 461.01 256.54 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + (uuid "19b68abe-2090-44c0-8f95-d21ba72fd24d") + (property "Intersheetrefs" "${INTERSHEET_REFS}" + (at 453.9729 256.54 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + (hide yes) + ) + ) + ) + (global_label "NC_3" + (shape input) + (at 485.14 45.72 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + (thickness 0.254) + (bold yes) + ) + (justify left) + ) + (uuid "1acfb595-d958-443e-a9cf-f6c6a1d47afb") + (property "Intersheetrefs" "${INTERSHEET_REFS}" + (at 493.3788 45.72 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + (hide yes) + ) + ) + ) + (global_label "VDD33" + (shape input) + (at 34.29 273.05 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + (thickness 0.254) + (bold yes) + ) + (justify right) + ) + (uuid "1ae576eb-3224-4e96-b7a3-93f5aaacad96") + (property "Intersheetrefs" "${INTERSHEET_REFS}" + (at 24.7812 273.05 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + (hide yes) + ) + ) + ) + (global_label "NO_6" + (shape input) + (at 403.86 243.84 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + (thickness 0.254) + (bold yes) + ) + (justify left) + ) + (uuid "1afefd5c-bf36-4355-9b90-b291acd7b7cf") + (property "Intersheetrefs" "${INTERSHEET_REFS}" + (at 412.1593 243.84 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + (hide yes) + ) + ) + ) + (global_label "ESP_RX" + (shape input) + (at 146.05 144.78 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + (thickness 0.254) + (bold yes) + ) + (justify right) + ) + (uuid "1d4a4c25-7a2f-47cf-b19d-d81218af9de6") + (property "Intersheetrefs" "${INTERSHEET_REFS}" + (at 135.5132 144.78 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + (hide yes) + ) + ) + ) + (global_label "DS18B20_OUT" + (shape input) + (at 55.88 156.21 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + (thickness 0.254) + (bold yes) + ) + (justify right) + ) + (uuid "1dc92782-567a-4c1f-b3eb-38849081507c") + (property "Intersheetrefs" "${INTERSHEET_REFS}" + (at 39.2351 156.21 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + (hide yes) + ) + ) + ) + (global_label "R-2" + (shape input) + (at 320.04 118.11 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + (uuid "1ebafb22-2dc5-4747-865e-1e296d574655") + (property "Intersheetrefs" "${INTERSHEET_REFS}" + (at 327.0771 118.11 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + (hide yes) + ) + ) + ) + (global_label "SIG_A1" + (shape input) + (at 58.42 284.48 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + (thickness 0.254) + (bold yes) + ) + (justify right) + ) + (uuid "20155a4e-3ec9-428d-9a90-79c2b11d0a60") + (property "Intersheetrefs" "${INTERSHEET_REFS}" + (at 48.6088 284.48 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + (hide yes) + ) + ) + ) + (global_label "COM_5" + (shape input) + (at 483.87 162.56 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + (thickness 0.254) + (bold yes) + ) + (justify left) + ) + (uuid "21087eec-9a26-4952-bc04-cef58a60df2c") + (property "Intersheetrefs" "${INTERSHEET_REFS}" + (at 493.5602 162.56 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + (hide yes) + ) + ) + ) + (global_label "SIG_A1" + (shape input) + (at 58.42 269.24 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + (thickness 0.254) + (bold yes) + ) + (justify right) + ) + (uuid "2163eaa2-a3b4-4992-90aa-9193a39003dd") + (property "Intersheetrefs" "${INTERSHEET_REFS}" + (at 48.6088 269.24 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + (hide yes) + ) + ) + ) + (global_label "RELAY_5" + (shape input) + (at 50.8 189.23 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + (thickness 0.254) + (bold yes) + ) + (justify right) + ) + (uuid "2318bf56-4f16-4b2c-902c-c241c2002f90") + (property "Intersheetrefs" "${INTERSHEET_REFS}" + (at 39.5374 189.23 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + (hide yes) + ) + ) + ) + (global_label "NO_4" + (shape input) + (at 420.37 151.13 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + (thickness 0.254) + (bold yes) + ) + (justify right) + ) + (uuid "266c8626-d26f-4335-ba25-dce8a75ab580") + (property "Intersheetrefs" "${INTERSHEET_REFS}" + (at 412.0707 151.13 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + (hide yes) + ) + ) + ) + (global_label "FAN" + (shape input) + (at 185.42 321.31 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + (thickness 0.254) + (bold yes) + ) + (justify right) + ) + (uuid "26f71b6e-81ad-4e6f-8751-1a17e16e1e2f") + (property "Intersheetrefs" "${INTERSHEET_REFS}" + (at 178.4511 321.31 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + (hide yes) + ) + ) + ) + (global_label "RELAY_7" + (shape input) + (at 298.45 105.41 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + (thickness 0.254) + (bold yes) + ) + (justify right) + ) + (uuid "28155bcb-bc55-45e6-a07a-8c57f0400768") + (property "Intersheetrefs" "${INTERSHEET_REFS}" + (at 287.1874 105.41 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + (hide yes) + ) + ) + ) + (global_label "5V" + (shape input) + (at 220.98 52.07 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + (thickness 0.254) + (bold yes) + ) + (justify left) + ) + (uuid "292cf9ef-0bd1-4d61-aa19-34d24e9ad447") + (property "Intersheetrefs" "${INTERSHEET_REFS}" + (at 226.7393 52.07 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + (hide yes) + ) + ) + ) + (global_label "R-8" + (shape input) + (at 320.04 110.49 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + (uuid "2a3c07bd-7ba4-4580-80a3-67886897e69b") + (property "Intersheetrefs" "${INTERSHEET_REFS}" + (at 327.0771 110.49 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + (hide yes) + ) + ) + ) + (global_label "NC_1" + (shape input) + (at 316.23 48.26 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + (thickness 0.254) + (bold yes) + ) + (justify left) + ) + (uuid "2c61c22a-3537-4c90-80ef-e29ad2184f03") + (property "Intersheetrefs" "${INTERSHEET_REFS}" + (at 324.4688 48.26 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + (hide yes) + ) + ) + ) + (global_label "RELAY_7" + (shape input) + (at 50.8 194.31 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + (thickness 0.254) + (bold yes) + ) + (justify right) + ) + (uuid "34181426-3405-4020-a74a-710ea669f5db") + (property "Intersheetrefs" "${INTERSHEET_REFS}" + (at 39.5374 194.31 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + (hide yes) + ) + ) + ) + (global_label "R-3" + (shape input) + (at 320.04 115.57 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + (uuid "34e0a21e-3970-4416-9e43-e0651d80e796") + (property "Intersheetrefs" "${INTERSHEET_REFS}" + (at 327.0771 115.57 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + (hide yes) + ) + ) + ) + (global_label "NC_6" + (shape input) + (at 396.24 237.49 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + (thickness 0.254) + (bold yes) + ) + (justify left) + ) + (uuid "35e86bb1-b2d6-4434-9d0f-26f3096c51ed") + (property "Intersheetrefs" "${INTERSHEET_REFS}" + (at 404.4788 237.49 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + (hide yes) + ) + ) + ) + (global_label "NO_8" + (shape input) + (at 342.9 247.65 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + (thickness 0.254) + (bold yes) + ) + (justify right) + ) + (uuid "36231397-fbdc-4f44-b631-84e762ec34de") + (property "Intersheetrefs" "${INTERSHEET_REFS}" + (at 334.6007 247.65 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + (hide yes) + ) + ) + ) + (global_label "VDD33" + (shape input) + (at 58.42 274.32 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + (thickness 0.254) + (bold yes) + ) + (justify right) + ) + (uuid "36507479-1ef4-4e06-a36e-6fb8ae1da958") + (property "Intersheetrefs" "${INTERSHEET_REFS}" + (at 48.9112 274.32 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + (hide yes) + ) + ) + ) + (global_label "NC_5" + (shape input) + (at 480.06 138.43 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + (thickness 0.254) + (bold yes) + ) + (justify left) + ) + (uuid "36d0c645-a53f-4eba-80f8-71e065c7df10") + (property "Intersheetrefs" "${INTERSHEET_REFS}" + (at 488.2988 138.43 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + (hide yes) + ) + ) + ) + (global_label "NO_1" + (shape input) + (at 342.9 59.69 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + (thickness 0.254) + (bold yes) + ) + (justify right) + ) + (uuid "3a132ca6-ff72-4631-a9f3-df82fcf3d145") + (property "Intersheetrefs" "${INTERSHEET_REFS}" + (at 334.6007 59.69 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + (hide yes) + ) + ) + ) + (global_label "5V" + (shape input) + (at 200.66 62.23 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + (thickness 0.254) + (bold yes) + ) + (justify left) + ) + (uuid "4187ff88-06ae-4902-bd74-eb6821e31d93") + (property "Intersheetrefs" "${INTERSHEET_REFS}" + (at 206.4193 62.23 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + (hide yes) + ) + ) + ) + (global_label "NC_1" + (shape input) + (at 342.9 64.77 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + (thickness 0.254) + (bold yes) + ) + (justify right) + ) + (uuid "4392617a-b329-4f30-ac92-8ad8a581c502") + (property "Intersheetrefs" "${INTERSHEET_REFS}" + (at 334.6612 64.77 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + (hide yes) + ) + ) + ) + (global_label "NC_2" + (shape input) + (at 396.24 46.99 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + (thickness 0.254) + (bold yes) + ) + (justify left) + ) + (uuid "459817fc-2d03-4d79-be0a-db15ff66a190") + (property "Intersheetrefs" "${INTERSHEET_REFS}" + (at 404.4788 46.99 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + (hide yes) + ) + ) + ) + (global_label "NC_3" + (shape input) + (at 511.81 62.23 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + (thickness 0.254) + (bold yes) + ) + (justify right) + ) + (uuid "460d42ac-7102-4950-8949-61e3dfd5c694") + (property "Intersheetrefs" "${INTERSHEET_REFS}" + (at 503.5712 62.23 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + (hide yes) + ) + ) + ) + (global_label "COM_3" + (shape input) + (at 511.81 59.69 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + (thickness 0.254) + (bold yes) + ) + (justify right) + ) + (uuid "48be883e-5bb9-404d-aca2-5c4d072ba1ae") + (property "Intersheetrefs" "${INTERSHEET_REFS}" + (at 502.1198 59.69 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + (hide yes) + ) + ) + ) + (global_label "SIG_A5" + (shape input) + (at 34.29 285.75 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + (thickness 0.254) + (bold yes) + ) + (justify right) + ) + (uuid "48e61150-3cdf-4902-b18e-e1b50bc4d411") + (property "Intersheetrefs" "${INTERSHEET_REFS}" + (at 24.4788 285.75 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + (hide yes) + ) + ) + ) + (global_label "NO_3" + (shape input) + (at 492.76 52.07 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + (thickness 0.254) + (bold yes) + ) + (justify left) + ) + (uuid "4dcb285e-301d-43c6-b1d1-e0b2ad4b3b29") + (property "Intersheetrefs" "${INTERSHEET_REFS}" + (at 501.0593 52.07 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + (hide yes) + ) + ) + ) + (global_label "RELAY_4" + (shape input) + (at 50.8 168.91 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + (thickness 0.254) + (bold yes) + ) + (justify right) + ) + (uuid "53e116b9-7384-4ceb-a566-adfb90360a43") + (property "Intersheetrefs" "${INTERSHEET_REFS}" + (at 39.5374 168.91 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + (hide yes) + ) + ) + ) + (global_label "FAN" + (shape input) + (at 50.8 199.39 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + (thickness 0.254) + (bold yes) + ) + (justify right) + ) + (uuid "55dbf7d7-9d1e-47c0-b967-d97ef0015804") + (property "Intersheetrefs" "${INTERSHEET_REFS}" + (at 43.8311 199.39 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + (hide yes) + ) + ) + ) + (global_label "RELAY_3" + (shape input) + (at 50.8 166.37 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + (thickness 0.254) + (bold yes) + ) + (justify right) + ) + (uuid "56c29511-d02f-4e55-a411-365c24cccc26") + (property "Intersheetrefs" "${INTERSHEET_REFS}" + (at 39.5374 166.37 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + (hide yes) + ) + ) + ) + (global_label "NC_5" + (shape input) + (at 506.73 154.94 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + (thickness 0.254) + (bold yes) + ) + (justify right) + ) + (uuid "570ba1e2-6520-44fd-96d9-40f6393a5ba9") + (property "Intersheetrefs" "${INTERSHEET_REFS}" + (at 498.4912 154.94 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + (hide yes) + ) + ) + ) + (global_label "R-4" + (shape input) + (at 320.04 113.03 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + (uuid "57748361-dc60-43b6-9cf7-967165453c29") + (property "Intersheetrefs" "${INTERSHEET_REFS}" + (at 327.0771 113.03 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + (hide yes) + ) + ) + ) + (global_label "NC_2" + (shape input) + (at 422.91 63.5 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + (thickness 0.254) + (bold yes) + ) + (justify right) + ) + (uuid "57eaf425-3479-4014-b222-ee50b98de450") + (property "Intersheetrefs" "${INTERSHEET_REFS}" + (at 414.6712 63.5 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + (hide yes) + ) + ) + ) + (global_label "NC_8" + (shape input) + (at 316.23 236.22 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + (thickness 0.254) + (bold yes) + ) + (justify left) + ) + (uuid "5b2b4793-8074-48fb-846f-921ad400c031") + (property "Intersheetrefs" "${INTERSHEET_REFS}" + (at 324.4688 236.22 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + (hide yes) + ) + ) + ) + (global_label "R-2" + (shape input) + (at 372.11 68.58 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + (uuid "5dc4119a-2e3c-4fd0-bb6f-4c22227b70a9") + (property "Intersheetrefs" "${INTERSHEET_REFS}" + (at 365.0729 68.58 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + (hide yes) + ) + ) + ) + (global_label "RELAY_1" + (shape input) + (at 50.8 161.29 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + (thickness 0.254) + (bold yes) + ) + (justify right) + ) + (uuid "5e4f2848-1217-4c1c-a8bf-ebbc8884c075") + (property "Intersheetrefs" "${INTERSHEET_REFS}" + (at 39.5374 161.29 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + (hide yes) + ) + ) + ) + (global_label "RELAY_1" + (shape input) + (at 298.45 120.65 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + (thickness 0.254) + (bold yes) + ) + (justify right) + ) + (uuid "5e70baff-c41d-41e2-aa75-835059687881") + (property "Intersheetrefs" "${INTERSHEET_REFS}" + (at 287.1874 120.65 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + (hide yes) + ) + ) + ) + (global_label "SIG_A3" + (shape input) + (at 49.53 176.53 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + (thickness 0.254) + (bold yes) + ) + (justify right) + ) + (uuid "5f3ab065-32ec-4be2-bcee-486fe2d23d22") + (property "Intersheetrefs" "${INTERSHEET_REFS}" + (at 39.7188 176.53 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + (hide yes) + ) + ) + ) + (global_label "COM_4" + (shape input) + (at 397.51 163.83 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + (thickness 0.254) + (bold yes) + ) + (justify left) + ) + (uuid "63489717-220f-4bcc-b386-d22350fe64e0") + (property "Intersheetrefs" "${INTERSHEET_REFS}" + (at 407.2002 163.83 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + (hide yes) + ) + ) + ) + (global_label "R-8" + (shape input) + (at 292.1 257.81 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + (uuid "63ea86c1-7d8d-4d45-a705-519bb4ba2d51") + (property "Intersheetrefs" "${INTERSHEET_REFS}" + (at 285.0629 257.81 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + (hide yes) + ) + ) + ) + (global_label "VDD33" + (shape input) + (at 153.67 133.35 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + (thickness 0.254) + (bold yes) + ) + (justify right) + ) + (uuid "646717c1-0289-4f1f-9445-c72dbbf6337c") + (property "Intersheetrefs" "${INTERSHEET_REFS}" + (at 144.1612 133.35 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + (hide yes) + ) + ) + ) + (global_label "SIG_A6" + (shape input) + (at 49.53 184.15 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + (thickness 0.254) + (bold yes) + ) + (justify right) + ) + (uuid "64e221e2-1f78-41c7-8e3a-717e93e93735") + (property "Intersheetrefs" "${INTERSHEET_REFS}" + (at 39.7188 184.15 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + (hide yes) + ) + ) + ) + (global_label "R-3" + (shape input) + (at 461.01 68.58 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + (uuid "65731a2b-06e3-4d7a-866d-70fd4d99e6fa") + (property "Intersheetrefs" "${INTERSHEET_REFS}" + (at 453.9729 68.58 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + (hide yes) + ) + ) + ) + (global_label "RELAY_6" + (shape input) + (at 50.8 191.77 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + (thickness 0.254) + (bold yes) + ) + (justify right) + ) + (uuid "699096f7-38cf-48c3-8f6a-108eb70e113b") + (property "Intersheetrefs" "${INTERSHEET_REFS}" + (at 39.5374 191.77 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + (hide yes) + ) + ) + ) + (global_label "COM_8" + (shape input) + (at 342.9 250.19 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + (thickness 0.254) + (bold yes) + ) + (justify right) + ) + (uuid "6b38963f-5f53-4332-8ffe-453990c9d455") + (property "Intersheetrefs" "${INTERSHEET_REFS}" + (at 333.2098 250.19 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + (hide yes) + ) + ) + ) + (global_label "NO_4" + (shape input) + (at 401.32 146.05 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + (thickness 0.254) + (bold yes) + ) + (justify left) + ) + (uuid "6b615d41-8404-463b-b022-a551183ad8ce") + (property "Intersheetrefs" "${INTERSHEET_REFS}" + (at 409.6193 146.05 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + (hide yes) + ) + ) + ) + (global_label "R-6" + (shape input) + (at 372.11 260.35 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + (uuid "6e3e5707-8b30-470f-91c0-ef4b8c5000c4") + (property "Intersheetrefs" "${INTERSHEET_REFS}" + (at 365.0729 260.35 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + (hide yes) + ) + ) + ) + (global_label "NC_6" + (shape input) + (at 422.91 254 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + (thickness 0.254) + (bold yes) + ) + (justify right) + ) + (uuid "746bff59-cab4-4cba-b957-b0d113b00b95") + (property "Intersheetrefs" "${INTERSHEET_REFS}" + (at 414.6712 254 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + (hide yes) + ) + ) + ) + (global_label "RELAY_6" + (shape input) + (at 298.45 107.95 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + (thickness 0.254) + (bold yes) + ) + (justify right) + ) + (uuid "7538a679-bd4c-4f45-82ef-ebb31bc1e360") + (property "Intersheetrefs" "${INTERSHEET_REFS}" + (at 287.1874 107.95 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + (hide yes) + ) + ) + ) + (global_label "COM_1" + (shape input) + (at 342.9 62.23 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + (thickness 0.254) + (bold yes) + ) + (justify right) + ) + (uuid "7aa0b770-6935-4363-95ad-5b1c222bec56") + (property "Intersheetrefs" "${INTERSHEET_REFS}" + (at 333.2098 62.23 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + (hide yes) + ) + ) + ) + (global_label "NC_7" + (shape input) + (at 511.81 250.19 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + (thickness 0.254) + (bold yes) + ) + (justify right) + ) + (uuid "7d376d1f-2f6c-445f-99cd-4f365d2f3155") + (property "Intersheetrefs" "${INTERSHEET_REFS}" + (at 503.5712 250.19 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + (hide yes) + ) + ) + ) + (global_label "RELAY_2" + (shape input) + (at 50.8 163.83 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + (thickness 0.254) + (bold yes) + ) + (justify right) + ) + (uuid "7fefd51d-5300-4a41-bd38-c70da0e690f2") + (property "Intersheetrefs" "${INTERSHEET_REFS}" + (at 39.5374 163.83 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + (hide yes) + ) + ) + ) + (global_label "SIG_A6" + (shape input) + (at 34.29 288.29 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + (thickness 0.254) + (bold yes) + ) + (justify right) + ) + (uuid "8042f78e-b853-42a2-84b4-dd174dd7f2d6") + (property "Intersheetrefs" "${INTERSHEET_REFS}" + (at 24.4788 288.29 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + (hide yes) + ) + ) + ) + (global_label "SIG_A1" + (shape input) + (at 49.53 171.45 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + (thickness 0.254) + (bold yes) + ) + (justify right) + ) + (uuid "8162e90b-abbe-4c85-9921-c3b4eb6ab06d") + (property "Intersheetrefs" "${INTERSHEET_REFS}" + (at 39.7188 171.45 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + (hide yes) + ) + ) + ) + (global_label "NO_3" + (shape input) + (at 511.81 57.15 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + (thickness 0.254) + (bold yes) + ) + (justify right) + ) + (uuid "8437b269-c281-4228-bd56-0b67bbdd6afc") + (property "Intersheetrefs" "${INTERSHEET_REFS}" + (at 503.5107 57.15 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + (hide yes) + ) + ) + ) + (global_label "SIG_A2" + (shape input) + (at 57.15 251.46 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + (thickness 0.254) + (bold yes) + ) + (justify left) + ) + (uuid "8abd403b-83a1-45c7-a283-f9f7856a524b") + (property "Intersheetrefs" "${INTERSHEET_REFS}" + (at 66.9612 251.46 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + (hide yes) + ) + ) + ) + (global_label "ESP_RX" + (shape input) + (at 106.68 189.23 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + (thickness 0.254) + (bold yes) + ) + (justify left) + ) + (uuid "8c7f1186-54b2-43a9-877c-3a8f9f092066") + (property "Intersheetrefs" "${INTERSHEET_REFS}" + (at 117.2168 189.23 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + (hide yes) + ) + ) + ) + (global_label "NO_8" + (shape input) + (at 323.85 242.57 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + (thickness 0.254) + (bold yes) + ) + (justify left) + ) + (uuid "8e5200dc-3891-40f1-a6bd-494a084d3375") + (property "Intersheetrefs" "${INTERSHEET_REFS}" + (at 332.1493 242.57 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + (hide yes) + ) + ) + ) + (global_label "BUZZER" + (shape input) + (at 53.34 153.67 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + (thickness 0.254) + (bold yes) + ) + (justify right) + ) + (uuid "90594671-4ae4-4e34-9fa9-8bd45653c5c8") + (property "Intersheetrefs" "${INTERSHEET_REFS}" + (at 42.4403 153.67 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + (hide yes) + ) + ) + ) + (global_label "SIG_A5" + (shape input) + (at 49.53 181.61 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + (thickness 0.254) + (bold yes) + ) + (justify right) + ) + (uuid "92cd6ff2-ba06-4c40-b5e5-9e7f05781df8") + (property "Intersheetrefs" "${INTERSHEET_REFS}" + (at 39.7188 181.61 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + (hide yes) + ) + ) + ) + (global_label "COM_8" + (shape input) + (at 320.04 260.35 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + (thickness 0.254) + (bold yes) + ) + (justify left) + ) + (uuid "936fb15c-2130-4334-9df0-b9974fb2a673") + (property "Intersheetrefs" "${INTERSHEET_REFS}" + (at 329.7302 260.35 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + (hide yes) + ) + ) + ) + (global_label "NC_8" + (shape input) + (at 342.9 252.73 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + (thickness 0.254) + (bold yes) + ) + (justify right) + ) + (uuid "93eb0e83-78fb-4b8c-8b83-aa4b0fbd6b74") + (property "Intersheetrefs" "${INTERSHEET_REFS}" + (at 334.6612 252.73 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + (hide yes) + ) + ) + ) + (global_label "R-7" + (shape input) + (at 320.04 107.95 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + (uuid "962dcdf6-fb40-4682-a9dd-49ac4148f86b") + (property "Intersheetrefs" "${INTERSHEET_REFS}" + (at 327.0771 107.95 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + (hide yes) + ) + ) + ) + (global_label "COM_1" + (shape input) + (at 320.04 72.39 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + (thickness 0.254) + (bold yes) + ) + (justify left) + ) + (uuid "991f677b-79e7-40cd-a92b-172b772b0f13") + (property "Intersheetrefs" "${INTERSHEET_REFS}" + (at 329.7302 72.39 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + (hide yes) + ) + ) + ) + (global_label "R-1" + (shape input) + (at 320.04 120.65 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + (uuid "9b107bed-cb52-49eb-8454-f481dcb0ce3a") + (property "Intersheetrefs" "${INTERSHEET_REFS}" + (at 327.0771 120.65 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + (hide yes) + ) + ) + ) + (global_label "5V" + (shape input) + (at 226.06 233.68 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + (thickness 0.254) + (bold yes) + ) + (justify left) + ) + (uuid "9bb00018-01c4-401f-ace2-72407ab99d38") + (property "Intersheetrefs" "${INTERSHEET_REFS}" + (at 231.8193 233.68 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + (hide yes) + ) + ) + ) + (global_label "NC_4" + (shape input) + (at 420.37 156.21 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + (thickness 0.254) + (bold yes) + ) + (justify right) + ) + (uuid "9c711124-571b-49a9-ae89-687db9a468d2") + (property "Intersheetrefs" "${INTERSHEET_REFS}" + (at 412.1312 156.21 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + (hide yes) + ) + ) + ) + (global_label "12V_INPUT" + (shape input) + (at 64.77 40.64 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + (thickness 0.254) + (bold yes) + ) + (justify left) + ) + (uuid "9f024ec0-afae-4e60-b261-f21172283054") + (property "Intersheetrefs" "${INTERSHEET_REFS}" + (at 78.2098 40.64 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + (hide yes) + ) + ) + ) + (global_label "R-5" + (shape input) + (at 320.04 102.87 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + (uuid "a15ef845-40d1-4aa1-9e7e-c44f733f491d") + (property "Intersheetrefs" "${INTERSHEET_REFS}" + (at 327.0771 102.87 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + (hide yes) + ) + ) + ) + (global_label "RELAY_4" + (shape input) + (at 298.45 113.03 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + (thickness 0.254) + (bold yes) + ) + (justify right) + ) + (uuid "a2026d05-2dee-4822-a122-4c754ef2a190") + (property "Intersheetrefs" "${INTERSHEET_REFS}" + (at 287.1874 113.03 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + (hide yes) + ) + ) + ) + (global_label "VDD33" + (shape input) + (at 161.29 113.03 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + (thickness 0.254) + (bold yes) + ) + (justify left) + ) + (uuid "a4a87958-a0b4-466e-ac39-e16f58888ed4") + (property "Intersheetrefs" "${INTERSHEET_REFS}" + (at 170.7988 113.03 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + (hide yes) + ) + ) + ) + (global_label "DS18B20_OUT" + (shape input) + (at 148.59 260.35 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + (thickness 0.254) + (bold yes) + ) + (justify left) + ) + (uuid "a5d8b543-1b64-432f-8914-6d1e4e891006") + (property "Intersheetrefs" "${INTERSHEET_REFS}" + (at 165.2349 260.35 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + (hide yes) + ) + ) + ) + (global_label "COM_7" + (shape input) + (at 511.81 247.65 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + (thickness 0.254) + (bold yes) + ) + (justify right) + ) + (uuid "a94a31c7-f8c0-4b31-a7b8-17b8a4714f1f") + (property "Intersheetrefs" "${INTERSHEET_REFS}" + (at 502.1198 247.65 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + (hide yes) + ) + ) + ) + (global_label "SIG_A4" + (shape input) + (at 49.53 179.07 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + (thickness 0.254) + (bold yes) + ) + (justify right) + ) + (uuid "ac1d74ba-1081-42e5-9bab-3b1d6656666d") + (property "Intersheetrefs" "${INTERSHEET_REFS}" + (at 39.7188 179.07 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + (hide yes) + ) + ) + ) + (global_label "NC_4" + (shape input) + (at 393.7 139.7 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + (thickness 0.254) + (bold yes) + ) + (justify left) + ) + (uuid "b687aa13-b4a6-4a29-a1ce-348862178fa9") + (property "Intersheetrefs" "${INTERSHEET_REFS}" + (at 401.9388 139.7 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + (hide yes) + ) + ) + ) + (global_label "SIG_A2" + (shape input) + (at 58.42 287.02 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + (thickness 0.254) + (bold yes) + ) + (justify right) + ) + (uuid "b8590273-73a7-4b8b-9c9c-ae93229ce5e5") + (property "Intersheetrefs" "${INTERSHEET_REFS}" + (at 48.6088 287.02 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + (hide yes) + ) + ) + ) + (global_label "COM_6" + (shape input) + (at 400.05 261.62 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + (thickness 0.254) + (bold yes) + ) + (justify left) + ) + (uuid "b91e9841-e5e2-45af-8656-a2facd50d2dd") + (property "Intersheetrefs" "${INTERSHEET_REFS}" + (at 409.7402 261.62 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + (hide yes) + ) + ) + ) + (global_label "ESP_TX" + (shape input) + (at 146.05 142.24 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + (thickness 0.254) + (bold yes) + ) + (justify right) + ) + (uuid "be2e97a5-8aa6-4361-98fb-fefe1d4cc411") + (property "Intersheetrefs" "${INTERSHEET_REFS}" + (at 135.8156 142.24 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + (hide yes) + ) + ) + ) + (global_label "VDD33" + (shape input) + (at 58.42 289.56 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + (thickness 0.254) + (bold yes) + ) + (justify right) + ) + (uuid "c017116c-f442-4999-ad01-d2eeff2da34a") + (property "Intersheetrefs" "${INTERSHEET_REFS}" + (at 48.9112 289.56 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + (hide yes) + ) + ) + ) + (global_label "5V" + (shape input) + (at 219.71 317.5 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + (thickness 0.254) + (bold yes) + ) + (justify right) + ) + (uuid "c47cddef-2af5-4012-bd6d-775ba0202a4d") + (property "Intersheetrefs" "${INTERSHEET_REFS}" + (at 213.9507 317.5 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + (hide yes) + ) + ) + ) + (global_label "NO_5" + (shape input) + (at 506.73 149.86 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + (thickness 0.254) + (bold yes) + ) + (justify right) + ) + (uuid "c6375c32-e861-4ab2-b9cd-c4a626120202") + (property "Intersheetrefs" "${INTERSHEET_REFS}" + (at 498.4307 149.86 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + (hide yes) + ) + ) + ) + (global_label "VDD33" + (shape input) + (at 34.29 290.83 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + (thickness 0.254) + (bold yes) + ) + (justify right) + ) + (uuid "ca9502b1-7448-433d-ac04-a5080a1ceebf") + (property "Intersheetrefs" "${INTERSHEET_REFS}" + (at 24.7812 290.83 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + (hide yes) + ) + ) + ) + (global_label "VDD33" + (shape input) + (at 107.95 143.51 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + (thickness 0.254) + (bold yes) + ) + (justify left) + ) + (uuid "caf9fd8b-c2c8-4348-bfc8-72a92aef7c3e") + (property "Intersheetrefs" "${INTERSHEET_REFS}" + (at 117.4588 143.51 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + (hide yes) + ) + ) + ) + (global_label "NO_5" + (shape input) + (at 487.68 144.78 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + (thickness 0.254) + (bold yes) + ) + (justify left) + ) + (uuid "cdb27de0-7dbf-4904-b43d-7e13388f8a59") + (property "Intersheetrefs" "${INTERSHEET_REFS}" + (at 495.9793 144.78 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + (hide yes) + ) + ) + ) + (global_label "VDD33" + (shape input) + (at 146.05 247.65 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + (thickness 0.254) + (bold yes) + ) + (justify left) + ) + (uuid "d382b230-3412-4f63-ad35-494d5c9e437c") + (property "Intersheetrefs" "${INTERSHEET_REFS}" + (at 155.5588 247.65 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + (hide yes) + ) + ) + ) + (global_label "SIG_A2" + (shape input) + (at 49.53 173.99 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + (thickness 0.254) + (bold yes) + ) + (justify right) + ) + (uuid "d39e5341-b154-49b7-856a-f2ba2611747c") + (property "Intersheetrefs" "${INTERSHEET_REFS}" + (at 39.7188 173.99 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + (hide yes) + ) + ) + ) + (global_label "RELAY_8" + (shape input) + (at 298.45 102.87 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + (thickness 0.254) + (bold yes) + ) + (justify right) + ) + (uuid "d5951e54-9ef2-48cf-a7fc-1290c7c1b7de") + (property "Intersheetrefs" "${INTERSHEET_REFS}" + (at 287.1874 102.87 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + (hide yes) + ) + ) + ) + (global_label "NC_7" + (shape input) + (at 485.14 233.68 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + (thickness 0.254) + (bold yes) + ) + (justify left) + ) + (uuid "d8383d5c-0c3d-4c95-a3bb-924e27bd3dd7") + (property "Intersheetrefs" "${INTERSHEET_REFS}" + (at 493.3788 233.68 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + (hide yes) + ) + ) + ) + (global_label "SIG_A2" + (shape input) + (at 58.42 271.78 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + (thickness 0.254) + (bold yes) + ) + (justify right) + ) + (uuid "d8c726c3-093d-471a-9196-86456c9e210c") + (property "Intersheetrefs" "${INTERSHEET_REFS}" + (at 48.6088 271.78 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + (hide yes) + ) + ) + ) + (global_label "R-5" + (shape input) + (at 455.93 161.29 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + (uuid "d990e1ee-f53d-4ab5-8a5a-11e97d221b81") + (property "Intersheetrefs" "${INTERSHEET_REFS}" + (at 448.8929 161.29 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + (hide yes) + ) + ) + ) + (global_label "RELAY_8" + (shape input) + (at 50.8 196.85 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + (thickness 0.254) + (bold yes) + ) + (justify right) + ) + (uuid "da47e35e-8508-446b-83a0-3ed8ff2bb74b") + (property "Intersheetrefs" "${INTERSHEET_REFS}" + (at 39.5374 196.85 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + (hide yes) + ) + ) + ) + (global_label "SIG_A4" + (shape input) + (at 34.29 270.51 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + (thickness 0.254) + (bold yes) + ) + (justify right) + ) + (uuid "da93d177-1b3c-444f-a601-1d0ff8751417") + (property "Intersheetrefs" "${INTERSHEET_REFS}" + (at 24.4788 270.51 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + (hide yes) + ) + ) + ) + (global_label "COM_2" + (shape input) + (at 400.05 71.12 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + (thickness 0.254) + (bold yes) + ) + (justify left) + ) + (uuid "da9f4a83-b7e0-4c87-b53b-421da1b4a13b") + (property "Intersheetrefs" "${INTERSHEET_REFS}" + (at 409.7402 71.12 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + (hide yes) + ) + ) + ) + (global_label "NO_2" + (shape input) + (at 422.91 58.42 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + (thickness 0.254) + (bold yes) + ) + (justify right) + ) + (uuid "dad477a1-9c63-4499-8776-662138d810de") + (property "Intersheetrefs" "${INTERSHEET_REFS}" + (at 414.6107 58.42 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + (hide yes) + ) + ) + ) + (global_label "COM_4" + (shape input) + (at 420.37 153.67 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + (thickness 0.254) + (bold yes) + ) + (justify right) + ) + (uuid "db6f49f9-3468-423a-b47a-9a77ff55bddc") + (property "Intersheetrefs" "${INTERSHEET_REFS}" + (at 410.6798 153.67 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + (hide yes) + ) + ) + ) + (global_label "R-6" + (shape input) + (at 320.04 105.41 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + (uuid "dbe11ec2-5122-4138-97ce-b96337d59733") + (property "Intersheetrefs" "${INTERSHEET_REFS}" + (at 327.0771 105.41 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + (hide yes) + ) + ) + ) + (global_label "NO_1" + (shape input) + (at 323.85 54.61 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + (thickness 0.254) + (bold yes) + ) + (justify left) + ) + (uuid "dca20257-1160-4ff5-92ab-7bd8563b2bcd") + (property "Intersheetrefs" "${INTERSHEET_REFS}" + (at 332.1493 54.61 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + (hide yes) + ) + ) + ) + (global_label "ESP_TX" + (shape input) + (at 106.68 186.69 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + (thickness 0.254) + (bold yes) + ) + (justify left) + ) + (uuid "dcf96f3b-56f9-46f9-870b-e1260de05d65") + (property "Intersheetrefs" "${INTERSHEET_REFS}" + (at 116.9144 186.69 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + (hide yes) + ) + ) + ) + (global_label "COM_7" + (shape input) + (at 488.95 257.81 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + (thickness 0.254) + (bold yes) + ) + (justify left) + ) + (uuid "e0912e48-29b1-49c2-9990-e7b0c09c8bca") + (property "Intersheetrefs" "${INTERSHEET_REFS}" + (at 498.6402 257.81 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + (hide yes) + ) + ) + ) + (global_label "BUZZER" + (shape input) + (at 200.66 264.16 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + (thickness 0.254) + (bold yes) + ) + (justify right) + ) + (uuid "e0a64286-bce9-41f3-8e1c-c9d9f3a4074f") + (property "Intersheetrefs" "${INTERSHEET_REFS}" + (at 189.7603 264.16 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + (hide yes) + ) + ) + ) + (global_label "NO_7" + (shape input) + (at 492.76 240.03 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + (thickness 0.254) + (bold yes) + ) + (justify left) + ) + (uuid "e6878d38-cce7-46d8-a074-2ed1cb73d665") + (property "Intersheetrefs" "${INTERSHEET_REFS}" + (at 501.0593 240.03 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + (hide yes) + ) + ) + ) + (global_label "NO_7" + (shape input) + (at 511.81 245.11 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + (thickness 0.254) + (bold yes) + ) + (justify right) + ) + (uuid "e76d0eb8-af28-4083-a1dc-14bb1013f025") + (property "Intersheetrefs" "${INTERSHEET_REFS}" + (at 503.5107 245.11 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + (hide yes) + ) + ) + ) + (global_label "NO_6" + (shape input) + (at 422.91 248.92 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + (thickness 0.254) + (bold yes) + ) + (justify right) + ) + (uuid "eb08005a-29ae-46db-9857-f8d2b8436516") + (property "Intersheetrefs" "${INTERSHEET_REFS}" + (at 414.6107 248.92 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + (hide yes) + ) + ) + ) + (global_label "NO_2" + (shape input) + (at 403.86 53.34 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + (thickness 0.254) + (bold yes) + ) + (justify left) + ) + (uuid "f09cfc80-a537-4043-be85-84b56cbfcf48") + (property "Intersheetrefs" "${INTERSHEET_REFS}" + (at 412.1593 53.34 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + (hide yes) + ) + ) + ) + (global_label "SIG_A1" + (shape input) + (at 38.1 251.46 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + (thickness 0.254) + (bold yes) + ) + (justify right) + ) + (uuid "fe14f410-ffc8-49d8-bae1-bd2e07aad14b") + (property "Intersheetrefs" "${INTERSHEET_REFS}" + (at 28.2888 251.46 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + (hide yes) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 213.36 243.84 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "000723f2-545f-4e14-96cb-55ff89653fcb") + (property "Reference" "#PWR030" + (at 213.36 250.19 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 213.36 248.92 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 213.36 243.84 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 213.36 243.84 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 213.36 243.84 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "80a308c1-28a4-46f3-89d2-e22534ff7957") + ) + (instances + (project "SmartFuseBox" + (path "/c0735f89-9606-4ac5-a2cd-a138ec47fb2a" + (reference "#PWR030") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:C") + (at 463.55 214.63 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "005e541c-f7ae-407b-a41a-2d70dcc90de8") + (property "Reference" "C23" + (at 464.82 213.36 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "0.1uf" + (at 464.82 215.9 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" + (at 464.5152 218.44 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 463.55 214.63 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Unpolarized capacitor" + (at 463.55 214.63 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Link" "https://robu.in/product/cl21a106kofnnne-samsang-16v-10uf-x5r-%C2%B110-0805-multilayer-ceramic-capacitors-mlcc-smd-smt-rohs/?gad_source=1&gad_campaignid=17427802703&gbraid=0AAAAADvLFWeYd6KQJmaof5AqwX7G6G7RK&gclid=CjwKCAjw687NBhB4EiwAQ645dvOPfam1y5aCD1uRQvjlmer72tAuxihwH4D1G8BPdKh6SRiWARJldBoCKCYQAvD_BwE" + (at 463.55 214.63 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "34d6d3cf-4ac6-436c-8185-7b7e8533b9da") + ) + (pin "2" + (uuid "bc18eaff-275b-4356-a050-115c874325d9") + ) + (instances + (project "SmartFuseBox" + (path "/c0735f89-9606-4ac5-a2cd-a138ec47fb2a" + (reference "C23") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:C") + (at 374.65 218.44 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "00ccf73a-42d4-4c25-a592-a9b0cddc6182") + (property "Reference" "C21" + (at 375.92 217.17 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "0.1uf" + (at 375.92 219.71 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" + (at 375.6152 222.25 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 374.65 218.44 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Unpolarized capacitor" + (at 374.65 218.44 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Link" "https://robu.in/product/cl21a106kofnnne-samsang-16v-10uf-x5r-%C2%B110-0805-multilayer-ceramic-capacitors-mlcc-smd-smt-rohs/?gad_source=1&gad_campaignid=17427802703&gbraid=0AAAAADvLFWeYd6KQJmaof5AqwX7G6G7RK&gclid=CjwKCAjw687NBhB4EiwAQ645dvOPfam1y5aCD1uRQvjlmer72tAuxihwH4D1G8BPdKh6SRiWARJldBoCKCYQAvD_BwE" + (at 374.65 218.44 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "38ce8e87-6c3e-41a3-a582-ec9c14203705") + ) + (pin "2" + (uuid "970836a2-cebf-48f4-a076-ec3dd49cc2ec") + ) + (instances + (project "SmartFuseBox" + (path "/c0735f89-9606-4ac5-a2cd-a138ec47fb2a" + (reference "C21") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:C") + (at 374.65 27.94 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "0144fa04-72f8-4f16-9ff8-8ae0605d5d02") + (property "Reference" "C5" + (at 375.92 26.67 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "0.1uf" + (at 375.92 29.21 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" + (at 375.6152 31.75 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 374.65 27.94 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Unpolarized capacitor" + (at 374.65 27.94 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Link" "https://robu.in/product/cl21a106kofnnne-samsang-16v-10uf-x5r-%C2%B110-0805-multilayer-ceramic-capacitors-mlcc-smd-smt-rohs/?gad_source=1&gad_campaignid=17427802703&gbraid=0AAAAADvLFWeYd6KQJmaof5AqwX7G6G7RK&gclid=CjwKCAjw687NBhB4EiwAQ645dvOPfam1y5aCD1uRQvjlmer72tAuxihwH4D1G8BPdKh6SRiWARJldBoCKCYQAvD_BwE" + (at 374.65 27.94 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "d4672170-92df-4b7f-9ba5-ba32f2bc015b") + ) + (pin "2" + (uuid "83cb9135-1193-4bcc-bad2-80f60f9e0271") + ) + (instances + (project "SmartFuseBox" + (path "/c0735f89-9606-4ac5-a2cd-a138ec47fb2a" + (reference "C5") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 83.82 62.23 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "01d19dda-e81e-4667-b091-298b6a12d99b") + (property "Reference" "#PWR03" + (at 83.82 68.58 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 83.82 67.31 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 83.82 62.23 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 83.82 62.23 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 83.82 62.23 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "188a0970-3b8b-4835-ad04-67efad690411") + ) + (instances + (project "SmartFuseBox" + (path "/c0735f89-9606-4ac5-a2cd-a138ec47fb2a" + (reference "#PWR03") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:C") + (at 294.64 217.17 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "0249115f-e473-4453-9361-a7e93624eaf2") + (property "Reference" "C25" + (at 295.91 215.9 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "0.1uf" + (at 295.91 218.44 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" + (at 295.6052 220.98 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 294.64 217.17 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Unpolarized capacitor" + (at 294.64 217.17 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Link" "https://robu.in/product/cl21a106kofnnne-samsang-16v-10uf-x5r-%C2%B110-0805-multilayer-ceramic-capacitors-mlcc-smd-smt-rohs/?gad_source=1&gad_campaignid=17427802703&gbraid=0AAAAADvLFWeYd6KQJmaof5AqwX7G6G7RK&gclid=CjwKCAjw687NBhB4EiwAQ645dvOPfam1y5aCD1uRQvjlmer72tAuxihwH4D1G8BPdKh6SRiWARJldBoCKCYQAvD_BwE" + (at 294.64 217.17 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "53c0b59c-1858-465d-9593-6649c227afd1") + ) + (pin "2" + (uuid "1340c120-119f-46db-8f3d-528cdd506b22") + ) + (instances + (project "SmartFuseBox" + (path "/c0735f89-9606-4ac5-a2cd-a138ec47fb2a" + (reference "C25") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 99.06 256.54 0) + (mirror y) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "05833306-4c9f-40ff-b7f6-b53f3d3fc786") + (property "Reference" "#PWR046" + (at 99.06 262.89 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 99.06 261.62 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 99.06 256.54 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 99.06 256.54 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 99.06 256.54 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "e27baf90-c70a-46a8-8de7-1e9134e720ed") + ) + (instances + (project "SmartFuseBox" + (path "/c0735f89-9606-4ac5-a2cd-a138ec47fb2a" + (reference "#PWR046") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 139.7 85.09 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "07488441-a9fe-4ba6-865d-5a0a95037ec9") + (property "Reference" "#PWR053" + (at 139.7 91.44 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 139.7 90.17 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 139.7 85.09 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 139.7 85.09 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 139.7 85.09 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "1fe3b770-d9d6-4edf-80b7-664e5ba4f125") + ) + (instances + (project "SmartFuseBox" + (path "/c0735f89-9606-4ac5-a2cd-a138ec47fb2a" + (reference "#PWR053") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "PCM_Diode_Schottky_AKL:SS54") + (at 369.57 153.67 90) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "07c2e9fa-2edd-439b-b17d-db6026ee1135") + (property "Reference" "D6" + (at 372.11 152.0824 90) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + ) + (property "Value" "SS54" + (at 372.11 154.6224 90) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + ) + (property "Footprint" "Diode_SMD:D_SMA" + (at 369.57 153.67 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "https://www.laro.com.pl/pdf/ss56.pdf" + (at 369.57 153.67 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "SMC Schottky diode, 40V, 5A, Alternate KiCAD Library" + (at 369.57 153.67 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Link" "https://robu.in/product/ss54b-slkor-40v-550mv5a-5a-smbdo-214aa-schottky-diodes-rohs/?gad_source=1&gad_campaignid=17427802703&gbraid=0AAAAADvLFWeYd6KQJmaof5AqwX7G6G7RK&gclid=CjwKCAjw687NBhB4EiwAQ645dhFgK7QWTnrPqJBCFVMKkjTLbr6I5VJmPHffxaZ_pS_3KzeiLFGuoBoCukcQAvD_BwE" + (at 369.57 153.67 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "ee26b89d-dbc7-4f5d-9363-46ca0891bdd7") + ) + (pin "2" + (uuid "fc718fd7-e512-457d-bf8e-e7561d87f107") + ) + (instances + (project "SmartFuseBox" + (path "/c0735f89-9606-4ac5-a2cd-a138ec47fb2a" + (reference "D6") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "PCM_Diode_Schottky_AKL:SS54") + (at 461.01 59.69 90) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "082f69f1-baab-4b3a-917a-590915753223") + (property "Reference" "D5" + (at 463.55 58.1024 90) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + ) + (property "Value" "SS54" + (at 463.55 60.6424 90) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + ) + (property "Footprint" "Diode_SMD:D_SMA" + (at 461.01 59.69 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "https://www.laro.com.pl/pdf/ss56.pdf" + (at 461.01 59.69 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "SMC Schottky diode, 40V, 5A, Alternate KiCAD Library" + (at 461.01 59.69 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Link" "https://robu.in/product/ss54b-slkor-40v-550mv5a-5a-smbdo-214aa-schottky-diodes-rohs/?gad_source=1&gad_campaignid=17427802703&gbraid=0AAAAADvLFWeYd6KQJmaof5AqwX7G6G7RK&gclid=CjwKCAjw687NBhB4EiwAQ645dhFgK7QWTnrPqJBCFVMKkjTLbr6I5VJmPHffxaZ_pS_3KzeiLFGuoBoCukcQAvD_BwE" + (at 461.01 59.69 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "529b538b-02bb-4943-b875-a6d6f7e5b80d") + ) + (pin "2" + (uuid "2370d37f-27a0-49d0-9136-9d5163960694") + ) + (instances + (project "SmartFuseBox" + (path "/c0735f89-9606-4ac5-a2cd-a138ec47fb2a" + (reference "D5") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "PCM_Diode_Schottky_AKL:SS54") + (at 372.11 251.46 90) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "0a0f53c8-d202-42ad-8b36-894146d80996") + (property "Reference" "D8" + (at 374.65 249.8724 90) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + ) + (property "Value" "SS54" + (at 374.65 252.4124 90) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + ) + (property "Footprint" "Diode_SMD:D_SMA" + (at 372.11 251.46 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "https://www.laro.com.pl/pdf/ss56.pdf" + (at 372.11 251.46 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "SMC Schottky diode, 40V, 5A, Alternate KiCAD Library" + (at 372.11 251.46 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Link" "https://robu.in/product/ss54b-slkor-40v-550mv5a-5a-smbdo-214aa-schottky-diodes-rohs/?gad_source=1&gad_campaignid=17427802703&gbraid=0AAAAADvLFWeYd6KQJmaof5AqwX7G6G7RK&gclid=CjwKCAjw687NBhB4EiwAQ645dhFgK7QWTnrPqJBCFVMKkjTLbr6I5VJmPHffxaZ_pS_3KzeiLFGuoBoCukcQAvD_BwE" + (at 372.11 251.46 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "a782affd-721b-4446-8bbe-5096ec04a66a") + ) + (pin "2" + (uuid "eace3128-f3e2-4db3-9ab4-c2423471c231") + ) + (instances + (project "SmartFuseBox" + (path "/c0735f89-9606-4ac5-a2cd-a138ec47fb2a" + (reference "D8") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 62.23 59.69 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "0c38ed0d-31f6-4d55-9909-21e1e7af5b5b") + (property "Reference" "#PWR04" + (at 62.23 66.04 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 62.23 64.77 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 62.23 59.69 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 62.23 59.69 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 62.23 59.69 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "8cc903e8-92cb-4282-b7ee-987c221ea095") + ) + (instances + (project "SmartFuseBox" + (path "/c0735f89-9606-4ac5-a2cd-a138ec47fb2a" + (reference "#PWR04") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:C") + (at 463.55 26.67 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "0c457dfb-8e47-4001-92d7-549c9ef7818e") + (property "Reference" "C7" + (at 464.82 25.4 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "0.1uf" + (at 464.82 27.94 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" + (at 464.5152 30.48 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 463.55 26.67 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Unpolarized capacitor" + (at 463.55 26.67 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Link" "https://robu.in/product/cl21a106kofnnne-samsang-16v-10uf-x5r-%C2%B110-0805-multilayer-ceramic-capacitors-mlcc-smd-smt-rohs/?gad_source=1&gad_campaignid=17427802703&gbraid=0AAAAADvLFWeYd6KQJmaof5AqwX7G6G7RK&gclid=CjwKCAjw687NBhB4EiwAQ645dvOPfam1y5aCD1uRQvjlmer72tAuxihwH4D1G8BPdKh6SRiWARJldBoCKCYQAvD_BwE" + (at 463.55 26.67 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "e2516259-11f2-434d-9ead-89aeb68f9bdf") + ) + (pin "2" + (uuid "5eaf1fc6-496b-42f8-848d-e120f6bee91a") + ) + (instances + (project "SmartFuseBox" + (path "/c0735f89-9606-4ac5-a2cd-a138ec47fb2a" + (reference "C7") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:C") + (at 55.88 115.57 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "0d89b810-bad9-4091-b229-364a9bbc8856") + (property "Reference" "C2" + (at 57.15 118.11 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "10uf" + (at 57.15 120.65 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" + (at 56.8452 119.38 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 55.88 115.57 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Unpolarized capacitor" + (at 55.88 115.57 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Link" "https://robu.in/product/0402x104k100nt-fh-smd-multilayer-ceramic-capacitor-0-1-%C2%B5f100nf-10-v-0402-1005-metric-%C2%B1-10-x5r/" + (at 55.88 115.57 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "59bf8af8-059a-482a-b981-24767e3eeb56") + ) + (pin "2" + (uuid "e1a09d05-a6d9-4952-8006-d69822c00714") + ) + (instances + (project "SmartFuseBox" + (path "/c0735f89-9606-4ac5-a2cd-a138ec47fb2a" + (reference "C2") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "PCM_Elektuur:R") + (at 208.28 264.16 90) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "0f3c3938-949b-4a7c-b5e5-2c3f6ef42d14") + (property "Reference" "R5" + (at 208.28 257.81 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "1k" + (at 208.28 260.35 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Passives:R_0805_2012Metric_Pad1.20x1.40mm_HandSolder" + (at 208.28 264.16 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 208.28 264.16 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "resistor" + (at 208.28 264.16 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Indicator" "+" + (at 205.105 267.335 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Rating" "W" + (at 211.455 261.62 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + (hide yes) + ) + ) + (pin "1" + (uuid "d13a79b1-e423-4a88-90de-caaf9e43e1c5") + ) + (pin "2" + (uuid "b3c27ade-b28e-4f9d-a295-ac2e8dcae1ab") + ) + (instances + (project "SmartFuseBox" + (path "/c0735f89-9606-4ac5-a2cd-a138ec47fb2a" + (reference "R5") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:C") + (at 294.64 29.21 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "1036837c-6733-4fbf-8507-cdb95e2da142") + (property "Reference" "C14" + (at 295.91 27.94 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "0.1uf" + (at 295.91 30.48 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" + (at 295.6052 33.02 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 294.64 29.21 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Unpolarized capacitor" + (at 294.64 29.21 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Link" "https://robu.in/product/cl21a106kofnnne-samsang-16v-10uf-x5r-%C2%B110-0805-multilayer-ceramic-capacitors-mlcc-smd-smt-rohs/?gad_source=1&gad_campaignid=17427802703&gbraid=0AAAAADvLFWeYd6KQJmaof5AqwX7G6G7RK&gclid=CjwKCAjw687NBhB4EiwAQ645dvOPfam1y5aCD1uRQvjlmer72tAuxihwH4D1G8BPdKh6SRiWARJldBoCKCYQAvD_BwE" + (at 294.64 29.21 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "c2ba6e00-226f-4722-82d6-acb57ba2cd4d") + ) + (pin "2" + (uuid "3b93fc72-9cff-4788-8c15-63f42162ff23") + ) + (instances + (project "SmartFuseBox" + (path "/c0735f89-9606-4ac5-a2cd-a138ec47fb2a" + (reference "C14") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 175.26 85.09 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "10ffc181-0ace-4e19-a9a7-6f41bb34df0d") + (property "Reference" "#PWR056" + (at 175.26 91.44 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 175.26 90.17 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 175.26 85.09 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 175.26 85.09 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 175.26 85.09 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "bb976988-a140-4758-9f8b-cbc71cb14a20") + ) + (instances + (project "SmartFuseBox" + (path "/c0735f89-9606-4ac5-a2cd-a138ec47fb2a" + (reference "#PWR056") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 294.64 222.25 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "1160be64-bdfc-4716-a7e4-823556cca911") + (property "Reference" "#PWR040" + (at 294.64 228.6 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 294.64 227.33 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 294.64 222.25 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 294.64 222.25 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 294.64 222.25 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "7c74e3bd-6943-46f8-a4e0-5fa3e9763e7a") + ) + (instances + (project "SmartFuseBox" + (path "/c0735f89-9606-4ac5-a2cd-a138ec47fb2a" + (reference "#PWR040") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:C") + (at 147.32 118.11 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "11fe8c36-0a15-4a06-bc91-b0ca32e0f301") + (property "Reference" "C12" + (at 148.59 116.84 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "0.1uf" + (at 148.59 119.38 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" + (at 148.2852 121.92 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 147.32 118.11 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Unpolarized capacitor" + (at 147.32 118.11 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Link" "https://robu.in/product/cl21a106kofnnne-samsang-16v-10uf-x5r-%C2%B110-0805-multilayer-ceramic-capacitors-mlcc-smd-smt-rohs/?gad_source=1&gad_campaignid=17427802703&gbraid=0AAAAADvLFWeYd6KQJmaof5AqwX7G6G7RK&gclid=CjwKCAjw687NBhB4EiwAQ645dvOPfam1y5aCD1uRQvjlmer72tAuxihwH4D1G8BPdKh6SRiWARJldBoCKCYQAvD_BwE" + (at 147.32 118.11 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "69a79553-aabb-4110-88e7-ea150d2122a3") + ) + (pin "2" + (uuid "26832daa-ec7a-4727-8714-5edae9a360b0") + ) + (instances + (project "SmartFuseBox" + (path "/c0735f89-9606-4ac5-a2cd-a138ec47fb2a" + (reference "C12") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Connector:Conn_01x03_Socket") + (at 427.99 251.46 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "179bb303-ba31-4700-b98e-ec6ac484b706") + (property "Reference" "J8" + (at 422.91 243.84 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "Conn_01x03_Socket" + (at 422.91 246.38 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "TerminalBlock:TerminalBlock_MaiXu_MX126-5.0-03P_1x03_P5.00mm" + (at 427.99 251.46 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 427.99 251.46 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Generic connector, single row, 01x03, script generated" + (at 427.99 251.46 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "3" + (uuid "76d340f7-74bc-44a2-8017-c6375ea893ac") + ) + (pin "1" + (uuid "e1dd2275-0c75-4112-a077-82532d736073") + ) + (pin "2" + (uuid "767c0deb-f553-45dd-be74-7608d35e161e") + ) + (instances + (project "SmartFuseBox" + (path "/c0735f89-9606-4ac5-a2cd-a138ec47fb2a" + (reference "J8") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Connector:Conn_01x04_Socket") + (at 66.04 271.78 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "17e957a8-ab96-409f-9694-96adf8de3d18") + (property "Reference" "J14" + (at 67.31 271.7799 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "Conn_01x04_Socket" + (at 67.31 274.3199 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Connector_JST:JST_PH_S4B-PH-K_1x04_P2.00mm_Horizontal" + (at 66.04 271.78 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 66.04 271.78 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Generic connector, single row, 01x04, script generated" + (at 66.04 271.78 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "4" + (uuid "f84838a8-c901-49b0-86f9-7c8c46adf205") + ) + (pin "2" + (uuid "38ce6f7f-449b-4a60-b273-538af22407cb") + ) + (pin "3" + (uuid "0ae0f85d-0ba9-499d-b6d8-31f0a76616cb") + ) + (pin "1" + (uuid "9d45e9e9-3b76-4013-90c7-b4e5bfdfad28") + ) + (instances + (project "SmartFuseBox" + (path "/c0735f89-9606-4ac5-a2cd-a138ec47fb2a" + (reference "J14") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 109.22 256.54 0) + (mirror y) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "1849e1d2-92cf-430a-97d8-c2db8a314b7d") + (property "Reference" "#PWR045" + (at 109.22 262.89 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 109.22 261.62 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 109.22 256.54 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 109.22 256.54 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 109.22 256.54 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "16eaa77e-f5ad-4618-b455-c179eb67c643") + ) + (instances + (project "SmartFuseBox" + (path "/c0735f89-9606-4ac5-a2cd-a138ec47fb2a" + (reference "#PWR045") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Connector:Conn_01x02_Socket") + (at 185.42 144.78 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "19b65a85-2370-4bb1-8d8b-9562c3235b89") + (property "Reference" "J3" + (at 186.69 144.7799 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "Conn_01x02_Socket" + (at 186.69 147.3199 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "TerminalBlock:TerminalBlock_MaiXu_MX126-5.0-02P_1x02_P5.00mm" + (at 185.42 144.78 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 185.42 144.78 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Generic connector, single row, 01x02, script generated" + (at 185.42 144.78 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "87f09846-591f-496c-8285-48c059e9820b") + ) + (pin "2" + (uuid "a3da4e57-3c9a-44e6-8f28-d38eacbf766b") + ) + (instances + (project "" + (path "/c0735f89-9606-4ac5-a2cd-a138ec47fb2a" + (reference "J3") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Connector:Conn_01x03_Socket") + (at 427.99 60.96 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "1a0c9918-df1b-4f59-bb79-d09645d1e39c") + (property "Reference" "J4" + (at 422.91 53.34 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "Conn_01x03_Socket" + (at 422.91 55.88 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "TerminalBlock:TerminalBlock_MaiXu_MX126-5.0-03P_1x03_P5.00mm" + (at 427.99 60.96 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 427.99 60.96 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Generic connector, single row, 01x03, script generated" + (at 427.99 60.96 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "3" + (uuid "185eaade-1b08-485e-85fa-519ea38c9fcf") + ) + (pin "1" + (uuid "880b9331-0dbe-41d8-82c7-bc865b377ee2") + ) + (pin "2" + (uuid "ff107627-743c-4b19-9bbe-e3fe5b88ad4e") + ) + (instances + (project "SmartFuseBox" + (path "/c0735f89-9606-4ac5-a2cd-a138ec47fb2a" + (reference "J4") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:C") + (at 45.72 115.57 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "1af0e26a-d752-495f-ac85-84a687e8b63e") + (property "Reference" "C1" + (at 46.99 114.3 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "0.1uf" + (at 46.99 116.84 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" + (at 46.6852 119.38 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 45.72 115.57 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Unpolarized capacitor" + (at 45.72 115.57 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Link" "https://robu.in/product/cl21a106kofnnne-samsang-16v-10uf-x5r-%C2%B110-0805-multilayer-ceramic-capacitors-mlcc-smd-smt-rohs/?gad_source=1&gad_campaignid=17427802703&gbraid=0AAAAADvLFWeYd6KQJmaof5AqwX7G6G7RK&gclid=CjwKCAjw687NBhB4EiwAQ645dvOPfam1y5aCD1uRQvjlmer72tAuxihwH4D1G8BPdKh6SRiWARJldBoCKCYQAvD_BwE" + (at 45.72 115.57 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "65a3b67d-1439-47ca-9825-4b428fe4746f") + ) + (pin "2" + (uuid "0922ae81-9028-4241-a34b-d85d981a0018") + ) + (instances + (project "SmartFuseBox" + (path "/c0735f89-9606-4ac5-a2cd-a138ec47fb2a" + (reference "C1") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:LED") + (at 219.71 68.58 90) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "1ec8918f-6cbb-4659-844c-7fbdb0f27223") + (property "Reference" "D12" + (at 223.52 68.8974 90) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + ) + (property "Value" "LED" + (at 223.52 71.4374 90) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + ) + (property "Footprint" "LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder" + (at 219.71 68.58 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 219.71 68.58 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Light emitting diode" + (at 219.71 68.58 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Sim.Pins" "1=K 2=A" + (at 219.71 68.58 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "71161c8f-c72f-4dfc-b910-f89be195f013") + ) + (pin "2" + (uuid "f65ce261-e773-4b8c-803d-05be3743cdfc") + ) + (instances + (project "SmartFuseBox" + (path "/c0735f89-9606-4ac5-a2cd-a138ec47fb2a" + (reference "D12") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Interface_CAN_LIN:SN65HVD230") + (at 156.21 144.78 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "1f83ba40-62ce-48e7-8477-3eff2e76560f") + (property "Reference" "U5" + (at 158.3533 134.62 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "SN65HVD230" + (at 158.3533 137.16 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Package_SO:SOIC-8_3.9x4.9mm_P1.27mm" + (at 156.21 157.48 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "http://www.ti.com/lit/ds/symlink/sn65hvd230.pdf" + (at 153.67 134.62 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "CAN Bus Transceivers, 3.3V, 1Mbps, Low-Power capabilities, SOIC-8" + (at 156.21 144.78 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "e2e76ef6-d663-4641-81b1-e96a10d11ed0") + ) + (pin "3" + (uuid "3e5e24fa-b6dd-4068-aa48-324a06976f7c") + ) + (pin "7" + (uuid "8d60d887-5135-40fc-9657-565ddeca9054") + ) + (pin "8" + (uuid "abb41261-765b-4a29-aaae-025a206df85c") + ) + (pin "5" + (uuid "50ac3139-91d3-4830-85dc-e04e82b226ed") + ) + (pin "4" + (uuid "2c94d22f-c211-4675-ada3-c805643286ee") + ) + (pin "2" + (uuid "c2a39d02-788f-4ed2-878b-93950c000ad7") + ) + (pin "6" + (uuid "f68acda4-e8c0-4dea-8406-e647fe768c1e") + ) + (instances + (project "" + (path "/c0735f89-9606-4ac5-a2cd-a138ec47fb2a" + (reference "U5") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "PCM_Elektuur:R") + (at 175.26 77.47 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "2103341c-f431-4cd6-a805-b1bfed225d5a") + (property "Reference" "R16" + (at 177.8 76.1999 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "10k" + (at 177.8 78.7399 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Passives:R_0805_2012Metric_Pad1.20x1.40mm_HandSolder" + (at 175.26 77.47 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 175.26 77.47 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "resistor" + (at 175.26 77.47 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Indicator" "+" + (at 172.085 74.295 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Rating" "W" + (at 177.8 80.645 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + (hide yes) + ) + ) + (pin "1" + (uuid "9c305190-1f89-4c35-9abd-c5a998f21a44") + ) + (pin "2" + (uuid "c91c6f3c-6816-4498-835d-a4854d1a41b7") + ) + (instances + (project "SmartFuseBox" + (path "/c0735f89-9606-4ac5-a2cd-a138ec47fb2a" + (reference "R16") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:C") + (at 208.28 58.42 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "2495645b-0e6d-4cfb-9f30-5f51562c9c00") + (property "Reference" "C33" + (at 209.55 57.15 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "12uf" + (at 209.55 59.69 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" + (at 209.2452 62.23 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 208.28 58.42 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Unpolarized capacitor" + (at 208.28 58.42 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Link" "https://robu.in/product/cl21a106kofnnne-samsang-16v-10uf-x5r-%C2%B110-0805-multilayer-ceramic-capacitors-mlcc-smd-smt-rohs/?gad_source=1&gad_campaignid=17427802703&gbraid=0AAAAADvLFWeYd6KQJmaof5AqwX7G6G7RK&gclid=CjwKCAjw687NBhB4EiwAQ645dvOPfam1y5aCD1uRQvjlmer72tAuxihwH4D1G8BPdKh6SRiWARJldBoCKCYQAvD_BwE" + (at 208.28 58.42 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "72b0f3f5-7a52-41c6-aa94-dd842390b37c") + ) + (pin "2" + (uuid "e935c7f2-2496-4383-8419-e4aaf7a15568") + ) + (instances + (project "SmartFuseBox" + (path "/c0735f89-9606-4ac5-a2cd-a138ec47fb2a" + (reference "C33") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 55.88 120.65 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "27e5b28c-31d0-4b7d-baf6-1947312b856d") + (property "Reference" "#PWR02" + (at 55.88 127 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 55.88 125.73 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 55.88 120.65 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 55.88 120.65 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 55.88 120.65 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "75510ef9-7436-49ad-a591-6c7a423ca8de") + ) + (instances + (project "SmartFuseBox" + (path "/c0735f89-9606-4ac5-a2cd-a138ec47fb2a" + (reference "#PWR02") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Relay:SANYOU_SRD_Form_C") + (at 312.42 250.19 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "2c5f50ec-7b9f-42fd-9280-be091af41623") + (property "Reference" "K8" + (at 309.88 232.41 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "SRD-12VDC-SL-C" + (at 309.88 234.95 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Relay_THT:Relay_SPDT_SANYOU_SRD_Series_Form_C" + (at 323.85 251.46 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + (hide yes) + ) + ) + (property "Datasheet" "http://www.sanyourelay.ca/public/products/pdf/SRD.pdf" + (at 312.42 250.19 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Sanyo SRD relay, Single Pole Miniature Power Relay," + (at 312.42 250.19 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Link" "https://robu.in/product/1-month-warranty-1027/" + (at 312.42 250.19 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "4" + (uuid "ff112db1-8a80-4e5d-b34a-ac0f15a42003") + ) + (pin "2" + (uuid "e145b619-0989-4982-9630-b4f4530a855d") + ) + (pin "3" + (uuid "f0edfe95-e7f6-4f32-a7af-dda5eeeda258") + ) + (pin "5" + (uuid "94689f96-d88a-4804-a6ef-a444104b215b") + ) + (pin "1" + (uuid "d59071b7-fa2a-4e43-ba09-a133f0a9c0af") + ) + (instances + (project "SmartFuseBox" + (path "/c0735f89-9606-4ac5-a2cd-a138ec47fb2a" + (reference "K8") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "PCM_Elektuur:R") + (at 219.71 59.69 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "2e0029ac-2e50-4064-935c-1fe10de12d9c") + (property "Reference" "R18" + (at 222.25 58.4199 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "2k" + (at 222.25 60.9599 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Passives:R_0805_2012Metric_Pad1.20x1.40mm_HandSolder" + (at 219.71 59.69 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 219.71 59.69 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "resistor" + (at 219.71 59.69 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Indicator" "+" + (at 216.535 56.515 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Rating" "W" + (at 222.25 62.865 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + (hide yes) + ) + ) + (pin "1" + (uuid "5dce01a4-1cf7-4349-bd00-9ddeb8a0afef") + ) + (pin "2" + (uuid "21c373d1-8181-4950-a2c0-c91e26f48491") + ) + (instances + (project "SmartFuseBox" + (path "/c0735f89-9606-4ac5-a2cd-a138ec47fb2a" + (reference "R18") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 294.64 34.29 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "32bd4a62-b9d3-45b0-b628-9d5df9142b64") + (property "Reference" "#PWR027" + (at 294.64 40.64 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 294.64 39.37 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 294.64 34.29 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 294.64 34.29 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 294.64 34.29 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "d27b1cf8-6afc-4326-bb94-f5cc1603d907") + ) + (instances + (project "SmartFuseBox" + (path "/c0735f89-9606-4ac5-a2cd-a138ec47fb2a" + (reference "#PWR027") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Transistor_Array:ULN2803A") + (at 308.61 107.95 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "34b90168-98dd-4cf4-9a38-2e481457f309") + (property "Reference" "U1" + (at 308.61 93.98 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "ULN2803A" + (at 308.61 96.52 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Package_SO:SOIC-18W_7.5x11.6mm_P1.27mm" + (at 309.88 124.46 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + (hide yes) + ) + ) + (property "Datasheet" "http://www.ti.com/lit/ds/symlink/uln2803a.pdf" + (at 311.15 113.03 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Darlington Transistor Arrays, SOIC18/DIP18" + (at 308.61 107.95 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "18" + (uuid "b9dc4d4c-25f2-48d3-9c37-8bc0aef38003") + ) + (pin "2" + (uuid "2ebeb127-0030-42f0-b3d5-4f7b52357527") + ) + (pin "7" + (uuid "0a4c447e-dcee-446f-b160-ac5eb454a76a") + ) + (pin "1" + (uuid "748d7d8a-2e60-4886-b225-68775f321ea1") + ) + (pin "3" + (uuid "fc128e6e-bbd9-4826-b412-d0244ff6b96d") + ) + (pin "4" + (uuid "3ff79654-3c58-4da2-9a11-14e2bc7110b4") + ) + (pin "5" + (uuid "c6711e2b-df16-4db6-838b-63926982b86f") + ) + (pin "8" + (uuid "149a8a40-1077-4712-9b44-a738dd136429") + ) + (pin "9" + (uuid "6e8417a6-56b1-4620-9c82-d95de354461c") + ) + (pin "10" + (uuid "c609b5ee-1fa7-4139-b731-c0fcda33606c") + ) + (pin "13" + (uuid "5ca7a3b0-cc69-4ae4-920e-3636bd945220") + ) + (pin "6" + (uuid "063bcc7c-953d-46b4-b8fe-94f4814a7db4") + ) + (pin "16" + (uuid "3990daee-eec9-4452-916f-39ecc4fa6409") + ) + (pin "14" + (uuid "e5ef4bee-75a7-4013-b850-dcd541a94a92") + ) + (pin "15" + (uuid "dd51285d-4976-4ed3-8e22-2cc6778804d3") + ) + (pin "12" + (uuid "293cba7c-38f0-4745-9e4b-181e56a2de44") + ) + (pin "17" + (uuid "1393b3a2-95ad-44ba-8d5b-aec5bc500ca8") + ) + (pin "11" + (uuid "4762437f-563f-435b-87eb-1159e669ab29") + ) + (instances + (project "" + (path "/c0735f89-9606-4ac5-a2cd-a138ec47fb2a" + (reference "U1") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Connector:Conn_01x03_Socket") + (at 511.81 152.4 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "35424935-2dd3-44cd-aee3-5d3a6c2ab593") + (property "Reference" "J7" + (at 506.73 144.78 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "Conn_01x03_Socket" + (at 506.73 147.32 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "TerminalBlock:TerminalBlock_MaiXu_MX126-5.0-03P_1x03_P5.00mm" + (at 511.81 152.4 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 511.81 152.4 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Generic connector, single row, 01x03, script generated" + (at 511.81 152.4 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "3" + (uuid "ac8ce3c9-a63d-4eb1-ab65-b7be99c2025d") + ) + (pin "1" + (uuid "f153d57c-533b-4e42-a83c-3604fbf9dbdd") + ) + (pin "2" + (uuid "f51400a4-6494-4450-aa35-f6c02217ffb1") + ) + (instances + (project "SmartFuseBox" + (path "/c0735f89-9606-4ac5-a2cd-a138ec47fb2a" + (reference "J7") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Mechanical:MountingHole") + (at 208.28 298.45 0) + (unit 1) + (exclude_from_sim no) + (in_bom no) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "3980356b-8424-406f-8b20-567edcc718f0") + (property "Reference" "H2" + (at 210.82 297.1799 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "MountingHole" + (at 210.82 299.7199 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "MountingHole_3.2mm_M3" + (at 208.28 298.45 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 208.28 298.45 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Mounting Hole without connection" + (at 208.28 298.45 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (instances + (project "SmartFuseBox" + (path "/c0735f89-9606-4ac5-a2cd-a138ec47fb2a" + (reference "H2") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Relay:SANYOU_SRD_Form_C") + (at 481.33 247.65 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "3ed33c21-b03f-4af6-9932-8cbe25b0afd8") + (property "Reference" "K7" + (at 478.79 229.87 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "SRD-12VDC-SL-C" + (at 478.79 232.41 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Relay_THT:Relay_SPDT_SANYOU_SRD_Series_Form_C" + (at 492.76 248.92 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + (hide yes) + ) + ) + (property "Datasheet" "http://www.sanyourelay.ca/public/products/pdf/SRD.pdf" + (at 481.33 247.65 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Sanyo SRD relay, Single Pole Miniature Power Relay," + (at 481.33 247.65 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Link" "https://robu.in/product/1-month-warranty-1027/" + (at 481.33 247.65 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "4" + (uuid "596ee2bc-fb8a-4a69-818b-7627816f211f") + ) + (pin "2" + (uuid "f9bf7855-3b0e-4272-afc8-9cac5dccfaae") + ) + (pin "3" + (uuid "fa6a5334-bb89-43c7-9a35-2d6d7c959585") + ) + (pin "5" + (uuid "1556edf3-dcc4-4b3f-923f-46bf82228929") + ) + (pin "1" + (uuid "3976a8ad-9dda-45f1-be70-dd352649288a") + ) + (instances + (project "SmartFuseBox" + (path "/c0735f89-9606-4ac5-a2cd-a138ec47fb2a" + (reference "K7") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 372.11 125.73 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "44c1846b-3c1c-4b2c-82cc-a61ce34e2a61") + (property "Reference" "#PWR017" + (at 372.11 132.08 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 372.11 130.81 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 372.11 125.73 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 372.11 125.73 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 372.11 125.73 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "2fef9fb8-dea8-490a-b050-bf57b17090f1") + ) + (instances + (project "SmartFuseBox" + (path "/c0735f89-9606-4ac5-a2cd-a138ec47fb2a" + (reference "#PWR017") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Connector:Conn_01x03_Socket") + (at 516.89 59.69 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "47fffcde-0e33-41b8-b430-8fcaa2afa50f") + (property "Reference" "J5" + (at 511.81 52.07 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "Conn_01x03_Socket" + (at 511.81 54.61 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "TerminalBlock:TerminalBlock_MaiXu_MX126-5.0-03P_1x03_P5.00mm" + (at 516.89 59.69 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 516.89 59.69 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Generic connector, single row, 01x03, script generated" + (at 516.89 59.69 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "3" + (uuid "8af684de-8115-467a-b7d9-6d3327725298") + ) + (pin "1" + (uuid "f7c53112-c651-4c8e-8da5-00a7d7db14ee") + ) + (pin "2" + (uuid "d1311e00-7d3a-42c2-a217-e4e184f1cbfc") + ) + (instances + (project "SmartFuseBox" + (path "/c0735f89-9606-4ac5-a2cd-a138ec47fb2a" + (reference "J5") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:L") + (at 184.15 62.23 90) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "4b827c64-7abe-4fb3-b720-05e27af3ebfa") + (property "Reference" "L2" + (at 184.15 64.77 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "10uH, 4A" + (at 184.15 67.31 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Inductor_SMD:L_SOREDE_SNR.1050_10x10x5mm" + (at 184.15 62.23 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 184.15 62.23 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Inductor" + (at 184.15 62.23 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Link" "https://robu.in/product/33uh-5a-high-current-toroidal-dip-inductor-16mm-od-pack-of-5/" + (at 184.15 62.23 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "2" + (uuid "d78f265a-3945-4d86-9895-cbfa3c01cea1") + ) + (pin "1" + (uuid "c460cd65-4ba2-45fe-bd1d-bd08c8684549") + ) + (instances + (project "SmartFuseBox" + (path "/c0735f89-9606-4ac5-a2cd-a138ec47fb2a" + (reference "L2") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 374.65 33.02 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "5030baad-13ab-4d4f-9a32-e2c1abf34738") + (property "Reference" "#PWR09" + (at 374.65 39.37 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 374.65 38.1 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 374.65 33.02 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 374.65 33.02 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 374.65 33.02 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "df927537-6669-495b-a1c8-5264449c7919") + ) + (instances + (project "SmartFuseBox" + (path "/c0735f89-9606-4ac5-a2cd-a138ec47fb2a" + (reference "#PWR09") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "PCM_Elektuur:R") + (at 137.16 154.94 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "51a579db-200a-4e8b-bc56-10813350fbd5") + (property "Reference" "R8" + (at 139.7 153.6699 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "1k" + (at 139.7 156.2099 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Passives:R_0805_2012Metric_Pad1.20x1.40mm_HandSolder" + (at 137.16 154.94 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 137.16 154.94 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "resistor" + (at 137.16 154.94 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Indicator" "+" + (at 133.985 151.765 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Rating" "W" + (at 139.7 158.115 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + (hide yes) + ) + ) + (pin "1" + (uuid "e738ed92-e7a6-43ad-94d3-459eacbe6b8f") + ) + (pin "2" + (uuid "a53cfb7d-239d-43a2-ae20-6ec453081b62") + ) + (instances + (project "SmartFuseBox" + (path "/c0735f89-9606-4ac5-a2cd-a138ec47fb2a" + (reference "R8") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 125.73 71.12 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "51d4acf2-fe7f-42c4-b1af-530e77e9c764") + (property "Reference" "#PWR051" + (at 125.73 77.47 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 125.73 76.2 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 125.73 71.12 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 125.73 71.12 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 125.73 71.12 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "aced82e0-af4c-404f-8a91-5ce88dcd40ce") + ) + (instances + (project "SmartFuseBox" + (path "/c0735f89-9606-4ac5-a2cd-a138ec47fb2a" + (reference "#PWR051") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Connector:Conn_01x02_Socket") + (at 38.1 50.8 0) + (mirror y) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "52a60b74-0479-43c2-b7f6-a2ce176222b3") + (property "Reference" "J1" + (at 26.67 54.61 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "Conn_01x02_Socket" + (at 26.67 52.07 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "TerminalBlock:TerminalBlock_MaiXu_MX126-5.0-02P_1x02_P5.00mm" + (at 38.1 50.8 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 38.1 50.8 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Generic connector, single row, 01x02, script generated" + (at 38.1 50.8 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field5" "" + (at 38.1 50.8 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Link" "https://robu.in/product/xy300va-5-0-xinya-2-pin-screw-terminal-blockgreen/?gad_source=1&gad_campaignid=17427802703&gbraid=0AAAAADvLFWeYd6KQJmaof5AqwX7G6G7RK&gclid=CjwKCAjw687NBhB4EiwAQ645dm3mhAdglKyHl_8GnzEDB_uXrpj4uQtWwQHHBEWzkz3MnmosnbtiIRoCAjYQAvD_BwE" + (at 38.1 50.8 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "MPN" "" + (at 38.1 50.8 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "2" + (uuid "207c4fcc-c741-45f8-a5f0-cab2c02fd934") + ) + (pin "1" + (uuid "82499a6f-bec9-47c8-b4df-f2435579c446") + ) + (instances + (project "" + (path "/c0735f89-9606-4ac5-a2cd-a138ec47fb2a" + (reference "J1") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Mechanical:MountingHole") + (at 189.23 298.45 0) + (unit 1) + (exclude_from_sim no) + (in_bom no) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "535352db-57f3-43ea-82f5-da3076084d90") + (property "Reference" "H1" + (at 191.77 297.1799 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "MountingHole" + (at 191.77 299.7199 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "MountingHole_3.2mm_M3" + (at 189.23 298.45 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 189.23 298.45 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Mounting Hole without connection" + (at 189.23 298.45 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (instances + (project "" + (path "/c0735f89-9606-4ac5-a2cd-a138ec47fb2a" + (reference "H1") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Sensor_Temperature:DS18B20") + (at 128.27 260.35 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "535fde36-9d9d-4b22-aa27-16f8c525811e") + (property "Reference" "U2" + (at 121.92 259.0799 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + ) + (property "Value" "DS18B20" + (at 121.92 261.6199 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + ) + (property "Footprint" "Package_TO_SOT_THT:TO-92_Inline" + (at 102.87 266.7 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "http://datasheets.maximintegrated.com/en/ds/DS18B20.pdf" + (at 124.46 254 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Programmable Resolution 1-Wire Digital Thermometer TO-92" + (at 128.27 260.35 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "2" + (uuid "5f8541a0-74f9-4d4d-8598-4a577372fa40") + ) + (pin "1" + (uuid "b1a77eca-0d9f-41bc-8b4b-9a4f5ff9de24") + ) + (pin "3" + (uuid "afb11d90-f8b1-4e46-86f0-f277df3e516b") + ) + (instances + (project "" + (path "/c0735f89-9606-4ac5-a2cd-a138ec47fb2a" + (reference "U2") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 374.65 223.52 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "5456311c-b7ea-4ee6-be27-5b9b417467f5") + (property "Reference" "#PWR034" + (at 374.65 229.87 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 374.65 228.6 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 374.65 223.52 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 374.65 223.52 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 374.65 223.52 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "fe557096-3f6a-468f-9c26-aeecc90cbb76") + ) + (instances + (project "SmartFuseBox" + (path "/c0735f89-9606-4ac5-a2cd-a138ec47fb2a" + (reference "#PWR034") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "PCM_Elektuur:R") + (at 52.07 245.11 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "54a6ba8e-7175-4b83-a6c4-2e0a476ced67") + (property "Reference" "R19" + (at 54.61 243.8399 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "4.7k" + (at 54.61 246.3799 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Passives:R_0805_2012Metric_Pad1.20x1.40mm_HandSolder" + (at 52.07 245.11 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 52.07 245.11 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "resistor" + (at 52.07 245.11 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Indicator" "+" + (at 48.895 241.935 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Rating" "W" + (at 54.61 248.285 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + (hide yes) + ) + ) + (pin "1" + (uuid "cd1f98d7-2bf2-4772-9370-7edfe8023de1") + ) + (pin "2" + (uuid "dbdc0c88-abf1-4936-9230-4db9231bd795") + ) + (instances + (project "SmartFuseBox" + (path "/c0735f89-9606-4ac5-a2cd-a138ec47fb2a" + (reference "R19") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:C") + (at 125.73 66.04 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "5544c458-686a-45e6-b000-c05d9897f744") + (property "Reference" "C30" + (at 127 64.77 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "0.1uf" + (at 127 67.31 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" + (at 126.6952 69.85 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 125.73 66.04 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Unpolarized capacitor" + (at 125.73 66.04 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Link" "https://robu.in/product/cl21a106kofnnne-samsang-16v-10uf-x5r-%C2%B110-0805-multilayer-ceramic-capacitors-mlcc-smd-smt-rohs/?gad_source=1&gad_campaignid=17427802703&gbraid=0AAAAADvLFWeYd6KQJmaof5AqwX7G6G7RK&gclid=CjwKCAjw687NBhB4EiwAQ645dvOPfam1y5aCD1uRQvjlmer72tAuxihwH4D1G8BPdKh6SRiWARJldBoCKCYQAvD_BwE" + (at 125.73 66.04 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "bcfd072d-0ddd-459e-9475-19b94c9f3e01") + ) + (pin "2" + (uuid "091abfad-dacc-425a-8efd-1c8d86345647") + ) + (instances + (project "SmartFuseBox" + (path "/c0735f89-9606-4ac5-a2cd-a138ec47fb2a" + (reference "C30") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 384.81 33.02 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "559b457f-c162-42d6-8902-216994a9094f") + (property "Reference" "#PWR010" + (at 384.81 39.37 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 384.81 38.1 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 384.81 33.02 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 384.81 33.02 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 384.81 33.02 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "82216f88-8f63-45e6-8869-665e81b73bc0") + ) + (instances + (project "SmartFuseBox" + (path "/c0735f89-9606-4ac5-a2cd-a138ec47fb2a" + (reference "#PWR010") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 60.96 292.1 0) + (mirror y) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "571511c8-3cc8-42eb-93c6-dd6d7246294b") + (property "Reference" "#PWR047" + (at 60.96 298.45 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 60.96 297.18 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 60.96 292.1 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 60.96 292.1 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 60.96 292.1 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "527f1028-0859-4238-ba09-7d90c19c7b98") + ) + (instances + (project "SmartFuseBox" + (path "/c0735f89-9606-4ac5-a2cd-a138ec47fb2a" + (reference "#PWR047") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 384.81 223.52 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "5ace98a7-e6b9-4ce2-8636-1e3e079faaa1") + (property "Reference" "#PWR035" + (at 384.81 229.87 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 384.81 228.6 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 384.81 223.52 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 384.81 223.52 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 384.81 223.52 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "c4cc36f8-2fd5-4857-bfdb-e8226c643190") + ) + (instances + (project "SmartFuseBox" + (path "/c0735f89-9606-4ac5-a2cd-a138ec47fb2a" + (reference "#PWR035") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "PCM_4ms_Power-symbol:PWR_FLAG") + (at 104.14 140.97 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "5b02d75a-b540-4629-a001-0e202e9d3037") + (property "Reference" "#FLG02" + (at 104.14 139.065 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "PWR_FLAG" + (at 104.14 135.89 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 104.14 140.97 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 104.14 140.97 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 104.14 140.97 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "d51beecc-6b1b-42cd-99ed-ec9dd36d586f") + ) + (instances + (project "SmartFuseBox" + (path "/c0735f89-9606-4ac5-a2cd-a138ec47fb2a" + (reference "#FLG02") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 93.98 60.96 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "5cc0c9c1-1313-44a8-8f67-0032563df001") + (property "Reference" "#PWR06" + (at 93.98 67.31 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 93.98 66.04 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 93.98 60.96 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 93.98 60.96 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 93.98 60.96 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "6a8d9218-21f3-4efc-9b68-5d86f644a551") + ) + (instances + (project "SmartFuseBox" + (path "/c0735f89-9606-4ac5-a2cd-a138ec47fb2a" + (reference "#PWR06") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "PCM_Diode_Schottky_AKL:SS54") + (at 455.93 152.4 90) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "5d372295-d64b-4452-b7b3-a695d1a8f4e6") + (property "Reference" "D7" + (at 458.47 150.8124 90) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + ) + (property "Value" "SS54" + (at 458.47 153.3524 90) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + ) + (property "Footprint" "Diode_SMD:D_SMA" + (at 455.93 152.4 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "https://www.laro.com.pl/pdf/ss56.pdf" + (at 455.93 152.4 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "SMC Schottky diode, 40V, 5A, Alternate KiCAD Library" + (at 455.93 152.4 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Link" "https://robu.in/product/ss54b-slkor-40v-550mv5a-5a-smbdo-214aa-schottky-diodes-rohs/?gad_source=1&gad_campaignid=17427802703&gbraid=0AAAAADvLFWeYd6KQJmaof5AqwX7G6G7RK&gclid=CjwKCAjw687NBhB4EiwAQ645dhFgK7QWTnrPqJBCFVMKkjTLbr6I5VJmPHffxaZ_pS_3KzeiLFGuoBoCukcQAvD_BwE" + (at 455.93 152.4 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "3214f50f-93d9-4a2a-af26-7cb7b59c45b8") + ) + (pin "2" + (uuid "0d251d87-b573-45f0-b95c-0aefd85cf6c1") + ) + (instances + (project "SmartFuseBox" + (path "/c0735f89-9606-4ac5-a2cd-a138ec47fb2a" + (reference "D7") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:C") + (at 304.8 217.17 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "5d8a1f07-fc04-4a11-856e-c6d658094aaf") + (property "Reference" "C26" + (at 306.07 219.71 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "10uf" + (at 306.07 222.25 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" + (at 305.7652 220.98 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 304.8 217.17 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Unpolarized capacitor" + (at 304.8 217.17 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Link" "https://robu.in/product/0402x104k100nt-fh-smd-multilayer-ceramic-capacitor-0-1-%C2%B5f100nf-10-v-0402-1005-metric-%C2%B1-10-x5r/" + (at 304.8 217.17 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "2d42ff3e-8c64-4306-8a8a-afeeb0fc146c") + ) + (pin "2" + (uuid "9aeb97d2-7dcf-49d9-ac3d-e75bcab238cb") + ) + (instances + (project "SmartFuseBox" + (path "/c0735f89-9606-4ac5-a2cd-a138ec47fb2a" + (reference "C26") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "PCM_Diode_Schottky_AKL:SS54") + (at 461.01 247.65 90) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "5d941e76-20ab-458f-bcdc-8f8372f35e3a") + (property "Reference" "D9" + (at 463.55 246.0624 90) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + ) + (property "Value" "SS54" + (at 463.55 248.6024 90) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + ) + (property "Footprint" "Diode_SMD:D_SMA" + (at 461.01 247.65 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "https://www.laro.com.pl/pdf/ss56.pdf" + (at 461.01 247.65 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "SMC Schottky diode, 40V, 5A, Alternate KiCAD Library" + (at 461.01 247.65 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Link" "https://robu.in/product/ss54b-slkor-40v-550mv5a-5a-smbdo-214aa-schottky-diodes-rohs/?gad_source=1&gad_campaignid=17427802703&gbraid=0AAAAADvLFWeYd6KQJmaof5AqwX7G6G7RK&gclid=CjwKCAjw687NBhB4EiwAQ645dhFgK7QWTnrPqJBCFVMKkjTLbr6I5VJmPHffxaZ_pS_3KzeiLFGuoBoCukcQAvD_BwE" + (at 461.01 247.65 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "b1803979-a350-48bc-b04e-f15f8134d2c9") + ) + (pin "2" + (uuid "b6ff2da4-f9d7-4753-848d-1a08c07994ad") + ) + (instances + (project "SmartFuseBox" + (path "/c0735f89-9606-4ac5-a2cd-a138ec47fb2a" + (reference "D9") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 203.2 243.84 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "6021cb71-8091-4b95-9b94-9f368684d18d") + (property "Reference" "#PWR029" + (at 203.2 250.19 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 203.2 248.92 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 203.2 243.84 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 203.2 243.84 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 203.2 243.84 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "e8d683a3-f2bf-4475-9e15-01a01130dcd0") + ) + (instances + (project "SmartFuseBox" + (path "/c0735f89-9606-4ac5-a2cd-a138ec47fb2a" + (reference "#PWR029") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 463.55 31.75 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "63597601-d789-40c6-b63d-4e59b6b9ac66") + (property "Reference" "#PWR012" + (at 463.55 38.1 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 463.55 36.83 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 463.55 31.75 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 463.55 31.75 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 463.55 31.75 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "63b04347-d570-4591-af73-c79812827587") + ) + (instances + (project "SmartFuseBox" + (path "/c0735f89-9606-4ac5-a2cd-a138ec47fb2a" + (reference "#PWR012") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:C") + (at 382.27 120.65 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "67fb4182-04b0-424c-9a32-73570d4a0aff") + (property "Reference" "C18" + (at 383.54 123.19 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "10uf" + (at 383.54 125.73 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" + (at 383.2352 124.46 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 382.27 120.65 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Unpolarized capacitor" + (at 382.27 120.65 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Link" "https://robu.in/product/0402x104k100nt-fh-smd-multilayer-ceramic-capacitor-0-1-%C2%B5f100nf-10-v-0402-1005-metric-%C2%B1-10-x5r/" + (at 382.27 120.65 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "0bf66830-d3d7-4bca-8b34-a4e8a32abcf2") + ) + (pin "2" + (uuid "e6982bc1-6fef-4562-a846-f4033763f288") + ) + (instances + (project "SmartFuseBox" + (path "/c0735f89-9606-4ac5-a2cd-a138ec47fb2a" + (reference "C18") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:C") + (at 458.47 119.38 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "6986c89f-7cd0-4cb2-ba9a-df892d6ee068") + (property "Reference" "C19" + (at 459.74 118.11 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "0.1uf" + (at 459.74 120.65 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" + (at 459.4352 123.19 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 458.47 119.38 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Unpolarized capacitor" + (at 458.47 119.38 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Link" "https://robu.in/product/cl21a106kofnnne-samsang-16v-10uf-x5r-%C2%B110-0805-multilayer-ceramic-capacitors-mlcc-smd-smt-rohs/?gad_source=1&gad_campaignid=17427802703&gbraid=0AAAAADvLFWeYd6KQJmaof5AqwX7G6G7RK&gclid=CjwKCAjw687NBhB4EiwAQ645dvOPfam1y5aCD1uRQvjlmer72tAuxihwH4D1G8BPdKh6SRiWARJldBoCKCYQAvD_BwE" + (at 458.47 119.38 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "09f86e14-69c2-4f5a-8d91-41da9c76ad90") + ) + (pin "2" + (uuid "a0212d43-c5dc-4860-aed6-605acdf4f75d") + ) + (instances + (project "SmartFuseBox" + (path "/c0735f89-9606-4ac5-a2cd-a138ec47fb2a" + (reference "C19") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:C") + (at 384.81 218.44 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "69e865f8-ac52-4e7c-9caf-ebee5287a384") + (property "Reference" "C22" + (at 386.08 220.98 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "10uf" + (at 386.08 223.52 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" + (at 385.7752 222.25 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 384.81 218.44 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Unpolarized capacitor" + (at 384.81 218.44 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Link" "https://robu.in/product/0402x104k100nt-fh-smd-multilayer-ceramic-capacitor-0-1-%C2%B5f100nf-10-v-0402-1005-metric-%C2%B1-10-x5r/" + (at 384.81 218.44 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "d4d2cd6e-77de-4530-af8f-f49cb5e8916e") + ) + (pin "2" + (uuid "e548e58a-db70-4cfd-ae3b-7adb61c80867") + ) + (instances + (project "SmartFuseBox" + (path "/c0735f89-9606-4ac5-a2cd-a138ec47fb2a" + (reference "C22") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Connector:Conn_01x04_Socket") + (at 66.04 287.02 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "6c1e4d78-c511-467b-ac23-71997de02cac") + (property "Reference" "J11" + (at 67.31 287.0199 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "Conn_01x04_Socket" + (at 67.31 289.5599 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Connector_JST:JST_PH_S4B-PH-K_1x04_P2.00mm_Horizontal" + (at 66.04 287.02 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 66.04 287.02 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Generic connector, single row, 01x04, script generated" + (at 66.04 287.02 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "4" + (uuid "4aa0b7b0-da06-47f1-a4ef-bb65cc976922") + ) + (pin "2" + (uuid "0d4bc562-f194-4da5-bd23-8141529581a2") + ) + (pin "3" + (uuid "9d1fd2cf-c40e-4c67-b92d-d0ec37a4d7eb") + ) + (pin "1" + (uuid "5c640725-475c-48d7-b6bb-f9dd76bd3cf5") + ) + (instances + (project "" + (path "/c0735f89-9606-4ac5-a2cd-a138ec47fb2a" + (reference "J11") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Connector:Conn_01x03_Socket") + (at 347.98 62.23 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "6c568724-4aee-4a89-88fd-14e366502339") + (property "Reference" "J2" + (at 342.9 54.61 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "Conn_01x03_Socket" + (at 342.9 57.15 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "TerminalBlock:TerminalBlock_MaiXu_MX126-5.0-03P_1x03_P5.00mm" + (at 347.98 62.23 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 347.98 62.23 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Generic connector, single row, 01x03, script generated" + (at 347.98 62.23 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "3" + (uuid "87126f72-2c6e-4ae7-80c1-586b583878fd") + ) + (pin "1" + (uuid "20045927-6494-4182-ab6a-7487c6bc2a5a") + ) + (pin "2" + (uuid "6b2ba607-53b4-4763-a2ed-d5c5de9a138a") + ) + (instances + (project "" + (path "/c0735f89-9606-4ac5-a2cd-a138ec47fb2a" + (reference "J2") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:C") + (at 139.7 71.12 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "6f06a967-3966-4bee-9496-d9221cc3a739") + (property "Reference" "C32" + (at 140.97 69.85 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "4.8nf" + (at 140.97 72.39 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" + (at 140.6652 74.93 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 139.7 71.12 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Unpolarized capacitor" + (at 139.7 71.12 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Link" "https://robu.in/product/cl21a106kofnnne-samsang-16v-10uf-x5r-%C2%B110-0805-multilayer-ceramic-capacitors-mlcc-smd-smt-rohs/?gad_source=1&gad_campaignid=17427802703&gbraid=0AAAAADvLFWeYd6KQJmaof5AqwX7G6G7RK&gclid=CjwKCAjw687NBhB4EiwAQ645dvOPfam1y5aCD1uRQvjlmer72tAuxihwH4D1G8BPdKh6SRiWARJldBoCKCYQAvD_BwE" + (at 139.7 71.12 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "38bd5fda-df3c-44fd-9740-e0f8a4773b8c") + ) + (pin "2" + (uuid "9ad0108d-7566-47da-8360-3f9c45733e6b") + ) + (instances + (project "SmartFuseBox" + (path "/c0735f89-9606-4ac5-a2cd-a138ec47fb2a" + (reference "C32") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "ESP32-S3-DEVKITC-1-N16R8V:ESP32-S3-DEVKITC-1-N16R8V") + (at 78.74 171.45 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "7154f8bf-f732-412f-9576-62d66a5240a5") + (property "Reference" "U6" + (at 78.74 133.35 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "ESP32-S3-DEVKITC-1-N16R8V" + (at 78.74 135.89 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Modules_Sensors:XCVR_ESP32-S3-DEVKITC-1-N16R8V" + (at 78.74 171.45 0) + (effects + (font + (size 1.27 1.27) + ) + (justify bottom) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 78.74 171.45 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 78.74 171.45 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "MF" "Espressif Systems" + (at 78.74 171.45 0) + (effects + (font + (size 1.27 1.27) + ) + (justify bottom) + (hide yes) + ) + ) + (property "MAXIMUM_PACKAGE_HEIGHT" "7.39mm" + (at 78.74 171.45 0) + (effects + (font + (size 1.27 1.27) + ) + (justify bottom) + (hide yes) + ) + ) + (property "CREATOR" "RODRIGO" + (at 78.74 171.45 0) + (effects + (font + (size 1.27 1.27) + ) + (justify bottom) + (hide yes) + ) + ) + (property "Price" "None" + (at 78.74 171.45 0) + (effects + (font + (size 1.27 1.27) + ) + (justify bottom) + (hide yes) + ) + ) + (property "Package" "None" + (at 78.74 171.45 0) + (effects + (font + (size 1.27 1.27) + ) + (justify bottom) + (hide yes) + ) + ) + (property "Check_prices" "https://www.snapeda.com/parts/ESP32-S3-DEVKITC-1-N16R8V/Espressif+Systems/view-part/?ref=eda" + (at 78.74 171.45 0) + (effects + (font + (size 1.27 1.27) + ) + (justify bottom) + (hide yes) + ) + ) + (property "STANDARD" "Manufacturer Recommendations" + (at 78.74 171.45 0) + (effects + (font + (size 1.27 1.27) + ) + (justify bottom) + (hide yes) + ) + ) + (property "PARTREV" "1.1" + (at 78.74 171.45 0) + (effects + (font + (size 1.27 1.27) + ) + (justify bottom) + (hide yes) + ) + ) + (property "VERIFIER" "" + (at 78.74 171.45 0) + (effects + (font + (size 1.27 1.27) + ) + (justify bottom) + (hide yes) + ) + ) + (property "SnapEDA_Link" "https://www.snapeda.com/parts/ESP32-S3-DEVKITC-1-N16R8V/Espressif+Systems/view-part/?ref=snap" + (at 78.74 171.45 0) + (effects + (font + (size 1.27 1.27) + ) + (justify bottom) + (hide yes) + ) + ) + (property "MP" "ESP32-S3-DEVKITC-1-N16R8V" + (at 78.74 171.45 0) + (effects + (font + (size 1.27 1.27) + ) + (justify bottom) + (hide yes) + ) + ) + (property "Description_1" "Development Boards & Kits - Wireless Gen-Purpose Dev Board, embeds ESP32-S3-WROOM-2-N16R8V, 16 MB Octal Flash, 8 MB Octal PSRAM, with Pin Header" + (at 78.74 171.45 0) + (effects + (font + (size 1.27 1.27) + ) + (justify bottom) + (hide yes) + ) + ) + (property "Availability" "Not in stock" + (at 78.74 171.45 0) + (effects + (font + (size 1.27 1.27) + ) + (justify bottom) + (hide yes) + ) + ) + (property "MANUFACTURER" "Espressif Systems" + (at 78.74 171.45 0) + (effects + (font + (size 1.27 1.27) + ) + (justify bottom) + (hide yes) + ) + ) + (pin "J1_14" + (uuid "015d9097-9652-458a-a57a-903ad515d654") + ) + (pin "J3_11" + (uuid "a33b3df0-416e-4efc-937c-86feda66ab49") + ) + (pin "J1_11" + (uuid "f866b9e2-8269-414c-a717-a88118827a72") + ) + (pin "J3_18" + (uuid "5ca2b3b9-05ee-42bf-ab03-5332ffa66f09") + ) + (pin "J1_1" + (uuid "c09501cb-e438-4034-b5e1-0708a7fe3ef0") + ) + (pin "J1_10" + (uuid "3ee1ce4b-51f1-4e70-8d3e-2d337dd55467") + ) + (pin "J1_2" + (uuid "22d5e8d9-3f19-4dee-ade5-c9f06304b789") + ) + (pin "J1_21" + (uuid "74b60894-2a2b-487f-96bd-6fa2def1cd9d") + ) + (pin "J3_13" + (uuid "e38c87ea-1387-4d31-95ed-23f809484872") + ) + (pin "J3_10" + (uuid "c1657986-1b1a-4949-8b79-f864440604e1") + ) + (pin "J3_15" + (uuid "1ab92b97-db9c-4ce7-aa53-b74781378856") + ) + (pin "J3_12" + (uuid "2378c3a4-70c9-40c2-bae8-c00daac470bc") + ) + (pin "J3_7" + (uuid "ce20b900-b652-4be5-9e12-b0b07ffd5f47") + ) + (pin "J3_17" + (uuid "3443b0e4-7fa7-444f-b151-95f168ef0392") + ) + (pin "J3_19" + (uuid "136afc68-a4f2-4781-9f5c-1954ac786ded") + ) + (pin "J1_22" + (uuid "e7745215-6be7-4c0f-97c7-90f9e8b202cb") + ) + (pin "J3_9" + (uuid "fbef0faa-77e9-4e35-a90c-ecdc5f2d65d1") + ) + (pin "J3_3" + (uuid "2c059c58-89f4-4459-be85-32421a617496") + ) + (pin "J3_1" + (uuid "ce264591-5ba3-491f-9eb5-03533c2e789f") + ) + (pin "J3_8" + (uuid "c4c3e816-a1de-4281-9b04-1156e921c3af") + ) + (pin "J3_16" + (uuid "1d72c26c-b1c4-476e-935e-7f70f60a2bfe") + ) + (pin "J3_2" + (uuid "8022bc2a-2f44-4c09-aebd-93ffac12b4a2") + ) + (pin "J3_6" + (uuid "ae552b9c-9953-4189-b5bb-eeeea2360044") + ) + (pin "J3_20" + (uuid "65f65a22-a6a0-480d-81ab-28cf6accaa99") + ) + (pin "J3_21" + (uuid "3d6e02b4-4ec0-4aed-a53d-da880d5cdb18") + ) + (pin "J3_22" + (uuid "14aab2c9-7349-4a44-abd6-372f1c3e740a") + ) + (pin "J1_3" + (uuid "b5e50e41-f158-4912-a73c-744cfda33dd0") + ) + (pin "J3_5" + (uuid "b52052ae-ec54-48ea-b270-8925626215b8") + ) + (pin "J1_6" + (uuid "444c7b89-eec9-4ee1-8787-9e5f10e73c2b") + ) + (pin "J1_5" + (uuid "f91c7eca-91c3-4177-87b3-4c26a09581d8") + ) + (pin "J3_4" + (uuid "d22d134d-0e13-4acc-8073-083050cbaaff") + ) + (pin "J3_14" + (uuid "ae1a9f35-86ac-4cfb-b26e-4cc2bd928637") + ) + (pin "J1_4" + (uuid "641a7653-6ccb-476d-8b0a-53e4ff4f05f2") + ) + (pin "J1_13" + (uuid "3f93e5e3-c958-484d-8bf3-da6806364682") + ) + (pin "J1_19" + (uuid "e3351620-ba84-469d-8372-b81da2410990") + ) + (pin "J1_18" + (uuid "29e495bd-39c9-4b7a-8f75-a570be0b5e0c") + ) + (pin "J1_12" + (uuid "7727082a-b2df-4faa-b64c-176ae6890557") + ) + (pin "J1_15" + (uuid "733d2f78-1fec-4561-9fae-d0325870694d") + ) + (pin "J1_16" + (uuid "6210550d-a41e-4e63-ae89-57c6d3a230ac") + ) + (pin "J1_17" + (uuid "6443d20d-f09c-4855-933b-9a970b48580b") + ) + (pin "J1_7" + (uuid "58923efd-a8b7-4180-b1a2-af68a13c9509") + ) + (pin "J1_8" + (uuid "2260887b-1bb5-43a4-b536-2203e9510e01") + ) + (pin "J1_20" + (uuid "2b588c6d-95dd-4f43-a628-d59c91bdb52d") + ) + (pin "J1_9" + (uuid "5fd9a0dc-44ba-4e94-b5d3-1ba01439c17d") + ) + (instances + (project "" + (path "/c0735f89-9606-4ac5-a2cd-a138ec47fb2a" + (reference "U6") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Connector:Conn_01x02_Socket") + (at 227.33 314.96 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "71700133-5a76-4621-894b-ab40bc34f790") + (property "Reference" "J15" + (at 200.66 309.88 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "Conn_01x02_Socket" + (at 200.66 312.42 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Connector_JST:JST_XH_S2B-XH-A-1_1x02_P2.50mm_Horizontal" + (at 227.33 314.96 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 227.33 314.96 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Generic connector, single row, 01x02, script generated" + (at 227.33 314.96 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "2" + (uuid "8a657963-074c-408c-9d26-9432c4387e4d") + ) + (pin "1" + (uuid "cb4f675a-aa95-4b9b-ae8d-0b655864c0f8") + ) + (instances + (project "" + (path "/c0735f89-9606-4ac5-a2cd-a138ec47fb2a" + (reference "J15") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 468.63 124.46 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "71dcb6ab-a495-49cf-b924-9efefe1596bc") + (property "Reference" "#PWR031" + (at 468.63 130.81 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 468.63 129.54 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 468.63 124.46 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 468.63 124.46 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 468.63 124.46 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "7ae7581c-3cab-4e2d-b7ca-2c53c143748d") + ) + (instances + (project "SmartFuseBox" + (path "/c0735f89-9606-4ac5-a2cd-a138ec47fb2a" + (reference "#PWR031") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 157.48 123.19 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "72374717-53bb-49e2-b05c-17194c001dba") + (property "Reference" "#PWR026" + (at 157.48 129.54 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 157.48 128.27 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 157.48 123.19 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 157.48 123.19 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 157.48 123.19 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "3f307a5b-5c45-4cf3-b23e-c55bd59d51ef") + ) + (instances + (project "SmartFuseBox" + (path "/c0735f89-9606-4ac5-a2cd-a138ec47fb2a" + (reference "#PWR026") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 36.83 275.59 0) + (mirror y) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "73c9223b-e84e-4c32-bc06-22a68dd471e8") + (property "Reference" "#PWR048" + (at 36.83 281.94 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 36.83 280.67 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 36.83 275.59 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 36.83 275.59 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 36.83 275.59 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "95fceef7-f155-4eda-9bbe-b2606b10e0ef") + ) + (instances + (project "SmartFuseBox" + (path "/c0735f89-9606-4ac5-a2cd-a138ec47fb2a" + (reference "#PWR048") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "PCM_Elektuur:R") + (at 193.04 321.31 90) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "7a10cfd2-3101-478a-9bcd-bfcd291949f5") + (property "Reference" "R1" + (at 193.04 314.96 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "1k" + (at 193.04 317.5 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Passives:R_0805_2012Metric_Pad1.20x1.40mm_HandSolder" + (at 193.04 321.31 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 193.04 321.31 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "resistor" + (at 193.04 321.31 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Indicator" "+" + (at 189.865 324.485 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Rating" "W" + (at 196.215 318.77 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + (hide yes) + ) + ) + (pin "1" + (uuid "d3c0072e-9295-438d-94c2-f47f6b17d2b7") + ) + (pin "2" + (uuid "0883a4d2-29c7-46eb-8dff-7becb10d05a1") + ) + (instances + (project "SmartFuseBox" + (path "/c0735f89-9606-4ac5-a2cd-a138ec47fb2a" + (reference "R1") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:C_Polarized") + (at 93.98 54.61 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "7a901010-01b6-4a27-b4d1-3731c85482ac") + (property "Reference" "C4" + (at 95.25 58.42 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "470uf" + (at 95.25 60.96 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Capacitor_SMD:CP_Elec_10x10.5" + (at 94.9452 58.42 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 93.98 54.61 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Polarized capacitor" + (at 93.98 54.61 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Link" "https://robu.in/product/efft6r3ada681m0677-follon-680uf-6-3v-%C2%B120-smdd6-3xl7-7mm-aluminum-electrolytic-capacitors-smd-rohs/" + (at 93.98 54.61 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "e44e2ea9-70ea-481f-b995-3e2095b54b01") + ) + (pin "2" + (uuid "b2b6eddc-b36a-4faf-9fdb-9d3fd51afd94") + ) + (instances + (project "SmartFuseBox" + (path "/c0735f89-9606-4ac5-a2cd-a138ec47fb2a" + (reference "C4") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "PCM_Diode_Schottky_AKL:SS54") + (at 234.95 317.5 270) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "7cc03f7f-60b8-4987-baa1-ecbe3080621d") + (property "Reference" "D1" + (at 237.49 316.5474 90) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "SS54" + (at 237.49 319.0874 90) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Diode_SMD:D_SMA" + (at 234.95 317.5 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "https://www.laro.com.pl/pdf/ss56.pdf" + (at 234.95 317.5 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "SMC Schottky diode, 40V, 5A, Alternate KiCAD Library" + (at 234.95 317.5 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Link" "https://robu.in/product/ss54b-slkor-40v-550mv5a-5a-smbdo-214aa-schottky-diodes-rohs/?gad_source=1&gad_campaignid=17427802703&gbraid=0AAAAADvLFWeYd6KQJmaof5AqwX7G6G7RK&gclid=CjwKCAjw687NBhB4EiwAQ645dhFgK7QWTnrPqJBCFVMKkjTLbr6I5VJmPHffxaZ_pS_3KzeiLFGuoBoCukcQAvD_BwE" + (at 234.95 317.5 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "6d5e8dc5-0ec8-40d9-b7d7-4638e6484268") + ) + (pin "2" + (uuid "2e899820-f7d0-41d6-97f5-dfaa62ad1759") + ) + (instances + (project "SmartFuseBox" + (path "/c0735f89-9606-4ac5-a2cd-a138ec47fb2a" + (reference "D1") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "PCM_Elektuur:R") + (at 41.91 245.11 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "7d3f2573-1911-433f-a92a-b59b366eaaeb") + (property "Reference" "R12" + (at 44.45 243.8399 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "4.7k" + (at 44.45 246.3799 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Passives:R_0805_2012Metric_Pad1.20x1.40mm_HandSolder" + (at 41.91 245.11 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 41.91 245.11 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "resistor" + (at 41.91 245.11 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Indicator" "+" + (at 38.735 241.935 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Rating" "W" + (at 44.45 248.285 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + (hide yes) + ) + ) + (pin "1" + (uuid "a2e27986-5398-4bb8-a75c-7e0133799d72") + ) + (pin "2" + (uuid "c2afb340-142f-445d-96fc-efd89b622110") + ) + (instances + (project "SmartFuseBox" + (path "/c0735f89-9606-4ac5-a2cd-a138ec47fb2a" + (reference "R12") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:C") + (at 63.5 115.57 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "7e1aeb10-2d8c-41d6-b10c-3676cf148353") + (property "Reference" "C9" + (at 64.77 114.3 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "0.1uf" + (at 64.77 116.84 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" + (at 64.4652 119.38 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 63.5 115.57 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Unpolarized capacitor" + (at 63.5 115.57 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Link" "https://robu.in/product/cl21a106kofnnne-samsang-16v-10uf-x5r-%C2%B110-0805-multilayer-ceramic-capacitors-mlcc-smd-smt-rohs/?gad_source=1&gad_campaignid=17427802703&gbraid=0AAAAADvLFWeYd6KQJmaof5AqwX7G6G7RK&gclid=CjwKCAjw687NBhB4EiwAQ645dvOPfam1y5aCD1uRQvjlmer72tAuxihwH4D1G8BPdKh6SRiWARJldBoCKCYQAvD_BwE" + (at 63.5 115.57 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "3d295b3b-f3e0-4ba6-855b-097b8df1c62c") + ) + (pin "2" + (uuid "8feddc6c-44d8-4a0d-920a-b57aef320742") + ) + (instances + (project "SmartFuseBox" + (path "/c0735f89-9606-4ac5-a2cd-a138ec47fb2a" + (reference "C9") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Regulator_Switching:MP2303ADN") + (at 160.02 62.23 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "8ad75dd2-25ee-48cf-b48a-26c0a6a2adcf") + (property "Reference" "U3" + (at 162.1633 50.8 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "MP2303ADN" + (at 162.1633 53.34 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Package_SO:SOIC-8-1EP_3.9x4.9mm_P1.27mm_EP2.62x3.51mm" + (at 160.02 64.77 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "https://www.monolithicpower.com/pub/media/document/MP2303A_r1.1.pdf" + (at 160.02 64.77 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Synchronous Rectified 3A, 28V, 360kHz Step-Down Converter, SOIC-8" + (at 160.02 62.23 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "947feae9-eb92-420e-8f55-337d80ec488b") + ) + (pin "6" + (uuid "a1c23f65-b14b-4c08-b5c7-1abe6407a43b") + ) + (pin "7" + (uuid "5065876f-4d65-4c5a-aa01-6d9f99e86d4d") + ) + (pin "5" + (uuid "534d6b26-0bed-4076-84bb-c15f01dacded") + ) + (pin "8" + (uuid "113e67ee-8007-40e0-9fa0-71235e53c641") + ) + (pin "4" + (uuid "0913d4db-287f-42f9-b1e1-de5cfa24cc86") + ) + (pin "2" + (uuid "3fa703af-a5b4-4a4a-868e-391cfe8f26a3") + ) + (pin "3" + (uuid "48301cc1-dc20-442c-8dae-6ec8b40782ee") + ) + (instances + (project "" + (path "/c0735f89-9606-4ac5-a2cd-a138ec47fb2a" + (reference "U3") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "PCM_Diode_Schottky_AKL:SS54") + (at 372.11 60.96 90) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "8c3bbfe4-173b-48ec-9479-d50d8bb663e7") + (property "Reference" "D4" + (at 374.65 59.3724 90) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + ) + (property "Value" "SS54" + (at 374.65 61.9124 90) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + ) + (property "Footprint" "Diode_SMD:D_SMA" + (at 372.11 60.96 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "https://www.laro.com.pl/pdf/ss56.pdf" + (at 372.11 60.96 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "SMC Schottky diode, 40V, 5A, Alternate KiCAD Library" + (at 372.11 60.96 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Link" "https://robu.in/product/ss54b-slkor-40v-550mv5a-5a-smbdo-214aa-schottky-diodes-rohs/?gad_source=1&gad_campaignid=17427802703&gbraid=0AAAAADvLFWeYd6KQJmaof5AqwX7G6G7RK&gclid=CjwKCAjw687NBhB4EiwAQ645dhFgK7QWTnrPqJBCFVMKkjTLbr6I5VJmPHffxaZ_pS_3KzeiLFGuoBoCukcQAvD_BwE" + (at 372.11 60.96 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "0b7a2404-91b5-4133-a89f-9d937833a5f1") + ) + (pin "2" + (uuid "bfc15134-d635-4434-a4ba-a71e1f8f2c68") + ) + (instances + (project "SmartFuseBox" + (path "/c0735f89-9606-4ac5-a2cd-a138ec47fb2a" + (reference "D4") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:C") + (at 175.26 57.15 90) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "8c439172-40b6-4435-af25-3082dfbc0706") + (property "Reference" "C29" + (at 177.8 55.88 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "10nf" + (at 180.34 55.88 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" + (at 179.07 56.1848 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 175.26 57.15 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Unpolarized capacitor" + (at 175.26 57.15 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Link" "https://robu.in/product/0402x104k100nt-fh-smd-multilayer-ceramic-capacitor-0-1-%C2%B5f100nf-10-v-0402-1005-metric-%C2%B1-10-x5r/" + (at 175.26 57.15 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "ad62e063-639c-4ac1-8d2d-abe89d1c7dad") + ) + (pin "2" + (uuid "decce179-073c-45d7-b481-f4014fdff39a") + ) + (instances + (project "SmartFuseBox" + (path "/c0735f89-9606-4ac5-a2cd-a138ec47fb2a" + (reference "C29") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 160.02 85.09 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "8d2fa799-a439-4864-be4c-096b2793a0a0") + (property "Reference" "#PWR054" + (at 160.02 91.44 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 160.02 90.17 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 160.02 85.09 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 160.02 85.09 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 160.02 85.09 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "166ea8b5-6125-4579-acc3-2e828228f675") + ) + (instances + (project "SmartFuseBox" + (path "/c0735f89-9606-4ac5-a2cd-a138ec47fb2a" + (reference "#PWR054") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "PCM_Elektuur:R") + (at 139.7 80.01 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "8e08f0ce-698f-414b-a5eb-ef81f155d675") + (property "Reference" "R15" + (at 142.24 78.7399 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "8.2k" + (at 142.24 81.2799 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Passives:R_0805_2012Metric_Pad1.20x1.40mm_HandSolder" + (at 139.7 80.01 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 139.7 80.01 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "resistor" + (at 139.7 80.01 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Indicator" "+" + (at 136.525 76.835 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Rating" "W" + (at 142.24 83.185 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + (hide yes) + ) + ) + (pin "1" + (uuid "e41754ac-3dde-47f6-a07c-2ac8fcfd689c") + ) + (pin "2" + (uuid "82866044-1cc4-4b38-b3cd-bc6dcdcd5eef") + ) + (instances + (project "SmartFuseBox" + (path "/c0735f89-9606-4ac5-a2cd-a138ec47fb2a" + (reference "R15") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 308.61 129.54 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "8ec3d1df-570c-4743-bd40-6a8265ff556c") + (property "Reference" "#PWR05" + (at 308.61 135.89 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 308.61 134.62 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 308.61 129.54 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 308.61 129.54 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 308.61 129.54 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "a55f68b4-34e9-42fd-8db0-a4eab51a1666") + ) + (instances + (project "SmartFuseBox" + (path "/c0735f89-9606-4ac5-a2cd-a138ec47fb2a" + (reference "#PWR05") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "PCM_Diode_Schottky_AKL:SS54") + (at 71.12 50.8 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "914df5d6-bc6a-4706-80b8-a191f82049e4") + (property "Reference" "D2" + (at 71.4375 44.45 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "SS54" + (at 71.4375 46.99 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Diode_SMD:D_SMA" + (at 71.12 50.8 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "https://www.laro.com.pl/pdf/ss56.pdf" + (at 71.12 50.8 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "SMC Schottky diode, 40V, 5A, Alternate KiCAD Library" + (at 71.12 50.8 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Link" "https://robu.in/product/ss54b-slkor-40v-550mv5a-5a-smbdo-214aa-schottky-diodes-rohs/?gad_source=1&gad_campaignid=17427802703&gbraid=0AAAAADvLFWeYd6KQJmaof5AqwX7G6G7RK&gclid=CjwKCAjw687NBhB4EiwAQ645dhFgK7QWTnrPqJBCFVMKkjTLbr6I5VJmPHffxaZ_pS_3KzeiLFGuoBoCukcQAvD_BwE" + (at 71.12 50.8 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "f4f2d699-ce2b-4368-9d6d-d2d485866242") + ) + (pin "2" + (uuid "de215e90-1874-4ce3-92e1-53f3fc0f2473") + ) + (instances + (project "" + (path "/c0735f89-9606-4ac5-a2cd-a138ec47fb2a" + (reference "D2") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "PCM_Elektuur:R") + (at 185.42 161.29 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp yes) + (fields_autoplaced yes) + (uuid "91f5fc2e-e562-493d-bff8-4b37c7e7e2f4") + (property "Reference" "R11" + (at 187.96 160.0199 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "120R" + (at 187.96 162.5599 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Passives:R_0805_2012Metric_Pad1.20x1.40mm_HandSolder" + (at 185.42 161.29 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 185.42 161.29 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "resistor" + (at 185.42 161.29 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Indicator" "+" + (at 182.245 158.115 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Rating" "W" + (at 187.96 164.465 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + (hide yes) + ) + ) + (pin "1" + (uuid "d095f34a-4f73-40d4-a20c-b7f2caa29d9f") + ) + (pin "2" + (uuid "f2a691e1-5a67-464e-b6be-61616b3c753c") + ) + (instances + (project "SmartFuseBox" + (path "/c0735f89-9606-4ac5-a2cd-a138ec47fb2a" + (reference "R11") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 304.8 34.29 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "93a663a4-8070-4723-ba7e-6d2187eeeb44") + (property "Reference" "#PWR028" + (at 304.8 40.64 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 304.8 39.37 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 304.8 34.29 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 304.8 34.29 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 304.8 34.29 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "55329171-5325-4cef-a35b-795b04bdf66c") + ) + (instances + (project "SmartFuseBox" + (path "/c0735f89-9606-4ac5-a2cd-a138ec47fb2a" + (reference "#PWR028") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Relay:SANYOU_SRD_Form_C") + (at 392.43 251.46 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "93da0be3-eafc-49b0-87c0-1683ca522b12") + (property "Reference" "K6" + (at 389.89 233.68 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "SRD-12VDC-SL-C" + (at 389.89 236.22 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Relay_THT:Relay_SPDT_SANYOU_SRD_Series_Form_C" + (at 403.86 252.73 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + (hide yes) + ) + ) + (property "Datasheet" "http://www.sanyourelay.ca/public/products/pdf/SRD.pdf" + (at 392.43 251.46 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Sanyo SRD relay, Single Pole Miniature Power Relay," + (at 392.43 251.46 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Link" "https://robu.in/product/1-month-warranty-1027/" + (at 392.43 251.46 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "4" + (uuid "8fc68baf-a44c-436e-8036-1ec9152774d2") + ) + (pin "2" + (uuid "9d12ea93-3d3f-4d68-92e1-9aa26be54972") + ) + (pin "3" + (uuid "053d3344-4cec-4a38-a4d8-82205343c4ec") + ) + (pin "5" + (uuid "24bfc098-b666-473c-9324-756ff688f2dc") + ) + (pin "1" + (uuid "655eaae7-cf40-4b04-a1ff-f54b14572fc2") + ) + (instances + (project "SmartFuseBox" + (path "/c0735f89-9606-4ac5-a2cd-a138ec47fb2a" + (reference "K6") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 382.27 125.73 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "9603fdf7-5beb-483e-bafa-d7c17d9bd703") + (property "Reference" "#PWR018" + (at 382.27 132.08 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 382.27 130.81 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 382.27 125.73 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 382.27 125.73 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 382.27 125.73 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "d7ab6c87-0d6e-4076-9b70-6ecf87276bbc") + ) + (instances + (project "SmartFuseBox" + (path "/c0735f89-9606-4ac5-a2cd-a138ec47fb2a" + (reference "#PWR018") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:C_Polarized") + (at 83.82 55.88 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "9712f66c-ff84-402d-bdbd-ce1b95536963") + (property "Reference" "C3" + (at 85.09 59.69 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "680uf" + (at 85.09 62.23 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Capacitor_SMD:CP_Elec_6.3x7.7" + (at 84.7852 59.69 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 83.82 55.88 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Polarized capacitor" + (at 83.82 55.88 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Link" "https://robu.in/product/efft6r3ada681m0677-follon-680uf-6-3v-%C2%B120-smdd6-3xl7-7mm-aluminum-electrolytic-capacitors-smd-rohs/" + (at 83.82 55.88 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "8016432d-9026-4c7d-970e-e8dc747c726f") + ) + (pin "2" + (uuid "8ab57613-89a6-444b-9576-a51bb5ab3452") + ) + (instances + (project "" + (path "/c0735f89-9606-4ac5-a2cd-a138ec47fb2a" + (reference "C3") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:C") + (at 213.36 238.76 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "990d585b-29f6-4572-8b1e-1d5f6c52bb29") + (property "Reference" "C17" + (at 214.63 241.3 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "10uf" + (at 214.63 243.84 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" + (at 214.3252 242.57 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 213.36 238.76 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Unpolarized capacitor" + (at 213.36 238.76 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Link" "https://robu.in/product/0402x104k100nt-fh-smd-multilayer-ceramic-capacitor-0-1-%C2%B5f100nf-10-v-0402-1005-metric-%C2%B1-10-x5r/" + (at 213.36 238.76 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "90bda8be-131d-42b1-b7a3-de6bb68f5a2c") + ) + (pin "2" + (uuid "f1424137-b3c0-4891-a06d-3eaf681b877c") + ) + (instances + (project "SmartFuseBox" + (path "/c0735f89-9606-4ac5-a2cd-a138ec47fb2a" + (reference "C17") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:C") + (at 157.48 118.11 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "99882549-ce7b-4764-9573-7850850cb3a0") + (property "Reference" "C13" + (at 158.75 120.65 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "10uf" + (at 158.75 123.19 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" + (at 158.4452 121.92 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 157.48 118.11 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Unpolarized capacitor" + (at 157.48 118.11 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Link" "https://robu.in/product/0402x104k100nt-fh-smd-multilayer-ceramic-capacitor-0-1-%C2%B5f100nf-10-v-0402-1005-metric-%C2%B1-10-x5r/" + (at 157.48 118.11 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "bd01cb90-a221-493e-a6a2-92185a4f7d7f") + ) + (pin "2" + (uuid "6c7528c3-9647-4b95-a4e5-25e02d95e645") + ) + (instances + (project "SmartFuseBox" + (path "/c0735f89-9606-4ac5-a2cd-a138ec47fb2a" + (reference "C13") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 36.83 293.37 0) + (mirror y) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "9cd3e254-c8c4-4f86-9272-ee192d4e59ea") + (property "Reference" "#PWR049" + (at 36.83 299.72 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 36.83 298.45 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 36.83 293.37 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 36.83 293.37 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 36.83 293.37 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "4ae6964b-2c62-4c35-a866-5ca7964a0301") + ) + (instances + (project "SmartFuseBox" + (path "/c0735f89-9606-4ac5-a2cd-a138ec47fb2a" + (reference "#PWR049") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "PCM_4ms_Power-symbol:PWR_FLAG") + (at 104.14 143.51 180) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "9e65a363-9719-4343-b00f-43d60ea7e2e0") + (property "Reference" "#FLG03" + (at 104.14 145.415 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "PWR_FLAG" + (at 104.14 148.59 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 104.14 143.51 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 104.14 143.51 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 104.14 143.51 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "796854af-94ce-42c2-a565-d44e9f977d4c") + ) + (instances + (project "SmartFuseBox" + (path "/c0735f89-9606-4ac5-a2cd-a138ec47fb2a" + (reference "#FLG03") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 137.16 160.02 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "9e6c5c82-8b97-461c-9fed-540b806a5ea3") + (property "Reference" "#PWR025" + (at 137.16 166.37 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 137.16 165.1 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 137.16 160.02 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 137.16 160.02 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 137.16 160.02 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "c48db8cf-d262-474d-9be9-36514d989740") + ) + (instances + (project "SmartFuseBox" + (path "/c0735f89-9606-4ac5-a2cd-a138ec47fb2a" + (reference "#PWR025") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:C") + (at 109.22 55.88 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "9e98cfdd-ca54-4d2a-b539-06c4dc61a013") + (property "Reference" "C31" + (at 110.49 54.61 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "12uf" + (at 110.49 57.15 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" + (at 110.1852 59.69 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 109.22 55.88 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Unpolarized capacitor" + (at 109.22 55.88 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Link" "https://robu.in/product/cl21a106kofnnne-samsang-16v-10uf-x5r-%C2%B110-0805-multilayer-ceramic-capacitors-mlcc-smd-smt-rohs/?gad_source=1&gad_campaignid=17427802703&gbraid=0AAAAADvLFWeYd6KQJmaof5AqwX7G6G7RK&gclid=CjwKCAjw687NBhB4EiwAQ645dvOPfam1y5aCD1uRQvjlmer72tAuxihwH4D1G8BPdKh6SRiWARJldBoCKCYQAvD_BwE" + (at 109.22 55.88 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "d5a50c56-177b-4f9b-9a3e-b179d35c5931") + ) + (pin "2" + (uuid "3aa837ec-1e48-4277-ba9c-71b0a21123d2") + ) + (instances + (project "SmartFuseBox" + (path "/c0735f89-9606-4ac5-a2cd-a138ec47fb2a" + (reference "C31") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:C") + (at 203.2 238.76 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "a1820d0b-6f5f-46c6-9913-cb9c461b3662") + (property "Reference" "C16" + (at 204.47 237.49 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "0.1uf" + (at 204.47 240.03 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" + (at 204.1652 242.57 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 203.2 238.76 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Unpolarized capacitor" + (at 203.2 238.76 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Link" "https://robu.in/product/cl21a106kofnnne-samsang-16v-10uf-x5r-%C2%B110-0805-multilayer-ceramic-capacitors-mlcc-smd-smt-rohs/?gad_source=1&gad_campaignid=17427802703&gbraid=0AAAAADvLFWeYd6KQJmaof5AqwX7G6G7RK&gclid=CjwKCAjw687NBhB4EiwAQ645dvOPfam1y5aCD1uRQvjlmer72tAuxihwH4D1G8BPdKh6SRiWARJldBoCKCYQAvD_BwE" + (at 203.2 238.76 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "c6d756d6-aba9-4ab5-9faa-d137a1c6bd67") + ) + (pin "2" + (uuid "edb8b0a3-a47c-4ae2-ae97-9b61583ce7c4") + ) + (instances + (project "SmartFuseBox" + (path "/c0735f89-9606-4ac5-a2cd-a138ec47fb2a" + (reference "C16") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Connector:Conn_01x03_Socket") + (at 347.98 250.19 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "a3daf139-5291-4de7-9882-b9782bbab1db") + (property "Reference" "J10" + (at 342.9 242.57 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "Conn_01x03_Socket" + (at 342.9 245.11 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "TerminalBlock:TerminalBlock_MaiXu_MX126-5.0-03P_1x03_P5.00mm" + (at 347.98 250.19 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 347.98 250.19 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Generic connector, single row, 01x03, script generated" + (at 347.98 250.19 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "3" + (uuid "38a3222f-1823-4e0a-b4d9-471e6aadcec1") + ) + (pin "1" + (uuid "f10eaccd-3b35-4936-a07f-b2bb5687205a") + ) + (pin "2" + (uuid "38a6c48f-07bd-44bf-84bf-8607ad03d54e") + ) + (instances + (project "SmartFuseBox" + (path "/c0735f89-9606-4ac5-a2cd-a138ec47fb2a" + (reference "J10") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "PCM_Diode_Schottky_AKL:SS54") + (at 292.1 250.19 90) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "a528b69f-aa34-4e69-90ab-ba3915e2c73b") + (property "Reference" "D10" + (at 294.64 248.6024 90) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + ) + (property "Value" "SS54" + (at 294.64 251.1424 90) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + ) + (property "Footprint" "Diode_SMD:D_SMA" + (at 292.1 250.19 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "https://www.laro.com.pl/pdf/ss56.pdf" + (at 292.1 250.19 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "SMC Schottky diode, 40V, 5A, Alternate KiCAD Library" + (at 292.1 250.19 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Link" "https://robu.in/product/ss54b-slkor-40v-550mv5a-5a-smbdo-214aa-schottky-diodes-rohs/?gad_source=1&gad_campaignid=17427802703&gbraid=0AAAAADvLFWeYd6KQJmaof5AqwX7G6G7RK&gclid=CjwKCAjw687NBhB4EiwAQ645dhFgK7QWTnrPqJBCFVMKkjTLbr6I5VJmPHffxaZ_pS_3KzeiLFGuoBoCukcQAvD_BwE" + (at 292.1 250.19 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "c2c6304d-87fd-48a1-98c6-122e50ca1957") + ) + (pin "2" + (uuid "79a06f9d-ea3c-4912-87fa-6e24bd9a121d") + ) + (instances + (project "SmartFuseBox" + (path "/c0735f89-9606-4ac5-a2cd-a138ec47fb2a" + (reference "D10") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:C") + (at 384.81 27.94 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "a6d784fd-f516-4387-875e-4151056a3a0d") + (property "Reference" "C6" + (at 386.08 30.48 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "10uf" + (at 386.08 33.02 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" + (at 385.7752 31.75 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 384.81 27.94 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Unpolarized capacitor" + (at 384.81 27.94 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Link" "https://robu.in/product/0402x104k100nt-fh-smd-multilayer-ceramic-capacitor-0-1-%C2%B5f100nf-10-v-0402-1005-metric-%C2%B1-10-x5r/" + (at 384.81 27.94 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "4f61450a-a921-43f9-abb3-61601d305d45") + ) + (pin "2" + (uuid "84c92bc4-8b84-4c90-848a-f1931a289de4") + ) + (instances + (project "SmartFuseBox" + (path "/c0735f89-9606-4ac5-a2cd-a138ec47fb2a" + (reference "C6") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 463.55 219.71 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "a810e257-6fe5-4f84-9520-0e9cc710e561") + (property "Reference" "#PWR037" + (at 463.55 226.06 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 463.55 224.79 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 463.55 219.71 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 463.55 219.71 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 463.55 219.71 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "cf8bed7a-1e51-46a4-8c87-e1a2c8a3d86d") + ) + (instances + (project "SmartFuseBox" + (path "/c0735f89-9606-4ac5-a2cd-a138ec47fb2a" + (reference "#PWR037") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 219.71 72.39 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "a9041f39-362c-42cc-9136-af94f209b475") + (property "Reference" "#PWR057" + (at 219.71 78.74 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 219.71 77.47 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 219.71 72.39 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 219.71 72.39 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 219.71 72.39 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "85389aab-3275-4924-aa2c-add0aa817ac5") + ) + (instances + (project "SmartFuseBox" + (path "/c0735f89-9606-4ac5-a2cd-a138ec47fb2a" + (reference "#PWR057") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 109.22 60.96 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "a97d22dc-729d-4490-b167-4735fc4382e6") + (property "Reference" "#PWR052" + (at 109.22 67.31 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 109.22 66.04 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 109.22 60.96 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 109.22 60.96 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 109.22 60.96 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "87550739-f69a-41e5-8017-b4bbaf48b6b5") + ) + (instances + (project "SmartFuseBox" + (path "/c0735f89-9606-4ac5-a2cd-a138ec47fb2a" + (reference "#PWR052") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:C") + (at 73.66 115.57 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "add6ca4e-1d1c-4cf4-b04c-2630ef42c743") + (property "Reference" "C10" + (at 74.93 118.11 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "10uf" + (at 74.93 120.65 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" + (at 74.6252 119.38 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 73.66 115.57 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Unpolarized capacitor" + (at 73.66 115.57 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Link" "https://robu.in/product/0402x104k100nt-fh-smd-multilayer-ceramic-capacitor-0-1-%C2%B5f100nf-10-v-0402-1005-metric-%C2%B1-10-x5r/" + (at 73.66 115.57 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "e136db1c-c52b-4f82-986e-c108b4649389") + ) + (pin "2" + (uuid "defb95b6-7468-427a-95e8-03bf47868b29") + ) + (instances + (project "SmartFuseBox" + (path "/c0735f89-9606-4ac5-a2cd-a138ec47fb2a" + (reference "C10") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "PCM_Elektuur:R") + (at 140.97 255.27 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "ae03023d-a79c-45f7-ac84-1ab52298656f") + (property "Reference" "R13" + (at 143.51 253.9999 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "4.7k" + (at 143.51 256.5399 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Passives:R_0805_2012Metric_Pad1.20x1.40mm_HandSolder" + (at 140.97 255.27 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 140.97 255.27 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "resistor" + (at 140.97 255.27 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Indicator" "+" + (at 137.795 252.095 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Rating" "W" + (at 143.51 258.445 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + (hide yes) + ) + ) + (pin "1" + (uuid "ea77e2db-ebf2-4178-bc8f-221be3d9a05f") + ) + (pin "2" + (uuid "6fb1819b-145e-4a97-a8e8-3414350cf7b1") + ) + (instances + (project "SmartFuseBox" + (path "/c0735f89-9606-4ac5-a2cd-a138ec47fb2a" + (reference "R13") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 473.71 219.71 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "b031a35d-a58d-4fdb-bb6a-c500900efee8") + (property "Reference" "#PWR038" + (at 473.71 226.06 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 473.71 224.79 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 473.71 219.71 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 473.71 219.71 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 473.71 219.71 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "09a38866-860b-475c-beb9-099fb312dbdb") + ) + (instances + (project "SmartFuseBox" + (path "/c0735f89-9606-4ac5-a2cd-a138ec47fb2a" + (reference "#PWR038") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "PCM_Elektuur:R") + (at 144.78 52.07 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "b0e4876e-9ba9-40a9-ba63-b2ea3551c824") + (property "Reference" "R14" + (at 147.32 50.7999 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "100k" + (at 147.32 53.3399 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Passives:R_0805_2012Metric_Pad1.20x1.40mm_HandSolder" + (at 144.78 52.07 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 144.78 52.07 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "resistor" + (at 144.78 52.07 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Indicator" "+" + (at 141.605 48.895 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Rating" "W" + (at 147.32 55.245 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + (hide yes) + ) + ) + (pin "1" + (uuid "6f48e533-f5ee-4ec5-9852-99293622e1a8") + ) + (pin "2" + (uuid "f8510ff6-b23c-4be6-99e7-bac39d600f43") + ) + (instances + (project "SmartFuseBox" + (path "/c0735f89-9606-4ac5-a2cd-a138ec47fb2a" + (reference "R14") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:C") + (at 473.71 214.63 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "b3e0d29f-69f4-4673-9d2c-5125661a8608") + (property "Reference" "C24" + (at 474.98 217.17 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "10uf" + (at 474.98 219.71 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" + (at 474.6752 218.44 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 473.71 214.63 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Unpolarized capacitor" + (at 473.71 214.63 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Link" "https://robu.in/product/0402x104k100nt-fh-smd-multilayer-ceramic-capacitor-0-1-%C2%B5f100nf-10-v-0402-1005-metric-%C2%B1-10-x5r/" + (at 473.71 214.63 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "926a723b-6c37-445d-a3d8-b418b316ca98") + ) + (pin "2" + (uuid "3c2f1a07-cc74-4614-9a57-1f02749b2e85") + ) + (instances + (project "SmartFuseBox" + (path "/c0735f89-9606-4ac5-a2cd-a138ec47fb2a" + (reference "C24") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "PCM_Elektuur:R") + (at 195.58 67.31 90) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "b46935d7-166e-4ef5-bdeb-0e2ae1f3c9e4") + (property "Reference" "R17" + (at 195.58 62.23 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "44.2k" + (at 195.58 64.77 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Passives:R_0805_2012Metric_Pad1.20x1.40mm_HandSolder" + (at 195.58 67.31 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 195.58 67.31 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "resistor" + (at 195.58 67.31 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Indicator" "+" + (at 192.405 70.485 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Rating" "W" + (at 198.755 64.77 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + (hide yes) + ) + ) + (pin "1" + (uuid "19879dc4-5c3d-4555-a796-739bc6c40950") + ) + (pin "2" + (uuid "53966c9f-ea5c-4257-9e36-21c7d926863b") + ) + (instances + (project "SmartFuseBox" + (path "/c0735f89-9606-4ac5-a2cd-a138ec47fb2a" + (reference "R17") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 208.28 63.5 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "b4c31a7c-e25f-4008-8b01-a5ed5cf9c6e2") + (property "Reference" "#PWR055" + (at 208.28 69.85 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 208.28 68.58 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 208.28 63.5 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 208.28 63.5 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 208.28 63.5 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "1f11f87e-b97a-413a-9905-a1c463f1e2e2") + ) + (instances + (project "SmartFuseBox" + (path "/c0735f89-9606-4ac5-a2cd-a138ec47fb2a" + (reference "#PWR055") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 60.96 276.86 0) + (mirror y) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "b53a3c51-e536-4499-b960-795bf39f9967") + (property "Reference" "#PWR050" + (at 60.96 283.21 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 60.96 281.94 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 60.96 276.86 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 60.96 276.86 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 60.96 276.86 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "15cbdc76-041a-424c-9f37-b2b394c0cf93") + ) + (instances + (project "SmartFuseBox" + (path "/c0735f89-9606-4ac5-a2cd-a138ec47fb2a" + (reference "#PWR050") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Relay:SANYOU_SRD_Form_C") + (at 389.89 153.67 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "b55f1058-c706-44aa-8d71-691cdb3f66e0") + (property "Reference" "K4" + (at 387.35 135.89 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "SRD-12VDC-SL-C" + (at 387.35 138.43 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Relay_THT:Relay_SPDT_SANYOU_SRD_Series_Form_C" + (at 401.32 154.94 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + (hide yes) + ) + ) + (property "Datasheet" "http://www.sanyourelay.ca/public/products/pdf/SRD.pdf" + (at 389.89 153.67 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Sanyo SRD relay, Single Pole Miniature Power Relay," + (at 389.89 153.67 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Link" "https://robu.in/product/1-month-warranty-1027/" + (at 389.89 153.67 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "4" + (uuid "ef0207c7-653e-41d9-a46d-ba6777c4e5a3") + ) + (pin "2" + (uuid "2972eaef-6531-4a0d-8126-473f271492d7") + ) + (pin "3" + (uuid "6134a8ed-c739-4950-8a81-fe944c8634f7") + ) + (pin "5" + (uuid "a6bdb5f5-3b6e-463b-9d56-744c251e26e7") + ) + (pin "1" + (uuid "a4f06f72-121f-4e4a-8f21-2650dcb02f17") + ) + (instances + (project "SmartFuseBox" + (path "/c0735f89-9606-4ac5-a2cd-a138ec47fb2a" + (reference "K4") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Connector:Conn_01x03_Socket") + (at 516.89 247.65 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "b5b8849e-ae66-4fa8-b5d6-ea182bda87fb") + (property "Reference" "J9" + (at 511.81 240.03 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "Conn_01x03_Socket" + (at 511.81 242.57 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "TerminalBlock:TerminalBlock_MaiXu_MX126-5.0-03P_1x03_P5.00mm" + (at 516.89 247.65 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 516.89 247.65 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Generic connector, single row, 01x03, script generated" + (at 516.89 247.65 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "3" + (uuid "b5175f36-db38-4b4b-80fb-1f815dbf1d6d") + ) + (pin "1" + (uuid "bf168dfc-1594-47ef-a7bc-45a3cd69645c") + ) + (pin "2" + (uuid "a02ecb7b-dbac-4bf7-a65f-0634c31bfaf1") + ) + (instances + (project "SmartFuseBox" + (path "/c0735f89-9606-4ac5-a2cd-a138ec47fb2a" + (reference "J9") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 473.71 31.75 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "bb17d665-38f6-4254-b32b-fca284cc9f0d") + (property "Reference" "#PWR013" + (at 473.71 38.1 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 473.71 36.83 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 473.71 31.75 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 473.71 31.75 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 473.71 31.75 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "f5d2982c-c3ec-43a9-a541-88c9b1e6cd0e") + ) + (instances + (project "SmartFuseBox" + (path "/c0735f89-9606-4ac5-a2cd-a138ec47fb2a" + (reference "#PWR013") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "PCM_Transistor_BJT_AKL:2N2222") + (at 208.28 321.31 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "bca97832-c252-4153-ac3d-dccee4666c3b") + (property "Reference" "Q1" + (at 213.36 320.0399 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "BC817" + (at 213.36 322.5799 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "PCM_4ms_Package_SOT:SOT-23" + (at 213.36 318.77 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "https://www.farnell.com/datasheets/296640.pdf" + (at 208.28 321.31 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "NPN TO-18 transistor, 30V, 0.8A, 500mW, Alternate KiCAD Library" + (at 208.28 321.31 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "3" + (uuid "f222a6b9-5065-42e9-a9bb-b152d30f22c4") + ) + (pin "2" + (uuid "c773274d-ecc2-4d1e-86b5-7807d3b26837") + ) + (pin "1" + (uuid "951bb70d-ce6f-4449-84c1-cc66d2b1ddad") + ) + (instances + (project "" + (path "/c0735f89-9606-4ac5-a2cd-a138ec47fb2a" + (reference "Q1") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "BK-6013:BK-6013") + (at 50.8 50.8 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "c0155433-374e-4efa-81f7-cbb97e329c57") + (property "Reference" "XF1" + (at 50.8 44.45 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "BK-6013" + (at 50.8 46.99 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Semiconductors:FUSE_BK-6013" + (at 50.8 50.8 0) + (effects + (font + (size 1.27 1.27) + ) + (justify bottom) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 50.8 50.8 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 50.8 50.8 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "MF" "MPD (Memory Protection Devices)" + (at 50.8 50.8 0) + (effects + (font + (size 1.27 1.27) + ) + (justify bottom) + (hide yes) + ) + ) + (property "MAXIMUM_PACKAGE_HEIGHT" "8.9mm" + (at 50.8 50.8 0) + (effects + (font + (size 1.27 1.27) + ) + (justify bottom) + (hide yes) + ) + ) + (property "Package" "Non-Standard MPD" + (at 50.8 50.8 0) + (effects + (font + (size 1.27 1.27) + ) + (justify bottom) + (hide yes) + ) + ) + (property "Price" "None" + (at 50.8 50.8 0) + (effects + (font + (size 1.27 1.27) + ) + (justify bottom) + (hide yes) + ) + ) + (property "Check_prices" "https://www.snapeda.com/parts/BK-6013/MPD/view-part/?ref=eda" + (at 50.8 50.8 0) + (effects + (font + (size 1.27 1.27) + ) + (justify bottom) + (hide yes) + ) + ) + (property "STANDARD" "Manufacturer recommendations" + (at 50.8 50.8 0) + (effects + (font + (size 1.27 1.27) + ) + (justify bottom) + (hide yes) + ) + ) + (property "PARTREV" "02/07/14" + (at 50.8 50.8 0) + (effects + (font + (size 1.27 1.27) + ) + (justify bottom) + (hide yes) + ) + ) + (property "SnapEDA_Link" "https://www.snapeda.com/parts/BK-6013/MPD/view-part/?ref=snap" + (at 50.8 50.8 0) + (effects + (font + (size 1.27 1.27) + ) + (justify bottom) + (hide yes) + ) + ) + (property "MP" "BK-6013" + (at 50.8 50.8 0) + (effects + (font + (size 1.27 1.27) + ) + (justify bottom) + (hide yes) + ) + ) + (property "Description_1" "Fuse Holder 1 Circuit Blade Through Hole" + (at 50.8 50.8 0) + (effects + (font + (size 1.27 1.27) + ) + (justify bottom) + (hide yes) + ) + ) + (property "Availability" "In Stock" + (at 50.8 50.8 0) + (effects + (font + (size 1.27 1.27) + ) + (justify bottom) + (hide yes) + ) + ) + (property "MANUFACTURER" "MPD" + (at 50.8 50.8 0) + (effects + (font + (size 1.27 1.27) + ) + (justify bottom) + (hide yes) + ) + ) + (pin "3" + (uuid "3399d590-3f36-49a9-adb8-c4572e05b158") + ) + (pin "4" + (uuid "5cb3b036-c83a-41db-ae7c-133f7010e83b") + ) + (pin "2" + (uuid "41609362-29c8-45cb-bc52-b668967e1850") + ) + (pin "1" + (uuid "67bca954-33cc-4b01-8ae7-41f94c927423") + ) + (instances + (project "" + (path "/c0735f89-9606-4ac5-a2cd-a138ec47fb2a" + (reference "XF1") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Mechanical:MountingHole") + (at 243.84 298.45 0) + (unit 1) + (exclude_from_sim no) + (in_bom no) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "c14160b3-32de-4b04-b428-cf8250545424") + (property "Reference" "H4" + (at 246.38 297.1799 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "MountingHole" + (at 246.38 299.7199 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "MountingHole_3.2mm_M3" + (at 243.84 298.45 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 243.84 298.45 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Mounting Hole without connection" + (at 243.84 298.45 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (instances + (project "SmartFuseBox" + (path "/c0735f89-9606-4ac5-a2cd-a138ec47fb2a" + (reference "H4") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 45.72 120.65 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "c5894220-78a5-4737-953d-a8a10871e0e6") + (property "Reference" "#PWR01" + (at 45.72 127 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 45.72 125.73 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 45.72 120.65 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 45.72 120.65 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 45.72 120.65 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "471674e4-60b6-4367-b317-e4e689cc716b") + ) + (instances + (project "SmartFuseBox" + (path "/c0735f89-9606-4ac5-a2cd-a138ec47fb2a" + (reference "#PWR01") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Mechanical:MountingHole") + (at 226.06 298.45 0) + (unit 1) + (exclude_from_sim no) + (in_bom no) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "c64873ce-ac46-490f-bb20-ad1affd6871d") + (property "Reference" "H3" + (at 228.6 297.1799 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "MountingHole" + (at 228.6 299.7199 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "MountingHole_3.2mm_M3" + (at 226.06 298.45 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 226.06 298.45 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Mounting Hole without connection" + (at 226.06 298.45 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (instances + (project "SmartFuseBox" + (path "/c0735f89-9606-4ac5-a2cd-a138ec47fb2a" + (reference "H3") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 128.27 267.97 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "c82ee3e5-fbd9-4366-ad6a-dfd3f4ea5501") + (property "Reference" "#PWR044" + (at 128.27 274.32 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 128.27 273.05 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 128.27 267.97 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 128.27 267.97 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 128.27 267.97 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "8e5d5916-37c0-46af-9bcf-8255607e3fbb") + ) + (instances + (project "SmartFuseBox" + (path "/c0735f89-9606-4ac5-a2cd-a138ec47fb2a" + (reference "#PWR044") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:C") + (at 304.8 29.21 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "c86d2fb1-8558-445d-8027-8a6773b76e38") + (property "Reference" "C15" + (at 306.07 31.75 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "10uf" + (at 306.07 34.29 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" + (at 305.7652 33.02 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 304.8 29.21 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Unpolarized capacitor" + (at 304.8 29.21 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Link" "https://robu.in/product/0402x104k100nt-fh-smd-multilayer-ceramic-capacitor-0-1-%C2%B5f100nf-10-v-0402-1005-metric-%C2%B1-10-x5r/" + (at 304.8 29.21 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "c4d33744-4f2b-4e70-bec7-645175146897") + ) + (pin "2" + (uuid "0887b879-9bf4-44fe-beae-f4ac612569ab") + ) + (instances + (project "SmartFuseBox" + (path "/c0735f89-9606-4ac5-a2cd-a138ec47fb2a" + (reference "C15") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 224.79 273.05 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "caa28359-78be-41e1-a2e1-4de1f7a99a27") + (property "Reference" "#PWR022" + (at 224.79 279.4 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 224.79 278.13 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 224.79 273.05 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 224.79 273.05 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 224.79 273.05 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "d2ad24f2-091e-4597-a960-2a4233e514f2") + ) + (instances + (project "SmartFuseBox" + (path "/c0735f89-9606-4ac5-a2cd-a138ec47fb2a" + (reference "#PWR022") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Connector:Conn_01x04_Socket") + (at 41.91 288.29 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "caac81f2-7195-4c54-b3d8-9b934865442c") + (property "Reference" "J13" + (at 5.08 285.75 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "Conn_01x04_Socket" + (at 5.08 289.5601 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Connector_JST:JST_PH_S4B-PH-K_1x04_P2.00mm_Horizontal" + (at 41.91 288.29 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 41.91 288.29 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Generic connector, single row, 01x04, script generated" + (at 41.91 288.29 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "4" + (uuid "bd07091e-cbc1-49ed-afde-7671eb162901") + ) + (pin "2" + (uuid "21c4d5f9-a953-487c-8070-6d6f5ea8db1a") + ) + (pin "3" + (uuid "af4a6f2a-a7b6-419e-ac97-db1c362e6b65") + ) + (pin "1" + (uuid "db87ed5f-3629-4cbd-9d75-a80f486ae179") + ) + (instances + (project "SmartFuseBox" + (path "/c0735f89-9606-4ac5-a2cd-a138ec47fb2a" + (reference "J13") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:C") + (at 372.11 120.65 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "cd73de74-eb42-4cba-9bb9-45808ba604e9") + (property "Reference" "C11" + (at 373.38 119.38 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "0.1uf" + (at 373.38 121.92 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" + (at 373.0752 124.46 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 372.11 120.65 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Unpolarized capacitor" + (at 372.11 120.65 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Link" "https://robu.in/product/cl21a106kofnnne-samsang-16v-10uf-x5r-%C2%B110-0805-multilayer-ceramic-capacitors-mlcc-smd-smt-rohs/?gad_source=1&gad_campaignid=17427802703&gbraid=0AAAAADvLFWeYd6KQJmaof5AqwX7G6G7RK&gclid=CjwKCAjw687NBhB4EiwAQ645dvOPfam1y5aCD1uRQvjlmer72tAuxihwH4D1G8BPdKh6SRiWARJldBoCKCYQAvD_BwE" + (at 372.11 120.65 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "70ecd396-f09f-4540-b868-c98aa1747858") + ) + (pin "2" + (uuid "635f21b6-eff6-4d99-a2e6-f2ea0b83c57f") + ) + (instances + (project "SmartFuseBox" + (path "/c0735f89-9606-4ac5-a2cd-a138ec47fb2a" + (reference "C11") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 304.8 222.25 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "d06fc474-24eb-40dc-bedc-33257dc436d9") + (property "Reference" "#PWR041" + (at 304.8 228.6 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 304.8 227.33 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 304.8 222.25 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 304.8 222.25 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 304.8 222.25 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "a56fdfd4-a92b-4752-aeac-1ae8a1e79b82") + ) + (instances + (project "SmartFuseBox" + (path "/c0735f89-9606-4ac5-a2cd-a138ec47fb2a" + (reference "#PWR041") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Relay:SANYOU_SRD_Form_C") + (at 312.42 62.23 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "d0bcb911-139a-4769-a20d-ef1146f0b66a") + (property "Reference" "K1" + (at 309.88 44.45 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "SRD-12VDC-SL-C" + (at 309.88 46.99 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Relay_THT:Relay_SPDT_SANYOU_SRD_Series_Form_C" + (at 323.85 63.5 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + (hide yes) + ) + ) + (property "Datasheet" "http://www.sanyourelay.ca/public/products/pdf/SRD.pdf" + (at 312.42 62.23 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Sanyo SRD relay, Single Pole Miniature Power Relay," + (at 312.42 62.23 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Link" "https://robu.in/product/1-month-warranty-1027/" + (at 312.42 62.23 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "4" + (uuid "843e552e-5805-4009-9d4b-f37403704000") + ) + (pin "2" + (uuid "10304a15-2705-4c58-ace6-d7b0df63366d") + ) + (pin "3" + (uuid "0178761f-3ef2-44a5-969a-cf13f275ac87") + ) + (pin "5" + (uuid "ee760aac-6660-4777-a818-dd36ffea685c") + ) + (pin "1" + (uuid "7010fe92-7929-413c-92a2-2755ad59d3fd") + ) + (instances + (project "" + (path "/c0735f89-9606-4ac5-a2cd-a138ec47fb2a" + (reference "K1") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Connector:Conn_01x03_Socket") + (at 425.45 153.67 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "d2ae8875-9d75-42c2-b9fb-51bbad56dd0c") + (property "Reference" "J6" + (at 420.37 146.05 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "Conn_01x03_Socket" + (at 420.37 148.59 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "TerminalBlock:TerminalBlock_MaiXu_MX126-5.0-03P_1x03_P5.00mm" + (at 425.45 153.67 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 425.45 153.67 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Generic connector, single row, 01x03, script generated" + (at 425.45 153.67 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "3" + (uuid "fdb03c65-eb20-449d-97fd-00f455c35203") + ) + (pin "1" + (uuid "64b4e99a-49d5-4064-ba06-48938640de48") + ) + (pin "2" + (uuid "473850ff-ba39-46a4-9443-abbbdfa4eae7") + ) + (instances + (project "SmartFuseBox" + (path "/c0735f89-9606-4ac5-a2cd-a138ec47fb2a" + (reference "J6") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Relay:SANYOU_SRD_Form_C") + (at 392.43 60.96 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "d359931d-149c-4d30-bd6c-4fc2aa5a71da") + (property "Reference" "K2" + (at 389.89 43.18 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "SRD-12VDC-SL-C" + (at 389.89 45.72 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Relay_THT:Relay_SPDT_SANYOU_SRD_Series_Form_C" + (at 403.86 62.23 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + (hide yes) + ) + ) + (property "Datasheet" "http://www.sanyourelay.ca/public/products/pdf/SRD.pdf" + (at 392.43 60.96 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Sanyo SRD relay, Single Pole Miniature Power Relay," + (at 392.43 60.96 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Link" "https://robu.in/product/1-month-warranty-1027/" + (at 392.43 60.96 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "4" + (uuid "7036b53f-3987-418d-9ff5-d616faf9577a") + ) + (pin "2" + (uuid "6d6d54f1-c8dd-4e1f-a088-8c36b2dd1e3b") + ) + (pin "3" + (uuid "7b94b8da-6836-4d8c-8046-dc4525f64906") + ) + (pin "5" + (uuid "1effdb9a-33c1-4faa-bcc7-81b128038c97") + ) + (pin "1" + (uuid "c3cfa49a-7164-4a59-9b9e-2330b19f3129") + ) + (instances + (project "SmartFuseBox" + (path "/c0735f89-9606-4ac5-a2cd-a138ec47fb2a" + (reference "K2") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:C") + (at 468.63 119.38 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "d3dd2247-1da2-4e09-87b2-3873a599d5f5") + (property "Reference" "C20" + (at 469.9 121.92 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "10uf" + (at 469.9 124.46 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" + (at 469.5952 123.19 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 468.63 119.38 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Unpolarized capacitor" + (at 468.63 119.38 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Link" "https://robu.in/product/0402x104k100nt-fh-smd-multilayer-ceramic-capacitor-0-1-%C2%B5f100nf-10-v-0402-1005-metric-%C2%B1-10-x5r/" + (at 468.63 119.38 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "a119916e-92cc-454c-9803-d322f58cc8f4") + ) + (pin "2" + (uuid "a2e50868-c7ae-4aba-98ca-960a6b2de290") + ) + (instances + (project "SmartFuseBox" + (path "/c0735f89-9606-4ac5-a2cd-a138ec47fb2a" + (reference "C20") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 458.47 124.46 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "d4b61ee6-3302-455d-b499-ec64447f4a8e") + (property "Reference" "#PWR020" + (at 458.47 130.81 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 458.47 129.54 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 458.47 124.46 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 458.47 124.46 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 458.47 124.46 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "92d0e754-efa9-4517-bfdf-f42cd42a3f7b") + ) + (instances + (project "SmartFuseBox" + (path "/c0735f89-9606-4ac5-a2cd-a138ec47fb2a" + (reference "#PWR020") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:C") + (at 109.22 251.46 0) + (mirror y) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "d4f556e9-4a16-4486-8eca-9e1e381cb7ca") + (property "Reference" "C27" + (at 107.95 250.19 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "0.1uf" + (at 107.95 252.73 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" + (at 108.2548 255.27 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 109.22 251.46 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Unpolarized capacitor" + (at 109.22 251.46 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Link" "https://robu.in/product/cl21a106kofnnne-samsang-16v-10uf-x5r-%C2%B110-0805-multilayer-ceramic-capacitors-mlcc-smd-smt-rohs/?gad_source=1&gad_campaignid=17427802703&gbraid=0AAAAADvLFWeYd6KQJmaof5AqwX7G6G7RK&gclid=CjwKCAjw687NBhB4EiwAQ645dvOPfam1y5aCD1uRQvjlmer72tAuxihwH4D1G8BPdKh6SRiWARJldBoCKCYQAvD_BwE" + (at 109.22 251.46 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "8c9029bc-96e7-438e-a964-20522bb5fda7") + ) + (pin "2" + (uuid "53aa1a28-02cb-44ab-8b3b-885623672b86") + ) + (instances + (project "SmartFuseBox" + (path "/c0735f89-9606-4ac5-a2cd-a138ec47fb2a" + (reference "C27") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Connector:Conn_01x04_Socket") + (at 41.91 270.51 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "d74dfcc0-aa9c-4aaa-a89c-9e05fe58b44d") + (property "Reference" "J12" + (at 8.89 269.24 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "Conn_01x04_Socket" + (at 3.81 271.78 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Connector_JST:JST_PH_S4B-PH-K_1x04_P2.00mm_Horizontal" + (at 41.91 270.51 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 41.91 270.51 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Generic connector, single row, 01x04, script generated" + (at 41.91 270.51 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "4" + (uuid "1724227c-d45f-463e-9cfa-4f1c7934f15f") + ) + (pin "2" + (uuid "a205cb42-9c71-4878-b99e-c5550c977cd6") + ) + (pin "3" + (uuid "0b8430dc-3579-4f2c-be1f-4de352e6d4fc") + ) + (pin "1" + (uuid "e9f3fc6e-1289-4a7d-8af9-da083ce093ad") + ) + (instances + (project "SmartFuseBox" + (path "/c0735f89-9606-4ac5-a2cd-a138ec47fb2a" + (reference "J12") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 63.5 120.65 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "dcb8f12a-ef92-40f0-9958-168efe68ac95") + (property "Reference" "#PWR014" + (at 63.5 127 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 63.5 125.73 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 63.5 120.65 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 63.5 120.65 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 63.5 120.65 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "3585a352-583a-4d61-a586-82c3a3fb3951") + ) + (instances + (project "SmartFuseBox" + (path "/c0735f89-9606-4ac5-a2cd-a138ec47fb2a" + (reference "#PWR014") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 147.32 123.19 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "dd7169cc-2197-41a6-9e06-2bc2c17d4600") + (property "Reference" "#PWR024" + (at 147.32 129.54 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 147.32 128.27 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 147.32 123.19 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 147.32 123.19 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 147.32 123.19 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "cec313f3-d0f3-4fa8-ac2b-dcd09a164eb6") + ) + (instances + (project "SmartFuseBox" + (path "/c0735f89-9606-4ac5-a2cd-a138ec47fb2a" + (reference "#PWR024") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 210.82 327.66 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "de1cc1ef-4526-47bd-9deb-8241a7b9acec") + (property "Reference" "#PWR07" + (at 210.82 334.01 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 210.82 332.74 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 210.82 327.66 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 210.82 327.66 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 210.82 327.66 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "68e10e17-7851-4a95-9f40-0046f17f1814") + ) + (instances + (project "SmartFuseBox" + (path "/c0735f89-9606-4ac5-a2cd-a138ec47fb2a" + (reference "#PWR07") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 156.21 157.48 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "e0a40f66-f4ed-48c5-a141-7abd29ceae7e") + (property "Reference" "#PWR023" + (at 156.21 163.83 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 156.21 162.56 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 156.21 157.48 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 156.21 157.48 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 156.21 157.48 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "c3dd6f50-719c-4add-93c7-b6dc5b3c2b78") + ) + (instances + (project "SmartFuseBox" + (path "/c0735f89-9606-4ac5-a2cd-a138ec47fb2a" + (reference "#PWR023") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:Buzzer") + (at 227.33 243.84 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "ea37b5f3-ae04-4c29-a16d-734c13623b44") + (property "Reference" "BZ1" + (at 231.14 242.5699 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "Buzzer" + (at 231.14 245.1099 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Buzzer_Beeper:Buzzer_12x9.5RM7.6" + (at 226.695 241.3 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 226.695 241.3 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Buzzer, polarized" + (at 227.33 243.84 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Link" "https://robu.in/product/5v-active-electromagnetic-buzzer-pack-of-5/?gad_source=1&gad_campaignid=17427802703&gbraid=0AAAAADvLFWeYd6KQJmaof5AqwX7G6G7RK&gclid=CjwKCAjw687NBhB4EiwAQ645dqGyKA2Q7VpjuFuCoSyLCFUHRbcrUggDKF3bwq9Ms8OPAqU6cx3GyxoCQQwQAvD_BwE" + (at 227.33 243.84 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "2" + (uuid "555fafcd-ff3f-4863-b5fa-3e57bf1a1068") + ) + (pin "1" + (uuid "192727ee-5691-4971-b73c-7b4a387bf4ac") + ) + (instances + (project "" + (path "/c0735f89-9606-4ac5-a2cd-a138ec47fb2a" + (reference "BZ1") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Simulation_SPICE:NPN") + (at 222.25 264.16 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "ead1e8e8-134e-416d-a596-6795c77d275f") + (property "Reference" "Q2" + (at 227.33 262.8899 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "NPN" + (at 227.33 265.4299 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "PCM_4ms_Package_SOT:SOT23-3_PO123" + (at 285.75 264.16 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "https://ngspice.sourceforge.io/docs/ngspice-html-manual/manual.xhtml#cha_BJTs" + (at 285.75 264.16 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Bipolar transistor symbol for simulation only, substrate tied to the emitter" + (at 222.25 264.16 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Sim.Device" "NPN" + (at 222.25 264.16 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Sim.Type" "GUMMELPOON" + (at 222.25 264.16 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Sim.Pins" "1=C 2=B 3=E" + (at 222.25 264.16 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Link" "https://robu.in/product/bc847-smd-transistor-pack-of-20/#tab-product_download_66939_tab" + (at 222.25 264.16 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "b160d0d1-acab-4583-957d-2a75f23bf57e") + ) + (pin "2" + (uuid "9493a793-b073-4535-8e10-8e5f017e2a40") + ) + (pin "3" + (uuid "434d9792-b303-409d-b928-d15e00ab163f") + ) + (instances + (project "SmartFuseBox" + (path "/c0735f89-9606-4ac5-a2cd-a138ec47fb2a" + (reference "Q2") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Relay:SANYOU_SRD_Form_C") + (at 476.25 152.4 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "efea968d-6bf9-4ba2-9ec4-452bff38765d") + (property "Reference" "K5" + (at 473.71 134.62 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "SRD-12VDC-SL-C" + (at 473.71 137.16 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Relay_THT:Relay_SPDT_SANYOU_SRD_Series_Form_C" + (at 487.68 153.67 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + (hide yes) + ) + ) + (property "Datasheet" "http://www.sanyourelay.ca/public/products/pdf/SRD.pdf" + (at 476.25 152.4 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Sanyo SRD relay, Single Pole Miniature Power Relay," + (at 476.25 152.4 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Link" "https://robu.in/product/1-month-warranty-1027/" + (at 476.25 152.4 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "4" + (uuid "523659fb-0904-4a61-b23f-3c975753c5bb") + ) + (pin "2" + (uuid "5425b950-c99d-472a-8df3-f51af0392b40") + ) + (pin "3" + (uuid "45c1fc8e-40a7-437c-b5d3-0d623193e60b") + ) + (pin "5" + (uuid "088974f9-290b-41b4-a283-792f86a4640e") + ) + (pin "1" + (uuid "f5424df6-4eb2-4b40-9cd3-f5761bd29612") + ) + (instances + (project "SmartFuseBox" + (path "/c0735f89-9606-4ac5-a2cd-a138ec47fb2a" + (reference "K5") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "PCM_4ms_Power-symbol:PWR_FLAG") + (at 160.02 46.99 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "f34976e6-fbf4-483e-bde1-35b7b2ada52d") + (property "Reference" "#FLG01" + (at 160.02 45.085 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "PWR_FLAG" + (at 160.02 41.91 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 160.02 46.99 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 160.02 46.99 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 160.02 46.99 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "52dd1584-c766-4a16-b7bf-24a618ba5a2f") + ) + (instances + (project "" + (path "/c0735f89-9606-4ac5-a2cd-a138ec47fb2a" + (reference "#FLG01") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 105.41 201.93 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "f3644062-6b06-4958-8ff1-01591f376923") + (property "Reference" "#PWR032" + (at 105.41 208.28 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 105.41 207.01 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 105.41 201.93 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 105.41 201.93 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 105.41 201.93 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "33a82520-7b8f-4810-afe8-b5e5f1c95b04") + ) + (instances + (project "SmartFuseBox" + (path "/c0735f89-9606-4ac5-a2cd-a138ec47fb2a" + (reference "#PWR032") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:C") + (at 473.71 26.67 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "f44e8647-4680-4b51-a31b-6f365bfcd764") + (property "Reference" "C8" + (at 474.98 29.21 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "10uf" + (at 474.98 31.75 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" + (at 474.6752 30.48 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 473.71 26.67 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Unpolarized capacitor" + (at 473.71 26.67 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Link" "https://robu.in/product/0402x104k100nt-fh-smd-multilayer-ceramic-capacitor-0-1-%C2%B5f100nf-10-v-0402-1005-metric-%C2%B1-10-x5r/" + (at 473.71 26.67 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "9d5ec137-3eb1-4d1f-8354-d550ba2a6782") + ) + (pin "2" + (uuid "af76af92-ede8-40a4-aba4-92a01d4ff239") + ) + (instances + (project "SmartFuseBox" + (path "/c0735f89-9606-4ac5-a2cd-a138ec47fb2a" + (reference "C8") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 73.66 120.65 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "f8451d49-16b7-4ef2-8774-9fdef027bda9") + (property "Reference" "#PWR015" + (at 73.66 127 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 73.66 125.73 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 73.66 120.65 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 73.66 120.65 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 73.66 120.65 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "f02df3e2-061c-42d7-9b48-a2cda4d98ad7") + ) + (instances + (project "SmartFuseBox" + (path "/c0735f89-9606-4ac5-a2cd-a138ec47fb2a" + (reference "#PWR015") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Relay:SANYOU_SRD_Form_C") + (at 481.33 59.69 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "f94ee230-b58e-498c-919d-a32caee44a3b") + (property "Reference" "K3" + (at 478.79 41.91 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "SRD-12VDC-SL-C" + (at 478.79 44.45 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Relay_THT:Relay_SPDT_SANYOU_SRD_Series_Form_C" + (at 492.76 60.96 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + (hide yes) + ) + ) + (property "Datasheet" "http://www.sanyourelay.ca/public/products/pdf/SRD.pdf" + (at 481.33 59.69 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Sanyo SRD relay, Single Pole Miniature Power Relay," + (at 481.33 59.69 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Link" "https://robu.in/product/1-month-warranty-1027/" + (at 481.33 59.69 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "4" + (uuid "4f024eac-7157-43c0-ae5a-ab297dcfdac3") + ) + (pin "2" + (uuid "372932f0-5923-4518-ab0a-06ad02c17d0c") + ) + (pin "3" + (uuid "5317f314-bfc4-4718-a631-a14287faa940") + ) + (pin "5" + (uuid "1ba7f31e-f32d-4489-b107-aa3721899c49") + ) + (pin "1" + (uuid "2b863078-0db4-457a-a42a-7337a16ffccd") + ) + (instances + (project "SmartFuseBox" + (path "/c0735f89-9606-4ac5-a2cd-a138ec47fb2a" + (reference "K3") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:C") + (at 99.06 251.46 0) + (mirror y) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "fa2b99da-6ac8-462e-923c-c545e8b171df") + (property "Reference" "C28" + (at 97.79 254 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "10uf" + (at 97.79 256.54 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" + (at 98.0948 255.27 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 99.06 251.46 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Unpolarized capacitor" + (at 99.06 251.46 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Link" "https://robu.in/product/0402x104k100nt-fh-smd-multilayer-ceramic-capacitor-0-1-%C2%B5f100nf-10-v-0402-1005-metric-%C2%B1-10-x5r/" + (at 99.06 251.46 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "e6adb57c-9266-4497-94c8-839a1c0e9102") + ) + (pin "2" + (uuid "b4a00a25-c321-438e-91ba-376a41f37a1c") + ) + (instances + (project "SmartFuseBox" + (path "/c0735f89-9606-4ac5-a2cd-a138ec47fb2a" + (reference "C28") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "PCM_Diode_Schottky_AKL:SS54") + (at 292.1 62.23 90) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "ff476be0-03cf-4048-ba7c-e4995e22c410") + (property "Reference" "D3" + (at 294.64 60.6424 90) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + ) + (property "Value" "SS54" + (at 294.64 63.1824 90) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + ) + (property "Footprint" "Diode_SMD:D_SMA" + (at 292.1 62.23 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "https://www.laro.com.pl/pdf/ss56.pdf" + (at 292.1 62.23 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "SMC Schottky diode, 40V, 5A, Alternate KiCAD Library" + (at 292.1 62.23 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Link" "https://robu.in/product/ss54b-slkor-40v-550mv5a-5a-smbdo-214aa-schottky-diodes-rohs/?gad_source=1&gad_campaignid=17427802703&gbraid=0AAAAADvLFWeYd6KQJmaof5AqwX7G6G7RK&gclid=CjwKCAjw687NBhB4EiwAQ645dhFgK7QWTnrPqJBCFVMKkjTLbr6I5VJmPHffxaZ_pS_3KzeiLFGuoBoCukcQAvD_BwE" + (at 292.1 62.23 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "3e901940-0df2-495b-9a1d-2e34c6b115d8") + ) + (pin "2" + (uuid "d87236bc-f45a-4010-9e97-8a6a5ba72d76") + ) + (instances + (project "SmartFuseBox" + (path "/c0735f89-9606-4ac5-a2cd-a138ec47fb2a" + (reference "D3") + (unit 1) + ) + ) + ) + ) + (sheet_instances + (path "/" + (page "1") + ) + ) + (embedded_fonts no) +) diff --git a/KiCad/8Relays/SmartFuseBox.png b/KiCad/8Relays/SmartFuseBox.png new file mode 100644 index 0000000..c1bdae1 Binary files /dev/null and b/KiCad/8Relays/SmartFuseBox.png differ diff --git a/KiCad/8Relays/fp-info-cache b/KiCad/8Relays/fp-info-cache new file mode 100644 index 0000000..6810254 --- /dev/null +++ b/KiCad/8Relays/fp-info-cache @@ -0,0 +1,111945 @@ +28155091925502653 +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 +BatteryClip_Keystone_54_D16-19mm +Battery clip for batteries with a diameter between 16-19 mm: https://www.keyelco.com/product.cfm/product_id/826 +battery clip 18650 18350 17350 CR123A 2/3A +0 +3 +1 +Battery +BatteryHolder_Bulgin_BX0034_1xAAA +Battery holder, Bulgin, BX0034, 1xAAA, screw holes, additional tab connections, https://www.bulgin.com/products/pub/media/import/attachments/Battery_holders.pdf +horizontal single +0 +2 +2 +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_Bulgin_BX0123_1xCR123 +Battery holder, Bulgin BX0123, battery type 1xCR123, https://www.bulgin.com/products/pub/media/import/attachments/Battery_holders.pdf#page=7, generated with kicad-footprint-generator StandardBox_generator.py +horizontal single +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, 12mm CR1220 battery holder, http://www.keyelco.com/product-pdf.cfm?p=710 +CR1220 battery holder +0 +2 +2 +Battery +BatteryHolder_Keystone_590 +AA CR2 A battery holder with leaf spring, Keystone, https://ken.keyeuro.eu/cat/590.pdf +AA battery holder Keystone +0 +3 +1 +Battery +BatteryHolder_Keystone_1042_1x18650 +Battery holder, Keystone 1042, battery type 1x18650, http://www.keyelco.com/product.cfm/product_id/918, generated with kicad-footprint-generator StandardBox_generator.py +horizontal single +0 +2 +2 +Battery +BatteryHolder_Keystone_1057_1x2032 +SMT (Auto-In/Ultra-Low) Holder for 2032 Cell, 33.2 x 23.9mm, 2mm height above PCB, https://www.keyelco.com/userAssets/file/M65p4.pdf +Keystone type 1057 coin cell holder CR2032 +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 +Battery holder, Keystone 2479, battery type 3xAAA, http://www.keyelco.com/product-pdf.cfm?p=1041, generated with kicad-footprint-generator StandardBox_generator.py +horizontal triple +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-PC +Battery holder, MPD BH-18650, battery type 1x18650, https://www.batteryholders.com/uploads/parts/BH-18650-PC/datasheets/BH-18650-PC-datasheet.pdf, generated with kicad-footprint-generator StandardBox_generator.py +horizontal single +0 +2 +2 +Battery +BatteryHolder_MPD_BK-18650-PC2 +Battery holder, MPD BK-18650, battery type 1x18650, https://www.batteryholders.com/uploads/parts/BK-18650-PC2/datasheets/BK-18650-PC2-datasheet.pdf, generated with kicad-footprint-generator StandardBox_generator.py +horizontal single +0 +2 +2 +Battery +BatteryHolder_MYOUNG_BS-07-A1BJ001_CR2032 +CR2032 battery holder https://www.lcsc.com/datasheet/lcsc_datasheet_2203021630_MYOUNG-BS-07-A1BJ001_C2979167.pdf +CR2032 BR2032 BatteryHolder Battery +0 +2 +2 +Battery +BatteryHolder_Multicomp_BC-2001_1x2032 +CR2032 retainer clip, SMT ( http://www.farnell.com/datasheets/1505853.pdf ) +BC-2001 CR2032 2032 Battery Holder +0 +3 +2 +Battery +BatteryHolder_Renata_SMTU2032-LF_1x2032 +https://www.renata.com/fr/downloads/?product=smtu2032-lf&fileid=6a9833a4d49dfb7b550194fe0f +Renata SMT battery holder coin cell 2032 +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 +Battery holder, TruPower BH-331P, battery type 3xAA, https://static.rapidonline.com/pdf/18-2967_v1.pdf, generated with kicad-footprint-generator StandardBox_generator.py +horizontal triple +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-HFN_Horizontal_CircularHoles +Panasonic CR-2032/HFN battery, https://industrial.panasonic.com/cdbs/www-data/pdf2/AAA4000/AAA4000D166.PDF +battery CR-2032 coin cell +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_CAS-120A +Slide Switch, SMD, Nidec CAS series, https://www.nidec-components.com/e/catalog/switch/cas.pdf +SMD slide switch Nidec CAS 120A +0 +3 +3 +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_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_KSC6xxG +Tactile switch, 6.2x6.25 mm, H7.7 mm, gullwing leads, https://www.ckswitches.com/media/1972/ksc6.pdf +CK C&K SPST +0 +4 +2 +Button_Switch_SMD +SW_Push_1P1T_NO_CK_KSC6xxJ +Tactile switch, 6.2x6.25 mm, H7.68 mm, J leads, https://www.ckswitches.com/media/1972/ksc6.pdf +CK C&K SPST +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_KSC9xxG +Tactile switch, 6.2x6.2mm, H7.7mm, compatible with button, gullwing leads, https://www.ckswitches.com/media/1975/ksc9.pdf +CK C&K SPST +0 +4 +2 +Button_Switch_SMD +SW_Push_1P1T_NO_CK_KSC9xxJ +Tactile switch, 6.2x6.2mm, H7.7mm, compatible with button, J leads, https://www.ckswitches.com/media/1975/ksc9.pdf +CK C&K SPST +0 +4 +2 +Button_Switch_SMD +SW_Push_1P1T_NO_CK_PTS125Sx43PSMTR +Tactile switch, 12x12 mm, H4.3 mm, round actuator, with pegs, gullwing terminals, https://www.ckswitches.com/media/1462/pts125.pdf +button tactile switch SPST 1P1T C&K +0 +4 +2 +Button_Switch_SMD +SW_Push_1P1T_NO_CK_PTS125Sx43SMTR +Tactile switch, 12x12 mm, H4.3 mm, round actuator, gullwing terminals, https://www.ckswitches.com/media/1462/pts125.pdf +button tactile Switch SPST 1P1T C&K +0 +4 +2 +Button_Switch_SMD +SW_Push_1P1T_NO_CK_PTS125Sx73PSMTR +Tactile switch, 12x12 mm, H7.3 mm, square snap fit actuator, with pegs, gullwing terminals, https://www.ckswitches.com/media/1462/pts125.pdf +button tactile switch SPST 1P1T C&K +0 +4 +2 +Button_Switch_SMD +SW_Push_1P1T_NO_CK_PTS125Sx73SMTR +Tactile switch, 12x12 mm, H7.3 mm, square snap fit actuator, gullwing terminals, https://www.ckswitches.com/media/1462/pts125.pdf +button tactile switch SPST 1P1T C&K +0 +4 +2 +Button_Switch_SMD +SW_Push_1P1T_NO_CK_PTS125Sx85PSMTR +Tactile switch, 12x12 mm, H8.5 mm, round actuator, with pegs, gullwing terminals, https://www.ckswitches.com/media/1462/pts125.pdf +button tactile switch SPST 1P1T C&K +0 +4 +2 +Button_Switch_SMD +SW_Push_1P1T_NO_CK_PTS125Sx85SMTR +Tactile switch, 12x12 mm, H8.5 mm, round actuator, gullwing terminals, https://www.ckswitches.com/media/1462/pts125.pdf +button tactile switch SPST 1P1T C&K +0 +4 +2 +Button_Switch_SMD +SW_Push_1P1T_NO_E-Switch_TL3301NxxxxxG +Tactile switch, 6x6 mm, H4.3 mm, gullwing terminals, https://www.e-switch.com/wp-content/uploads/2024/03/TL3301.pdf +SPST button straight +0 +4 +2 +Button_Switch_SMD +SW_Push_1P1T_NO_Vertical_Wuerth_434133025816 +https://katalog.we-online.com/em/datasheet/434133025816.pdf +tactile switch Wurth Wuerth +0 +4 +2 +Button_Switch_SMD +SW_Push_1P1T_XKB_TS-1187A +SMD Tactile Switch, http://www.helloxkb.com/public/images/pdf/TS-1187A-X-X-X.pdf +SPST Tactile Switch +0 +4 +2 +Button_Switch_SMD +SW_Push_1TS009xxxx-xxxx-xxxx_6x6x5mm +tactile push button, 6x6mm, height=5mm, 12V 50mA, https://datasheet.lcsc.com/lcsc/1811151231_HYP--Hongyuan-Precision-1TS009A-1800-5000-CT_C319409.pdf +tact sw push 6mm silicone rubber +0 +2 +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_SPDT_REED_MSDM-DT +Littlefuse 14.73x2.54mm, 175VDC 5W, SPDT Reed Switch MSDM-DT, https://www.littelfuse.com/~/media/electronics/datasheets/reed_switches/littelfuse_reed_switches_mdsm_dt_datasheet.pdf.pdf +Littlefuse Reed SPDT Switch +0 +3 +3 +Button_Switch_SMD +SW_SPDT_Shouhan_MSK12C02 +SPDT Surface Mount Slide Switch, right-angle, https://www.lcsc.com/datasheet/lcsc_datasheet_2304140030_SHOU-HAN-MSK12C02_C431540.pdf +MSK-12C02 MSK12C02 MSK12C02-HB +0 +7 +4 +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_KMS2xxG +Microminiature SMT Side Actuated, 4.2 x 2.8 x 1.42mm, https://www.ckswitches.com/media/1482/kms.pdf +Switch SPST KMS2 +0 +5 +3 +Button_Switch_SMD +SW_SPST_CK_KMS2xxGP +Microminiature SMT Side Actuated, 4.2 x 2.8 x 1.42mm with pegs, https://www.ckswitches.com/media/1482/kms.pdf +Switch SPST KMS2 +0 +5 +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_MiddlePushTravel_H2.5mm +Tactile switch, 4.7 x 3.5 mm, middle push travel, H2.5mm, https://industry.panasonic.com/ac/cdn/e/control/switch/light-touch/catalog/sw_lt_eng_4735s.pdf +SMD SMT SPST EVQP2 +0 +4 +2 +Button_Switch_SMD +SW_SPST_EVQP2_ShortPushTravel_H2.1mm +Tactile switch, 4.7 x 3.5 mm, short push travel, H2.1mm, https://industry.panasonic.com/ac/cdn/e/control/switch/light-touch/catalog/sw_lt_eng_4735s.pdf +SMD SMT SPST EVQP2 +0 +4 +2 +Button_Switch_SMD +SW_SPST_EVQP2_ShortPushTravel_H2.5mm +Tactile switch, 4.7 x 3.5 mm, short push travel, H2.5mm, https://industry.panasonic.com/ac/cdn/e/control/switch/light-touch/catalog/sw_lt_eng_4735s.pdf +SMD SMT SPST EVQP2 +0 +4 +2 +Button_Switch_SMD +SW_SPST_EVQP7A +Light Touch Switch, 2.2 N, https://www3.panasonic.biz/ac/e_download/control/switch/light-touch/catalog/sw_lt_eng_3529s_side.pdf?f_cd=402906 +tactile switch +0 +4 +2 +Button_Switch_SMD +SW_SPST_EVQP7C +Light Touch Switch, 2.2 N, https://www3.panasonic.biz/ac/e_download/control/switch/light-touch/catalog/sw_lt_eng_3529s_side.pdf?f_cd=402906 +tactile 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_PTS645Sx43SMTR92 +Tactile switch, 6x6 mm, H4.3 mm, gullwing terminals, https://www.ckswitches.com/media/1471/pts645.pdf +SPST Button Switch CK C&K +0 +4 +2 +Button_Switch_SMD +SW_SPST_PTS647_Sx38 +C&K Components SPST SMD PTS647 Series 4.5mm Tact Switch, 3.8mm Height, see https://www.ckswitches.com/media/2567/pts647.pdf +SPST Button Switch +0 +4 +2 +Button_Switch_SMD +SW_SPST_PTS647_Sx50 +C&K Components SPST SMD PTS647 Series 4.5mm Tact Switch, 5.0mm Height, see https://www.ckswitches.com/media/2567/pts647.pdf +SPST Button Switch +0 +4 +2 +Button_Switch_SMD +SW_SPST_PTS647_Sx70 +C&K Components SPST SMD PTS647 Series 4.5mm Tact Switch, 7.0mm Height, see https://www.ckswitches.com/media/2567/pts647.pdf +SPST Button Switch +0 +4 +2 +Button_Switch_SMD +SW_SPST_PTS810 +C&K Components, PTS 810 Series, Microminiature SMT Top Actuated, http://www.ckswitches.com/media/1476/pts810.pdf +SPST Button Switch +0 +4 +2 +Button_Switch_SMD +SW_SPST_Panasonic_EVQPL_3PL_5PL_PT_A08 +Light Touch Switch, http://industrial.panasonic.com/cdbs/www-data/pdf/ATK0000/ATK0000CE3.pdf +SMD SMT SPST EVQPL EVQPT +0 +6 +3 +Button_Switch_SMD +SW_SPST_Panasonic_EVQPL_3PL_5PL_PT_A15 +Light Touch Switch, http://industrial.panasonic.com/cdbs/www-data/pdf/ATK0000/ATK0000CE3.pdf +SMD SMT SPST EVQPL EVQPT +0 +6 +3 +Button_Switch_SMD +SW_SPST_REED_CT05-XXXX-G1 +Coto Technologies SPST Reed Switch CT05-XXXX-G1 +Coto Reed SPST Switch +0 +2 +2 +Button_Switch_SMD +SW_SPST_REED_CT05-XXXX-J1 +Coto Technologies SPST Reed Switch CT05-XXXX-J1 +Coto Reed SPST Switch +0 +2 +2 +Button_Switch_SMD +SW_SPST_REED_CT10-XXXX-G1 +Coto Technologies SPST Reed Switch CT10-XXXX-G1 +Coto Reed SPST Switch +0 +2 +2 +Button_Switch_SMD +SW_SPST_REED_CT10-XXXX-G2 +Coto Technologies SPST Reed Switch CT10-XXXX-G2 +Coto Reed SPST Switch +0 +2 +2 +Button_Switch_SMD +SW_SPST_REED_CT10-XXXX-G4 +Coto Technologies SPST Reed Switch CT10-XXXX-G4 +Coto Reed SPST Switch +0 +2 +2 +Button_Switch_SMD +SW_SPST_SKQG_WithStem +ALPS 5.2mm Square Low-profile Type (Surface Mount) SKQG Series, With stem, http://www.alps.com/prod/info/E/HTML/Tact/SurfaceMount/SKQG/SKQGAFE010.html +SPST Button Switch +0 +4 +2 +Button_Switch_SMD +SW_SPST_SKQG_WithoutStem +ALPS 5.2mm Square Low-profile Type (Surface Mount) SKQG Series, Without stem, http://www.alps.com/prod/info/E/HTML/Tact/SurfaceMount/SKQG/SKQGAEE010.html +SPST Button Switch +0 +4 +2 +Button_Switch_SMD +SW_SPST_TL3305A +https://www.e-switch.com/system/asset/product_line/data_sheet/213/TL3305.pdf +TL3305 Series Tact Switch +0 +4 +2 +Button_Switch_SMD +SW_SPST_TL3305B +https://www.e-switch.com/system/asset/product_line/data_sheet/213/TL3305.pdf +TL3305 Series Tact Switch +0 +4 +2 +Button_Switch_SMD +SW_SPST_TL3305C +https://www.e-switch.com/system/asset/product_line/data_sheet/213/TL3305.pdf +TL3305 Series Tact Switch +0 +4 +2 +Button_Switch_SMD +SW_SPST_TL3342 +Low-profile SMD Tactile Switch, https://www.e-switch.com/system/asset/product_line/data_sheet/165/TL3342.pdf +SPST Tactile Switch +0 +4 +2 +Button_Switch_SMD +SW_SPST_TS-1088-xR020 +SMD Tactile Switch, 3.9x3x2 mm, https://lcsc.com/datasheet/lcsc_datasheet_2504101957_XUNPU-TS-1088-AR02016_C720477.pdf +Tactile Switch +0 +2 +2 +Button_Switch_SMD +SW_SPST_TS-1088-xR025 +SMD Tactile Switch, 3.9x3x2.5 mm, https://lcsc.com/datasheet/lcsc_datasheet_2504101957_XUNPU-TS-1088-AR02016_C720477.pdf +Tactile Switch +0 +2 +2 +Button_Switch_SMD +SW_Tactile_SPST_NO_Straight_CK_PTS636Sx25SMTRLFS +Tactile switch, SPST, 6.0x3.5 mm, H2.5 mm, straight, NO, gull wing leads: https://www.ckswitches.com/media/2779/pts636.pdf +switch tactile SPST 1P1T straight NO SMTR C&K +0 +2 +2 +Button_Switch_THT +KSA_Tactile_SPST +KSA http://www.ckswitches.com/media/1457/ksa_ksl.pdf +SWITCH SMD KSA SW +0 +5 +5 +Button_Switch_THT +Nidec_Copal_SH-7010C +4-bit rotary coded switch, through-hole, https://www.nidec-copal-electronics.com/e/catalog/switch/sh-7000.pdf +rotary switch bcd +0 +6 +5 +Button_Switch_THT +Push_E-Switch_KS01Q01 +E-Switch KS01Q01 http://spec_sheets.e-switch.com/specs/29-KS01Q01.pdf +Push Button +0 +4 +4 +Button_Switch_THT +SW_CK_JS202011AQN_DPDT_Angled +C&K 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_CK_JS202011CQN_DPDT_Straight +C&K 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_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_DIP_SPSTx01_Piano_10.8x4.1mm_W7.62mm_P2.54mm +1x-dip-switch SPST , Piano, row spacing 7.62 mm (300 mils), body size 10.8x4.1mm +DIP Switch SPST Piano 7.62mm 300mil +0 +2 +2 +Button_Switch_THT +SW_DIP_SPSTx01_Slide_6.7x4.1mm_W7.62mm_P2.54mm_LowProfile +1x-dip-switch SPST , Slide, row spacing 7.62 mm (300 mils), body size 6.7x4.1mm (see e.g. https://www.ctscorp.com/wp-content/uploads/209-210.pdf), LowProfile +DIP Switch SPST Slide 7.62mm 300mil LowProfile +0 +2 +2 +Button_Switch_THT +SW_DIP_SPSTx01_Slide_9.78x4.72mm_W7.62mm_P2.54mm +1x-dip-switch SPST , Slide, row spacing 7.62 mm (300 mils), body size 9.78x4.72mm (see e.g. https://www.ctscorp.com/wp-content/uploads/206-208.pdf) +DIP Switch SPST Slide 7.62mm 300mil +0 +2 +2 +Button_Switch_THT +SW_DIP_SPSTx02_Piano_10.8x6.64mm_W7.62mm_P2.54mm +2x-dip-switch SPST , Piano, row spacing 7.62 mm (300 mils), body size 10.8x6.64mm +DIP Switch SPST Piano 7.62mm 300mil +0 +4 +4 +Button_Switch_THT +SW_DIP_SPSTx02_Piano_CTS_Series194-2MSTN_W7.62mm_P2.54mm +2x-dip-switch SPST CTS_Series194-2MSTN, Piano, row spacing 7.62 mm (300 mils), body size (see https://www.ctscorp.com/wp-content/uploads/194-195.pdf) +DIP Switch SPST Piano 7.62mm 300mil +0 +4 +4 +Button_Switch_THT +SW_DIP_SPSTx02_Slide_6.7x6.64mm_W7.62mm_P2.54mm_LowProfile +2x-dip-switch SPST , Slide, row spacing 7.62 mm (300 mils), body size 6.7x6.64mm (see e.g. https://www.ctscorp.com/wp-content/uploads/209-210.pdf), LowProfile +DIP Switch SPST Slide 7.62mm 300mil LowProfile +0 +4 +4 +Button_Switch_THT +SW_DIP_SPSTx02_Slide_9.78x7.26mm_W7.62mm_P2.54mm +2x-dip-switch SPST , Slide, row spacing 7.62 mm (300 mils), body size 9.78x7.26mm (see e.g. https://www.ctscorp.com/wp-content/uploads/206-208.pdf) +DIP Switch SPST Slide 7.62mm 300mil +0 +4 +4 +Button_Switch_THT +SW_DIP_SPSTx03_Piano_10.8x9.18mm_W7.62mm_P2.54mm +3x-dip-switch SPST , Piano, row spacing 7.62 mm (300 mils), body size 10.8x9.18mm +DIP Switch SPST Piano 7.62mm 300mil +0 +6 +6 +Button_Switch_THT +SW_DIP_SPSTx03_Piano_CTS_Series194-3MSTN_W7.62mm_P2.54mm +3x-dip-switch SPST CTS_Series194-3MSTN, Piano, row spacing 7.62 mm (300 mils), body size (see https://www.ctscorp.com/wp-content/uploads/194-195.pdf) +DIP Switch SPST Piano 7.62mm 300mil +0 +6 +6 +Button_Switch_THT +SW_DIP_SPSTx03_Slide_6.7x9.18mm_W7.62mm_P2.54mm_LowProfile +3x-dip-switch SPST , Slide, row spacing 7.62 mm (300 mils), body size 6.7x9.18mm (see e.g. https://www.ctscorp.com/wp-content/uploads/209-210.pdf), LowProfile +DIP Switch SPST Slide 7.62mm 300mil LowProfile +0 +6 +6 +Button_Switch_THT +SW_DIP_SPSTx03_Slide_9.78x9.8mm_W7.62mm_P2.54mm +3x-dip-switch SPST , Slide, row spacing 7.62 mm (300 mils), body size 9.78x9.8mm (see e.g. https://www.ctscorp.com/wp-content/uploads/206-208.pdf) +DIP Switch SPST Slide 7.62mm 300mil +0 +6 +6 +Button_Switch_THT +SW_DIP_SPSTx04_Piano_10.8x11.72mm_W7.62mm_P2.54mm +4x-dip-switch SPST , Piano, row spacing 7.62 mm (300 mils), body size 10.8x11.72mm +DIP Switch SPST Piano 7.62mm 300mil +0 +8 +8 +Button_Switch_THT +SW_DIP_SPSTx04_Piano_CTS_Series194-4MSTN_W7.62mm_P2.54mm +4x-dip-switch SPST CTS_Series194-4MSTN, Piano, row spacing 7.62 mm (300 mils), body size (see https://www.ctscorp.com/wp-content/uploads/194-195.pdf) +DIP Switch SPST Piano 7.62mm 300mil +0 +8 +8 +Button_Switch_THT +SW_DIP_SPSTx04_Slide_6.7x11.72mm_W7.62mm_P2.54mm_LowProfile +4x-dip-switch SPST , Slide, row spacing 7.62 mm (300 mils), body size 6.7x11.72mm (see e.g. https://www.ctscorp.com/wp-content/uploads/209-210.pdf), LowProfile +DIP Switch SPST Slide 7.62mm 300mil LowProfile +0 +8 +8 +Button_Switch_THT +SW_DIP_SPSTx04_Slide_9.78x12.34mm_W7.62mm_P2.54mm +4x-dip-switch SPST , Slide, row spacing 7.62 mm (300 mils), body size 9.78x12.34mm (see e.g. https://www.ctscorp.com/wp-content/uploads/206-208.pdf) +DIP Switch SPST Slide 7.62mm 300mil +0 +8 +8 +Button_Switch_THT +SW_DIP_SPSTx05_Piano_10.8x14.26mm_W7.62mm_P2.54mm +5x-dip-switch SPST , Piano, row spacing 7.62 mm (300 mils), body size 10.8x14.26mm +DIP Switch SPST Piano 7.62mm 300mil +0 +10 +10 +Button_Switch_THT +SW_DIP_SPSTx05_Piano_CTS_Series194-5MSTN_W7.62mm_P2.54mm +5x-dip-switch SPST CTS_Series194-5MSTN, Piano, row spacing 7.62 mm (300 mils), body size (see https://www.ctscorp.com/wp-content/uploads/194-195.pdf) +DIP Switch SPST Piano 7.62mm 300mil +0 +10 +10 +Button_Switch_THT +SW_DIP_SPSTx05_Slide_6.7x14.26mm_W7.62mm_P2.54mm_LowProfile +5x-dip-switch SPST , Slide, row spacing 7.62 mm (300 mils), body size 6.7x14.26mm (see e.g. https://www.ctscorp.com/wp-content/uploads/209-210.pdf), LowProfile +DIP Switch SPST Slide 7.62mm 300mil LowProfile +0 +10 +10 +Button_Switch_THT +SW_DIP_SPSTx05_Slide_9.78x14.88mm_W7.62mm_P2.54mm +5x-dip-switch SPST , Slide, row spacing 7.62 mm (300 mils), body size 9.78x14.88mm (see e.g. https://www.ctscorp.com/wp-content/uploads/206-208.pdf) +DIP Switch SPST Slide 7.62mm 300mil +0 +10 +10 +Button_Switch_THT +SW_DIP_SPSTx06_Piano_10.8x16.8mm_W7.62mm_P2.54mm +6x-dip-switch SPST , Piano, row spacing 7.62 mm (300 mils), body size 10.8x16.8mm +DIP Switch SPST Piano 7.62mm 300mil +0 +12 +12 +Button_Switch_THT +SW_DIP_SPSTx06_Piano_CTS_Series194-6MSTN_W7.62mm_P2.54mm +6x-dip-switch SPST CTS_Series194-6MSTN, Piano, row spacing 7.62 mm (300 mils), body size (see https://www.ctscorp.com/wp-content/uploads/194-195.pdf) +DIP Switch SPST Piano 7.62mm 300mil +0 +12 +12 +Button_Switch_THT +SW_DIP_SPSTx06_Slide_6.7x16.8mm_W7.62mm_P2.54mm_LowProfile +6x-dip-switch SPST , Slide, row spacing 7.62 mm (300 mils), body size 6.7x16.8mm (see e.g. https://www.ctscorp.com/wp-content/uploads/209-210.pdf), LowProfile +DIP Switch SPST Slide 7.62mm 300mil LowProfile +0 +12 +12 +Button_Switch_THT +SW_DIP_SPSTx06_Slide_9.78x17.42mm_W7.62mm_P2.54mm +6x-dip-switch SPST , Slide, row spacing 7.62 mm (300 mils), body size 9.78x17.42mm (see e.g. https://www.ctscorp.com/wp-content/uploads/206-208.pdf) +DIP Switch SPST Slide 7.62mm 300mil +0 +12 +12 +Button_Switch_THT +SW_DIP_SPSTx07_Piano_10.8x19.34mm_W7.62mm_P2.54mm +7x-dip-switch SPST , Piano, row spacing 7.62 mm (300 mils), body size 10.8x19.34mm +DIP Switch SPST Piano 7.62mm 300mil +0 +14 +14 +Button_Switch_THT +SW_DIP_SPSTx07_Piano_CTS_Series194-7MSTN_W7.62mm_P2.54mm +7x-dip-switch SPST CTS_Series194-7MSTN, Piano, row spacing 7.62 mm (300 mils), body size (see https://www.ctscorp.com/wp-content/uploads/194-195.pdf) +DIP Switch SPST Piano 7.62mm 300mil +0 +14 +14 +Button_Switch_THT +SW_DIP_SPSTx07_Slide_6.7x19.34mm_W7.62mm_P2.54mm_LowProfile +7x-dip-switch SPST , Slide, row spacing 7.62 mm (300 mils), body size 6.7x19.34mm (see e.g. https://www.ctscorp.com/wp-content/uploads/209-210.pdf), LowProfile +DIP Switch SPST Slide 7.62mm 300mil LowProfile +0 +14 +14 +Button_Switch_THT +SW_DIP_SPSTx07_Slide_9.78x19.96mm_W7.62mm_P2.54mm +7x-dip-switch SPST , Slide, row spacing 7.62 mm (300 mils), body size 9.78x19.96mm (see e.g. https://www.ctscorp.com/wp-content/uploads/206-208.pdf) +DIP Switch SPST Slide 7.62mm 300mil +0 +14 +14 +Button_Switch_THT +SW_DIP_SPSTx08_Piano_10.8x21.88mm_W7.62mm_P2.54mm +8x-dip-switch SPST , Piano, row spacing 7.62 mm (300 mils), body size 10.8x21.88mm +DIP Switch SPST Piano 7.62mm 300mil +0 +16 +16 +Button_Switch_THT +SW_DIP_SPSTx08_Piano_CTS_Series194-8MSTN_W7.62mm_P2.54mm +8x-dip-switch SPST CTS_Series194-8MSTN, Piano, row spacing 7.62 mm (300 mils), body size (see https://www.ctscorp.com/wp-content/uploads/194-195.pdf) +DIP Switch SPST Piano 7.62mm 300mil +0 +16 +16 +Button_Switch_THT +SW_DIP_SPSTx08_Slide_6.7x21.88mm_W7.62mm_P2.54mm_LowProfile +8x-dip-switch SPST , Slide, row spacing 7.62 mm (300 mils), body size 6.7x21.88mm (see e.g. https://www.ctscorp.com/wp-content/uploads/209-210.pdf), LowProfile +DIP Switch SPST Slide 7.62mm 300mil LowProfile +0 +16 +16 +Button_Switch_THT +SW_DIP_SPSTx08_Slide_9.78x22.5mm_W7.62mm_P2.54mm +8x-dip-switch SPST , Slide, row spacing 7.62 mm (300 mils), body size 9.78x22.5mm (see e.g. https://www.ctscorp.com/wp-content/uploads/206-208.pdf) +DIP Switch SPST Slide 7.62mm 300mil +0 +16 +16 +Button_Switch_THT +SW_DIP_SPSTx09_Piano_10.8x24.42mm_W7.62mm_P2.54mm +9x-dip-switch SPST , Piano, row spacing 7.62 mm (300 mils), body size 10.8x24.42mm +DIP Switch SPST Piano 7.62mm 300mil +0 +18 +18 +Button_Switch_THT +SW_DIP_SPSTx09_Piano_CTS_Series194-9MSTN_W7.62mm_P2.54mm +9x-dip-switch SPST CTS_Series194-9MSTN, Piano, row spacing 7.62 mm (300 mils), body size (see https://www.ctscorp.com/wp-content/uploads/194-195.pdf) +DIP Switch SPST Piano 7.62mm 300mil +0 +18 +18 +Button_Switch_THT +SW_DIP_SPSTx09_Slide_6.7x24.42mm_W7.62mm_P2.54mm_LowProfile +9x-dip-switch SPST , Slide, row spacing 7.62 mm (300 mils), body size 6.7x24.42mm (see e.g. https://www.ctscorp.com/wp-content/uploads/209-210.pdf), LowProfile +DIP Switch SPST Slide 7.62mm 300mil LowProfile +0 +18 +18 +Button_Switch_THT +SW_DIP_SPSTx09_Slide_9.78x25.04mm_W7.62mm_P2.54mm +9x-dip-switch SPST , Slide, row spacing 7.62 mm (300 mils), body size 9.78x25.04mm (see e.g. https://www.ctscorp.com/wp-content/uploads/206-208.pdf) +DIP Switch SPST Slide 7.62mm 300mil +0 +18 +18 +Button_Switch_THT +SW_DIP_SPSTx10_Piano_10.8x26.96mm_W7.62mm_P2.54mm +10x-dip-switch SPST , Piano, row spacing 7.62 mm (300 mils), body size 10.8x26.96mm +DIP Switch SPST Piano 7.62mm 300mil +0 +20 +20 +Button_Switch_THT +SW_DIP_SPSTx10_Piano_CTS_Series194-10MSTN_W7.62mm_P2.54mm +10x-dip-switch SPST CTS_Series194-10MSTN, Piano, row spacing 7.62 mm (300 mils), body size (see https://www.ctscorp.com/wp-content/uploads/194-195.pdf) +DIP Switch SPST Piano 7.62mm 300mil +0 +20 +20 +Button_Switch_THT +SW_DIP_SPSTx10_Slide_6.7x26.96mm_W7.62mm_P2.54mm_LowProfile +10x-dip-switch SPST , Slide, row spacing 7.62 mm (300 mils), body size 6.7x26.96mm (see e.g. https://www.ctscorp.com/wp-content/uploads/209-210.pdf), LowProfile +DIP Switch SPST Slide 7.62mm 300mil LowProfile +0 +20 +20 +Button_Switch_THT +SW_DIP_SPSTx10_Slide_9.78x27.58mm_W7.62mm_P2.54mm +10x-dip-switch SPST , Slide, row spacing 7.62 mm (300 mils), body size 9.78x27.58mm (see e.g. https://www.ctscorp.com/wp-content/uploads/206-208.pdf) +DIP Switch SPST Slide 7.62mm 300mil +0 +20 +20 +Button_Switch_THT +SW_DIP_SPSTx11_Piano_10.8x29.5mm_W7.62mm_P2.54mm +11x-dip-switch SPST , Piano, row spacing 7.62 mm (300 mils), body size 10.8x29.5mm +DIP Switch SPST Piano 7.62mm 300mil +0 +22 +22 +Button_Switch_THT +SW_DIP_SPSTx11_Piano_CTS_Series194-11MSTN_W7.62mm_P2.54mm +11x-dip-switch SPST CTS_Series194-11MSTN, Piano, row spacing 7.62 mm (300 mils), body size (see https://www.ctscorp.com/wp-content/uploads/194-195.pdf) +DIP Switch SPST Piano 7.62mm 300mil +0 +22 +22 +Button_Switch_THT +SW_DIP_SPSTx11_Slide_6.7x29.5mm_W7.62mm_P2.54mm_LowProfile +11x-dip-switch SPST , Slide, row spacing 7.62 mm (300 mils), body size 6.7x29.5mm (see e.g. https://www.ctscorp.com/wp-content/uploads/209-210.pdf), LowProfile +DIP Switch SPST Slide 7.62mm 300mil LowProfile +0 +22 +22 +Button_Switch_THT +SW_DIP_SPSTx11_Slide_9.78x30.12mm_W7.62mm_P2.54mm +11x-dip-switch SPST , Slide, row spacing 7.62 mm (300 mils), body size 9.78x30.12mm (see e.g. https://www.ctscorp.com/wp-content/uploads/206-208.pdf) +DIP Switch SPST Slide 7.62mm 300mil +0 +22 +22 +Button_Switch_THT +SW_DIP_SPSTx12_Piano_10.8x32.04mm_W7.62mm_P2.54mm +12x-dip-switch SPST , Piano, row spacing 7.62 mm (300 mils), body size 10.8x32.04mm +DIP Switch SPST Piano 7.62mm 300mil +0 +24 +24 +Button_Switch_THT +SW_DIP_SPSTx12_Piano_CTS_Series194-12MSTN_W7.62mm_P2.54mm +12x-dip-switch SPST CTS_Series194-12MSTN, Piano, row spacing 7.62 mm (300 mils), body size (see https://www.ctscorp.com/wp-content/uploads/194-195.pdf) +DIP Switch SPST Piano 7.62mm 300mil +0 +24 +24 +Button_Switch_THT +SW_DIP_SPSTx12_Slide_6.7x32.04mm_W7.62mm_P2.54mm_LowProfile +12x-dip-switch SPST , Slide, row spacing 7.62 mm (300 mils), body size 6.7x32.04mm (see e.g. https://www.ctscorp.com/wp-content/uploads/209-210.pdf), LowProfile +DIP Switch SPST Slide 7.62mm 300mil LowProfile +0 +24 +24 +Button_Switch_THT +SW_DIP_SPSTx12_Slide_9.78x32.66mm_W7.62mm_P2.54mm +12x-dip-switch SPST , Slide, row spacing 7.62 mm (300 mils), body size 9.78x32.66mm (see e.g. https://www.ctscorp.com/wp-content/uploads/206-208.pdf) +DIP Switch SPST Slide 7.62mm 300mil +0 +24 +24 +Button_Switch_THT +SW_E-Switch_EG1224_SPDT_Angled +E-Switch slide switch, EG series, SPDT, right angle, http://spec_sheets.e-switch.com/specs/P040042.pdf +switch SPDT +0 +7 +3 +Button_Switch_THT +SW_E-Switch_EG1271_SPDT +E-Switch sub miniature slide switch, EG series, SPDT, https://www.e-switch.com/wp-content/uploads/2022/06/EG.pdf +switch SPDT +0 +6 +6 +Button_Switch_THT +SW_E-Switch_EG2219_DPDT_Angled +E-Switch slide switch, EG series, DPDT, right angle, http://spec_sheets.e-switch.com/specs/P040170.pdf +switch DPDT +0 +10 +6 +Button_Switch_THT +SW_Lever_1P2T_NKK_GW12LxH +Switch, single pole double throw, right angle, http://www.nkkswitches.com/pdf/GW.pdf +switch single-pole double-throw spdt ON-ON horizontal +0 +5 +3 +Button_Switch_THT +SW_MEC_5GTH9 +MEC 5G single pole normally-open tactile switch https://cdn.sos.sk/productdata/80/f6/aabf7be6/5gth9358222.pdf +switch normally-open pushbutton push-button +0 +4 +2 +Button_Switch_THT +SW_NKK_BB15AH +https://www.nkkswitches.com/pdf/Bpushbuttons-1.pdf +Pushbutton Right-angle +0 +5 +3 +Button_Switch_THT +SW_NKK_G1xJP +Switch NKK G1xJP http://www.nkkswitches.com/pdf/gwillum.pdf +SWITCH TOGGLE ILLUM SPDT NKK +0 +6 +6 +Button_Switch_THT +SW_NKK_GW12LJP +Switch, single pole double throw, illuminated paddle, http://www.nkkswitches.com/pdf/gwillum.pdf +switch single-pole double-throw spdt ON-ON illuminated LED +0 +6 +6 +Button_Switch_THT +SW_NKK_NR01 +NKK Switches NR01 series rotary switch, 10.7 x 10.7mm. https://www.nkkswitches.com/pdf/NR01%20Rotaries.pdf +NKK NR01 SP3T SP4T SP5T +0 +10 +7 +Button_Switch_THT +SW_PUSH-12mm +Generic SW PUSH 12mm, e.g https://sten-eswitch-13110800-production.s3.amazonaws.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_1P1T_6x3.5mm_H4.3_APEM_MJTP1243 +tactile push button, 6x3.5mm, https://www.apem.com/idec-apem/en_US/PCB-switches/Tactile-Switches/MJTP-6mm-through-hole/c/MJTP_6mm_through%20hole?page=1 +PHAP3362 6mm tact sw THT +0 +2 +2 +Button_Switch_THT +SW_PUSH_1P1T_6x3.5mm_H5.0_APEM_MJTP1250 +tactile push button, 6x3.5mm, https://www.apem.com/idec-apem/en_US/PCB-switches/Tactile-Switches/MJTP-6mm-through-hole/c/MJTP_6mm_through%20hole?page=1 +PHAP3362A 6mm tact sw THT +0 +2 +2 +Button_Switch_THT +SW_PUSH_6mm +Generic 6mm SW tactile push button +tact sw push 6mm +0 +4 +2 +Button_Switch_THT +SW_PUSH_6mm_H4.3mm +tactile push button, 6x6mm e.g. PHAP33xx series, height=4.3mm +tact sw push 6mm +0 +4 +2 +Button_Switch_THT +SW_PUSH_6mm_H5mm +tactile push button, 6x6mm e.g. PHAP33xx series, height=5mm +tact sw push 6mm +0 +4 +2 +Button_Switch_THT +SW_PUSH_6mm_H7.3mm +tactile push button, 6x6mm e.g. PHAP33xx series, height=7.3mm +tact sw push 6mm +0 +4 +2 +Button_Switch_THT +SW_PUSH_6mm_H8.5mm +tactile push button, 6x6mm e.g. PHAP33xx series, height=8.5mm +tact sw push 6mm +0 +4 +2 +Button_Switch_THT +SW_PUSH_6mm_H8mm +tactile push button, 6x6mm e.g. PHAP33xx series, height=8mm +tact sw push 6mm +0 +4 +2 +Button_Switch_THT +SW_PUSH_6mm_H9.5mm +tactile push button, 6x6mm e.g. PHAP33xx series, height=9.5mm +tact sw push 6mm +0 +4 +2 +Button_Switch_THT +SW_PUSH_6mm_H13mm +tactile push button, 6x6mm e.g. PHAP33xx series, height=13mm +tact sw push 6mm +0 +4 +2 +Button_Switch_THT +SW_PUSH_E-Switch_FS5700DP_DPDT +FS5700 series pushbutton footswitch, DPDT, https://www.e-switch.com/system/asset/product_line/data_sheet/226/FS5700.pdf +switch DPDT footswitch +0 +6 +6 +Button_Switch_THT +SW_PUSH_LCD_E3_SAxxxx +Switch with LCD screen E3 SAxxxx +switch normally-open pushbutton push-button LCD +0 +6 +6 +Button_Switch_THT +SW_PUSH_LCD_E3_SAxxxx_SocketPins +Switch with LCD screen E3 SAxxxx +switch normally-open pushbutton push-button LCD +0 +6 +6 +Button_Switch_THT +SW_Push_1P1T_NO_LED_E-Switch_TL1250 +illuminated right angle tact switch https://www.e-switch.com/system/asset/product_line/data_sheet/148/TL1250.pdf +led push switch right angle +0 +6 +4 +Button_Switch_THT +SW_Push_1P2T_Vertical_E-Switch_800UDP8P1A1M6 + right angle SPDT push button https://www.e-switch.com/system/asset/product_line/data_sheet/210/800U.pdf +IP67 ultra-miniture horizontal +0 +5 +3 +Button_Switch_THT +SW_Push_2P1T_Toggle_CK_PVA1xxH1xxxxxxV2 +momentary / push-push button, h=17.5mm C&K PVA1 https://www.ckswitches.com/media/1343/pva.pdf +tact sw push PVA1 DPST +0 +4 +4 +Button_Switch_THT +SW_Push_2P1T_Toggle_CK_PVA1xxH2xxxxxxV2 +momentary / push-push button, h=23mm C&K PVA1 https://www.ckswitches.com/media/1343/pva.pdf +tact sw push PVA1 DPST +0 +4 +4 +Button_Switch_THT +SW_Push_2P1T_Toggle_CK_PVA1xxH3xxxxxxV2 +momentary / push-push button, h=20.5mm C&K PVA1 https://www.ckswitches.com/media/1343/pva.pdf +tact sw push PVA1 DPST +0 +4 +4 +Button_Switch_THT +SW_Push_2P1T_Toggle_CK_PVA1xxH4xxxxxxV2 +momentary / push-push button, h=15mm C&K PVA1 https://www.ckswitches.com/media/1343/pva.pdf +tact sw push PVA1 DPST +0 +4 +4 +Button_Switch_THT +SW_Push_2P2T_Toggle_CK_PVA2OAH5xxxxxxV2 +momentary / push-push button, h=13mm C&K PVA2 https://www.ckswitches.com/media/1343/pva.pdf +tact sw push PVA2 DPDT +0 +6 +6 +Button_Switch_THT +SW_Push_2P2T_Toggle_CK_PVA2xxH1xxxxxxV2 +momentary / push-push button, h=17.5mm C&K PVA2 https://www.ckswitches.com/media/1343/pva.pdf +tact sw push PVA2 DPDT +0 +6 +6 +Button_Switch_THT +SW_Push_2P2T_Toggle_CK_PVA2xxH2xxxxxxV2 +momentary / push-push button, h=23mm C&K PVA2 https://www.ckswitches.com/media/1343/pva.pdf +tact sw push PVA2 DPDT +0 +6 +6 +Button_Switch_THT +SW_Push_2P2T_Toggle_CK_PVA2xxH3xxxxxxV2 +momentary / push-push button, h=20.5mm C&K PVA2 https://www.ckswitches.com/media/1343/pva.pdf +tact sw push PVA2 DPDT +0 +6 +6 +Button_Switch_THT +SW_Push_2P2T_Toggle_CK_PVA2xxH4xxxxxxV2 +momentary / push-push button, h=15mm C&K PVA2 https://www.ckswitches.com/media/1343/pva.pdf +tact sw push PVA2 DPDT +0 +6 +6 +Button_Switch_THT +SW_Push_2P2T_Vertical_E-Switch_800UDP8P1A1M6 + right angle DPDT push button https://www.e-switch.com/system/asset/product_line/data_sheet/210/800U.pdf +IP67 ultra-miniture horizontal +0 +8 +6 +Button_Switch_THT +SW_SPST_Omron_B3F-40xx +SW_THT_Tactile_Omron_B3F-40xx, 12x12 mm, Through hole switch from the B3F Family manufactured by Omron, https://www.omron.com/ecb/products/pdf/en-b3f.pdf +tactile switch THT button push B3F-4000 B3F-4050 B3F-4005 B3F-4055 +0 +4 +2 +Button_Switch_THT +SW_SPST_Omron_B3F-50xx +SW_THT_Tactile_Omron_B3F-50xx, 12x12x7,3 mm, Through hole switch from the B3F Family manufactured by Omron, https://www.omron.com/ecb/products/pdf/en-b3f.pdf +tactile omron switch tht B3F-5000 B3F-5050 B3F-5001 B3F-5051 +0 +4 +2 +Button_Switch_THT +SW_SPST_Omron_B3F-315x_Angled +tactile switch, 7.3mm x 6.25mm x 7.4mm, right angle, https://omronfs.omron.com/en_US/ecb/products/pdf/en-b3f.pdf +tactile switch Omron B3F right angle through hole +0 +4 +2 +Button_Switch_THT +SW_Slide-03_Wuerth-WS-SLTV_10x2.5x6.4_P2.54mm +Wuerth, WS-SLTV, 450301014042, https://www.we-online.com/components/products/datasheet/450301014042.pdf +switch single-pole opposite-side-connection double-throw SPDT würth wurth +0 +3 +3 +Button_Switch_THT +SW_Slide_SP3T_Straight_CK_OS103012MU1QP1 +C&K miniature slide switch, OS series, SP3T, 6x17x12.20mm, https://www.ckswitches.com/media/1428/os.pdf +slide switch SP3T +0 +6 +5 +Button_Switch_THT +SW_Slide_SPDT_Angled_CK_OS102011MA1Q +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_Slide_SPDT_Straight_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_TH_Tactile_Omron_B3F-100x +Tactile switch, 6x6 mm, H4.3 mm, 6.5 mm pitch, https://omronfs.omron.com/en_US/ecb/products/pdf/en-b3f.pdf +Omron B3F-10xx SPST 1P1T +0 +4 +2 +Button_Switch_THT +SW_TH_Tactile_Omron_B3F-102x +Tactile switch, 6x6 mm, H5.0 mm, 6.5 mm pitch, https://omronfs.omron.com/en_US/ecb/products/pdf/en-b3f.pdf +Omron B3F-10xx SPST 1P1T +0 +4 +2 +Button_Switch_THT +SW_TH_Tactile_Omron_B3F-106x +Tactile switch, 6x6 mm, H7.0 mm, 6.5 mm pitch, https://omronfs.omron.com/en_US/ecb/products/pdf/en-b3f.pdf +Omron B3F-10xx SPST 1P1T +0 +4 +2 +Button_Switch_THT +SW_TH_Tactile_Omron_B3F-107x +Tactile switch, 6x6 mm, H9.5 mm, 6.5 mm pitch, https://omronfs.omron.com/en_US/ecb/products/pdf/en-b3f.pdf +Omron B3F-10xx SPST 1P1T +0 +4 +2 +Button_Switch_THT +SW_TH_Tactile_Omron_B3F-110x +Tactile switch, 6x6 mm, ground terminal, H4.3 mm, 6.5 mm pitch, https://omronfs.omron.com/en_US/ecb/products/pdf/en-b3f.pdf +Omron B3F-11xx SPST 1P1T +0 +5 +3 +Button_Switch_THT +SW_TH_Tactile_Omron_B3F-112x +Tactile switch, 6x6 mm, ground terminal, H5.0 mm, 6.5 mm pitch, https://omronfs.omron.com/en_US/ecb/products/pdf/en-b3f.pdf +Omron B3F-11xx SPST 1P1T +0 +5 +3 +Button_Switch_THT +SW_TH_Tactile_Omron_B3F-1110 +Tactile switch, 6x6 mm, ground terminal, H5.0 mm, 7.5 mm pitch, https://omronfs.omron.com/en_US/ecb/products/pdf/en-b3f.pdf +Omron B3F-11xx SPST 1P1T +0 +5 +3 +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 +Button_Switch_THT +SW_XKB_DM1-16UC-1 +1A 30V SPDT Micro Switch rated for one million cycles, W12.7xD5.7xH6.6, https://www.helloxkb.com/public/images/pdf/DMX-XXXC-X.pdf +SPDT endstop limit switch clockwise hook lever XKB DM1-16UC-1 +0 +3 +3 +Button_Switch_THT +SW_XKB_DM1-16UD-1 +1A 30V SPDT Micro Switch rated for one million cycles, W12.7xD5.7xH6.6, https://www.helloxkb.com/public/images/pdf/DMX-XXXD-X.pdf +SPDT endstop limit switch anti-clockwise hook lever XKB DM1-16UD-1 +0 +3 +3 +Button_Switch_THT +SW_XKB_DM1-16UP-1 +1A 30V SPDT Micro Switch rated for one million cycles, W12.7xD5.7xH6.6, https://www.helloxkb.com/public/images/pdf/DMX-XXXP-X.pdf +SPDT endstop limit switch vertical hook lever XKB DM1-16UP-1 +0 +3 +3 +Buzzer_Beeper +Buzzer_12x9.5RM7.6 +Generic Buzzer, D12mm height 9.5mm with RM7.6mm +buzzer +0 +2 +2 +Buzzer_Beeper +Buzzer_15x7.5RM7.6 +Generic Buzzer, D15mm height 7.5mm with RM7.6mm +buzzer +0 +2 +2 +Buzzer_Beeper +Buzzer_CUI_CPT-9019S-SMT +https://www.cui.com/product/resource/cpt-9019s-smt.pdf +buzzer piezo +0 +2 +2 +Buzzer_Beeper +Buzzer_D14mm_H7mm_P10mm +Generic Buzzer, D14mm height 7mm with pitch 10mm +buzzer +0 +2 +2 +Buzzer_Beeper +Buzzer_Mallory_AST1109MLTRQ +Mallory low-profile piezo buzzer, https://mspindy.com/spec-sheets/AST1109MLTRQ.pdf +buzzer piezo +0 +2 +2 +Buzzer_Beeper +Buzzer_Mallory_AST1240MLQ +Mallory low-profile piezo buzzer, https://www.mspindy.com/specifications/AST12140MLQ.pdf +piezo buzzer +0 +2 +2 +Buzzer_Beeper +Buzzer_Murata_PKLCS1212E +Murata Buzzer https://www.murata.com/~/media/webrenewal/support/library/catalog/products/sound/p37e.ashx +Murata Buzzer Beeper +0 +2 +2 +Buzzer_Beeper +Buzzer_Murata_PKMCS0909E +Murata Buzzer http://www.murata.com/en-us/api/pdfdownloadapi?cate=&partno=PKMCS0909E4000-R1 +Murata Buzzer Beeper +0 +2 +2 +Buzzer_Beeper +Buzzer_TDK_PS1240P02BT_D12.2mm_H6.5mm +Buzzer, D12.2mm height 6.5mm, https://product.tdk.com/info/en/catalog/datasheets/piezoelectronic_buzzer_ps_en.pdf +buzzer +0 +2 +2 +Buzzer_Beeper +Indicator_PUI_AI-1440-TWT-24V-2-R +14mm Indicator, https://www.puiaudio.com/media/SpecSheet/AI-1440-TWT-24V-2-R.pdf +piezo buzzer self drive oscillator +0 +2 +2 +Buzzer_Beeper +MagneticBuzzer_CUI_CMT-8504-100-SMT +magnetic transducer buzzer, 5V, SPL of 100 dB at 10 cm, https://www.cuidevices.com/product/resource/pdf/cmt-8504-100-smt-tr.pdf +CMT 8504 +0 +4 +4 +Buzzer_Beeper +MagneticBuzzer_CUI_CST-931RP-A +CST-931RP-A, http://www.cui.com/product/resource/cst-931rp-a.pdf +CST-931RP-A +0 +2 +2 +Buzzer_Beeper +MagneticBuzzer_Kingstate_KCG0601 +Buzzer, Elektromagnetic Beeper, Summer, +Kingstate KCG0601 +0 +2 +2 +Buzzer_Beeper +MagneticBuzzer_Kobitone_254-EMB73-RO +MagneticBuzzer_Kobitone_254-EMB73-RO https://www.mouser.es/datasheet/2/209/joytech_11092018_KT-400379-1501513.pdf +MagneticBuzzer_Kobitone_254-EMB73-RO +0 +2 +2 +Buzzer_Beeper +MagneticBuzzer_Kobitone_254-EMB84Q-RO +MagneticBuzzer Kobitone 254-EMB84Q-RO https://www.mouser.es/datasheet/2/209/KT-400385-1171904.pdf +MagneticBuzzer Kobitone 254-EMB84Q-RO +0 +3 +3 +Buzzer_Beeper +MagneticBuzzer_PUI_AT-0927-TT-6-R +Buzzer Magnetic 9mm AT-0927-TT-6-R, http://www.puiaudio.com/pdf/AT-0927-TT-6-R.pdf +Buzzer Magnetic 9mm AT-0927-TT-6-R +0 +2 +2 +Buzzer_Beeper +MagneticBuzzer_PUI_SMT-1028-T-2-R +Buzzer, 2830Hz, 3.6Vpp, 90dbA@10cm, Top sound port, 10x10x3,5mm, https://api.puiaudio.com/file/612539d9-c50b-48de-88aa-b63ef8817a91.pdf +SMT 1028 +0 +4 +3 +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_HGP +http://datasheet.octopart.com/HMB06-Star-Micronics-datasheet-514145.pdf +buzzer round tht +0 +2 +2 +Buzzer_Beeper +MagneticBuzzer_StarMicronics_HMB +http://datasheet.octopart.com/HMB06-Star-Micronics-datasheet-514145.pdf +buzzer round tht +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 +MagneticBuzzer_StarMicronics_QMB +http://datasheet.octopart.com/HMB06-Star-Micronics-datasheet-514145.pdf +buzzer round tht +0 +2 +2 +Buzzer_Beeper +MagneticBuzzer_StarMicronics_QMB-105 +http://datasheet.octopart.com/HMB06-Star-Micronics-datasheet-514145.pdf +buzzer round tht +0 +2 +2 +Buzzer_Beeper +MagneticBuzzer_StarMicronics_QMB-108 +http://datasheet.octopart.com/HMB06-Star-Micronics-datasheet-514145.pdf +buzzer round tht +0 +2 +2 +Buzzer_Beeper +MagneticBuzzer_StarMicronics_QMB-111 +http://datasheet.octopart.com/HMB06-Star-Micronics-datasheet-514145.pdf +buzzer round tht +0 +2 +2 +Buzzer_Beeper +MagneticBuzzer_StarMicronics_QMX +http://datasheet.octopart.com/HMB06-Star-Micronics-datasheet-514145.pdf +buzzer round tht +0 +2 +2 +Buzzer_Beeper +MagneticBuzzer_StarMicronics_RMX +http://datasheet.octopart.com/HMB06-Star-Micronics-datasheet-514145.pdf +buzzer round tht +0 +2 +2 +Buzzer_Beeper +MagneticBuzzer_StarMicronics_TMB +http://datasheet.octopart.com/HMB06-Star-Micronics-datasheet-514145.pdf +buzzer round tht +0 +2 +2 +Buzzer_Beeper +MagneticBuzzer_StarMicronics_TMX-F +http://datasheet.octopart.com/HMB06-Star-Micronics-datasheet-514145.pdf +buzzer round tht +0 +2 +2 +Buzzer_Beeper +MagneticBuzzer_StarMicronics_TMX-H +http://datasheet.octopart.com/HMB06-Star-Micronics-datasheet-514145.pdf +buzzer round tht +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 +CK_JS202011SCQN +SW_JS202011SCQN + + +0 +6 +6 +CUI_PTN091 +TRIM_PTN091-V05115K1B + + +0 +5 +5 +Calibration_Scale +Gauge_10mm_Type1_CopperTop +Gauge, Massstab, 10mm, CopperTop, Type 1, +Gauge Massstab 10mm CopperTop Type 1 +0 +0 +0 +Calibration_Scale +Gauge_10mm_Type1_SilkScreenTop +Gauge, Massstab, 10mm, SilkScreenTop, Type 1, +Gauge Massstab 10mm SilkScreenTop Type 1 +0 +0 +0 +Calibration_Scale +Gauge_10mm_Type2_CopperTop +Gauge, Massstab, 10mm, CopperTop, Type 2, +Gauge Massstab 10mm CopperTop Type 2 +0 +0 +0 +Calibration_Scale +Gauge_10mm_Type2_SilkScreenTop +Gauge, Massstab, 10mm, SilkScreenTop, Type 2, +Gauge Massstab 10mm SilkScreenTop Type 2 +0 +0 +0 +Calibration_Scale +Gauge_10mm_Type3_CopperTop +Gauge, Massstab, 10mm, CopperTop, Type 3, +Gauge Massstab 10mm CopperTop Type 3 +0 +0 +0 +Calibration_Scale +Gauge_10mm_Type3_SilkScreenTop +Gauge, Massstab, 10mm, SilkScreenTop, Type 3, +Gauge Massstab 10mm SilkScreenTop Type 3 +0 +0 +0 +Calibration_Scale +Gauge_10mm_Type4_CopperTop +Gauge, Massstab, 10mm, CopperTop, Type 4, +Gauge Massstab 10mm CopperTop Type 4 +0 +0 +0 +Calibration_Scale +Gauge_10mm_Type4_SilkScreenTop +Gauge, Massstab, 10mm, SilkScreenTop, Type 4, +Gauge Massstab 10mm SilkScreenTop Type 4 +0 +0 +0 +Calibration_Scale +Gauge_10mm_Type5_CopperTop +Gauge, Massstab, 10mm, CopperTop, Type 5, +Gauge Massstab 10mm CopperTop Type 5 +0 +0 +0 +Calibration_Scale +Gauge_10mm_Type5_SilkScreenTop +Gauge, Massstab, 10mm, SilkScreenTop, Type 5, +Gauge Massstab 10mm SilkScreenTop Type 5 +0 +0 +0 +Calibration_Scale +Gauge_50mm_Type1_CopperTop +Gauge, Massstab, 50mm, CopperTop, Type 1, +Gauge Massstab 50mm CopperTop Type 1 +0 +0 +0 +Calibration_Scale +Gauge_50mm_Type1_SilkScreenTop +Gauge, Massstab, 50mm, SilkScreenTop, Type 1, +Gauge Massstab 50mm SilkScreenTop Type 1 +0 +0 +0 +Calibration_Scale +Gauge_50mm_Type2_CopperTop +Gauge, Massstab, 50mm, CopperTop, Type 2, +Gauge Massstab 50mm CopperTop Type 2 +0 +0 +0 +Calibration_Scale +Gauge_50mm_Type2_SilkScreenTop +Gauge, Massstab, 50mm, SilkScreenTop, Type 2, +Gauge Massstab 50mm SilkScreenTop Type 2 +0 +0 +0 +Calibration_Scale +Gauge_100mm_Grid_Type1_CopperTop +Gauge, Massstab, 100mm, Gitter, Grid, CopperTop, Type 1, +Gauge Massstab 100mm Gitter Grid CopperTop Type 1 +0 +0 +0 +Calibration_Scale +Gauge_100mm_Type1_CopperTop +Gauge, Massstab, 100mm, CopperTop, Type 1, +Gauge Massstab 100mm CopperTop Type 1 +0 +0 +0 +Calibration_Scale +Gauge_100mm_Type1_SilkScreenTop +Gauge, Massstab, 100mm, SilkScreenTop, Type 1, +Gauge Massstab 100mm SilkScreenTop Type 1 +0 +0 +0 +Calibration_Scale +Gauge_100mm_Type2_CopperTop +Gauge, Massstab, 100mm, CopperTop, Type 2, +Gauge Massstab 100mm CopperTop Type 2 +0 +0 +0 +Calibration_Scale +Gauge_100mm_Type2_SilkScreenTop +Gauge, Massstab, 100mm, SilkScreenTop, Type 2, +Gauge Massstab 100mm SilkScreenTop Type 2 +0 +0 +0 +Capacitor_SMD +CP_Elec_3x5.3 +SMT capacitor, aluminium electrolytic, 3x5.3, Cornell Dubilier Electronics +Capacitor Electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_3x5.4 +SMD capacitor, aluminum electrolytic, Nichicon, 3.0x5.4mm +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_4x3 +SMD capacitor, aluminum electrolytic, Nichicon, 4.0x3mm +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_4x3.9 +SMD capacitor, aluminum electrolytic, Nichicon, 4.0x3.9mm +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_4x4.5 +SMD capacitor, aluminum electrolytic, Nichicon, 4.0x4.5mm +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_4x5.3 +SMD capacitor, aluminum electrolytic, Vishay, 4.0x5.3mm +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_4x5.4 +SMD capacitor, aluminum electrolytic, Panasonic A5 / Nichicon, 4.0x5.4mm +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_4x5.7 +SMD capacitor, aluminum electrolytic, United Chemi-Con, 4.0x5.7mm +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_4x5.8 +SMD capacitor, aluminum electrolytic, Panasonic, 4.0x5.8mm +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_5x3 +SMD capacitor, aluminum electrolytic, Nichicon, 5.0x3.0mm +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_5x3.9 +SMD capacitor, aluminum electrolytic, Nichicon, 5.0x3.9mm +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_5x4.4 +SMD capacitor, aluminum electrolytic, Panasonic B45, 5.0x4.4mm +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_5x4.5 +SMD capacitor, aluminum electrolytic, Nichicon, 5.0x4.5mm +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_5x5.3 +SMD capacitor, aluminum electrolytic, Nichicon, 5.0x5.3mm +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_5x5.4 +SMD capacitor, aluminum electrolytic, Nichicon, 5.0x5.4mm +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_5x5.7 +SMD capacitor, aluminum electrolytic, United Chemi-Con, 5.0x5.7mm +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_5x5.8 +SMD capacitor, aluminum electrolytic, Panasonic, 5.0x5.8mm +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_5x5.9 +SMD capacitor, aluminum electrolytic, Panasonic B6, 5.0x5.9mm +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_6.3x3 +SMD capacitor, aluminum electrolytic, Nichicon, 6.3x3.0mm +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_6.3x3.9 +SMD capacitor, aluminum electrolytic, Nichicon, 6.3x3.9mm +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_6.3x4.5 +SMD capacitor, aluminum electrolytic, Nichicon, 6.3x4.5mm +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_6.3x4.9 +SMD capacitor, aluminum electrolytic, Panasonic C5, 6.3x4.9mm +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_6.3x5.2 +SMD capacitor, aluminum electrolytic, United Chemi-Con, 6.3x5.2mm +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_6.3x5.3 +SMD capacitor, aluminum electrolytic, Cornell Dubilier, 6.3x5.3mm +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_6.3x5.4 +SMD capacitor, aluminum electrolytic, Panasonic C55, 6.3x5.4mm +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_6.3x5.4_Nichicon +SMD capacitor, aluminum electrolytic, Nichicon, 6.3x5.4mm +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_6.3x5.7 +SMD capacitor, aluminum electrolytic, United Chemi-Con, 6.3x5.7mm +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_6.3x5.8 +SMD capacitor, aluminum electrolytic, Nichicon, 6.3x5.8mm +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_6.3x5.9 +SMD capacitor, aluminum electrolytic, Panasonic C6, 6.3x5.9mm +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_6.3x7.7 +SMD capacitor, aluminum electrolytic, Nichicon, 6.3x7.7mm +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_6.3x9.9 +SMD capacitor, aluminum electrolytic, Panasonic C10, 6.3x9.9mm +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_8x5.4 +SMD capacitor, aluminum electrolytic, Nichicon, 8.0x5.4mm +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_8x6.2 +SMD capacitor, aluminum electrolytic, Nichicon, 8.0x6.2mm +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_8x6.5 +SMD capacitor, aluminum electrolytic, Rubycon, 8.0x6.5mm +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_8x6.7 +SMD capacitor, aluminum electrolytic, United Chemi-Con, 8.0x6.7mm +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_8x6.9 +SMD capacitor, aluminum electrolytic, Panasonic E7, 8.0x6.9mm +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_8x10 +SMD capacitor, aluminum electrolytic, Nichicon, 8.0x10mm +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_8x10.5 +SMD capacitor, aluminum electrolytic, Vishay 0810, 8.0x10.5mm, http://www.vishay.com/docs/28395/150crz.pdf +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_8x11.9 +SMD capacitor, aluminum electrolytic, Panasonic E12, 8.0x11.9mm +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_10x7.7 +SMD capacitor, aluminum electrolytic, Nichicon, 10.0x7.7mm +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_10x7.9 +SMD capacitor, aluminum electrolytic, Panasonic F8, 10.0x7.9mm +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_10x10 +SMD capacitor, aluminum electrolytic, Nichicon, 10.0x10.0mm +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_10x10.5 +SMD capacitor, aluminum electrolytic, Vishay 1010, 10.0x10.5mm, http://www.vishay.com/docs/28395/150crz.pdf +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_10x12.5 +SMD capacitor, aluminum electrolytic, Vishay 1012, 10.0x12.5mm, http://www.vishay.com/docs/28395/150crz.pdf +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_10x12.6 +SMD capacitor, aluminum electrolytic, Panasonic F12, 10.0x12.6mm +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_10x14.3 +SMD capacitor, aluminum electrolytic, Vishay 1014, 10.0x14.3mm, http://www.vishay.com/docs/28395/150crz.pdf +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_16x17.5 +SMD capacitor, aluminum electrolytic, Vishay 1616, 16.0x17.5mm, http://www.vishay.com/docs/28395/150crz.pdf +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_16x22 +SMD capacitor, aluminum electrolytic, Vishay 1621, 16.0x22.0mm, http://www.vishay.com/docs/28395/150crz.pdf +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_18x17.5 +SMD capacitor, aluminum electrolytic, Vishay 1816, 18.0x17.5mm, http://www.vishay.com/docs/28395/150crz.pdf +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_18x22 +SMD capacitor, aluminum electrolytic, Vishay 1821, 18.0x22.0mm, http://www.vishay.com/docs/28395/150crz.pdf +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_CAP-XX_DMF3Zxxxxxxxx3D +5.5V, 470mF supercapacitor, 45mohm, -40ºC to +70ºC, https://www.cap-xx.com/wp-content/uploads/datasheets/CAP-XX-DMF470mF-Datasheet.pdf +supercap +0 +3 +3 +Capacitor_SMD +C_0201_0603Metric +Capacitor SMD 0201 (0603 Metric), square (rectangular) end terminal, IPC-7351 nominal, (Body size source: https://www.vishay.com/docs/20052/crcw0201e3.pdf), generated with kicad-footprint-generator +capacitor +0 +4 +2 +Capacitor_SMD +C_0201_0603Metric_Pad0.64x0.40mm_HandSolder +Capacitor SMD 0201 (0603 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: https://www.vishay.com/docs/20052/crcw0201e3.pdf), generated with kicad-footprint-generator +capacitor handsolder +0 +4 +2 +Capacitor_SMD +C_0402_1005Metric +Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator +capacitor +0 +2 +2 +Capacitor_SMD +C_0402_1005Metric_Pad0.74x0.62mm_HandSolder +Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator +capacitor handsolder +0 +2 +2 +Capacitor_SMD +C_0504_1310Metric +Capacitor SMD 0504 (1310 Metric), square (rectangular) end terminal, IPC-7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator +capacitor +0 +2 +2 +Capacitor_SMD +C_0504_1310Metric_Pad0.83x1.28mm_HandSolder +Capacitor SMD 0504 (1310 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator +capacitor handsolder +0 +2 +2 +Capacitor_SMD +C_0603_1608Metric +Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC-7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator +capacitor +0 +2 +2 +Capacitor_SMD +C_0603_1608Metric_Pad1.08x0.95mm_HandSolder +Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator +capacitor handsolder +0 +2 +2 +Capacitor_SMD +C_0805_2012Metric +Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC-7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator +capacitor +0 +2 +2 +Capacitor_SMD +C_0805_2012Metric_Pad1.18x1.45mm_HandSolder +Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator +capacitor handsolder +0 +2 +2 +Capacitor_SMD +C_01005_0402Metric +Capacitor SMD 01005 (0402 Metric), square (rectangular) end terminal, IPC-7351 nominal, (Body size source: http://www.vishay.com/docs/20056/crcw01005e3.pdf), generated with kicad-footprint-generator +capacitor +0 +4 +2 +Capacitor_SMD +C_01005_0402Metric_Pad0.57x0.30mm_HandSolder +Capacitor SMD 01005 (0402 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: http://www.vishay.com/docs/20056/crcw01005e3.pdf), generated with kicad-footprint-generator +capacitor handsolder +0 +4 +2 +Capacitor_SMD +C_1206_3216Metric +Capacitor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC-7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator +capacitor +0 +2 +2 +Capacitor_SMD +C_1206_3216Metric_Pad1.33x1.80mm_HandSolder +Capacitor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator +capacitor handsolder +0 +2 +2 +Capacitor_SMD +C_1210_3225Metric +Capacitor SMD 1210 (3225 Metric), square (rectangular) end terminal, IPC-7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator +capacitor +0 +2 +2 +Capacitor_SMD +C_1210_3225Metric_Pad1.33x2.70mm_HandSolder +Capacitor SMD 1210 (3225 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator +capacitor handsolder +0 +2 +2 +Capacitor_SMD +C_1808_4520Metric +Capacitor SMD 1808 (4520 Metric), square (rectangular) end terminal, IPC-7351 nominal, (Body size source: datasheet page 3, https://product.tdk.com/system/files/dam/doc/product/capacitor/ceramic/mlcc/catalog/mlcc_commercial_soft_en.pdf), generated with kicad-footprint-generator +capacitor +0 +2 +2 +Capacitor_SMD +C_1808_4520Metric_Pad1.72x2.30mm_HandSolder +Capacitor SMD 1808 (4520 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: datasheet page 3, https://product.tdk.com/system/files/dam/doc/product/capacitor/ceramic/mlcc/catalog/mlcc_commercial_soft_en.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_5750Metric +Capacitor SMD 2220 (5750 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_5750Metric_Pad1.97x5.40mm_HandSolder +Capacitor SMD 2220 (5750 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 electrolytic nonpolar +0 +2 +2 +Capacitor_SMD +C_Elec_4x5.4 +SMD capacitor, aluminum electrolytic nonpolar, 4.0x5.4mm +capacitor electrolytic nonpolar +0 +2 +2 +Capacitor_SMD +C_Elec_4x5.8 +SMD capacitor, aluminum electrolytic nonpolar, 4.0x5.8mm +capacitor electrolytic nonpolar +0 +2 +2 +Capacitor_SMD +C_Elec_5x5.4 +SMD capacitor, aluminum electrolytic nonpolar, 5.0x5.4mm +capacitor electrolytic nonpolar +0 +2 +2 +Capacitor_SMD +C_Elec_5x5.8 +SMD capacitor, aluminum electrolytic nonpolar, 5.0x5.8mm +capacitor electrolytic nonpolar +0 +2 +2 +Capacitor_SMD +C_Elec_6.3x5.4 +SMD capacitor, aluminum electrolytic nonpolar, 6.3x5.4mm +capacitor electrolytic nonpolar +0 +2 +2 +Capacitor_SMD +C_Elec_6.3x5.8 +SMD capacitor, aluminum electrolytic nonpolar, 6.3x5.8mm +capacitor electrolytic nonpolar +0 +2 +2 +Capacitor_SMD +C_Elec_6.3x7.7 +SMD capacitor, aluminum electrolytic nonpolar, 6.3x7.7mm +capacitor electrolytic nonpolar +0 +2 +2 +Capacitor_SMD +C_Elec_8x5.4 +SMD capacitor, aluminum electrolytic nonpolar, 8.0x5.4mm +capacitor electrolytic nonpolar +0 +2 +2 +Capacitor_SMD +C_Elec_8x6.2 +SMD capacitor, aluminum electrolytic nonpolar, 8.0x6.2mm +capacitor electrolytic nonpolar +0 +2 +2 +Capacitor_SMD +C_Elec_8x10.2 +SMD capacitor, aluminum electrolytic nonpolar, 8.0x10.2mm +capacitor electrolytic nonpolar +0 +2 +2 +Capacitor_SMD +C_Elec_10x10.2 +SMD capacitor, aluminum electrolytic nonpolar, 10.0x10.2mm +capacitor electrolytic 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, height=7mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 1.50mm diameter 4mm height 7mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_D4.0mm_P2.00mm +CP, Radial series, Radial, pin pitch=2.00mm, diameter=4mm, height=7mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 2.00mm diameter 4mm height 7mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_D5.0mm_P2.00mm +CP, Radial series, Radial, pin pitch=2.00mm, diameter=5mm, height=7mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 2.00mm diameter 5mm height 7mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_D5.0mm_P2.50mm +CP, Radial series, Radial, pin pitch=2.50mm, diameter=5mm, height=7mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 2.50mm diameter 5mm height 7mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_D6.3mm_P2.50mm +CP, Radial series, Radial, pin pitch=2.50mm, diameter=6.3mm, height=7mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 2.50mm diameter 6.3mm height 7mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_D7.5mm_P2.50mm +CP, Radial series, Radial, pin pitch=2.50mm, diameter=7.5mm, height=8mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 2.50mm diameter 7.5mm height 8mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_D8.0mm_P2.50mm +CP, Radial series, Radial, pin pitch=2.50mm, diameter=8mm, height=10mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 2.50mm diameter 8mm height 10mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_D8.0mm_P3.50mm +CP, Radial series, Radial, pin pitch=3.50mm, diameter=8mm, height=12mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 3.50mm diameter 8mm height 12mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_D8.0mm_P3.80mm +CP, Radial series, Radial, pin pitch=3.80mm, diameter=8mm, height=14mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 3.80mm diameter 8mm height 14mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_D8.0mm_P5.00mm +CP, Radial series, Radial, pin pitch=5.00mm, diameter=8mm, height=16mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 5.00mm diameter 8mm height 16mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_D10.0mm_P2.50mm +CP, Radial series, Radial, pin pitch=2.50mm, diameter=10mm, height=12mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 2.50mm diameter 10mm height 12mm 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, height=12mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 2.50mm 5.00mm diameter 10mm height 12mm Electrolytic Capacitor +0 +4 +2 +Capacitor_THT +CP_Radial_D10.0mm_P3.50mm +CP, Radial series, Radial, pin pitch=3.50mm, diameter=10mm, height=16mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 3.50mm diameter 10mm height 16mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_D10.0mm_P3.80mm +CP, Radial series, Radial, pin pitch=3.80mm, diameter=10mm, height=16mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 3.80mm diameter 10mm height 16mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_D10.0mm_P5.00mm +CP, Radial series, Radial, pin pitch=5.00mm, diameter=10mm, height=16mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 5.00mm diameter 10mm height 16mm 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, height=16mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 5.00mm 7.50mm diameter 10mm height 16mm Electrolytic Capacitor +0 +4 +2 +Capacitor_THT +CP_Radial_D10.0mm_P7.50mm +CP, Radial series, Radial, pin pitch=7.50mm, diameter=10mm, height=20mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 7.50mm diameter 10mm height 20mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_D12.5mm_P2.50mm +CP, Radial series, Radial, pin pitch=2.50mm, diameter=12.5mm, height=16mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 2.50mm diameter 12.5mm height 16mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_D12.5mm_P5.00mm +CP, Radial series, Radial, pin pitch=5.00mm, diameter=12.5mm, height=20mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 5.00mm diameter 12.5mm height 20mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_D12.5mm_P7.50mm +CP, Radial series, Radial, pin pitch=7.50mm, diameter=12.5mm, height=24mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 7.50mm diameter 12.5mm height 24mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_D13.0mm_P2.50mm +CP, Radial series, Radial, pin pitch=2.50mm, diameter=13mm, height=16mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 2.50mm diameter 13mm height 16mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_D13.0mm_P5.00mm +CP, Radial series, Radial, pin pitch=5.00mm, diameter=13mm, height=20mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 5.00mm diameter 13mm height 20mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_D13.0mm_P7.50mm +CP, Radial series, Radial, pin pitch=7.50mm, diameter=13mm, height=24mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 7.50mm diameter 13mm height 24mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_D14.0mm_P5.00mm +CP, Radial series, Radial, pin pitch=5.00mm, diameter=14mm, height=20mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 5.00mm diameter 14mm height 20mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_D14.0mm_P7.50mm +CP, Radial series, Radial, pin pitch=7.50mm, diameter=14mm, height=20mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 7.50mm diameter 14mm height 20mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_D16.0mm_P7.50mm +CP, Radial series, Radial, pin pitch=7.50mm, diameter=16mm, height=25mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 7.50mm diameter 16mm height 25mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_D17.0mm_P7.50mm +CP, Radial series, Radial, pin pitch=7.50mm, diameter=17mm, height=30mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 7.50mm diameter 17mm height 30mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_D18.0mm_P7.50mm +CP, Radial series, Radial, pin pitch=7.50mm, diameter=18mm, height=35mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 7.50mm diameter 18mm height 35mm 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, 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 +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, 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 +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, 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 +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, height=50mm, Electrolytic Capacitor, http://www.vishay.com/docs/28342/058059pll-si.pdf +CP Radial series Radial pin pitch 10.00mm diameter 26mm height 50mm 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, height=50mm, Electrolytic Capacitor, http://www.vishay.com/docs/28342/058059pll-si.pdf +CP Radial series Radial pin pitch 10.00mm diameter 30mm height 50mm 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, 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 +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, 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 +2 +2 +Capacitor_THT +CP_Radial_Tantal_D4.5mm_P2.50mm +CP, Radial_Tantal series, Radial, pin pitch=2.50mm, diameter=4.5mm, height=10mm, 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 height 10mm 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, height=10mm, 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 height 10mm 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, height=10mm, 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 height 10mm 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, height=10mm, 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 height 10mm 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, height=10mm, 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 height 10mm 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, height=10mm, 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 height 10mm 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, height=10mm, 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 height 10mm 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, height=10mm, 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 height 10mm 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, height=10mm, 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 height 10mm 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, height=10mm, 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 height 10mm 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, height=10mm, 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 height 10mm 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, height=10mm, 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 height 10mm 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, height=10mm, 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 height 10mm 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, height=10mm, 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 height 10mm 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, height=10mm, 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 height 10mm 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, height=10mm, 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 height 10mm 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-7352 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_HandSolder +Tantalum Capacitor SMD AVX-J (1608-08 Metric), IPC-7352 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-7352 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_HandSolder +Tantalum Capacitor SMD AVX-L (1608-10 Metric), IPC-7352 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-7352 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_HandSolder +Tantalum Capacitor SMD Kemet-R (2012-12 Metric), IPC-7352 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-7352 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_HandSolder +Tantalum Capacitor SMD AVX-P (2012-15 Metric), IPC-7352 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-7352 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_HandSolder +Tantalum Capacitor SMD Kemet-I (3216-10 Metric), IPC-7352 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-7352 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_HandSolder +Tantalum Capacitor SMD Kemet-S (3216-12 Metric), IPC-7352 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-7352 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_HandSolder +Tantalum Capacitor SMD Kemet-A (3216-18 Metric), IPC-7352 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-7352 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_HandSolder +Tantalum Capacitor SMD Kemet-T (3528-12 Metric), IPC-7352 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-7352 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_HandSolder +Tantalum Capacitor SMD AVX-H (3528-15 Metric), IPC-7352 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-7352 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_HandSolder +Tantalum Capacitor SMD Kemet-B (3528-21 Metric), IPC-7352 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-7352 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_HandSolder +Tantalum Capacitor SMD Kemet-U (6032-15 Metric), IPC-7352 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-7352 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_HandSolder +Tantalum Capacitor SMD AVX-F (6032-20 Metric), IPC-7352 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-7352 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_HandSolder +Tantalum Capacitor SMD Kemet-C (6032-28 Metric), IPC-7352 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-7352 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_HandSolder +Tantalum Capacitor SMD AVX-U (7132-20 Metric), IPC-7352 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-7352 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_HandSolder +Tantalum Capacitor SMD AVX-C (7132-28 Metric), IPC-7352 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-7352 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_HandSolder +Tantalum Capacitor SMD AVX-R (7260-15 Metric), IPC-7352 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-7352 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_HandSolder +Tantalum Capacitor SMD AVX-M (7260-20 Metric), IPC-7352 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-7352 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_HandSolder +Tantalum Capacitor SMD AVX-M (7260-28 Metric), IPC-7352 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-7352 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_HandSolder +Tantalum Capacitor SMD AVX-R (7260-38 Metric), IPC-7352 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-7352 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_HandSolder +Tantalum Capacitor SMD Kemet-W (7343-15 Metric), IPC-7352 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-7352 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_HandSolder +Tantalum Capacitor SMD Kemet-V (7343-20 Metric), IPC-7352 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-7352 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_HandSolder +Tantalum Capacitor SMD AVX-N (7343-30 Metric), IPC-7352 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-7352 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_HandSolder +Tantalum Capacitor SMD Kemet-D (7343-31 Metric), IPC-7352 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-7352 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_HandSolder +Tantalum Capacitor SMD Kemet-Y (7343-40 Metric), IPC-7352 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-7352 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_HandSolder +Tantalum Capacitor SMD Kemet-X (7343-43 Metric), IPC-7352 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-7352 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_HandSolder +Tantalum Capacitor SMD Kemet-E (7360-38 Metric), IPC-7352 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-7352 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_HandSolder +Tantalum Capacitor SMD AVX-V (7361-38 Metric), IPC-7352 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-7352 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_HandSolder +Tantalum Capacitor SMD AVX-U (7361-438 Metric), IPC-7352 nominal, (Body size from: http://datasheets.avx.com/NOS.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Connector +BJB_Pico_46.110.1001_Receptacle_Horizontal +BJB Pico, single terminal block/receptacle, uninsulated, SMD, 6.9x2.3x2.7mm, https://www.bjb.com/media/7a/b3/df/1740905546/DM-6265102-v6_BJB_Datasheet_46.110.1001-0_SMD_Terminal_block_without_housing_Update_03_2022.PDF +socket +0 +5 +1 +Connector +Banana_Cliff_FCR7350B_S16N-PC_Horizontal +Cliff single 4mm shrouded banana panel socket, through-hole, horizontal, black, https://www.cliffuk.co.uk/products/testleads/sockets/S16NPC.pdf +cliff 4mm socket jack banana black +0 +1 +1 +Connector +Banana_Cliff_FCR7350G_S16N-PC_Horizontal +Cliff single 4mm shrouded banana panel socket, through-hole, horizontal, green, https://www.cliffuk.co.uk/products/testleads/sockets/S16NPC.pdf +cliff 4mm socket jack banana green +0 +1 +1 +Connector +Banana_Cliff_FCR7350L_S16N-PC_Horizontal +Cliff single 4mm shrouded banana panel socket, through-hole, horizontal, blue, https://www.cliffuk.co.uk/products/testleads/sockets/S16NPC.pdf +cliff 4mm socket jack banana blue +0 +1 +1 +Connector +Banana_Cliff_FCR7350N_S16N-PC_Horizontal +Cliff single 4mm shrouded banana panel socket, through-hole, horizontal, brown, https://www.cliffuk.co.uk/products/testleads/sockets/S16NPC.pdf +cliff 4mm socket jack banana brown +0 +1 +1 +Connector +Banana_Cliff_FCR7350R_S16N-PC_Horizontal +Cliff single 4mm shrouded banana panel socket, through-hole, horizontal, red, https://www.cliffuk.co.uk/products/testleads/sockets/S16NPC.pdf +cliff 4mm socket jack banana red +0 +1 +1 +Connector +Banana_Cliff_FCR7350Y_S16N-PC_Horizontal +Cliff single 4mm shrouded banana panel socket, through-hole, horizontal, yellow, https://www.cliffuk.co.uk/products/testleads/sockets/S16NPC.pdf +cliff 4mm socket jack banana yellow +0 +1 +1 +Connector +Banana_Jack_1Pin +Single banana socket, footprint - 6mm drill +banana socket +0 +1 +1 +Connector +Banana_Jack_2Pin +Dual banana socket, footprint - 2 x 6mm drills +banana socket +0 +2 +2 +Connector +Banana_Jack_3Pin +Triple banana socket, footprint - 3 x 6mm drills +banana socket +0 +3 +3 +Connector +CUI_PD-30 +3 pin connector, PD-30, http://www.cui.com/product/resource/pd-30.pdf +connector 3-pin PD-30 power DIN +0 +4 +4 +Connector +CUI_PD-30S +3-pin nonstandard DIN connector, shielded, PD-30S, http://www.cui.com/product/resource/pd-30s.pdf +connector 3-pin PD-30S power DIN shielded +0 +8 +5 +Connector +CUI_PD-30S_CircularHoles +3-pin nonstandard DIN connector, shielded, PD-30S, http://www.cui.com/product/resource/pd-30s.pdf +connector 3-pin PD-30S power DIN shielded +0 +8 +5 +Connector +CalTest_CT3151 +Right-angle standard banana jack, http://www.caltestelectronics.com/images/attachments/P315100rH_drawing.pdf +banana jack horizontal +0 +4 +1 +Connector +Conn_C14_Receptacle_RightAngle_Schurter_DD21.01xx +C14 Power Receptacle https://www.schurter.com/en/datasheet/typ_DD21.pdf +C14 IEC 250V Schurter +0 +3 +3 +Connector +Connector_SFP_and_Cage +https://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=2227302&DocType=Customer+Drawing&DocLang=English +SFP+ SFP +0 +40 +21 +Connector +DTF13-12Px +http://www.te.com/usa-en/product-DTF13-12PA-G003.html +DEUTSCH DT header 12 pin +0 +12 +12 +Connector +FanPinHeader_1x03_P2.54mm_Vertical +3-pin CPU fan Through hole pin header, see http://www.formfactors.org/developer%5Cspecs%5Crev1_2_public.pdf +pin header 3-pin CPU fan +0 +3 +3 +Connector +FanPinHeader_1x04_P2.54mm_Vertical +4-pin CPU fan Through hole pin header, e.g. for Wieson part number 2366C888-007 Molex 47053-1000, Foxconn HF27040-M1, Tyco 1470947-1 or equivalent, see http://www.formfactors.org/developer%5Cspecs%5Crev1_2_public.pdf +pin header 4-pin CPU fan +0 +4 +4 +Connector +GB042-34S-H10 +http://www.lsmtron.com/pdf/Connector&Antenna_catalog.PDF +34pin SMD connector +0 +34 +34 +Connector +IHI_B6A-PCB-45_Vertical +https://lugsdirect.com/PDF_Webprint/B6A-PCB-45-XX(-X).pdf +connector IHI B6A-PCB-45 +0 +49 +1 +Connector +JWT_A3963_1x02_P3.96mm_Vertical +JWT A3963, 3.96mm pitch Pin head connector (http://www.jwt.com.tw/pro_pdf/A3963.pdf) +connector JWT A3963 pinhead +0 +2 +2 +Connector +Joint-Tech_C5080WR-04P_1x04_P5.08mm_Vertical +C5080 SERIES 90° Wafer, (https://datasheet.lcsc.com/lcsc/1912261836_HR-Joint-Tech-Elec-C5080WR-04P_C477015.pdf) +connector side-entry ATA PATA IDE 5.25 inch floppy drive power +0 +6 +5 +Connector +NS-Tech_Grove_1x04_P2mm_Vertical +https://statics3.seeedstudio.com/images/opl/datasheet/3470130P1.pdf +Grove-1x04 +0 +4 +4 +Connector +OCN_OK-01GM030-04_2x15_P0.4mm_Vertical +Board to board connector, 2x15, 0.4mm pitch, http://www.main-soul.com/datasheet/ocn/connector/Spec_Draw_OK-01.pdf +board-to-board +0 +30 +30 +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 MR30 Horizontal PCB Female, https://www.tme.eu/Document/4a6895c4a2c7eddf355b391fd904cb53/MR30PW-FB.pdf +RC Connector MR30 +0 +5 +3 +Connector_AMASS +AMASS_MR30PW-M_1x03_P3.50mm_Horizontal +Connector MR30PW Horizontal PCB Male, https://www.tme.eu/Document/5fffb0d591c3b83b8e9faab5387231c6/MR30PW-M.pdf +RC Connector MR30PW +0 +5 +3 +Connector_AMASS +AMASS_XT30PW-F_1x02_P2.50mm_Horizontal +Connector XT30 Horizontal PCB Female, https://www.tme.eu/Document/f383737e340bfdab1f665284174b4ea2/XT30PW-F.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/Document/6eb2005a51a52592b3f19e8a450c54c8/XT30PW-M.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/Document/f2d0830114aabe6ea8d4bb128e962790/XT30U-F.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/Document/7d9d972ae3468777f69ec2ee99897652/XT30U-M.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/Document/81f11ca924696756331f21b972812074/XT30PB-F.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/Document/e5863b891432488e7531b3c4468225ac/XT30PB-M.pdf +RC Connector XT30 +0 +2 +2 +Connector_AMASS +AMASS_XT60-F_1x02_P7.20mm_Vertical +AMASS female XT60, through hole, vertical, https://www.tme.eu/Document/2d152ced3b7a446066e6c419d84bb460/XT60%20SPEC.pdf +XT60 female vertical +0 +2 +2 +Connector_AMASS +AMASS_XT60-M_1x02_P7.20mm_Vertical +AMASS female XT60, through hole, vertical, https://www.tme.eu/Document/2d152ced3b7a446066e6c419d84bb460/XT60%20SPEC.pdf +XT60 female vertical +0 +2 +2 +Connector_AMASS +AMASS_XT60IPW-M_1x03_P7.20mm_Horizontal +Connector XT60 Horizontal PCB Male, https://www.tme.eu/Document/a5efb91801d38c85c7a1f61518cd6048/XT60IPW-M.pdf +RC Connector XT60 +0 +5 +3 +Connector_AMASS +AMASS_XT60PW-F_1x02_P7.20mm_Horizontal +Connector XT60 Horizontal PCB Female, https://www.tme.eu/Document/1191bc2fa3aee3c446e5a895fd8f7983/XT60PW-F.pdf +RC Connector XT60 +0 +4 +2 +Connector_AMASS +AMASS_XT60PW-M_1x02_P7.20mm_Horizontal +Connector XT60 Horizontal PCB Female, https://www.tme.eu/Document/b13629717d44ae038681dba08d18c0b6/XT60PW-M.pdf +RC Connector XT60 +0 +4 +2 +Connector_AMASS +AMASS_XT90PW-M_1x02_P10.90mm_Horizontal +Connector XT90 Horizontal PCB Male 500V 30A IP40, https://www.bto.pl/pdf/09025/XT90PW-M.pdf +RC +0 +4 +3 +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-3513N_Horizontal +TRS 3.5mm, horizontal, through-hole, https://www.cuidevices.com/product/resource/sj1-351xn.pdf +TRS audio jack stereo horizontal +0 +3 +3 +Connector_Audio +Jack_3.5mm_CUI_SJ1-3514N_Horizontal +TRS 3.5mm, horizontal, through-hole, with tip switch, https://www.cuidevices.com/product/resource/sj1-351xn.pdf +TRS audio jack stereo horizontal +0 +4 +4 +Connector_Audio +Jack_3.5mm_CUI_SJ1-3515N_Horizontal +TRS 3.5mm, horizontal, through-hole, with tip and ring switches, https://www.cuidevices.com/product/resource/sj1-351xn.pdf +TRS audio jack stereo horizontal +0 +5 +5 +Connector_Audio +Jack_3.5mm_CUI_SJ1-3523N_Horizontal +TRS 3.5mm, horizontal, through-hole, https://www.cuidevices.com/product/resource/pdf/sj1-352xn.pdf +TRS audio jack stereo horizontal +0 +3 +3 +Connector_Audio +Jack_3.5mm_CUI_SJ1-3524N_Horizontal +TRS 3.5mm, horizontal, through-hole, https://www.cuidevices.com/product/resource/pdf/sj1-352xn.pdf +TRS audio jack stereo horizontal +0 +4 +4 +Connector_Audio +Jack_3.5mm_CUI_SJ1-3525N_Horizontal +TRS 3.5mm, horizontal, through-hole, https://www.cuidevices.com/product/resource/pdf/sj1-352xn.pdf +TRS audio jack stereo horizontal +0 +5 +5 +Connector_Audio +Jack_3.5mm_CUI_SJ1-3533NG_Horizontal +TRS 3.5mm, horizontal, through-hole, https://www.cui.com/product/resource/sj1-353xng.pdf +TRS audio jack stereo horizontal +0 +3 +3 +Connector_Audio +Jack_3.5mm_CUI_SJ1-3533NG_Horizontal_CircularHoles +TRS 3.5mm, horizontal, through-hole, , circular holeshttps://www.cui.com/product/resource/sj1-353xng.pdf +TRS audio jack stereo horizontal circular +0 +3 +3 +Connector_Audio +Jack_3.5mm_CUI_SJ1-3535NG_Horizontal +TRS 3.5mm, horizontal, through-hole, with switch, https://www.cui.com/product/resource/sj1-353xng.pdf +TRS audio jack stereo horizontal +0 +5 +5 +Connector_Audio +Jack_3.5mm_CUI_SJ1-3535NG_Horizontal_CircularHoles +TRS 3.5mm, horizontal, through-hole, with switch, circular holes, https://www.cui.com/product/resource/sj1-353xng.pdf +TRS audio jack stereo horizontal circular +0 +5 +5 +Connector_Audio +Jack_3.5mm_CUI_SJ2-3593D-SMT_Horizontal +3.5 mm, Stereo, Right Angle, Surface Mount (SMT), Audio Jack Connector (https://www.cuidevices.com/product/resource/sj2-359x-smt.pdf) +3.5mm audio cui horizontal jack stereo +0 +5 +5 +Connector_Audio +Jack_3.5mm_KoreanHropartsElec_PJ-320D-4A_Horizontal +Korean Hroparts Elec PJ-320D-4A (https://datasheet.lcsc.com/lcsc/1810121716_Korean-Hroparts-Elec-PJ-320D-4A_C95562.pdf) +smt female jack horizontal +0 +4 +4 +Connector_Audio +Jack_3.5mm_Ledino_KB3SPRS_Horizontal +https://www.reichelt.de/index.html?ACTION=7&LA=3&OPEN=0&INDEX=0&FILENAME=C160%252FKB3SPRS.pdf +jack stereo TRS +0 +5 +5 +Connector_Audio +Jack_3.5mm_Lumberg_1503_02_Horizontal +TRS 3.5mm, horizontal, Surface Mount (SMT), https://downloads.lumberg.com/datenblaetter/en/1503_02.pdf +TRS audio jack horizontal +0 +4 +3 +Connector_Audio +Jack_3.5mm_Lumberg_1503_03_Horizontal +TRS 3.5mm, horizontal, Surface Mount (SMT), https://downloads.lumberg.com/datenblaetter/en/1503_03.pdf +TRS audio jack horizontal +0 +5 +4 +Connector_Audio +Jack_3.5mm_Lumberg_1503_07_Horizontal +TRS 3.5mm, horizontal, through-hole, height 5mm, width 6.5mm, https://downloads.lumberg.com/datenblaetter/en/1503_07.pdf +TRS audio jack horizontal +0 +4 +3 +Connector_Audio +Jack_3.5mm_PJ311_Horizontal +PJ311 6pin SMD 3.5mm stereo headphones jack. +headphones jack plug stereo 3.5mm PJ311 +0 +6 +6 +Connector_Audio +Jack_3.5mm_PJ320D_Horizontal +Headphones with microphone connector, 3.5mm, 4 pins (http://www.qingpu-electronics.com/en/products/WQP-PJ320D-72.html) +3.5mm jack mic microphone phones headphones 4pins audio plug +0 +4 +4 +Connector_Audio +Jack_3.5mm_PJ320E_Horizontal +Headphones with microphone connector, 3.5mm, 4 pins (http://www.qingpu-electronics.com/en/products/WQP-PJ320E-177.html) +3.5mm jack mic microphone phones headphones 4pins audio plug +0 +5 +4 +Connector_Audio +Jack_3.5mm_PJ31060-I_Horizontal +PJ31060-I 6pin SMD 3.5mm headphones jack (http://www.china-bsun.com/Product48/1577.html) +headphones jack plug stereo 3.5mm PJ31060-I PJ31060 +0 +6 +6 +Connector_Audio +Jack_3.5mm_QingPu_WQP-PJ398SM_Vertical_CircularHoles +TRS 3.5mm, vertical, Thonkiconn, PCB mount, (http://www.qingpu-electronics.com/en/products/WQP-PJ398SM-362.html) +WQP-PJ398SM WQP-PJ301M-12 TRS 3.5mm mono vertical jack thonkiconn qingpu +0 +3 +3 +Connector_Audio +Jack_3.5mm_Switronic_ST-005-G_horizontal +3.5mm horizontal headphones jack, http://akizukidenshi.com/download/ds/switronic/ST-005-G.pdf +Connector Audio Switronic ST-005-G +0 +4 +3 +Connector_Audio +Jack_3.5mm_Technik_TWP-3002_Horizontal +3.5mm Horizontal Waterproof Stereo Headphones Jack, https://www.technik.com.hk/images/pdf_product/WP3002-PA66-A.pdf +audio jack stereo horizontal waterproof +0 +7 +4 +Connector_Audio +Jack_6.35mm_Neutrik_NJ2FD-V_Vertical +6.35mm (1/4 in) Vertical Jack, Non-switching mono jack (T/S), https://www.neutrik.com/en/product/nj2fd-v +neutrik jack vertical +0 +2 +2 +Connector_Audio +Jack_6.35mm_Neutrik_NJ3FD-V_Vertical +6.35mm (1/4 in) Vertical Jack, Non-switching stereo jack (T/R/S), https://www.neutrik.com/en/product/nj3fd-v +neutrik jack vertical +0 +3 +3 +Connector_Audio +Jack_6.35mm_Neutrik_NJ5FD-V_Vertical +6.35mm (1/4 in) Vertical Jack, 2 x switching (normalling) stereo jack (T/TN/R/RN/S), https://www.neutrik.com/en/product/nj5fd-v +neutrik jack vertical +0 +5 +5 +Connector_Audio +Jack_6.35mm_Neutrik_NJ6FD-V_Vertical +6.35mm (1/4 in) Vertical Jack, 3 x switching (normalling) stereo jack (T/TN/R/RN/S/SN), https://www.neutrik.com/en/product/nj6fd-v +neutrik jack vertical +0 +6 +6 +Connector_Audio +Jack_6.35mm_Neutrik_NJ6TB-V_Vertical +6.35mm (1/4 in) Vertical Jack, 3 x switching (normalling) stereo jack B-gauge type (T/TN/R/RN/S/SN), https://www.neutrik.com/en/product/nj6tb-v +neutrik jack vertical +0 +6 +6 +Connector_Audio +Jack_6.35mm_Neutrik_NMJ4HCD2_Horizontal +M Series, 6.35mm (1/4in) mono jack, switched, with chrome ferrule and straight PCB pins, https://www.neutrik.com/en/product/nmj4hcd2 +neutrik jack m +0 +4 +4 +Connector_Audio +Jack_6.35mm_Neutrik_NMJ4HFD2_Horizontal +M Series, 6.35mm (1/4in) mono jack, switched, with full threaded nose and straight PCB pins, https://www.neutrik.com/en/product/nmj4hfd2 +neutrik jack m +0 +4 +4 +Connector_Audio +Jack_6.35mm_Neutrik_NMJ4HFD3_Horizontal +M Series, 6.35mm (1/4in) mono jack, switched, with a full threaded nose and offset PCB pins, https://www.neutrik.com/en/product/nmj4hfd3 +neutrik jack m +0 +4 +4 +Connector_Audio +Jack_6.35mm_Neutrik_NMJ4HHD2_Horizontal +M Series, 6.35mm (1/4in) mono jack, switched, with a half threaded nose and offset PCB pins, https://www.neutrik.com/en/product/nmj4hhd2 +neutrik jack m +0 +4 +4 +Connector_Audio +Jack_6.35mm_Neutrik_NMJ6HCD2_Horizontal +M Series, 6.35mm (1/4in) stereo jack, switched, with chrome ferrule and straight PCB pins, https://www.neutrik.com/en/product/nmj6hcd2 +neutrik jack m +0 +6 +6 +Connector_Audio +Jack_6.35mm_Neutrik_NMJ6HCD3_Horizontal +M Series, 6.35mm (1/4in) stereo jack, switched, with chrome ferrule and offset PCB pins, https://www.neutrik.com/en/product/nmj6hcd3 +neutrik jack m +0 +6 +6 +Connector_Audio +Jack_6.35mm_Neutrik_NMJ6HFD2-AU_Horizontal +M Series, 6.35mm (1/4in) stereo jack, switched, full threaded nose, straight PCB pins, gold plated contacts, https://www.neutrik.com/en/product/nmj6hfd2-au +neutrik jack m +0 +6 +6 +Connector_Audio +Jack_6.35mm_Neutrik_NMJ6HFD2_Horizontal +M Series, 6.35mm (1/4in) stereo jack, switched, with full threaded nose and straight PCB pins, https://www.neutrik.com/en/product/nmj6hfd2 +neutrik jack m +0 +6 +6 +Connector_Audio +Jack_6.35mm_Neutrik_NMJ6HFD3_Horizontal +M Series, 6.35mm (1/4in) stereo jack, switched, with full threaded nose and offset PCB pins, https://www.neutrik.com/en/product/nmj6hfd3 +neutrik jack m +0 +6 +6 +Connector_Audio +Jack_6.35mm_Neutrik_NMJ6HFD4_Horizontal +M Series, 6.35mm (1/4in) stereo jack, switched, with full threaded nose and fishtail PCB pins, https://www.neutrik.com/en/product/nmj6hfd4 +neutrik jack m +0 +6 +6 +Connector_Audio +Jack_6.35mm_Neutrik_NMJ6HHD2_Horizontal +M Series, 6.35mm (1/4in) stereo jack, switched, with half threaded nose and offset PCB pins, https://www.neutrik.com/en/product/nmj6hhd2 +neutrik jack m +0 +6 +6 +Connector_Audio +Jack_6.35mm_Neutrik_NRJ3HF-1_Horizontal +Slim Jacks, 6.35mm (1/4in) stereo jack, unswitched, fully threaded nose, sleeve contact/front panel connection, https://www.neutrik.com/en/product/nrj3hf-1 +neutrik jack slim +0 +4 +4 +Connector_Audio +Jack_6.35mm_Neutrik_NRJ4HF-1_Horizontal +Slim Jacks, 6.35mm (1/4in) mono jack, switched, fully threaded nose, sleeve contact/front panel connection, https://www.neutrik.com/en/product/nrj4hf-1 +neutrik jack slim +0 +4 +4 +Connector_Audio +Jack_6.35mm_Neutrik_NRJ4HF_Horizontal +Slim Jacks, 6.35mm (1/4in) mono jack, switched, fully threaded nose, https://www.neutrik.com/en/product/nrj4hf +neutrik jack slim +0 +4 +4 +Connector_Audio +Jack_6.35mm_Neutrik_NRJ4HH-1_Horizontal +Slim Jacks, 6.35mm (1/4in) mono jack, switched, half threaded nose, sleeve contact/front panel connection, https://www.neutrik.com/en/product/nrj4hh-1 +neutrik jack slim +0 +4 +4 +Connector_Audio +Jack_6.35mm_Neutrik_NRJ4HH_Horizontal +Slim Jacks, 6.35mm (1/4in) mono jack, switched, half threaded nose, https://www.neutrik.com/en/product/nrj4hh +neutrik jack slim +0 +4 +4 +Connector_Audio +Jack_6.35mm_Neutrik_NRJ6HF-1-AU_Horizontal +Slim Jacks, 6.35mm (1/4in) stereo jack, switched, gold plated contacts, fully threaded nose, sleeve contact/front panel connection, https://www.neutrik.com/en/product/nrj6hf-1-au +neutrik jack slim +0 +6 +6 +Connector_Audio +Jack_6.35mm_Neutrik_NRJ6HF-1_Horizontal +Slim Jacks, 6.35mm (1/4in) stereo jack, switched, fully threaded nose, sleeve contact/front panel connection, https://www.neutrik.com/en/product/nrj6hf-1 +neutrik jack slim +0 +6 +6 +Connector_Audio +Jack_6.35mm_Neutrik_NRJ6HF-AU_Horizontal +Slim Jacks, 6.35mm (1/4in) stereo jack, switched, gold plated contacts, fully threaded nose, https://www.neutrik.com/en/product/nrj6hf-au +neutrik jack slim +0 +6 +6 +Connector_Audio +Jack_6.35mm_Neutrik_NRJ6HF_Horizontal +Slim Jacks, 6.35mm (1/4in) stereo jack, switched, fully threaded nose, https://www.neutrik.com/en/product/nrj6hf +neutrik jack slim +0 +6 +6 +Connector_Audio +Jack_6.35mm_Neutrik_NRJ6HH-1_Horizontal +Slim Jacks, 6.35mm (1/4in) stereo jack, switched, half threaded nose, sleeve contact/front panel connection, https://www.neutrik.com/en/product/nrj6hh-1 +neutrik jack slim +0 +6 +6 +Connector_Audio +Jack_6.35mm_Neutrik_NRJ6HH-AU_Horizontal +Slim Jacks, 6.35mm (1/4in) stereo jack, switched, gold plated contacts, half threaded nose, https://www.neutrik.com/en/product/nrj6hh-au +neutrik jack slim +0 +6 +6 +Connector_Audio +Jack_6.35mm_Neutrik_NRJ6HH_Horizontal +Slim Jacks, 6.35mm (1/4in) stereo jack, switched, half threaded nose, https://www.neutrik.com/en/product/nrj6hh +neutrik jack slim +0 +6 +6 +Connector_Audio +Jack_6.35mm_Neutrik_NRJ6HM-1-AU_Horizontal +Slim Jacks, 6.35mm (1/4in) stereo jack, metal nose, gold plated contacts, efficient chassis ground connection, T+R+S normalling contact, https://www.neutrik.com/en/product/nrj6hm-1-au +neutrik jack slim +0 +6 +6 +Connector_Audio +Jack_6.35mm_Neutrik_NRJ6HM-1-PRE_Horizontal +Slim Jacks, 6.35mm (1/4in) stereo jack, metal nose, efficient chassis ground connection, T+R normalling contact, https://www.neutrik.com/en/product/nrj6hm-1-pre +neutrik jack slim +0 +6 +5 +Connector_Audio +Jack_6.35mm_Neutrik_NRJ6HM-1_Horizontal +Slim Jacks, 6.35mm (1/4in) stereo jack, metal nose with efficient chassis ground connection, T+R+S normalling contact, https://www.neutrik.com/en/product/nrj6hm-1 +neutrik jack slim +0 +6 +6 +Connector_Audio +Jack_6.35mm_Neutrik_NSJ8HC_Horizontal +Stacking Jacks, Mono dual jack, full nose, https://www.neutrik.com/en/product/nsj8hc +neutrik jack stacking +0 +9 +9 +Connector_Audio +Jack_6.35mm_Neutrik_NSJ8HL_Horizontal +Stacking Jacks, Mono dual jack, quick fix nose, https://www.neutrik.com/en/product/nsj8hl +neutrik jack stacking +0 +9 +9 +Connector_Audio +Jack_6.35mm_Neutrik_NSJ12HC_Horizontal +Stacking Jacks, Stereo dual jack, full nose, https://www.neutrik.com/en/product/nsj12hc +neutrik jack stacking +0 +13 +13 +Connector_Audio +Jack_6.35mm_Neutrik_NSJ12HF-1_Horizontal +Stacking Jacks, Stereo dual jack, full threaded nose, https://www.neutrik.com/en/product/nsj12hf-1 +neutrik jack stacking +0 +13 +13 +Connector_Audio +Jack_6.35mm_Neutrik_NSJ12HH-1_Horizontal +Stacking Jacks, Stereo dual jack, half threaded nose, https://www.neutrik.com/en/product/nsj12hh-1 +neutrik jack stacking +0 +13 +13 +Connector_Audio +Jack_6.35mm_Neutrik_NSJ12HL_Horizontal +Stacking Jacks, Stereo dual jack, quick fix nose, https://www.neutrik.com/en/product/nsj12hl +neutrik jack stacking +0 +13 +13 +Connector_Audio +Jack_XLR-6.35mm_Neutrik_NCJ5FI-H-0_Horizontal +Combo I series, 3 pole XLR female receptacle with 6.35mm (1/4in) mono jack without switching contact, horizontal PCB mount, https://www.neutrik.com/en/product/ncj5fi-h-0 +neutrik jack combo i +0 +6 +6 +Connector_Audio +Jack_XLR-6.35mm_Neutrik_NCJ5FI-H_Horizontal +Combo I series, 3 pole XLR female receptacle with 6.35mm (1/4in) mono jack without switching contact, horizontal PCB mount, retention spring, https://www.neutrik.com/en/product/ncj5fi-h +neutrik jack combo i +0 +6 +6 +Connector_Audio +Jack_XLR-6.35mm_Neutrik_NCJ5FI-V-0_Vertical +Combo I series, 3 pole XLR female receptacle with 6.35mm (1/4in) mono jack without switching contact, vertical PCB mount, https://www.neutrik.com/en/product/ncj5fi-v-0 +neutrik jack combo i +0 +6 +6 +Connector_Audio +Jack_XLR-6.35mm_Neutrik_NCJ5FI-V_Vertical +Combo I series, 3 pole XLR female receptacle with 6.35mm (1/4in) mono jack without switching contact, vertical PCB mount, retention spring, https://www.neutrik.com/en/product/ncj5fi-v +neutrik jack combo i +0 +6 +6 +Connector_Audio +Jack_XLR-6.35mm_Neutrik_NCJ6FA-H-0_Horizontal +Combo A series, 3 pole XLR female receptacle with 6.35mm (1/4in) stereo jack, horizontal PCB mount, retention spring, https://www.neutrik.com/en/product/ncj6fa-h-0 +neutrik jack combo a +0 +8 +7 +Connector_Audio +Jack_XLR-6.35mm_Neutrik_NCJ6FA-H-DA_Horizontal +Combo A series, 3 pole XLR female receptacle with 6.35mm (1/4in) stereo jack, horizontal PCB mount, asymmetric push, https://www.neutrik.com/en/product/ncj6fa-h-da +neutrik jack combo a +0 +8 +7 +Connector_Audio +Jack_XLR-6.35mm_Neutrik_NCJ6FA-H_Horizontal +Combo A series, 3 pole XLR female receptacle with 6.35mm (1/4in) stereo jack, horizontal PCB mount, https://www.neutrik.com/en/product/ncj6fa-h +neutrik jack combo a +0 +8 +7 +Connector_Audio +Jack_XLR-6.35mm_Neutrik_NCJ6FA-V-0_Vertical +Combo A series, 3 pole XLR female receptacle with 6.35mm (1/4in) stereo jack, vertical PCB mount, retention spring, https://www.neutrik.com/en/product/ncj6fa-v-0 +neutrik jack combo a +0 +8 +7 +Connector_Audio +Jack_XLR-6.35mm_Neutrik_NCJ6FA-V-DA_Vertical +Combo A series, 3 pole XLR female receptacle with 6.35mm (1/4in) stereo jack, vertical PCB mount, asymmetric push, https://www.neutrik.com/en/product/ncj6fa-v-da +neutrik jack combo a +0 +8 +7 +Connector_Audio +Jack_XLR-6.35mm_Neutrik_NCJ6FA-V_Vertical +Combo A series, 3 pole XLR female receptacle with 6.35mm (1/4in) stereo jack, vertical PCB mount, https://www.neutrik.com/en/product/ncj6fa-v +neutrik jack combo a +0 +8 +7 +Connector_Audio +Jack_XLR-6.35mm_Neutrik_NCJ6FI-H-0_Horizontal +Combo I series, 3 pole XLR female receptacle with 6.35mm (1/4in) stereo jack without switching contact, horizontal PCB mount, https://www.neutrik.com/en/product/ncj6fi-h-0 +neutrik jack combo i +0 +7 +7 +Connector_Audio +Jack_XLR-6.35mm_Neutrik_NCJ6FI-H_Horizontal +Combo I series, 3 pole XLR female receptacle with 6.35mm (1/4in) stereo jack without switching contact, horizontal PCB mount, retention spring, https://www.neutrik.com/en/product/ncj6fi-h +neutrik jack combo i +0 +7 +7 +Connector_Audio +Jack_XLR-6.35mm_Neutrik_NCJ6FI-V-0_Vertical +Combo I series, 3 pole XLR female receptacle with 6.35mm (1/4in) stereo jack without switching contact, vertical PCB mount, https://www.neutrik.com/en/product/ncj6fi-v-0 +neutrik jack combo i +0 +7 +7 +Connector_Audio +Jack_XLR-6.35mm_Neutrik_NCJ6FI-V_Vertical +Combo I series, 3 pole XLR female receptacle with 6.35mm (1/4in) stereo jack without switching contact, vertical PCB mount, retention spring, https://www.neutrik.com/en/product/ncj6fi-v +neutrik jack combo i +0 +7 +7 +Connector_Audio +Jack_XLR-6.35mm_Neutrik_NCJ9FI-H-0_Horizontal +Combo I series, 3 pole XLR female receptacle with 6.35mm (1/4in) switching stereo jack, horizontal PCB mount, https://www.neutrik.com/en/product/ncj9fi-h-0 +neutrik jack combo i +0 +10 +10 +Connector_Audio +Jack_XLR-6.35mm_Neutrik_NCJ9FI-H_Horizontal +Combo I series, 3 pole XLR female receptacle with 6.35mm (1/4in) switching stereo jack, horizontal PCB mount, retention spring, https://www.neutrik.com/en/product/ncj9fi-h +neutrik jack combo i +0 +10 +10 +Connector_Audio +Jack_XLR-6.35mm_Neutrik_NCJ9FI-V-0_Vertical +Combo I series, 3 pole XLR female receptacle with 6.35mm (1/4in) switching stereo jack, vertical PCB mount, https://www.neutrik.com/en/product/ncj9fi-v-0 +neutrik jack combo i +0 +10 +10 +Connector_Audio +Jack_XLR-6.35mm_Neutrik_NCJ9FI-V_Vertical +Combo I series, 3 pole XLR female receptacle with 6.35mm (1/4in) switching stereo jack, vertical PCB mount, retention spring, https://www.neutrik.com/en/product/ncj9fi-v +neutrik jack combo i +0 +10 +10 +Connector_Audio +Jack_XLR-6.35mm_Neutrik_NCJ10FI-H-0_Horizontal +Combo I series, 3 pole XLR female receptacle with 6.35mm (1/4in) switching stereo jack and switching ground contact, horizontal PCB mount, https://www.neutrik.com/en/product/ncj10fi-h-0 +neutrik jack combo i +0 +11 +11 +Connector_Audio +Jack_XLR-6.35mm_Neutrik_NCJ10FI-H_Horizontal +Combo I series, 3 pole XLR female receptacle with 6.35mm (1/4in) switching stereo jack and switching ground contact, horizontal PCB mount, retention spring, https://www.neutrik.com/en/product/ncj10fi-h +neutrik jack combo i +0 +11 +11 +Connector_Audio +Jack_XLR-6.35mm_Neutrik_NCJ10FI-V-0_Vertical +Combo I series, 3 pole XLR female receptacle with 6.35mm (1/4in) switching stereo jack and switching ground contact, vertical PCB mount, https://www.neutrik.com/en/product/ncj10fi-v-0 +neutrik jack combo i +0 +11 +11 +Connector_Audio +Jack_XLR-6.35mm_Neutrik_NCJ10FI-V_Vertical +Combo I series, 3 pole XLR female receptacle with 6.35mm (1/4in) switching stereo jack and switching ground contact, vertical PCB mount, retention spring, https://www.neutrik.com/en/product/ncj10fi-v +neutrik jack combo i +0 +11 +11 +Connector_Audio +Jack_XLR_Neutrik_NC3FAAH-0_Horizontal +AA Series, 3 pole female XLR receptacle, grounding: without ground/shell contact, horizontal PCB mount, retention spring instead of latch, https://www.neutrik.com/en/product/nc3faah-0 +neutrik xlr aa +0 +3 +3 +Connector_Audio +Jack_XLR_Neutrik_NC3FAAH1-0_Horizontal +AA Series, 3 pole female XLR receptacle, grounding: mating connector shell to pin1 and front panel, horizontal PCB mount, retention spring instead of latch, https://www.neutrik.com/en/product/nc3faah1-0 +neutrik xlr aa +0 +3 +3 +Connector_Audio +Jack_XLR_Neutrik_NC3FAAH1-DA_Horizontal +AA Series, 3 pole female XLR receptacle, grounding: mating connector shell to pin1 and front panel, horizontal PCB mount, asymmetric push, https://www.neutrik.com/en/product/nc3faah1-da +neutrik xlr aa +0 +3 +3 +Connector_Audio +Jack_XLR_Neutrik_NC3FAAH1_Horizontal +AA Series, 3 pole female XLR receptacle, grounding: mating connector shell to pin1 and front panel, horizontal PCB mount, https://www.neutrik.com/en/product/nc3faah1 +neutrik xlr aa +0 +3 +3 +Connector_Audio +Jack_XLR_Neutrik_NC3FAAH2-0_Horizontal +AA Series, 3 pole female XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, horizontal PCB mount, retention spring instead of latch, https://www.neutrik.com/en/product/nc3faah2-0 +neutrik xlr aa +0 +4 +4 +Connector_Audio +Jack_XLR_Neutrik_NC3FAAH2_Horizontal +AA Series, 3 pole female XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, horizontal PCB mount, https://www.neutrik.com/en/product/nc3faah2 +neutrik xlr aa +0 +4 +4 +Connector_Audio +Jack_XLR_Neutrik_NC3FAAH_Horizontal +AA Series, 3 pole female XLR receptacle, grounding: without ground/shell contact, horizontal PCB mount, https://www.neutrik.com/en/product/nc3faah +neutrik xlr aa +0 +3 +3 +Connector_Audio +Jack_XLR_Neutrik_NC3FAAV-0_Vertical +AA Series, 3 pole female receptacle, grounding: without ground/shell contact, vertical PCB mount, retention spring instead of latch, https://www.neutrik.com/en/product/nc3faav-0 +neutrik xlr aa +0 +3 +3 +Connector_Audio +Jack_XLR_Neutrik_NC3FAAV1-0_Vertical +AA Series, 3 pole female receptacle, grounding: mating connector shell to pin1 and front panel, vertical PCB mount, retention spring instead of latch, https://www.neutrik.com/en/product/nc3faav1-0 +neutrik xlr aa +0 +3 +3 +Connector_Audio +Jack_XLR_Neutrik_NC3FAAV1-DA_Vertical +AA Series, 3 pole female receptacle, grounding: mating connector shell to pin1 and front panel, vertical PCB mount, asymmetric push, https://www.neutrik.com/en/product/nc3faav1-da +neutrik xlr aa +0 +3 +3 +Connector_Audio +Jack_XLR_Neutrik_NC3FAAV1_Vertical +AA Series, 3 pole female receptacle, grounding: mating connector shell to pin1 and front panel, vertical PCB mount, https://www.neutrik.com/en/product/nc3faav1 +neutrik xlr aa +0 +3 +3 +Connector_Audio +Jack_XLR_Neutrik_NC3FAAV2-0_Vertical +AA Series, 3 pole female receptacle, grounding: separate ground contact to mating connector shell and front panel, vertical PCB mount, retention spring instead of latch, https://www.neutrik.com/en/product/nc3faav2-0 +neutrik xlr aa +0 +4 +4 +Connector_Audio +Jack_XLR_Neutrik_NC3FAAV2_Vertical +AA Series, 3 pole female receptacle, grounding: separate ground contact to mating connector shell and front panel, vertical PCB mount, https://www.neutrik.com/en/product/nc3faav2 +neutrik xlr aa +0 +4 +4 +Connector_Audio +Jack_XLR_Neutrik_NC3FAAV_Vertical +AA Series, 3 pole female receptacle, grounding: without ground/shell contact, vertical PCB mount, https://www.neutrik.com/en/product/nc3faav +neutrik xlr aa +0 +3 +3 +Connector_Audio +Jack_XLR_Neutrik_NC3FAH-0_Horizontal +A Series, 3 pole female XLR receptacle, grounding: without ground/shell contact, horizontal PCB mount, retention spring instead of latch, https://www.neutrik.com/en/product/nc3fah-0 +neutrik xlr a +0 +3 +3 +Connector_Audio +Jack_XLR_Neutrik_NC3FAH1-0_Horizontal +A Series, 3 pole female XLR receptacle, grounding: mating connector shell to pin1 and front panel, horizontal PCB mount, retention spring instead of latch, https://www.neutrik.com/en/product/nc3fah1-0 +neutrik xlr a +0 +3 +3 +Connector_Audio +Jack_XLR_Neutrik_NC3FAH1-DA_Horizontal +A Series, 3 pole female XLR receptacle, grounding: mating connector shell to pin1 and front panel, horizontal PCB mount, asymmetric push, https://www.neutrik.com/en/product/nc3fah1-da +neutrik xlr a +0 +3 +3 +Connector_Audio +Jack_XLR_Neutrik_NC3FAH1_Horizontal +A Series, 3 pole female XLR receptacle, grounding: mating connector shell to pin1 and front panel, horizontal PCB mount, https://www.neutrik.com/en/product/nc3fah1 +neutrik xlr a +0 +3 +3 +Connector_Audio +Jack_XLR_Neutrik_NC3FAH2-0_Horizontal +A Series, 3 pole female XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, horizontal PCB mount, retention spring instead of latch, https://www.neutrik.com/en/product/nc3fah2-0 +neutrik xlr a +0 +4 +4 +Connector_Audio +Jack_XLR_Neutrik_NC3FAH2-DA_Horizontal +A Series, 3 pole female XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, horizontal PCB mount, asymmetric push, https://www.neutrik.com/en/product/nc3fah2-da +neutrik xlr a +0 +4 +4 +Connector_Audio +Jack_XLR_Neutrik_NC3FAH2_Horizontal +A Series, 3 pole female XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, horizontal PCB mount, https://www.neutrik.com/en/product/nc3fah2 +neutrik xlr a +0 +4 +4 +Connector_Audio +Jack_XLR_Neutrik_NC3FAHL-0_Horizontal +A Series, 3 pole female XLR receptacle, grounding: without ground/shell contact, lateral left PCB mount, retention spring instead of latch, https://www.neutrik.com/en/product/nc3fahl-0 +neutrik xlr a +0 +3 +3 +Connector_Audio +Jack_XLR_Neutrik_NC3FAHL1-0_Horizontal +A Series, 3 pole female XLR receptacle, grounding: mating connector shell to pin1 and front panel, lateral left PCB mount, retention spring instead of latch, https://www.neutrik.com/en/product/nc3fahl1-0 +neutrik xlr a +0 +3 +3 +Connector_Audio +Jack_XLR_Neutrik_NC3FAHL1_Horizontal +A Series, 3 pole female XLR receptacle, grounding: mating connector shell to pin1 and front panel, lateral left PCB mount, https://www.neutrik.com/en/product/nc3fahl1 +neutrik xlr a +0 +3 +3 +Connector_Audio +Jack_XLR_Neutrik_NC3FAHR-0_Horizontal +A Series, 3 pole female XLR receptacle, grounding: without ground / shell contact, lateral right PCB mount, retention spring instead of latch, https://www.neutrik.com/en/product/nc3fahr-0 +neutrik xlr a +0 +3 +3 +Connector_Audio +Jack_XLR_Neutrik_NC3FAHR1-0_Horizontal +A Series, 3 pole female XLR receptacle, grounding: mating connector shell to pin1 and front panel, lateral right PCB mount, retention spring instead of latch, https://www.neutrik.com/en/product/nc3fahr1-0 +neutrik xlr a +0 +3 +3 +Connector_Audio +Jack_XLR_Neutrik_NC3FAHR1_Horizontal +A Series, 3 pole female XLR receptacle, grounding: mating connector shell to pin1 and front panel, lateral right PCB mount, https://www.neutrik.com/en/product/nc3fahr1 +neutrik xlr a +0 +3 +3 +Connector_Audio +Jack_XLR_Neutrik_NC3FAHR2-0_Horizontal +A Series, 3 pole female XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, lateral right PCB mount, retention spring instead of latch, https://www.neutrik.com/en/product/nc3fahr2-0 +neutrik xlr a +0 +4 +4 +Connector_Audio +Jack_XLR_Neutrik_NC3FAHR2_Horizontal +A Series, 3 pole female XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, lateral right PCB mount, https://www.neutrik.com/en/product/nc3fahr2 +neutrik xlr a +0 +4 +4 +Connector_Audio +Jack_XLR_Neutrik_NC3FAH_Horizontal +A Series, 3 pole female XLR receptacle, grounding: without ground/shell contact, horizontal PCB mount, https://www.neutrik.com/en/product/nc3fah +neutrik xlr a +0 +3 +3 +Connector_Audio +Jack_XLR_Neutrik_NC3FAV-0_Vertical +A Series, 3 pole female XLR receptacle, grounding: without ground / shell contact, vertical PCB mount, retention spring instead of latch, https://www.neutrik.com/en/product/nc3fav-0 +neutrik xlr a +0 +3 +3 +Connector_Audio +Jack_XLR_Neutrik_NC3FAV1-0_Vertical +A Series, 3 pole female XLR receptacle, grounding: mating connector shell to pin1 and front panel, vertical PCB mount, retention spring instead of latch, https://www.neutrik.com/en/product/nc3fav1-0 +neutrik xlr a +0 +3 +3 +Connector_Audio +Jack_XLR_Neutrik_NC3FAV1-DA_Vertical +A Series, 3 pole female XLR receptacle, grounding: mating connector shell to pin1 and front panel, vertical PCB mount, asymmetric push, https://www.neutrik.com/en/product/nc3fav1-da +neutrik xlr a +0 +3 +3 +Connector_Audio +Jack_XLR_Neutrik_NC3FAV1_Vertical +A Series, 3 pole female XLR receptacle, grounding: mating connector shell to pin1 and front panel, vertical PCB mount, https://www.neutrik.com/en/product/nc3fav1 +neutrik xlr a +0 +3 +3 +Connector_Audio +Jack_XLR_Neutrik_NC3FAV2-0_Vertical +A Series, 3 pole female XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, vertical PCB mount, retention spring instead of latch, https://www.neutrik.com/en/product/nc3fav2-0 +neutrik xlr a +0 +4 +4 +Connector_Audio +Jack_XLR_Neutrik_NC3FAV2-DA_Vertical +A Series, 3 pole female XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, vertical PCB mount, asymmetric push, https://www.neutrik.com/en/product/nc3fav2-da +neutrik xlr a +0 +4 +4 +Connector_Audio +Jack_XLR_Neutrik_NC3FAV2_Vertical +A Series, 3 pole female XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, vertical PCB mount, https://www.neutrik.com/en/product/nc3fav2 +neutrik xlr a +0 +4 +4 +Connector_Audio +Jack_XLR_Neutrik_NC3FAV_Vertical +A Series, 3 pole female XLR receptacle, grounding: without ground / shell contact, vertical PCB mount, https://www.neutrik.com/en/product/nc3fav +neutrik xlr a +0 +3 +3 +Connector_Audio +Jack_XLR_Neutrik_NC3FBH1-B_Horizontal +B Series, 3 pole female XLR receptacle, grounding: mating connector shell to pin1 and front panel, horizontal PCB mount, black chrome shell, https://www.neutrik.com/en/product/nc3fbh1-b +neutrik xlr b +0 +3 +3 +Connector_Audio +Jack_XLR_Neutrik_NC3FBH1-DA_Horizontal +B Series, 3 pole female XLR receptacle, grounding: mating connector shell to pin1 and front panel, horizontal PCB mount, asymmetric push, https://www.neutrik.com/en/product/nc3fbh1-da +neutrik xlr b +0 +3 +3 +Connector_Audio +Jack_XLR_Neutrik_NC3FBH1-E_Horizontal +B Series, 3 pole female XLR receptacle, grounding: mating connector shell to pin1 and front panel, horizontal PCB mount, additional ground contacts, https://www.neutrik.com/en/product/nc3fbh1-e +neutrik xlr b +0 +3 +3 +Connector_Audio +Jack_XLR_Neutrik_NC3FBH1_Horizontal +B Series, 3 pole female XLR receptacle, grounding: mating connector shell to pin1 and front panel, horizontal PCB mount, https://www.neutrik.com/en/product/nc3fbh1 +neutrik xlr b +0 +3 +3 +Connector_Audio +Jack_XLR_Neutrik_NC3FBH2-B_Horizontal +B Series, 3 pole female XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, horizontal PCB mount, black chrome shell, https://www.neutrik.com/en/product/nc3fbh2-b +neutrik xlr b +0 +4 +4 +Connector_Audio +Jack_XLR_Neutrik_NC3FBH2-DA_Horizontal +B Series, 3 pole female XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, horizontal PCB mount, asymmetric push, https://www.neutrik.com/en/product/nc3fbh2-da +neutrik xlr b +0 +4 +4 +Connector_Audio +Jack_XLR_Neutrik_NC3FBH2-E_Horizontal +B Series, 3 pole female XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, horizontal PCB mount, additional ground contacts, https://www.neutrik.com/en/product/nc3fbh2-e +neutrik xlr b +0 +4 +4 +Connector_Audio +Jack_XLR_Neutrik_NC3FBH2_Horizontal +B Series, 3 pole female XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, horizontal PCB mount, https://www.neutrik.com/en/product/nc3fbh2 +neutrik xlr b +0 +4 +4 +Connector_Audio +Jack_XLR_Neutrik_NC3FBHL1_Horizontal +B Series, 3 pole female XLR receptacle, grounding: mating connector shell to pin1 and front panel, lateral left PCB mount, https://www.neutrik.com/en/product/nc3fbhl1 +neutrik xlr b +0 +3 +3 +Connector_Audio +Jack_XLR_Neutrik_NC3FBV1-0_Vertical +B Series, 3 pole female XLR receptacle, grounding: mating connector shell to pin1 and front panel, vertical PCB mount, retention spring, no latch, https://www.neutrik.com/en/product/nc3fbv1-0 +neutrik xlr b +0 +3 +3 +Connector_Audio +Jack_XLR_Neutrik_NC3FBV1-B_Vertical +B Series, 3 pole female XLR receptacle, grounding: mating connector shell to pin1 and front panel, vertical PCB mount, black chrome shell, https://www.neutrik.com/en/product/nc3fbv1-b +neutrik xlr b +0 +3 +3 +Connector_Audio +Jack_XLR_Neutrik_NC3FBV1-DA_Vertical +B Series, 3 pole female XLR receptacle, grounding: mating connector shell to pin1 and front panel, vertical PCB mount, asymmetric push, https://www.neutrik.com/en/product/nc3fbv1-da +neutrik xlr b +0 +3 +3 +Connector_Audio +Jack_XLR_Neutrik_NC3FBV1_Vertical +B Series, 3 pole female XLR receptacle, grounding: mating connector shell to pin1 and front panel, vertical PCB mount, https://www.neutrik.com/en/product/nc3fbv1 +neutrik xlr b +0 +3 +3 +Connector_Audio +Jack_XLR_Neutrik_NC3FBV2-B_Vertical +B Series, 3 pole female XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, vertical PCB mount, black chrome shell, https://www.neutrik.com/en/product/nc3fbv2-b +neutrik xlr b +0 +4 +4 +Connector_Audio +Jack_XLR_Neutrik_NC3FBV2-DA_Vertical +B Series, 3 pole female XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, vertical PCB mount, asymmetric push, https://www.neutrik.com/en/product/nc3fbv2-da +neutrik xlr b +0 +4 +4 +Connector_Audio +Jack_XLR_Neutrik_NC3FBV2-SW_Vertical +B Series, 3 pole female XLR receptacle, switching contacts, grounding: separate ground contact to mating connector shell and front panel, vertical PCB mount, https://www.neutrik.com/en/product/nc3fbv2-sw +neutrik xlr b +0 +7 +7 +Connector_Audio +Jack_XLR_Neutrik_NC3FBV2_Vertical +B Series, 3 pole female XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, vertical PCB mount, https://www.neutrik.com/en/product/nc3fbv2 +neutrik xlr b +0 +4 +4 +Connector_Audio +Jack_XLR_Neutrik_NC3MAAH-0_Horizontal +AA Series, 3 pole male XLR receptacle, grounding: ground contact connected to shell ground, but not to front panel and Pin 1, horizontal PCB mount, https://www.neutrik.com/en/product/nc3maah-0 +neutrik xlr aa +0 +4 +4 +Connector_Audio +Jack_XLR_Neutrik_NC3MAAH-1_Horizontal +AA Series, 3 pole male XLR receptacle, grounding: mating connector shell to pin1 and front panel, horizontal PCB mount, https://www.neutrik.com/en/product/nc3maah-1 +neutrik xlr aa +0 +3 +3 +Connector_Audio +Jack_XLR_Neutrik_NC3MAAH_Horizontal +AA Series, 3 pole male XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, horizontal PCB mount, https://www.neutrik.com/en/product/nc3maah +neutrik xlr aa +0 +4 +4 +Connector_Audio +Jack_XLR_Neutrik_NC3MAAV-0_Vertical +AA Series, 3 pole male XLR receptacle, grounding: ground contact connected to shell ground, but not to front panel and Pin 1, vertical PCB mount, https://www.neutrik.com/en/product/nc3maav-0 +neutrik xlr aa +0 +4 +4 +Connector_Audio +Jack_XLR_Neutrik_NC3MAAV-1_Vertical +AA Series, 3 pole male XLR receptacle, grounding: mating connector shell to pin1 and front panel, vertical PCB mount, https://www.neutrik.com/en/product/nc3maav-1 +neutrik xlr aa +0 +3 +3 +Connector_Audio +Jack_XLR_Neutrik_NC3MAAV_Vertical +AA Series, 3 pole male XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, vertical PCB mount, https://www.neutrik.com/en/product/nc3maav +neutrik xlr aa +0 +4 +4 +Connector_Audio +Jack_XLR_Neutrik_NC3MAFH-PH_Horizontal +A Series, Chassis connector H female (A series layout), mates with Phoenix MSTB2,5/3-ST, horizontal PCB mount, https://www.neutrik.com/en/product/nc3mafh-ph +neutrik xlr a +0 +3 +3 +Connector_Audio +Jack_XLR_Neutrik_NC3MAH-0_Horizontal +A Series, 3 pole male XLR receptacle, grounding: ground contact connected to shell ground, but not to front panel and Pin 1, horizontal PCB mount, https://www.neutrik.com/en/product/nc3mah-0 +neutrik xlr a +0 +4 +4 +Connector_Audio +Jack_XLR_Neutrik_NC3MAHL_Horizontal +A Series, 3 pole male XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, lateral left PCB mount, https://www.neutrik.com/en/product/nc3mahl +neutrik xlr a +0 +4 +4 +Connector_Audio +Jack_XLR_Neutrik_NC3MAHR_Horizontal +A Series, 3 pole male XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, lateral right PCB mount, https://www.neutrik.com/en/product/nc3mahr +neutrik xlr a +0 +4 +4 +Connector_Audio +Jack_XLR_Neutrik_NC3MAH_Horizontal +A Series, 3 pole male XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, horizontal PCB mount, https://www.neutrik.com/en/product/nc3mah +neutrik xlr a +0 +4 +4 +Connector_Audio +Jack_XLR_Neutrik_NC3MAMH-PH_Horizontal +A Series, Chassis connector Phoenix H male (A series layout), mates with Phoenix MSTB 2,5/3-ST, horizontal PCB mount, https://www.neutrik.com/en/product/nc3mamh-ph +neutrik xlr a +0 +3 +3 +Connector_Audio +Jack_XLR_Neutrik_NC3MAV-0_Vertical +A Series, 3 pole male XLR receptacle, grounding: ground contact connected to shell ground, but not to front panel and Pin 1, vertical PCB mount, https://www.neutrik.com/en/product/nc3mav-0 +neutrik xlr a +0 +4 +4 +Connector_Audio +Jack_XLR_Neutrik_NC3MAV_Vertical +A Series, 3 pole male XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, vertical PCB mount, https://www.neutrik.com/en/product/nc3mav +neutrik xlr a +0 +4 +4 +Connector_Audio +Jack_XLR_Neutrik_NC3MBH-0_Horizontal +B Series, 3 pole male XLR receptacle, grounding: ground contact connected to shell ground, but not to front panel and Pin 1, steel retention lug, horizontal PCB mount, https://www.neutrik.com/en/product/nc3mbh-0 +neutrik xlr b +0 +4 +4 +Connector_Audio +Jack_XLR_Neutrik_NC3MBH-1_Horizontal +B Series, 3 pole male XLR receptacle, grounding: mating connector shell to pin1 and front panel, steel retention lug, horizontal PCB mount, https://www.neutrik.com/en/product/nc3mbh-1 +neutrik xlr b +0 +3 +3 +Connector_Audio +Jack_XLR_Neutrik_NC3MBH-B_Horizontal +B Series, 3 pole male XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, steel retention lug, horizontal PCB mount, black chrome shell, https://www.neutrik.com/en/product/nc3mbh-b +neutrik xlr b +0 +4 +4 +Connector_Audio +Jack_XLR_Neutrik_NC3MBH-E_Horizontal +B Series, 3 pole male XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, steel retention lug, horizontal PCB mount, additional ground contacts, https://www.neutrik.com/en/product/nc3mbh-e +neutrik xlr b +0 +4 +4 +Connector_Audio +Jack_XLR_Neutrik_NC3MBHL-B_Horizontal +B Series, 3 pole male XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, steel retention lug, lateral left PCB mount, black chrome shell, https://www.neutrik.com/en/product/nc3mbhl-b +neutrik xlr b +0 +4 +4 +Connector_Audio +Jack_XLR_Neutrik_NC3MBHL_Horizontal +B Series, 3 pole male XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, steel retention lug, lateral left PCB mount, https://www.neutrik.com/en/product/nc3mbhl +neutrik xlr b +0 +4 +4 +Connector_Audio +Jack_XLR_Neutrik_NC3MBHR-B_Horizontal +B Series, 3 pole male XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, steel retention lug, lateral right PCB mount, black chrome shell, https://www.neutrik.com/en/product/nc3mbhr-b +neutrik xlr b +0 +4 +4 +Connector_Audio +Jack_XLR_Neutrik_NC3MBHR_Horizontal +B Series, 3 pole male XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, steel retention lug, lateral right PCB mount, https://www.neutrik.com/en/product/nc3mbhr +neutrik xlr b +0 +4 +4 +Connector_Audio +Jack_XLR_Neutrik_NC3MBH_Horizontal +B Series, 3 pole male XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, steel retention lug, horizontal PCB mount, https://www.neutrik.com/en/product/nc3mbh +neutrik xlr b +0 +4 +4 +Connector_Audio +Jack_XLR_Neutrik_NC3MBV-0_Vertical +B Series, 3 pole male XLR receptacle, grounding: ground contact connected to shell ground, but not to front panel and Pin 1, steel retention lug, vertical PCB mount, https://www.neutrik.com/en/product/nc3mbv-0 +neutrik xlr b +0 +4 +4 +Connector_Audio +Jack_XLR_Neutrik_NC3MBV-1_Vertical +B Series, 3 pole male XLR receptacle, grounding: mating connector shell to pin1 and front panel, steel retention lug, vertical PCB mount, https://www.neutrik.com/en/product/nc3mbv-1 +neutrik xlr b +0 +3 +3 +Connector_Audio +Jack_XLR_Neutrik_NC3MBV-B_Vertical +B Series, 3 pole male XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, steel retention lug, vertical PCB mount, black chrome shell, https://www.neutrik.com/en/product/nc3mbv-b +neutrik xlr b +0 +4 +4 +Connector_Audio +Jack_XLR_Neutrik_NC3MBV-E_Vertical +B Series, 3 pole male XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, steel retention lug, vertical PCB mount, additional ground contacts, https://www.neutrik.com/en/product/nc3mbv-e +neutrik xlr b +0 +4 +4 +Connector_Audio +Jack_XLR_Neutrik_NC3MBV-SW_Vertical +B Series, 3 pole male XLR receptacle, switching contacts, grounding: separate ground contact to mating connector shell and front panel, vertical PCB mount, https://www.neutrik.com/en/product/nc3mbv-sw +neutrik xlr b +0 +7 +7 +Connector_Audio +Jack_XLR_Neutrik_NC3MBV_Vertical +B Series, 3 pole male XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, steel retention lug, vertical PCB mount, https://www.neutrik.com/en/product/nc3mbv +neutrik xlr b +0 +4 +4 +Connector_Audio +Jack_XLR_Neutrik_NC4FAH-0_Horizontal +A Series, 4 pole female XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, horizontal PCB mount, retention spring instead of latch, https://www.neutrik.com/en/product/nc4fah-0 +neutrik xlr a +0 +5 +5 +Connector_Audio +Jack_XLR_Neutrik_NC4FAH_Horizontal +A Series, 4 pole female XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, horizontal PCB mount, https://www.neutrik.com/en/product/nc4fah +neutrik xlr a +0 +5 +5 +Connector_Audio +Jack_XLR_Neutrik_NC4FAV-0_Vertical +A Series, 4 pole female XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, vertical PCB mount, retention spring instead of latch, https://www.neutrik.com/en/product/nc4fav-0 +neutrik xlr a +0 +5 +5 +Connector_Audio +Jack_XLR_Neutrik_NC4FAV_Vertical +A Series, 4 pole female XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, vertical PCB mount, https://www.neutrik.com/en/product/nc4fav +neutrik xlr a +0 +5 +5 +Connector_Audio +Jack_XLR_Neutrik_NC4FBH_Horizontal +B Series, 4 pole female XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, horizontal PCB mount, https://www.neutrik.com/en/product/nc4fbh +neutrik xlr b +0 +5 +5 +Connector_Audio +Jack_XLR_Neutrik_NC4FBV_Vertical +B Series, 4 pole female XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, vertical PCB mount, https://www.neutrik.com/en/product/nc4fbv +neutrik xlr b +0 +5 +5 +Connector_Audio +Jack_XLR_Neutrik_NC4MAH_Horizontal +A Series, 4 pole male XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, horizontal PCB mount, https://www.neutrik.com/en/product/nc4mah +neutrik xlr a +0 +5 +5 +Connector_Audio +Jack_XLR_Neutrik_NC4MAV_Vertical +A Series, 4 pole male XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, vertical PCB mount, https://www.neutrik.com/en/product/nc4mav +neutrik xlr a +0 +5 +5 +Connector_Audio +Jack_XLR_Neutrik_NC4MBH_Horizontal +B Series, 4 pole male XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, horizontal PCB mount, https://www.neutrik.com/en/product/nc4mbh +neutrik xlr b +0 +5 +5 +Connector_Audio +Jack_XLR_Neutrik_NC4MBV_Vertical +B Series, 4 pole male XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, vertical PCB mount, https://www.neutrik.com/en/product/nc4mbv +neutrik xlr b +0 +5 +5 +Connector_Audio +Jack_XLR_Neutrik_NC5FAH-0_Horizontal +A Series, 5 pole female XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, horizontal PCB mount, retention spring instead of latch, https://www.neutrik.com/en/product/nc5fah-0 +neutrik xlr a +0 +6 +6 +Connector_Audio +Jack_XLR_Neutrik_NC5FAH-DA_Horizontal +A Series, 5 pole female XLR receptacle, grounding: mating connector shell to pin1 and front panel, horizontal PCB mount, asymmetric push, https://www.neutrik.com/en/product/nc5fah-da +neutrik xlr a +0 +6 +6 +Connector_Audio +Jack_XLR_Neutrik_NC5FAH_Horizontal +A Series, 5 pole female XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, horizontal PCB mount, https://www.neutrik.com/en/product/nc5fah +neutrik xlr a +0 +6 +6 +Connector_Audio +Jack_XLR_Neutrik_NC5FAV-DA_Vertical +A Series, 5 pole female XLR receptacle, grounding: mating connector shell to pin1 and front panel, horizontal PCB mount, asymmetric push, https://www.neutrik.com/en/product/nc5fav-da +neutrik xlr a +0 +6 +6 +Connector_Audio +Jack_XLR_Neutrik_NC5FAV-SW_Vertical +A Series, 5 pole female XLR receptacle, switching contacts, grounding: separate ground contact to mating connector shell and front panel, vertical PCB mount, color coding possible, https://www.neutrik.com/en/product/nc5fav-sw +neutrik xlr a +0 +9 +9 +Connector_Audio +Jack_XLR_Neutrik_NC5FAV_Vertical +A Series, 5 pole female XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, vertical PCB mount, https://www.neutrik.com/en/product/nc5fav +neutrik xlr a +0 +6 +6 +Connector_Audio +Jack_XLR_Neutrik_NC5FBH-B_Horizontal +B Series, 5 pole female XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, horizontal PCB mount, black chrome shell, https://www.neutrik.com/en/product/nc5fbh-b +neutrik xlr b +0 +6 +6 +Connector_Audio +Jack_XLR_Neutrik_NC5FBH_Horizontal +B Series, 5 pole female XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, horizontal PCB mount, https://www.neutrik.com/en/product/nc5fbh +neutrik xlr b +0 +6 +6 +Connector_Audio +Jack_XLR_Neutrik_NC5FBV-B_Vertical +B Series, 5 pole female XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, vertical PCB mount, black chrome shell, https://www.neutrik.com/en/product/nc5fbv-b +neutrik xlr b +0 +6 +6 +Connector_Audio +Jack_XLR_Neutrik_NC5FBV-SW_Vertical +B Series, 5 pole female XLR receptacle, switching contacts, grounding: separate ground contact to mating connector shell and front panel, vertical PCB mount, https://www.neutrik.com/en/product/nc5fbv-sw +neutrik xlr b +0 +9 +9 +Connector_Audio +Jack_XLR_Neutrik_NC5FBV_Vertical +B Series, 5 pole female XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, vertical PCB mount, https://www.neutrik.com/en/product/nc5fbv +neutrik xlr b +0 +6 +6 +Connector_Audio +Jack_XLR_Neutrik_NC5MAH_Horizontal +A Series, 5 pole male XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, horizontal PCB mount, https://www.neutrik.com/en/product/nc5mah +neutrik xlr a +0 +6 +6 +Connector_Audio +Jack_XLR_Neutrik_NC5MAV-SW_Vertical +A Series, 5 pole male XLR receptacle, switching contacts, grounding: separate ground contact to mating connector shell and front panel, vertical PCB mount, https://www.neutrik.com/en/product/nc5mav-sw +neutrik xlr a +0 +9 +9 +Connector_Audio +Jack_XLR_Neutrik_NC5MAV_Vertical +A Series, 5 pole male XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, vertical PCB mount, https://www.neutrik.com/en/product/nc5mav +neutrik xlr a +0 +6 +6 +Connector_Audio +Jack_XLR_Neutrik_NC5MBH-B_Horizontal +B Series, 5 pole male XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, horizontal PCB mount, black chrome shell, https://www.neutrik.com/en/product/nc5mbh-b +neutrik xlr b +0 +6 +6 +Connector_Audio +Jack_XLR_Neutrik_NC5MBH_Horizontal +B Series, 5 pole male XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, horizontal PCB mount, https://www.neutrik.com/en/product/nc5mbh +neutrik xlr b +0 +6 +6 +Connector_Audio +Jack_XLR_Neutrik_NC5MBV-B_Vertical +B Series, 5 pole male XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, vertical PCB mount, black chrome shell, https://www.neutrik.com/en/product/nc5mbv-b +neutrik xlr b +0 +6 +6 +Connector_Audio +Jack_XLR_Neutrik_NC5MBV-SW_Vertical +B Series, 5 pole male XLR receptacle, switching contacts, grounding: separate ground contact to mating connector shell and front panel, vertical PCB mount, https://www.neutrik.com/en/product/nc5mbv-sw +neutrik xlr b +0 +9 +9 +Connector_Audio +Jack_XLR_Neutrik_NC5MBV_Vertical +B Series, 5 pole male XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, vertical PCB mount, https://www.neutrik.com/en/product/nc5mbv +neutrik xlr b +0 +6 +6 +Connector_Audio +Jack_speakON-6.35mm_Neutrik_NLJ2MDXX-H_Horizontal +speakON Combo, 2 pole combination of speakON socket and 6.35mm (1/4in) jack receptacle, horizontal pcb mount, replaces NLJ2MD-H, https://www.neutrik.com/en/product/nlj2mdxx-h +neutrik speakon combo +0 +2 +2 +Connector_Audio +Jack_speakON-6.35mm_Neutrik_NLJ2MDXX-V_Vertical +speakON Combo, 2 pole combination of speakON socket and 6.35mm (1/4in) jack receptacle, vertical pcb mount, replaces NLJ2MD-V, https://www.neutrik.com/en/product/nlj2mdxx-v +neutrik speakon combo +0 +2 +2 +Connector_Audio +Jack_speakON_Neutrik_NL2MDXX-H-3_Horizontal +speakON Chassis Connectors, 2 pole chassis connector, gray D-size flange, countersunk thru holes, horizontal PCB, replaces NL2MD-H, https://www.neutrik.com/en/product/nl2mdxx-h-3 +neutrik speakon +0 +2 +2 +Connector_Audio +Jack_speakON_Neutrik_NL2MDXX-V_Vertical +speakON Chassis Connectors, 2 pole chassis connector, black D-size flange, countersunk thru holes, vertical PCB mount, replaces NL2MD-V, https://www.neutrik.com/en/product/nl2mdxx-v +neutrik speakon +0 +2 +2 +Connector_Audio +Jack_speakON_Neutrik_NL4MDXX-H-2_Horizontal +speakON Chassis Connectors, 4 pole chassis connector, black D-size flange, mirrored self tapping screw holes (A-screw), horizontal PCB mount, replaces NL4MD-H-2, https://www.neutrik.com/en/product/nl4mdxx-h-2 +neutrik speakon +0 +4 +4 +Connector_Audio +Jack_speakON_Neutrik_NL4MDXX-H-3_Horizontal +speakON Chassis Connectors, 4 pole chassis connector, grey D-size flange, self tapping screw holes (A-screw), horizontal PCB mount, replaces NL4MD-H, NL4MD-H-1, NL4MD-H-3, https://www.neutrik.com/en/product/nl4mdxx-h-3 +neutrik speakon +0 +4 +4 +Connector_Audio +Jack_speakON_Neutrik_NL4MDXX-V-2_Vertical +speakON Chassis Connectors, 4 pole chassis connector, black D-size flange, mirrored self tapping screw holes (A-screw), vertical PCB mount, replaces NL4MD-V-2, https://www.neutrik.com/en/product/nl4mdxx-v-2 +neutrik speakon +0 +4 +4 +Connector_Audio +Jack_speakON_Neutrik_NL4MDXX-V-3_Vertical +speakON Chassis Connectors, 4 pole chassis connector, grey D-size flange, self tapping screw holes (A-screw), vertical PCB mount, replaces NL4MD-V-1, https://www.neutrik.com/en/product/nl4mdxx-v-3 +neutrik speakon +0 +4 +4 +Connector_Audio +Jack_speakON_Neutrik_NL4MDXX-V_Vertical +speakON Chassis Connectors, 4 pole chassis connector, black D-size flange, countersunk thru holes, vertical PCB mount, replaces NL4MD-V, NL4MD-V-R, NL4MD-V-S, https://www.neutrik.com/en/product/nl4mdxx-v +neutrik speakon +0 +4 +4 +Connector_Audio +Jack_speakON_Neutrik_NL8MDXX-V-3_Vertical +speakON Chassis Connectors, 8 pole chassis connector, nickel metal square G-size flange, self tapping screw holes (A-screw), vertical PCB mount, replaces NL8MD-V-1, https://www.neutrik.com/en/product/nl8mdxx-v-3 +neutrik speakon +0 +8 +8 +Connector_Audio +Jack_speakON_Neutrik_NL8MDXX-V_Vertical +speakON Chassis Connectors, 8 pole chassis connector, nickel metal square G-size flange, countersunk thru holes, vertical PCB mount, replaces NL8MD-V, https://www.neutrik.com/en/product/nl8mdxx-v +neutrik speakon +0 +8 +8 +Connector_Audio +Jack_speakON_Neutrik_NLT4MD-V_Vertical +STX Series, 4 pole male chassis connector, metal housing, vertical PCB mount, self tapping screw holes (A-screw), https://www.neutrik.com/en/product/nlt4md-v +neutrik speakon stx +0 +4 +4 +Connector_Audio +MiniXLR-5_Switchcraft_TRAPC_Horizontal +http://www.switchcraft.com/ProductSummary.aspx?Parent=620 http://www.switchcraft.com/Drawings/TRAPC_X-TRASM_X_SERIES_CD.PDF +THT Mini XLR 5Pin right angle +0 +5 +5 +Connector_Audio +Plug_3.5mm_CUI_SP-3541 +4 contacts, 3.5mm audio plug, https://www.cuidevices.com/product/resource/pdf/sp-3541.pdf +3.5mm plug TRRS +0 +4 +4 +Connector_BarrelJack +BarrelJack_CLIFF_FC681465S_SMT_Horizontal +Surface-mount DC Barrel Jack, https://www.cliffuk.co.uk/products/dcconnectors/FC681465S.pdf +Power Jack SMT +0 +4 +3 +Connector_BarrelJack +BarrelJack_CUI_PJ-036AH-SMT_Horizontal +Surface-mount DC Barrel Jack, http://www.cui.com/product/resource/pj-036ah-smt.pdf +Power Jack SMT +0 +3 +3 +Connector_BarrelJack +BarrelJack_CUI_PJ-063AH_Horizontal +Barrel Jack, 2.0mm ID, 5.5mm OD, 24V, 8A, no switch, https://www.cui.com/product/resource/pj-063ah.pdf +barrel jack cui dc power +0 +4 +3 +Connector_BarrelJack +BarrelJack_CUI_PJ-063AH_Horizontal_CircularHoles +Barrel Jack, 2.0mm ID, 5.5mm OD, 24V, 8A, no switch, https://www.cui.com/product/resource/pj-063ah.pdf +barrel jack cui dc power +0 +4 +3 +Connector_BarrelJack +BarrelJack_CUI_PJ-079BH_Horizontal +Barrel Jack, 2.5mm ID, 5.5mm OD, 24V, 5A, switch, https://www.cui.com/product/resource/pj-079bh.pdf +barrel jack cui dc power +0 +5 +4 +Connector_BarrelJack +BarrelJack_CUI_PJ-102AH_Horizontal +Thin-pin DC Barrel Jack, https://cdn-shop.adafruit.com/datasheets/21mmdcjackDatasheet.pdf +Power Jack +0 +3 +3 +Connector_BarrelJack +BarrelJack_GCT_DCJ200-10-A_Horizontal +Barrel jack connector (5.5 mm outer diameter, 2.05 inner diameter ), https://gct.co/files/drawings/dcj200-10.pdf +connector barrel jack +0 +3 +3 +Connector_BarrelJack +BarrelJack_Horizontal +DC Barrel Jack +Power Jack +0 +3 +3 +Connector_BarrelJack +BarrelJack_Kycon_KLDX-0202-xC_Horizontal +DC Barrel Jack 2mm or 2.5mm center pin, https://www.kycon.com/Pub_Eng_Draw/KLDX-0202-AC%20&%20BC.pdf +power jack 2mm 2.5mm KLDX-0202-BC KLDX-0202-AC +0 +3 +3 +Connector_BarrelJack +BarrelJack_SwitchcraftConxall_RAPC10U_Horizontal +DC Power Jack, 13A, 24V, Panel Mount,Through-hole, https://www.switchcraft.com/Drawings/RAPC10U_CD.pdf +barreljack switchcraftconxall dc power +0 +2 +2 +Connector_BarrelJack +BarrelJack_Wuerth_694102107102_1.0x3.9mm +Wuerth Elektronik barrel jack connector, SMD, 3.9mm OD, 1.0mm ID, with switch, 18V, 5A, dimensions: 9.3 x 8 x 5.3 mm (L x W x H), datasheet: https://www.farnell.com/datasheets/2130962.pdf +barrel jack Wuerth Elektronik 694102107102 +0 +4 +3 +Connector_BarrelJack +BarrelJack_Wuerth_694103107102_1.35x3.9mm +Wuerth Elektronik barrel jack connector, SMD, 3.9mm OD, 1.35mm ID, with switch, 18V, 5A, dimensions: 9.3 x 8 x 5.3 mm (L x W x H), datasheet: https://www.we-online.com/components/products/datasheet/694103107102.pdf +barrel jack Wuerth Elektronik 694103107102 +0 +4 +3 +Connector_BarrelJack +BarrelJack_Wuerth_694106106102_2.0x5.5mm +Wuerth Elektronik 694106106102 Barrel Jack, 2.0x5.5mm, https://www.we-online.com/components/products/datasheet/694106106102.pdf +barrel jack Wuerth Elektronik 694106106102 +0 +4 +3 +Connector_BarrelJack +BarrelJack_Wuerth_694108106102_2.5x5.5mm +Wuerth Elektronik 694108106102 Barrel Jack, 2.5x5.5mm, https://www.we-online.com/components/products/datasheet/694106106102.pdf +barrel jack Wuerth Elektronik 694108106102 +0 +4 +3 +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-SIM_microSD-microSIM_Molex_104168-1620 +microSD and microSIM connector, https://www.molex.com/pdm_docs/sd/1041681620_sd.pdf +Combo Connector microSD and microSIM +0 +25 +18 +Connector_Card +SD_Card_Device_16mm_SlotDepth +SD card device PCB layout, contacts and mechanicalm, 16mm slot depth. Manufacture with PCB thickness of 1.4mm, http://www.convict.lu/pdf/ProdManualSDCardv1.9.pdf +SD Card +0 +9 +9 +Connector_Card +SD_Hirose_DM1AA_SF_PEJ82 +SD, SMD, top-mount, push-push (https://www.hirose.com/product/document?clcode=CL0609-0004-8-82&productname=DM1AA-SF-PEJ(82)&series=DM1&documenttype=2DDrawing&lang=en&documentid=0000915301) +SD card connector +0 +16 +13 +Connector_Card +SD_Kyocera_145638009211859+ +SD Card Connector, Normal Type, Outer Tail, Without Ejector (https://global.kyocera.com/prdct/electro/product/pdf/5638.pdf) +sd card smt +0 +13 +13 +Connector_Card +SD_Kyocera_145638009511859+ +SD Card Connector, Normal Type, Outer Tail, Spring Eject Type (https://global.kyocera.com/prdct/electro/product/pdf/5638.pdf) +sd card smt +0 +13 +13 +Connector_Card +SD_Kyocera_145638109211859+ +SD Card Connector, Reverse Type, Outer Tail, Without Ejector (https://global.kyocera.com/prdct/electro/product/pdf/5638.pdf) +sd card smt +0 +13 +13 +Connector_Card +SD_Kyocera_145638109511859+ +SD Card Connector, Reverse Type, Outer Tail, Spring Eject Type (https://global.kyocera.com/prdct/electro/product/pdf/5638.pdf) +sd card smt +0 +13 +13 +Connector_Card +SD_TE_2041021 +SD card connector, top mount, SMT (http://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F2041021%7FB%7Fpdf%7FEnglish%7FENG_CD_2041021_B_C_2041021_B.pdf%7F2041021-4) +sd card +0 +15 +12 +Connector_Card +microSD_HC_Hirose_DM3AT-SF-PEJM5 +Micro SD, SMD, right-angle, push-pull (https://www.hirose.com/product/en/download_file/key_name/DM3AT-SF-PEJM5/category/Drawing%20(2D)/doc_file_id/44099/?file_category_id=6&item_id=06090031000&is_series=) +Micro SD +0 +14 +11 +Connector_Card +microSD_HC_Hirose_DM3BT-DSF-PEJS +Micro SD, SMD, reverse on-board, right-angle, push-pull (https://www.hirose.com/product/en/download_file/key_name/DM3BT-DSF-PEJS/category/Drawing%20(2D)/doc_file_id/44097/?file_category_id=6&item_id=06090029900&is_series=) +Micro SD +0 +16 +11 +Connector_Card +microSD_HC_Hirose_DM3D-SF +Micro SD, SMD, right-angle, push-pull (https://media.digikey.com/PDF/Data%20Sheets/Hirose%20PDFs/DM3D-SF.pdf) +Micro SD +0 +14 +11 +Connector_Card +microSD_HC_Molex_47219-2001 +1.10mm Pitch microSD Card Connector, Hinge Type, https://www.molex.com/pdm_docs/sd/472192001_sd.pdf +Micro SD +0 +12 +9 +Connector_Card +microSD_HC_Molex_104031-0811 +1.10mm Pitch microSD Memory Card Connector, Surface Mount, Push-Pull Type, 1.42mm Height, with Detect Switch (https://www.molex.com/pdm_docs/sd/1040310811_sd.pdf) +microSD SD molex +0 +14 +11 +Connector_Card +microSD_HC_Wuerth_693072010801 +http://katalog.we-online.de/em/datasheet/693072010801.pdf +Micro SD Wuerth Wurth Würth +0 +12 +9 +Connector_Card +microSIM_JAE_SF53S006VCBR2000 +micro SIM card connector, 6pos., 1.45mm height, Push-pull type, https://www.jae.com/direct/topics/topics_file_download/topics_id=68883&ext_no=06 +microSIM GSM Card +0 +14 +7 +Connector_Card +nanoSIM_GCT_SIM8060-6-0-14-00 +hinged nano SIM, without card detect, https://gct.co/files/drawings/sim8060.pdf +nano SIM +0 +10 +7 +Connector_Card +nanoSIM_GCT_SIM8060-6-1-14-00 +hinged nano SIM, with card detect, https://gct.co/files/drawings/sim8060.pdf +nano SIM +0 +10 +8 +Connector_Card +nanoSIM_Hinged_CUI_NSIM-2-C +Hinged nano SIM holder, 6 pin, with normally open card detection switch to GND: https://www.cuidevices.com/product/resource/nsim-2-c.pdf +SIM holder nano 4FF +0 +10 +8 +Connector_Coaxial +BNC_Amphenol_031-5539_Vertical +BNC coaxial connector vertical, Amphenol 031-71059, https://www.amphenolrf.com/library/download/link/link_id/594427/parent/031-5539/ +BNC Amphenol Vertical +0 +4 +2 +Connector_Coaxial +BNC_Amphenol_031-6575_Horizontal +dual independently isolated BNC plug, https://www.amphenolrf.com/library/download/link/link_id/594289/parent/031-6575/ +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 +LEMO-EPG.00.302.NLN +Triaxial LEMO connector PCB elbow socket https://web.lemo.com/ged_drw/CD-EPG.00.302.NLN-01-en.pdf +LEMO THT Female Jack Horizontal +0 +6 +3 +Connector_Coaxial +LEMO-EPL.00.250.NTN +Coaxial LEMO connector PCB elbow socket https://web.lemo.com/ged_drw/CD-EPL.00.250.NTN-01-en.pdf +LEMO THT Female Jack Horizontal +0 +5 +2 +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/593645/parent/901-143/ +SMA THT Female Jack Horizontal +0 +5 +2 +Connector_Coaxial +SMA_Amphenol_901-144_Vertical +https://www.amphenolrf.com/library/download/link/link_id/593640/parent/901-144/ +SMA THT Female Jack Vertical +0 +5 +2 +Connector_Coaxial +SMA_Amphenol_132134-10_Vertical +https://www.amphenolrf.com/library/download/link/link_id/596219/parent/132134-10/ +SMA SMD Female Jack Vertical +0 +3 +2 +Connector_Coaxial +SMA_Amphenol_132134-11_Vertical +https://www.amphenolrf.com/library/download/link/link_id/596215/parent/132134-11/ +SMA THT Female Jack Vertical ExtendedLegs +0 +5 +2 +Connector_Coaxial +SMA_Amphenol_132134-14_Vertical +https://www.amphenolrf.com/library/download/link/link_id/596217/parent/132134-14/ +SMA THT Female Jack Vertical ExtendedLegs +0 +5 +2 +Connector_Coaxial +SMA_Amphenol_132134-16_Vertical +https://www.amphenolrf.com/library/download/link/link_id/598157/parent/132134-16/ +SMA THT Female Jack Vertical ExtendedLegs +0 +5 +2 +Connector_Coaxial +SMA_Amphenol_132134_Vertical +https://www.amphenolrf.com/library/download/link/link_id/593003/parent/132134/ +SMA THT Female Jack Vertical ExtendedLegs +0 +5 +2 +Connector_Coaxial +SMA_Amphenol_132203-12_Horizontal +https://www.amphenolrf.com/library/download/link/link_id/596063/parent/132203-12/ +SMA THT Female Jack Horizontal +0 +5 +2 +Connector_Coaxial +SMA_Amphenol_132289_EdgeMount +https://www.amphenolrf.com/library/download/link/link_id/595984/parent/132289/ +SMA +0 +5 +2 +Connector_Coaxial +SMA_Amphenol_132291-12_Vertical +https://www.amphenolrf.com/library/download/link/link_id/595982/parent/132291-12/ +SMA THT Female Jack Vertical Bulkhead +0 +5 +2 +Connector_Coaxial +SMA_Amphenol_132291_Vertical +https://www.amphenolrf.com/library/download/link/link_id/595983/parent/132291/ +SMA THT Female Jack Vertical Bulkhead +0 +5 +2 +Connector_Coaxial +SMA_BAT_Wireless_BWSMA-KWE-Z001 +BAT Wireless BWSMA-KWE-Z00 https://www.lcsc.com/datasheet/lcsc_datasheet_2310171703_BAT-WIRELESS-BWSMA-KWE-Z001_C496551.pdf +SMA THT Female Jack Horizontal +0 +5 +2 +Connector_Coaxial +SMA_Molex_73251-1153_EdgeMount_Horizontal +Molex SMA RF Connectors, Edge Mount, https://tools.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 +7 +2 +Connector_Coaxial +SMA_Molex_73251-2200_Horizontal +https://tools.molex.com/pdm_docs/sd/732512200_sd.pdf +SMA THT Female Jack Horizontal +0 +5 +2 +Connector_Coaxial +SMA_Samtec_SMA-J-P-H-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_60312102114405_Vertical +Würth WR-SMA PCB SMT Jack, Vertical (https://www.we-online.com/components/products/datasheet/60312102114405.pdf) +Coaxial Connector 50 ohms Female +0 +3 +2 +Connector_Coaxial +SMA_Wurth_60312002114503_Vertical +https://www.we-online.de/katalog/datasheet/60312002114503.pdf +SMA THT Female Jack Vertical ExtendedLegs +0 +5 +2 +Connector_Coaxial +SMB_Jack_Vertical +SMB pcb mounting jack +SMB Jack Striaght +0 +5 +2 +Connector_Coaxial +U.FL_Hirose_U.FL-R-SMT-1_Vertical +Hirose U.FL Coaxial https://www.hirose.com/product/en/products/U.FL/U.FL-R-SMT-1%2810%29/ +Hirose U.FL Coaxial +0 +3 +2 +Connector_Coaxial +U.FL_Molex_MCRF_73412-0110_Vertical +Molex Microcoaxial RF Connectors (MCRF), mates Hirose U.FL, (http://www.molex.com/pdm_docs/sd/734120110_sd.pdf) +mcrf hirose ufl u.fl microcoaxial +0 +4 +2 +Connector_Coaxial +WR-MMCX_Wuerth_66012102111404_Vertical +Würth WR-MMCX PCB SMT Jack, Vertical (https://www.we-online.com/components/products/datasheet/66012102111404.pdf) +Coaxial Connector 50 ohms Female +0 +3 +2 +Connector_Coaxial +WR-MMCX_Wuerth_66011102111302_Horizontal +Würth WR-MMCX PCB SMT Jack, Horizontal (https://www.we-online.com/components/products/datasheet/66011102111302.pdf) +Coaxial Connector 50 ohms Female +0 +7 +2 +Connector_DIN +DIN41612_B2_2x8_Female_Vertical_THT +DIN41612 connector, type B/2, Vertical, 2 rows 16 pins wide, https://b2b.harting.com/files/livebooks/en/PRD0200000100063/downloads/livebook.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://b2b.harting.com/files/livebooks/en/PRD0200000100063/downloads/livebook.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://b2b.harting.com/files/livebooks/en/PRD0200000100063/downloads/livebook.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://b2b.harting.com/files/livebooks/en/PRD0200000100063/downloads/livebook.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://b2b.harting.com/files/livebooks/en/PRD0200000100063/downloads/livebook.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://b2b.harting.com/files/livebooks/en/PRD0200000100063/downloads/livebook.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://b2b.harting.com/files/livebooks/en/PRD0200000100063/downloads/livebook.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://b2b.harting.com/files/livebooks/en/PRD0200000100063/downloads/livebook.pdf +DIN 41612 IEC 60603 B/3 +0 +20 +20 +Connector_DIN +DIN41612_B_1x32_Female_Vertical_THT +DIN41612 connector, type B, Vertical, 1 row 32 pins wide, https://b2b.harting.com/files/livebooks/en/PRD0200000100063/downloads/livebook.pdf +DIN 41612 IEC 60603 B +0 +32 +32 +Connector_DIN +DIN41612_B_1x32_Male_Horizontal_THT +DIN41612 connector, type B, Horizontal, 1 row 32 pins wide, https://b2b.harting.com/files/livebooks/en/PRD0200000100063/downloads/livebook.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://b2b.harting.com/files/livebooks/en/PRD0200000100063/downloads/livebook.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://b2b.harting.com/files/livebooks/en/PRD0200000100063/downloads/livebook.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://b2b.harting.com/files/livebooks/en/PRD0200000100063/downloads/livebook.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://b2b.harting.com/files/livebooks/en/PRD0200000100063/downloads/livebook.pdf +DIN 41612 IEC 60603 B +0 +64 +64 +Connector_DIN +DIN41612_C2_2x16_Female_Vertical_THT +DIN41612 connector, type C/2, Vertical, 2 rows 16 pins wide, https://b2b.harting.com/files/livebooks/en/PRD0200000100063/downloads/livebook.pdf +DIN 41612 IEC 60603 C/2 +0 +32 +32 +Connector_DIN +DIN41612_C2_2x16_Male_Horizontal_THT +DIN41612 connector, type C/2, Horizontal, 2 rows 16 pins wide, https://b2b.harting.com/files/livebooks/en/PRD0200000100063/downloads/livebook.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://b2b.harting.com/files/livebooks/en/PRD0200000100063/downloads/livebook.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://b2b.harting.com/files/livebooks/en/PRD0200000100063/downloads/livebook.pdf +DIN 41612 IEC 60603 C/2 +0 +48 +48 +Connector_DIN +DIN41612_C3_2x10_Female_Vertical_THT +DIN41612 connector, type C/3, Vertical, 2 rows 10 pins wide, https://b2b.harting.com/files/livebooks/en/PRD0200000100063/downloads/livebook.pdf +DIN 41612 IEC 60603 C/3 +0 +20 +20 +Connector_DIN +DIN41612_C3_2x10_Male_Horizontal_THT +DIN41612 connector, type C/3, Horizontal, 2 rows 10 pins wide, https://b2b.harting.com/files/livebooks/en/PRD0200000100063/downloads/livebook.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://b2b.harting.com/files/livebooks/en/PRD0200000100063/downloads/livebook.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://b2b.harting.com/files/livebooks/en/PRD0200000100063/downloads/livebook.pdf +DIN 41612 IEC 60603 C/3 +0 +30 +30 +Connector_DIN +DIN41612_C_1x32_Female_Vertical_THT +DIN41612 connector, type C, Vertical, 1 row 32 pins wide, https://b2b.harting.com/files/livebooks/en/PRD0200000100063/downloads/livebook.pdf +DIN 41612 IEC 60603 C +0 +32 +32 +Connector_DIN +DIN41612_C_1x32_Male_Horizontal_THT +DIN41612 connector, type C, Horizontal, 1 row 32 pins wide, https://b2b.harting.com/files/livebooks/en/PRD0200000100063/downloads/livebook.pdf +DIN 41612 IEC 60603 C +0 +32 +32 +Connector_DIN +DIN41612_C_2x16_Female_Vertical_THT +DIN41612 connector, type C, Vertical, 2 rows 32 pins wide, https://b2b.harting.com/files/livebooks/en/PRD0200000100063/downloads/livebook.pdf +DIN 41612 IEC 60603 C +0 +32 +32 +Connector_DIN +DIN41612_C_2x16_Male_Horizontal_THT +DIN41612 connector, type C, Horizontal, 2 rows 32 pins wide, https://b2b.harting.com/files/livebooks/en/PRD0200000100063/downloads/livebook.pdf +DIN 41612 IEC 60603 C +0 +32 +32 +Connector_DIN +DIN41612_C_2x32_Female_Vertical_THT +DIN41612 connector, type C, Vertical, 2 rows 32 pins wide, https://b2b.harting.com/files/livebooks/en/PRD0200000100063/downloads/livebook.pdf +DIN 41612 IEC 60603 C +0 +64 +64 +Connector_DIN +DIN41612_C_2x32_Male_Horizontal_THT +DIN41612 connector, type C, Horizontal, 2 rows 32 pins wide, https://b2b.harting.com/files/livebooks/en/PRD0200000100063/downloads/livebook.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://b2b.harting.com/files/livebooks/en/PRD0200000100063/downloads/livebook.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://b2b.harting.com/files/livebooks/en/PRD0200000100063/downloads/livebook.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://b2b.harting.com/files/livebooks/en/PRD0200000100063/downloads/livebook.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://b2b.harting.com/files/livebooks/en/PRD0200000100063/downloads/livebook.pdf +DIN 41612 IEC 60603 C +0 +96 +96 +Connector_DIN +DIN41612_D_2x8_Female_Vertical_THT +DIN41612 connector, type D, Vertical, 2 rows 32 pins wide, https://b2b.harting.com/files/livebooks/en/PRD0200000100063/downloads/livebook.pdf +DIN 41612 IEC 60603 D +0 +16 +16 +Connector_DIN +DIN41612_D_2x8_Male_Horizontal_THT +DIN41612 connector, type D, Horizontal, 2 rows 32 pins wide, https://b2b.harting.com/files/livebooks/en/PRD0200000100063/downloads/livebook.pdf +DIN 41612 IEC 60603 D +0 +16 +16 +Connector_DIN +DIN41612_D_2x16_Female_Vertical_THT +DIN41612 connector, type D, Vertical, 2 rows 32 pins wide, https://b2b.harting.com/files/livebooks/en/PRD0200000100063/downloads/livebook.pdf +DIN 41612 IEC 60603 D +0 +32 +32 +Connector_DIN +DIN41612_D_2x16_Male_Horizontal_THT +DIN41612 connector, type D, Horizontal, 2 rows 32 pins wide, https://b2b.harting.com/files/livebooks/en/PRD0200000100063/downloads/livebook.pdf +DIN 41612 IEC 60603 D +0 +32 +32 +Connector_DIN +DIN41612_E_2x16_Female_Vertical_THT +DIN41612 connector, type E, Vertical, 2 rows 32 pins wide, https://b2b.harting.com/files/livebooks/en/PRD0200000100063/downloads/livebook.pdf +DIN 41612 IEC 60603 E +0 +32 +32 +Connector_DIN +DIN41612_E_2x16_Male_Horizontal_THT +DIN41612 connector, type E, Horizontal, 2 rows 32 pins wide, https://b2b.harting.com/files/livebooks/en/PRD0200000100063/downloads/livebook.pdf +DIN 41612 IEC 60603 E +0 +32 +32 +Connector_DIN +DIN41612_E_2x16_RowsAC_Female_Vertical_THT +DIN41612 connector, type E, Vertical, 2 rows 32 pins wide, https://b2b.harting.com/files/livebooks/en/PRD0200000100063/downloads/livebook.pdf +DIN 41612 IEC 60603 E +0 +32 +32 +Connector_DIN +DIN41612_E_2x16_RowsAC_Male_Horizontal_THT +DIN41612 connector, type E, Horizontal, 2 rows 32 pins wide, https://b2b.harting.com/files/livebooks/en/PRD0200000100063/downloads/livebook.pdf +DIN 41612 IEC 60603 E +0 +32 +32 +Connector_DIN +DIN41612_E_3x16_Female_Vertical_THT +DIN41612 connector, type E, Vertical, 3 rows 32 pins wide, https://b2b.harting.com/files/livebooks/en/PRD0200000100063/downloads/livebook.pdf +DIN 41612 IEC 60603 E +0 +48 +48 +Connector_DIN +DIN41612_E_3x16_Male_Horizontal_THT +DIN41612 connector, type E, Horizontal, 3 rows 32 pins wide, https://b2b.harting.com/files/livebooks/en/PRD0200000100063/downloads/livebook.pdf +DIN 41612 IEC 60603 E +0 +48 +48 +Connector_DIN +DIN41612_F_2x16_Female_Vertical_THT +DIN41612 connector, type F, Vertical, 2 rows 32 pins wide, https://b2b.harting.com/files/livebooks/en/PRD0200000100063/downloads/livebook.pdf +DIN 41612 IEC 60603 F +0 +32 +32 +Connector_DIN +DIN41612_F_2x16_Male_Horizontal_THT +DIN41612 connector, type F, Horizontal, 2 rows 32 pins wide, https://b2b.harting.com/files/livebooks/en/PRD0200000100063/downloads/livebook.pdf +DIN 41612 IEC 60603 F +0 +32 +32 +Connector_DIN +DIN41612_F_2x16_RowsZD_Female_Vertical_THT +DIN41612 connector, type F, Vertical, 2 rows 32 pins wide, https://b2b.harting.com/files/livebooks/en/PRD0200000100063/downloads/livebook.pdf +DIN 41612 IEC 60603 F +0 +32 +32 +Connector_DIN +DIN41612_F_2x16_RowsZD_Male_Horizontal_THT +DIN41612 connector, type F, Horizontal, 2 rows 32 pins wide, https://b2b.harting.com/files/livebooks/en/PRD0200000100063/downloads/livebook.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://b2b.harting.com/files/livebooks/en/PRD0200000100063/downloads/livebook.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://b2b.harting.com/files/livebooks/en/PRD0200000100063/downloads/livebook.pdf +DIN 41612 IEC 60603 F +0 +48 +48 +Connector_DIN +DIN41612_M-flat_3x8+8_Female_Vertical_THT +DIN41612 connector, type M-flat, Vertical, 3 rows 8 pins wide, https://b2b.harting.com/files/livebooks/en/PRD0200000100063/downloads/livebook.pdf +DIN 41612 IEC 60603 M-flat +0 +24 +24 +Connector_DIN +DIN41612_M-flat_3x14+6_Female_Vertical_THT +DIN41612 connector, type M-flat, Vertical, 3 rows 14 pins wide, https://b2b.harting.com/files/livebooks/en/PRD0200000100063/downloads/livebook.pdf +DIN 41612 IEC 60603 M-flat +0 +42 +42 +Connector_DIN +DIN41612_M-flat_3x20+4_Female_Vertical_THT +DIN41612 connector, type M-flat, Vertical, 3 rows 20 pins wide, https://b2b.harting.com/files/livebooks/en/PRD0200000100063/downloads/livebook.pdf +DIN 41612 IEC 60603 M-flat +0 +60 +60 +Connector_DIN +DIN41612_M-flat_3x26+2_Female_Vertical_THT +DIN41612 connector, type M-flat, Vertical, 3 rows 26 pins wide, https://b2b.harting.com/files/livebooks/en/PRD0200000100063/downloads/livebook.pdf +DIN 41612 IEC 60603 M-flat +0 +78 +78 +Connector_DIN +DIN41612_M-invers_3x2+10_Female_Horizontal_THT +DIN41612 connector, type M-invers, Horizontal, 3 rows 2 pins wide, https://b2b.harting.com/files/livebooks/en/PRD0200000100063/downloads/livebook.pdf +DIN 41612 IEC 60603 M-invers +0 +6 +6 +Connector_DIN +DIN41612_M-invers_3x2+10_Male_Vertical_THT +DIN41612 connector, type M-invers, Vertical, 3 rows 2 pins wide, https://b2b.harting.com/files/livebooks/en/PRD0200000100063/downloads/livebook.pdf +DIN 41612 IEC 60603 M-invers +0 +6 +6 +Connector_DIN +DIN41612_M-invers_3x8+8_Female_Horizontal_THT +DIN41612 connector, type M-invers, Horizontal, 3 rows 8 pins wide, https://b2b.harting.com/files/livebooks/en/PRD0200000100063/downloads/livebook.pdf +DIN 41612 IEC 60603 M-invers +0 +24 +24 +Connector_DIN +DIN41612_M-invers_3x8+8_Male_Vertical_THT +DIN41612 connector, type M-invers, Vertical, 3 rows 8 pins wide, https://b2b.harting.com/files/livebooks/en/PRD0200000100063/downloads/livebook.pdf +DIN 41612 IEC 60603 M-invers +0 +24 +24 +Connector_DIN +DIN41612_M-invers_3x14+6_Female_Horizontal_THT +DIN41612 connector, type M-invers, Horizontal, 3 rows 14 pins wide, https://b2b.harting.com/files/livebooks/en/PRD0200000100063/downloads/livebook.pdf +DIN 41612 IEC 60603 M-invers +0 +42 +42 +Connector_DIN +DIN41612_M-invers_3x14+6_Male_Vertical_THT +DIN41612 connector, type M-invers, Vertical, 3 rows 14 pins wide, https://b2b.harting.com/files/livebooks/en/PRD0200000100063/downloads/livebook.pdf +DIN 41612 IEC 60603 M-invers +0 +42 +42 +Connector_DIN +DIN41612_M-invers_3x20+4_Female_Horizontal_THT +DIN41612 connector, type M-invers, Horizontal, 3 rows 20 pins wide, https://b2b.harting.com/files/livebooks/en/PRD0200000100063/downloads/livebook.pdf +DIN 41612 IEC 60603 M-invers +0 +60 +60 +Connector_DIN +DIN41612_M-invers_3x20+4_Male_Vertical_THT +DIN41612 connector, type M-invers, Vertical, 3 rows 20 pins wide, https://b2b.harting.com/files/livebooks/en/PRD0200000100063/downloads/livebook.pdf +DIN 41612 IEC 60603 M-invers +0 +60 +60 +Connector_DIN +DIN41612_M-invers_3x26+2_Female_Horizontal_THT +DIN41612 connector, type M-invers, Horizontal, 3 rows 26 pins wide, https://b2b.harting.com/files/livebooks/en/PRD0200000100063/downloads/livebook.pdf +DIN 41612 IEC 60603 M-invers +0 +78 +78 +Connector_DIN +DIN41612_M-invers_3x26+2_Male_Vertical_THT +DIN41612 connector, type M-invers, Vertical, 3 rows 26 pins wide, https://b2b.harting.com/files/livebooks/en/PRD0200000100063/downloads/livebook.pdf +DIN 41612 IEC 60603 M-invers +0 +78 +78 +Connector_DIN +DIN41612_M_3x8+8_Female_Vertical_THT +DIN41612 connector, type M, Vertical, 3 rows 8 pins wide, https://b2b.harting.com/files/livebooks/en/PRD0200000100063/downloads/livebook.pdf +DIN 41612 IEC 60603 M +0 +24 +24 +Connector_DIN +DIN41612_M_3x8+8_Male_Horizontal_THT +DIN41612 connector, type M, Horizontal, 3 rows 8 pins wide, https://b2b.harting.com/files/livebooks/en/PRD0200000100063/downloads/livebook.pdf +DIN 41612 IEC 60603 M +0 +24 +24 +Connector_DIN +DIN41612_M_3x14+6_Female_Vertical_THT +DIN41612 connector, type M, Vertical, 3 rows 14 pins wide, https://b2b.harting.com/files/livebooks/en/PRD0200000100063/downloads/livebook.pdf +DIN 41612 IEC 60603 M +0 +42 +42 +Connector_DIN +DIN41612_M_3x14+6_Male_Horizontal_THT +DIN41612 connector, type M, Horizontal, 3 rows 14 pins wide, https://b2b.harting.com/files/livebooks/en/PRD0200000100063/downloads/livebook.pdf +DIN 41612 IEC 60603 M +0 +42 +42 +Connector_DIN +DIN41612_M_3x20+4_Female_Vertical_THT +DIN41612 connector, type M, Vertical, 3 rows 20 pins wide, https://b2b.harting.com/files/livebooks/en/PRD0200000100063/downloads/livebook.pdf +DIN 41612 IEC 60603 M +0 +60 +60 +Connector_DIN +DIN41612_M_3x20+4_Male_Horizontal_THT +DIN41612 connector, type M, Horizontal, 3 rows 20 pins wide, https://b2b.harting.com/files/livebooks/en/PRD0200000100063/downloads/livebook.pdf +DIN 41612 IEC 60603 M +0 +60 +60 +Connector_DIN +DIN41612_M_3x26+2_Female_Vertical_THT +DIN41612 connector, type M, Vertical, 3 rows 26 pins wide, https://b2b.harting.com/files/livebooks/en/PRD0200000100063/downloads/livebook.pdf +DIN 41612 IEC 60603 M +0 +78 +78 +Connector_DIN +DIN41612_M_3x26+2_Male_Horizontal_THT +DIN41612 connector, type M, Horizontal, 3 rows 26 pins wide, https://b2b.harting.com/files/livebooks/en/PRD0200000100063/downloads/livebook.pdf +DIN 41612 IEC 60603 M +0 +78 +78 +Connector_DIN +DIN41612_Q2_2x16_Female_Horizontal_THT +DIN41612 connector, type Q/2, Horizontal, 2 rows 16 pins wide, https://b2b.harting.com/files/livebooks/en/PRD0200000100063/downloads/livebook.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://b2b.harting.com/files/livebooks/en/PRD0200000100063/downloads/livebook.pdf +DIN 41612 IEC 60603 Q/2 +0 +32 +32 +Connector_DIN +DIN41612_Q3_2x10_Female_Horizontal_THT +DIN41612 connector, type Q/3, Horizontal, 2 rows 10 pins wide, https://b2b.harting.com/files/livebooks/en/PRD0200000100063/downloads/livebook.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://b2b.harting.com/files/livebooks/en/PRD0200000100063/downloads/livebook.pdf +DIN 41612 IEC 60603 Q/3 +0 +20 +20 +Connector_DIN +DIN41612_Q_2x32_Female_Horizontal_THT +DIN41612 connector, type Q, Horizontal, 2 rows 32 pins wide, https://b2b.harting.com/files/livebooks/en/PRD0200000100063/downloads/livebook.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://b2b.harting.com/files/livebooks/en/PRD0200000100063/downloads/livebook.pdf +DIN 41612 IEC 60603 Q +0 +64 +64 +Connector_DIN +DIN41612_R2_2x16_Female_Horizontal_THT +DIN41612 connector, type R/2, Horizontal, 2 rows 16 pins wide, https://b2b.harting.com/files/livebooks/en/PRD0200000100063/downloads/livebook.pdf +DIN 41612 IEC 60603 R/2 +0 +32 +32 +Connector_DIN +DIN41612_R2_2x16_Male_Vertical_THT +DIN41612 connector, type R/2, Vertical, 2 rows 16 pins wide, https://b2b.harting.com/files/livebooks/en/PRD0200000100063/downloads/livebook.pdf +DIN 41612 IEC 60603 R/2 +0 +32 +32 +Connector_DIN +DIN41612_R2_3x16_Female_Horizontal_THT +DIN41612 connector, type R/2, Horizontal, 3 rows 16 pins wide, https://b2b.harting.com/files/livebooks/en/PRD0200000100063/downloads/livebook.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://b2b.harting.com/files/livebooks/en/PRD0200000100063/downloads/livebook.pdf +DIN 41612 IEC 60603 R/2 +0 +48 +48 +Connector_DIN +DIN41612_R3_2x10_Female_Horizontal_THT +DIN41612 connector, type R/3, Horizontal, 2 rows 10 pins wide, https://b2b.harting.com/files/livebooks/en/PRD0200000100063/downloads/livebook.pdf +DIN 41612 IEC 60603 R/3 +0 +20 +20 +Connector_DIN +DIN41612_R3_2x10_Male_Vertical_THT +DIN41612 connector, type R/3, Vertical, 2 rows 10 pins wide, https://b2b.harting.com/files/livebooks/en/PRD0200000100063/downloads/livebook.pdf +DIN 41612 IEC 60603 R/3 +0 +20 +20 +Connector_DIN +DIN41612_R3_3x10_Female_Horizontal_THT +DIN41612 connector, type R/3, Horizontal, 3 rows 10 pins wide, https://b2b.harting.com/files/livebooks/en/PRD0200000100063/downloads/livebook.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://b2b.harting.com/files/livebooks/en/PRD0200000100063/downloads/livebook.pdf +DIN 41612 IEC 60603 R/3 +0 +30 +30 +Connector_DIN +DIN41612_R_1x32_Female_Horizontal_THT +DIN41612 connector, type R, Horizontal, 1 row 32 pins wide, https://b2b.harting.com/files/livebooks/en/PRD0200000100063/downloads/livebook.pdf +DIN 41612 IEC 60603 R +0 +32 +32 +Connector_DIN +DIN41612_R_1x32_Male_Vertical_THT +DIN41612 connector, type R, Vertical, 1 row 32 pins wide, https://b2b.harting.com/files/livebooks/en/PRD0200000100063/downloads/livebook.pdf +DIN 41612 IEC 60603 R +0 +32 +32 +Connector_DIN +DIN41612_R_2x16_Female_Horizontal_THT +DIN41612 connector, type R, Horizontal, 2 rows 32 pins wide, https://b2b.harting.com/files/livebooks/en/PRD0200000100063/downloads/livebook.pdf +DIN 41612 IEC 60603 R +0 +32 +32 +Connector_DIN +DIN41612_R_2x16_Male_Vertical_THT +DIN41612 connector, type R, Vertical, 2 rows 32 pins wide, https://b2b.harting.com/files/livebooks/en/PRD0200000100063/downloads/livebook.pdf +DIN 41612 IEC 60603 R +0 +32 +32 +Connector_DIN +DIN41612_R_2x32_Female_Horizontal_THT +DIN41612 connector, type R, Horizontal, 2 rows 32 pins wide, https://b2b.harting.com/files/livebooks/en/PRD0200000100063/downloads/livebook.pdf +DIN 41612 IEC 60603 R +0 +64 +64 +Connector_DIN +DIN41612_R_2x32_Male_Vertical_THT +DIN41612 connector, type R, Vertical, 2 rows 32 pins wide, https://b2b.harting.com/files/livebooks/en/PRD0200000100063/downloads/livebook.pdf +DIN 41612 IEC 60603 R +0 +64 +64 +Connector_DIN +DIN41612_R_3x16_Female_Horizontal_THT +DIN41612 connector, type R, Horizontal, 3 rows 32 pins wide, https://b2b.harting.com/files/livebooks/en/PRD0200000100063/downloads/livebook.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://b2b.harting.com/files/livebooks/en/PRD0200000100063/downloads/livebook.pdf +DIN 41612 IEC 60603 R +0 +48 +48 +Connector_DIN +DIN41612_R_3x32_Female_Horizontal_THT +DIN41612 connector, type R, Horizontal, 3 rows 32 pins wide, https://b2b.harting.com/files/livebooks/en/PRD0200000100063/downloads/livebook.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://b2b.harting.com/files/livebooks/en/PRD0200000100063/downloads/livebook.pdf +DIN 41612 IEC 60603 R +0 +96 +96 +Connector_Dsub +DSUB-9_Pins_EdgeMount_P2.77mm +9-pin D-Sub connector, solder-cups edge-mounted, pins (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 pins x-pin-pitch 2.77mm mounting holes distance 25mm +0 +9 +9 +Connector_Dsub +DSUB-9_Pins_Horizontal_P2.77x2.54mm_EdgePinOffset9.40mm +9-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, pins (male), pitch 2.77x2.54mm, pin-PCB-offset 9.4mm, see https://docs.rs-online.com/02d6/0900766b81585df2.pdf +9-pin D-Sub connector horizontal angled 90deg THT pins pitch 2.77x2.54mm pin-PCB-offset 9.4mm +0 +9 +9 +Connector_Dsub +DSUB-9_Pins_Horizontal_P2.77x2.84mm_EdgePinOffset4.94mm_Housed_MountingHolesOffset4.94mm +9-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, pins (male), pitch 2.77x2.84mm, pin-PCB-offset 4.94mm, distance of mounting holes 25mm, distance of mounting holes to PCB edge 4.94mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +9-pin D-Sub connector horizontal angled 90deg THT pins pitch 2.77x2.84mm pin-PCB-offset 4.94mm mounting-holes-distance 25mm mounting-hole-offset 4.94mm +0 +11 +10 +Connector_Dsub +DSUB-9_Pins_Horizontal_P2.77x2.84mm_EdgePinOffset7.70mm_Housed_MountingHolesOffset9.12mm +9-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, pins (male), pitch 2.77x2.84mm, pin-PCB-offset 7.7mm, 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 pins pitch 2.77x2.84mm pin-PCB-offset 7.7mm mounting-holes-distance 25mm mounting-hole-offset 9.12mm +0 +11 +10 +Connector_Dsub +DSUB-9_Pins_Horizontal_P2.77x2.84mm_EdgePinOffset9.40mm +9-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, pins (male), pitch 2.77x2.84mm, pin-PCB-offset 9.4mm, see https://docs.rs-online.com/02d6/0900766b81585df2.pdf +9-pin D-Sub connector horizontal angled 90deg THT pins pitch 2.77x2.84mm pin-PCB-offset 9.4mm +0 +9 +9 +Connector_Dsub +DSUB-9_Pins_Horizontal_P2.77x2.84mm_EdgePinOffset9.90mm_Housed_MountingHolesOffset11.32mm +9-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, pins (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 pins pitch 2.77x2.84mm pin-PCB-offset 9.9mm mounting-holes-distance 25mm mounting-hole-offset 11.32mm +0 +11 +10 +Connector_Dsub +DSUB-9_Pins_Horizontal_P2.77x2.84mm_EdgePinOffset14.56mm_Housed_MountingHolesOffset8.20mm +9-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, pins (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 pins pitch 2.77x2.84mm pin-PCB-offset 14.56mm mounting-holes-distance 25mm mounting-hole-offset 8.2mm +0 +11 +10 +Connector_Dsub +DSUB-9_Pins_Horizontal_P2.77x2.84mm_EdgePinOffset14.56mm_Housed_MountingHolesOffset15.98mm +9-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, pins (male), pitch 2.77x2.84mm, pin-PCB-offset 14.56mm, distance of mounting holes 25mm, distance of mounting holes to PCB edge 15.98mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +9-pin D-Sub connector horizontal angled 90deg THT pins pitch 2.77x2.84mm pin-PCB-offset 14.56mm mounting-holes-distance 25mm mounting-hole-offset 15.98mm +0 +11 +10 +Connector_Dsub +DSUB-9_Pins_Vertical_P2.77x2.84mm +9-pin D-Sub connector, straight/vertical, THT-mount, pins (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 pins pitch 2.77x2.84mm mounting holes distance 25mm +0 +9 +9 +Connector_Dsub +DSUB-9_Pins_Vertical_P2.77x2.84mm_MountingHoles +9-pin D-Sub connector, straight/vertical, THT-mount, pins (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 pins pitch 2.77x2.84mm mounting holes distance 25mm +0 +11 +10 +Connector_Dsub +DSUB-9_Socket_EdgeMount_P2.77mm +9-pin D-Sub connector, solder-cups edge-mounted, socket (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 socket x-pin-pitch 2.77mm mounting holes distance 25mm +0 +9 +9 +Connector_Dsub +DSUB-9_Socket_Horizontal_P2.77x2.54mm_EdgePinOffset9.40mm +9-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, socket (female), pitch 2.77x2.54mm, pin-PCB-offset 9.4mm, see https://docs.rs-online.com/02d6/0900766b81585df2.pdf +9-pin D-Sub connector horizontal angled 90deg THT socket pitch 2.77x2.54mm pin-PCB-offset 9.4mm +0 +9 +9 +Connector_Dsub +DSUB-9_Socket_Horizontal_P2.77x2.84mm_EdgePinOffset4.94mm_Housed_MountingHolesOffset4.94mm +9-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, socket (female), pitch 2.77x2.84mm, pin-PCB-offset 4.94mm, distance of mounting holes 25mm, distance of mounting holes to PCB edge 4.94mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +9-pin D-Sub connector horizontal angled 90deg THT socket pitch 2.77x2.84mm pin-PCB-offset 4.94mm mounting-holes-distance 25mm mounting-hole-offset 4.94mm +0 +11 +10 +Connector_Dsub +DSUB-9_Socket_Horizontal_P2.77x2.84mm_EdgePinOffset7.70mm_Housed_MountingHolesOffset9.12mm +9-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, socket (female), pitch 2.77x2.84mm, pin-PCB-offset 7.7mm, 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 socket pitch 2.77x2.84mm pin-PCB-offset 7.7mm mounting-holes-distance 25mm mounting-hole-offset 9.12mm +0 +11 +10 +Connector_Dsub +DSUB-9_Socket_Horizontal_P2.77x2.84mm_EdgePinOffset9.40mm +9-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, socket (female), pitch 2.77x2.84mm, pin-PCB-offset 9.4mm, see https://docs.rs-online.com/02d6/0900766b81585df2.pdf +9-pin D-Sub connector horizontal angled 90deg THT socket pitch 2.77x2.84mm pin-PCB-offset 9.4mm +0 +9 +9 +Connector_Dsub +DSUB-9_Socket_Horizontal_P2.77x2.84mm_EdgePinOffset9.90mm_Housed_MountingHolesOffset11.32mm +9-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, socket (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 socket pitch 2.77x2.84mm pin-PCB-offset 9.9mm mounting-holes-distance 25mm mounting-hole-offset 11.32mm +0 +11 +10 +Connector_Dsub +DSUB-9_Socket_Horizontal_P2.77x2.84mm_EdgePinOffset14.56mm_Housed_MountingHolesOffset8.20mm +9-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, socket (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 socket pitch 2.77x2.84mm pin-PCB-offset 14.56mm mounting-holes-distance 25mm mounting-hole-offset 8.2mm +0 +11 +10 +Connector_Dsub +DSUB-9_Socket_Horizontal_P2.77x2.84mm_EdgePinOffset14.56mm_Housed_MountingHolesOffset15.98mm +9-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, socket (female), pitch 2.77x2.84mm, pin-PCB-offset 14.56mm, distance of mounting holes 25mm, distance of mounting holes to PCB edge 15.98mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +9-pin D-Sub connector horizontal angled 90deg THT socket pitch 2.77x2.84mm pin-PCB-offset 14.56mm mounting-holes-distance 25mm mounting-hole-offset 15.98mm +0 +11 +10 +Connector_Dsub +DSUB-9_Socket_Vertical_P2.77x2.84mm +9-pin D-Sub connector, straight/vertical, THT-mount, socket (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 socket pitch 2.77x2.84mm mounting holes distance 25mm +0 +9 +9 +Connector_Dsub +DSUB-9_Socket_Vertical_P2.77x2.84mm_MountingHoles +9-pin D-Sub connector, straight/vertical, THT-mount, socket (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 socket pitch 2.77x2.84mm mounting holes distance 25mm +0 +11 +10 +Connector_Dsub +DSUB-15-HD_Pins_Horizontal_P2.29x1.90mm_EdgePinOffset3.03mm_Housed_MountingHolesOffset4.94mm +15-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, pins (male), pitch 2.29x1.9mm, pin-PCB-offset 3.03mm, distance of mounting holes 25mm, distance of mounting holes to PCB edge 4.94mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +15-pin D-Sub connector horizontal angled 90deg THT pins pitch 2.29x1.9mm pin-PCB-offset 3.03mm mounting-holes-distance 25mm mounting-hole-offset 4.94mm +0 +17 +16 +Connector_Dsub +DSUB-15-HD_Pins_Horizontal_P2.29x2.54mm_EdgePinOffset8.35mm_Housed_MountingHolesOffset10.89mm +15-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, pins (male), pitch 2.29x2.54mm, pin-PCB-offset 8.35mm, distance of mounting holes 25mm, distance of mounting holes to PCB edge 10.89mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +15-pin D-Sub connector horizontal angled 90deg THT pins pitch 2.29x2.54mm pin-PCB-offset 8.35mm mounting-holes-distance 25mm mounting-hole-offset 10.89mm +0 +17 +16 +Connector_Dsub +DSUB-15-HD_Pins_Vertical_P2.29x1.98mm_MountingHoles +15-pin D-Sub connector, straight/vertical, THT-mount, pins (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 pins pitch 2.29x1.98mm mounting holes distance 25mm +0 +17 +16 +Connector_Dsub +DSUB-15-HD_Socket_Horizontal_P2.29x1.90mm_EdgePinOffset3.03mm_Housed_MountingHolesOffset4.94mm +15-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, socket (female), pitch 2.29x1.9mm, pin-PCB-offset 3.03mm, distance of mounting holes 25mm, distance of mounting holes to PCB edge 4.94mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +15-pin D-Sub connector horizontal angled 90deg THT socket pitch 2.29x1.9mm pin-PCB-offset 3.03mm mounting-holes-distance 25mm mounting-hole-offset 4.94mm +0 +17 +16 +Connector_Dsub +DSUB-15-HD_Socket_Horizontal_P2.29x2.54mm_EdgePinOffset8.35mm_Housed_MountingHolesOffset10.89mm +15-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, socket (female), pitch 2.29x2.54mm, pin-PCB-offset 8.35mm, distance of mounting holes 25mm, distance of mounting holes to PCB edge 10.89mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +15-pin D-Sub connector horizontal angled 90deg THT socket pitch 2.29x2.54mm pin-PCB-offset 8.35mm mounting-holes-distance 25mm mounting-hole-offset 10.89mm +0 +17 +16 +Connector_Dsub +DSUB-15-HD_Socket_Vertical_P2.29x1.98mm_MountingHoles +15-pin D-Sub connector, straight/vertical, THT-mount, socket (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 socket pitch 2.29x1.98mm mounting holes distance 25mm +0 +17 +16 +Connector_Dsub +DSUB-15_Pins_EdgeMount_P2.77mm +15-pin D-Sub connector, solder-cups edge-mounted, pins (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 pins x-pin-pitch 2.77mm mounting holes distance 33.3mm +0 +15 +15 +Connector_Dsub +DSUB-15_Pins_Horizontal_P2.77x2.54mm_EdgePinOffset9.40mm +15-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, pins (male), pitch 2.77x2.54mm, pin-PCB-offset 9.4mm, see https://docs.rs-online.com/02d6/0900766b81585df2.pdf +15-pin D-Sub connector horizontal angled 90deg THT pins pitch 2.77x2.54mm pin-PCB-offset 9.4mm +0 +15 +15 +Connector_Dsub +DSUB-15_Pins_Horizontal_P2.77x2.84mm_EdgePinOffset4.94mm_Housed_MountingHolesOffset4.94mm +15-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, pins (male), pitch 2.77x2.84mm, pin-PCB-offset 4.94mm, distance of mounting holes 33.3mm, distance of mounting holes to PCB edge 4.94mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +15-pin D-Sub connector horizontal angled 90deg THT pins pitch 2.77x2.84mm pin-PCB-offset 4.94mm mounting-holes-distance 33.3mm mounting-hole-offset 4.94mm +0 +17 +16 +Connector_Dsub +DSUB-15_Pins_Horizontal_P2.77x2.84mm_EdgePinOffset7.70mm_Housed_MountingHolesOffset9.12mm +15-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, pins (male), pitch 2.77x2.84mm, pin-PCB-offset 7.7mm, 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 pins pitch 2.77x2.84mm pin-PCB-offset 7.7mm mounting-holes-distance 33.3mm mounting-hole-offset 9.12mm +0 +17 +16 +Connector_Dsub +DSUB-15_Pins_Horizontal_P2.77x2.84mm_EdgePinOffset9.40mm +15-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, pins (male), pitch 2.77x2.84mm, pin-PCB-offset 9.4mm, see https://docs.rs-online.com/02d6/0900766b81585df2.pdf +15-pin D-Sub connector horizontal angled 90deg THT pins pitch 2.77x2.84mm pin-PCB-offset 9.4mm +0 +15 +15 +Connector_Dsub +DSUB-15_Pins_Horizontal_P2.77x2.84mm_EdgePinOffset9.90mm_Housed_MountingHolesOffset11.32mm +15-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, pins (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 pins pitch 2.77x2.84mm pin-PCB-offset 9.9mm mounting-holes-distance 33.3mm mounting-hole-offset 11.32mm +0 +17 +16 +Connector_Dsub +DSUB-15_Pins_Horizontal_P2.77x2.84mm_EdgePinOffset14.56mm_Housed_MountingHolesOffset8.20mm +15-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, pins (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 pins pitch 2.77x2.84mm pin-PCB-offset 14.56mm mounting-holes-distance 33.3mm mounting-hole-offset 8.2mm +0 +17 +16 +Connector_Dsub +DSUB-15_Pins_Horizontal_P2.77x2.84mm_EdgePinOffset14.56mm_Housed_MountingHolesOffset15.98mm +15-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, pins (male), pitch 2.77x2.84mm, pin-PCB-offset 14.56mm, distance of mounting holes 33.3mm, distance of mounting holes to PCB edge 15.98mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +15-pin D-Sub connector horizontal angled 90deg THT pins pitch 2.77x2.84mm pin-PCB-offset 14.56mm mounting-holes-distance 33.3mm mounting-hole-offset 15.98mm +0 +17 +16 +Connector_Dsub +DSUB-15_Pins_Vertical_P2.77x2.84mm +15-pin D-Sub connector, straight/vertical, THT-mount, pins (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 pins pitch 2.77x2.84mm mounting holes distance 33.3mm +0 +15 +15 +Connector_Dsub +DSUB-15_Pins_Vertical_P2.77x2.84mm_MountingHoles +15-pin D-Sub connector, straight/vertical, THT-mount, pins (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 pins pitch 2.77x2.84mm mounting holes distance 33.3mm +0 +17 +16 +Connector_Dsub +DSUB-15_Socket_EdgeMount_P2.77mm +15-pin D-Sub connector, solder-cups edge-mounted, socket (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 socket x-pin-pitch 2.77mm mounting holes distance 33.3mm +0 +15 +15 +Connector_Dsub +DSUB-15_Socket_Horizontal_P2.77x2.54mm_EdgePinOffset9.40mm +15-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, socket (female), pitch 2.77x2.54mm, pin-PCB-offset 9.4mm, see https://docs.rs-online.com/02d6/0900766b81585df2.pdf +15-pin D-Sub connector horizontal angled 90deg THT socket pitch 2.77x2.54mm pin-PCB-offset 9.4mm +0 +15 +15 +Connector_Dsub +DSUB-15_Socket_Horizontal_P2.77x2.84mm_EdgePinOffset4.94mm_Housed_MountingHolesOffset4.94mm +15-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, socket (female), pitch 2.77x2.84mm, pin-PCB-offset 4.94mm, distance of mounting holes 33.3mm, distance of mounting holes to PCB edge 4.94mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +15-pin D-Sub connector horizontal angled 90deg THT socket pitch 2.77x2.84mm pin-PCB-offset 4.94mm mounting-holes-distance 33.3mm mounting-hole-offset 4.94mm +0 +17 +16 +Connector_Dsub +DSUB-15_Socket_Horizontal_P2.77x2.84mm_EdgePinOffset7.70mm_Housed_MountingHolesOffset9.12mm +15-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, socket (female), pitch 2.77x2.84mm, pin-PCB-offset 7.7mm, 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 socket pitch 2.77x2.84mm pin-PCB-offset 7.7mm mounting-holes-distance 33.3mm mounting-hole-offset 9.12mm +0 +17 +16 +Connector_Dsub +DSUB-15_Socket_Horizontal_P2.77x2.84mm_EdgePinOffset9.40mm +15-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, socket (female), pitch 2.77x2.84mm, pin-PCB-offset 9.4mm, see https://docs.rs-online.com/02d6/0900766b81585df2.pdf +15-pin D-Sub connector horizontal angled 90deg THT socket pitch 2.77x2.84mm pin-PCB-offset 9.4mm +0 +15 +15 +Connector_Dsub +DSUB-15_Socket_Horizontal_P2.77x2.84mm_EdgePinOffset9.90mm_Housed_MountingHolesOffset11.32mm +15-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, socket (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 socket pitch 2.77x2.84mm pin-PCB-offset 9.9mm mounting-holes-distance 33.3mm mounting-hole-offset 11.32mm +0 +17 +16 +Connector_Dsub +DSUB-15_Socket_Horizontal_P2.77x2.84mm_EdgePinOffset14.56mm_Housed_MountingHolesOffset8.20mm +15-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, socket (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 socket pitch 2.77x2.84mm pin-PCB-offset 14.56mm mounting-holes-distance 33.3mm mounting-hole-offset 8.2mm +0 +17 +16 +Connector_Dsub +DSUB-15_Socket_Horizontal_P2.77x2.84mm_EdgePinOffset14.56mm_Housed_MountingHolesOffset15.98mm +15-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, socket (female), pitch 2.77x2.84mm, pin-PCB-offset 14.56mm, distance of mounting holes 33.3mm, distance of mounting holes to PCB edge 15.98mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +15-pin D-Sub connector horizontal angled 90deg THT socket pitch 2.77x2.84mm pin-PCB-offset 14.56mm mounting-holes-distance 33.3mm mounting-hole-offset 15.98mm +0 +17 +16 +Connector_Dsub +DSUB-15_Socket_Vertical_P2.77x2.84mm +15-pin D-Sub connector, straight/vertical, THT-mount, socket (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 socket pitch 2.77x2.84mm mounting holes distance 33.3mm +0 +15 +15 +Connector_Dsub +DSUB-15_Socket_Vertical_P2.77x2.84mm_MountingHoles +15-pin D-Sub connector, straight/vertical, THT-mount, socket (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 socket pitch 2.77x2.84mm mounting holes distance 33.3mm +0 +17 +16 +Connector_Dsub +DSUB-25_Pins_EdgeMount_P2.77mm +25-pin D-Sub connector, solder-cups edge-mounted, pins (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 pins x-pin-pitch 2.77mm mounting holes distance 47.1mm +0 +25 +25 +Connector_Dsub +DSUB-25_Pins_Horizontal_P2.77x2.54mm_EdgePinOffset9.40mm +25-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, pins (male), pitch 2.77x2.54mm, pin-PCB-offset 9.4mm, see https://docs.rs-online.com/02d6/0900766b81585df2.pdf +25-pin D-Sub connector horizontal angled 90deg THT pins pitch 2.77x2.54mm pin-PCB-offset 9.4mm +0 +25 +25 +Connector_Dsub +DSUB-25_Pins_Horizontal_P2.77x2.84mm_EdgePinOffset4.94mm_Housed_MountingHolesOffset4.94mm +25-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, pins (male), pitch 2.77x2.84mm, pin-PCB-offset 4.94mm, distance of mounting holes 47.1mm, distance of mounting holes to PCB edge 4.94mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +25-pin D-Sub connector horizontal angled 90deg THT pins pitch 2.77x2.84mm pin-PCB-offset 4.94mm mounting-holes-distance 47.1mm mounting-hole-offset 4.94mm +0 +27 +26 +Connector_Dsub +DSUB-25_Pins_Horizontal_P2.77x2.84mm_EdgePinOffset7.70mm_Housed_MountingHolesOffset9.12mm +25-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, pins (male), pitch 2.77x2.84mm, pin-PCB-offset 7.7mm, 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 pins pitch 2.77x2.84mm pin-PCB-offset 7.7mm mounting-holes-distance 47.1mm mounting-hole-offset 9.12mm +0 +27 +26 +Connector_Dsub +DSUB-25_Pins_Horizontal_P2.77x2.84mm_EdgePinOffset9.40mm +25-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, pins (male), pitch 2.77x2.84mm, pin-PCB-offset 9.4mm, see https://docs.rs-online.com/02d6/0900766b81585df2.pdf +25-pin D-Sub connector horizontal angled 90deg THT pins pitch 2.77x2.84mm pin-PCB-offset 9.4mm +0 +25 +25 +Connector_Dsub +DSUB-25_Pins_Horizontal_P2.77x2.84mm_EdgePinOffset9.90mm_Housed_MountingHolesOffset11.32mm +25-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, pins (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 pins pitch 2.77x2.84mm pin-PCB-offset 9.9mm mounting-holes-distance 47.1mm mounting-hole-offset 11.32mm +0 +27 +26 +Connector_Dsub +DSUB-25_Pins_Horizontal_P2.77x2.84mm_EdgePinOffset14.56mm_Housed_MountingHolesOffset8.20mm +25-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, pins (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 pins pitch 2.77x2.84mm pin-PCB-offset 14.56mm mounting-holes-distance 47.1mm mounting-hole-offset 8.2mm +0 +27 +26 +Connector_Dsub +DSUB-25_Pins_Horizontal_P2.77x2.84mm_EdgePinOffset14.56mm_Housed_MountingHolesOffset15.98mm +25-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, pins (male), pitch 2.77x2.84mm, pin-PCB-offset 14.56mm, distance of mounting holes 47.1mm, distance of mounting holes to PCB edge 15.98mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +25-pin D-Sub connector horizontal angled 90deg THT pins pitch 2.77x2.84mm pin-PCB-offset 14.56mm mounting-holes-distance 47.1mm mounting-hole-offset 15.98mm +0 +27 +26 +Connector_Dsub +DSUB-25_Pins_Vertical_P2.77x2.84mm +25-pin D-Sub connector, straight/vertical, THT-mount, pins (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 pins pitch 2.77x2.84mm mounting holes distance 47.1mm +0 +25 +25 +Connector_Dsub +DSUB-25_Pins_Vertical_P2.77x2.84mm_MountingHoles +25-pin D-Sub connector, straight/vertical, THT-mount, pins (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 pins pitch 2.77x2.84mm mounting holes distance 47.1mm +0 +27 +26 +Connector_Dsub +DSUB-25_Socket_EdgeMount_P2.77mm +25-pin D-Sub connector, solder-cups edge-mounted, socket (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 socket x-pin-pitch 2.77mm mounting holes distance 47.1mm +0 +25 +25 +Connector_Dsub +DSUB-25_Socket_Horizontal_P2.77x2.54mm_EdgePinOffset9.40mm +25-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, socket (female), pitch 2.77x2.54mm, pin-PCB-offset 9.4mm, see https://docs.rs-online.com/02d6/0900766b81585df2.pdf +25-pin D-Sub connector horizontal angled 90deg THT socket pitch 2.77x2.54mm pin-PCB-offset 9.4mm +0 +25 +25 +Connector_Dsub +DSUB-25_Socket_Horizontal_P2.77x2.84mm_EdgePinOffset4.94mm_Housed_MountingHolesOffset4.94mm +25-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, socket (female), pitch 2.77x2.84mm, pin-PCB-offset 4.94mm, distance of mounting holes 47.1mm, distance of mounting holes to PCB edge 4.94mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +25-pin D-Sub connector horizontal angled 90deg THT socket pitch 2.77x2.84mm pin-PCB-offset 4.94mm mounting-holes-distance 47.1mm mounting-hole-offset 4.94mm +0 +27 +26 +Connector_Dsub +DSUB-25_Socket_Horizontal_P2.77x2.84mm_EdgePinOffset7.70mm_Housed_MountingHolesOffset9.12mm +25-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, socket (female), pitch 2.77x2.84mm, pin-PCB-offset 7.7mm, 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 socket pitch 2.77x2.84mm pin-PCB-offset 7.7mm mounting-holes-distance 47.1mm mounting-hole-offset 9.12mm +0 +27 +26 +Connector_Dsub +DSUB-25_Socket_Horizontal_P2.77x2.84mm_EdgePinOffset9.40mm +25-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, socket (female), pitch 2.77x2.84mm, pin-PCB-offset 9.4mm, see https://docs.rs-online.com/02d6/0900766b81585df2.pdf +25-pin D-Sub connector horizontal angled 90deg THT socket pitch 2.77x2.84mm pin-PCB-offset 9.4mm +0 +25 +25 +Connector_Dsub +DSUB-25_Socket_Horizontal_P2.77x2.84mm_EdgePinOffset9.90mm_Housed_MountingHolesOffset11.32mm +25-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, socket (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 socket pitch 2.77x2.84mm pin-PCB-offset 9.9mm mounting-holes-distance 47.1mm mounting-hole-offset 11.32mm +0 +27 +26 +Connector_Dsub +DSUB-25_Socket_Horizontal_P2.77x2.84mm_EdgePinOffset14.56mm_Housed_MountingHolesOffset8.20mm +25-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, socket (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 socket pitch 2.77x2.84mm pin-PCB-offset 14.56mm mounting-holes-distance 47.1mm mounting-hole-offset 8.2mm +0 +27 +26 +Connector_Dsub +DSUB-25_Socket_Horizontal_P2.77x2.84mm_EdgePinOffset14.56mm_Housed_MountingHolesOffset15.98mm +25-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, socket (female), pitch 2.77x2.84mm, pin-PCB-offset 14.56mm, distance of mounting holes 47.1mm, distance of mounting holes to PCB edge 15.98mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +25-pin D-Sub connector horizontal angled 90deg THT socket pitch 2.77x2.84mm pin-PCB-offset 14.56mm mounting-holes-distance 47.1mm mounting-hole-offset 15.98mm +0 +27 +26 +Connector_Dsub +DSUB-25_Socket_Vertical_P2.77x2.84mm +25-pin D-Sub connector, straight/vertical, THT-mount, socket (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 socket pitch 2.77x2.84mm mounting holes distance 47.1mm +0 +25 +25 +Connector_Dsub +DSUB-25_Socket_Vertical_P2.77x2.84mm_MountingHoles +25-pin D-Sub connector, straight/vertical, THT-mount, socket (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 socket pitch 2.77x2.84mm mounting holes distance 47.1mm +0 +27 +26 +Connector_Dsub +DSUB-26-HD_Pins_Horizontal_P2.29x1.90mm_EdgePinOffset3.03mm_Housed_MountingHolesOffset4.94mm +26-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, pins (male), pitch 2.29x1.9mm, pin-PCB-offset 3.03mm, distance of mounting holes 33.3mm, distance of mounting holes to PCB edge 4.94mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +26-pin D-Sub connector horizontal angled 90deg THT pins pitch 2.29x1.9mm pin-PCB-offset 3.03mm mounting-holes-distance 33.3mm mounting-hole-offset 4.94mm +0 +28 +27 +Connector_Dsub +DSUB-26-HD_Pins_Horizontal_P2.29x2.54mm_EdgePinOffset8.35mm_Housed_MountingHolesOffset10.89mm +26-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, pins (male), pitch 2.29x2.54mm, pin-PCB-offset 8.35mm, distance of mounting holes 33.3mm, distance of mounting holes to PCB edge 10.89mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +26-pin D-Sub connector horizontal angled 90deg THT pins pitch 2.29x2.54mm pin-PCB-offset 8.35mm mounting-holes-distance 33.3mm mounting-hole-offset 10.89mm +0 +28 +27 +Connector_Dsub +DSUB-26-HD_Pins_Vertical_P2.29x1.98mm_MountingHoles +26-pin D-Sub connector, straight/vertical, THT-mount, pins (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 pins pitch 2.29x1.98mm mounting holes distance 33.3mm +0 +28 +27 +Connector_Dsub +DSUB-26-HD_Socket_Horizontal_P2.29x1.90mm_EdgePinOffset3.03mm_Housed_MountingHolesOffset4.94mm +26-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, socket (female), pitch 2.29x1.9mm, pin-PCB-offset 3.03mm, distance of mounting holes 33.3mm, distance of mounting holes to PCB edge 4.94mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +26-pin D-Sub connector horizontal angled 90deg THT socket pitch 2.29x1.9mm pin-PCB-offset 3.03mm mounting-holes-distance 33.3mm mounting-hole-offset 4.94mm +0 +28 +27 +Connector_Dsub +DSUB-26-HD_Socket_Horizontal_P2.29x2.54mm_EdgePinOffset8.35mm_Housed_MountingHolesOffset10.89mm +26-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, socket (female), pitch 2.29x2.54mm, pin-PCB-offset 8.35mm, distance of mounting holes 33.3mm, distance of mounting holes to PCB edge 10.89mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +26-pin D-Sub connector horizontal angled 90deg THT socket pitch 2.29x2.54mm pin-PCB-offset 8.35mm mounting-holes-distance 33.3mm mounting-hole-offset 10.89mm +0 +28 +27 +Connector_Dsub +DSUB-26-HD_Socket_Vertical_P2.29x1.98mm_MountingHoles +26-pin D-Sub connector, straight/vertical, THT-mount, socket (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 socket pitch 2.29x1.98mm mounting holes distance 33.3mm +0 +28 +27 +Connector_Dsub +DSUB-37_Pins_EdgeMount_P2.77mm +37-pin D-Sub connector, solder-cups edge-mounted, pins (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 pins x-pin-pitch 2.77mm mounting holes distance 63.5mm +0 +37 +37 +Connector_Dsub +DSUB-37_Pins_Horizontal_P2.77x2.54mm_EdgePinOffset9.40mm +37-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, pins (male), pitch 2.77x2.54mm, pin-PCB-offset 9.4mm, see https://docs.rs-online.com/02d6/0900766b81585df2.pdf +37-pin D-Sub connector horizontal angled 90deg THT pins pitch 2.77x2.54mm pin-PCB-offset 9.4mm +0 +37 +37 +Connector_Dsub +DSUB-37_Pins_Horizontal_P2.77x2.84mm_EdgePinOffset4.94mm_Housed_MountingHolesOffset4.94mm +37-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, pins (male), pitch 2.77x2.84mm, pin-PCB-offset 4.94mm, distance of mounting holes 63.5mm, distance of mounting holes to PCB edge 4.94mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +37-pin D-Sub connector horizontal angled 90deg THT pins pitch 2.77x2.84mm pin-PCB-offset 4.94mm mounting-holes-distance 63.5mm mounting-hole-offset 4.94mm +0 +39 +38 +Connector_Dsub +DSUB-37_Pins_Horizontal_P2.77x2.84mm_EdgePinOffset7.70mm_Housed_MountingHolesOffset9.12mm +37-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, pins (male), pitch 2.77x2.84mm, pin-PCB-offset 7.7mm, 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 pins pitch 2.77x2.84mm pin-PCB-offset 7.7mm mounting-holes-distance 63.5mm mounting-hole-offset 9.12mm +0 +39 +38 +Connector_Dsub +DSUB-37_Pins_Horizontal_P2.77x2.84mm_EdgePinOffset9.40mm +37-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, pins (male), pitch 2.77x2.84mm, pin-PCB-offset 9.4mm, see https://docs.rs-online.com/02d6/0900766b81585df2.pdf +37-pin D-Sub connector horizontal angled 90deg THT pins pitch 2.77x2.84mm pin-PCB-offset 9.4mm +0 +37 +37 +Connector_Dsub +DSUB-37_Pins_Horizontal_P2.77x2.84mm_EdgePinOffset9.90mm_Housed_MountingHolesOffset11.32mm +37-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, pins (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 pins pitch 2.77x2.84mm pin-PCB-offset 9.9mm mounting-holes-distance 63.5mm mounting-hole-offset 11.32mm +0 +39 +38 +Connector_Dsub +DSUB-37_Pins_Horizontal_P2.77x2.84mm_EdgePinOffset14.56mm_Housed_MountingHolesOffset8.20mm +37-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, pins (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 pins pitch 2.77x2.84mm pin-PCB-offset 14.56mm mounting-holes-distance 63.5mm mounting-hole-offset 8.2mm +0 +39 +38 +Connector_Dsub +DSUB-37_Pins_Horizontal_P2.77x2.84mm_EdgePinOffset14.56mm_Housed_MountingHolesOffset15.98mm +37-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, pins (male), pitch 2.77x2.84mm, pin-PCB-offset 14.56mm, distance of mounting holes 63.5mm, distance of mounting holes to PCB edge 15.98mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +37-pin D-Sub connector horizontal angled 90deg THT pins pitch 2.77x2.84mm pin-PCB-offset 14.56mm mounting-holes-distance 63.5mm mounting-hole-offset 15.98mm +0 +39 +38 +Connector_Dsub +DSUB-37_Pins_Vertical_P2.77x2.84mm +37-pin D-Sub connector, straight/vertical, THT-mount, pins (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 pins pitch 2.77x2.84mm mounting holes distance 63.5mm +0 +37 +37 +Connector_Dsub +DSUB-37_Pins_Vertical_P2.77x2.84mm_MountingHoles +37-pin D-Sub connector, straight/vertical, THT-mount, pins (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 pins pitch 2.77x2.84mm mounting holes distance 63.5mm +0 +39 +38 +Connector_Dsub +DSUB-37_Socket_EdgeMount_P2.77mm +37-pin D-Sub connector, solder-cups edge-mounted, socket (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 socket x-pin-pitch 2.77mm mounting holes distance 63.5mm +0 +37 +37 +Connector_Dsub +DSUB-37_Socket_Horizontal_P2.77x2.54mm_EdgePinOffset9.40mm +37-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, socket (female), pitch 2.77x2.54mm, pin-PCB-offset 9.4mm, see https://docs.rs-online.com/02d6/0900766b81585df2.pdf +37-pin D-Sub connector horizontal angled 90deg THT socket pitch 2.77x2.54mm pin-PCB-offset 9.4mm +0 +37 +37 +Connector_Dsub +DSUB-37_Socket_Horizontal_P2.77x2.84mm_EdgePinOffset4.94mm_Housed_MountingHolesOffset4.94mm +37-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, socket (female), pitch 2.77x2.84mm, pin-PCB-offset 4.94mm, distance of mounting holes 63.5mm, distance of mounting holes to PCB edge 4.94mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +37-pin D-Sub connector horizontal angled 90deg THT socket pitch 2.77x2.84mm pin-PCB-offset 4.94mm mounting-holes-distance 63.5mm mounting-hole-offset 4.94mm +0 +39 +38 +Connector_Dsub +DSUB-37_Socket_Horizontal_P2.77x2.84mm_EdgePinOffset7.70mm_Housed_MountingHolesOffset9.12mm +37-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, socket (female), pitch 2.77x2.84mm, pin-PCB-offset 7.7mm, 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 socket pitch 2.77x2.84mm pin-PCB-offset 7.7mm mounting-holes-distance 63.5mm mounting-hole-offset 9.12mm +0 +39 +38 +Connector_Dsub +DSUB-37_Socket_Horizontal_P2.77x2.84mm_EdgePinOffset9.40mm +37-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, socket (female), pitch 2.77x2.84mm, pin-PCB-offset 9.4mm, see https://docs.rs-online.com/02d6/0900766b81585df2.pdf +37-pin D-Sub connector horizontal angled 90deg THT socket pitch 2.77x2.84mm pin-PCB-offset 9.4mm +0 +37 +37 +Connector_Dsub +DSUB-37_Socket_Horizontal_P2.77x2.84mm_EdgePinOffset9.90mm_Housed_MountingHolesOffset11.32mm +37-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, socket (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 socket pitch 2.77x2.84mm pin-PCB-offset 9.9mm mounting-holes-distance 63.5mm mounting-hole-offset 11.32mm +0 +39 +38 +Connector_Dsub +DSUB-37_Socket_Horizontal_P2.77x2.84mm_EdgePinOffset14.56mm_Housed_MountingHolesOffset8.20mm +37-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, socket (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 socket pitch 2.77x2.84mm pin-PCB-offset 14.56mm mounting-holes-distance 63.5mm mounting-hole-offset 8.2mm +0 +39 +38 +Connector_Dsub +DSUB-37_Socket_Horizontal_P2.77x2.84mm_EdgePinOffset14.56mm_Housed_MountingHolesOffset15.98mm +37-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, socket (female), pitch 2.77x2.84mm, pin-PCB-offset 14.56mm, distance of mounting holes 63.5mm, distance of mounting holes to PCB edge 15.98mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +37-pin D-Sub connector horizontal angled 90deg THT socket pitch 2.77x2.84mm pin-PCB-offset 14.56mm mounting-holes-distance 63.5mm mounting-hole-offset 15.98mm +0 +39 +38 +Connector_Dsub +DSUB-37_Socket_Vertical_P2.77x2.84mm +37-pin D-Sub connector, straight/vertical, THT-mount, socket (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 socket pitch 2.77x2.84mm mounting holes distance 63.5mm +0 +37 +37 +Connector_Dsub +DSUB-37_Socket_Vertical_P2.77x2.84mm_MountingHoles +37-pin D-Sub connector, straight/vertical, THT-mount, socket (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 socket pitch 2.77x2.84mm mounting holes distance 63.5mm +0 +39 +38 +Connector_Dsub +DSUB-44-HD_Pins_Horizontal_P2.29x1.90mm_EdgePinOffset3.03mm_Housed_MountingHolesOffset4.94mm +44-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, pins (male), pitch 2.29x1.9mm, pin-PCB-offset 3.03mm, distance of mounting holes 47.1mm, distance of mounting holes to PCB edge 4.94mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +44-pin D-Sub connector horizontal angled 90deg THT pins pitch 2.29x1.9mm pin-PCB-offset 3.03mm mounting-holes-distance 47.1mm mounting-hole-offset 4.94mm +0 +46 +45 +Connector_Dsub +DSUB-44-HD_Pins_Horizontal_P2.29x2.54mm_EdgePinOffset8.35mm_Housed_MountingHolesOffset10.89mm +44-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, pins (male), pitch 2.29x2.54mm, pin-PCB-offset 8.35mm, distance of mounting holes 47.1mm, distance of mounting holes to PCB edge 10.89mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +44-pin D-Sub connector horizontal angled 90deg THT pins pitch 2.29x2.54mm pin-PCB-offset 8.35mm mounting-holes-distance 47.1mm mounting-hole-offset 10.89mm +0 +46 +45 +Connector_Dsub +DSUB-44-HD_Pins_Vertical_P2.29x1.98mm_MountingHoles +44-pin D-Sub connector, straight/vertical, THT-mount, pins (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 pins pitch 2.29x1.98mm mounting holes distance 47.1mm +0 +46 +45 +Connector_Dsub +DSUB-44-HD_Socket_Horizontal_P2.29x1.90mm_EdgePinOffset3.03mm_Housed_MountingHolesOffset4.94mm +44-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, socket (female), pitch 2.29x1.9mm, pin-PCB-offset 3.03mm, distance of mounting holes 47.1mm, distance of mounting holes to PCB edge 4.94mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +44-pin D-Sub connector horizontal angled 90deg THT socket pitch 2.29x1.9mm pin-PCB-offset 3.03mm mounting-holes-distance 47.1mm mounting-hole-offset 4.94mm +0 +46 +45 +Connector_Dsub +DSUB-44-HD_Socket_Horizontal_P2.29x2.54mm_EdgePinOffset8.35mm_Housed_MountingHolesOffset10.89mm +44-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, socket (female), pitch 2.29x2.54mm, pin-PCB-offset 8.35mm, distance of mounting holes 47.1mm, distance of mounting holes to PCB edge 10.89mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +44-pin D-Sub connector horizontal angled 90deg THT socket pitch 2.29x2.54mm pin-PCB-offset 8.35mm mounting-holes-distance 47.1mm mounting-hole-offset 10.89mm +0 +46 +45 +Connector_Dsub +DSUB-44-HD_Socket_Vertical_P2.29x1.98mm_MountingHoles +44-pin D-Sub connector, straight/vertical, THT-mount, socket (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 socket pitch 2.29x1.98mm mounting holes distance 47.1mm +0 +46 +45 +Connector_Dsub +DSUB-62-HD_Pins_Horizontal_P2.41x1.90mm_EdgePinOffset3.03mm_Housed_MountingHolesOffset4.94mm +62-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, pins (male), pitch 2.41x1.9mm, pin-PCB-offset 3.03mm, distance of mounting holes 63.5mm, distance of mounting holes to PCB edge 4.94mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +62-pin D-Sub connector horizontal angled 90deg THT pins pitch 2.41x1.9mm pin-PCB-offset 3.03mm mounting-holes-distance 63.5mm mounting-hole-offset 4.94mm +0 +64 +63 +Connector_Dsub +DSUB-62-HD_Pins_Horizontal_P2.41x2.54mm_EdgePinOffset8.35mm_Housed_MountingHolesOffset10.89mm +62-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, pins (male), pitch 2.41x2.54mm, pin-PCB-offset 8.35mm, distance of mounting holes 63.5mm, distance of mounting holes to PCB edge 10.89mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +62-pin D-Sub connector horizontal angled 90deg THT pins pitch 2.41x2.54mm pin-PCB-offset 8.35mm mounting-holes-distance 63.5mm mounting-hole-offset 10.89mm +0 +64 +63 +Connector_Dsub +DSUB-62-HD_Pins_Vertical_P2.41x1.98mm_MountingHoles +62-pin D-Sub connector, straight/vertical, THT-mount, pins (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 pins pitch 2.41x1.98mm mounting holes distance 63.5mm +0 +64 +63 +Connector_Dsub +DSUB-62-HD_Socket_Horizontal_P2.41x1.90mm_EdgePinOffset3.03mm_Housed_MountingHolesOffset4.94mm +62-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, socket (female), pitch 2.41x1.9mm, pin-PCB-offset 3.03mm, distance of mounting holes 63.5mm, distance of mounting holes to PCB edge 4.94mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +62-pin D-Sub connector horizontal angled 90deg THT socket pitch 2.41x1.9mm pin-PCB-offset 3.03mm mounting-holes-distance 63.5mm mounting-hole-offset 4.94mm +0 +64 +63 +Connector_Dsub +DSUB-62-HD_Socket_Horizontal_P2.41x2.54mm_EdgePinOffset8.35mm_Housed_MountingHolesOffset10.89mm +62-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, socket (female), pitch 2.41x2.54mm, pin-PCB-offset 8.35mm, distance of mounting holes 63.5mm, distance of mounting holes to PCB edge 10.89mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +62-pin D-Sub connector horizontal angled 90deg THT socket pitch 2.41x2.54mm pin-PCB-offset 8.35mm mounting-holes-distance 63.5mm mounting-hole-offset 10.89mm +0 +64 +63 +Connector_Dsub +DSUB-62-HD_Socket_Vertical_P2.41x1.98mm_MountingHoles +62-pin D-Sub connector, straight/vertical, THT-mount, socket (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 socket pitch 2.41x1.98mm mounting holes distance 63.5mm +0 +64 +63 +Connector_FFC-FPC +Amphenol_F32Q-1A7x1-11004_1x04-1MP_P0.5mm_Horizontal +Amphenol F32Q/T FPC connector, 4 top-side contacts, 0.5mm pitch, SMT, https://cdn.amphenol-icc.com/media/wysiwyg/files/drawing/f32q-f32t.pdf +F32T +0 +6 +5 +Connector_FFC-FPC +Amphenol_F32Q-1A7x1-11005_1x05-1MP_P0.5mm_Horizontal +Amphenol F32Q/T FPC connector, 5 top-side contacts, 0.5mm pitch, SMT, https://cdn.amphenol-icc.com/media/wysiwyg/files/drawing/f32q-f32t.pdf +F32T +0 +7 +6 +Connector_FFC-FPC +Amphenol_F32Q-1A7x1-11006_1x06-1MP_P0.5mm_Horizontal +Amphenol F32Q/T FPC connector, 6 top-side contacts, 0.5mm pitch, SMT, https://cdn.amphenol-icc.com/media/wysiwyg/files/drawing/f32q-f32t.pdf +F32T +0 +8 +7 +Connector_FFC-FPC +Amphenol_F32Q-1A7x1-11007_1x07-1MP_P0.5mm_Horizontal +Amphenol F32Q/T FPC connector, 7 top-side contacts, 0.5mm pitch, SMT, https://cdn.amphenol-icc.com/media/wysiwyg/files/drawing/f32q-f32t.pdf +F32T +0 +9 +8 +Connector_FFC-FPC +Amphenol_F32Q-1A7x1-11008_1x08-1MP_P0.5mm_Horizontal +Amphenol F32Q/T FPC connector, 8 top-side contacts, 0.5mm pitch, SMT, https://cdn.amphenol-icc.com/media/wysiwyg/files/drawing/f32q-f32t.pdf +F32T +0 +10 +9 +Connector_FFC-FPC +Amphenol_F32Q-1A7x1-11009_1x09-1MP_P0.5mm_Horizontal +Amphenol F32Q/T FPC connector, 9 top-side contacts, 0.5mm pitch, SMT, https://cdn.amphenol-icc.com/media/wysiwyg/files/drawing/f32q-f32t.pdf +F32T +0 +11 +10 +Connector_FFC-FPC +Amphenol_F32Q-1A7x1-11010_1x10-1MP_P0.5mm_Horizontal +Amphenol F32Q/T FPC connector, 10 top-side contacts, 0.5mm pitch, SMT, https://cdn.amphenol-icc.com/media/wysiwyg/files/drawing/f32q-f32t.pdf +F32T +0 +12 +11 +Connector_FFC-FPC +Amphenol_F32Q-1A7x1-11011_1x11-1MP_P0.5mm_Horizontal +Amphenol F32Q/T FPC connector, 11 top-side contacts, 0.5mm pitch, SMT, https://cdn.amphenol-icc.com/media/wysiwyg/files/drawing/f32q-f32t.pdf +F32T +0 +13 +12 +Connector_FFC-FPC +Amphenol_F32Q-1A7x1-11012_1x12-1MP_P0.5mm_Horizontal +Amphenol F32Q/T FPC connector, 12 top-side contacts, 0.5mm pitch, SMT, https://cdn.amphenol-icc.com/media/wysiwyg/files/drawing/f32q-f32t.pdf +F32T +0 +14 +13 +Connector_FFC-FPC +Amphenol_F32Q-1A7x1-11013_1x13-1MP_P0.5mm_Horizontal +Amphenol F32Q/T FPC connector, 13 top-side contacts, 0.5mm pitch, SMT, https://cdn.amphenol-icc.com/media/wysiwyg/files/drawing/f32q-f32t.pdf +F32T +0 +15 +14 +Connector_FFC-FPC +Amphenol_F32Q-1A7x1-11014_1x14-1MP_P0.5mm_Horizontal +Amphenol F32Q/T FPC connector, 14 top-side contacts, 0.5mm pitch, SMT, https://cdn.amphenol-icc.com/media/wysiwyg/files/drawing/f32q-f32t.pdf +F32T +0 +16 +15 +Connector_FFC-FPC +Amphenol_F32Q-1A7x1-11015_1x15-1MP_P0.5mm_Horizontal +Amphenol F32Q/T FPC connector, 15 top-side contacts, 0.5mm pitch, SMT, https://cdn.amphenol-icc.com/media/wysiwyg/files/drawing/f32q-f32t.pdf +F32T +0 +17 +16 +Connector_FFC-FPC +Amphenol_F32Q-1A7x1-11016_1x16-1MP_P0.5mm_Horizontal +Amphenol F32Q/T FPC connector, 16 top-side contacts, 0.5mm pitch, SMT, https://cdn.amphenol-icc.com/media/wysiwyg/files/drawing/f32q-f32t.pdf +F32T +0 +18 +17 +Connector_FFC-FPC +Amphenol_F32Q-1A7x1-11017_1x17-1MP_P0.5mm_Horizontal +Amphenol F32Q/T FPC connector, 17 top-side contacts, 0.5mm pitch, SMT, https://cdn.amphenol-icc.com/media/wysiwyg/files/drawing/f32q-f32t.pdf +F32T +0 +19 +18 +Connector_FFC-FPC +Amphenol_F32Q-1A7x1-11018_1x18-1MP_P0.5mm_Horizontal +Amphenol F32Q/T FPC connector, 18 top-side contacts, 0.5mm pitch, SMT, https://cdn.amphenol-icc.com/media/wysiwyg/files/drawing/f32q-f32t.pdf +F32T +0 +20 +19 +Connector_FFC-FPC +Amphenol_F32Q-1A7x1-11019_1x19-1MP_P0.5mm_Horizontal +Amphenol F32Q/T FPC connector, 19 top-side contacts, 0.5mm pitch, SMT, https://cdn.amphenol-icc.com/media/wysiwyg/files/drawing/f32q-f32t.pdf +F32T +0 +21 +20 +Connector_FFC-FPC +Amphenol_F32Q-1A7x1-11020_1x20-1MP_P0.5mm_Horizontal +Amphenol F32Q/T FPC connector, 20 top-side contacts, 0.5mm pitch, SMT, https://cdn.amphenol-icc.com/media/wysiwyg/files/drawing/f32q-f32t.pdf +F32T +0 +22 +21 +Connector_FFC-FPC +Amphenol_F32Q-1A7x1-11021_1x21-1MP_P0.5mm_Horizontal +Amphenol F32Q/T FPC connector, 21 top-side contacts, 0.5mm pitch, SMT, https://cdn.amphenol-icc.com/media/wysiwyg/files/drawing/f32q-f32t.pdf +F32T +0 +23 +22 +Connector_FFC-FPC +Amphenol_F32Q-1A7x1-11022_1x22-1MP_P0.5mm_Horizontal +Amphenol F32Q/T FPC connector, 22 top-side contacts, 0.5mm pitch, SMT, https://cdn.amphenol-icc.com/media/wysiwyg/files/drawing/f32q-f32t.pdf +F32T +0 +24 +23 +Connector_FFC-FPC +Amphenol_F32Q-1A7x1-11023_1x23-1MP_P0.5mm_Horizontal +Amphenol F32Q/T FPC connector, 23 top-side contacts, 0.5mm pitch, SMT, https://cdn.amphenol-icc.com/media/wysiwyg/files/drawing/f32q-f32t.pdf +F32T +0 +25 +24 +Connector_FFC-FPC +Amphenol_F32Q-1A7x1-11024_1x24-1MP_P0.5mm_Horizontal +Amphenol F32Q/T FPC connector, 24 top-side contacts, 0.5mm pitch, SMT, https://cdn.amphenol-icc.com/media/wysiwyg/files/drawing/f32q-f32t.pdf +F32T +0 +26 +25 +Connector_FFC-FPC +Amphenol_F32Q-1A7x1-11025_1x25-1MP_P0.5mm_Horizontal +Amphenol F32Q/T FPC connector, 25 top-side contacts, 0.5mm pitch, SMT, https://cdn.amphenol-icc.com/media/wysiwyg/files/drawing/f32q-f32t.pdf +F32T +0 +27 +26 +Connector_FFC-FPC +Amphenol_F32Q-1A7x1-11026_1x26-1MP_P0.5mm_Horizontal +Amphenol F32Q/T FPC connector, 26 top-side contacts, 0.5mm pitch, SMT, https://cdn.amphenol-icc.com/media/wysiwyg/files/drawing/f32q-f32t.pdf +F32T +0 +28 +27 +Connector_FFC-FPC +Amphenol_F32Q-1A7x1-11027_1x27-1MP_P0.5mm_Horizontal +Amphenol F32Q/T FPC connector, 27 top-side contacts, 0.5mm pitch, SMT, https://cdn.amphenol-icc.com/media/wysiwyg/files/drawing/f32q-f32t.pdf +F32T +0 +29 +28 +Connector_FFC-FPC +Amphenol_F32Q-1A7x1-11028_1x28-1MP_P0.5mm_Horizontal +Amphenol F32Q/T FPC connector, 28 top-side contacts, 0.5mm pitch, SMT, https://cdn.amphenol-icc.com/media/wysiwyg/files/drawing/f32q-f32t.pdf +F32T +0 +30 +29 +Connector_FFC-FPC +Amphenol_F32Q-1A7x1-11029_1x29-1MP_P0.5mm_Horizontal +Amphenol F32Q/T FPC connector, 29 top-side contacts, 0.5mm pitch, SMT, https://cdn.amphenol-icc.com/media/wysiwyg/files/drawing/f32q-f32t.pdf +F32T +0 +31 +30 +Connector_FFC-FPC +Amphenol_F32Q-1A7x1-11030_1x30-1MP_P0.5mm_Horizontal +Amphenol F32Q/T FPC connector, 30 top-side contacts, 0.5mm pitch, SMT, https://cdn.amphenol-icc.com/media/wysiwyg/files/drawing/f32q-f32t.pdf +F32T +0 +32 +31 +Connector_FFC-FPC +Amphenol_F32Q-1A7x1-11031_1x31-1MP_P0.5mm_Horizontal +Amphenol F32Q/T FPC connector, 31 top-side contacts, 0.5mm pitch, SMT, https://cdn.amphenol-icc.com/media/wysiwyg/files/drawing/f32q-f32t.pdf +F32T +0 +33 +32 +Connector_FFC-FPC +Amphenol_F32Q-1A7x1-11032_1x32-1MP_P0.5mm_Horizontal +Amphenol F32Q/T FPC connector, 32 top-side contacts, 0.5mm pitch, SMT, https://cdn.amphenol-icc.com/media/wysiwyg/files/drawing/f32q-f32t.pdf +F32T +0 +34 +33 +Connector_FFC-FPC +Amphenol_F32Q-1A7x1-11033_1x33-1MP_P0.5mm_Horizontal +Amphenol F32Q/T FPC connector, 33 top-side contacts, 0.5mm pitch, SMT, https://cdn.amphenol-icc.com/media/wysiwyg/files/drawing/f32q-f32t.pdf +F32T +0 +35 +34 +Connector_FFC-FPC +Amphenol_F32Q-1A7x1-11034_1x34-1MP_P0.5mm_Horizontal +Amphenol F32Q/T FPC connector, 34 top-side contacts, 0.5mm pitch, SMT, https://cdn.amphenol-icc.com/media/wysiwyg/files/drawing/f32q-f32t.pdf +F32T +0 +36 +35 +Connector_FFC-FPC +Amphenol_F32Q-1A7x1-11035_1x35-1MP_P0.5mm_Horizontal +Amphenol F32Q/T FPC connector, 35 top-side contacts, 0.5mm pitch, SMT, https://cdn.amphenol-icc.com/media/wysiwyg/files/drawing/f32q-f32t.pdf +F32T +0 +37 +36 +Connector_FFC-FPC +Amphenol_F32Q-1A7x1-11036_1x36-1MP_P0.5mm_Horizontal +Amphenol F32Q/T FPC connector, 36 top-side contacts, 0.5mm pitch, SMT, https://cdn.amphenol-icc.com/media/wysiwyg/files/drawing/f32q-f32t.pdf +F32T +0 +38 +37 +Connector_FFC-FPC +Amphenol_F32Q-1A7x1-11037_1x37-1MP_P0.5mm_Horizontal +Amphenol F32Q/T FPC connector, 37 top-side contacts, 0.5mm pitch, SMT, https://cdn.amphenol-icc.com/media/wysiwyg/files/drawing/f32q-f32t.pdf +F32T +0 +39 +38 +Connector_FFC-FPC +Amphenol_F32Q-1A7x1-11038_1x38-1MP_P0.5mm_Horizontal +Amphenol F32Q/T FPC connector, 38 top-side contacts, 0.5mm pitch, SMT, https://cdn.amphenol-icc.com/media/wysiwyg/files/drawing/f32q-f32t.pdf +F32T +0 +40 +39 +Connector_FFC-FPC +Amphenol_F32Q-1A7x1-11039_1x39-1MP_P0.5mm_Horizontal +Amphenol F32Q/T FPC connector, 39 top-side contacts, 0.5mm pitch, SMT, https://cdn.amphenol-icc.com/media/wysiwyg/files/drawing/f32q-f32t.pdf +F32T +0 +41 +40 +Connector_FFC-FPC +Amphenol_F32Q-1A7x1-11040_1x40-1MP_P0.5mm_Horizontal +Amphenol F32Q/T FPC connector, 40 top-side contacts, 0.5mm pitch, SMT, https://cdn.amphenol-icc.com/media/wysiwyg/files/drawing/f32q-f32t.pdf +F32T +0 +42 +41 +Connector_FFC-FPC +Amphenol_F32Q-1A7x1-11041_1x41-1MP_P0.5mm_Horizontal +Amphenol F32Q/T FPC connector, 41 top-side contacts, 0.5mm pitch, SMT, https://cdn.amphenol-icc.com/media/wysiwyg/files/drawing/f32q-f32t.pdf +F32T +0 +43 +42 +Connector_FFC-FPC +Amphenol_F32Q-1A7x1-11042_1x42-1MP_P0.5mm_Horizontal +Amphenol F32Q/T FPC connector, 42 top-side contacts, 0.5mm pitch, SMT, https://cdn.amphenol-icc.com/media/wysiwyg/files/drawing/f32q-f32t.pdf +F32T +0 +44 +43 +Connector_FFC-FPC +Amphenol_F32Q-1A7x1-11043_1x43-1MP_P0.5mm_Horizontal +Amphenol F32Q/T FPC connector, 43 top-side contacts, 0.5mm pitch, SMT, https://cdn.amphenol-icc.com/media/wysiwyg/files/drawing/f32q-f32t.pdf +F32T +0 +45 +44 +Connector_FFC-FPC +Amphenol_F32Q-1A7x1-11044_1x44-1MP_P0.5mm_Horizontal +Amphenol F32Q/T FPC connector, 44 top-side contacts, 0.5mm pitch, SMT, https://cdn.amphenol-icc.com/media/wysiwyg/files/drawing/f32q-f32t.pdf +F32T +0 +46 +45 +Connector_FFC-FPC +Amphenol_F32Q-1A7x1-11045_1x45-1MP_P0.5mm_Horizontal +Amphenol F32Q/T FPC connector, 45 top-side contacts, 0.5mm pitch, SMT, https://cdn.amphenol-icc.com/media/wysiwyg/files/drawing/f32q-f32t.pdf +F32T +0 +47 +46 +Connector_FFC-FPC +Amphenol_F32Q-1A7x1-11046_1x46-1MP_P0.5mm_Horizontal +Amphenol F32Q/T FPC connector, 46 top-side contacts, 0.5mm pitch, SMT, https://cdn.amphenol-icc.com/media/wysiwyg/files/drawing/f32q-f32t.pdf +F32T +0 +48 +47 +Connector_FFC-FPC +Amphenol_F32Q-1A7x1-11047_1x47-1MP_P0.5mm_Horizontal +Amphenol F32Q/T FPC connector, 47 top-side contacts, 0.5mm pitch, SMT, https://cdn.amphenol-icc.com/media/wysiwyg/files/drawing/f32q-f32t.pdf +F32T +0 +49 +48 +Connector_FFC-FPC +Amphenol_F32Q-1A7x1-11048_1x48-1MP_P0.5mm_Horizontal +Amphenol F32Q/T FPC connector, 48 top-side contacts, 0.5mm pitch, SMT, https://cdn.amphenol-icc.com/media/wysiwyg/files/drawing/f32q-f32t.pdf +F32T +0 +50 +49 +Connector_FFC-FPC +Amphenol_F32Q-1A7x1-11049_1x49-1MP_P0.5mm_Horizontal +Amphenol F32Q/T FPC connector, 49 top-side contacts, 0.5mm pitch, SMT, https://cdn.amphenol-icc.com/media/wysiwyg/files/drawing/f32q-f32t.pdf +F32T +0 +51 +50 +Connector_FFC-FPC +Amphenol_F32Q-1A7x1-11050_1x50-1MP_P0.5mm_Horizontal +Amphenol F32Q/T FPC connector, 50 top-side contacts, 0.5mm pitch, SMT, https://cdn.amphenol-icc.com/media/wysiwyg/files/drawing/f32q-f32t.pdf +F32T +0 +52 +51 +Connector_FFC-FPC +Amphenol_F32Q-1A7x1-11051_1x51-1MP_P0.5mm_Horizontal +Amphenol F32Q/T FPC connector, 51 top-side contacts, 0.5mm pitch, SMT, https://cdn.amphenol-icc.com/media/wysiwyg/files/drawing/f32q-f32t.pdf +F32T +0 +53 +52 +Connector_FFC-FPC +Amphenol_F32Q-1A7x1-11052_1x52-1MP_P0.5mm_Horizontal +Amphenol F32Q/T FPC connector, 52 top-side contacts, 0.5mm pitch, SMT, https://cdn.amphenol-icc.com/media/wysiwyg/files/drawing/f32q-f32t.pdf +F32T +0 +54 +53 +Connector_FFC-FPC +Amphenol_F32Q-1A7x1-11053_1x53-1MP_P0.5mm_Horizontal +Amphenol F32Q/T FPC connector, 53 top-side contacts, 0.5mm pitch, SMT, https://cdn.amphenol-icc.com/media/wysiwyg/files/drawing/f32q-f32t.pdf +F32T +0 +55 +54 +Connector_FFC-FPC +Amphenol_F32Q-1A7x1-11054_1x54-1MP_P0.5mm_Horizontal +Amphenol F32Q/T FPC connector, 54 top-side contacts, 0.5mm pitch, SMT, https://cdn.amphenol-icc.com/media/wysiwyg/files/drawing/f32q-f32t.pdf +F32T +0 +56 +55 +Connector_FFC-FPC +Amphenol_F32Q-1A7x1-11055_1x55-1MP_P0.5mm_Horizontal +Amphenol F32Q/T FPC connector, 55 top-side contacts, 0.5mm pitch, SMT, https://cdn.amphenol-icc.com/media/wysiwyg/files/drawing/f32q-f32t.pdf +F32T +0 +57 +56 +Connector_FFC-FPC +Amphenol_F32Q-1A7x1-11056_1x56-1MP_P0.5mm_Horizontal +Amphenol F32Q/T FPC connector, 56 top-side contacts, 0.5mm pitch, SMT, https://cdn.amphenol-icc.com/media/wysiwyg/files/drawing/f32q-f32t.pdf +F32T +0 +58 +57 +Connector_FFC-FPC +Amphenol_F32Q-1A7x1-11057_1x57-1MP_P0.5mm_Horizontal +Amphenol F32Q/T FPC connector, 57 top-side contacts, 0.5mm pitch, SMT, https://cdn.amphenol-icc.com/media/wysiwyg/files/drawing/f32q-f32t.pdf +F32T +0 +59 +58 +Connector_FFC-FPC +Amphenol_F32Q-1A7x1-11058_1x58-1MP_P0.5mm_Horizontal +Amphenol F32Q/T FPC connector, 58 top-side contacts, 0.5mm pitch, SMT, https://cdn.amphenol-icc.com/media/wysiwyg/files/drawing/f32q-f32t.pdf +F32T +0 +60 +59 +Connector_FFC-FPC +Amphenol_F32Q-1A7x1-11059_1x59-1MP_P0.5mm_Horizontal +Amphenol F32Q/T FPC connector, 59 top-side contacts, 0.5mm pitch, SMT, https://cdn.amphenol-icc.com/media/wysiwyg/files/drawing/f32q-f32t.pdf +F32T +0 +61 +60 +Connector_FFC-FPC +Amphenol_F32Q-1A7x1-11060_1x60-1MP_P0.5mm_Horizontal +Amphenol F32Q/T FPC connector, 60 top-side contacts, 0.5mm pitch, SMT, https://cdn.amphenol-icc.com/media/wysiwyg/files/drawing/f32q-f32t.pdf +F32T +0 +62 +61 +Connector_FFC-FPC +Amphenol_F32R-1A7x1-11004_1x04-1MP_P0.5mm_Horizontal +Amphenol F32R/J FPC connector, 4 bottom-side contacts, 0.5mm pitch, SMT, https://cdn.amphenol-icc.com/media/wysiwyg/files/drawing/f32r-f32j.pdf +F32J +0 +6 +5 +Connector_FFC-FPC +Amphenol_F32R-1A7x1-11005_1x05-1MP_P0.5mm_Horizontal +Amphenol F32R/J FPC connector, 5 bottom-side contacts, 0.5mm pitch, SMT, https://cdn.amphenol-icc.com/media/wysiwyg/files/drawing/f32r-f32j.pdf +F32J +0 +7 +6 +Connector_FFC-FPC +Amphenol_F32R-1A7x1-11006_1x06-1MP_P0.5mm_Horizontal +Amphenol F32R/J FPC connector, 6 bottom-side contacts, 0.5mm pitch, SMT, https://cdn.amphenol-icc.com/media/wysiwyg/files/drawing/f32r-f32j.pdf +F32J +0 +8 +7 +Connector_FFC-FPC +Amphenol_F32R-1A7x1-11007_1x07-1MP_P0.5mm_Horizontal +Amphenol F32R/J FPC connector, 7 bottom-side contacts, 0.5mm pitch, SMT, https://cdn.amphenol-icc.com/media/wysiwyg/files/drawing/f32r-f32j.pdf +F32J +0 +9 +8 +Connector_FFC-FPC +Amphenol_F32R-1A7x1-11008_1x08-1MP_P0.5mm_Horizontal +Amphenol F32R/J FPC connector, 8 bottom-side contacts, 0.5mm pitch, SMT, https://cdn.amphenol-icc.com/media/wysiwyg/files/drawing/f32r-f32j.pdf +F32J +0 +10 +9 +Connector_FFC-FPC +Amphenol_F32R-1A7x1-11009_1x09-1MP_P0.5mm_Horizontal +Amphenol F32R/J FPC connector, 9 bottom-side contacts, 0.5mm pitch, SMT, https://cdn.amphenol-icc.com/media/wysiwyg/files/drawing/f32r-f32j.pdf +F32J +0 +11 +10 +Connector_FFC-FPC +Amphenol_F32R-1A7x1-11010_1x10-1MP_P0.5mm_Horizontal +Amphenol F32R/J FPC connector, 10 bottom-side contacts, 0.5mm pitch, SMT, https://cdn.amphenol-icc.com/media/wysiwyg/files/drawing/f32r-f32j.pdf +F32J +0 +12 +11 +Connector_FFC-FPC +Amphenol_F32R-1A7x1-11011_1x11-1MP_P0.5mm_Horizontal +Amphenol F32R/J FPC connector, 11 bottom-side contacts, 0.5mm pitch, SMT, https://cdn.amphenol-icc.com/media/wysiwyg/files/drawing/f32r-f32j.pdf +F32J +0 +13 +12 +Connector_FFC-FPC +Amphenol_F32R-1A7x1-11012_1x12-1MP_P0.5mm_Horizontal +Amphenol F32R/J FPC connector, 12 bottom-side contacts, 0.5mm pitch, SMT, https://cdn.amphenol-icc.com/media/wysiwyg/files/drawing/f32r-f32j.pdf +F32J +0 +14 +13 +Connector_FFC-FPC +Amphenol_F32R-1A7x1-11013_1x13-1MP_P0.5mm_Horizontal +Amphenol F32R/J FPC connector, 13 bottom-side contacts, 0.5mm pitch, SMT, https://cdn.amphenol-icc.com/media/wysiwyg/files/drawing/f32r-f32j.pdf +F32J +0 +15 +14 +Connector_FFC-FPC +Amphenol_F32R-1A7x1-11014_1x14-1MP_P0.5mm_Horizontal +Amphenol F32R/J FPC connector, 14 bottom-side contacts, 0.5mm pitch, SMT, https://cdn.amphenol-icc.com/media/wysiwyg/files/drawing/f32r-f32j.pdf +F32J +0 +16 +15 +Connector_FFC-FPC +Amphenol_F32R-1A7x1-11015_1x15-1MP_P0.5mm_Horizontal +Amphenol F32R/J FPC connector, 15 bottom-side contacts, 0.5mm pitch, SMT, https://cdn.amphenol-icc.com/media/wysiwyg/files/drawing/f32r-f32j.pdf +F32J +0 +17 +16 +Connector_FFC-FPC +Amphenol_F32R-1A7x1-11016_1x16-1MP_P0.5mm_Horizontal +Amphenol F32R/J FPC connector, 16 bottom-side contacts, 0.5mm pitch, SMT, https://cdn.amphenol-icc.com/media/wysiwyg/files/drawing/f32r-f32j.pdf +F32J +0 +18 +17 +Connector_FFC-FPC +Amphenol_F32R-1A7x1-11017_1x17-1MP_P0.5mm_Horizontal +Amphenol F32R/J FPC connector, 17 bottom-side contacts, 0.5mm pitch, SMT, https://cdn.amphenol-icc.com/media/wysiwyg/files/drawing/f32r-f32j.pdf +F32J +0 +19 +18 +Connector_FFC-FPC +Amphenol_F32R-1A7x1-11018_1x18-1MP_P0.5mm_Horizontal +Amphenol F32R/J FPC connector, 18 bottom-side contacts, 0.5mm pitch, SMT, https://cdn.amphenol-icc.com/media/wysiwyg/files/drawing/f32r-f32j.pdf +F32J +0 +20 +19 +Connector_FFC-FPC +Amphenol_F32R-1A7x1-11019_1x19-1MP_P0.5mm_Horizontal +Amphenol F32R/J FPC connector, 19 bottom-side contacts, 0.5mm pitch, SMT, https://cdn.amphenol-icc.com/media/wysiwyg/files/drawing/f32r-f32j.pdf +F32J +0 +21 +20 +Connector_FFC-FPC +Amphenol_F32R-1A7x1-11020_1x20-1MP_P0.5mm_Horizontal +Amphenol F32R/J FPC connector, 20 bottom-side contacts, 0.5mm pitch, SMT, https://cdn.amphenol-icc.com/media/wysiwyg/files/drawing/f32r-f32j.pdf +F32J +0 +22 +21 +Connector_FFC-FPC +Amphenol_F32R-1A7x1-11021_1x21-1MP_P0.5mm_Horizontal +Amphenol F32R/J FPC connector, 21 bottom-side contacts, 0.5mm pitch, SMT, https://cdn.amphenol-icc.com/media/wysiwyg/files/drawing/f32r-f32j.pdf +F32J +0 +23 +22 +Connector_FFC-FPC +Amphenol_F32R-1A7x1-11022_1x22-1MP_P0.5mm_Horizontal +Amphenol F32R/J FPC connector, 22 bottom-side contacts, 0.5mm pitch, SMT, https://cdn.amphenol-icc.com/media/wysiwyg/files/drawing/f32r-f32j.pdf +F32J +0 +24 +23 +Connector_FFC-FPC +Amphenol_F32R-1A7x1-11023_1x23-1MP_P0.5mm_Horizontal +Amphenol F32R/J FPC connector, 23 bottom-side contacts, 0.5mm pitch, SMT, https://cdn.amphenol-icc.com/media/wysiwyg/files/drawing/f32r-f32j.pdf +F32J +0 +25 +24 +Connector_FFC-FPC +Amphenol_F32R-1A7x1-11024_1x24-1MP_P0.5mm_Horizontal +Amphenol F32R/J FPC connector, 24 bottom-side contacts, 0.5mm pitch, SMT, https://cdn.amphenol-icc.com/media/wysiwyg/files/drawing/f32r-f32j.pdf +F32J +0 +26 +25 +Connector_FFC-FPC +Amphenol_F32R-1A7x1-11025_1x25-1MP_P0.5mm_Horizontal +Amphenol F32R/J FPC connector, 25 bottom-side contacts, 0.5mm pitch, SMT, https://cdn.amphenol-icc.com/media/wysiwyg/files/drawing/f32r-f32j.pdf +F32J +0 +27 +26 +Connector_FFC-FPC +Amphenol_F32R-1A7x1-11026_1x26-1MP_P0.5mm_Horizontal +Amphenol F32R/J FPC connector, 26 bottom-side contacts, 0.5mm pitch, SMT, https://cdn.amphenol-icc.com/media/wysiwyg/files/drawing/f32r-f32j.pdf +F32J +0 +28 +27 +Connector_FFC-FPC +Amphenol_F32R-1A7x1-11027_1x27-1MP_P0.5mm_Horizontal +Amphenol F32R/J FPC connector, 27 bottom-side contacts, 0.5mm pitch, SMT, https://cdn.amphenol-icc.com/media/wysiwyg/files/drawing/f32r-f32j.pdf +F32J +0 +29 +28 +Connector_FFC-FPC +Amphenol_F32R-1A7x1-11028_1x28-1MP_P0.5mm_Horizontal +Amphenol F32R/J FPC connector, 28 bottom-side contacts, 0.5mm pitch, SMT, https://cdn.amphenol-icc.com/media/wysiwyg/files/drawing/f32r-f32j.pdf +F32J +0 +30 +29 +Connector_FFC-FPC +Amphenol_F32R-1A7x1-11029_1x29-1MP_P0.5mm_Horizontal +Amphenol F32R/J FPC connector, 29 bottom-side contacts, 0.5mm pitch, SMT, https://cdn.amphenol-icc.com/media/wysiwyg/files/drawing/f32r-f32j.pdf +F32J +0 +31 +30 +Connector_FFC-FPC +Amphenol_F32R-1A7x1-11030_1x30-1MP_P0.5mm_Horizontal +Amphenol F32R/J FPC connector, 30 bottom-side contacts, 0.5mm pitch, SMT, https://cdn.amphenol-icc.com/media/wysiwyg/files/drawing/f32r-f32j.pdf +F32J +0 +32 +31 +Connector_FFC-FPC +Amphenol_F32R-1A7x1-11031_1x31-1MP_P0.5mm_Horizontal +Amphenol F32R/J FPC connector, 31 bottom-side contacts, 0.5mm pitch, SMT, https://cdn.amphenol-icc.com/media/wysiwyg/files/drawing/f32r-f32j.pdf +F32J +0 +33 +32 +Connector_FFC-FPC +Amphenol_F32R-1A7x1-11032_1x32-1MP_P0.5mm_Horizontal +Amphenol F32R/J FPC connector, 32 bottom-side contacts, 0.5mm pitch, SMT, https://cdn.amphenol-icc.com/media/wysiwyg/files/drawing/f32r-f32j.pdf +F32J +0 +34 +33 +Connector_FFC-FPC +Amphenol_F32R-1A7x1-11033_1x33-1MP_P0.5mm_Horizontal +Amphenol F32R/J FPC connector, 33 bottom-side contacts, 0.5mm pitch, SMT, https://cdn.amphenol-icc.com/media/wysiwyg/files/drawing/f32r-f32j.pdf +F32J +0 +35 +34 +Connector_FFC-FPC +Amphenol_F32R-1A7x1-11034_1x34-1MP_P0.5mm_Horizontal +Amphenol F32R/J FPC connector, 34 bottom-side contacts, 0.5mm pitch, SMT, https://cdn.amphenol-icc.com/media/wysiwyg/files/drawing/f32r-f32j.pdf +F32J +0 +36 +35 +Connector_FFC-FPC +Amphenol_F32R-1A7x1-11035_1x35-1MP_P0.5mm_Horizontal +Amphenol F32R/J FPC connector, 35 bottom-side contacts, 0.5mm pitch, SMT, https://cdn.amphenol-icc.com/media/wysiwyg/files/drawing/f32r-f32j.pdf +F32J +0 +37 +36 +Connector_FFC-FPC +Amphenol_F32R-1A7x1-11036_1x36-1MP_P0.5mm_Horizontal +Amphenol F32R/J FPC connector, 36 bottom-side contacts, 0.5mm pitch, SMT, https://cdn.amphenol-icc.com/media/wysiwyg/files/drawing/f32r-f32j.pdf +F32J +0 +38 +37 +Connector_FFC-FPC +Amphenol_F32R-1A7x1-11037_1x37-1MP_P0.5mm_Horizontal +Amphenol F32R/J FPC connector, 37 bottom-side contacts, 0.5mm pitch, SMT, https://cdn.amphenol-icc.com/media/wysiwyg/files/drawing/f32r-f32j.pdf +F32J +0 +39 +38 +Connector_FFC-FPC +Amphenol_F32R-1A7x1-11038_1x38-1MP_P0.5mm_Horizontal +Amphenol F32R/J FPC connector, 38 bottom-side contacts, 0.5mm pitch, SMT, https://cdn.amphenol-icc.com/media/wysiwyg/files/drawing/f32r-f32j.pdf +F32J +0 +40 +39 +Connector_FFC-FPC +Amphenol_F32R-1A7x1-11039_1x39-1MP_P0.5mm_Horizontal +Amphenol F32R/J FPC connector, 39 bottom-side contacts, 0.5mm pitch, SMT, https://cdn.amphenol-icc.com/media/wysiwyg/files/drawing/f32r-f32j.pdf +F32J +0 +41 +40 +Connector_FFC-FPC +Amphenol_F32R-1A7x1-11040_1x40-1MP_P0.5mm_Horizontal +Amphenol F32R/J FPC connector, 40 bottom-side contacts, 0.5mm pitch, SMT, https://cdn.amphenol-icc.com/media/wysiwyg/files/drawing/f32r-f32j.pdf +F32J +0 +42 +41 +Connector_FFC-FPC +Amphenol_F32R-1A7x1-11041_1x41-1MP_P0.5mm_Horizontal +Amphenol F32R/J FPC connector, 41 bottom-side contacts, 0.5mm pitch, SMT, https://cdn.amphenol-icc.com/media/wysiwyg/files/drawing/f32r-f32j.pdf +F32J +0 +43 +42 +Connector_FFC-FPC +Amphenol_F32R-1A7x1-11042_1x42-1MP_P0.5mm_Horizontal +Amphenol F32R/J FPC connector, 42 bottom-side contacts, 0.5mm pitch, SMT, https://cdn.amphenol-icc.com/media/wysiwyg/files/drawing/f32r-f32j.pdf +F32J +0 +44 +43 +Connector_FFC-FPC +Amphenol_F32R-1A7x1-11043_1x43-1MP_P0.5mm_Horizontal +Amphenol F32R/J FPC connector, 43 bottom-side contacts, 0.5mm pitch, SMT, https://cdn.amphenol-icc.com/media/wysiwyg/files/drawing/f32r-f32j.pdf +F32J +0 +45 +44 +Connector_FFC-FPC +Amphenol_F32R-1A7x1-11044_1x44-1MP_P0.5mm_Horizontal +Amphenol F32R/J FPC connector, 44 bottom-side contacts, 0.5mm pitch, SMT, https://cdn.amphenol-icc.com/media/wysiwyg/files/drawing/f32r-f32j.pdf +F32J +0 +46 +45 +Connector_FFC-FPC +Amphenol_F32R-1A7x1-11045_1x45-1MP_P0.5mm_Horizontal +Amphenol F32R/J FPC connector, 45 bottom-side contacts, 0.5mm pitch, SMT, https://cdn.amphenol-icc.com/media/wysiwyg/files/drawing/f32r-f32j.pdf +F32J +0 +47 +46 +Connector_FFC-FPC +Amphenol_F32R-1A7x1-11046_1x46-1MP_P0.5mm_Horizontal +Amphenol F32R/J FPC connector, 46 bottom-side contacts, 0.5mm pitch, SMT, https://cdn.amphenol-icc.com/media/wysiwyg/files/drawing/f32r-f32j.pdf +F32J +0 +48 +47 +Connector_FFC-FPC +Amphenol_F32R-1A7x1-11047_1x47-1MP_P0.5mm_Horizontal +Amphenol F32R/J FPC connector, 47 bottom-side contacts, 0.5mm pitch, SMT, https://cdn.amphenol-icc.com/media/wysiwyg/files/drawing/f32r-f32j.pdf +F32J +0 +49 +48 +Connector_FFC-FPC +Amphenol_F32R-1A7x1-11048_1x48-1MP_P0.5mm_Horizontal +Amphenol F32R/J FPC connector, 48 bottom-side contacts, 0.5mm pitch, SMT, https://cdn.amphenol-icc.com/media/wysiwyg/files/drawing/f32r-f32j.pdf +F32J +0 +50 +49 +Connector_FFC-FPC +Amphenol_F32R-1A7x1-11049_1x49-1MP_P0.5mm_Horizontal +Amphenol F32R/J FPC connector, 49 bottom-side contacts, 0.5mm pitch, SMT, https://cdn.amphenol-icc.com/media/wysiwyg/files/drawing/f32r-f32j.pdf +F32J +0 +51 +50 +Connector_FFC-FPC +Amphenol_F32R-1A7x1-11050_1x50-1MP_P0.5mm_Horizontal +Amphenol F32R/J FPC connector, 50 bottom-side contacts, 0.5mm pitch, SMT, https://cdn.amphenol-icc.com/media/wysiwyg/files/drawing/f32r-f32j.pdf +F32J +0 +52 +51 +Connector_FFC-FPC +Amphenol_F32R-1A7x1-11051_1x51-1MP_P0.5mm_Horizontal +Amphenol F32R/J FPC connector, 51 bottom-side contacts, 0.5mm pitch, SMT, https://cdn.amphenol-icc.com/media/wysiwyg/files/drawing/f32r-f32j.pdf +F32J +0 +53 +52 +Connector_FFC-FPC +Amphenol_F32R-1A7x1-11052_1x52-1MP_P0.5mm_Horizontal +Amphenol F32R/J FPC connector, 52 bottom-side contacts, 0.5mm pitch, SMT, https://cdn.amphenol-icc.com/media/wysiwyg/files/drawing/f32r-f32j.pdf +F32J +0 +54 +53 +Connector_FFC-FPC +Amphenol_F32R-1A7x1-11053_1x53-1MP_P0.5mm_Horizontal +Amphenol F32R/J FPC connector, 53 bottom-side contacts, 0.5mm pitch, SMT, https://cdn.amphenol-icc.com/media/wysiwyg/files/drawing/f32r-f32j.pdf +F32J +0 +55 +54 +Connector_FFC-FPC +Amphenol_F32R-1A7x1-11054_1x54-1MP_P0.5mm_Horizontal +Amphenol F32R/J FPC connector, 54 bottom-side contacts, 0.5mm pitch, SMT, https://cdn.amphenol-icc.com/media/wysiwyg/files/drawing/f32r-f32j.pdf +F32J +0 +56 +55 +Connector_FFC-FPC +Amphenol_F32R-1A7x1-11055_1x55-1MP_P0.5mm_Horizontal +Amphenol F32R/J FPC connector, 55 bottom-side contacts, 0.5mm pitch, SMT, https://cdn.amphenol-icc.com/media/wysiwyg/files/drawing/f32r-f32j.pdf +F32J +0 +57 +56 +Connector_FFC-FPC +Amphenol_F32R-1A7x1-11056_1x56-1MP_P0.5mm_Horizontal +Amphenol F32R/J FPC connector, 56 bottom-side contacts, 0.5mm pitch, SMT, https://cdn.amphenol-icc.com/media/wysiwyg/files/drawing/f32r-f32j.pdf +F32J +0 +58 +57 +Connector_FFC-FPC +Amphenol_F32R-1A7x1-11057_1x57-1MP_P0.5mm_Horizontal +Amphenol F32R/J FPC connector, 57 bottom-side contacts, 0.5mm pitch, SMT, https://cdn.amphenol-icc.com/media/wysiwyg/files/drawing/f32r-f32j.pdf +F32J +0 +59 +58 +Connector_FFC-FPC +Amphenol_F32R-1A7x1-11058_1x58-1MP_P0.5mm_Horizontal +Amphenol F32R/J FPC connector, 58 bottom-side contacts, 0.5mm pitch, SMT, https://cdn.amphenol-icc.com/media/wysiwyg/files/drawing/f32r-f32j.pdf +F32J +0 +60 +59 +Connector_FFC-FPC +Amphenol_F32R-1A7x1-11059_1x59-1MP_P0.5mm_Horizontal +Amphenol F32R/J FPC connector, 59 bottom-side contacts, 0.5mm pitch, SMT, https://cdn.amphenol-icc.com/media/wysiwyg/files/drawing/f32r-f32j.pdf +F32J +0 +61 +60 +Connector_FFC-FPC +Amphenol_F32R-1A7x1-11060_1x60-1MP_P0.5mm_Horizontal +Amphenol F32R/J FPC connector, 60 bottom-side contacts, 0.5mm pitch, SMT, https://cdn.amphenol-icc.com/media/wysiwyg/files/drawing/f32r-f32j.pdf +F32J +0 +62 +61 +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_FH26-13S-0.3SHW_2Rows-13Pins-1MP_P0.60mm_Horizontal +Hirose 0.30mm Pitch FFC/FPC, FH26-13S-0.3SHW, 13 Circuits (https://www.hirose.com/en/product/document?clcode=&productname=&series=FH26&documenttype=Catalog&lang=en&documentid=D49355_en), generated with kicad-footprint-generator +connector Hirose horizontal +0 +15 +14 +Connector_FFC-FPC +Hirose_FH26-15S-0.3SHW_2Rows-15Pins-1MP_P0.60mm_Horizontal +Hirose 0.30mm Pitch FFC/FPC, FH26-15S-0.3SHW, 15 Circuits (https://www.hirose.com/en/product/document?clcode=&productname=&series=FH26&documenttype=Catalog&lang=en&documentid=D49355_en), generated with kicad-footprint-generator +connector Hirose horizontal +0 +17 +16 +Connector_FFC-FPC +Hirose_FH26-17S-0.3SHW_2Rows-17Pins-1MP_P0.60mm_Horizontal +Hirose 0.30mm Pitch FFC/FPC, FH26-17S-0.3SHW, 17 Circuits (https://www.hirose.com/en/product/document?clcode=&productname=&series=FH26&documenttype=Catalog&lang=en&documentid=D49355_en), generated with kicad-footprint-generator +connector Hirose horizontal +0 +19 +18 +Connector_FFC-FPC +Hirose_FH26-19S-0.3SHW_2Rows-19Pins-1MP_P0.60mm_Horizontal +Hirose 0.30mm Pitch FFC/FPC, FH26-19S-0.3SHW, 19 Circuits (https://www.hirose.com/en/product/document?clcode=&productname=&series=FH26&documenttype=Catalog&lang=en&documentid=D49355_en), generated with kicad-footprint-generator +connector Hirose horizontal +0 +21 +20 +Connector_FFC-FPC +Hirose_FH26-21S-0.3SHW_2Rows-21Pins-1MP_P0.60mm_Horizontal +Hirose 0.30mm Pitch FFC/FPC, FH26-21S-0.3SHW, 21 Circuits (https://www.hirose.com/en/product/document?clcode=&productname=&series=FH26&documenttype=Catalog&lang=en&documentid=D49355_en), generated with kicad-footprint-generator +connector Hirose horizontal +0 +23 +22 +Connector_FFC-FPC +Hirose_FH26-23S-0.3SHW_2Rows-23Pins-1MP_P0.60mm_Horizontal +Hirose 0.30mm Pitch FFC/FPC, FH26-23S-0.3SHW, 23 Circuits (https://www.hirose.com/en/product/document?clcode=&productname=&series=FH26&documenttype=Catalog&lang=en&documentid=D49355_en), generated with kicad-footprint-generator +connector Hirose horizontal +0 +25 +24 +Connector_FFC-FPC +Hirose_FH26-25S-0.3SHW_2Rows-25Pins-1MP_P0.60mm_Horizontal +Hirose 0.30mm Pitch FFC/FPC, FH26-25S-0.3SHW, 25 Circuits (https://www.hirose.com/en/product/document?clcode=&productname=&series=FH26&documenttype=Catalog&lang=en&documentid=D49355_en), generated with kicad-footprint-generator +connector Hirose horizontal +0 +27 +26 +Connector_FFC-FPC +Hirose_FH26-27S-0.3SHW_2Rows-27Pins-1MP_P0.60mm_Horizontal +Hirose 0.30mm Pitch FFC/FPC, FH26-27S-0.3SHW, 27 Circuits (https://www.hirose.com/en/product/document?clcode=&productname=&series=FH26&documenttype=Catalog&lang=en&documentid=D49355_en), generated with kicad-footprint-generator +connector Hirose horizontal +0 +29 +28 +Connector_FFC-FPC +Hirose_FH26-29S-0.3SHW_2Rows-29Pins-1MP_P0.60mm_Horizontal +Hirose 0.30mm Pitch FFC/FPC, FH26-29S-0.3SHW, 29 Circuits (https://www.hirose.com/en/product/document?clcode=&productname=&series=FH26&documenttype=Catalog&lang=en&documentid=D49355_en), generated with kicad-footprint-generator +connector Hirose horizontal +0 +31 +30 +Connector_FFC-FPC +Hirose_FH26-31S-0.3SHW_2Rows-31Pins-1MP_P0.60mm_Horizontal +Hirose 0.30mm Pitch FFC/FPC, FH26-31S-0.3SHW, 31 Circuits (https://www.hirose.com/en/product/document?clcode=&productname=&series=FH26&documenttype=Catalog&lang=en&documentid=D49355_en), generated with kicad-footprint-generator +connector Hirose horizontal +0 +33 +32 +Connector_FFC-FPC +Hirose_FH26-33S-0.3SHW_2Rows-33Pins-1MP_P0.60mm_Horizontal +Hirose 0.30mm Pitch FFC/FPC, FH26-33S-0.3SHW, 33 Circuits (https://www.hirose.com/en/product/document?clcode=&productname=&series=FH26&documenttype=Catalog&lang=en&documentid=D49355_en), generated with kicad-footprint-generator +connector Hirose horizontal +0 +35 +34 +Connector_FFC-FPC +Hirose_FH26-35S-0.3SHW_2Rows-35Pins-1MP_P0.60mm_Horizontal +Hirose 0.30mm Pitch FFC/FPC, FH26-35S-0.3SHW, 35 Circuits (https://www.hirose.com/en/product/document?clcode=&productname=&series=FH26&documenttype=Catalog&lang=en&documentid=D49355_en), generated with kicad-footprint-generator +connector Hirose horizontal +0 +37 +36 +Connector_FFC-FPC +Hirose_FH26-37S-0.3SHW_2Rows-37Pins-1MP_P0.60mm_Horizontal +Hirose 0.30mm Pitch FFC/FPC, FH26-37S-0.3SHW, 37 Circuits (https://www.hirose.com/en/product/document?clcode=&productname=&series=FH26&documenttype=Catalog&lang=en&documentid=D49355_en), generated with kicad-footprint-generator +connector Hirose horizontal +0 +39 +38 +Connector_FFC-FPC +Hirose_FH26-39S-0.3SHW_2Rows-39Pins-1MP_P0.60mm_Horizontal +Hirose 0.30mm Pitch FFC/FPC, FH26-39S-0.3SHW, 39 Circuits (https://www.hirose.com/en/product/document?clcode=&productname=&series=FH26&documenttype=Catalog&lang=en&documentid=D49355_en), generated with kicad-footprint-generator +connector Hirose horizontal +0 +41 +40 +Connector_FFC-FPC +Hirose_FH26-41S-0.3SHW_2Rows-41Pins-1MP_P0.60mm_Horizontal +Hirose 0.30mm Pitch FFC/FPC, FH26-41S-0.3SHW, 41 Circuits (https://www.hirose.com/en/product/document?clcode=&productname=&series=FH26&documenttype=Catalog&lang=en&documentid=D49355_en), generated with kicad-footprint-generator +connector Hirose horizontal +0 +43 +42 +Connector_FFC-FPC +Hirose_FH26-45S-0.3SHW_2Rows-45Pins-1MP_P0.60mm_Horizontal +Hirose 0.30mm Pitch FFC/FPC, FH26-45S-0.3SHW, 45 Circuits (https://www.hirose.com/en/product/document?clcode=&productname=&series=FH26&documenttype=Catalog&lang=en&documentid=D49355_en), generated with kicad-footprint-generator +connector Hirose horizontal +0 +47 +46 +Connector_FFC-FPC +Hirose_FH26-51S-0.3SHW_2Rows-51Pins-1MP_P0.60mm_Horizontal +Hirose 0.30mm Pitch FFC/FPC, FH26-51S-0.3SHW, 51 Circuits (https://www.hirose.com/en/product/document?clcode=&productname=&series=FH26&documenttype=Catalog&lang=en&documentid=D49355_en), generated with kicad-footprint-generator +connector Hirose horizontal +0 +53 +52 +Connector_FFC-FPC +Hirose_FH26-55S-0.3SHW_2Rows-55Pins-1MP_P0.60mm_Horizontal +Hirose 0.30mm Pitch FFC/FPC, FH26-55S-0.3SHW, 55 Circuits (https://www.hirose.com/en/product/document?clcode=&productname=&series=FH26&documenttype=Catalog&lang=en&documentid=D49355_en), generated with kicad-footprint-generator +connector Hirose horizontal +0 +57 +56 +Connector_FFC-FPC +Hirose_FH26-57S-0.3SHW_2Rows-57Pins-1MP_P0.60mm_Horizontal +Hirose 0.30mm Pitch FFC/FPC, FH26-57S-0.3SHW, 57 Circuits (https://www.hirose.com/en/product/document?clcode=&productname=&series=FH26&documenttype=Catalog&lang=en&documentid=D49355_en), generated with kicad-footprint-generator +connector Hirose horizontal +0 +59 +58 +Connector_FFC-FPC +Hirose_FH26-61S-0.3SHW_2Rows-61Pins-1MP_P0.60mm_Horizontal +Hirose 0.30mm Pitch FFC/FPC, FH26-61S-0.3SHW, 61 Circuits (https://www.hirose.com/en/product/document?clcode=&productname=&series=FH26&documenttype=Catalog&lang=en&documentid=D49355_en), generated with kicad-footprint-generator +connector Hirose horizontal +0 +63 +62 +Connector_FFC-FPC +Hirose_FH26-71S-0.3SHW_2Rows-71Pins-1MP_P0.60mm_Horizontal +Hirose 0.30mm Pitch FFC/FPC, FH26-71S-0.3SHW, 71 Circuits (https://www.hirose.com/en/product/document?clcode=&productname=&series=FH26&documenttype=Catalog&lang=en&documentid=D49355_en), generated with kicad-footprint-generator +connector Hirose horizontal +0 +73 +72 +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +0 +81 +81 +Connector_FFC-FPC +JUSHUO_AFA07-S04FCA-00_1x4-1MP_P1.0mm_Horizontal +JUSHUO FPC connector, 04 bottom-side contacts, 1.0mm pitch, 2.5mm height, SMT, https://www.lcsc.com/datasheet/lcsc_datasheet_2304140030_JUSHUO-AFA07-S04FCA-00_C262710.pdf +jushuo fpc +0 +6 +5 +Connector_FFC-FPC +JUSHUO_AFA07-S05FCA-00_1x5-1MP_P1.0mm_Horizontal +JUSHUO FPC connector, 05 bottom-side contacts, 1.0mm pitch, 2.5mm height, SMT, https://www.lcsc.com/datasheet/lcsc_datasheet_2304140030_JUSHUO-AFA07-S04FCA-00_C262710.pdf +jushuo fpc +0 +7 +6 +Connector_FFC-FPC +JUSHUO_AFA07-S06FCA-00_1x6-1MP_P1.0mm_Horizontal +JUSHUO FPC connector, 06 bottom-side contacts, 1.0mm pitch, 2.5mm height, SMT, https://www.lcsc.com/datasheet/lcsc_datasheet_2304140030_JUSHUO-AFA07-S04FCA-00_C262710.pdf +jushuo fpc +0 +8 +7 +Connector_FFC-FPC +JUSHUO_AFA07-S07FCA-00_1x7-1MP_P1.0mm_Horizontal +JUSHUO FPC connector, 07 bottom-side contacts, 1.0mm pitch, 2.5mm height, SMT, https://www.lcsc.com/datasheet/lcsc_datasheet_2304140030_JUSHUO-AFA07-S04FCA-00_C262710.pdf +jushuo fpc +0 +9 +8 +Connector_FFC-FPC +JUSHUO_AFA07-S08FCA-00_1x8-1MP_P1.0mm_Horizontal +JUSHUO FPC connector, 08 bottom-side contacts, 1.0mm pitch, 2.5mm height, SMT, https://www.lcsc.com/datasheet/lcsc_datasheet_2304140030_JUSHUO-AFA07-S04FCA-00_C262710.pdf +jushuo fpc +0 +10 +9 +Connector_FFC-FPC +JUSHUO_AFA07-S09FCA-00_1x9-1MP_P1.0mm_Horizontal +JUSHUO FPC connector, 09 bottom-side contacts, 1.0mm pitch, 2.5mm height, SMT, https://www.lcsc.com/datasheet/lcsc_datasheet_2304140030_JUSHUO-AFA07-S04FCA-00_C262710.pdf +jushuo fpc +0 +11 +10 +Connector_FFC-FPC +JUSHUO_AFA07-S10FCA-00_1x10-1MP_P1.0mm_Horizontal +JUSHUO FPC connector, 10 bottom-side contacts, 1.0mm pitch, 2.5mm height, SMT, https://www.lcsc.com/datasheet/lcsc_datasheet_2304140030_JUSHUO-AFA07-S04FCA-00_C262710.pdf +jushuo fpc +0 +12 +11 +Connector_FFC-FPC +JUSHUO_AFA07-S11FCA-00_1x11-1MP_P1.0mm_Horizontal +JUSHUO FPC connector, 11 bottom-side contacts, 1.0mm pitch, 2.5mm height, SMT, https://www.lcsc.com/datasheet/lcsc_datasheet_2304140030_JUSHUO-AFA07-S04FCA-00_C262710.pdf +jushuo fpc +0 +13 +12 +Connector_FFC-FPC +JUSHUO_AFA07-S12FCA-00_1x12-1MP_P1.0mm_Horizontal +JUSHUO FPC connector, 12 bottom-side contacts, 1.0mm pitch, 2.5mm height, SMT, https://www.lcsc.com/datasheet/lcsc_datasheet_2304140030_JUSHUO-AFA07-S04FCA-00_C262710.pdf +jushuo fpc +0 +14 +13 +Connector_FFC-FPC +JUSHUO_AFA07-S13FCA-00_1x13-1MP_P1.0mm_Horizontal +JUSHUO FPC connector, 13 bottom-side contacts, 1.0mm pitch, 2.5mm height, SMT, https://www.lcsc.com/datasheet/lcsc_datasheet_2304140030_JUSHUO-AFA07-S04FCA-00_C262710.pdf +jushuo fpc +0 +15 +14 +Connector_FFC-FPC +JUSHUO_AFA07-S14FCA-00_1x14-1MP_P1.0mm_Horizontal +JUSHUO FPC connector, 14 bottom-side contacts, 1.0mm pitch, 2.5mm height, SMT, https://www.lcsc.com/datasheet/lcsc_datasheet_2304140030_JUSHUO-AFA07-S04FCA-00_C262710.pdf +jushuo fpc +0 +16 +15 +Connector_FFC-FPC +JUSHUO_AFA07-S15FCA-00_1x15-1MP_P1.0mm_Horizontal +JUSHUO FPC connector, 15 bottom-side contacts, 1.0mm pitch, 2.5mm height, SMT, https://www.lcsc.com/datasheet/lcsc_datasheet_2304140030_JUSHUO-AFA07-S04FCA-00_C262710.pdf +jushuo fpc +0 +17 +16 +Connector_FFC-FPC +JUSHUO_AFA07-S16FCA-00_1x16-1MP_P1.0mm_Horizontal +JUSHUO FPC connector, 16 bottom-side contacts, 1.0mm pitch, 2.5mm height, SMT, https://www.lcsc.com/datasheet/lcsc_datasheet_2304140030_JUSHUO-AFA07-S04FCA-00_C262710.pdf +jushuo fpc +0 +18 +17 +Connector_FFC-FPC +JUSHUO_AFA07-S17FCA-00_1x17-1MP_P1.0mm_Horizontal +JUSHUO FPC connector, 17 bottom-side contacts, 1.0mm pitch, 2.5mm height, SMT, https://www.lcsc.com/datasheet/lcsc_datasheet_2304140030_JUSHUO-AFA07-S04FCA-00_C262710.pdf +jushuo fpc +0 +19 +18 +Connector_FFC-FPC +JUSHUO_AFA07-S18FCA-00_1x18-1MP_P1.0mm_Horizontal +JUSHUO FPC connector, 18 bottom-side contacts, 1.0mm pitch, 2.5mm height, SMT, https://www.lcsc.com/datasheet/lcsc_datasheet_2304140030_JUSHUO-AFA07-S04FCA-00_C262710.pdf +jushuo fpc +0 +20 +19 +Connector_FFC-FPC +JUSHUO_AFA07-S19FCA-00_1x19-1MP_P1.0mm_Horizontal +JUSHUO FPC connector, 19 bottom-side contacts, 1.0mm pitch, 2.5mm height, SMT, https://www.lcsc.com/datasheet/lcsc_datasheet_2304140030_JUSHUO-AFA07-S04FCA-00_C262710.pdf +jushuo fpc +0 +21 +20 +Connector_FFC-FPC +JUSHUO_AFA07-S20FCA-00_1x20-1MP_P1.0mm_Horizontal +JUSHUO FPC connector, 20 bottom-side contacts, 1.0mm pitch, 2.5mm height, SMT, https://www.lcsc.com/datasheet/lcsc_datasheet_2304140030_JUSHUO-AFA07-S04FCA-00_C262710.pdf +jushuo fpc +0 +22 +21 +Connector_FFC-FPC +JUSHUO_AFA07-S21FCA-00_1x21-1MP_P1.0mm_Horizontal +JUSHUO FPC connector, 21 bottom-side contacts, 1.0mm pitch, 2.5mm height, SMT, https://www.lcsc.com/datasheet/lcsc_datasheet_2304140030_JUSHUO-AFA07-S04FCA-00_C262710.pdf +jushuo fpc +0 +23 +22 +Connector_FFC-FPC +JUSHUO_AFA07-S22FCA-00_1x22-1MP_P1.0mm_Horizontal +JUSHUO FPC connector, 22 bottom-side contacts, 1.0mm pitch, 2.5mm height, SMT, https://www.lcsc.com/datasheet/lcsc_datasheet_2304140030_JUSHUO-AFA07-S04FCA-00_C262710.pdf +jushuo fpc +0 +24 +23 +Connector_FFC-FPC +JUSHUO_AFA07-S23FCA-00_1x23-1MP_P1.0mm_Horizontal +JUSHUO FPC connector, 23 bottom-side contacts, 1.0mm pitch, 2.5mm height, SMT, https://www.lcsc.com/datasheet/lcsc_datasheet_2304140030_JUSHUO-AFA07-S04FCA-00_C262710.pdf +jushuo fpc +0 +25 +24 +Connector_FFC-FPC +JUSHUO_AFA07-S24FCA-00_1x24-1MP_P1.0mm_Horizontal +JUSHUO FPC connector, 24 bottom-side contacts, 1.0mm pitch, 2.5mm height, SMT, https://www.lcsc.com/datasheet/lcsc_datasheet_2304140030_JUSHUO-AFA07-S04FCA-00_C262710.pdf +jushuo fpc +0 +26 +25 +Connector_FFC-FPC +JUSHUO_AFA07-S25FCA-00_1x25-1MP_P1.0mm_Horizontal +JUSHUO FPC connector, 25 bottom-side contacts, 1.0mm pitch, 2.5mm height, SMT, https://www.lcsc.com/datasheet/lcsc_datasheet_2304140030_JUSHUO-AFA07-S04FCA-00_C262710.pdf +jushuo fpc +0 +27 +26 +Connector_FFC-FPC +JUSHUO_AFA07-S26FCA-00_1x26-1MP_P1.0mm_Horizontal +JUSHUO FPC connector, 26 bottom-side contacts, 1.0mm pitch, 2.5mm height, SMT, https://www.lcsc.com/datasheet/lcsc_datasheet_2304140030_JUSHUO-AFA07-S04FCA-00_C262710.pdf +jushuo fpc +0 +28 +27 +Connector_FFC-FPC +JUSHUO_AFA07-S27FCA-00_1x27-1MP_P1.0mm_Horizontal +JUSHUO FPC connector, 27 bottom-side contacts, 1.0mm pitch, 2.5mm height, SMT, https://www.lcsc.com/datasheet/lcsc_datasheet_2304140030_JUSHUO-AFA07-S04FCA-00_C262710.pdf +jushuo fpc +0 +29 +28 +Connector_FFC-FPC +JUSHUO_AFA07-S28FCA-00_1x28-1MP_P1.0mm_Horizontal +JUSHUO FPC connector, 28 bottom-side contacts, 1.0mm pitch, 2.5mm height, SMT, https://www.lcsc.com/datasheet/lcsc_datasheet_2304140030_JUSHUO-AFA07-S04FCA-00_C262710.pdf +jushuo fpc +0 +30 +29 +Connector_FFC-FPC +JUSHUO_AFA07-S29FCA-00_1x29-1MP_P1.0mm_Horizontal +JUSHUO FPC connector, 29 bottom-side contacts, 1.0mm pitch, 2.5mm height, SMT, https://www.lcsc.com/datasheet/lcsc_datasheet_2304140030_JUSHUO-AFA07-S04FCA-00_C262710.pdf +jushuo fpc +0 +31 +30 +Connector_FFC-FPC +Jushuo_AFC07-S06FCA-00_1x6-1MP_P0.50_Horizontal +Jushuo AFC07, FFC/FPC connector, AFC07-S06FCA-00, 6 Pins per row (https://datasheet.lcsc.com/lcsc/1811040204_JUSHUO-AFC07-S32FCC-00_C11061.pdf) +connector jushuo horizontal +0 +8 +7 +Connector_FFC-FPC +Jushuo_AFC07-S24FCA-00_1x24-1MP_P0.50_Horizontal +Jushuo AFC07, FFC/FPC connector, AFC07-S24FCA-00, 24 Pins per row (https://datasheet.lcsc.com/lcsc/1811040204_JUSHUO-AFC07-S32FCC-00_C11061.pdf) +connector jushuo horizontal +0 +26 +25 +Connector_FFC-FPC +Molex_52559-3652_2x18-1MP_P0.5mm_Vertical +Molex 0.50mm Pitch Easy-On Type FFC/FPC, 52559-3652, 36 Circuits (https://www.molex.com/pdm_docs/sd/525593652_sd.pdf) +connector Molex top entry +0 +40 +37 +Connector_FFC-FPC +Molex_54132-5033_1x50-1MP_P0.5mm_Horizontal +Molex FFC/FPC connector, 50 bottom-side contacts, 0.5mm pitch, 2.0mm height, https://www.molex.com/pdm_docs/sd/541325033_sd.pdf +FFC FPC +0 +54 +51 +Connector_FFC-FPC +Molex_54548-1071_1x10-1MP_P0.5mm_Horizontal +Molex FFC/FPC connector, 10 bottom-side contacts, 0.5mm pitch, 1.2mm height, https://www.molex.com/pdm_docs/sd/545481071_sd.pdf +FFC FPC connector +0 +12 +11 +Connector_FFC-FPC +Molex_200528-0040_1x04-1MP_P1.00mm_Horizontal +Molex Molex 1.00mm Pitch Easy-On BackFlip, Right-Angle, Bottom Contact FFC/FPC, 200528-0040, 4 Circuits (https://www.molex.com/pdm_docs/sd/2005280040_sd.pdf), generated with kicad-footprint-generator +connector Molex horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +0 +53 +52 +Connector_FFC-FPC +Omron_XF2M-4015-1A_1x40-1MP_P0.5mm_Horizontal +Omron FPC connector, 40 top-side contacts, 0.5mm pitch, SMT, https://omronfs.omron.com/en_US/ecb/products/pdf/en-xf2m.pdf +omron fpc xf2m +0 +42 +41 +Connector_FFC-FPC +TE_0-1734839-5_1x05-1MP_P0.5mm_Horizontal +TE FPC connector, 05 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 +te fpc 1734839 +0 +7 +6 +Connector_FFC-FPC +TE_0-1734839-6_1x06-1MP_P0.5mm_Horizontal +TE FPC connector, 06 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 +te fpc 1734839 +0 +8 +7 +Connector_FFC-FPC +TE_0-1734839-7_1x07-1MP_P0.5mm_Horizontal +TE FPC connector, 07 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 +te fpc 1734839 +0 +9 +8 +Connector_FFC-FPC +TE_0-1734839-8_1x08-1MP_P0.5mm_Horizontal +TE FPC connector, 08 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 +te fpc 1734839 +0 +10 +9 +Connector_FFC-FPC +TE_0-1734839-9_1x09-1MP_P0.5mm_Horizontal +TE FPC connector, 09 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 +te fpc 1734839 +0 +11 +10 +Connector_FFC-FPC +TE_1-84952-0_1x10-1MP_P1.0mm_Horizontal +TE FPC connector, 10 bottom-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84952&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84952-4 +te fpc 84952 +0 +12 +11 +Connector_FFC-FPC +TE_1-84952-1_1x11-1MP_P1.0mm_Horizontal +TE FPC connector, 11 bottom-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84952&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84952-4 +te fpc 84952 +0 +13 +12 +Connector_FFC-FPC +TE_1-84952-2_1x12-1MP_P1.0mm_Horizontal +TE FPC connector, 12 bottom-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84952&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84952-4 +te fpc 84952 +0 +14 +13 +Connector_FFC-FPC +TE_1-84952-3_1x13-1MP_P1.0mm_Horizontal +TE FPC connector, 13 bottom-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84952&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84952-4 +te fpc 84952 +0 +15 +14 +Connector_FFC-FPC +TE_1-84952-4_1x14-1MP_P1.0mm_Horizontal +TE FPC connector, 14 bottom-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84952&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84952-4 +te fpc 84952 +0 +16 +15 +Connector_FFC-FPC +TE_1-84952-5_1x15-1MP_P1.0mm_Horizontal +TE FPC connector, 15 bottom-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84952&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84952-4 +te fpc 84952 +0 +17 +16 +Connector_FFC-FPC +TE_1-84952-6_1x16-1MP_P1.0mm_Horizontal +TE FPC connector, 16 bottom-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84952&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84952-4 +te fpc 84952 +0 +18 +17 +Connector_FFC-FPC +TE_1-84952-7_1x17-1MP_P1.0mm_Horizontal +TE FPC connector, 17 bottom-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84952&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84952-4 +te fpc 84952 +0 +19 +18 +Connector_FFC-FPC +TE_1-84952-8_1x18-1MP_P1.0mm_Horizontal +TE FPC connector, 18 bottom-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84952&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84952-4 +te fpc 84952 +0 +20 +19 +Connector_FFC-FPC +TE_1-84952-9_1x19-1MP_P1.0mm_Horizontal +TE FPC connector, 19 bottom-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84952&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84952-4 +te fpc 84952 +0 +21 +20 +Connector_FFC-FPC +TE_1-84953-0_1x10-1MP_P1.0mm_Horizontal +TE FPC connector, 10 top-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84953&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84953-4 +te fpc 84953 +0 +12 +11 +Connector_FFC-FPC +TE_1-84953-1_1x11-1MP_P1.0mm_Horizontal +TE FPC connector, 11 top-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84953&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84953-4 +te fpc 84953 +0 +13 +12 +Connector_FFC-FPC +TE_1-84953-2_1x12-1MP_P1.0mm_Horizontal +TE FPC connector, 12 top-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84953&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84953-4 +te fpc 84953 +0 +14 +13 +Connector_FFC-FPC +TE_1-84953-3_1x13-1MP_P1.0mm_Horizontal +TE FPC connector, 13 top-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84953&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84953-4 +te fpc 84953 +0 +15 +14 +Connector_FFC-FPC +TE_1-84953-4_1x14-1MP_P1.0mm_Horizontal +TE FPC connector, 14 top-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84953&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84953-4 +te fpc 84953 +0 +16 +15 +Connector_FFC-FPC +TE_1-84953-5_1x15-1MP_P1.0mm_Horizontal +TE FPC connector, 15 top-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84953&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84953-4 +te fpc 84953 +0 +17 +16 +Connector_FFC-FPC +TE_1-84953-6_1x16-1MP_P1.0mm_Horizontal +TE FPC connector, 16 top-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84953&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84953-4 +te fpc 84953 +0 +18 +17 +Connector_FFC-FPC +TE_1-84953-7_1x17-1MP_P1.0mm_Horizontal +TE FPC connector, 17 top-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84953&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84953-4 +te fpc 84953 +0 +19 +18 +Connector_FFC-FPC +TE_1-84953-8_1x18-1MP_P1.0mm_Horizontal +TE FPC connector, 18 top-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84953&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84953-4 +te fpc 84953 +0 +20 +19 +Connector_FFC-FPC +TE_1-84953-9_1x19-1MP_P1.0mm_Horizontal +TE FPC connector, 19 top-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84953&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84953-4 +te fpc 84953 +0 +21 +20 +Connector_FFC-FPC +TE_1-84982-0_2Rows-10Pins-P1.0mm_Vertical +TE FPC connector, 10 top-side contacts, 1.0mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84982&DocType=Customer+Drawing&DocLang=English&PartCntxt=84982-8&DocFormat=pdf +1-84982-0 vertical +0 +10 +10 +Connector_FFC-FPC +TE_1-84982-1_2Rows-11Pins-P1.0mm_Vertical +TE FPC connector, 11 top-side contacts, 1.0mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84982&DocType=Customer+Drawing&DocLang=English&PartCntxt=84982-8&DocFormat=pdf +1-84982-1 vertical +0 +11 +11 +Connector_FFC-FPC +TE_1-84982-2_2Rows-12Pins-P1.0mm_Vertical +TE FPC connector, 12 top-side contacts, 1.0mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84982&DocType=Customer+Drawing&DocLang=English&PartCntxt=84982-8&DocFormat=pdf +1-84982-2 vertical +0 +12 +12 +Connector_FFC-FPC +TE_1-84982-3_2Rows-13Pins-P1.0mm_Vertical +TE FPC connector, 13 top-side contacts, 1.0mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84982&DocType=Customer+Drawing&DocLang=English&PartCntxt=84982-8&DocFormat=pdf +1-84982-3 vertical +0 +13 +13 +Connector_FFC-FPC +TE_1-84982-4_2Rows-14Pins-P1.0mm_Vertical +TE FPC connector, 14 top-side contacts, 1.0mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84982&DocType=Customer+Drawing&DocLang=English&PartCntxt=84982-8&DocFormat=pdf +1-84982-4 vertical +0 +14 +14 +Connector_FFC-FPC +TE_1-84982-5_2Rows-15Pins-P1.0mm_Vertical +TE FPC connector, 15 top-side contacts, 1.0mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84982&DocType=Customer+Drawing&DocLang=English&PartCntxt=84982-8&DocFormat=pdf +1-84982-5 vertical +0 +15 +15 +Connector_FFC-FPC +TE_1-84982-6_2Rows-16Pins-P1.0mm_Vertical +TE FPC connector, 16 top-side contacts, 1.0mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84982&DocType=Customer+Drawing&DocLang=English&PartCntxt=84982-8&DocFormat=pdf +1-84982-6 vertical +0 +16 +16 +Connector_FFC-FPC +TE_1-84982-7_2Rows-17Pins-P1.0mm_Vertical +TE FPC connector, 17 top-side contacts, 1.0mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84982&DocType=Customer+Drawing&DocLang=English&PartCntxt=84982-8&DocFormat=pdf +1-84982-7 vertical +0 +17 +17 +Connector_FFC-FPC +TE_1-84982-8_2Rows-18Pins-P1.0mm_Vertical +TE FPC connector, 18 top-side contacts, 1.0mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84982&DocType=Customer+Drawing&DocLang=English&PartCntxt=84982-8&DocFormat=pdf +1-84982-8 vertical +0 +18 +18 +Connector_FFC-FPC +TE_1-84982-9_2Rows-19Pins-P1.0mm_Vertical +TE FPC connector, 19 top-side contacts, 1.0mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84982&DocType=Customer+Drawing&DocLang=English&PartCntxt=84982-8&DocFormat=pdf +1-84982-9 vertical +0 +19 +19 +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-84982-0_2Rows-20Pins-P1.0mm_Vertical +TE FPC connector, 20 top-side contacts, 1.0mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84982&DocType=Customer+Drawing&DocLang=English&PartCntxt=84982-8&DocFormat=pdf +2-84982-0 vertical +0 +20 +20 +Connector_FFC-FPC +TE_2-84982-1_2Rows-21Pins-P1.0mm_Vertical +TE FPC connector, 21 top-side contacts, 1.0mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84982&DocType=Customer+Drawing&DocLang=English&PartCntxt=84982-8&DocFormat=pdf +2-84982-1 vertical +0 +21 +21 +Connector_FFC-FPC +TE_2-84982-2_2Rows-22Pins-P1.0mm_Vertical +TE FPC connector, 22 top-side contacts, 1.0mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84982&DocType=Customer+Drawing&DocLang=English&PartCntxt=84982-8&DocFormat=pdf +2-84982-2 vertical +0 +22 +22 +Connector_FFC-FPC +TE_2-84982-3_2Rows-23Pins-P1.0mm_Vertical +TE FPC connector, 23 top-side contacts, 1.0mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84982&DocType=Customer+Drawing&DocLang=English&PartCntxt=84982-8&DocFormat=pdf +2-84982-3 vertical +0 +23 +23 +Connector_FFC-FPC +TE_2-84982-4_2Rows-24Pins-P1.0mm_Vertical +TE FPC connector, 24 top-side contacts, 1.0mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84982&DocType=Customer+Drawing&DocLang=English&PartCntxt=84982-8&DocFormat=pdf +2-84982-4 vertical +0 +24 +24 +Connector_FFC-FPC +TE_2-84982-5_2Rows-25Pins-P1.0mm_Vertical +TE FPC connector, 25 top-side contacts, 1.0mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84982&DocType=Customer+Drawing&DocLang=English&PartCntxt=84982-8&DocFormat=pdf +2-84982-5 vertical +0 +25 +25 +Connector_FFC-FPC +TE_2-84982-6_2Rows-26Pins-P1.0mm_Vertical +TE FPC connector, 26 top-side contacts, 1.0mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84982&DocType=Customer+Drawing&DocLang=English&PartCntxt=84982-8&DocFormat=pdf +2-84982-6 vertical +0 +26 +26 +Connector_FFC-FPC +TE_2-84982-7_2Rows-27Pins-P1.0mm_Vertical +TE FPC connector, 27 top-side contacts, 1.0mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84982&DocType=Customer+Drawing&DocLang=English&PartCntxt=84982-8&DocFormat=pdf +2-84982-7 vertical +0 +27 +27 +Connector_FFC-FPC +TE_2-84982-8_2Rows-28Pins-P1.0mm_Vertical +TE FPC connector, 28 top-side contacts, 1.0mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84982&DocType=Customer+Drawing&DocLang=English&PartCntxt=84982-8&DocFormat=pdf +2-84982-8 vertical +0 +28 +28 +Connector_FFC-FPC +TE_2-84982-9_2Rows-29Pins-P1.0mm_Vertical +TE FPC connector, 29 top-side contacts, 1.0mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84982&DocType=Customer+Drawing&DocLang=English&PartCntxt=84982-8&DocFormat=pdf +2-84982-9 vertical +0 +29 +29 +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-84982-0_2Rows-30Pins-P1.0mm_Vertical +TE FPC connector, 30 top-side contacts, 1.0mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84982&DocType=Customer+Drawing&DocLang=English&PartCntxt=84982-8&DocFormat=pdf +3-84982-0 vertical +0 +30 +30 +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 +TE_84982-4_2Rows-04Pins-P1.0mm_Vertical +TE FPC connector, 04 top-side contacts, 1.0mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84982&DocType=Customer+Drawing&DocLang=English&PartCntxt=84982-8&DocFormat=pdf +84982-4 vertical +0 +4 +4 +Connector_FFC-FPC +TE_84982-5_2Rows-05Pins-P1.0mm_Vertical +TE FPC connector, 05 top-side contacts, 1.0mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84982&DocType=Customer+Drawing&DocLang=English&PartCntxt=84982-8&DocFormat=pdf +84982-5 vertical +0 +5 +5 +Connector_FFC-FPC +TE_84982-6_2Rows-06Pins-P1.0mm_Vertical +TE FPC connector, 06 top-side contacts, 1.0mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84982&DocType=Customer+Drawing&DocLang=English&PartCntxt=84982-8&DocFormat=pdf +84982-6 vertical +0 +6 +6 +Connector_FFC-FPC +TE_84982-7_2Rows-07Pins-P1.0mm_Vertical +TE FPC connector, 07 top-side contacts, 1.0mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84982&DocType=Customer+Drawing&DocLang=English&PartCntxt=84982-8&DocFormat=pdf +84982-7 vertical +0 +7 +7 +Connector_FFC-FPC +TE_84982-8_2Rows-08Pins-P1.0mm_Vertical +TE FPC connector, 08 top-side contacts, 1.0mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84982&DocType=Customer+Drawing&DocLang=English&PartCntxt=84982-8&DocFormat=pdf +84982-8 vertical +0 +8 +8 +Connector_FFC-FPC +TE_84982-9_2Rows-09Pins-P1.0mm_Vertical +TE FPC connector, 09 top-side contacts, 1.0mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84982&DocType=Customer+Drawing&DocLang=English&PartCntxt=84982-8&DocFormat=pdf +84982-9 vertical +0 +9 +9 +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_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, https://content.harwin.com/m/60a18b02a2a99a14/original/DRG-00168-Technical-Drawing-Datasheet-G125-FVXXX05L0P-pdf.pdf +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, https://content.harwin.com/m/60a18b02a2a99a14/original/DRG-00168-Technical-Drawing-Datasheet-G125-FVXXX05L0P-pdf.pdf +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, https://content.harwin.com/m/60a18b02a2a99a14/original/DRG-00168-Technical-Drawing-Datasheet-G125-FVXXX05L0P-pdf.pdf +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, https://content.harwin.com/m/60a18b02a2a99a14/original/DRG-00168-Technical-Drawing-Datasheet-G125-FVXXX05L0P-pdf.pdf +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, https://content.harwin.com/m/60a18b02a2a99a14/original/DRG-00168-Technical-Drawing-Datasheet-G125-FVXXX05L0P-pdf.pdf +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, https://content.harwin.com/m/60a18b02a2a99a14/original/DRG-00168-Technical-Drawing-Datasheet-G125-FVXXX05L0P-pdf.pdf +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, https://content.harwin.com/m/60a18b02a2a99a14/original/DRG-00168-Technical-Drawing-Datasheet-G125-FVXXX05L0P-pdf.pdf +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, https://content.harwin.com/m/60a18b02a2a99a14/original/DRG-00168-Technical-Drawing-Datasheet-G125-FVXXX05L0P-pdf.pdf +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, https://content.harwin.com/m/62fd8add13144f50/original/DRG-00182-Technical-Drawing-Datasheet-G125-MVXXX05LXP-pdf.pdf +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, https://content.harwin.com/m/62fd8add13144f50/original/DRG-00182-Technical-Drawing-Datasheet-G125-MVXXX05LXP-pdf.pdf +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, https://content.harwin.com/m/62fd8add13144f50/original/DRG-00182-Technical-Drawing-Datasheet-G125-MVXXX05LXP-pdf.pdf +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, https://content.harwin.com/m/62fd8add13144f50/original/DRG-00182-Technical-Drawing-Datasheet-G125-MVXXX05LXP-pdf.pdf +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, https://content.harwin.com/m/62fd8add13144f50/original/DRG-00182-Technical-Drawing-Datasheet-G125-MVXXX05LXP-pdf.pdf +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, https://content.harwin.com/m/62fd8add13144f50/original/DRG-00182-Technical-Drawing-Datasheet-G125-MVXXX05LXP-pdf.pdf +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, https://content.harwin.com/m/62fd8add13144f50/original/DRG-00182-Technical-Drawing-Datasheet-G125-MVXXX05LXP-pdf.pdf +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, https://content.harwin.com/m/62fd8add13144f50/original/DRG-00182-Technical-Drawing-Datasheet-G125-MVXXX05LXP-pdf.pdf +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, https://content.harwin.com/m/62fd8add13144f50/original/DRG-00182-Technical-Drawing-Datasheet-G125-MVXXX05LXP-pdf.pdf +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, https://content.harwin.com/m/62fd8add13144f50/original/DRG-00182-Technical-Drawing-Datasheet-G125-MVXXX05LXP-pdf.pdf +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, https://content.harwin.com/m/62fd8add13144f50/original/DRG-00182-Technical-Drawing-Datasheet-G125-MVXXX05LXP-pdf.pdf +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, https://content.harwin.com/m/62fd8add13144f50/original/DRG-00182-Technical-Drawing-Datasheet-G125-MVXXX05LXP-pdf.pdf +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, https://content.harwin.com/m/62fd8add13144f50/original/DRG-00182-Technical-Drawing-Datasheet-G125-MVXXX05LXP-pdf.pdf +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, https://content.harwin.com/m/62fd8add13144f50/original/DRG-00182-Technical-Drawing-Datasheet-G125-MVXXX05LXP-pdf.pdf +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, https://content.harwin.com/m/62fd8add13144f50/original/DRG-00182-Technical-Drawing-Datasheet-G125-MVXXX05LXP-pdf.pdf +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, https://content.harwin.com/m/62fd8add13144f50/original/DRG-00182-Technical-Drawing-Datasheet-G125-MVXXX05LXP-pdf.pdf +connector harwin gecko +0 +50 +50 +Connector_Harwin +Harwin_Gecko_G125-MS10605M2P_2x03_P1.25mm_Vertical +Harwin Male Vertical Surface Mount Double Row 1.25mm (0.049 inch) Pitch PCB Connector, G125-MS10605M2P, 3 Pins per row (https://cdn.harwin.com/pdfs/G125-MS1XX05M2P.pdf), generated with kicad-footprint-generator +connector Harwin Gecko vertical +0 +8 +7 +Connector_Harwin +Harwin_Gecko_G125-MS11005M2P_2x05_P1.25mm_Vertical +Harwin Male Vertical Surface Mount Double Row 1.25mm (0.049 inch) Pitch PCB Connector, G125-MS11005M2P, 5 Pins per row (https://cdn.harwin.com/pdfs/G125-MS1XX05M2P.pdf), generated with kicad-footprint-generator +connector Harwin Gecko vertical +0 +12 +11 +Connector_Harwin +Harwin_Gecko_G125-MS11205M2P_2x06_P1.25mm_Vertical +Harwin Male Vertical Surface Mount Double Row 1.25mm (0.049 inch) Pitch PCB Connector, G125-MS11205M2P, 6 Pins per row (https://cdn.harwin.com/pdfs/G125-MS1XX05M2P.pdf), generated with kicad-footprint-generator +connector Harwin Gecko vertical +0 +14 +13 +Connector_Harwin +Harwin_Gecko_G125-MS11605M2P_2x08_P1.25mm_Vertical +Harwin Male Vertical Surface Mount Double Row 1.25mm (0.049 inch) Pitch PCB Connector, G125-MS11605M2P, 8 Pins per row (https://cdn.harwin.com/pdfs/G125-MS1XX05M2P.pdf), generated with kicad-footprint-generator +connector Harwin Gecko vertical +0 +18 +17 +Connector_Harwin +Harwin_Gecko_G125-MS12005M2P_2x10_P1.25mm_Vertical +Harwin Male Vertical Surface Mount Double Row 1.25mm (0.049 inch) Pitch PCB Connector, G125-MS12005M2P, 10 Pins per row (https://cdn.harwin.com/pdfs/G125-MS1XX05M2P.pdf), generated with kicad-footprint-generator +connector Harwin Gecko vertical +0 +22 +21 +Connector_Harwin +Harwin_Gecko_G125-MS12605M2P_2x13_P1.25mm_Vertical +Harwin Male Vertical Surface Mount Double Row 1.25mm (0.049 inch) Pitch PCB Connector, G125-MS12605M2P, 13 Pins per row (https://cdn.harwin.com/pdfs/G125-MS1XX05M2P.pdf), generated with kicad-footprint-generator +connector Harwin Gecko vertical +0 +28 +27 +Connector_Harwin +Harwin_Gecko_G125-MS13405M2P_2x17_P1.25mm_Vertical +Harwin Male Vertical Surface Mount Double Row 1.25mm (0.049 inch) Pitch PCB Connector, G125-MS13405M2P, 17 Pins per row (https://cdn.harwin.com/pdfs/G125-MS1XX05M2P.pdf), generated with kicad-footprint-generator +connector Harwin Gecko vertical +0 +36 +35 +Connector_Harwin +Harwin_Gecko_G125-MS15005M2P_2x25_P1.25mm_Vertical +Harwin Male Vertical Surface Mount Double Row 1.25mm (0.049 inch) Pitch PCB Connector, G125-MS15005M2P, 25 Pins per row (https://cdn.harwin.com/pdfs/G125-MS1XX05M2P.pdf), generated with kicad-footprint-generator +connector Harwin Gecko vertical +0 +52 +51 +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 +3 +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 +4 +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 +5 +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 +6 +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 +7 +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 +8 +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 +9 +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 +10 +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 +11 +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 +12 +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 +13 +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 +14 +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 +15 +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 +16 +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 +17 +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 +18 +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 +19 +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 +20 +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +0 +40 +40 +Connector_Hirose +Hirose_BM23FR0.6-16DP-0.35V_2x08_1MP_Vertical +Hirose BM23 series connector, BM23FR0.6-16DP-0.35V (https://www.hirose.com/fr/product/document?clcode=CL0480-0290-0-95&productname=BM23FR0.6-16DP-0.35V(895)&series=BM23FR&documenttype=2DDrawing&lang=fr&documentid=D164551_en) +connector Hirose BM23 16pin header +0 +20 +17 +Connector_Hirose +Hirose_BM23FR0.6-16DS-0.35V_2x08_P0.35_1MP_Vertical +Hirose BM23 series connector, BM23FR0.6-16DS-0.35V (https://www.hirose.com/fr/product/document?clcode=CL0480-0295-0-51&productname=BM23FR0.6-16DS-0.35V(51)&series=BM23FR&documenttype=2DDrawing&lang=fr&documentid=D162179_en) +connector Hirose 16pin receptacle vertical +0 +20 +17 +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 horizontal +0 +4 +3 +Connector_Hirose +Hirose_DF3EA-02P-2V_1x02-1MP_P2.00mm_Vertical +Hirose series connector, DF3EA-02P-2V (https://www.hirose.com/en/product/document?clcode=CL0543-0315-0-21&productname=DF3EA-2P-2V(21)&series=DF3&documenttype=2DDrawing&lang=en&documentid=0001162002), generated with kicad-footprint-generator +connector Hirose vertical +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 horizontal +0 +5 +4 +Connector_Hirose +Hirose_DF3EA-03P-2V_1x03-1MP_P2.00mm_Vertical +Hirose series connector, DF3EA-03P-2V (https://www.hirose.com/en/product/document?clcode=CL0543-0315-0-21&productname=DF3EA-2P-2V(21)&series=DF3&documenttype=2DDrawing&lang=en&documentid=0001162002), generated with kicad-footprint-generator +connector Hirose vertical +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 horizontal +0 +6 +5 +Connector_Hirose +Hirose_DF3EA-04P-2V_1x04-1MP_P2.00mm_Vertical +Hirose series connector, DF3EA-04P-2V (https://www.hirose.com/en/product/document?clcode=CL0543-0315-0-21&productname=DF3EA-2P-2V(21)&series=DF3&documenttype=2DDrawing&lang=en&documentid=0001162002), generated with kicad-footprint-generator +connector Hirose vertical +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 horizontal +0 +7 +6 +Connector_Hirose +Hirose_DF3EA-05P-2V_1x05-1MP_P2.00mm_Vertical +Hirose series connector, DF3EA-05P-2V (https://www.hirose.com/en/product/document?clcode=CL0543-0315-0-21&productname=DF3EA-2P-2V(21)&series=DF3&documenttype=2DDrawing&lang=en&documentid=0001162002), generated with kicad-footprint-generator +connector Hirose vertical +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 horizontal +0 +8 +7 +Connector_Hirose +Hirose_DF3EA-06P-2V_1x06-1MP_P2.00mm_Vertical +Hirose series connector, DF3EA-06P-2V (https://www.hirose.com/en/product/document?clcode=CL0543-0315-0-21&productname=DF3EA-2P-2V(21)&series=DF3&documenttype=2DDrawing&lang=en&documentid=0001162002), generated with kicad-footprint-generator +connector Hirose vertical +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 horizontal +0 +9 +8 +Connector_Hirose +Hirose_DF3EA-07P-2V_1x07-1MP_P2.00mm_Vertical +Hirose series connector, DF3EA-07P-2V (https://www.hirose.com/en/product/document?clcode=CL0543-0315-0-21&productname=DF3EA-2P-2V(21)&series=DF3&documenttype=2DDrawing&lang=en&documentid=0001162002), generated with kicad-footprint-generator +connector Hirose vertical +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 horizontal +0 +10 +9 +Connector_Hirose +Hirose_DF3EA-08P-2V_1x08-1MP_P2.00mm_Vertical +Hirose series connector, DF3EA-08P-2V (https://www.hirose.com/en/product/document?clcode=CL0543-0315-0-21&productname=DF3EA-2P-2V(21)&series=DF3&documenttype=2DDrawing&lang=en&documentid=0001162002), generated with kicad-footprint-generator +connector Hirose vertical +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 horizontal +0 +11 +10 +Connector_Hirose +Hirose_DF3EA-09P-2V_1x09-1MP_P2.00mm_Vertical +Hirose series connector, DF3EA-09P-2V (https://www.hirose.com/en/product/document?clcode=CL0543-0315-0-21&productname=DF3EA-2P-2V(21)&series=DF3&documenttype=2DDrawing&lang=en&documentid=0001162002), generated with kicad-footprint-generator +connector Hirose vertical +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 horizontal +0 +12 +11 +Connector_Hirose +Hirose_DF3EA-10P-2V_1x10-1MP_P2.00mm_Vertical +Hirose series connector, DF3EA-10P-2V (https://www.hirose.com/en/product/document?clcode=CL0543-0315-0-21&productname=DF3EA-2P-2V(21)&series=DF3&documenttype=2DDrawing&lang=en&documentid=0001162002), generated with kicad-footprint-generator +connector Hirose vertical +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 horizontal +0 +13 +12 +Connector_Hirose +Hirose_DF3EA-11P-2V_1x11-1MP_P2.00mm_Vertical +Hirose series connector, DF3EA-11P-2V (https://www.hirose.com/en/product/document?clcode=CL0543-0315-0-21&productname=DF3EA-2P-2V(21)&series=DF3&documenttype=2DDrawing&lang=en&documentid=0001162002), generated with kicad-footprint-generator +connector Hirose vertical +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 horizontal +0 +14 +13 +Connector_Hirose +Hirose_DF3EA-12P-2V_1x12-1MP_P2.00mm_Vertical +Hirose series connector, DF3EA-12P-2V (https://www.hirose.com/en/product/document?clcode=CL0543-0315-0-21&productname=DF3EA-2P-2V(21)&series=DF3&documenttype=2DDrawing&lang=en&documentid=0001162002), generated with kicad-footprint-generator +connector Hirose vertical +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 horizontal +0 +15 +14 +Connector_Hirose +Hirose_DF3EA-13P-2V_1x13-1MP_P2.00mm_Vertical +Hirose series connector, DF3EA-13P-2V (https://www.hirose.com/en/product/document?clcode=CL0543-0315-0-21&productname=DF3EA-2P-2V(21)&series=DF3&documenttype=2DDrawing&lang=en&documentid=0001162002), generated with kicad-footprint-generator +connector Hirose vertical +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 horizontal +0 +16 +15 +Connector_Hirose +Hirose_DF3EA-14P-2V_1x14-1MP_P2.00mm_Vertical +Hirose series connector, DF3EA-14P-2V (https://www.hirose.com/en/product/document?clcode=CL0543-0315-0-21&productname=DF3EA-2P-2V(21)&series=DF3&documenttype=2DDrawing&lang=en&documentid=0001162002), generated with kicad-footprint-generator +connector Hirose vertical +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 horizontal +0 +17 +16 +Connector_Hirose +Hirose_DF3EA-15P-2V_1x15-1MP_P2.00mm_Vertical +Hirose series connector, DF3EA-15P-2V (https://www.hirose.com/en/product/document?clcode=CL0543-0315-0-21&productname=DF3EA-2P-2V(21)&series=DF3&documenttype=2DDrawing&lang=en&documentid=0001162002), generated with kicad-footprint-generator +connector Hirose vertical +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +0 +17 +16 +Connector_Hirose +Hirose_DF57H-2P-1.2V_1x02_P1.2mm_Socket +Low Profile Swing-Lock Wire-to-Board Connector for Power (source: https://www.hirose.com/en/product/document?clcode=&productname=&series=DF57&documenttype=Catalog&lang=en&documentid=en_DF57_CAT) +conn hirose socket low-profile power +0 +4 +2 +Connector_Hirose +Hirose_DF57H-2P-2.4V_1x02_P2.4mm_Socket +Low Profile Swing-Lock Wire-to-Board Connector for Power (source: https://www.hirose.com/en/product/document?clcode=&productname=&series=DF57&documenttype=Catalog&lang=en&documentid=en_DF57_CAT) +conn hirose socket low-profile power +0 +4 +2 +Connector_Hirose +Hirose_DF57H-3P-1.2V_1x03_P1.2mm_Socket +Low Profile Swing-Lock Wire-to-Board Connector for Power (source: https://www.hirose.com/en/product/document?clcode=&productname=&series=DF57&documenttype=Catalog&lang=en&documentid=en_DF57_CAT) +conn hirose socket low-profile power +0 +5 +3 +Connector_Hirose +Hirose_DF57H-4P-1.2V_1x04_P1.2mm_Socket +Low Profile Swing-Lock Wire-to-Board Connector for Power (source: https://www.hirose.com/en/product/document?clcode=&productname=&series=DF57&documenttype=Catalog&lang=en&documentid=en_DF57_CAT) +conn hirose socket low-profile power +0 +6 +4 +Connector_Hirose +Hirose_DF57H-5P-1.2V_1x05_P1.2mm_Socket +Low Profile Swing-Lock Wire-to-Board Connector for Power (source: https://www.hirose.com/en/product/document?clcode=&productname=&series=DF57&documenttype=Catalog&lang=en&documentid=en_DF57_CAT) +conn hirose socket low-profile power +0 +7 +5 +Connector_Hirose +Hirose_DF57H-6P-1.2V_1x06_P1.2mm_Socket +Low Profile Swing-Lock Wire-to-Board Connector for Power (source: https://www.hirose.com/en/product/document?clcode=&productname=&series=DF57&documenttype=Catalog&lang=en&documentid=en_DF57_CAT) +conn hirose socket low-profile power +0 +8 +6 +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_Hirose_DF40 +Hirose_DF40B(2.0)-12DS-0.4V_2x06-1MP_P0.4mm +0.4mm Pitch, Stacking Height 2.000000mm, Receptacle, vertical (source: https://www.hirose.com/en/product/document?clcode=&productname=&series=DF40&documenttype=Catalog&lang=en&documentid=en_DF40_CAT) +conn hirose board-to-board mezzanine stacking receptacle +0 +16 +13 +Connector_Hirose_DF40 +Hirose_DF40B(2.0)-80DS-0.4V_2x40-1MP_P0.4mm +0.4mm Pitch, Stacking Height 2.000000mm, Receptacle, vertical (source: https://www.hirose.com/en/product/document?clcode=&productname=&series=DF40&documenttype=Catalog&lang=en&documentid=en_DF40_CAT) +conn hirose board-to-board mezzanine stacking receptacle +0 +84 +81 +Connector_Hirose_DF40 +Hirose_DF40B-10DS-0.4V_2x05-1MP_P0.4mm +0.4mm Pitch, Stacking Height 1.500000mm, Receptacle, vertical (source: https://www.hirose.com/en/product/document?clcode=&productname=&series=DF40&documenttype=Catalog&lang=en&documentid=en_DF40_CAT) +conn hirose board-to-board mezzanine stacking receptacle +0 +14 +11 +Connector_Hirose_DF40 +Hirose_DF40B-12DS-0.4V_2x06-1MP_P0.4mm +0.4mm Pitch, Stacking Height 1.500000mm, Receptacle, vertical (source: https://www.hirose.com/en/product/document?clcode=&productname=&series=DF40&documenttype=Catalog&lang=en&documentid=en_DF40_CAT) +conn hirose board-to-board mezzanine stacking receptacle +0 +16 +13 +Connector_Hirose_DF40 +Hirose_DF40B-30DS-0.4V_2x15-1MP_P0.4mm +0.4mm Pitch, Stacking Height 1.500000mm, Receptacle, vertical (source: https://www.hirose.com/en/product/document?clcode=&productname=&series=DF40&documenttype=Catalog&lang=en&documentid=en_DF40_CAT) +conn hirose board-to-board mezzanine stacking receptacle +0 +34 +31 +Connector_Hirose_DF40 +Hirose_DF40B-50DS-0.4V_2x25-1MP_P0.4mm +0.4mm Pitch, Stacking Height 1.500000mm, Receptacle, vertical (source: https://www.hirose.com/en/product/document?clcode=&productname=&series=DF40&documenttype=Catalog&lang=en&documentid=en_DF40_CAT) +conn hirose board-to-board mezzanine stacking receptacle +0 +54 +51 +Connector_Hirose_DF40 +Hirose_DF40B-60DS-0.4V_2x30-1MP_P0.4mm +0.4mm Pitch, Stacking Height 1.500000mm, Receptacle, vertical (source: https://www.hirose.com/en/product/document?clcode=&productname=&series=DF40&documenttype=Catalog&lang=en&documentid=en_DF40_CAT) +conn hirose board-to-board mezzanine stacking receptacle +0 +64 +61 +Connector_Hirose_DF40 +Hirose_DF40B-80DS-0.4V_2x40-1MP_P0.4mm +0.4mm Pitch, Stacking Height 1.500000mm, Receptacle, vertical (source: https://www.hirose.com/en/product/document?clcode=&productname=&series=DF40&documenttype=Catalog&lang=en&documentid=en_DF40_CAT) +conn hirose board-to-board mezzanine stacking receptacle +0 +84 +81 +Connector_Hirose_DF40 +Hirose_DF40C(2.0)-20DS-0.4V_2x10_P0.4mm +0.4mm Pitch, Stacking Height 2.000000mm, Receptacle, vertical (source: https://www.hirose.com/en/product/document?clcode=&productname=&series=DF40&documenttype=Catalog&lang=en&documentid=en_DF40_CAT) +conn hirose board-to-board mezzanine stacking receptacle +0 +20 +20 +Connector_Hirose_DF40 +Hirose_DF40C(2.0)-24DS-0.4V_2x12_P0.4mm +0.4mm Pitch, Stacking Height 2.000000mm, Receptacle, vertical (source: https://www.hirose.com/en/product/document?clcode=&productname=&series=DF40&documenttype=Catalog&lang=en&documentid=en_DF40_CAT) +conn hirose board-to-board mezzanine stacking receptacle +0 +24 +24 +Connector_Hirose_DF40 +Hirose_DF40C(2.0)-30DS-0.4V_2x15_P0.4mm +0.4mm Pitch, Stacking Height 2.000000mm, Receptacle, vertical (source: https://www.hirose.com/en/product/document?clcode=&productname=&series=DF40&documenttype=Catalog&lang=en&documentid=en_DF40_CAT) +conn hirose board-to-board mezzanine stacking receptacle +0 +30 +30 +Connector_Hirose_DF40 +Hirose_DF40C(2.0)-40DS-0.4V_2x20_P0.4mm +0.4mm Pitch, Stacking Height 2.000000mm, Receptacle, vertical (source: https://www.hirose.com/en/product/document?clcode=&productname=&series=DF40&documenttype=Catalog&lang=en&documentid=en_DF40_CAT) +conn hirose board-to-board mezzanine stacking receptacle +0 +40 +40 +Connector_Hirose_DF40 +Hirose_DF40C(2.0)-50DS-0.4V_2x25_P0.4mm +0.4mm Pitch, Stacking Height 2.000000mm, Receptacle, vertical (source: https://www.hirose.com/en/product/document?clcode=&productname=&series=DF40&documenttype=Catalog&lang=en&documentid=en_DF40_CAT) +conn hirose board-to-board mezzanine stacking receptacle +0 +50 +50 +Connector_Hirose_DF40 +Hirose_DF40C(2.0)-60DS-0.4V_2x30_P0.4mm +0.4mm Pitch, Stacking Height 2.000000mm, Receptacle, vertical (source: https://www.hirose.com/en/product/document?clcode=&productname=&series=DF40&documenttype=Catalog&lang=en&documentid=en_DF40_CAT) +conn hirose board-to-board mezzanine stacking receptacle +0 +60 +60 +Connector_Hirose_DF40 +Hirose_DF40C(2.0)-70DS-0.4V_2x35_P0.4mm +0.4mm Pitch, Stacking Height 2.000000mm, Receptacle, vertical (source: https://www.hirose.com/en/product/document?clcode=&productname=&series=DF40&documenttype=Catalog&lang=en&documentid=en_DF40_CAT) +conn hirose board-to-board mezzanine stacking receptacle +0 +70 +70 +Connector_Hirose_DF40 +Hirose_DF40C(2.0)-80DS-0.4V_2x40_P0.4mm +0.4mm Pitch, Stacking Height 2.000000mm, Receptacle, vertical (source: https://www.hirose.com/en/product/document?clcode=&productname=&series=DF40&documenttype=Catalog&lang=en&documentid=en_DF40_CAT) +conn hirose board-to-board mezzanine stacking receptacle +0 +80 +80 +Connector_Hirose_DF40 +Hirose_DF40C-10DP-0.4V_2x05-1MP_P0.4mm +0.4mm Pitch, Plug, vertical (source: https://www.hirose.com/en/product/document?clcode=&productname=&series=DF40&documenttype=Catalog&lang=en&documentid=en_DF40_CAT) +conn hirose board-to-board mezzanine stacking plug +0 +14 +11 +Connector_Hirose_DF40 +Hirose_DF40C-12DP-0.4V_2x06-1MP_P0.4mm +0.4mm Pitch, Plug, vertical (source: https://www.hirose.com/en/product/document?clcode=&productname=&series=DF40&documenttype=Catalog&lang=en&documentid=en_DF40_CAT) +conn hirose board-to-board mezzanine stacking plug +0 +16 +13 +Connector_Hirose_DF40 +Hirose_DF40C-20DP-0.4V_2x10-1MP_P0.4mm +0.4mm Pitch, Plug, vertical (source: https://www.hirose.com/en/product/document?clcode=&productname=&series=DF40&documenttype=Catalog&lang=en&documentid=en_DF40_CAT) +conn hirose board-to-board mezzanine stacking plug +0 +24 +21 +Connector_Hirose_DF40 +Hirose_DF40C-20DS-0.4V_2x10_P0.4mm +0.4mm Pitch, Stacking Height 1.500000mm, Receptacle, vertical (source: https://www.hirose.com/en/product/document?clcode=&productname=&series=DF40&documenttype=Catalog&lang=en&documentid=en_DF40_CAT) +conn hirose board-to-board mezzanine stacking receptacle +0 +20 +20 +Connector_Hirose_DF40 +Hirose_DF40C-24DP-0.4V_2x12-1MP_P0.4mm +0.4mm Pitch, Plug, vertical (source: https://www.hirose.com/en/product/document?clcode=&productname=&series=DF40&documenttype=Catalog&lang=en&documentid=en_DF40_CAT) +conn hirose board-to-board mezzanine stacking plug +0 +28 +25 +Connector_Hirose_DF40 +Hirose_DF40C-24DS-0.4V_2x12_P0.4mm +0.4mm Pitch, Stacking Height 1.500000mm, Receptacle, vertical (source: https://www.hirose.com/en/product/document?clcode=&productname=&series=DF40&documenttype=Catalog&lang=en&documentid=en_DF40_CAT) +conn hirose board-to-board mezzanine stacking receptacle +0 +24 +24 +Connector_Hirose_DF40 +Hirose_DF40C-30DP-0.4V_2x15-1MP_P0.4mm +0.4mm Pitch, Plug, vertical (source: https://www.hirose.com/en/product/document?clcode=&productname=&series=DF40&documenttype=Catalog&lang=en&documentid=en_DF40_CAT) +conn hirose board-to-board mezzanine stacking plug +0 +34 +31 +Connector_Hirose_DF40 +Hirose_DF40C-30DS-0.4V_2x15_P0.4mm +0.4mm Pitch, Stacking Height 1.500000mm, Receptacle, vertical (source: https://www.hirose.com/en/product/document?clcode=&productname=&series=DF40&documenttype=Catalog&lang=en&documentid=en_DF40_CAT) +conn hirose board-to-board mezzanine stacking receptacle +0 +30 +30 +Connector_Hirose_DF40 +Hirose_DF40C-34DP-0.4V_2x17-1MP_P0.4mm +0.4mm Pitch, Plug, vertical (source: https://www.hirose.com/en/product/document?clcode=&productname=&series=DF40&documenttype=Catalog&lang=en&documentid=en_DF40_CAT) +conn hirose board-to-board mezzanine stacking plug +0 +38 +35 +Connector_Hirose_DF40 +Hirose_DF40C-34DS-0.4V_2x17_P0.4mm +0.4mm Pitch, Stacking Height 1.500000mm, Receptacle, vertical (source: https://www.hirose.com/en/product/document?clcode=&productname=&series=DF40&documenttype=Catalog&lang=en&documentid=en_DF40_CAT) +conn hirose board-to-board mezzanine stacking receptacle +0 +34 +34 +Connector_Hirose_DF40 +Hirose_DF40C-40DP-0.4V_2x20-1MP_P0.4mm +0.4mm Pitch, Plug, vertical (source: https://www.hirose.com/en/product/document?clcode=&productname=&series=DF40&documenttype=Catalog&lang=en&documentid=en_DF40_CAT) +conn hirose board-to-board mezzanine stacking plug +0 +44 +41 +Connector_Hirose_DF40 +Hirose_DF40C-40DS-0.4V_2x20_P0.4mm +0.4mm Pitch, Stacking Height 1.500000mm, Receptacle, vertical (source: https://www.hirose.com/en/product/document?clcode=&productname=&series=DF40&documenttype=Catalog&lang=en&documentid=en_DF40_CAT) +conn hirose board-to-board mezzanine stacking receptacle +0 +40 +40 +Connector_Hirose_DF40 +Hirose_DF40C-44DP-0.4V_2x22-1MP_P0.4mm +0.4mm Pitch, Plug, vertical (source: https://www.hirose.com/en/product/document?clcode=&productname=&series=DF40&documenttype=Catalog&lang=en&documentid=en_DF40_CAT) +conn hirose board-to-board mezzanine stacking plug +0 +48 +45 +Connector_Hirose_DF40 +Hirose_DF40C-50DP-0.4V_2x25-1MP_P0.4mm +0.4mm Pitch, Plug, vertical (source: https://www.hirose.com/en/product/document?clcode=&productname=&series=DF40&documenttype=Catalog&lang=en&documentid=en_DF40_CAT) +conn hirose board-to-board mezzanine stacking plug +0 +54 +51 +Connector_Hirose_DF40 +Hirose_DF40C-50DS-0.4V_2x25_P0.4mm +0.4mm Pitch, Stacking Height 1.500000mm, Receptacle, vertical (source: https://www.hirose.com/en/product/document?clcode=&productname=&series=DF40&documenttype=Catalog&lang=en&documentid=en_DF40_CAT) +conn hirose board-to-board mezzanine stacking receptacle +0 +50 +50 +Connector_Hirose_DF40 +Hirose_DF40C-60DP-0.4V_2x30-1MP_P0.4mm +0.4mm Pitch, Plug, vertical (source: https://www.hirose.com/en/product/document?clcode=&productname=&series=DF40&documenttype=Catalog&lang=en&documentid=en_DF40_CAT) +conn hirose board-to-board mezzanine stacking plug +0 +64 +61 +Connector_Hirose_DF40 +Hirose_DF40C-60DS-0.4V_2x30_P0.4mm +0.4mm Pitch, Stacking Height 1.500000mm, Receptacle, vertical (source: https://www.hirose.com/en/product/document?clcode=&productname=&series=DF40&documenttype=Catalog&lang=en&documentid=en_DF40_CAT) +conn hirose board-to-board mezzanine stacking receptacle +0 +60 +60 +Connector_Hirose_DF40 +Hirose_DF40C-70DP-0.4V_2x35-1MP_P0.4mm +0.4mm Pitch, Plug, vertical (source: https://www.hirose.com/en/product/document?clcode=&productname=&series=DF40&documenttype=Catalog&lang=en&documentid=en_DF40_CAT) +conn hirose board-to-board mezzanine stacking plug +0 +74 +71 +Connector_Hirose_DF40 +Hirose_DF40C-70DS-0.4V_2x35_P0.4mm +0.4mm Pitch, Stacking Height 1.500000mm, Receptacle, vertical (source: https://www.hirose.com/en/product/document?clcode=&productname=&series=DF40&documenttype=Catalog&lang=en&documentid=en_DF40_CAT) +conn hirose board-to-board mezzanine stacking receptacle +0 +70 +70 +Connector_Hirose_DF40 +Hirose_DF40C-80DP-0.4V_2x40-1MP_P0.4mm +0.4mm Pitch, Plug, vertical (source: https://www.hirose.com/en/product/document?clcode=&productname=&series=DF40&documenttype=Catalog&lang=en&documentid=en_DF40_CAT) +conn hirose board-to-board mezzanine stacking plug +0 +84 +81 +Connector_Hirose_DF40 +Hirose_DF40C-80DS-0.4V_2x40_P0.4mm +0.4mm Pitch, Stacking Height 1.500000mm, Receptacle, vertical (source: https://www.hirose.com/en/product/document?clcode=&productname=&series=DF40&documenttype=Catalog&lang=en&documentid=en_DF40_CAT) +conn hirose board-to-board mezzanine stacking receptacle +0 +80 +80 +Connector_Hirose_DF40 +Hirose_DF40C-90DP-0.4V_2x45-1MP_P0.4mm +0.4mm Pitch, Plug, vertical (source: https://www.hirose.com/en/product/document?clcode=&productname=&series=DF40&documenttype=Catalog&lang=en&documentid=en_DF40_CAT) +conn hirose board-to-board mezzanine stacking plug +0 +94 +91 +Connector_Hirose_DF40 +Hirose_DF40C-90DS-0.4V_2x45_P0.4mm +0.4mm Pitch, Stacking Height 1.500000mm, Receptacle, vertical (source: https://www.hirose.com/en/product/document?clcode=&productname=&series=DF40&documenttype=Catalog&lang=en&documentid=en_DF40_CAT) +conn hirose board-to-board mezzanine stacking receptacle +0 +90 +90 +Connector_Hirose_DF40 +Hirose_DF40C-100DP-0.4V_2x50-1MP_P0.4mm +0.4mm Pitch, Plug, vertical (source: https://www.hirose.com/en/product/document?clcode=&productname=&series=DF40&documenttype=Catalog&lang=en&documentid=en_DF40_CAT) +conn hirose board-to-board mezzanine stacking plug +0 +104 +101 +Connector_Hirose_DF40 +Hirose_DF40C-100DS-0.4V_2x50_P0.4mm +0.4mm Pitch, Stacking Height 1.500000mm, Receptacle, vertical (source: https://www.hirose.com/en/product/document?clcode=&productname=&series=DF40&documenttype=Catalog&lang=en&documentid=en_DF40_CAT) +conn hirose board-to-board mezzanine stacking receptacle +0 +100 +100 +Connector_Hirose_DF40 +Hirose_DF40C-120DP-0.4V_2x60-1MP_P0.4mm +0.4mm Pitch, Plug, vertical (source: https://www.hirose.com/en/product/document?clcode=&productname=&series=DF40&documenttype=Catalog&lang=en&documentid=en_DF40_CAT) +conn hirose board-to-board mezzanine stacking plug +0 +124 +121 +Connector_Hirose_DF40 +Hirose_DF40C-120DS-0.4V_2x60_P0.4mm +0.4mm Pitch, Stacking Height 1.500000mm, Receptacle, vertical (source: https://www.hirose.com/en/product/document?clcode=&productname=&series=DF40&documenttype=Catalog&lang=en&documentid=en_DF40_CAT) +conn hirose board-to-board mezzanine stacking receptacle +0 +120 +120 +Connector_Hirose_DF40 +Hirose_DF40HB(2.5)-10DS-0.4V_2x05-1MP_P0.4mm +0.4mm Pitch, Stacking Height 2.500000mm, Receptacle, vertical (source: https://www.hirose.com/en/product/document?clcode=&productname=&series=DF40&documenttype=Catalog&lang=en&documentid=en_DF40_CAT) +conn hirose board-to-board mezzanine stacking receptacle +0 +14 +11 +Connector_Hirose_DF40 +Hirose_DF40HB(4.0)-50DS-0.4V_2x25-1MP_P0.4mm +0.4mm Pitch, Stacking Height 4.000000mm, Receptacle, vertical (source: https://www.hirose.com/en/product/document?clcode=&productname=&series=DF40&documenttype=Catalog&lang=en&documentid=en_DF40_CAT) +conn hirose board-to-board mezzanine stacking receptacle +0 +54 +51 +Connector_Hirose_DF40 +Hirose_DF40HC(2.5)-20DS-0.4V_2x10_P0.4mm +0.4mm Pitch, Stacking Height 2.500000mm, Receptacle, vertical (source: https://www.hirose.com/en/product/document?clcode=&productname=&series=DF40&documenttype=Catalog&lang=en&documentid=en_DF40_CAT) +conn hirose board-to-board mezzanine stacking receptacle +0 +20 +20 +Connector_Hirose_DF40 +Hirose_DF40HC(2.5)-30DS-0.4V_2x15_P0.4mm +0.4mm Pitch, Stacking Height 2.500000mm, Receptacle, vertical (source: https://www.hirose.com/en/product/document?clcode=&productname=&series=DF40&documenttype=Catalog&lang=en&documentid=en_DF40_CAT) +conn hirose board-to-board mezzanine stacking receptacle +0 +30 +30 +Connector_Hirose_DF40 +Hirose_DF40HC(2.5)-40DS-0.4V_2x20_P0.4mm +0.4mm Pitch, Stacking Height 2.500000mm, Receptacle, vertical (source: https://www.hirose.com/en/product/document?clcode=&productname=&series=DF40&documenttype=Catalog&lang=en&documentid=en_DF40_CAT) +conn hirose board-to-board mezzanine stacking receptacle +0 +40 +40 +Connector_Hirose_DF40 +Hirose_DF40HC(2.5)-50DS-0.4V_2x25_P0.4mm +0.4mm Pitch, Stacking Height 2.500000mm, Receptacle, vertical (source: https://www.hirose.com/en/product/document?clcode=&productname=&series=DF40&documenttype=Catalog&lang=en&documentid=en_DF40_CAT) +conn hirose board-to-board mezzanine stacking receptacle +0 +50 +50 +Connector_Hirose_DF40 +Hirose_DF40HC(2.5)-60DS-0.4V_2x30_P0.4mm +0.4mm Pitch, Stacking Height 2.500000mm, Receptacle, vertical (source: https://www.hirose.com/en/product/document?clcode=&productname=&series=DF40&documenttype=Catalog&lang=en&documentid=en_DF40_CAT) +conn hirose board-to-board mezzanine stacking receptacle +0 +60 +60 +Connector_Hirose_DF40 +Hirose_DF40HC(3.0)-30DS-0.4V_2x15_P0.4mm +0.4mm Pitch, Stacking Height 3.000000mm, Receptacle, vertical (source: https://www.hirose.com/en/product/document?clcode=&productname=&series=DF40&documenttype=Catalog&lang=en&documentid=en_DF40_CAT) +conn hirose board-to-board mezzanine stacking receptacle +0 +30 +30 +Connector_Hirose_DF40 +Hirose_DF40HC(3.0)-40DS-0.4V_2x20_P0.4mm +0.4mm Pitch, Stacking Height 3.000000mm, Receptacle, vertical (source: https://www.hirose.com/en/product/document?clcode=&productname=&series=DF40&documenttype=Catalog&lang=en&documentid=en_DF40_CAT) +conn hirose board-to-board mezzanine stacking receptacle +0 +40 +40 +Connector_Hirose_DF40 +Hirose_DF40HC(3.0)-44DS-0.4V_2x22_P0.4mm +0.4mm Pitch, Stacking Height 3.000000mm, Receptacle, vertical (source: https://www.hirose.com/en/product/document?clcode=&productname=&series=DF40&documenttype=Catalog&lang=en&documentid=en_DF40_CAT) +conn hirose board-to-board mezzanine stacking receptacle +0 +44 +44 +Connector_Hirose_DF40 +Hirose_DF40HC(3.0)-50DS-0.4V_2x25_P0.4mm +0.4mm Pitch, Stacking Height 3.000000mm, Receptacle, vertical (source: https://www.hirose.com/en/product/document?clcode=&productname=&series=DF40&documenttype=Catalog&lang=en&documentid=en_DF40_CAT) +conn hirose board-to-board mezzanine stacking receptacle +0 +50 +50 +Connector_Hirose_DF40 +Hirose_DF40HC(3.0)-60DS-0.4V_2x30_P0.4mm +0.4mm Pitch, Stacking Height 3.000000mm, Receptacle, vertical (source: https://www.hirose.com/en/product/document?clcode=&productname=&series=DF40&documenttype=Catalog&lang=en&documentid=en_DF40_CAT) +conn hirose board-to-board mezzanine stacking receptacle +0 +60 +60 +Connector_Hirose_DF40 +Hirose_DF40HC(3.0)-70DS-0.4V_2x35_P0.4mm +0.4mm Pitch, Stacking Height 3.000000mm, Receptacle, vertical (source: https://www.hirose.com/en/product/document?clcode=&productname=&series=DF40&documenttype=Catalog&lang=en&documentid=en_DF40_CAT) +conn hirose board-to-board mezzanine stacking receptacle +0 +70 +70 +Connector_Hirose_DF40 +Hirose_DF40HC(3.0)-80DS-0.4V_2x40_P0.4mm +0.4mm Pitch, Stacking Height 3.000000mm, Receptacle, vertical (source: https://www.hirose.com/en/product/document?clcode=&productname=&series=DF40&documenttype=Catalog&lang=en&documentid=en_DF40_CAT) +conn hirose board-to-board mezzanine stacking receptacle +0 +80 +80 +Connector_Hirose_DF40 +Hirose_DF40HC(3.0)-90DS-0.4V_2x45_P0.4mm +0.4mm Pitch, Stacking Height 3.000000mm, Receptacle, vertical (source: https://www.hirose.com/en/product/document?clcode=&productname=&series=DF40&documenttype=Catalog&lang=en&documentid=en_DF40_CAT) +conn hirose board-to-board mezzanine stacking receptacle +0 +90 +90 +Connector_Hirose_DF40 +Hirose_DF40HC(3.0)-100DS-0.4V_2x50_P0.4mm +0.4mm Pitch, Stacking Height 3.000000mm, Receptacle, vertical (source: https://www.hirose.com/en/product/document?clcode=&productname=&series=DF40&documenttype=Catalog&lang=en&documentid=en_DF40_CAT) +conn hirose board-to-board mezzanine stacking receptacle +0 +100 +100 +Connector_Hirose_DF40 +Hirose_DF40HC(3.5)-20DS-0.4V_2x10_P0.4mm +0.4mm Pitch, Stacking Height 3.500000mm, Receptacle, vertical (source: https://www.hirose.com/en/product/document?clcode=&productname=&series=DF40&documenttype=Catalog&lang=en&documentid=en_DF40_CAT) +conn hirose board-to-board mezzanine stacking receptacle +0 +20 +20 +Connector_Hirose_DF40 +Hirose_DF40HC(3.5)-30DS-0.4V_2x15_P0.4mm +0.4mm Pitch, Stacking Height 3.500000mm, Receptacle, vertical (source: https://www.hirose.com/en/product/document?clcode=&productname=&series=DF40&documenttype=Catalog&lang=en&documentid=en_DF40_CAT) +conn hirose board-to-board mezzanine stacking receptacle +0 +30 +30 +Connector_Hirose_DF40 +Hirose_DF40HC(3.5)-40DS-0.4V_2x20_P0.4mm +0.4mm Pitch, Stacking Height 3.500000mm, Receptacle, vertical (source: https://www.hirose.com/en/product/document?clcode=&productname=&series=DF40&documenttype=Catalog&lang=en&documentid=en_DF40_CAT) +conn hirose board-to-board mezzanine stacking receptacle +0 +40 +40 +Connector_Hirose_DF40 +Hirose_DF40HC(3.5)-50DS-0.4V_2x25_P0.4mm +0.4mm Pitch, Stacking Height 3.500000mm, Receptacle, vertical (source: https://www.hirose.com/en/product/document?clcode=&productname=&series=DF40&documenttype=Catalog&lang=en&documentid=en_DF40_CAT) +conn hirose board-to-board mezzanine stacking receptacle +0 +50 +50 +Connector_Hirose_DF40 +Hirose_DF40HC(3.5)-60DS-0.4V_2x30_P0.4mm +0.4mm Pitch, Stacking Height 3.500000mm, Receptacle, vertical (source: https://www.hirose.com/en/product/document?clcode=&productname=&series=DF40&documenttype=Catalog&lang=en&documentid=en_DF40_CAT) +conn hirose board-to-board mezzanine stacking receptacle +0 +60 +60 +Connector_Hirose_DF40 +Hirose_DF40HC(3.5)-80DS-0.4V_2x40_P0.4mm +0.4mm Pitch, Stacking Height 3.500000mm, Receptacle, vertical (source: https://www.hirose.com/en/product/document?clcode=&productname=&series=DF40&documenttype=Catalog&lang=en&documentid=en_DF40_CAT) +conn hirose board-to-board mezzanine stacking receptacle +0 +80 +80 +Connector_Hirose_DF40 +Hirose_DF40HC(4.0)-40DS-0.4V_2x20_P0.4mm +0.4mm Pitch, Stacking Height 4.000000mm, Receptacle, vertical (source: https://www.hirose.com/en/product/document?clcode=&productname=&series=DF40&documenttype=Catalog&lang=en&documentid=en_DF40_CAT) +conn hirose board-to-board mezzanine stacking receptacle +0 +40 +40 +Connector_Hirose_DF40 +Hirose_DF40HC(4.0)-50DS-0.4V_2x25_P0.4mm +0.4mm Pitch, Stacking Height 4.000000mm, Receptacle, vertical (source: https://www.hirose.com/en/product/document?clcode=&productname=&series=DF40&documenttype=Catalog&lang=en&documentid=en_DF40_CAT) +conn hirose board-to-board mezzanine stacking receptacle +0 +50 +50 +Connector_Hirose_DF40 +Hirose_DF40HC(4.0)-60DS-0.4V_2x30_P0.4mm +0.4mm Pitch, Stacking Height 4.000000mm, Receptacle, vertical (source: https://www.hirose.com/en/product/document?clcode=&productname=&series=DF40&documenttype=Catalog&lang=en&documentid=en_DF40_CAT) +conn hirose board-to-board mezzanine stacking receptacle +0 +60 +60 +Connector_Hirose_DF40 +Hirose_DF40HC(4.0)-80DS-0.4V_2x40_P0.4mm +0.4mm Pitch, Stacking Height 4.000000mm, Receptacle, vertical (source: https://www.hirose.com/en/product/document?clcode=&productname=&series=DF40&documenttype=Catalog&lang=en&documentid=en_DF40_CAT) +conn hirose board-to-board mezzanine stacking receptacle +0 +80 +80 +Connector_Hirose_DF40 +Hirose_DF40HC(4.0)-90DS-0.4V_2x45_P0.4mm +0.4mm Pitch, Stacking Height 4.000000mm, Receptacle, vertical (source: https://www.hirose.com/en/product/document?clcode=&productname=&series=DF40&documenttype=Catalog&lang=en&documentid=en_DF40_CAT) +conn hirose board-to-board mezzanine stacking receptacle +0 +90 +90 +Connector_Hirose_FX8 +Hirose_FX8-60P-SV_2x30_P0.6mm +0.6mm Pitch, Stacking Height 3mm to 16mm, Header, vertical (source: https://www.hirose.com/de/product/document?clcode=&productname=&series=FX8&documenttype=Catalog&lang=en&documentid=D31612_en) +conn hirose board to board stacking header +0 +60 +60 +Connector_Hirose_FX8 +Hirose_FX8-60S-SV_2x30_P0.6mm +0.6mm Pitch, Stacking Height 3mm to 16mm, Receptacle, vertical (source: https://www.hirose.com/de/product/document?clcode=&productname=&series=FX8&documenttype=Catalog&lang=en&documentid=D31612_en) +conn hirose board to board stacking receptacle +0 +60 +60 +Connector_Hirose_FX8 +Hirose_FX8-80P-SV_2x40_P0.6mm +0.6mm Pitch, Stacking Height 3mm to 16mm, Header, vertical (source: https://www.hirose.com/de/product/document?clcode=&productname=&series=FX8&documenttype=Catalog&lang=en&documentid=D31612_en) +conn hirose board to board stacking header +0 +80 +80 +Connector_Hirose_FX8 +Hirose_FX8-80S-SV_2x40_P0.6mm +0.6mm Pitch, Stacking Height 3mm to 16mm, Receptacle, vertical (source: https://www.hirose.com/de/product/document?clcode=&productname=&series=FX8&documenttype=Catalog&lang=en&documentid=D31612_en) +conn hirose board to board stacking receptacle +0 +80 +80 +Connector_Hirose_FX8 +Hirose_FX8-90P-SV_2x45_P0.6mm +0.6mm Pitch, Stacking Height 3mm to 16mm, Header, vertical (source: https://www.hirose.com/de/product/document?clcode=&productname=&series=FX8&documenttype=Catalog&lang=en&documentid=D31612_en) +conn hirose board to board stacking header +0 +90 +90 +Connector_Hirose_FX8 +Hirose_FX8-90S-SV_2x45_P0.6mm +0.6mm Pitch, Stacking Height 3mm to 16mm, Receptacle, vertical (source: https://www.hirose.com/de/product/document?clcode=&productname=&series=FX8&documenttype=Catalog&lang=en&documentid=D31612_en) +conn hirose board to board stacking receptacle +0 +90 +90 +Connector_Hirose_FX8 +Hirose_FX8-100P-SV_2x50_P0.6mm +0.6mm Pitch, Stacking Height 3mm to 16mm, Header, vertical (source: https://www.hirose.com/de/product/document?clcode=&productname=&series=FX8&documenttype=Catalog&lang=en&documentid=D31612_en) +conn hirose board to board stacking header +0 +100 +100 +Connector_Hirose_FX8 +Hirose_FX8-100S-SV_2x50_P0.6mm +0.6mm Pitch, Stacking Height 3mm to 16mm, Receptacle, vertical (source: https://www.hirose.com/de/product/document?clcode=&productname=&series=FX8&documenttype=Catalog&lang=en&documentid=D31612_en) +conn hirose board to board stacking receptacle +0 +100 +100 +Connector_Hirose_FX8 +Hirose_FX8-120P-SV_2x60_P0.6mm +0.6mm Pitch, Stacking Height 3mm to 16mm, Header, vertical (source: https://www.hirose.com/de/product/document?clcode=&productname=&series=FX8&documenttype=Catalog&lang=en&documentid=D31612_en) +conn hirose board to board stacking header +0 +120 +120 +Connector_Hirose_FX8 +Hirose_FX8-120S-SV_2x60_P0.6mm +0.6mm Pitch, Stacking Height 3mm to 16mm, Receptacle, vertical (source: https://www.hirose.com/de/product/document?clcode=&productname=&series=FX8&documenttype=Catalog&lang=en&documentid=D31612_en) +conn hirose board to board stacking receptacle +0 +120 +120 +Connector_Hirose_FX8 +Hirose_FX8-140P-SV_2x70_P0.6mm +0.6mm Pitch, Stacking Height 3mm to 16mm, Header, vertical (source: https://www.hirose.com/de/product/document?clcode=&productname=&series=FX8&documenttype=Catalog&lang=en&documentid=D31612_en) +conn hirose board to board stacking header +0 +140 +140 +Connector_Hirose_FX8 +Hirose_FX8-140S-SV_2x70_P0.6mm +0.6mm Pitch, Stacking Height 3mm to 16mm, Receptacle, vertical (source: https://www.hirose.com/de/product/document?clcode=&productname=&series=FX8&documenttype=Catalog&lang=en&documentid=D31612_en) +conn hirose board to board stacking receptacle +0 +140 +140 +Connector_IDC +IDC-Header_2x03_P2.54mm_Horizontal +Through hole IDC box header, 2x03, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC box header THT 2x03 2.54mm double row +0 +6 +6 +Connector_IDC +IDC-Header_2x03_P2.54mm_Vertical +Through hole IDC box header, 2x03, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC box header THT 2x03 2.54mm double row +0 +6 +6 +Connector_IDC +IDC-Header_2x03_P2.54mm_Vertical_SMD +SMD IDC box header, 2x03, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://www.tme.eu/Document/4baa0e952ce73e37bc68cf730b541507/T821M114A1S100CEU-B.pdf +SMD vertical IDC box header 2x03 2.54mm double row +0 +6 +6 +Connector_IDC +IDC-Header_2x04_P2.54mm_Horizontal +Through hole IDC box header, 2x04, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC box header THT 2x04 2.54mm double row +0 +8 +8 +Connector_IDC +IDC-Header_2x04_P2.54mm_Vertical +Through hole IDC box header, 2x04, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC box header THT 2x04 2.54mm double row +0 +8 +8 +Connector_IDC +IDC-Header_2x04_P2.54mm_Vertical_SMD +SMD IDC box header, 2x04, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://www.tme.eu/Document/4baa0e952ce73e37bc68cf730b541507/T821M114A1S100CEU-B.pdf +SMD vertical IDC box header 2x04 2.54mm double row +0 +8 +8 +Connector_IDC +IDC-Header_2x05-1MP_P2.54mm_Latch6.5mm_Vertical +Through hole IDC header, 2x05, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 6.5mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x05 2.54mm double row +0 +12 +11 +Connector_IDC +IDC-Header_2x05-1MP_P2.54mm_Latch9.5mm_Vertical +Through hole IDC header, 2x05, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 9.5mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x05 2.54mm double row +0 +12 +11 +Connector_IDC +IDC-Header_2x05-1MP_P2.54mm_Latch12.0mm_Vertical +Through hole IDC header, 2x05, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 12.0mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x05 2.54mm double row +0 +12 +11 +Connector_IDC +IDC-Header_2x05-1MP_P2.54mm_Latch_Horizontal +Through hole IDC header, 2x05, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC header THT 2x05 2.54mm double row +0 +12 +11 +Connector_IDC +IDC-Header_2x05-1MP_P2.54mm_Latch_Vertical +Through hole IDC header, 2x05, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x05 2.54mm double row +0 +12 +11 +Connector_IDC +IDC-Header_2x05_P2.54mm_Horizontal +Through hole IDC box header, 2x05, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC box header THT 2x05 2.54mm double row +0 +10 +10 +Connector_IDC +IDC-Header_2x05_P2.54mm_Latch6.5mm_Vertical +Through hole IDC header, 2x05, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 6.5mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x05 2.54mm double row +0 +10 +10 +Connector_IDC +IDC-Header_2x05_P2.54mm_Latch9.5mm_Vertical +Through hole IDC header, 2x05, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 9.5mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x05 2.54mm double row +0 +10 +10 +Connector_IDC +IDC-Header_2x05_P2.54mm_Latch12.0mm_Vertical +Through hole IDC header, 2x05, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 12.0mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x05 2.54mm double row +0 +10 +10 +Connector_IDC +IDC-Header_2x05_P2.54mm_Latch_Horizontal +Through hole IDC header, 2x05, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC header THT 2x05 2.54mm double row +0 +10 +10 +Connector_IDC +IDC-Header_2x05_P2.54mm_Latch_Vertical +Through hole IDC header, 2x05, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x05 2.54mm double row +0 +10 +10 +Connector_IDC +IDC-Header_2x05_P2.54mm_Vertical +Through hole IDC box header, 2x05, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC box header THT 2x05 2.54mm double row +0 +10 +10 +Connector_IDC +IDC-Header_2x05_P2.54mm_Vertical_SMD +SMD IDC box header, 2x05, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://www.tme.eu/Document/4baa0e952ce73e37bc68cf730b541507/T821M114A1S100CEU-B.pdf +SMD vertical IDC box header 2x05 2.54mm double row +0 +10 +10 +Connector_IDC +IDC-Header_2x06-1MP_P2.54mm_Latch6.5mm_Vertical +Through hole IDC header, 2x06, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 6.5mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x06 2.54mm double row +0 +14 +13 +Connector_IDC +IDC-Header_2x06-1MP_P2.54mm_Latch9.5mm_Vertical +Through hole IDC header, 2x06, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 9.5mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x06 2.54mm double row +0 +14 +13 +Connector_IDC +IDC-Header_2x06-1MP_P2.54mm_Latch12.0mm_Vertical +Through hole IDC header, 2x06, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 12.0mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x06 2.54mm double row +0 +14 +13 +Connector_IDC +IDC-Header_2x06-1MP_P2.54mm_Latch_Horizontal +Through hole IDC header, 2x06, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC header THT 2x06 2.54mm double row +0 +14 +13 +Connector_IDC +IDC-Header_2x06-1MP_P2.54mm_Latch_Vertical +Through hole IDC header, 2x06, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x06 2.54mm double row +0 +14 +13 +Connector_IDC +IDC-Header_2x06_P2.54mm_Horizontal +Through hole IDC box header, 2x06, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC box header THT 2x06 2.54mm double row +0 +12 +12 +Connector_IDC +IDC-Header_2x06_P2.54mm_Latch6.5mm_Vertical +Through hole IDC header, 2x06, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 6.5mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x06 2.54mm double row +0 +12 +12 +Connector_IDC +IDC-Header_2x06_P2.54mm_Latch9.5mm_Vertical +Through hole IDC header, 2x06, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 9.5mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x06 2.54mm double row +0 +12 +12 +Connector_IDC +IDC-Header_2x06_P2.54mm_Latch12.0mm_Vertical +Through hole IDC header, 2x06, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 12.0mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x06 2.54mm double row +0 +12 +12 +Connector_IDC +IDC-Header_2x06_P2.54mm_Latch_Horizontal +Through hole IDC header, 2x06, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC header THT 2x06 2.54mm double row +0 +12 +12 +Connector_IDC +IDC-Header_2x06_P2.54mm_Latch_Vertical +Through hole IDC header, 2x06, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x06 2.54mm double row +0 +12 +12 +Connector_IDC +IDC-Header_2x06_P2.54mm_Vertical +Through hole IDC box header, 2x06, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC box header THT 2x06 2.54mm double row +0 +12 +12 +Connector_IDC +IDC-Header_2x06_P2.54mm_Vertical_SMD +SMD IDC box header, 2x06, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://www.tme.eu/Document/4baa0e952ce73e37bc68cf730b541507/T821M114A1S100CEU-B.pdf +SMD vertical IDC box header 2x06 2.54mm double row +0 +12 +12 +Connector_IDC +IDC-Header_2x07-1MP_P2.54mm_Latch6.5mm_Vertical +Through hole IDC header, 2x07, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 6.5mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x07 2.54mm double row +0 +16 +15 +Connector_IDC +IDC-Header_2x07-1MP_P2.54mm_Latch9.5mm_Vertical +Through hole IDC header, 2x07, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 9.5mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x07 2.54mm double row +0 +16 +15 +Connector_IDC +IDC-Header_2x07-1MP_P2.54mm_Latch12.0mm_Vertical +Through hole IDC header, 2x07, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 12.0mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x07 2.54mm double row +0 +16 +15 +Connector_IDC +IDC-Header_2x07-1MP_P2.54mm_Latch_Horizontal +Through hole IDC header, 2x07, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC header THT 2x07 2.54mm double row +0 +16 +15 +Connector_IDC +IDC-Header_2x07-1MP_P2.54mm_Latch_Vertical +Through hole IDC header, 2x07, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x07 2.54mm double row +0 +16 +15 +Connector_IDC +IDC-Header_2x07_P2.54mm_Horizontal +Through hole IDC box header, 2x07, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC box header THT 2x07 2.54mm double row +0 +14 +14 +Connector_IDC +IDC-Header_2x07_P2.54mm_Horizontal_Lock +Connector IDC Locked, 10 contacts, compatible header: PANCON HE10 (Series 50, (https://www.reboul.fr/storage/00003af6.pdf) +connector idc locked +0 +16 +14 +Connector_IDC +IDC-Header_2x07_P2.54mm_Latch6.5mm_Vertical +Through hole IDC header, 2x07, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 6.5mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x07 2.54mm double row +0 +14 +14 +Connector_IDC +IDC-Header_2x07_P2.54mm_Latch9.5mm_Vertical +Through hole IDC header, 2x07, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 9.5mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x07 2.54mm double row +0 +14 +14 +Connector_IDC +IDC-Header_2x07_P2.54mm_Latch12.0mm_Vertical +Through hole IDC header, 2x07, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 12.0mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x07 2.54mm double row +0 +14 +14 +Connector_IDC +IDC-Header_2x07_P2.54mm_Latch_Horizontal +Through hole IDC header, 2x07, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC header THT 2x07 2.54mm double row +0 +14 +14 +Connector_IDC +IDC-Header_2x07_P2.54mm_Latch_Vertical +Through hole IDC header, 2x07, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x07 2.54mm double row +0 +14 +14 +Connector_IDC +IDC-Header_2x07_P2.54mm_Vertical +Through hole IDC box header, 2x07, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC box header THT 2x07 2.54mm double row +0 +14 +14 +Connector_IDC +IDC-Header_2x07_P2.54mm_Vertical_SMD +SMD IDC box header, 2x07, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://www.tme.eu/Document/4baa0e952ce73e37bc68cf730b541507/T821M114A1S100CEU-B.pdf +SMD vertical IDC box header 2x07 2.54mm double row +0 +14 +14 +Connector_IDC +IDC-Header_2x08-1MP_P2.54mm_Latch6.5mm_Vertical +Through hole IDC header, 2x08, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 6.5mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x08 2.54mm double row +0 +18 +17 +Connector_IDC +IDC-Header_2x08-1MP_P2.54mm_Latch9.5mm_Vertical +Through hole IDC header, 2x08, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 9.5mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x08 2.54mm double row +0 +18 +17 +Connector_IDC +IDC-Header_2x08-1MP_P2.54mm_Latch12.0mm_Vertical +Through hole IDC header, 2x08, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 12.0mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x08 2.54mm double row +0 +18 +17 +Connector_IDC +IDC-Header_2x08-1MP_P2.54mm_Latch_Horizontal +Through hole IDC header, 2x08, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC header THT 2x08 2.54mm double row +0 +18 +17 +Connector_IDC +IDC-Header_2x08-1MP_P2.54mm_Latch_Vertical +Through hole IDC header, 2x08, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x08 2.54mm double row +0 +18 +17 +Connector_IDC +IDC-Header_2x08_P2.54mm_Horizontal +Through hole IDC box header, 2x08, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC box header THT 2x08 2.54mm double row +0 +16 +16 +Connector_IDC +IDC-Header_2x08_P2.54mm_Latch6.5mm_Vertical +Through hole IDC header, 2x08, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 6.5mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x08 2.54mm double row +0 +16 +16 +Connector_IDC +IDC-Header_2x08_P2.54mm_Latch9.5mm_Vertical +Through hole IDC header, 2x08, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 9.5mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x08 2.54mm double row +0 +16 +16 +Connector_IDC +IDC-Header_2x08_P2.54mm_Latch12.0mm_Vertical +Through hole IDC header, 2x08, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 12.0mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x08 2.54mm double row +0 +16 +16 +Connector_IDC +IDC-Header_2x08_P2.54mm_Latch_Horizontal +Through hole IDC header, 2x08, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC header THT 2x08 2.54mm double row +0 +16 +16 +Connector_IDC +IDC-Header_2x08_P2.54mm_Latch_Vertical +Through hole IDC header, 2x08, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x08 2.54mm double row +0 +16 +16 +Connector_IDC +IDC-Header_2x08_P2.54mm_Vertical +Through hole IDC box header, 2x08, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC box header THT 2x08 2.54mm double row +0 +16 +16 +Connector_IDC +IDC-Header_2x08_P2.54mm_Vertical_SMD +SMD IDC box header, 2x08, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://www.tme.eu/Document/4baa0e952ce73e37bc68cf730b541507/T821M114A1S100CEU-B.pdf +SMD vertical IDC box header 2x08 2.54mm double row +0 +16 +16 +Connector_IDC +IDC-Header_2x09_P2.54mm_Horizontal +Through hole IDC box header, 2x09, 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 2x09 2.54mm double row +0 +18 +18 +Connector_IDC +IDC-Header_2x09_P2.54mm_Vertical +Through hole IDC box header, 2x09, 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 2x09 2.54mm double row +0 +18 +18 +Connector_IDC +IDC-Header_2x09_P2.54mm_Vertical_SMD +SMD IDC box header, 2x09, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://www.tme.eu/Document/4baa0e952ce73e37bc68cf730b541507/T821M114A1S100CEU-B.pdf +SMD vertical IDC box header 2x09 2.54mm double row +0 +18 +18 +Connector_IDC +IDC-Header_2x10-1MP_P2.54mm_Latch6.5mm_Vertical +Through hole IDC header, 2x10, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 6.5mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x10 2.54mm double row +0 +22 +21 +Connector_IDC +IDC-Header_2x10-1MP_P2.54mm_Latch9.5mm_Vertical +Through hole IDC header, 2x10, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 9.5mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x10 2.54mm double row +0 +22 +21 +Connector_IDC +IDC-Header_2x10-1MP_P2.54mm_Latch12.0mm_Vertical +Through hole IDC header, 2x10, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 12.0mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x10 2.54mm double row +0 +22 +21 +Connector_IDC +IDC-Header_2x10-1MP_P2.54mm_Latch_Horizontal +Through hole IDC header, 2x10, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC header THT 2x10 2.54mm double row +0 +22 +21 +Connector_IDC +IDC-Header_2x10-1MP_P2.54mm_Latch_Vertical +Through hole IDC header, 2x10, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x10 2.54mm double row +0 +22 +21 +Connector_IDC +IDC-Header_2x10_P2.54mm_Horizontal +Through hole IDC box header, 2x10, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC box header THT 2x10 2.54mm double row +0 +20 +20 +Connector_IDC +IDC-Header_2x10_P2.54mm_Latch6.5mm_Vertical +Through hole IDC header, 2x10, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 6.5mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x10 2.54mm double row +0 +20 +20 +Connector_IDC +IDC-Header_2x10_P2.54mm_Latch9.5mm_Vertical +Through hole IDC header, 2x10, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 9.5mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x10 2.54mm double row +0 +20 +20 +Connector_IDC +IDC-Header_2x10_P2.54mm_Latch12.0mm_Vertical +Through hole IDC header, 2x10, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 12.0mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x10 2.54mm double row +0 +20 +20 +Connector_IDC +IDC-Header_2x10_P2.54mm_Latch_Horizontal +Through hole IDC header, 2x10, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC header THT 2x10 2.54mm double row +0 +20 +20 +Connector_IDC +IDC-Header_2x10_P2.54mm_Latch_Vertical +Through hole IDC header, 2x10, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x10 2.54mm double row +0 +20 +20 +Connector_IDC +IDC-Header_2x10_P2.54mm_Vertical +Through hole IDC box header, 2x10, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC box header THT 2x10 2.54mm double row +0 +20 +20 +Connector_IDC +IDC-Header_2x10_P2.54mm_Vertical_SMD +SMD IDC box header, 2x10, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://www.tme.eu/Document/4baa0e952ce73e37bc68cf730b541507/T821M114A1S100CEU-B.pdf +SMD vertical IDC box header 2x10 2.54mm double row +0 +20 +20 +Connector_IDC +IDC-Header_2x11_P2.54mm_Horizontal +Through hole IDC box header, 2x11, 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 2x11 2.54mm double row +0 +22 +22 +Connector_IDC +IDC-Header_2x11_P2.54mm_Vertical +Through hole IDC box header, 2x11, 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 2x11 2.54mm double row +0 +22 +22 +Connector_IDC +IDC-Header_2x11_P2.54mm_Vertical_SMD +SMD IDC box header, 2x11, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://www.tme.eu/Document/4baa0e952ce73e37bc68cf730b541507/T821M114A1S100CEU-B.pdf +SMD vertical IDC box header 2x11 2.54mm double row +0 +22 +22 +Connector_IDC +IDC-Header_2x12-1MP_P2.54mm_Latch6.5mm_Vertical +Through hole IDC header, 2x12, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 6.5mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x12 2.54mm double row +0 +26 +25 +Connector_IDC +IDC-Header_2x12-1MP_P2.54mm_Latch9.5mm_Vertical +Through hole IDC header, 2x12, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 9.5mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x12 2.54mm double row +0 +26 +25 +Connector_IDC +IDC-Header_2x12-1MP_P2.54mm_Latch12.0mm_Vertical +Through hole IDC header, 2x12, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 12.0mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x12 2.54mm double row +0 +26 +25 +Connector_IDC +IDC-Header_2x12-1MP_P2.54mm_Latch_Horizontal +Through hole IDC header, 2x12, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC header THT 2x12 2.54mm double row +0 +26 +25 +Connector_IDC +IDC-Header_2x12-1MP_P2.54mm_Latch_Vertical +Through hole IDC header, 2x12, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x12 2.54mm double row +0 +26 +25 +Connector_IDC +IDC-Header_2x12_P2.54mm_Horizontal +Through hole IDC box header, 2x12, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC box header THT 2x12 2.54mm double row +0 +24 +24 +Connector_IDC +IDC-Header_2x12_P2.54mm_Latch6.5mm_Vertical +Through hole IDC header, 2x12, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 6.5mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x12 2.54mm double row +0 +24 +24 +Connector_IDC +IDC-Header_2x12_P2.54mm_Latch9.5mm_Vertical +Through hole IDC header, 2x12, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 9.5mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x12 2.54mm double row +0 +24 +24 +Connector_IDC +IDC-Header_2x12_P2.54mm_Latch12.0mm_Vertical +Through hole IDC header, 2x12, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 12.0mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x12 2.54mm double row +0 +24 +24 +Connector_IDC +IDC-Header_2x12_P2.54mm_Latch_Horizontal +Through hole IDC header, 2x12, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC header THT 2x12 2.54mm double row +0 +24 +24 +Connector_IDC +IDC-Header_2x12_P2.54mm_Latch_Vertical +Through hole IDC header, 2x12, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x12 2.54mm double row +0 +24 +24 +Connector_IDC +IDC-Header_2x12_P2.54mm_Vertical +Through hole IDC box header, 2x12, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC box header THT 2x12 2.54mm double row +0 +24 +24 +Connector_IDC +IDC-Header_2x12_P2.54mm_Vertical_SMD +SMD IDC box header, 2x12, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://www.tme.eu/Document/4baa0e952ce73e37bc68cf730b541507/T821M114A1S100CEU-B.pdf +SMD vertical IDC box header 2x12 2.54mm double row +0 +24 +24 +Connector_IDC +IDC-Header_2x13-1MP_P2.54mm_Latch6.5mm_Vertical +Through hole IDC header, 2x13, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 6.5mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x13 2.54mm double row +0 +28 +27 +Connector_IDC +IDC-Header_2x13-1MP_P2.54mm_Latch9.5mm_Vertical +Through hole IDC header, 2x13, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 9.5mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x13 2.54mm double row +0 +28 +27 +Connector_IDC +IDC-Header_2x13-1MP_P2.54mm_Latch12.0mm_Vertical +Through hole IDC header, 2x13, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 12.0mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x13 2.54mm double row +0 +28 +27 +Connector_IDC +IDC-Header_2x13-1MP_P2.54mm_Latch_Horizontal +Through hole IDC header, 2x13, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC header THT 2x13 2.54mm double row +0 +28 +27 +Connector_IDC +IDC-Header_2x13-1MP_P2.54mm_Latch_Vertical +Through hole IDC header, 2x13, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x13 2.54mm double row +0 +28 +27 +Connector_IDC +IDC-Header_2x13_P2.54mm_Horizontal +Through hole IDC box header, 2x13, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC box header THT 2x13 2.54mm double row +0 +26 +26 +Connector_IDC +IDC-Header_2x13_P2.54mm_Latch6.5mm_Vertical +Through hole IDC header, 2x13, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 6.5mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x13 2.54mm double row +0 +26 +26 +Connector_IDC +IDC-Header_2x13_P2.54mm_Latch9.5mm_Vertical +Through hole IDC header, 2x13, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 9.5mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x13 2.54mm double row +0 +26 +26 +Connector_IDC +IDC-Header_2x13_P2.54mm_Latch12.0mm_Vertical +Through hole IDC header, 2x13, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 12.0mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x13 2.54mm double row +0 +26 +26 +Connector_IDC +IDC-Header_2x13_P2.54mm_Latch_Horizontal +Through hole IDC header, 2x13, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC header THT 2x13 2.54mm double row +0 +26 +26 +Connector_IDC +IDC-Header_2x13_P2.54mm_Latch_Vertical +Through hole IDC header, 2x13, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x13 2.54mm double row +0 +26 +26 +Connector_IDC +IDC-Header_2x13_P2.54mm_Vertical +Through hole IDC box header, 2x13, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC box header THT 2x13 2.54mm double row +0 +26 +26 +Connector_IDC +IDC-Header_2x13_P2.54mm_Vertical_SMD +SMD IDC box header, 2x13, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://www.tme.eu/Document/4baa0e952ce73e37bc68cf730b541507/T821M114A1S100CEU-B.pdf +SMD vertical IDC box header 2x13 2.54mm double row +0 +26 +26 +Connector_IDC +IDC-Header_2x15-1MP_P2.54mm_Latch6.5mm_Vertical +Through hole IDC header, 2x15, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 6.5mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x15 2.54mm double row +0 +32 +31 +Connector_IDC +IDC-Header_2x15-1MP_P2.54mm_Latch9.5mm_Vertical +Through hole IDC header, 2x15, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 9.5mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x15 2.54mm double row +0 +32 +31 +Connector_IDC +IDC-Header_2x15-1MP_P2.54mm_Latch12.0mm_Vertical +Through hole IDC header, 2x15, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 12.0mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x15 2.54mm double row +0 +32 +31 +Connector_IDC +IDC-Header_2x15-1MP_P2.54mm_Latch_Horizontal +Through hole IDC header, 2x15, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC header THT 2x15 2.54mm double row +0 +32 +31 +Connector_IDC +IDC-Header_2x15-1MP_P2.54mm_Latch_Vertical +Through hole IDC header, 2x15, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x15 2.54mm double row +0 +32 +31 +Connector_IDC +IDC-Header_2x15_P2.54mm_Horizontal +Through hole IDC box header, 2x15, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC box header THT 2x15 2.54mm double row +0 +30 +30 +Connector_IDC +IDC-Header_2x15_P2.54mm_Latch6.5mm_Vertical +Through hole IDC header, 2x15, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 6.5mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x15 2.54mm double row +0 +30 +30 +Connector_IDC +IDC-Header_2x15_P2.54mm_Latch9.5mm_Vertical +Through hole IDC header, 2x15, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 9.5mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x15 2.54mm double row +0 +30 +30 +Connector_IDC +IDC-Header_2x15_P2.54mm_Latch12.0mm_Vertical +Through hole IDC header, 2x15, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 12.0mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x15 2.54mm double row +0 +30 +30 +Connector_IDC +IDC-Header_2x15_P2.54mm_Latch_Horizontal +Through hole IDC header, 2x15, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC header THT 2x15 2.54mm double row +0 +30 +30 +Connector_IDC +IDC-Header_2x15_P2.54mm_Latch_Vertical +Through hole IDC header, 2x15, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x15 2.54mm double row +0 +30 +30 +Connector_IDC +IDC-Header_2x15_P2.54mm_Vertical +Through hole IDC box header, 2x15, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC box header THT 2x15 2.54mm double row +0 +30 +30 +Connector_IDC +IDC-Header_2x17-1MP_P2.54mm_Latch6.5mm_Vertical +Through hole IDC header, 2x17, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 6.5mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x17 2.54mm double row +0 +36 +35 +Connector_IDC +IDC-Header_2x17-1MP_P2.54mm_Latch9.5mm_Vertical +Through hole IDC header, 2x17, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 9.5mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x17 2.54mm double row +0 +36 +35 +Connector_IDC +IDC-Header_2x17-1MP_P2.54mm_Latch12.0mm_Vertical +Through hole IDC header, 2x17, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 12.0mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x17 2.54mm double row +0 +36 +35 +Connector_IDC +IDC-Header_2x17-1MP_P2.54mm_Latch_Horizontal +Through hole IDC header, 2x17, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC header THT 2x17 2.54mm double row +0 +36 +35 +Connector_IDC +IDC-Header_2x17-1MP_P2.54mm_Latch_Vertical +Through hole IDC header, 2x17, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x17 2.54mm double row +0 +36 +35 +Connector_IDC +IDC-Header_2x17_P2.54mm_Horizontal +Through hole IDC box header, 2x17, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC box header THT 2x17 2.54mm double row +0 +34 +34 +Connector_IDC +IDC-Header_2x17_P2.54mm_Latch6.5mm_Vertical +Through hole IDC header, 2x17, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 6.5mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x17 2.54mm double row +0 +34 +34 +Connector_IDC +IDC-Header_2x17_P2.54mm_Latch9.5mm_Vertical +Through hole IDC header, 2x17, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 9.5mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x17 2.54mm double row +0 +34 +34 +Connector_IDC +IDC-Header_2x17_P2.54mm_Latch12.0mm_Vertical +Through hole IDC header, 2x17, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 12.0mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x17 2.54mm double row +0 +34 +34 +Connector_IDC +IDC-Header_2x17_P2.54mm_Latch_Horizontal +Through hole IDC header, 2x17, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC header THT 2x17 2.54mm double row +0 +34 +34 +Connector_IDC +IDC-Header_2x17_P2.54mm_Latch_Vertical +Through hole IDC header, 2x17, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x17 2.54mm double row +0 +34 +34 +Connector_IDC +IDC-Header_2x17_P2.54mm_Vertical +Through hole IDC box header, 2x17, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC box header THT 2x17 2.54mm double row +0 +34 +34 +Connector_IDC +IDC-Header_2x20-1MP_P2.54mm_Latch6.5mm_Vertical +Through hole IDC header, 2x20, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 6.5mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x20 2.54mm double row +0 +42 +41 +Connector_IDC +IDC-Header_2x20-1MP_P2.54mm_Latch9.5mm_Vertical +Through hole IDC header, 2x20, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 9.5mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x20 2.54mm double row +0 +42 +41 +Connector_IDC +IDC-Header_2x20-1MP_P2.54mm_Latch12.0mm_Vertical +Through hole IDC header, 2x20, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 12.0mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x20 2.54mm double row +0 +42 +41 +Connector_IDC +IDC-Header_2x20-1MP_P2.54mm_Latch_Horizontal +Through hole IDC header, 2x20, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC header THT 2x20 2.54mm double row +0 +42 +41 +Connector_IDC +IDC-Header_2x20-1MP_P2.54mm_Latch_Vertical +Through hole IDC header, 2x20, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x20 2.54mm double row +0 +42 +41 +Connector_IDC +IDC-Header_2x20_P2.54mm_Horizontal +Through hole IDC box header, 2x20, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC box header THT 2x20 2.54mm double row +0 +40 +40 +Connector_IDC +IDC-Header_2x20_P2.54mm_Latch6.5mm_Vertical +Through hole IDC header, 2x20, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 6.5mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x20 2.54mm double row +0 +40 +40 +Connector_IDC +IDC-Header_2x20_P2.54mm_Latch9.5mm_Vertical +Through hole IDC header, 2x20, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 9.5mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x20 2.54mm double row +0 +40 +40 +Connector_IDC +IDC-Header_2x20_P2.54mm_Latch12.0mm_Vertical +Through hole IDC header, 2x20, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 12.0mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x20 2.54mm double row +0 +40 +40 +Connector_IDC +IDC-Header_2x20_P2.54mm_Latch_Horizontal +Through hole IDC header, 2x20, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC header THT 2x20 2.54mm double row +0 +40 +40 +Connector_IDC +IDC-Header_2x20_P2.54mm_Latch_Vertical +Through hole IDC header, 2x20, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x20 2.54mm double row +0 +40 +40 +Connector_IDC +IDC-Header_2x20_P2.54mm_Vertical +Through hole IDC box header, 2x20, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC box header THT 2x20 2.54mm double row +0 +40 +40 +Connector_IDC +IDC-Header_2x20_P2.54mm_Vertical_SMD +SMD IDC box header, 2x20, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://www.tme.eu/Document/4baa0e952ce73e37bc68cf730b541507/T821M114A1S100CEU-B.pdf +SMD vertical IDC box header 2x20 2.54mm double row +0 +40 +40 +Connector_IDC +IDC-Header_2x22_P2.54mm_Horizontal +Through hole IDC box header, 2x22, 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 2x22 2.54mm double row +0 +44 +44 +Connector_IDC +IDC-Header_2x22_P2.54mm_Vertical +Through hole IDC box header, 2x22, 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 2x22 2.54mm double row +0 +44 +44 +Connector_IDC +IDC-Header_2x22_P2.54mm_Vertical_SMD +SMD IDC box header, 2x22, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://www.tme.eu/Document/4baa0e952ce73e37bc68cf730b541507/T821M114A1S100CEU-B.pdf +SMD vertical IDC box header 2x22 2.54mm double row +0 +44 +44 +Connector_IDC +IDC-Header_2x25-1MP_P2.54mm_Latch6.5mm_Vertical +Through hole IDC header, 2x25, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 6.5mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x25 2.54mm double row +0 +52 +51 +Connector_IDC +IDC-Header_2x25-1MP_P2.54mm_Latch9.5mm_Vertical +Through hole IDC header, 2x25, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 9.5mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x25 2.54mm double row +0 +52 +51 +Connector_IDC +IDC-Header_2x25-1MP_P2.54mm_Latch12.0mm_Vertical +Through hole IDC header, 2x25, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 12.0mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x25 2.54mm double row +0 +52 +51 +Connector_IDC +IDC-Header_2x25-1MP_P2.54mm_Latch_Horizontal +Through hole IDC header, 2x25, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC header THT 2x25 2.54mm double row +0 +52 +51 +Connector_IDC +IDC-Header_2x25-1MP_P2.54mm_Latch_Vertical +Through hole IDC header, 2x25, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x25 2.54mm double row +0 +52 +51 +Connector_IDC +IDC-Header_2x25_P2.54mm_Horizontal +Through hole IDC box header, 2x25, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC box header THT 2x25 2.54mm double row +0 +50 +50 +Connector_IDC +IDC-Header_2x25_P2.54mm_Latch6.5mm_Vertical +Through hole IDC header, 2x25, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 6.5mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x25 2.54mm double row +0 +50 +50 +Connector_IDC +IDC-Header_2x25_P2.54mm_Latch9.5mm_Vertical +Through hole IDC header, 2x25, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 9.5mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x25 2.54mm double row +0 +50 +50 +Connector_IDC +IDC-Header_2x25_P2.54mm_Latch12.0mm_Vertical +Through hole IDC header, 2x25, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 12.0mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x25 2.54mm double row +0 +50 +50 +Connector_IDC +IDC-Header_2x25_P2.54mm_Latch_Horizontal +Through hole IDC header, 2x25, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC header THT 2x25 2.54mm double row +0 +50 +50 +Connector_IDC +IDC-Header_2x25_P2.54mm_Latch_Vertical +Through hole IDC header, 2x25, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x25 2.54mm double row +0 +50 +50 +Connector_IDC +IDC-Header_2x25_P2.54mm_Vertical +Through hole IDC box header, 2x25, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC box header THT 2x25 2.54mm double row +0 +50 +50 +Connector_IDC +IDC-Header_2x25_P2.54mm_Vertical_SMD +SMD IDC box header, 2x25, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://www.tme.eu/Document/4baa0e952ce73e37bc68cf730b541507/T821M114A1S100CEU-B.pdf +SMD vertical IDC box header 2x25 2.54mm double row +0 +50 +50 +Connector_IDC +IDC-Header_2x30-1MP_P2.54mm_Latch6.5mm_Vertical +Through hole IDC header, 2x30, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 6.5mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x30 2.54mm double row +0 +62 +61 +Connector_IDC +IDC-Header_2x30-1MP_P2.54mm_Latch9.5mm_Vertical +Through hole IDC header, 2x30, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 9.5mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x30 2.54mm double row +0 +62 +61 +Connector_IDC +IDC-Header_2x30-1MP_P2.54mm_Latch12.0mm_Vertical +Through hole IDC header, 2x30, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 12.0mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x30 2.54mm double row +0 +62 +61 +Connector_IDC +IDC-Header_2x30-1MP_P2.54mm_Latch_Horizontal +Through hole IDC header, 2x30, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC header THT 2x30 2.54mm double row +0 +62 +61 +Connector_IDC +IDC-Header_2x30-1MP_P2.54mm_Latch_Vertical +Through hole IDC header, 2x30, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x30 2.54mm double row +0 +62 +61 +Connector_IDC +IDC-Header_2x30_P2.54mm_Horizontal +Through hole IDC box header, 2x30, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC box header THT 2x30 2.54mm double row +0 +60 +60 +Connector_IDC +IDC-Header_2x30_P2.54mm_Latch6.5mm_Vertical +Through hole IDC header, 2x30, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 6.5mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x30 2.54mm double row +0 +60 +60 +Connector_IDC +IDC-Header_2x30_P2.54mm_Latch9.5mm_Vertical +Through hole IDC header, 2x30, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 9.5mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x30 2.54mm double row +0 +60 +60 +Connector_IDC +IDC-Header_2x30_P2.54mm_Latch12.0mm_Vertical +Through hole IDC header, 2x30, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 12.0mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x30 2.54mm double row +0 +60 +60 +Connector_IDC +IDC-Header_2x30_P2.54mm_Latch_Horizontal +Through hole IDC header, 2x30, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC header THT 2x30 2.54mm double row +0 +60 +60 +Connector_IDC +IDC-Header_2x30_P2.54mm_Latch_Vertical +Through hole IDC header, 2x30, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x30 2.54mm double row +0 +60 +60 +Connector_IDC +IDC-Header_2x30_P2.54mm_Vertical +Through hole IDC box header, 2x30, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC box header THT 2x30 2.54mm double row +0 +60 +60 +Connector_IDC +IDC-Header_2x30_P2.54mm_Vertical_SMD +SMD IDC box header, 2x30, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://www.tme.eu/Document/4baa0e952ce73e37bc68cf730b541507/T821M114A1S100CEU-B.pdf +SMD vertical IDC box header 2x30 2.54mm double row +0 +60 +60 +Connector_IDC +IDC-Header_2x32-1MP_P2.54mm_Latch6.5mm_Vertical +Through hole IDC header, 2x32, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 6.5mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x32 2.54mm double row +0 +66 +65 +Connector_IDC +IDC-Header_2x32-1MP_P2.54mm_Latch9.5mm_Vertical +Through hole IDC header, 2x32, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 9.5mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x32 2.54mm double row +0 +66 +65 +Connector_IDC +IDC-Header_2x32-1MP_P2.54mm_Latch12.0mm_Vertical +Through hole IDC header, 2x32, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 12.0mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x32 2.54mm double row +0 +66 +65 +Connector_IDC +IDC-Header_2x32-1MP_P2.54mm_Latch_Horizontal +Through hole IDC header, 2x32, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC header THT 2x32 2.54mm double row +0 +66 +65 +Connector_IDC +IDC-Header_2x32-1MP_P2.54mm_Latch_Vertical +Through hole IDC header, 2x32, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x32 2.54mm double row +0 +66 +65 +Connector_IDC +IDC-Header_2x32_P2.54mm_Horizontal +Through hole IDC box header, 2x32, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC box header THT 2x32 2.54mm double row +0 +64 +64 +Connector_IDC +IDC-Header_2x32_P2.54mm_Latch6.5mm_Vertical +Through hole IDC header, 2x32, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 6.5mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x32 2.54mm double row +0 +64 +64 +Connector_IDC +IDC-Header_2x32_P2.54mm_Latch9.5mm_Vertical +Through hole IDC header, 2x32, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 9.5mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x32 2.54mm double row +0 +64 +64 +Connector_IDC +IDC-Header_2x32_P2.54mm_Latch12.0mm_Vertical +Through hole IDC header, 2x32, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 12.0mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x32 2.54mm double row +0 +64 +64 +Connector_IDC +IDC-Header_2x32_P2.54mm_Latch_Horizontal +Through hole IDC header, 2x32, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC header THT 2x32 2.54mm double row +0 +64 +64 +Connector_IDC +IDC-Header_2x32_P2.54mm_Latch_Vertical +Through hole IDC header, 2x32, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x32 2.54mm double row +0 +64 +64 +Connector_IDC +IDC-Header_2x32_P2.54mm_Vertical +Through hole IDC box header, 2x32, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC box header THT 2x32 2.54mm double row +0 +64 +64 +Connector_JAE +JAE_LY20-4P-DLT1_2x02_P2.00mm_Horizontal +Molex LY 20 series connector, LY20-4P-DLT1, 2 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ038187.pdf), generated with kicad-footprint-generator +connector JAE horizontal +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 vertical +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 horizontal +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 vertical +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 horizontal +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 vertical +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 horizontal +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 vertical +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 horizontal +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 vertical +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 horizontal +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 vertical +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 horizontal +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 vertical +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 horizontal +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 vertical +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 horizontal +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 vertical +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 horizontal +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 vertical +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 horizontal +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 vertical +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 horizontal +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 vertical +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 horizontal +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 vertical +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 horizontal +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 vertical +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 horizontal +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 vertical +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 horizontal +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 vertical +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 horizontal +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 vertical +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 horizontal +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 vertical +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 horizontal +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 vertical +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 horizontal +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 vertical +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 horizontal +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 vertical +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_JAE_WP7B +JAE_WP7B-P034VA1-R8000_2x17-1MP_P0.4mm +0.4mm Pitch, Stacking Type, Board-to-Board FPC connector, 0.7mm Mating Height, Plug, vertical (source: https://www.jae.com/direct/topics/topics_file_download/topics_id=66869&ext_no=06&index=0&_lang=en&v=) +conn jae fpc board to board +0 +38 +35 +Connector_JAE_WP7B +JAE_WP7B-P034VA1-R8000_Longpads_2x17-1MP_P0.4mm +0.4mm Pitch, Stacking Type, Board-to-Board FPC connector, 0.7mm Mating Height, Reworkable, Plug, vertical (source: https://www.jae.com/direct/topics/topics_file_download/topics_id=66869&ext_no=06&index=0&_lang=en&v=) +conn jae fpc board to board +0 +38 +35 +Connector_JAE_WP7B +JAE_WP7B-P040VA1-R8000_2x20-1MP_P0.4mm +0.4mm Pitch, Stacking Type, Board-to-Board FPC connector, 0.7mm Mating Height, Plug, vertical (source: https://www.jae.com/direct/topics/topics_file_download/topics_id=66869&ext_no=06&index=0&_lang=en&v=) +conn jae fpc board to board +0 +44 +41 +Connector_JAE_WP7B +JAE_WP7B-P040VA1-R8000_Longpads_2x20-1MP_P0.4mm +0.4mm Pitch, Stacking Type, Board-to-Board FPC connector, 0.7mm Mating Height, Reworkable, Plug, vertical (source: https://www.jae.com/direct/topics/topics_file_download/topics_id=66869&ext_no=06&index=0&_lang=en&v=) +conn jae fpc board to board +0 +44 +41 +Connector_JAE_WP7B +JAE_WP7B-P050VA1-R8000_2x25-1MP_P0.4mm +0.4mm Pitch, Stacking Type, Board-to-Board FPC connector, 0.7mm Mating Height, Plug, vertical (source: https://www.jae.com/direct/topics/topics_file_download/topics_id=66869&ext_no=06&index=0&_lang=en&v=) +conn jae fpc board to board +0 +54 +51 +Connector_JAE_WP7B +JAE_WP7B-P050VA1-R8000_Longpads_2x25-1MP_P0.4mm +0.4mm Pitch, Stacking Type, Board-to-Board FPC connector, 0.7mm Mating Height, Reworkable, Plug, vertical (source: https://www.jae.com/direct/topics/topics_file_download/topics_id=66869&ext_no=06&index=0&_lang=en&v=) +conn jae fpc board to board +0 +54 +51 +Connector_JAE_WP7B +JAE_WP7B-P060VA1-R8000_2x30-1MP_P0.4mm +0.4mm Pitch, Stacking Type, Board-to-Board FPC connector, 0.7mm Mating Height, Plug, vertical (source: https://www.jae.com/direct/topics/topics_file_download/topics_id=66869&ext_no=06&index=0&_lang=en&v=) +conn jae fpc board to board +0 +64 +61 +Connector_JAE_WP7B +JAE_WP7B-P060VA1-R8000_Longpads_2x30-1MP_P0.4mm +0.4mm Pitch, Stacking Type, Board-to-Board FPC connector, 0.7mm Mating Height, Reworkable, Plug, vertical (source: https://www.jae.com/direct/topics/topics_file_download/topics_id=66869&ext_no=06&index=0&_lang=en&v=) +conn jae fpc board to board +0 +64 +61 +Connector_JAE_WP7B +JAE_WP7B-P070VA1-R8000_2x35-1MP_P0.4mm +0.4mm Pitch, Stacking Type, Board-to-Board FPC connector, 0.7mm Mating Height, Plug, vertical (source: https://www.jae.com/direct/topics/topics_file_download/topics_id=66869&ext_no=06&index=0&_lang=en&v=) +conn jae fpc board to board +0 +74 +71 +Connector_JAE_WP7B +JAE_WP7B-P070VA1-R8000_Longpads_2x35-1MP_P0.4mm +0.4mm Pitch, Stacking Type, Board-to-Board FPC connector, 0.7mm Mating Height, Reworkable, Plug, vertical (source: https://www.jae.com/direct/topics/topics_file_download/topics_id=66869&ext_no=06&index=0&_lang=en&v=) +conn jae fpc board to board +0 +74 +71 +Connector_JAE_WP7B +JAE_WP7B-S034VA1-R8000_2x17-1MP_P0.4mm +0.4mm Pitch, Stacking Type, Board-to-Board FPC connector, 0.7mm Mating Height, Receptacle, vertical (source: https://www.jae.com/direct/topics/topics_file_download/topics_id=66874&ext_no=06&index=0&_lang=en&v=) +conn jae fpc board to board +0 +38 +35 +Connector_JAE_WP7B +JAE_WP7B-S034VA1-R8000_Longpads_2x17-1MP_P0.4mm +0.4mm Pitch, Stacking Type, Board-to-Board FPC connector, 0.7mm Mating Height, Reworkable, Receptacle, vertical (source: https://www.jae.com/direct/topics/topics_file_download/topics_id=66874&ext_no=06&index=0&_lang=en&v=) +conn jae fpc board to board +0 +38 +35 +Connector_JAE_WP7B +JAE_WP7B-S040VA1-R8000_2x20-1MP_P0.4mm +0.4mm Pitch, Stacking Type, Board-to-Board FPC connector, 0.7mm Mating Height, Receptacle, vertical (source: https://www.jae.com/direct/topics/topics_file_download/topics_id=66874&ext_no=06&index=0&_lang=en&v=) +conn jae fpc board to board +0 +44 +41 +Connector_JAE_WP7B +JAE_WP7B-S040VA1-R8000_Longpads_2x20-1MP_P0.4mm +0.4mm Pitch, Stacking Type, Board-to-Board FPC connector, 0.7mm Mating Height, Reworkable, Receptacle, vertical (source: https://www.jae.com/direct/topics/topics_file_download/topics_id=66874&ext_no=06&index=0&_lang=en&v=) +conn jae fpc board to board +0 +44 +41 +Connector_JAE_WP7B +JAE_WP7B-S050VA1-R8000_2x25-1MP_P0.4mm +0.4mm Pitch, Stacking Type, Board-to-Board FPC connector, 0.7mm Mating Height, Receptacle, vertical (source: https://www.jae.com/direct/topics/topics_file_download/topics_id=66874&ext_no=06&index=0&_lang=en&v=) +conn jae fpc board to board +0 +54 +51 +Connector_JAE_WP7B +JAE_WP7B-S050VA1-R8000_Longpads_2x25-1MP_P0.4mm +0.4mm Pitch, Stacking Type, Board-to-Board FPC connector, 0.7mm Mating Height, Reworkable, Receptacle, vertical (source: https://www.jae.com/direct/topics/topics_file_download/topics_id=66874&ext_no=06&index=0&_lang=en&v=) +conn jae fpc board to board +0 +54 +51 +Connector_JAE_WP7B +JAE_WP7B-S060VA1-R8000_2x30-1MP_P0.4mm +0.4mm Pitch, Stacking Type, Board-to-Board FPC connector, 0.7mm Mating Height, Receptacle, vertical (source: https://www.jae.com/direct/topics/topics_file_download/topics_id=66874&ext_no=06&index=0&_lang=en&v=) +conn jae fpc board to board +0 +64 +61 +Connector_JAE_WP7B +JAE_WP7B-S060VA1-R8000_Longpads_2x30-1MP_P0.4mm +0.4mm Pitch, Stacking Type, Board-to-Board FPC connector, 0.7mm Mating Height, Reworkable, Receptacle, vertical (source: https://www.jae.com/direct/topics/topics_file_download/topics_id=66874&ext_no=06&index=0&_lang=en&v=) +conn jae fpc board to board +0 +64 +61 +Connector_JAE_WP7B +JAE_WP7B-S070VA1-R8000_2x35-1MP_P0.4mm +0.4mm Pitch, Stacking Type, Board-to-Board FPC connector, 0.7mm Mating Height, Receptacle, vertical (source: https://www.jae.com/direct/topics/topics_file_download/topics_id=66874&ext_no=06&index=0&_lang=en&v=) +conn jae fpc board to board +0 +74 +71 +Connector_JAE_WP7B +JAE_WP7B-S070VA1-R8000_Longpads_2x35-1MP_P0.4mm +0.4mm Pitch, Stacking Type, Board-to-Board FPC connector, 0.7mm Mating Height, Reworkable, Receptacle, vertical (source: https://www.jae.com/direct/topics/topics_file_download/topics_id=66874&ext_no=06&index=0&_lang=en&v=) +conn jae fpc board to board +0 +74 +71 +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 horizontal +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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_SHD_BM20B-SRDS-A-G-TF_2x10-1MP_P1.0mm_Vertical +JST SHD series connector, 1.0 mm Pitch, 20 Circuits, Header, Vertical, With a Boss (source: https://www.jst.com/wp-content/uploads/2021/01/eSHD-new.pdf) +connector JST SHD vertical +0 +22 +21 +Connector_JST +JST_SHD_BM20B-SRDS-G-TF_2x10-1MP_P1.0mm_Vertical +JST SHD series connector, 1.0 mm Pitch, 20 Circuits, Header, Vertical (source: https://www.jst.com/wp-content/uploads/2021/01/eSHD-new.pdf) +connector JST SHD vertical +0 +22 +21 +Connector_JST +JST_SHD_BM30B-SRDS-A-G-TF_2x15-1MP_P1.0mm_Vertical +JST SHD series connector, 1.0 mm Pitch, 30 Circuits, Header, Vertical, With a Boss (source: https://www.jst.com/wp-content/uploads/2021/01/eSHD-new.pdf) +connector JST SHD vertical +0 +32 +31 +Connector_JST +JST_SHD_BM30B-SRDS-G-TF_2x15-1MP_P1.0mm_Vertical +JST SHD series connector, 1.0 mm Pitch, 30 Circuits, Header, Vertical (source: https://www.jst.com/wp-content/uploads/2021/01/eSHD-new.pdf) +connector JST SHD vertical +0 +32 +31 +Connector_JST +JST_SHD_BM40B-SRDS-A-G-TF_2x20-1MP_P1.0mm_Vertical +JST SHD series connector, 1.0 mm Pitch, 40 Circuits, Header, Vertical, With a Boss (source: https://www.jst.com/wp-content/uploads/2021/01/eSHD-new.pdf) +connector JST SHD vertical +0 +42 +41 +Connector_JST +JST_SHD_BM40B-SRDS-G-TF_2x20-1MP_P1.0mm_Vertical +JST SHD series connector, 1.0 mm Pitch, 40 Circuits, Header, Vertical (source: https://www.jst.com/wp-content/uploads/2021/01/eSHD-new.pdf) +connector JST SHD vertical +0 +42 +41 +Connector_JST +JST_SHD_BM50B-SRDS-A-G-TF_2x25-1MP_P1.0mm_Vertical +JST SHD series connector, 1.0 mm Pitch, 50 Circuits, Header, Vertical, With a Boss (source: https://www.jst.com/wp-content/uploads/2021/01/eSHD-new.pdf) +connector JST SHD vertical +0 +52 +51 +Connector_JST +JST_SHD_BM50B-SRDS-G-TF_2x25-1MP_P1.0mm_Vertical +JST SHD series connector, 1.0 mm Pitch, 50 Circuits, Header, Vertical (source: https://www.jst.com/wp-content/uploads/2021/01/eSHD-new.pdf) +connector JST SHD vertical +0 +52 +51 +Connector_JST +JST_SHD_SM20B-SRDS-G-TF_2x10-1MP_P1.0mm_Horizontal +JST SHD series connector, 1.0 mm Pitch, 20 Circuits, Header, Horizontal (source: https://www.jst.com/wp-content/uploads/2021/01/eSHD-new.pdf) +connector JST SHD horizontal +0 +22 +21 +Connector_JST +JST_SHD_SM30B-SRDS-G-TF_2x15-1MP_P1.0mm_Horizontal +JST SHD series connector, 1.0 mm Pitch, 30 Circuits, Header, Horizontal (source: https://www.jst.com/wp-content/uploads/2021/01/eSHD-new.pdf) +connector JST SHD horizontal +0 +32 +31 +Connector_JST +JST_SHD_SM40B-SRDS-G-TF_2x20-1MP_P1.0mm_Horizontal +JST SHD series connector, 1.0 mm Pitch, 40 Circuits, Header, Horizontal (source: https://www.jst.com/wp-content/uploads/2021/01/eSHD-new.pdf) +connector JST SHD horizontal +0 +42 +41 +Connector_JST +JST_SHD_SM50B-SRDS-G-TF_2x25-1MP_P1.0mm_Horizontal +JST SHD series connector, 1.0 mm Pitch, 50 Circuits, Header, Horizontal (source: https://www.jst.com/wp-content/uploads/2021/01/eSHD-new.pdf) +connector JST SHD horizontal +0 +52 +51 +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 vertical +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 horizontal +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 vertical +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 horizontal +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 vertical +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 horizontal +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 vertical +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 horizontal +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 vertical +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 horizontal +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 vertical +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 horizontal +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 vertical +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 horizontal +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 vertical +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 horizontal +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 vertical +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +0 +7 +6 +Connector_JST +JST_XA_B02B-XASK-1-A_1x02_P2.50mm_Vertical +JST XA series connector, B02B-XASK-1-A (https://www.jst.com/wp-content/uploads/2021/01/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 (https://www.jst.com/wp-content/uploads/2021/01/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 (https://www.jst.com/wp-content/uploads/2021/01/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 (https://www.jst.com/wp-content/uploads/2021/01/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 (https://www.jst.com/wp-content/uploads/2021/01/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 (https://www.jst.com/wp-content/uploads/2021/01/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 (https://www.jst.com/wp-content/uploads/2021/01/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 (https://www.jst.com/wp-content/uploads/2021/01/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 (https://www.jst.com/wp-content/uploads/2021/01/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 (https://www.jst.com/wp-content/uploads/2021/01/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 (https://www.jst.com/wp-content/uploads/2021/01/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 (https://www.jst.com/wp-content/uploads/2021/01/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 (https://www.jst.com/wp-content/uploads/2021/01/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 (https://www.jst.com/wp-content/uploads/2021/01/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 (https://www.jst.com/wp-content/uploads/2021/01/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 (https://www.jst.com/wp-content/uploads/2021/01/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 (https://www.jst.com/wp-content/uploads/2021/01/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 (https://www.jst.com/wp-content/uploads/2021/01/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 (https://www.jst.com/wp-content/uploads/2021/01/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 (https://www.jst.com/wp-content/uploads/2021/01/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 (https://www.jst.com/wp-content/uploads/2021/01/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 (https://www.jst.com/wp-content/uploads/2021/01/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 (https://www.jst.com/wp-content/uploads/2021/01/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 (https://www.jst.com/wp-content/uploads/2021/01/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 (https://www.jst.com/wp-content/uploads/2021/01/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 (https://www.jst.com/wp-content/uploads/2021/01/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 (https://www.jst.com/wp-content/uploads/2021/01/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 (https://www.jst.com/wp-content/uploads/2021/01/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 (https://www.jst.com/wp-content/uploads/2021/01/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 (https://www.jst.com/wp-content/uploads/2021/01/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 (https://www.jst.com/wp-content/uploads/2021/01/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 (https://www.jst.com/wp-content/uploads/2021/01/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 (https://www.jst.com/wp-content/uploads/2021/01/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 (https://www.jst.com/wp-content/uploads/2021/01/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 (https://www.jst.com/wp-content/uploads/2021/01/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 (https://www.jst.com/wp-content/uploads/2021/01/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 (https://www.jst.com/wp-content/uploads/2021/01/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 (https://www.jst.com/wp-content/uploads/2021/01/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 (https://www.jst.com/wp-content/uploads/2021/01/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 (https://www.jst.com/wp-content/uploads/2021/01/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 (https://www.jst.com/wp-content/uploads/2021/01/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 (https://www.jst.com/wp-content/uploads/2021/01/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 (https://www.jst.com/wp-content/uploads/2021/01/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 (https://www.jst.com/wp-content/uploads/2021/01/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 (https://www.jst.com/wp-content/uploads/2021/01/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 (https://www.jst.com/wp-content/uploads/2021/01/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 (https://www.jst.com/wp-content/uploads/2021/01/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 (https://www.jst.com/wp-content/uploads/2021/01/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 (https://www.jst.com/wp-content/uploads/2021/01/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 (https://www.jst.com/wp-content/uploads/2021/01/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 (https://www.jst.com/wp-content/uploads/2021/01/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 (https://www.jst.com/wp-content/uploads/2021/01/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 (https://www.jst.com/wp-content/uploads/2021/01/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 (https://www.jst.com/wp-content/uploads/2021/01/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 (https://www.jst.com/wp-content/uploads/2021/01/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 (https://www.jst.com/wp-content/uploads/2021/01/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 (https://www.jst.com/wp-content/uploads/2021/01/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 vertical 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 vertical +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 vertical +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 vertical 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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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_S3B-XH-SM4-TB_1x03-1MP_P2.50mm_Horizontal +JST XH series connector, S3B-XH-SM4-TB (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH horizontal +0 +5 +4 +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_S4B-XH-SM4-TB_1x04-1MP_P2.50mm_Horizontal +JST XH series connector, S4B-XH-SM4-TB (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH horizontal +0 +6 +5 +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_S6B-XH-SM4-TB_1x06-1MP_P2.50mm_Horizontal +JST XH series connector, S6B-XH-SM4-TB (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH horizontal +0 +8 +7 +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 vertical 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 vertical 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 vertical +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 vertical 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 vertical +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 vertical 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 vertical +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 vertical 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 vertical +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 vertical 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 vertical +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 vertical 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 vertical +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 vertical 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 vertical +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 vertical 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 vertical +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 vertical 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 vertical +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 vertical 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 vertical +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 vertical 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 vertical +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 vertical 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 vertical +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 vertical 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 vertical +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 vertical 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 vertical +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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_JST +JST_ZH_B2B-ZR-SM4-TF_1x02-1MP_P1.50mm_Vertical +JST ZH series connector, B2B-ZR-SM4-TF (http://www.jst-mfg.com/product/pdf/eng/eZH.pdf), generated with kicad-footprint-generator +connector JST ZH vertical +0 +4 +3 +Connector_JST +JST_ZH_B2B-ZR_1x02_P1.50mm_Vertical +JST ZH series connector, B2B-ZR (http://www.jst-mfg.com/product/pdf/eng/eZH.pdf), generated with kicad-footprint-generator +connector JST ZH vertical +0 +2 +2 +Connector_JST +JST_ZH_B3B-ZR-SM4-TF_1x03-1MP_P1.50mm_Vertical +JST ZH series connector, B3B-ZR-SM4-TF (http://www.jst-mfg.com/product/pdf/eng/eZH.pdf), generated with kicad-footprint-generator +connector JST ZH vertical +0 +5 +4 +Connector_JST +JST_ZH_B3B-ZR_1x03_P1.50mm_Vertical +JST ZH series connector, B3B-ZR (http://www.jst-mfg.com/product/pdf/eng/eZH.pdf), generated with kicad-footprint-generator +connector JST ZH vertical +0 +3 +3 +Connector_JST +JST_ZH_B4B-ZR-SM4-TF_1x04-1MP_P1.50mm_Vertical +JST ZH series connector, B4B-ZR-SM4-TF (http://www.jst-mfg.com/product/pdf/eng/eZH.pdf), generated with kicad-footprint-generator +connector JST ZH vertical +0 +6 +5 +Connector_JST +JST_ZH_B4B-ZR_1x04_P1.50mm_Vertical +JST ZH series connector, B4B-ZR (http://www.jst-mfg.com/product/pdf/eng/eZH.pdf), generated with kicad-footprint-generator +connector JST ZH vertical +0 +4 +4 +Connector_JST +JST_ZH_B5B-ZR-SM4-TF_1x05-1MP_P1.50mm_Vertical +JST ZH series connector, B5B-ZR-SM4-TF (http://www.jst-mfg.com/product/pdf/eng/eZH.pdf), generated with kicad-footprint-generator +connector JST ZH vertical +0 +7 +6 +Connector_JST +JST_ZH_B5B-ZR_1x05_P1.50mm_Vertical +JST ZH series connector, B5B-ZR (http://www.jst-mfg.com/product/pdf/eng/eZH.pdf), generated with kicad-footprint-generator +connector JST ZH vertical +0 +5 +5 +Connector_JST +JST_ZH_B6B-ZR-SM4-TF_1x06-1MP_P1.50mm_Vertical +JST ZH series connector, B6B-ZR-SM4-TF (http://www.jst-mfg.com/product/pdf/eng/eZH.pdf), generated with kicad-footprint-generator +connector JST ZH vertical +0 +8 +7 +Connector_JST +JST_ZH_B6B-ZR_1x06_P1.50mm_Vertical +JST ZH series connector, B6B-ZR (http://www.jst-mfg.com/product/pdf/eng/eZH.pdf), generated with kicad-footprint-generator +connector JST ZH vertical +0 +6 +6 +Connector_JST +JST_ZH_B7B-ZR-SM4-TF_1x07-1MP_P1.50mm_Vertical +JST ZH series connector, B7B-ZR-SM4-TF (http://www.jst-mfg.com/product/pdf/eng/eZH.pdf), generated with kicad-footprint-generator +connector JST ZH vertical +0 +9 +8 +Connector_JST +JST_ZH_B7B-ZR_1x07_P1.50mm_Vertical +JST ZH series connector, B7B-ZR (http://www.jst-mfg.com/product/pdf/eng/eZH.pdf), generated with kicad-footprint-generator +connector JST ZH vertical +0 +7 +7 +Connector_JST +JST_ZH_B8B-ZR-SM4-TF_1x08-1MP_P1.50mm_Vertical +JST ZH series connector, B8B-ZR-SM4-TF (http://www.jst-mfg.com/product/pdf/eng/eZH.pdf), generated with kicad-footprint-generator +connector JST ZH vertical +0 +10 +9 +Connector_JST +JST_ZH_B8B-ZR_1x08_P1.50mm_Vertical +JST ZH series connector, B8B-ZR (http://www.jst-mfg.com/product/pdf/eng/eZH.pdf), generated with kicad-footprint-generator +connector JST ZH vertical +0 +8 +8 +Connector_JST +JST_ZH_B9B-ZR-SM4-TF_1x09-1MP_P1.50mm_Vertical +JST ZH series connector, B9B-ZR-SM4-TF (http://www.jst-mfg.com/product/pdf/eng/eZH.pdf), generated with kicad-footprint-generator +connector JST ZH vertical +0 +11 +10 +Connector_JST +JST_ZH_B9B-ZR_1x09_P1.50mm_Vertical +JST ZH series connector, B9B-ZR (http://www.jst-mfg.com/product/pdf/eng/eZH.pdf), generated with kicad-footprint-generator +connector JST ZH vertical +0 +9 +9 +Connector_JST +JST_ZH_B10B-ZR-SM4-TF_1x10-1MP_P1.50mm_Vertical +JST ZH series connector, B10B-ZR-SM4-TF (http://www.jst-mfg.com/product/pdf/eng/eZH.pdf), generated with kicad-footprint-generator +connector JST ZH vertical +0 +12 +11 +Connector_JST +JST_ZH_B10B-ZR_1x10_P1.50mm_Vertical +JST ZH series connector, B10B-ZR (http://www.jst-mfg.com/product/pdf/eng/eZH.pdf), generated with kicad-footprint-generator +connector JST ZH vertical +0 +10 +10 +Connector_JST +JST_ZH_B11B-ZR-SM4-TF_1x11-1MP_P1.50mm_Vertical +JST ZH series connector, B11B-ZR-SM4-TF (http://www.jst-mfg.com/product/pdf/eng/eZH.pdf), generated with kicad-footprint-generator +connector JST ZH vertical +0 +13 +12 +Connector_JST +JST_ZH_B11B-ZR_1x11_P1.50mm_Vertical +JST ZH series connector, B11B-ZR (http://www.jst-mfg.com/product/pdf/eng/eZH.pdf), generated with kicad-footprint-generator +connector JST ZH vertical +0 +11 +11 +Connector_JST +JST_ZH_B12B-ZR-SM4-TF_1x12-1MP_P1.50mm_Vertical +JST ZH series connector, B12B-ZR-SM4-TF (http://www.jst-mfg.com/product/pdf/eng/eZH.pdf), generated with kicad-footprint-generator +connector JST ZH vertical +0 +14 +13 +Connector_JST +JST_ZH_B12B-ZR_1x12_P1.50mm_Vertical +JST ZH series connector, B12B-ZR (http://www.jst-mfg.com/product/pdf/eng/eZH.pdf), generated with kicad-footprint-generator +connector JST ZH vertical +0 +12 +12 +Connector_JST +JST_ZH_B13B-ZR-SM4-TF_1x13-1MP_P1.50mm_Vertical +JST ZH series connector, B13B-ZR-SM4-TF (http://www.jst-mfg.com/product/pdf/eng/eZH.pdf), generated with kicad-footprint-generator +connector JST ZH vertical +0 +15 +14 +Connector_JST +JST_ZH_S2B-ZR-SM4A-TF_1x02-1MP_P1.50mm_Horizontal +JST ZH series connector, S2B-ZR-SM4A-TF (http://www.jst-mfg.com/product/pdf/eng/eZH.pdf), generated with kicad-footprint-generator +connector JST ZH horizontal +0 +4 +3 +Connector_JST +JST_ZH_S3B-ZR-SM4A-TF_1x03-1MP_P1.50mm_Horizontal +JST ZH series connector, S3B-ZR-SM4A-TF (http://www.jst-mfg.com/product/pdf/eng/eZH.pdf), generated with kicad-footprint-generator +connector JST ZH horizontal +0 +5 +4 +Connector_JST +JST_ZH_S4B-ZR-SM4A-TF_1x04-1MP_P1.50mm_Horizontal +JST ZH series connector, S4B-ZR-SM4A-TF (http://www.jst-mfg.com/product/pdf/eng/eZH.pdf), generated with kicad-footprint-generator +connector JST ZH horizontal +0 +6 +5 +Connector_JST +JST_ZH_S5B-ZR-SM4A-TF_1x05-1MP_P1.50mm_Horizontal +JST ZH series connector, S5B-ZR-SM4A-TF (http://www.jst-mfg.com/product/pdf/eng/eZH.pdf), generated with kicad-footprint-generator +connector JST ZH horizontal +0 +7 +6 +Connector_JST +JST_ZH_S6B-ZR-SM4A-TF_1x06-1MP_P1.50mm_Horizontal +JST ZH series connector, S6B-ZR-SM4A-TF (http://www.jst-mfg.com/product/pdf/eng/eZH.pdf), generated with kicad-footprint-generator +connector JST ZH horizontal +0 +8 +7 +Connector_JST +JST_ZH_S7B-ZR-SM4A-TF_1x07-1MP_P1.50mm_Horizontal +JST ZH series connector, S7B-ZR-SM4A-TF (http://www.jst-mfg.com/product/pdf/eng/eZH.pdf), generated with kicad-footprint-generator +connector JST ZH horizontal +0 +9 +8 +Connector_JST +JST_ZH_S8B-ZR-SM4A-TF_1x08-1MP_P1.50mm_Horizontal +JST ZH series connector, S8B-ZR-SM4A-TF (http://www.jst-mfg.com/product/pdf/eng/eZH.pdf), generated with kicad-footprint-generator +connector JST ZH horizontal +0 +10 +9 +Connector_JST +JST_ZH_S9B-ZR-SM4A-TF_1x09-1MP_P1.50mm_Horizontal +JST ZH series connector, S9B-ZR-SM4A-TF (http://www.jst-mfg.com/product/pdf/eng/eZH.pdf), generated with kicad-footprint-generator +connector JST ZH horizontal +0 +11 +10 +Connector_JST +JST_ZH_S10B-ZR-SM4A-TF_1x10-1MP_P1.50mm_Horizontal +JST ZH series connector, S10B-ZR-SM4A-TF (http://www.jst-mfg.com/product/pdf/eng/eZH.pdf), generated with kicad-footprint-generator +connector JST ZH horizontal +0 +12 +11 +Connector_JST +JST_ZH_S11B-ZR-SM4A-TF_1x11-1MP_P1.50mm_Horizontal +JST ZH series connector, S11B-ZR-SM4A-TF (http://www.jst-mfg.com/product/pdf/eng/eZH.pdf), generated with kicad-footprint-generator +connector JST ZH horizontal +0 +13 +12 +Connector_JST +JST_ZH_S12B-ZR-SM4A-TF_1x12-1MP_P1.50mm_Horizontal +JST ZH series connector, S12B-ZR-SM4A-TF (http://www.jst-mfg.com/product/pdf/eng/eZH.pdf), generated with kicad-footprint-generator +connector JST ZH horizontal +0 +14 +13 +Connector_JST +JST_ZH_S13B-ZR-SM4A-TF_1x13-1MP_P1.50mm_Horizontal +JST ZH series connector, S13B-ZR-SM4A-TF (http://www.jst-mfg.com/product/pdf/eng/eZH.pdf), generated with kicad-footprint-generator +connector JST ZH horizontal +0 +15 +14 +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +0 +17 +16 +Connector_Molex +Molex_DuraClik_502352-0200_1x02-1MP_P2.00mm_Horizontal +Molex DuraClik series connector, 502352-0200 (http://www.molex.com/pdm_docs/sd/5023520200_sd.pdf), generated with kicad-footprint-generator +connector Molex DuraClik horizontal +0 +4 +3 +Connector_Molex +Molex_DuraClik_502352-0300_1x03-1MP_P2.00mm_Horizontal +Molex DuraClik series connector, 502352-0300 (http://www.molex.com/pdm_docs/sd/5023520200_sd.pdf), generated with kicad-footprint-generator +connector Molex DuraClik horizontal +0 +5 +4 +Connector_Molex +Molex_DuraClik_502352-0400_1x04-1MP_P2.00mm_Horizontal +Molex DuraClik series connector, 502352-0400 (http://www.molex.com/pdm_docs/sd/5023520200_sd.pdf), generated with kicad-footprint-generator +connector Molex DuraClik horizontal +0 +6 +5 +Connector_Molex +Molex_DuraClik_502352-0500_1x05-1MP_P2.00mm_Horizontal +Molex DuraClik series connector, 502352-0500 (http://www.molex.com/pdm_docs/sd/5023520200_sd.pdf), generated with kicad-footprint-generator +connector Molex DuraClik horizontal +0 +7 +6 +Connector_Molex +Molex_DuraClik_502352-0600_1x06-1MP_P2.00mm_Horizontal +Molex DuraClik series connector, 502352-0600 (http://www.molex.com/pdm_docs/sd/5023520200_sd.pdf), generated with kicad-footprint-generator +connector Molex DuraClik horizontal +0 +8 +7 +Connector_Molex +Molex_DuraClik_502352-0700_1x07-1MP_P2.00mm_Horizontal +Molex DuraClik series connector, 502352-0700 (http://www.molex.com/pdm_docs/sd/5023520200_sd.pdf), generated with kicad-footprint-generator +connector Molex DuraClik horizontal +0 +9 +8 +Connector_Molex +Molex_DuraClik_502352-0800_1x08-1MP_P2.00mm_Horizontal +Molex DuraClik series connector, 502352-0800 (http://www.molex.com/pdm_docs/sd/5023520200_sd.pdf), generated with kicad-footprint-generator +connector Molex DuraClik horizontal +0 +10 +9 +Connector_Molex +Molex_DuraClik_502352-0900_1x09-1MP_P2.00mm_Horizontal +Molex DuraClik series connector, 502352-0900 (http://www.molex.com/pdm_docs/sd/5023520200_sd.pdf), generated with kicad-footprint-generator +connector Molex DuraClik horizontal +0 +11 +10 +Connector_Molex +Molex_DuraClik_502352-1000_1x10-1MP_P2.00mm_Horizontal +Molex DuraClik series connector, 502352-1000 (http://www.molex.com/pdm_docs/sd/5023520200_sd.pdf), generated with kicad-footprint-generator +connector Molex DuraClik horizontal +0 +12 +11 +Connector_Molex +Molex_DuraClik_502352-1100_1x11-1MP_P2.00mm_Horizontal +Molex DuraClik series connector, 502352-1100 (http://www.molex.com/pdm_docs/sd/5023520200_sd.pdf), generated with kicad-footprint-generator +connector Molex DuraClik horizontal +0 +13 +12 +Connector_Molex +Molex_DuraClik_502352-1200_1x12-1MP_P2.00mm_Horizontal +Molex DuraClik series connector, 502352-1200 (http://www.molex.com/pdm_docs/sd/5023520200_sd.pdf), generated with kicad-footprint-generator +connector Molex DuraClik horizontal +0 +14 +13 +Connector_Molex +Molex_DuraClik_502352-1300_1x13-1MP_P2.00mm_Horizontal +Molex DuraClik series connector, 502352-1300 (http://www.molex.com/pdm_docs/sd/5023520200_sd.pdf), generated with kicad-footprint-generator +connector Molex DuraClik horizontal +0 +15 +14 +Connector_Molex +Molex_DuraClik_502352-1400_1x14-1MP_P2.00mm_Horizontal +Molex DuraClik series connector, 502352-1400 (http://www.molex.com/pdm_docs/sd/5023520200_sd.pdf), generated with kicad-footprint-generator +connector Molex DuraClik horizontal +0 +16 +15 +Connector_Molex +Molex_DuraClik_502352-1500_1x15-1MP_P2.00mm_Horizontal +Molex DuraClik series connector, 502352-1500 (http://www.molex.com/pdm_docs/sd/5023520200_sd.pdf), generated with kicad-footprint-generator +connector Molex DuraClik horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 horizontal +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-0214), 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 vertical +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 vertical +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 vertical +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 horizontal +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-0414), 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 vertical +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 vertical +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 vertical +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 horizontal +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-0614), 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 vertical +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 vertical +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 vertical +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 horizontal +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-0814), 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 vertical +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 vertical +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 vertical +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 horizontal +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-1014), 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 vertical +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 vertical +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 vertical +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 horizontal +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-1214), 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 vertical +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 vertical +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 vertical +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 horizontal +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-1414), 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 vertical +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 vertical +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 vertical +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 horizontal +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-1614), 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 vertical +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 vertical +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 vertical +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 horizontal +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-1814), 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 vertical +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 vertical +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 vertical +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 horizontal +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-2014), 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 vertical +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 vertical +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 vertical +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 horizontal +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-2214), 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 vertical +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 vertical +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 vertical +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 horizontal +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-2414), 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 vertical +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 vertical +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 vertical +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 horizontal +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-0212_1x02-1MP_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43650-0212 (compatible alternatives: 43650-0213, 43650-0214), 2 Pins per row (https://www.molex.com/pdm_docs/sd/436500212_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 horizontal +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-0312_1x03-1MP_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43650-0312 (compatible alternatives: 43650-0313, 43650-0314), 3 Pins per row (https://www.molex.com/pdm_docs/sd/436500212_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 horizontal +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-0412_1x04-1MP_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43650-0412 (compatible alternatives: 43650-0413, 43650-0414), 4 Pins per row (https://www.molex.com/pdm_docs/sd/436500212_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 horizontal +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-0512_1x05-1MP_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43650-0512 (compatible alternatives: 43650-0513, 43650-0514), 5 Pins per row (https://www.molex.com/pdm_docs/sd/436500212_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 horizontal +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-0612_1x06-1MP_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43650-0612 (compatible alternatives: 43650-0613, 43650-0614), 6 Pins per row (https://www.molex.com/pdm_docs/sd/436500212_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 horizontal +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-0712_1x07-1MP_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43650-0712 (compatible alternatives: 43650-0713, 43650-0714), 7 Pins per row (https://www.molex.com/pdm_docs/sd/436500212_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 horizontal +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-0812_1x08-1MP_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43650-0812 (compatible alternatives: 43650-0813, 43650-0814), 8 Pins per row (https://www.molex.com/pdm_docs/sd/436500212_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 horizontal +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-0912_1x09-1MP_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43650-0912 (compatible alternatives: 43650-0913, 43650-0914), 9 Pins per row (https://www.molex.com/pdm_docs/sd/436500212_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 horizontal +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-1012_1x10-1MP_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43650-1012 (compatible alternatives: 43650-1013, 43650-1014), 10 Pins per row (https://www.molex.com/pdm_docs/sd/436500212_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 horizontal +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-1112_1x11-1MP_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43650-1112 (compatible alternatives: 43650-1113, 43650-1114), 11 Pins per row (https://www.molex.com/pdm_docs/sd/436500212_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 horizontal +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-1212_1x12-1MP_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43650-1212 (compatible alternatives: 43650-1213, 43650-1214), 12 Pins per row (https://www.molex.com/pdm_docs/sd/436500212_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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 verticalplastic_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 vertical +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 verticalplastic_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 vertical +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 verticalplastic_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 vertical +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 verticalplastic_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 vertical +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 verticalplastic_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 vertical +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 verticalplastic_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 vertical +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 verticalplastic_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 vertical +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 verticalplastic_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 vertical +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 verticalplastic_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 vertical +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 verticalplastic_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 vertical +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 verticalplastic_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 vertical +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 verticalplastic_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 vertical +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 horizontalscrew_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 horizontalplastic_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 horizontalscrew_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 horizontalplastic_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 horizontalscrew_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 horizontalplastic_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 horizontalscrew_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 horizontalplastic_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 horizontalscrew_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 horizontalplastic_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 horizontalscrew_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 horizontalplastic_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 horizontalscrew_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 horizontalplastic_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 horizontalscrew_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 horizontalplastic_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 horizontalscrew_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 horizontalplastic_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 horizontalscrew_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 horizontalplastic_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 horizontalscrew_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 horizontalplastic_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 horizontalscrew_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 horizontalplastic_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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +0 +4 +3 +Connector_Molex +Molex_Pico-Lock_205338-0002_1x02-1MP_P2.00mm_Horizontal +Molex Pico-Lock series connector, 205338-0002 (https://www.molex.com/pdm_docs/sd/2053380002_sd.pdf), generated with kicad-footprint-generator +connector Molex Pico-Lock horizontal +0 +4 +3 +Connector_Molex +Molex_Pico-Lock_205338-0004_1x04-1MP_P2.00mm_Horizontal +Molex Pico-Lock series connector, 205338-0004 (https://www.molex.com/pdm_docs/sd/2053380002_sd.pdf), generated with kicad-footprint-generator +connector Molex Pico-Lock horizontal +0 +6 +5 +Connector_Molex +Molex_Pico-Lock_205338-0006_1x06-1MP_P2.00mm_Horizontal +Molex Pico-Lock series connector, 205338-0006 (https://www.molex.com/pdm_docs/sd/2053380002_sd.pdf), generated with kicad-footprint-generator +connector Molex Pico-Lock horizontal +0 +8 +7 +Connector_Molex +Molex_Pico-Lock_205338-0008_1x08-1MP_P2.00mm_Horizontal +Molex Pico-Lock series connector, 205338-0008 (https://www.molex.com/pdm_docs/sd/2053380002_sd.pdf), generated with kicad-footprint-generator +connector Molex Pico-Lock horizontal +0 +10 +9 +Connector_Molex +Molex_Pico-Lock_205338-0010_1x10-1MP_P2.00mm_Horizontal +Molex Pico-Lock series connector, 205338-0010 (https://www.molex.com/pdm_docs/sd/2053380002_sd.pdf), generated with kicad-footprint-generator +connector Molex Pico-Lock horizontal +0 +12 +11 +Connector_Molex +Molex_Pico-Lock_504050-0291_1x02-1MP_P1.50mm_Horizontal +Molex Pico-Lock series connector, 504050-0291 (http://www.molex.com/pdm_docs/sd/5040500891_sd.pdf), generated with kicad-footprint-generator +connector Molex Pico-Lock horizontal +0 +4 +3 +Connector_Molex +Molex_Pico-Lock_504050-0391_1x03-1MP_P1.50mm_Horizontal +Molex Pico-Lock series connector, 504050-0391 (http://www.molex.com/pdm_docs/sd/5040500891_sd.pdf), generated with kicad-footprint-generator +connector Molex Pico-Lock horizontal +0 +5 +4 +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-0991_1x09-1MP_P1.50mm_Horizontal +Molex Pico-Lock series connector, 504050-0991 (http://www.molex.com/pdm_docs/sd/5040500891_sd.pdf), generated with kicad-footprint-generator +connector Molex Pico-Lock horizontal +0 +11 +10 +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-1191_1x11-1MP_P1.50mm_Horizontal +Molex Pico-Lock series connector, 504050-1191 (http://www.molex.com/pdm_docs/sd/5040500891_sd.pdf), generated with kicad-footprint-generator +connector Molex Pico-Lock horizontal +0 +13 +12 +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +0 +80 +80 +Connector_Molex_Milligrid +Molex_8783204xx_2x02_P2.0mm_Header_Vertical +Milli-Grid PCB Header, Dual Row, Vertical, Surface Mount, Shrouded, 2.00 mm Pitch (source: https://www.molex.com/content/dam/molex/molex-dot-com/products/automated/en-us/salesdrawingpdf/878/87832/878320406_sd.pdf?inline) +conn molex pin header +0 +4 +4 +Connector_Molex_Milligrid +Molex_8783206xx_2x03_P2.0mm_Header_Vertical +Milli-Grid PCB Header, Dual Row, Vertical, Surface Mount, Shrouded, 2.00 mm Pitch (source: https://www.molex.com/content/dam/molex/molex-dot-com/products/automated/en-us/salesdrawingpdf/878/87832/878320606_sd.pdf?inline) +conn molex pin header +0 +6 +6 +Connector_Molex_Milligrid +Molex_8783206xx_2x03_P2.0mm_Header_Vertical_MountingPegs +Milli-Grid PCB Header, Dual Row, Vertical, Surface Mount, Shrouded, 2.00 mm Pitch, Mounting Pegs (source: https://www.molex.com/content/dam/molex/molex-dot-com/products/automated/en-us/salesdrawingpdf/878/87832/878320606_sd.pdf?inline) +conn molex pin header +0 +6 +6 +Connector_Molex_Milligrid +Molex_8783206xx_2x03_P2.0mm_Header_Vertical_Polarized +Milli-Grid PCB Header, Dual Row, Vertical, Surface Mount, Shrouded, 2.00 mm Pitch, Center Polarization (source: https://www.molex.com/content/dam/molex/molex-dot-com/products/automated/en-us/salesdrawingpdf/878/87832/878320606_sd.pdf?inline) +conn molex pin header +0 +6 +6 +Connector_Molex_Milligrid +Molex_8783206xx_2x03_P2.0mm_Header_Vertical_Polarized_MountingPegs +Milli-Grid PCB Header, Dual Row, Vertical, Surface Mount, Shrouded, 2.00 mm Pitch, Center Polarization, Mounting Pegs (source: https://www.molex.com/content/dam/molex/molex-dot-com/products/automated/en-us/salesdrawingpdf/878/87832/878320606_sd.pdf?inline) +conn molex pin header +0 +6 +6 +Connector_Molex_Milligrid +Molex_8783208xx_2x04_P2.0mm_Header_Vertical +Milli-Grid PCB Header, Dual Row, Vertical, Surface Mount, Shrouded, 2.00 mm Pitch (source: https://www.molex.com/content/dam/molex/molex-dot-com/products/automated/en-us/salesdrawingpdf/878/87832/878320806_sd.pdf?inline) +conn molex pin header +0 +8 +8 +Connector_Molex_Milligrid +Molex_8783208xx_2x04_P2.0mm_Header_Vertical_MountingPegs +Milli-Grid PCB Header, Dual Row, Vertical, Surface Mount, Shrouded, 2.00 mm Pitch, Mounting Pegs (source: https://www.molex.com/content/dam/molex/molex-dot-com/products/automated/en-us/salesdrawingpdf/878/87832/878320806_sd.pdf?inline) +conn molex pin header +0 +8 +8 +Connector_Molex_Milligrid +Molex_8783208xx_2x04_P2.0mm_Header_Vertical_Polarized +Milli-Grid PCB Header, Dual Row, Vertical, Surface Mount, Shrouded, 2.00 mm Pitch, Center Polarization (source: https://www.molex.com/content/dam/molex/molex-dot-com/products/automated/en-us/salesdrawingpdf/878/87832/878320806_sd.pdf?inline) +conn molex pin header +0 +8 +8 +Connector_Molex_Milligrid +Molex_8783208xx_2x04_P2.0mm_Header_Vertical_Polarized_MountingPegs +Milli-Grid PCB Header, Dual Row, Vertical, Surface Mount, Shrouded, 2.00 mm Pitch, Center Polarization, Mounting Pegs (source: https://www.molex.com/content/dam/molex/molex-dot-com/products/automated/en-us/salesdrawingpdf/878/87832/878320806_sd.pdf?inline) +conn molex pin header +0 +8 +8 +Connector_Molex_Milligrid +Molex_8783210xx_2x05_P2.0mm_Header_Vertical +Milli-Grid PCB Header, Dual Row, Vertical, Surface Mount, Shrouded, 2.00 mm Pitch (source: https://www.molex.com/content/dam/molex/molex-dot-com/products/automated/en-us/salesdrawingpdf/878/87832/878321006_sd.pdf?inline) +conn molex pin header +0 +10 +10 +Connector_Molex_Milligrid +Molex_8783210xx_2x05_P2.0mm_Header_Vertical_MountingPegs +Milli-Grid PCB Header, Dual Row, Vertical, Surface Mount, Shrouded, 2.00 mm Pitch, Mounting Pegs (source: https://www.molex.com/content/dam/molex/molex-dot-com/products/automated/en-us/salesdrawingpdf/878/87832/878321006_sd.pdf?inline) +conn molex pin header +0 +10 +10 +Connector_Molex_Milligrid +Molex_8783210xx_2x05_P2.0mm_Header_Vertical_Polarized +Milli-Grid PCB Header, Dual Row, Vertical, Surface Mount, Shrouded, 2.00 mm Pitch, Center Polarization (source: https://www.molex.com/content/dam/molex/molex-dot-com/products/automated/en-us/salesdrawingpdf/878/87832/878321006_sd.pdf?inline) +conn molex pin header +0 +10 +10 +Connector_Molex_Milligrid +Molex_8783210xx_2x05_P2.0mm_Header_Vertical_Polarized_MountingPegs +Milli-Grid PCB Header, Dual Row, Vertical, Surface Mount, Shrouded, 2.00 mm Pitch, Center Polarization, Mounting Pegs (source: https://www.molex.com/content/dam/molex/molex-dot-com/products/automated/en-us/salesdrawingpdf/878/87832/878321006_sd.pdf?inline) +conn molex pin header +0 +10 +10 +Connector_Molex_Milligrid +Molex_8783212xx_2x06_P2.0mm_Header_Vertical +Milli-Grid PCB Header, Dual Row, Vertical, Surface Mount, Shrouded, 2.00 mm Pitch (source: https://www.molex.com/content/dam/molex/molex-dot-com/products/automated/en-us/salesdrawingpdf/878/87832/878321206_sd.pdf?inline) +conn molex pin header +0 +12 +12 +Connector_Molex_Milligrid +Molex_8783212xx_2x06_P2.0mm_Header_Vertical_MountingPegs +Milli-Grid PCB Header, Dual Row, Vertical, Surface Mount, Shrouded, 2.00 mm Pitch, Mounting Pegs (source: https://www.molex.com/content/dam/molex/molex-dot-com/products/automated/en-us/salesdrawingpdf/878/87832/878321206_sd.pdf?inline) +conn molex pin header +0 +12 +12 +Connector_Molex_Milligrid +Molex_8783212xx_2x06_P2.0mm_Header_Vertical_Polarized +Milli-Grid PCB Header, Dual Row, Vertical, Surface Mount, Shrouded, 2.00 mm Pitch, Center Polarization (source: https://www.molex.com/content/dam/molex/molex-dot-com/products/automated/en-us/salesdrawingpdf/878/87832/878321206_sd.pdf?inline) +conn molex pin header +0 +12 +12 +Connector_Molex_Milligrid +Molex_8783212xx_2x06_P2.0mm_Header_Vertical_Polarized_MountingPegs +Milli-Grid PCB Header, Dual Row, Vertical, Surface Mount, Shrouded, 2.00 mm Pitch, Center Polarization, Mounting Pegs (source: https://www.molex.com/content/dam/molex/molex-dot-com/products/automated/en-us/salesdrawingpdf/878/87832/878321206_sd.pdf?inline) +conn molex pin header +0 +12 +12 +Connector_Molex_Milligrid +Molex_8783214xx_2x07_P2.0mm_Header_Vertical_Polarized +Milli-Grid PCB Header, Dual Row, Vertical, Surface Mount, Shrouded, 2.00 mm Pitch, Center Polarization (source: https://www.molex.com/content/dam/molex/molex-dot-com/products/automated/en-us/salesdrawingpdf/878/87832/878321406_sd.pdf?inline) +conn molex pin header +0 +14 +14 +Connector_Molex_Milligrid +Molex_8783214xx_2x07_P2.0mm_Header_Vertical_Polarized_MountingPegs +Milli-Grid PCB Header, Dual Row, Vertical, Surface Mount, Shrouded, 2.00 mm Pitch, Center Polarization, Mounting Pegs (source: https://www.molex.com/content/dam/molex/molex-dot-com/products/automated/en-us/salesdrawingpdf/878/87832/878321406_sd.pdf?inline) +conn molex pin header +0 +14 +14 +Connector_Molex_Milligrid +Molex_8783216xx_2x08_P2.0mm_Header_Vertical_Polarized +Milli-Grid PCB Header, Dual Row, Vertical, Surface Mount, Shrouded, 2.00 mm Pitch, Center Polarization (source: https://www.molex.com/content/dam/molex/molex-dot-com/products/automated/en-us/salesdrawingpdf/878/87832/878321606_sd.pdf?inline) +conn molex pin header +0 +16 +16 +Connector_Molex_Milligrid +Molex_8783216xx_2x08_P2.0mm_Header_Vertical_Polarized_MountingPegs +Milli-Grid PCB Header, Dual Row, Vertical, Surface Mount, Shrouded, 2.00 mm Pitch, Center Polarization, Mounting Pegs (source: https://www.molex.com/content/dam/molex/molex-dot-com/products/automated/en-us/salesdrawingpdf/878/87832/878321606_sd.pdf?inline) +conn molex pin header +0 +16 +16 +Connector_Molex_Milligrid +Molex_8783218xx_2x09_P2.0mm_Header_Vertical_Polarized +Milli-Grid PCB Header, Dual Row, Vertical, Surface Mount, Shrouded, 2.00 mm Pitch, Center Polarization (source: https://www.molex.com/content/dam/molex/molex-dot-com/products/automated/en-us/salesdrawingpdf/878/87832/878321806_sd.pdf?inline) +conn molex pin header +0 +18 +18 +Connector_Molex_Milligrid +Molex_8783218xx_2x09_P2.0mm_Header_Vertical_Polarized_MountingPegs +Milli-Grid PCB Header, Dual Row, Vertical, Surface Mount, Shrouded, 2.00 mm Pitch, Center Polarization, Mounting Pegs (source: https://www.molex.com/content/dam/molex/molex-dot-com/products/automated/en-us/salesdrawingpdf/878/87832/878321806_sd.pdf?inline) +conn molex pin header +0 +18 +18 +Connector_Molex_Milligrid +Molex_8783220xx_2x10_P2.0mm_Header_Vertical_Polarized +Milli-Grid PCB Header, Dual Row, Vertical, Surface Mount, Shrouded, 2.00 mm Pitch, Center Polarization (source: https://www.molex.com/content/dam/molex/molex-dot-com/products/automated/en-us/salesdrawingpdf/878/87832/878322006_sd.pdf?inline) +conn molex pin header +0 +20 +20 +Connector_Molex_Milligrid +Molex_8783220xx_2x10_P2.0mm_Header_Vertical_Polarized_MountingPegs +Milli-Grid PCB Header, Dual Row, Vertical, Surface Mount, Shrouded, 2.00 mm Pitch, Center Polarization, Mounting Pegs (source: https://www.molex.com/content/dam/molex/molex-dot-com/products/automated/en-us/salesdrawingpdf/878/87832/878322006_sd.pdf?inline) +conn molex pin header +0 +20 +20 +Connector_Molex_Milligrid +Molex_8783222xx_2x11_P2.0mm_Header_Vertical_Polarized +Milli-Grid PCB Header, Dual Row, Vertical, Surface Mount, Shrouded, 2.00 mm Pitch, Center Polarization (source: https://www.molex.com/content/dam/molex/molex-dot-com/products/automated/en-us/salesdrawingpdf/878/87832/878322206_sd.pdf?inline) +conn molex pin header +0 +22 +22 +Connector_Molex_Milligrid +Molex_8783222xx_2x11_P2.0mm_Header_Vertical_Polarized_MountingPegs +Milli-Grid PCB Header, Dual Row, Vertical, Surface Mount, Shrouded, 2.00 mm Pitch, Center Polarization, Mounting Pegs (source: https://www.molex.com/content/dam/molex/molex-dot-com/products/automated/en-us/salesdrawingpdf/878/87832/878322206_sd.pdf?inline) +conn molex pin header +0 +22 +22 +Connector_Molex_Milligrid +Molex_8783224xx_2x12_P2.0mm_Header_Vertical_Polarized +Milli-Grid PCB Header, Dual Row, Vertical, Surface Mount, Shrouded, 2.00 mm Pitch, Center Polarization (source: https://www.molex.com/content/dam/molex/molex-dot-com/products/automated/en-us/salesdrawingpdf/878/87832/878322406_sd.pdf?inline) +conn molex pin header +0 +24 +24 +Connector_Molex_Milligrid +Molex_8783224xx_2x12_P2.0mm_Header_Vertical_Polarized_MountingPegs +Milli-Grid PCB Header, Dual Row, Vertical, Surface Mount, Shrouded, 2.00 mm Pitch, Center Polarization, Mounting Pegs (source: https://www.molex.com/content/dam/molex/molex-dot-com/products/automated/en-us/salesdrawingpdf/878/87832/878322406_sd.pdf?inline) +conn molex pin header +0 +24 +24 +Connector_Molex_Milligrid +Molex_8783226xx_2x13_P2.0mm_Header_Vertical_Polarized +Milli-Grid PCB Header, Dual Row, Vertical, Surface Mount, Shrouded, 2.00 mm Pitch, Center Polarization (source: https://www.molex.com/content/dam/molex/molex-dot-com/products/automated/en-us/salesdrawingpdf/878/87832/878322606_sd.pdf?inline) +conn molex pin header +0 +26 +26 +Connector_Molex_Milligrid +Molex_8783226xx_2x13_P2.0mm_Header_Vertical_Polarized_MountingPegs +Milli-Grid PCB Header, Dual Row, Vertical, Surface Mount, Shrouded, 2.00 mm Pitch, Center Polarization, Mounting Pegs (source: https://www.molex.com/content/dam/molex/molex-dot-com/products/automated/en-us/salesdrawingpdf/878/87832/878322606_sd.pdf?inline) +conn molex pin header +0 +26 +26 +Connector_Molex_Milligrid +Molex_8783228xx_2x14_P2.0mm_Header_Vertical_Polarized +Milli-Grid PCB Header, Dual Row, Vertical, Surface Mount, Shrouded, 2.00 mm Pitch, Center Polarization (source: https://www.molex.com/content/dam/molex/molex-dot-com/products/automated/en-us/salesdrawingpdf/878/87832/878322806_sd.pdf?inline) +conn molex pin header +0 +28 +28 +Connector_Molex_Milligrid +Molex_8783228xx_2x14_P2.0mm_Header_Vertical_Polarized_MountingPegs +Milli-Grid PCB Header, Dual Row, Vertical, Surface Mount, Shrouded, 2.00 mm Pitch, Center Polarization, Mounting Pegs (source: https://www.molex.com/content/dam/molex/molex-dot-com/products/automated/en-us/salesdrawingpdf/878/87832/878322806_sd.pdf?inline) +conn molex pin header +0 +28 +28 +Connector_Molex_Milligrid +Molex_8783230xx_2x15_P2.0mm_Header_Vertical_Polarized +Milli-Grid PCB Header, Dual Row, Vertical, Surface Mount, Shrouded, 2.00 mm Pitch, Center Polarization (source: https://www.molex.com/content/dam/molex/molex-dot-com/products/automated/en-us/salesdrawingpdf/878/87832/878323006_sd.pdf?inline) +conn molex pin header +0 +30 +30 +Connector_Molex_Milligrid +Molex_8783230xx_2x15_P2.0mm_Header_Vertical_Polarized_MountingPegs +Milli-Grid PCB Header, Dual Row, Vertical, Surface Mount, Shrouded, 2.00 mm Pitch, Center Polarization, Mounting Pegs (source: https://www.molex.com/content/dam/molex/molex-dot-com/products/automated/en-us/salesdrawingpdf/878/87832/878323006_sd.pdf?inline) +conn molex pin header +0 +30 +30 +Connector_Molex_Milligrid +Molex_8783232xx_2x16_P2.0mm_Header_Vertical_Polarized +Milli-Grid PCB Header, Dual Row, Vertical, Surface Mount, Shrouded, 2.00 mm Pitch, Center Polarization (source: https://www.molex.com/content/dam/molex/molex-dot-com/products/automated/en-us/salesdrawingpdf/878/87832/878323206_sd.pdf?inline) +conn molex pin header +0 +32 +32 +Connector_Molex_Milligrid +Molex_8783232xx_2x16_P2.0mm_Header_Vertical_Polarized_MountingPegs +Milli-Grid PCB Header, Dual Row, Vertical, Surface Mount, Shrouded, 2.00 mm Pitch, Center Polarization, Mounting Pegs (source: https://www.molex.com/content/dam/molex/molex-dot-com/products/automated/en-us/salesdrawingpdf/878/87832/878323206_sd.pdf?inline) +conn molex pin header +0 +32 +32 +Connector_Molex_Milligrid +Molex_8783234xx_2x17_P2.0mm_Header_Vertical_Polarized +Milli-Grid PCB Header, Dual Row, Vertical, Surface Mount, Shrouded, 2.00 mm Pitch, Center Polarization (source: https://www.molex.com/content/dam/molex/molex-dot-com/products/automated/en-us/salesdrawingpdf/878/87832/878323406_sd.pdf?inline) +conn molex pin header +0 +34 +34 +Connector_Molex_Milligrid +Molex_8783234xx_2x17_P2.0mm_Header_Vertical_Polarized_MountingPegs +Milli-Grid PCB Header, Dual Row, Vertical, Surface Mount, Shrouded, 2.00 mm Pitch, Center Polarization, Mounting Pegs (source: https://www.molex.com/content/dam/molex/molex-dot-com/products/automated/en-us/salesdrawingpdf/878/87832/878323406_sd.pdf?inline) +conn molex pin header +0 +34 +34 +Connector_Molex_Milligrid +Molex_8783236xx_2x18_P2.0mm_Header_Vertical_Polarized +Milli-Grid PCB Header, Dual Row, Vertical, Surface Mount, Shrouded, 2.00 mm Pitch, Center Polarization (source: https://www.molex.com/content/dam/molex/molex-dot-com/products/automated/en-us/salesdrawingpdf/878/87832/878323606_sd.pdf?inline) +conn molex pin header +0 +36 +36 +Connector_Molex_Milligrid +Molex_8783236xx_2x18_P2.0mm_Header_Vertical_Polarized_MountingPegs +Milli-Grid PCB Header, Dual Row, Vertical, Surface Mount, Shrouded, 2.00 mm Pitch, Center Polarization, Mounting Pegs (source: https://www.molex.com/content/dam/molex/molex-dot-com/products/automated/en-us/salesdrawingpdf/878/87832/878323606_sd.pdf?inline) +conn molex pin header +0 +36 +36 +Connector_Molex_Milligrid +Molex_8783238xx_2x19_P2.0mm_Header_Vertical_Polarized +Milli-Grid PCB Header, Dual Row, Vertical, Surface Mount, Shrouded, 2.00 mm Pitch, Center Polarization (source: https://www.molex.com/content/dam/molex/molex-dot-com/products/automated/en-us/salesdrawingpdf/878/87832/878323806_sd.pdf?inline) +conn molex pin header +0 +38 +38 +Connector_Molex_Milligrid +Molex_8783238xx_2x19_P2.0mm_Header_Vertical_Polarized_MountingPegs +Milli-Grid PCB Header, Dual Row, Vertical, Surface Mount, Shrouded, 2.00 mm Pitch, Center Polarization, Mounting Pegs (source: https://www.molex.com/content/dam/molex/molex-dot-com/products/automated/en-us/salesdrawingpdf/878/87832/878323806_sd.pdf?inline) +conn molex pin header +0 +38 +38 +Connector_Molex_Milligrid +Molex_8783240xx_2x20_P2.0mm_Header_Vertical_Polarized +Milli-Grid PCB Header, Dual Row, Vertical, Surface Mount, Shrouded, 2.00 mm Pitch, Center Polarization (source: https://www.molex.com/content/dam/molex/molex-dot-com/products/automated/en-us/salesdrawingpdf/878/87832/878324006_sd.pdf?inline) +conn molex pin header +0 +40 +40 +Connector_Molex_Milligrid +Molex_8783240xx_2x20_P2.0mm_Header_Vertical_Polarized_MountingPegs +Milli-Grid PCB Header, Dual Row, Vertical, Surface Mount, Shrouded, 2.00 mm Pitch, Center Polarization, Mounting Pegs (source: https://www.molex.com/content/dam/molex/molex-dot-com/products/automated/en-us/salesdrawingpdf/878/87832/878324006_sd.pdf?inline) +conn molex pin header +0 +40 +40 +Connector_Molex_Milligrid +Molex_8783242xx_2x21_P2.0mm_Header_Vertical_Polarized +Milli-Grid PCB Header, Dual Row, Vertical, Surface Mount, Shrouded, 2.00 mm Pitch, Center Polarization (source: https://www.molex.com/content/dam/molex/molex-dot-com/products/automated/en-us/salesdrawingpdf/878/87832/878324206_sd.pdf?inline) +conn molex pin header +0 +42 +42 +Connector_Molex_Milligrid +Molex_8783242xx_2x21_P2.0mm_Header_Vertical_Polarized_MountingPegs +Milli-Grid PCB Header, Dual Row, Vertical, Surface Mount, Shrouded, 2.00 mm Pitch, Center Polarization, Mounting Pegs (source: https://www.molex.com/content/dam/molex/molex-dot-com/products/automated/en-us/salesdrawingpdf/878/87832/878324206_sd.pdf?inline) +conn molex pin header +0 +42 +42 +Connector_Molex_Milligrid +Molex_8783244xx_2x22_P2.0mm_Header_Vertical_Polarized +Milli-Grid PCB Header, Dual Row, Vertical, Surface Mount, Shrouded, 2.00 mm Pitch, Center Polarization (source: https://www.molex.com/content/dam/molex/molex-dot-com/products/automated/en-us/salesdrawingpdf/878/87832/878324406_sd.pdf?inline) +conn molex pin header +0 +44 +44 +Connector_Molex_Milligrid +Molex_8783244xx_2x22_P2.0mm_Header_Vertical_Polarized_MountingPegs +Milli-Grid PCB Header, Dual Row, Vertical, Surface Mount, Shrouded, 2.00 mm Pitch, Center Polarization, Mounting Pegs (source: https://www.molex.com/content/dam/molex/molex-dot-com/products/automated/en-us/salesdrawingpdf/878/87832/878324406_sd.pdf?inline) +conn molex pin header +0 +44 +44 +Connector_Molex_Milligrid +Molex_8783246xx_2x23_P2.0mm_Header_Vertical_Polarized +Milli-Grid PCB Header, Dual Row, Vertical, Surface Mount, Shrouded, 2.00 mm Pitch, Center Polarization (source: https://www.molex.com/content/dam/molex/molex-dot-com/products/automated/en-us/salesdrawingpdf/878/87832/878324606_sd.pdf?inline) +conn molex pin header +0 +46 +46 +Connector_Molex_Milligrid +Molex_8783246xx_2x23_P2.0mm_Header_Vertical_Polarized_MountingPegs +Milli-Grid PCB Header, Dual Row, Vertical, Surface Mount, Shrouded, 2.00 mm Pitch, Center Polarization, Mounting Pegs (source: https://www.molex.com/content/dam/molex/molex-dot-com/products/automated/en-us/salesdrawingpdf/878/87832/878324606_sd.pdf?inline) +conn molex pin header +0 +46 +46 +Connector_Molex_Milligrid +Molex_8783248xx_2x24_P2.0mm_Header_Vertical_Polarized +Milli-Grid PCB Header, Dual Row, Vertical, Surface Mount, Shrouded, 2.00 mm Pitch, Center Polarization (source: https://www.molex.com/content/dam/molex/molex-dot-com/products/automated/en-us/salesdrawingpdf/878/87832/878324806_sd.pdf?inline) +conn molex pin header +0 +48 +48 +Connector_Molex_Milligrid +Molex_8783248xx_2x24_P2.0mm_Header_Vertical_Polarized_MountingPegs +Milli-Grid PCB Header, Dual Row, Vertical, Surface Mount, Shrouded, 2.00 mm Pitch, Center Polarization, Mounting Pegs (source: https://www.molex.com/content/dam/molex/molex-dot-com/products/automated/en-us/salesdrawingpdf/878/87832/878324806_sd.pdf?inline) +conn molex pin header +0 +48 +48 +Connector_Molex_Milligrid +Molex_8783250xx_2x25_P2.0mm_Header_Vertical_Polarized +Milli-Grid PCB Header, Dual Row, Vertical, Surface Mount, Shrouded, 2.00 mm Pitch, Center Polarization (source: https://www.molex.com/content/dam/molex/molex-dot-com/products/automated/en-us/salesdrawingpdf/878/87832/878325006_sd.pdf?inline) +conn molex pin header +0 +50 +50 +Connector_Molex_Milligrid +Molex_8783250xx_2x25_P2.0mm_Header_Vertical_Polarized_MountingPegs +Milli-Grid PCB Header, Dual Row, Vertical, Surface Mount, Shrouded, 2.00 mm Pitch, Center Polarization, Mounting Pegs (source: https://www.molex.com/content/dam/molex/molex-dot-com/products/automated/en-us/salesdrawingpdf/878/87832/878325006_sd.pdf?inline) +conn molex pin header +0 +50 +50 +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 +JAE_MM60-EZH039-Bx_BUS_PCI_Express_Holder +PCI Express mini card latch for 3.9mm connector height, https://www.jae.com/direct/topics/topics_file_download/?topics_id=68909&ext_no=06&index=0&_lang=en&v=2022071912512930114109 +MiniPCI +0 +6 +1 +Connector_PCBEdge +JAE_MM60-EZH059-Bx_BUS_PCI_Express_Holder +PCI Express mini card latch for 5.9mm connector height, https://www.jae.com/direct/topics/topics_file_download/topics_id=68910&ext_no=06&index=0&_lang=en&v= +MiniPCI +0 +6 +1 +Connector_PCBEdge +SODIMM-200_1.8V_Card_edge +SODIMM 200-pins edge connector, Jedec MO-224 Variation AB compliant (1.8V DDR2 SDRAM), 0.6mm pitch, https://www.jst-mfg.com/product/pdf/eng/eDM-200P.pdf +sodimm +0 +200 +200 +Connector_PCBEdge +SODIMM-200_2.5V_Card_edge +SODIMM 200-pins edge connector, Jedec MO-224 Variation AA compliant (2.5V DDR SDRAM), 0.6mm pitch, https://www.jst-mfg.com/product/pdf/eng/eDM-200P.pdf +sodimm +0 +200 +200 +Connector_PCBEdge +SODIMM-260_DDR4_H4.0-5.2_OrientationStd_Socket +DDR4 SODIMM Socket, 0.5 mm pitch, 260 positions, 4 mm or 5 mm height, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F2309407%7F3%7Fpdf%7FEnglish%7FENG_CD_2309407_3.pdf%7F2309407-1 +SODIMM DIMM DDR DDR4 RAM +0 +262 +261 +Connector_PCBEdge +Samtec_MECF-05-0_-L-DV_2x05_P1.27mm_Polarized_Edge +Highspeed card edge connector for PCB's with 05 contacts (polarized) +conn samtec card-edge high-speed +0 +8 +8 +Connector_PCBEdge +Samtec_MECF-05-0_-NP-L-DV_2x05_P1.27mm_Edge +Highspeed card edge connector for PCB's with 05 contacts (not polarized) +conn samtec card-edge high-speed +0 +10 +10 +Connector_PCBEdge +Samtec_MECF-05-01-L-DV-WT_2x05_P1.27mm_Polarized_Socket_Horizontal +Highspeed card edge connector for 1.6mm PCB's with 05 contacts (polarized) +conn samtec card-edge high-speed +0 +10 +8 +Connector_PCBEdge +Samtec_MECF-05-01-L-DV_2x05_P1.27mm_Polarized_Socket_Horizontal +Highspeed card edge connector for 1.6mm PCB's with 05 contacts (polarized) +conn samtec card-edge high-speed +0 +8 +8 +Connector_PCBEdge +Samtec_MECF-05-01-NP-L-DV-WT_2x05_P1.27mm_Socket_Horizontal +Highspeed card edge connector for 1.6mm PCB's with 05 contacts (not polarized) +conn samtec card-edge high-speed +0 +12 +10 +Connector_PCBEdge +Samtec_MECF-05-01-NP-L-DV_2x05_P1.27mm_Socket_Horizontal +Highspeed card edge connector for 1.6mm PCB's with 05 contacts (not polarized) +conn samtec card-edge high-speed +0 +10 +10 +Connector_PCBEdge +Samtec_MECF-05-02-L-DV-WT_2x05_P1.27mm_Polarized_Socket_Horizontal +Highspeed card edge connector for 2.4mm PCB's with 05 contacts (polarized) +conn samtec card-edge high-speed +0 +10 +8 +Connector_PCBEdge +Samtec_MECF-05-02-L-DV_2x05_P1.27mm_Polarized_Socket_Horizontal +Highspeed card edge connector for 2.4mm PCB's with 05 contacts (polarized) +conn samtec card-edge high-speed +0 +8 +8 +Connector_PCBEdge +Samtec_MECF-05-02-NP-L-DV-WT_2x05_P1.27mm_Socket_Horizontal +Highspeed card edge connector for 2.4mm PCB's with 05 contacts (not polarized) +conn samtec card-edge high-speed +0 +12 +10 +Connector_PCBEdge +Samtec_MECF-05-02-NP-L-DV_2x05_P1.27mm_Socket_Horizontal +Highspeed card edge connector for 2.4mm PCB's with 05 contacts (not polarized) +conn samtec card-edge high-speed +0 +10 +10 +Connector_PCBEdge +Samtec_MECF-08-0_-L-DV_2x08_P1.27mm_Polarized_Edge +Highspeed card edge connector for PCB's with 08 contacts (polarized) +conn samtec card-edge high-speed +0 +14 +14 +Connector_PCBEdge +Samtec_MECF-08-0_-NP-L-DV_2x08_P1.27mm_Edge +Highspeed card edge connector for PCB's with 08 contacts (not polarized) +conn samtec card-edge high-speed +0 +16 +16 +Connector_PCBEdge +Samtec_MECF-08-01-L-DV-WT_2x08_P1.27mm_Polarized_Socket_Horizontal +Highspeed card edge connector for 1.6mm PCB's with 08 contacts (polarized) +conn samtec card-edge high-speed +0 +16 +14 +Connector_PCBEdge +Samtec_MECF-08-01-L-DV_2x08_P1.27mm_Polarized_Socket_Horizontal +Highspeed card edge connector for 1.6mm PCB's with 08 contacts (polarized) +conn samtec card-edge high-speed +0 +14 +14 +Connector_PCBEdge +Samtec_MECF-08-01-NP-L-DV-WT_2x08_P1.27mm_Socket_Horizontal +Highspeed card edge connector for 1.6mm PCB's with 08 contacts (not polarized) +conn samtec card-edge high-speed +0 +18 +16 +Connector_PCBEdge +Samtec_MECF-08-01-NP-L-DV_2x08_P1.27mm_Socket_Horizontal +Highspeed card edge connector for 1.6mm PCB's with 08 contacts (not polarized) +conn samtec card-edge high-speed +0 +16 +16 +Connector_PCBEdge +Samtec_MECF-08-02-L-DV-WT_2x08_P1.27mm_Polarized_Socket_Horizontal +Highspeed card edge connector for 2.4mm PCB's with 08 contacts (polarized) +conn samtec card-edge high-speed +0 +16 +14 +Connector_PCBEdge +Samtec_MECF-08-02-L-DV_2x08_P1.27mm_Polarized_Socket_Horizontal +Highspeed card edge connector for 2.4mm PCB's with 08 contacts (polarized) +conn samtec card-edge high-speed +0 +14 +14 +Connector_PCBEdge +Samtec_MECF-08-02-NP-L-DV-WT_2x08_P1.27mm_Socket_Horizontal +Highspeed card edge connector for 2.4mm PCB's with 08 contacts (not polarized) +conn samtec card-edge high-speed +0 +18 +16 +Connector_PCBEdge +Samtec_MECF-08-02-NP-L-DV_2x08_P1.27mm_Socket_Horizontal +Highspeed card edge connector for 2.4mm PCB's with 08 contacts (not polarized) +conn samtec card-edge high-speed +0 +16 +16 +Connector_PCBEdge +Samtec_MECF-20-0_-L-DV_2x20_P1.27mm_Polarized_Edge +Highspeed card edge connector for PCB's with 20 contacts (polarized) +conn samtec card-edge high-speed +0 +38 +38 +Connector_PCBEdge +Samtec_MECF-20-0_-NP-L-DV_2x20_P1.27mm_Edge +Highspeed card edge connector for PCB's with 20 contacts (not polarized) +conn samtec card-edge high-speed +0 +40 +40 +Connector_PCBEdge +Samtec_MECF-20-01-L-DV-WT_2x20_P1.27mm_Polarized_Socket_Horizontal +Highspeed card edge connector for 1.6mm PCB's with 20 contacts (polarized) +conn samtec card-edge high-speed +0 +40 +38 +Connector_PCBEdge +Samtec_MECF-20-01-L-DV_2x20_P1.27mm_Polarized_Socket_Horizontal +Highspeed card edge connector for 1.6mm PCB's with 20 contacts (polarized) +conn samtec card-edge high-speed +0 +38 +38 +Connector_PCBEdge +Samtec_MECF-20-01-NP-L-DV-WT_2x20_P1.27mm_Socket_Horizontal +Highspeed card edge connector for 1.6mm PCB's with 20 contacts (not polarized) +conn samtec card-edge high-speed +0 +42 +40 +Connector_PCBEdge +Samtec_MECF-20-01-NP-L-DV_2x20_P1.27mm_Socket_Horizontal +Highspeed card edge connector for 1.6mm PCB's with 20 contacts (not polarized) +conn samtec card-edge high-speed +0 +40 +40 +Connector_PCBEdge +Samtec_MECF-20-02-L-DV-WT_2x20_P1.27mm_Polarized_Socket_Horizontal +Highspeed card edge connector for 2.4mm PCB's with 20 contacts (polarized) +conn samtec card-edge high-speed +0 +40 +38 +Connector_PCBEdge +Samtec_MECF-20-02-L-DV_2x20_P1.27mm_Polarized_Socket_Horizontal +Highspeed card edge connector for 2.4mm PCB's with 20 contacts (polarized) +conn samtec card-edge high-speed +0 +38 +38 +Connector_PCBEdge +Samtec_MECF-20-02-NP-L-DV-WT_2x20_P1.27mm_Socket_Horizontal +Highspeed card edge connector for 2.4mm PCB's with 20 contacts (not polarized) +conn samtec card-edge high-speed +0 +42 +40 +Connector_PCBEdge +Samtec_MECF-20-02-NP-L-DV_2x20_P1.27mm_Socket_Horizontal +Highspeed card edge connector for 2.4mm PCB's with 20 contacts (not polarized) +conn samtec card-edge high-speed +0 +40 +40 +Connector_PCBEdge +Samtec_MECF-30-0_-L-DV_2x30_P1.27mm_Polarized_Edge +Highspeed card edge connector for PCB's with 30 contacts (polarized) +conn samtec card-edge high-speed +0 +58 +58 +Connector_PCBEdge +Samtec_MECF-30-0_-NP-L-DV_2x30_P1.27mm_Edge +Highspeed card edge connector for PCB's with 30 contacts (not polarized) +conn samtec card-edge high-speed +0 +60 +60 +Connector_PCBEdge +Samtec_MECF-30-01-L-DV-WT_2x30_P1.27mm_Polarized_Socket_Horizontal +Highspeed card edge connector for 1.6mm PCB's with 30 contacts (polarized) +conn samtec card-edge high-speed +0 +60 +58 +Connector_PCBEdge +Samtec_MECF-30-01-L-DV_2x30_P1.27mm_Polarized_Socket_Horizontal +Highspeed card edge connector for 1.6mm PCB's with 30 contacts (polarized) +conn samtec card-edge high-speed +0 +58 +58 +Connector_PCBEdge +Samtec_MECF-30-01-NP-L-DV-WT_2x30_P1.27mm_Socket_Horizontal +Highspeed card edge connector for 1.6mm PCB's with 30 contacts (not polarized) +conn samtec card-edge high-speed +0 +62 +60 +Connector_PCBEdge +Samtec_MECF-30-01-NP-L-DV_2x30_P1.27mm_Socket_Horizontal +Highspeed card edge connector for 1.6mm PCB's with 30 contacts (not polarized) +conn samtec card-edge high-speed +0 +60 +60 +Connector_PCBEdge +Samtec_MECF-30-02-L-DV-WT_2x30_P1.27mm_Polarized_Socket_Horizontal +Highspeed card edge connector for 2.4mm PCB's with 30 contacts (polarized) +conn samtec card-edge high-speed +0 +60 +58 +Connector_PCBEdge +Samtec_MECF-30-02-L-DV_2x30_P1.27mm_Polarized_Socket_Horizontal +Highspeed card edge connector for 2.4mm PCB's with 30 contacts (polarized) +conn samtec card-edge high-speed +0 +58 +58 +Connector_PCBEdge +Samtec_MECF-30-02-NP-L-DV-WT_2x30_P1.27mm_Socket_Horizontal +Highspeed card edge connector for 2.4mm PCB's with 30 contacts (not polarized) +conn samtec card-edge high-speed +0 +62 +60 +Connector_PCBEdge +Samtec_MECF-30-02-NP-L-DV_2x30_P1.27mm_Socket_Horizontal +Highspeed card edge connector for 2.4mm PCB's with 30 contacts (not polarized) +conn samtec card-edge high-speed +0 +60 +60 +Connector_PCBEdge +Samtec_MECF-40-0_-L-DV_2x40_P1.27mm_Polarized_Edge +Highspeed card edge connector for PCB's with 40 contacts (polarized) +conn samtec card-edge high-speed +0 +78 +78 +Connector_PCBEdge +Samtec_MECF-40-0_-NP-L-DV_2x40_P1.27mm_Edge +Highspeed card edge connector for PCB's with 40 contacts (not polarized) +conn samtec card-edge high-speed +0 +80 +80 +Connector_PCBEdge +Samtec_MECF-40-01-L-DV-WT_2x40_P1.27mm_Polarized_Socket_Horizontal +Highspeed card edge connector for 1.6mm PCB's with 40 contacts (polarized) +conn samtec card-edge high-speed +0 +80 +78 +Connector_PCBEdge +Samtec_MECF-40-01-L-DV_2x40_P1.27mm_Polarized_Socket_Horizontal +Highspeed card edge connector for 1.6mm PCB's with 40 contacts (polarized) +conn samtec card-edge high-speed +0 +78 +78 +Connector_PCBEdge +Samtec_MECF-40-01-NP-L-DV-WT_2x40_P1.27mm_Socket_Horizontal +Highspeed card edge connector for 1.6mm PCB's with 40 contacts (not polarized) +conn samtec card-edge high-speed +0 +82 +80 +Connector_PCBEdge +Samtec_MECF-40-01-NP-L-DV_2x40_P1.27mm_Socket_Horizontal +Highspeed card edge connector for 1.6mm PCB's with 40 contacts (not polarized) +conn samtec card-edge high-speed +0 +80 +80 +Connector_PCBEdge +Samtec_MECF-40-02-L-DV-WT_2x40_P1.27mm_Polarized_Socket_Horizontal +Highspeed card edge connector for 2.4mm PCB's with 40 contacts (polarized) +conn samtec card-edge high-speed +0 +80 +78 +Connector_PCBEdge +Samtec_MECF-40-02-L-DV_2x40_P1.27mm_Polarized_Socket_Horizontal +Highspeed card edge connector for 2.4mm PCB's with 40 contacts (polarized) +conn samtec card-edge high-speed +0 +78 +78 +Connector_PCBEdge +Samtec_MECF-40-02-NP-L-DV-WT_2x40_P1.27mm_Socket_Horizontal +Highspeed card edge connector for 2.4mm PCB's with 40 contacts (not polarized) +conn samtec card-edge high-speed +0 +82 +80 +Connector_PCBEdge +Samtec_MECF-40-02-NP-L-DV_2x40_P1.27mm_Socket_Horizontal +Highspeed card edge connector for 2.4mm PCB's with 40 contacts (not polarized) +conn samtec card-edge high-speed +0 +80 +80 +Connector_PCBEdge +Samtec_MECF-50-0_-L-DV_2x50_P1.27mm_Polarized_Edge +Highspeed card edge connector for PCB's with 50 contacts (polarized) +conn samtec card-edge high-speed +0 +98 +98 +Connector_PCBEdge +Samtec_MECF-50-0_-NP-L-DV_2x50_P1.27mm_Edge +Highspeed card edge connector for PCB's with 50 contacts (not polarized) +conn samtec card-edge high-speed +0 +100 +100 +Connector_PCBEdge +Samtec_MECF-50-01-L-DV-WT_2x50_P1.27mm_Polarized_Socket_Horizontal +Highspeed card edge connector for 1.6mm PCB's with 50 contacts (polarized) +conn samtec card-edge high-speed +0 +100 +98 +Connector_PCBEdge +Samtec_MECF-50-01-L-DV_2x50_P1.27mm_Polarized_Socket_Horizontal +Highspeed card edge connector for 1.6mm PCB's with 50 contacts (polarized) +conn samtec card-edge high-speed +0 +98 +98 +Connector_PCBEdge +Samtec_MECF-50-01-NP-L-DV-WT_2x50_P1.27mm_Socket_Horizontal +Highspeed card edge connector for 1.6mm PCB's with 50 contacts (not polarized) +conn samtec card-edge high-speed +0 +102 +100 +Connector_PCBEdge +Samtec_MECF-50-01-NP-L-DV_2x50_P1.27mm_Socket_Horizontal +Highspeed card edge connector for 1.6mm PCB's with 50 contacts (not polarized) +conn samtec card-edge high-speed +0 +100 +100 +Connector_PCBEdge +Samtec_MECF-50-02-L-DV-WT_2x50_P1.27mm_Polarized_Socket_Horizontal +Highspeed card edge connector for 2.4mm PCB's with 50 contacts (polarized) +conn samtec card-edge high-speed +0 +100 +98 +Connector_PCBEdge +Samtec_MECF-50-02-L-DV_2x50_P1.27mm_Polarized_Socket_Horizontal +Highspeed card edge connector for 2.4mm PCB's with 50 contacts (polarized) +conn samtec card-edge high-speed +0 +98 +98 +Connector_PCBEdge +Samtec_MECF-50-02-NP-L-DV-WT_2x50_P1.27mm_Socket_Horizontal +Highspeed card edge connector for 2.4mm PCB's with 50 contacts (not polarized) +conn samtec card-edge high-speed +0 +102 +100 +Connector_PCBEdge +Samtec_MECF-50-02-NP-L-DV_2x50_P1.27mm_Socket_Horizontal +Highspeed card edge connector for 2.4mm PCB's with 50 contacts (not polarized) +conn samtec card-edge high-speed +0 +100 +100 +Connector_PCBEdge +Samtec_MECF-60-0_-L-DV_2x60_P1.27mm_Polarized_Edge +Highspeed card edge connector for PCB's with 60 contacts (polarized) +conn samtec card-edge high-speed +0 +116 +116 +Connector_PCBEdge +Samtec_MECF-60-0_-NP-L-DV_2x60_P1.27mm_Edge +Highspeed card edge connector for PCB's with 60 contacts (not polarized) +conn samtec card-edge high-speed +0 +120 +120 +Connector_PCBEdge +Samtec_MECF-60-01-L-DV-WT_2x60_P1.27mm_Polarized_Socket_Horizontal +Highspeed card edge connector for 1.6mm PCB's with 60 contacts (polarized) +conn samtec card-edge high-speed +0 +118 +116 +Connector_PCBEdge +Samtec_MECF-60-01-L-DV_2x60_P1.27mm_Polarized_Socket_Horizontal +Highspeed card edge connector for 1.6mm PCB's with 60 contacts (polarized) +conn samtec card-edge high-speed +0 +116 +116 +Connector_PCBEdge +Samtec_MECF-60-01-NP-L-DV-WT_2x60_P1.27mm_Socket_Horizontal +Highspeed card edge connector for 1.6mm PCB's with 60 contacts (not polarized) +conn samtec card-edge high-speed +0 +122 +120 +Connector_PCBEdge +Samtec_MECF-60-01-NP-L-DV_2x60_P1.27mm_Socket_Horizontal +Highspeed card edge connector for 1.6mm PCB's with 60 contacts (not polarized) +conn samtec card-edge high-speed +0 +120 +120 +Connector_PCBEdge +Samtec_MECF-60-02-L-DV-WT_2x60_P1.27mm_Polarized_Socket_Horizontal +Highspeed card edge connector for 2.4mm PCB's with 60 contacts (polarized) +conn samtec card-edge high-speed +0 +118 +116 +Connector_PCBEdge +Samtec_MECF-60-02-L-DV_2x60_P1.27mm_Polarized_Socket_Horizontal +Highspeed card edge connector for 2.4mm PCB's with 60 contacts (polarized) +conn samtec card-edge high-speed +0 +116 +116 +Connector_PCBEdge +Samtec_MECF-60-02-NP-L-DV-WT_2x60_P1.27mm_Socket_Horizontal +Highspeed card edge connector for 2.4mm PCB's with 60 contacts (not polarized) +conn samtec card-edge high-speed +0 +122 +120 +Connector_PCBEdge +Samtec_MECF-60-02-NP-L-DV_2x60_P1.27mm_Socket_Horizontal +Highspeed card edge connector for 2.4mm PCB's with 60 contacts (not polarized) +conn samtec card-edge high-speed +0 +120 +120 +Connector_PCBEdge +Samtec_MECF-70-0_-L-DV_2x70_P1.27mm_Polarized_Edge +Highspeed card edge connector for PCB's with 70 contacts (polarized) +conn samtec card-edge high-speed +0 +136 +136 +Connector_PCBEdge +Samtec_MECF-70-0_-NP-L-DV_2x70_P1.27mm_Edge +Highspeed card edge connector for PCB's with 70 contacts (not polarized) +conn samtec card-edge high-speed +0 +140 +140 +Connector_PCBEdge +Samtec_MECF-70-01-L-DV-WT_2x70_P1.27mm_Polarized_Socket_Horizontal +Highspeed card edge connector for 1.6mm PCB's with 70 contacts (polarized) +conn samtec card-edge high-speed +0 +138 +136 +Connector_PCBEdge +Samtec_MECF-70-01-L-DV_2x70_P1.27mm_Polarized_Socket_Horizontal +Highspeed card edge connector for 1.6mm PCB's with 70 contacts (polarized) +conn samtec card-edge high-speed +0 +136 +136 +Connector_PCBEdge +Samtec_MECF-70-01-NP-L-DV-WT_2x70_P1.27mm_Socket_Horizontal +Highspeed card edge connector for 1.6mm PCB's with 70 contacts (not polarized) +conn samtec card-edge high-speed +0 +142 +140 +Connector_PCBEdge +Samtec_MECF-70-01-NP-L-DV_2x70_P1.27mm_Socket_Horizontal +Highspeed card edge connector for 1.6mm PCB's with 70 contacts (not polarized) +conn samtec card-edge high-speed +0 +140 +140 +Connector_PCBEdge +Samtec_MECF-70-02-L-DV-WT_2x70_P1.27mm_Polarized_Socket_Horizontal +Highspeed card edge connector for 2.4mm PCB's with 70 contacts (polarized) +conn samtec card-edge high-speed +0 +138 +136 +Connector_PCBEdge +Samtec_MECF-70-02-L-DV_2x70_P1.27mm_Polarized_Socket_Horizontal +Highspeed card edge connector for 2.4mm PCB's with 70 contacts (polarized) +conn samtec card-edge high-speed +0 +136 +136 +Connector_PCBEdge +Samtec_MECF-70-02-NP-L-DV-WT_2x70_P1.27mm_Socket_Horizontal +Highspeed card edge connector for 2.4mm PCB's with 70 contacts (not polarized) +conn samtec card-edge high-speed +0 +142 +140 +Connector_PCBEdge +Samtec_MECF-70-02-NP-L-DV_2x70_P1.27mm_Socket_Horizontal +Highspeed card edge connector for 2.4mm PCB's with 70 contacts (not polarized) +conn samtec card-edge high-speed +0 +140 +140 +Connector_PCBEdge +molex_EDGELOCK_2-CKT +https://www.molex.com/pdm_docs/sd/2008900106_sd.pdf +Connector PCBEdge molex EDGELOCK +0 +2 +2 +Connector_PCBEdge +molex_EDGELOCK_4-CKT +https://www.molex.com/pdm_docs/sd/2008900106_sd.pdf +Connector PCBEdge molex EDGELOCK +0 +4 +4 +Connector_PCBEdge +molex_EDGELOCK_6-CKT +https://www.molex.com/pdm_docs/sd/2008900106_sd.pdf +Connector PCBEdge molex EDGELOCK +0 +6 +6 +Connector_PCBEdge +molex_EDGELOCK_8-CKT +https://www.molex.com/pdm_docs/sd/2008900106_sd.pdf +Connector PCBEdge molex EDGELOCK +0 +8 +8 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBA_2,5_2-G-7,62_1x02_P7.62mm_Horizontal +Generic Phoenix Contact connector footprint for: GMSTBA_2,5/2-G-7,62; number of pins: 02; pin pitch: 7.62mm; Angled || order number: 1766233 12A 630V +phoenix_contact connector GMSTBA_01x02_G_7.62mm +0 +2 +2 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBA_2,5_2-G_1x02_P7.50mm_Horizontal +Generic Phoenix Contact connector footprint for: GMSTBA_2,5/2-G; number of pins: 02; pin pitch: 7.50mm; Angled || order number: 1766343 12A 630V +phoenix_contact connector GMSTBA_01x02_G_7.50mm +0 +2 +2 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBA_2,5_3-G-7,62_1x03_P7.62mm_Horizontal +Generic Phoenix Contact connector footprint for: GMSTBA_2,5/3-G-7,62; number of pins: 03; pin pitch: 7.62mm; Angled || order number: 1766246 12A 630V +phoenix_contact connector GMSTBA_01x03_G_7.62mm +0 +3 +3 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBA_2,5_3-G_1x03_P7.50mm_Horizontal +Generic Phoenix Contact connector footprint for: GMSTBA_2,5/3-G; number of pins: 03; pin pitch: 7.50mm; Angled || order number: 1766356 12A 630V +phoenix_contact connector GMSTBA_01x03_G_7.50mm +0 +3 +3 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBA_2,5_4-G-7,62_1x04_P7.62mm_Horizontal +Generic Phoenix Contact connector footprint for: GMSTBA_2,5/4-G-7,62; number of pins: 04; pin pitch: 7.62mm; Angled || order number: 1766259 12A 630V +phoenix_contact connector GMSTBA_01x04_G_7.62mm +0 +4 +4 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBA_2,5_4-G_1x04_P7.50mm_Horizontal +Generic Phoenix Contact connector footprint for: GMSTBA_2,5/4-G; number of pins: 04; pin pitch: 7.50mm; Angled || order number: 1766369 12A 630V +phoenix_contact connector GMSTBA_01x04_G_7.50mm +0 +4 +4 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBA_2,5_5-G-7,62_1x05_P7.62mm_Horizontal +Generic Phoenix Contact connector footprint for: GMSTBA_2,5/5-G-7,62; number of pins: 05; pin pitch: 7.62mm; Angled || order number: 1766262 12A 630V +phoenix_contact connector GMSTBA_01x05_G_7.62mm +0 +5 +5 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBA_2,5_5-G_1x05_P7.50mm_Horizontal +Generic Phoenix Contact connector footprint for: GMSTBA_2,5/5-G; number of pins: 05; pin pitch: 7.50mm; Angled || order number: 1766372 12A 630V +phoenix_contact connector GMSTBA_01x05_G_7.50mm +0 +5 +5 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBA_2,5_6-G-7,62_1x06_P7.62mm_Horizontal +Generic Phoenix Contact connector footprint for: GMSTBA_2,5/6-G-7,62; number of pins: 06; pin pitch: 7.62mm; Angled || order number: 1766275 12A 630V +phoenix_contact connector GMSTBA_01x06_G_7.62mm +0 +6 +6 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBA_2,5_6-G_1x06_P7.50mm_Horizontal +Generic Phoenix Contact connector footprint for: GMSTBA_2,5/6-G; number of pins: 06; pin pitch: 7.50mm; Angled || order number: 1766385 12A 630V +phoenix_contact connector GMSTBA_01x06_G_7.50mm +0 +6 +6 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBA_2,5_7-G-7,62_1x07_P7.62mm_Horizontal +Generic Phoenix Contact connector footprint for: GMSTBA_2,5/7-G-7,62; number of pins: 07; pin pitch: 7.62mm; Angled || order number: 1766288 12A 630V +phoenix_contact connector GMSTBA_01x07_G_7.62mm +0 +7 +7 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBA_2,5_7-G_1x07_P7.50mm_Horizontal +Generic Phoenix Contact connector footprint for: GMSTBA_2,5/7-G; number of pins: 07; pin pitch: 7.50mm; Angled || order number: 1766398 12A 630V +phoenix_contact connector GMSTBA_01x07_G_7.50mm +0 +7 +7 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBA_2,5_8-G-7,62_1x08_P7.62mm_Horizontal +Generic Phoenix Contact connector footprint for: GMSTBA_2,5/8-G-7,62; number of pins: 08; pin pitch: 7.62mm; Angled || order number: 1766291 12A 630V +phoenix_contact connector GMSTBA_01x08_G_7.62mm +0 +8 +8 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBA_2,5_8-G_1x08_P7.50mm_Horizontal +Generic Phoenix Contact connector footprint for: GMSTBA_2,5/8-G; number of pins: 08; pin pitch: 7.50mm; Angled || order number: 1766408 12A 630V +phoenix_contact connector GMSTBA_01x08_G_7.50mm +0 +8 +8 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBA_2,5_9-G-7,62_1x09_P7.62mm_Horizontal +Generic Phoenix Contact connector footprint for: GMSTBA_2,5/9-G-7,62; number of pins: 09; pin pitch: 7.62mm; Angled || order number: 1766301 12A 630V +phoenix_contact connector GMSTBA_01x09_G_7.62mm +0 +9 +9 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBA_2,5_9-G_1x09_P7.50mm_Horizontal +Generic Phoenix Contact connector footprint for: GMSTBA_2,5/9-G; number of pins: 09; pin pitch: 7.50mm; Angled || order number: 1766411 12A 630V +phoenix_contact connector GMSTBA_01x09_G_7.50mm +0 +9 +9 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBA_2,5_10-G-7,62_1x10_P7.62mm_Horizontal +Generic Phoenix Contact connector footprint for: GMSTBA_2,5/10-G-7,62; number of pins: 10; pin pitch: 7.62mm; Angled || order number: 1766314 12A 630V +phoenix_contact connector GMSTBA_01x10_G_7.62mm +0 +10 +10 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBA_2,5_10-G_1x10_P7.50mm_Horizontal +Generic Phoenix Contact connector footprint for: GMSTBA_2,5/10-G; number of pins: 10; pin pitch: 7.50mm; Angled || order number: 1766424 12A 630V +phoenix_contact connector GMSTBA_01x10_G_7.50mm +0 +10 +10 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBA_2,5_11-G-7,62_1x11_P7.62mm_Horizontal +Generic Phoenix Contact connector footprint for: GMSTBA_2,5/11-G-7,62; number of pins: 11; pin pitch: 7.62mm; Angled || order number: 1766327 12A 630V +phoenix_contact connector GMSTBA_01x11_G_7.62mm +0 +11 +11 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBA_2,5_11-G_1x11_P7.50mm_Horizontal +Generic Phoenix Contact connector footprint for: GMSTBA_2,5/11-G; number of pins: 11; pin pitch: 7.50mm; Angled || order number: 1766437 12A 630V +phoenix_contact connector GMSTBA_01x11_G_7.50mm +0 +11 +11 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBA_2,5_12-G-7,62_1x12_P7.62mm_Horizontal +Generic Phoenix Contact connector footprint for: GMSTBA_2,5/12-G-7,62; number of pins: 12; pin pitch: 7.62mm; Angled || order number: 1766330 12A 630V +phoenix_contact connector GMSTBA_01x12_G_7.62mm +0 +12 +12 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBA_2,5_12-G_1x12_P7.50mm_Horizontal +Generic Phoenix Contact connector footprint for: GMSTBA_2,5/12-G; number of pins: 12; pin pitch: 7.50mm; Angled || order number: 1766440 12A 630V +phoenix_contact connector GMSTBA_01x12_G_7.50mm +0 +12 +12 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBVA_2,5_2-G-7,62_1x02_P7.62mm_Vertical +Generic Phoenix Contact connector footprint for: GMSTBVA_2,5/2-G-7,62; number of pins: 02; pin pitch: 7.62mm; Vertical || order number: 1766770 12A 630V +phoenix_contact connector GMSTBVA_01x02_G_7.62mm +0 +2 +2 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBVA_2,5_2-G_1x02_P7.50mm_Vertical +Generic Phoenix Contact connector footprint for: GMSTBVA_2,5/2-G; number of pins: 02; pin pitch: 7.50mm; Vertical || order number: 1766660 12A 630V +phoenix_contact connector GMSTBVA_01x02_G_7.50mm +0 +2 +2 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBVA_2,5_3-G-7,62_1x03_P7.62mm_Vertical +Generic Phoenix Contact connector footprint for: GMSTBVA_2,5/3-G-7,62; number of pins: 03; pin pitch: 7.62mm; Vertical || order number: 1766783 12A 630V +phoenix_contact connector GMSTBVA_01x03_G_7.62mm +0 +3 +3 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBVA_2,5_3-G_1x03_P7.50mm_Vertical +Generic Phoenix Contact connector footprint for: GMSTBVA_2,5/3-G; number of pins: 03; pin pitch: 7.50mm; Vertical || order number: 1766673 12A 630V +phoenix_contact connector GMSTBVA_01x03_G_7.50mm +0 +3 +3 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBVA_2,5_4-G-7,62_1x04_P7.62mm_Vertical +Generic Phoenix Contact connector footprint for: GMSTBVA_2,5/4-G-7,62; number of pins: 04; pin pitch: 7.62mm; Vertical || order number: 1766796 12A 630V +phoenix_contact connector GMSTBVA_01x04_G_7.62mm +0 +4 +4 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBVA_2,5_4-G_1x04_P7.50mm_Vertical +Generic Phoenix Contact connector footprint for: GMSTBVA_2,5/4-G; number of pins: 04; pin pitch: 7.50mm; Vertical || order number: 1766686 12A 630V +phoenix_contact connector GMSTBVA_01x04_G_7.50mm +0 +4 +4 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBVA_2,5_5-G-7,62_1x05_P7.62mm_Vertical +Generic Phoenix Contact connector footprint for: GMSTBVA_2,5/5-G-7,62; number of pins: 05; pin pitch: 7.62mm; Vertical || order number: 1766806 12A 630V +phoenix_contact connector GMSTBVA_01x05_G_7.62mm +0 +5 +5 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBVA_2,5_5-G_1x05_P7.50mm_Vertical +Generic Phoenix Contact connector footprint for: GMSTBVA_2,5/5-G; number of pins: 05; pin pitch: 7.50mm; Vertical || order number: 1766699 12A 630V +phoenix_contact connector GMSTBVA_01x05_G_7.50mm +0 +5 +5 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBVA_2,5_6-G-7,62_1x06_P7.62mm_Vertical +Generic Phoenix Contact connector footprint for: GMSTBVA_2,5/6-G-7,62; number of pins: 06; pin pitch: 7.62mm; Vertical || order number: 1766819 12A 630V +phoenix_contact connector GMSTBVA_01x06_G_7.62mm +0 +6 +6 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBVA_2,5_6-G_1x06_P7.50mm_Vertical +Generic Phoenix Contact connector footprint for: GMSTBVA_2,5/6-G; number of pins: 06; pin pitch: 7.50mm; Vertical || order number: 1766709 12A 630V +phoenix_contact connector GMSTBVA_01x06_G_7.50mm +0 +6 +6 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBVA_2,5_7-G-7,62_1x07_P7.62mm_Vertical +Generic Phoenix Contact connector footprint for: GMSTBVA_2,5/7-G-7,62; number of pins: 07; pin pitch: 7.62mm; Vertical || order number: 1766822 12A 630V +phoenix_contact connector GMSTBVA_01x07_G_7.62mm +0 +7 +7 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBVA_2,5_7-G_1x07_P7.50mm_Vertical +Generic Phoenix Contact connector footprint for: GMSTBVA_2,5/7-G; number of pins: 07; pin pitch: 7.50mm; Vertical || order number: 1766712 12A 630V +phoenix_contact connector GMSTBVA_01x07_G_7.50mm +0 +7 +7 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBVA_2,5_8-G-7,62_1x08_P7.62mm_Vertical +Generic Phoenix Contact connector footprint for: GMSTBVA_2,5/8-G-7,62; number of pins: 08; pin pitch: 7.62mm; Vertical || order number: 1766835 12A 630V +phoenix_contact connector GMSTBVA_01x08_G_7.62mm +0 +8 +8 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBVA_2,5_8-G_1x08_P7.50mm_Vertical +Generic Phoenix Contact connector footprint for: GMSTBVA_2,5/8-G; number of pins: 08; pin pitch: 7.50mm; Vertical || order number: 1766725 12A 630V +phoenix_contact connector GMSTBVA_01x08_G_7.50mm +0 +8 +8 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBVA_2,5_9-G-7,62_1x09_P7.62mm_Vertical +Generic Phoenix Contact connector footprint for: GMSTBVA_2,5/9-G-7,62; number of pins: 09; pin pitch: 7.62mm; Vertical || order number: 1766848 12A 630V +phoenix_contact connector GMSTBVA_01x09_G_7.62mm +0 +9 +9 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBVA_2,5_9-G_1x09_P7.50mm_Vertical +Generic Phoenix Contact connector footprint for: GMSTBVA_2,5/9-G; number of pins: 09; pin pitch: 7.50mm; Vertical || order number: 1766738 12A 630V +phoenix_contact connector GMSTBVA_01x09_G_7.50mm +0 +9 +9 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBVA_2,5_10-G-7,62_1x10_P7.62mm_Vertical +Generic Phoenix Contact connector footprint for: GMSTBVA_2,5/10-G-7,62; number of pins: 10; pin pitch: 7.62mm; Vertical || order number: 1766851 12A 630V +phoenix_contact connector GMSTBVA_01x10_G_7.62mm +0 +10 +10 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBVA_2,5_10-G_1x10_P7.50mm_Vertical +Generic Phoenix Contact connector footprint for: GMSTBVA_2,5/10-G; number of pins: 10; pin pitch: 7.50mm; Vertical || order number: 1766741 12A 630V +phoenix_contact connector GMSTBVA_01x10_G_7.50mm +0 +10 +10 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBVA_2,5_11-G-7,62_1x11_P7.62mm_Vertical +Generic Phoenix Contact connector footprint for: GMSTBVA_2,5/11-G-7,62; number of pins: 11; pin pitch: 7.62mm; Vertical || order number: 1766864 12A 630V +phoenix_contact connector GMSTBVA_01x11_G_7.62mm +0 +11 +11 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBVA_2,5_11-G_1x11_P7.50mm_Vertical +Generic Phoenix Contact connector footprint for: GMSTBVA_2,5/11-G; number of pins: 11; pin pitch: 7.50mm; Vertical || order number: 1766754 12A 630V +phoenix_contact connector GMSTBVA_01x11_G_7.50mm +0 +11 +11 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBVA_2,5_12-G-7,62_1x12_P7.62mm_Vertical +Generic Phoenix Contact connector footprint for: GMSTBVA_2,5/12-G-7,62; number of pins: 12; pin pitch: 7.62mm; Vertical || order number: 1766877 12A 630V +phoenix_contact connector GMSTBVA_01x12_G_7.62mm +0 +12 +12 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBVA_2,5_12-G_1x12_P7.50mm_Vertical +Generic Phoenix Contact connector footprint for: GMSTBVA_2,5/12-G; number of pins: 12; pin pitch: 7.50mm; Vertical || order number: 1766767 12A 630V +phoenix_contact connector GMSTBVA_01x12_G_7.50mm +0 +12 +12 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBV_2,5_2-GF-7,62_1x02_P7.62mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: GMSTBV_2,5/2-GF-7,62; number of pins: 02; pin pitch: 7.62mm; Vertical; threaded flange || order number: 1829154 12A 630V +phoenix_contact connector GMSTBV_01x02_GF_7.62mm +0 +2 +2 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBV_2,5_2-GF-7,62_1x02_P7.62mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: GMSTBV_2,5/2-GF-7,62; number of pins: 02; pin pitch: 7.62mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1829154 12A 630V +phoenix_contact connector GMSTBV_01x02_GF_7.62mm_MH +0 +2 +2 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBV_2,5_3-GF-7,62_1x03_P7.62mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: GMSTBV_2,5/3-GF-7,62; number of pins: 03; pin pitch: 7.62mm; Vertical; threaded flange || order number: 1829167 12A 630V +phoenix_contact connector GMSTBV_01x03_GF_7.62mm +0 +3 +3 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBV_2,5_3-GF-7,62_1x03_P7.62mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: GMSTBV_2,5/3-GF-7,62; number of pins: 03; pin pitch: 7.62mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1829167 12A 630V +phoenix_contact connector GMSTBV_01x03_GF_7.62mm_MH +0 +3 +3 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBV_2,5_4-GF-7,62_1x04_P7.62mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: GMSTBV_2,5/4-GF-7,62; number of pins: 04; pin pitch: 7.62mm; Vertical; threaded flange || order number: 1829170 12A 630V +phoenix_contact connector GMSTBV_01x04_GF_7.62mm +0 +4 +4 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBV_2,5_4-GF-7,62_1x04_P7.62mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: GMSTBV_2,5/4-GF-7,62; number of pins: 04; pin pitch: 7.62mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1829170 12A 630V +phoenix_contact connector GMSTBV_01x04_GF_7.62mm_MH +0 +4 +4 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBV_2,5_5-GF-7,62_1x05_P7.62mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: GMSTBV_2,5/5-GF-7,62; number of pins: 05; pin pitch: 7.62mm; Vertical; threaded flange || order number: 1829183 12A 630V +phoenix_contact connector GMSTBV_01x05_GF_7.62mm +0 +5 +5 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBV_2,5_5-GF-7,62_1x05_P7.62mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: GMSTBV_2,5/5-GF-7,62; number of pins: 05; pin pitch: 7.62mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1829183 12A 630V +phoenix_contact connector GMSTBV_01x05_GF_7.62mm_MH +0 +5 +5 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBV_2,5_6-GF-7,62_1x06_P7.62mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: GMSTBV_2,5/6-GF-7,62; number of pins: 06; pin pitch: 7.62mm; Vertical; threaded flange || order number: 1829196 12A 630V +phoenix_contact connector GMSTBV_01x06_GF_7.62mm +0 +6 +6 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBV_2,5_6-GF-7,62_1x06_P7.62mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: GMSTBV_2,5/6-GF-7,62; number of pins: 06; pin pitch: 7.62mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1829196 12A 630V +phoenix_contact connector GMSTBV_01x06_GF_7.62mm_MH +0 +6 +6 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBV_2,5_7-GF-7,62_1x07_P7.62mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: GMSTBV_2,5/7-GF-7,62; number of pins: 07; pin pitch: 7.62mm; Vertical; threaded flange || order number: 1829206 12A 630V +phoenix_contact connector GMSTBV_01x07_GF_7.62mm +0 +7 +7 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBV_2,5_7-GF-7,62_1x07_P7.62mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: GMSTBV_2,5/7-GF-7,62; number of pins: 07; pin pitch: 7.62mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1829206 12A 630V +phoenix_contact connector GMSTBV_01x07_GF_7.62mm_MH +0 +7 +7 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBV_2,5_8-GF-7,62_1x08_P7.62mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: GMSTBV_2,5/8-GF-7,62; number of pins: 08; pin pitch: 7.62mm; Vertical; threaded flange || order number: 1829219 12A 630V +phoenix_contact connector GMSTBV_01x08_GF_7.62mm +0 +8 +8 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBV_2,5_8-GF-7,62_1x08_P7.62mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: GMSTBV_2,5/8-GF-7,62; number of pins: 08; pin pitch: 7.62mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1829219 12A 630V +phoenix_contact connector GMSTBV_01x08_GF_7.62mm_MH +0 +8 +8 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBV_2,5_9-GF-7,62_1x09_P7.62mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: GMSTBV_2,5/9-GF-7,62; number of pins: 09; pin pitch: 7.62mm; Vertical; threaded flange || order number: 1829222 12A 630V +phoenix_contact connector GMSTBV_01x09_GF_7.62mm +0 +9 +9 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBV_2,5_9-GF-7,62_1x09_P7.62mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: GMSTBV_2,5/9-GF-7,62; number of pins: 09; pin pitch: 7.62mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1829222 12A 630V +phoenix_contact connector GMSTBV_01x09_GF_7.62mm_MH +0 +9 +9 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBV_2,5_10-GF-7,62_1x10_P7.62mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: GMSTBV_2,5/10-GF-7,62; number of pins: 10; pin pitch: 7.62mm; Vertical; threaded flange || order number: 1829235 12A 630V +phoenix_contact connector GMSTBV_01x10_GF_7.62mm +0 +10 +10 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBV_2,5_10-GF-7,62_1x10_P7.62mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: GMSTBV_2,5/10-GF-7,62; number of pins: 10; pin pitch: 7.62mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1829235 12A 630V +phoenix_contact connector GMSTBV_01x10_GF_7.62mm_MH +0 +10 +10 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBV_2,5_11-GF-7,62_1x11_P7.62mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: GMSTBV_2,5/11-GF-7,62; number of pins: 11; pin pitch: 7.62mm; Vertical; threaded flange || order number: 1829248 12A 630V +phoenix_contact connector GMSTBV_01x11_GF_7.62mm +0 +11 +11 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBV_2,5_11-GF-7,62_1x11_P7.62mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: GMSTBV_2,5/11-GF-7,62; number of pins: 11; pin pitch: 7.62mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1829248 12A 630V +phoenix_contact connector GMSTBV_01x11_GF_7.62mm_MH +0 +11 +11 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBV_2,5_12-GF-7,62_1x12_P7.62mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: GMSTBV_2,5/12-GF-7,62; number of pins: 12; pin pitch: 7.62mm; Vertical; threaded flange || order number: 1829251 12A 630V +phoenix_contact connector GMSTBV_01x12_GF_7.62mm +0 +12 +12 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBV_2,5_12-GF-7,62_1x12_P7.62mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: GMSTBV_2,5/12-GF-7,62; number of pins: 12; pin pitch: 7.62mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1829251 12A 630V +phoenix_contact connector GMSTBV_01x12_GF_7.62mm_MH +0 +12 +12 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTB_2,5_2-GF-7,62_1x02_P7.62mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: GMSTB_2,5/2-GF-7,62; number of pins: 02; pin pitch: 7.62mm; Angled; threaded flange || order number: 1806229 12A 630V +phoenix_contact connector GMSTB_01x02_GF_7.62mm +0 +2 +2 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTB_2,5_2-GF-7,62_1x02_P7.62mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: GMSTB_2,5/2-GF-7,62; number of pins: 02; pin pitch: 7.62mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1806229 12A 630V +phoenix_contact connector GMSTB_01x02_GF_7.62mm_MH +0 +2 +2 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTB_2,5_3-GF-7,62_1x03_P7.62mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: GMSTB_2,5/3-GF-7,62; number of pins: 03; pin pitch: 7.62mm; Angled; threaded flange || order number: 1806232 12A 630V +phoenix_contact connector GMSTB_01x03_GF_7.62mm +0 +3 +3 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTB_2,5_3-GF-7,62_1x03_P7.62mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: GMSTB_2,5/3-GF-7,62; number of pins: 03; pin pitch: 7.62mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1806232 12A 630V +phoenix_contact connector GMSTB_01x03_GF_7.62mm_MH +0 +3 +3 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTB_2,5_4-GF-7,62_1x04_P7.62mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: GMSTB_2,5/4-GF-7,62; number of pins: 04; pin pitch: 7.62mm; Angled; threaded flange || order number: 1806245 12A 630V +phoenix_contact connector GMSTB_01x04_GF_7.62mm +0 +4 +4 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTB_2,5_4-GF-7,62_1x04_P7.62mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: GMSTB_2,5/4-GF-7,62; number of pins: 04; pin pitch: 7.62mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1806245 12A 630V +phoenix_contact connector GMSTB_01x04_GF_7.62mm_MH +0 +4 +4 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTB_2,5_5-GF-7,62_1x05_P7.62mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: GMSTB_2,5/5-GF-7,62; number of pins: 05; pin pitch: 7.62mm; Angled; threaded flange || order number: 1806258 12A 630V +phoenix_contact connector GMSTB_01x05_GF_7.62mm +0 +5 +5 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTB_2,5_5-GF-7,62_1x05_P7.62mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: GMSTB_2,5/5-GF-7,62; number of pins: 05; pin pitch: 7.62mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1806258 12A 630V +phoenix_contact connector GMSTB_01x05_GF_7.62mm_MH +0 +5 +5 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTB_2,5_6-GF-7,62_1x06_P7.62mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: GMSTB_2,5/6-GF-7,62; number of pins: 06; pin pitch: 7.62mm; Angled; threaded flange || order number: 1806261 12A 630V +phoenix_contact connector GMSTB_01x06_GF_7.62mm +0 +6 +6 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTB_2,5_6-GF-7,62_1x06_P7.62mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: GMSTB_2,5/6-GF-7,62; number of pins: 06; pin pitch: 7.62mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1806261 12A 630V +phoenix_contact connector GMSTB_01x06_GF_7.62mm_MH +0 +6 +6 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTB_2,5_7-GF-7,62_1x07_P7.62mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: GMSTB_2,5/7-GF-7,62; number of pins: 07; pin pitch: 7.62mm; Angled; threaded flange || order number: 1806274 12A 630V +phoenix_contact connector GMSTB_01x07_GF_7.62mm +0 +7 +7 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTB_2,5_7-GF-7,62_1x07_P7.62mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: GMSTB_2,5/7-GF-7,62; number of pins: 07; pin pitch: 7.62mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1806274 12A 630V +phoenix_contact connector GMSTB_01x07_GF_7.62mm_MH +0 +7 +7 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTB_2,5_8-GF-7,62_1x08_P7.62mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: GMSTB_2,5/8-GF-7,62; number of pins: 08; pin pitch: 7.62mm; Angled; threaded flange || order number: 1806287 12A 630V +phoenix_contact connector GMSTB_01x08_GF_7.62mm +0 +8 +8 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTB_2,5_8-GF-7,62_1x08_P7.62mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: GMSTB_2,5/8-GF-7,62; number of pins: 08; pin pitch: 7.62mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1806287 12A 630V +phoenix_contact connector GMSTB_01x08_GF_7.62mm_MH +0 +8 +8 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTB_2,5_9-GF-7,62_1x09_P7.62mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: GMSTB_2,5/9-GF-7,62; number of pins: 09; pin pitch: 7.62mm; Angled; threaded flange || order number: 1806290 12A 630V +phoenix_contact connector GMSTB_01x09_GF_7.62mm +0 +9 +9 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTB_2,5_9-GF-7,62_1x09_P7.62mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: GMSTB_2,5/9-GF-7,62; number of pins: 09; pin pitch: 7.62mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1806290 12A 630V +phoenix_contact connector GMSTB_01x09_GF_7.62mm_MH +0 +9 +9 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTB_2,5_10-GF-7,62_1x10_P7.62mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: GMSTB_2,5/10-GF-7,62; number of pins: 10; pin pitch: 7.62mm; Angled; threaded flange || order number: 1806300 12A 630V +phoenix_contact connector GMSTB_01x10_GF_7.62mm +0 +10 +10 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTB_2,5_10-GF-7,62_1x10_P7.62mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: GMSTB_2,5/10-GF-7,62; number of pins: 10; pin pitch: 7.62mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1806300 12A 630V +phoenix_contact connector GMSTB_01x10_GF_7.62mm_MH +0 +10 +10 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTB_2,5_11-GF-7,62_1x11_P7.62mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: GMSTB_2,5/11-GF-7,62; number of pins: 11; pin pitch: 7.62mm; Angled; threaded flange || order number: 1806313 12A 630V +phoenix_contact connector GMSTB_01x11_GF_7.62mm +0 +11 +11 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTB_2,5_11-GF-7,62_1x11_P7.62mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: GMSTB_2,5/11-GF-7,62; number of pins: 11; pin pitch: 7.62mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1806313 12A 630V +phoenix_contact connector GMSTB_01x11_GF_7.62mm_MH +0 +11 +11 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTB_2,5_12-GF-7,62_1x12_P7.62mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: GMSTB_2,5/12-GF-7,62; number of pins: 12; pin pitch: 7.62mm; Angled; threaded flange || order number: 1806326 12A 630V +phoenix_contact connector GMSTB_01x12_GF_7.62mm +0 +12 +12 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTB_2,5_12-GF-7,62_1x12_P7.62mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: GMSTB_2,5/12-GF-7,62; number of pins: 12; pin pitch: 7.62mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1806326 12A 630V +phoenix_contact connector GMSTB_01x12_GF_7.62mm_MH +0 +12 +12 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_2-G-3.5_1x02_P3.50mm_Vertical +Generic Phoenix Contact connector footprint for: MCV_1,5/2-G-3.5; number of pins: 02; pin pitch: 3.50mm; Vertical || order number: 1843606 8A 160V +phoenix_contact connector MCV_01x02_G_3.5mm +0 +2 +2 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_2-G-3.81_1x02_P3.81mm_Vertical +Generic Phoenix Contact connector footprint for: MCV_1,5/2-G-3.81; number of pins: 02; pin pitch: 3.81mm; Vertical || order number: 1803426 8A 160V +phoenix_contact connector MCV_01x02_G_3.81mm +0 +2 +2 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_2-GF-3.5_1x02_P3.50mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MCV_1,5/2-GF-3.5; number of pins: 02; pin pitch: 3.50mm; Vertical; threaded flange || order number: 1843224 8A 160V +phoenix_contact connector MCV_01x02_GF_3.5mm +0 +2 +2 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_2-GF-3.5_1x02_P3.50mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MCV_1,5/2-GF-3.5; number of pins: 02; pin pitch: 3.50mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1843224 8A 160V +phoenix_contact connector MCV_01x02_GF_3.5mm_MH +0 +2 +2 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_2-GF-3.81_1x02_P3.81mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MCV_1,5/2-GF-3.81; number of pins: 02; pin pitch: 3.81mm; Vertical; threaded flange || order number: 1830596 8A 160V +phoenix_contact connector MCV_01x02_GF_3.81mm +0 +2 +2 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_2-GF-3.81_1x02_P3.81mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MCV_1,5/2-GF-3.81; number of pins: 02; pin pitch: 3.81mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1830596 8A 160V +phoenix_contact connector MCV_01x02_GF_3.81mm_MH +0 +2 +2 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_3-G-3.5_1x03_P3.50mm_Vertical +Generic Phoenix Contact connector footprint for: MCV_1,5/3-G-3.5; number of pins: 03; pin pitch: 3.50mm; Vertical || order number: 1843619 8A 160V +phoenix_contact connector MCV_01x03_G_3.5mm +0 +3 +3 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_3-G-3.81_1x03_P3.81mm_Vertical +Generic Phoenix Contact connector footprint for: MCV_1,5/3-G-3.81; number of pins: 03; pin pitch: 3.81mm; Vertical || order number: 1803439 8A 160V +phoenix_contact connector MCV_01x03_G_3.81mm +0 +3 +3 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_3-GF-3.5_1x03_P3.50mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MCV_1,5/3-GF-3.5; number of pins: 03; pin pitch: 3.50mm; Vertical; threaded flange || order number: 1843237 8A 160V +phoenix_contact connector MCV_01x03_GF_3.5mm +0 +3 +3 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_3-GF-3.5_1x03_P3.50mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MCV_1,5/3-GF-3.5; number of pins: 03; pin pitch: 3.50mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1843237 8A 160V +phoenix_contact connector MCV_01x03_GF_3.5mm_MH +0 +3 +3 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_3-GF-3.81_1x03_P3.81mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MCV_1,5/3-GF-3.81; number of pins: 03; pin pitch: 3.81mm; Vertical; threaded flange || order number: 1830606 8A 160V +phoenix_contact connector MCV_01x03_GF_3.81mm +0 +3 +3 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_3-GF-3.81_1x03_P3.81mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MCV_1,5/3-GF-3.81; number of pins: 03; pin pitch: 3.81mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1830606 8A 160V +phoenix_contact connector MCV_01x03_GF_3.81mm_MH +0 +3 +3 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_4-G-3.5_1x04_P3.50mm_Vertical +Generic Phoenix Contact connector footprint for: MCV_1,5/4-G-3.5; number of pins: 04; pin pitch: 3.50mm; Vertical || order number: 1843622 8A 160V +phoenix_contact connector MCV_01x04_G_3.5mm +0 +4 +4 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_4-G-3.81_1x04_P3.81mm_Vertical +Generic Phoenix Contact connector footprint for: MCV_1,5/4-G-3.81; number of pins: 04; pin pitch: 3.81mm; Vertical || order number: 1803442 8A 160V +phoenix_contact connector MCV_01x04_G_3.81mm +0 +4 +4 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_4-GF-3.5_1x04_P3.50mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MCV_1,5/4-GF-3.5; number of pins: 04; pin pitch: 3.50mm; Vertical; threaded flange || order number: 1843240 8A 160V +phoenix_contact connector MCV_01x04_GF_3.5mm +0 +4 +4 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_4-GF-3.5_1x04_P3.50mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MCV_1,5/4-GF-3.5; number of pins: 04; pin pitch: 3.50mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1843240 8A 160V +phoenix_contact connector MCV_01x04_GF_3.5mm_MH +0 +4 +4 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_4-GF-3.81_1x04_P3.81mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MCV_1,5/4-GF-3.81; number of pins: 04; pin pitch: 3.81mm; Vertical; threaded flange || order number: 1830619 8A 160V +phoenix_contact connector MCV_01x04_GF_3.81mm +0 +4 +4 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_4-GF-3.81_1x04_P3.81mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MCV_1,5/4-GF-3.81; number of pins: 04; pin pitch: 3.81mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1830619 8A 160V +phoenix_contact connector MCV_01x04_GF_3.81mm_MH +0 +4 +4 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_5-G-3.5_1x05_P3.50mm_Vertical +Generic Phoenix Contact connector footprint for: MCV_1,5/5-G-3.5; number of pins: 05; pin pitch: 3.50mm; Vertical || order number: 1843635 8A 160V +phoenix_contact connector MCV_01x05_G_3.5mm +0 +5 +5 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_5-G-3.81_1x05_P3.81mm_Vertical +Generic Phoenix Contact connector footprint for: MCV_1,5/5-G-3.81; number of pins: 05; pin pitch: 3.81mm; Vertical || order number: 1803455 8A 160V +phoenix_contact connector MCV_01x05_G_3.81mm +0 +5 +5 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_5-GF-3.5_1x05_P3.50mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MCV_1,5/5-GF-3.5; number of pins: 05; pin pitch: 3.50mm; Vertical; threaded flange || order number: 1843253 8A 160V +phoenix_contact connector MCV_01x05_GF_3.5mm +0 +5 +5 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_5-GF-3.5_1x05_P3.50mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MCV_1,5/5-GF-3.5; number of pins: 05; pin pitch: 3.50mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1843253 8A 160V +phoenix_contact connector MCV_01x05_GF_3.5mm_MH +0 +5 +5 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_5-GF-3.81_1x05_P3.81mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MCV_1,5/5-GF-3.81; number of pins: 05; pin pitch: 3.81mm; Vertical; threaded flange || order number: 1830622 8A 160V +phoenix_contact connector MCV_01x05_GF_3.81mm +0 +5 +5 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_5-GF-3.81_1x05_P3.81mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MCV_1,5/5-GF-3.81; number of pins: 05; pin pitch: 3.81mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1830622 8A 160V +phoenix_contact connector MCV_01x05_GF_3.81mm_MH +0 +5 +5 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_6-G-3.5_1x06_P3.50mm_Vertical +Generic Phoenix Contact connector footprint for: MCV_1,5/6-G-3.5; number of pins: 06; pin pitch: 3.50mm; Vertical || order number: 1843648 8A 160V +phoenix_contact connector MCV_01x06_G_3.5mm +0 +6 +6 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_6-G-3.81_1x06_P3.81mm_Vertical +Generic Phoenix Contact connector footprint for: MCV_1,5/6-G-3.81; number of pins: 06; pin pitch: 3.81mm; Vertical || order number: 1803468 8A 160V +phoenix_contact connector MCV_01x06_G_3.81mm +0 +6 +6 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_6-GF-3.5_1x06_P3.50mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MCV_1,5/6-GF-3.5; number of pins: 06; pin pitch: 3.50mm; Vertical; threaded flange || order number: 1843266 8A 160V +phoenix_contact connector MCV_01x06_GF_3.5mm +0 +6 +6 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_6-GF-3.5_1x06_P3.50mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MCV_1,5/6-GF-3.5; number of pins: 06; pin pitch: 3.50mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1843266 8A 160V +phoenix_contact connector MCV_01x06_GF_3.5mm_MH +0 +6 +6 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_6-GF-3.81_1x06_P3.81mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MCV_1,5/6-GF-3.81; number of pins: 06; pin pitch: 3.81mm; Vertical; threaded flange || order number: 1830635 8A 160V +phoenix_contact connector MCV_01x06_GF_3.81mm +0 +6 +6 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_6-GF-3.81_1x06_P3.81mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MCV_1,5/6-GF-3.81; number of pins: 06; pin pitch: 3.81mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1830635 8A 160V +phoenix_contact connector MCV_01x06_GF_3.81mm_MH +0 +6 +6 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_7-G-3.5_1x07_P3.50mm_Vertical +Generic Phoenix Contact connector footprint for: MCV_1,5/7-G-3.5; number of pins: 07; pin pitch: 3.50mm; Vertical || order number: 1843651 8A 160V +phoenix_contact connector MCV_01x07_G_3.5mm +0 +7 +7 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_7-G-3.81_1x07_P3.81mm_Vertical +Generic Phoenix Contact connector footprint for: MCV_1,5/7-G-3.81; number of pins: 07; pin pitch: 3.81mm; Vertical || order number: 1803471 8A 160V +phoenix_contact connector MCV_01x07_G_3.81mm +0 +7 +7 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_7-GF-3.5_1x07_P3.50mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MCV_1,5/7-GF-3.5; number of pins: 07; pin pitch: 3.50mm; Vertical; threaded flange || order number: 1843279 8A 160V +phoenix_contact connector MCV_01x07_GF_3.5mm +0 +7 +7 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_7-GF-3.5_1x07_P3.50mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MCV_1,5/7-GF-3.5; number of pins: 07; pin pitch: 3.50mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1843279 8A 160V +phoenix_contact connector MCV_01x07_GF_3.5mm_MH +0 +7 +7 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_7-GF-3.81_1x07_P3.81mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MCV_1,5/7-GF-3.81; number of pins: 07; pin pitch: 3.81mm; Vertical; threaded flange || order number: 1830648 8A 160V +phoenix_contact connector MCV_01x07_GF_3.81mm +0 +7 +7 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_7-GF-3.81_1x07_P3.81mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MCV_1,5/7-GF-3.81; number of pins: 07; pin pitch: 3.81mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1830648 8A 160V +phoenix_contact connector MCV_01x07_GF_3.81mm_MH +0 +7 +7 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_8-G-3.5_1x08_P3.50mm_Vertical +Generic Phoenix Contact connector footprint for: MCV_1,5/8-G-3.5; number of pins: 08; pin pitch: 3.50mm; Vertical || order number: 1843664 8A 160V +phoenix_contact connector MCV_01x08_G_3.5mm +0 +8 +8 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_8-G-3.81_1x08_P3.81mm_Vertical +Generic Phoenix Contact connector footprint for: MCV_1,5/8-G-3.81; number of pins: 08; pin pitch: 3.81mm; Vertical || order number: 1803484 8A 160V +phoenix_contact connector MCV_01x08_G_3.81mm +0 +8 +8 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_8-GF-3.5_1x08_P3.50mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MCV_1,5/8-GF-3.5; number of pins: 08; pin pitch: 3.50mm; Vertical; threaded flange || order number: 1843282 8A 160V +phoenix_contact connector MCV_01x08_GF_3.5mm +0 +8 +8 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_8-GF-3.5_1x08_P3.50mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MCV_1,5/8-GF-3.5; number of pins: 08; pin pitch: 3.50mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1843282 8A 160V +phoenix_contact connector MCV_01x08_GF_3.5mm_MH +0 +8 +8 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_8-GF-3.81_1x08_P3.81mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MCV_1,5/8-GF-3.81; number of pins: 08; pin pitch: 3.81mm; Vertical; threaded flange || order number: 1830651 8A 160V +phoenix_contact connector MCV_01x08_GF_3.81mm +0 +8 +8 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_8-GF-3.81_1x08_P3.81mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MCV_1,5/8-GF-3.81; number of pins: 08; pin pitch: 3.81mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1830651 8A 160V +phoenix_contact connector MCV_01x08_GF_3.81mm_MH +0 +8 +8 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_9-G-3.5_1x09_P3.50mm_Vertical +Generic Phoenix Contact connector footprint for: MCV_1,5/9-G-3.5; number of pins: 09; pin pitch: 3.50mm; Vertical || order number: 1843677 8A 160V +phoenix_contact connector MCV_01x09_G_3.5mm +0 +9 +9 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_9-G-3.81_1x09_P3.81mm_Vertical +Generic Phoenix Contact connector footprint for: MCV_1,5/9-G-3.81; number of pins: 09; pin pitch: 3.81mm; Vertical || order number: 1803497 8A 160V +phoenix_contact connector MCV_01x09_G_3.81mm +0 +9 +9 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_9-GF-3.5_1x09_P3.50mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MCV_1,5/9-GF-3.5; number of pins: 09; pin pitch: 3.50mm; Vertical; threaded flange || order number: 1843295 8A 160V +phoenix_contact connector MCV_01x09_GF_3.5mm +0 +9 +9 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_9-GF-3.5_1x09_P3.50mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MCV_1,5/9-GF-3.5; number of pins: 09; pin pitch: 3.50mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1843295 8A 160V +phoenix_contact connector MCV_01x09_GF_3.5mm_MH +0 +9 +9 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_9-GF-3.81_1x09_P3.81mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MCV_1,5/9-GF-3.81; number of pins: 09; pin pitch: 3.81mm; Vertical; threaded flange || order number: 1830664 8A 160V +phoenix_contact connector MCV_01x09_GF_3.81mm +0 +9 +9 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_9-GF-3.81_1x09_P3.81mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MCV_1,5/9-GF-3.81; number of pins: 09; pin pitch: 3.81mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1830664 8A 160V +phoenix_contact connector MCV_01x09_GF_3.81mm_MH +0 +9 +9 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_10-G-3.5_1x10_P3.50mm_Vertical +Generic Phoenix Contact connector footprint for: MCV_1,5/10-G-3.5; number of pins: 10; pin pitch: 3.50mm; Vertical || order number: 1843680 8A 160V +phoenix_contact connector MCV_01x10_G_3.5mm +0 +10 +10 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_10-G-3.81_1x10_P3.81mm_Vertical +Generic Phoenix Contact connector footprint for: MCV_1,5/10-G-3.81; number of pins: 10; pin pitch: 3.81mm; Vertical || order number: 1803507 8A 160V +phoenix_contact connector MCV_01x10_G_3.81mm +0 +10 +10 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_10-GF-3.5_1x10_P3.50mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MCV_1,5/10-GF-3.5; number of pins: 10; pin pitch: 3.50mm; Vertical; threaded flange || order number: 1843305 8A 160V +phoenix_contact connector MCV_01x10_GF_3.5mm +0 +10 +10 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_10-GF-3.5_1x10_P3.50mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MCV_1,5/10-GF-3.5; number of pins: 10; pin pitch: 3.50mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1843305 8A 160V +phoenix_contact connector MCV_01x10_GF_3.5mm_MH +0 +10 +10 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_10-GF-3.81_1x10_P3.81mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MCV_1,5/10-GF-3.81; number of pins: 10; pin pitch: 3.81mm; Vertical; threaded flange || order number: 1830677 8A 160V +phoenix_contact connector MCV_01x10_GF_3.81mm +0 +10 +10 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_10-GF-3.81_1x10_P3.81mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MCV_1,5/10-GF-3.81; number of pins: 10; pin pitch: 3.81mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1830677 8A 160V +phoenix_contact connector MCV_01x10_GF_3.81mm_MH +0 +10 +10 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_11-G-3.5_1x11_P3.50mm_Vertical +Generic Phoenix Contact connector footprint for: MCV_1,5/11-G-3.5; number of pins: 11; pin pitch: 3.50mm; Vertical || order number: 1843693 8A 160V +phoenix_contact connector MCV_01x11_G_3.5mm +0 +11 +11 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_11-G-3.81_1x11_P3.81mm_Vertical +Generic Phoenix Contact connector footprint for: MCV_1,5/11-G-3.81; number of pins: 11; pin pitch: 3.81mm; Vertical || order number: 1803510 8A 160V +phoenix_contact connector MCV_01x11_G_3.81mm +0 +11 +11 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_11-GF-3.5_1x11_P3.50mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MCV_1,5/11-GF-3.5; number of pins: 11; pin pitch: 3.50mm; Vertical; threaded flange || order number: 1843318 8A 160V +phoenix_contact connector MCV_01x11_GF_3.5mm +0 +11 +11 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_11-GF-3.5_1x11_P3.50mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MCV_1,5/11-GF-3.5; number of pins: 11; pin pitch: 3.50mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1843318 8A 160V +phoenix_contact connector MCV_01x11_GF_3.5mm_MH +0 +11 +11 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_11-GF-3.81_1x11_P3.81mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MCV_1,5/11-GF-3.81; number of pins: 11; pin pitch: 3.81mm; Vertical; threaded flange || order number: 1830680 8A 160V +phoenix_contact connector MCV_01x11_GF_3.81mm +0 +11 +11 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_11-GF-3.81_1x11_P3.81mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MCV_1,5/11-GF-3.81; number of pins: 11; pin pitch: 3.81mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1830680 8A 160V +phoenix_contact connector MCV_01x11_GF_3.81mm_MH +0 +11 +11 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_12-G-3.5_1x12_P3.50mm_Vertical +Generic Phoenix Contact connector footprint for: MCV_1,5/12-G-3.5; number of pins: 12; pin pitch: 3.50mm; Vertical || order number: 1843703 8A 160V +phoenix_contact connector MCV_01x12_G_3.5mm +0 +12 +12 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_12-G-3.81_1x12_P3.81mm_Vertical +Generic Phoenix Contact connector footprint for: MCV_1,5/12-G-3.81; number of pins: 12; pin pitch: 3.81mm; Vertical || order number: 1803523 8A 160V +phoenix_contact connector MCV_01x12_G_3.81mm +0 +12 +12 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_12-GF-3.5_1x12_P3.50mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MCV_1,5/12-GF-3.5; number of pins: 12; pin pitch: 3.50mm; Vertical; threaded flange || order number: 1843321 8A 160V +phoenix_contact connector MCV_01x12_GF_3.5mm +0 +12 +12 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_12-GF-3.5_1x12_P3.50mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MCV_1,5/12-GF-3.5; number of pins: 12; pin pitch: 3.50mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1843321 8A 160V +phoenix_contact connector MCV_01x12_GF_3.5mm_MH +0 +12 +12 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_12-GF-3.81_1x12_P3.81mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MCV_1,5/12-GF-3.81; number of pins: 12; pin pitch: 3.81mm; Vertical; threaded flange || order number: 1830693 8A 160V +phoenix_contact connector MCV_01x12_GF_3.81mm +0 +12 +12 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_12-GF-3.81_1x12_P3.81mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MCV_1,5/12-GF-3.81; number of pins: 12; pin pitch: 3.81mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1830693 8A 160V +phoenix_contact connector MCV_01x12_GF_3.81mm_MH +0 +12 +12 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_13-G-3.5_1x13_P3.50mm_Vertical +Generic Phoenix Contact connector footprint for: MCV_1,5/13-G-3.5; number of pins: 13; pin pitch: 3.50mm; Vertical || order number: 1843716 8A 160V +phoenix_contact connector MCV_01x13_G_3.5mm +0 +13 +13 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_13-G-3.81_1x13_P3.81mm_Vertical +Generic Phoenix Contact connector footprint for: MCV_1,5/13-G-3.81; number of pins: 13; pin pitch: 3.81mm; Vertical || order number: 1803536 8A 160V +phoenix_contact connector MCV_01x13_G_3.81mm +0 +13 +13 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_13-GF-3.5_1x13_P3.50mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MCV_1,5/13-GF-3.5; number of pins: 13; pin pitch: 3.50mm; Vertical; threaded flange || order number: 1843334 8A 160V +phoenix_contact connector MCV_01x13_GF_3.5mm +0 +13 +13 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_13-GF-3.5_1x13_P3.50mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MCV_1,5/13-GF-3.5; number of pins: 13; pin pitch: 3.50mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1843334 8A 160V +phoenix_contact connector MCV_01x13_GF_3.5mm_MH +0 +13 +13 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_13-GF-3.81_1x13_P3.81mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MCV_1,5/13-GF-3.81; number of pins: 13; pin pitch: 3.81mm; Vertical; threaded flange || order number: 1830703 8A 160V +phoenix_contact connector MCV_01x13_GF_3.81mm +0 +13 +13 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_13-GF-3.81_1x13_P3.81mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MCV_1,5/13-GF-3.81; number of pins: 13; pin pitch: 3.81mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1830703 8A 160V +phoenix_contact connector MCV_01x13_GF_3.81mm_MH +0 +13 +13 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_14-G-3.5_1x14_P3.50mm_Vertical +Generic Phoenix Contact connector footprint for: MCV_1,5/14-G-3.5; number of pins: 14; pin pitch: 3.50mm; Vertical || order number: 1843729 8A 160V +phoenix_contact connector MCV_01x14_G_3.5mm +0 +14 +14 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_14-G-3.81_1x14_P3.81mm_Vertical +Generic Phoenix Contact connector footprint for: MCV_1,5/14-G-3.81; number of pins: 14; pin pitch: 3.81mm; Vertical || order number: 1803549 8A 160V +phoenix_contact connector MCV_01x14_G_3.81mm +0 +14 +14 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_14-GF-3.5_1x14_P3.50mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MCV_1,5/14-GF-3.5; number of pins: 14; pin pitch: 3.50mm; Vertical; threaded flange || order number: 1843347 8A 160V +phoenix_contact connector MCV_01x14_GF_3.5mm +0 +14 +14 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_14-GF-3.5_1x14_P3.50mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MCV_1,5/14-GF-3.5; number of pins: 14; pin pitch: 3.50mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1843347 8A 160V +phoenix_contact connector MCV_01x14_GF_3.5mm_MH +0 +14 +14 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_14-GF-3.81_1x14_P3.81mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MCV_1,5/14-GF-3.81; number of pins: 14; pin pitch: 3.81mm; Vertical; threaded flange || order number: 1830716 8A 160V +phoenix_contact connector MCV_01x14_GF_3.81mm +0 +14 +14 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_14-GF-3.81_1x14_P3.81mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MCV_1,5/14-GF-3.81; number of pins: 14; pin pitch: 3.81mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1830716 8A 160V +phoenix_contact connector MCV_01x14_GF_3.81mm_MH +0 +14 +14 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_15-G-3.5_1x15_P3.50mm_Vertical +Generic Phoenix Contact connector footprint for: MCV_1,5/15-G-3.5; number of pins: 15; pin pitch: 3.50mm; Vertical || order number: 1843732 8A 160V +phoenix_contact connector MCV_01x15_G_3.5mm +0 +15 +15 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_15-G-3.81_1x15_P3.81mm_Vertical +Generic Phoenix Contact connector footprint for: MCV_1,5/15-G-3.81; number of pins: 15; pin pitch: 3.81mm; Vertical || order number: 1803552 8A 160V +phoenix_contact connector MCV_01x15_G_3.81mm +0 +15 +15 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_15-GF-3.5_1x15_P3.50mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MCV_1,5/15-GF-3.5; number of pins: 15; pin pitch: 3.50mm; Vertical; threaded flange || order number: 1843350 8A 160V +phoenix_contact connector MCV_01x15_GF_3.5mm +0 +15 +15 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_15-GF-3.5_1x15_P3.50mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MCV_1,5/15-GF-3.5; number of pins: 15; pin pitch: 3.50mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1843350 8A 160V +phoenix_contact connector MCV_01x15_GF_3.5mm_MH +0 +15 +15 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_15-GF-3.81_1x15_P3.81mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MCV_1,5/15-GF-3.81; number of pins: 15; pin pitch: 3.81mm; Vertical; threaded flange || order number: 1830729 8A 160V +phoenix_contact connector MCV_01x15_GF_3.81mm +0 +15 +15 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_15-GF-3.81_1x15_P3.81mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MCV_1,5/15-GF-3.81; number of pins: 15; pin pitch: 3.81mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1830729 8A 160V +phoenix_contact connector MCV_01x15_GF_3.81mm_MH +0 +15 +15 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_16-G-3.5_1x16_P3.50mm_Vertical +Generic Phoenix Contact connector footprint for: MCV_1,5/16-G-3.5; number of pins: 16; pin pitch: 3.50mm; Vertical || order number: 1843745 8A 160V +phoenix_contact connector MCV_01x16_G_3.5mm +0 +16 +16 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_16-G-3.81_1x16_P3.81mm_Vertical +Generic Phoenix Contact connector footprint for: MCV_1,5/16-G-3.81; number of pins: 16; pin pitch: 3.81mm; Vertical || order number: 1803565 8A 160V +phoenix_contact connector MCV_01x16_G_3.81mm +0 +16 +16 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_16-GF-3.5_1x16_P3.50mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MCV_1,5/16-GF-3.5; number of pins: 16; pin pitch: 3.50mm; Vertical; threaded flange || order number: 1843363 8A 160V +phoenix_contact connector MCV_01x16_GF_3.5mm +0 +16 +16 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_16-GF-3.5_1x16_P3.50mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MCV_1,5/16-GF-3.5; number of pins: 16; pin pitch: 3.50mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1843363 8A 160V +phoenix_contact connector MCV_01x16_GF_3.5mm_MH +0 +16 +16 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_16-GF-3.81_1x16_P3.81mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MCV_1,5/16-GF-3.81; number of pins: 16; pin pitch: 3.81mm; Vertical; threaded flange || order number: 1830732 8A 160V +phoenix_contact connector MCV_01x16_GF_3.81mm +0 +16 +16 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_16-GF-3.81_1x16_P3.81mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MCV_1,5/16-GF-3.81; number of pins: 16; pin pitch: 3.81mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1830732 8A 160V +phoenix_contact connector MCV_01x16_GF_3.81mm_MH +0 +16 +16 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_2-G-3.5_1x02_P3.50mm_Horizontal +Generic Phoenix Contact connector footprint for: MC_1,5/2-G-3.5; number of pins: 02; pin pitch: 3.50mm; Angled || order number: 1844210 8A 160V +phoenix_contact connector MC_01x02_G_3.5mm +0 +2 +2 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_2-G-3.81_1x02_P3.81mm_Horizontal +Generic Phoenix Contact connector footprint for: MC_1,5/2-G-3.81; number of pins: 02; pin pitch: 3.81mm; Angled || order number: 1803277 8A 160V +phoenix_contact connector MC_01x02_G_3.81mm +0 +2 +2 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_2-GF-3.5_1x02_P3.50mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MC_1,5/2-GF-3.5; number of pins: 02; pin pitch: 3.50mm; Angled; threaded flange || order number: 1843790 8A 160V +phoenix_contact connector MC_01x02_GF_3.5mm +0 +2 +2 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_2-GF-3.5_1x02_P3.50mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MC_1,5/2-GF-3.5; number of pins: 02; pin pitch: 3.50mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1843790 8A 160V +phoenix_contact connector MC_01x02_GF_3.5mm_MH +0 +2 +2 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_2-GF-3.81_1x02_P3.81mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MC_1,5/2-GF-3.81; number of pins: 02; pin pitch: 3.81mm; Angled; threaded flange || order number: 1827868 8A 160V +phoenix_contact connector MC_01x02_GF_3.81mm +0 +2 +2 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_2-GF-3.81_1x02_P3.81mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MC_1,5/2-GF-3.81; number of pins: 02; pin pitch: 3.81mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1827868 8A 160V +phoenix_contact connector MC_01x02_GF_3.81mm_MH +0 +2 +2 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_3-G-3.5_1x03_P3.50mm_Horizontal +Generic Phoenix Contact connector footprint for: MC_1,5/3-G-3.5; number of pins: 03; pin pitch: 3.50mm; Angled || order number: 1844223 8A 160V +phoenix_contact connector MC_01x03_G_3.5mm +0 +3 +3 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_3-G-3.81_1x03_P3.81mm_Horizontal +Generic Phoenix Contact connector footprint for: MC_1,5/3-G-3.81; number of pins: 03; pin pitch: 3.81mm; Angled || order number: 1803280 8A 160V +phoenix_contact connector MC_01x03_G_3.81mm +0 +3 +3 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_3-GF-3.5_1x03_P3.50mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MC_1,5/3-GF-3.5; number of pins: 03; pin pitch: 3.50mm; Angled; threaded flange || order number: 1843800 8A 160V +phoenix_contact connector MC_01x03_GF_3.5mm +0 +3 +3 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_3-GF-3.5_1x03_P3.50mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MC_1,5/3-GF-3.5; number of pins: 03; pin pitch: 3.50mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1843800 8A 160V +phoenix_contact connector MC_01x03_GF_3.5mm_MH +0 +3 +3 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_3-GF-3.81_1x03_P3.81mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MC_1,5/3-GF-3.81; number of pins: 03; pin pitch: 3.81mm; Angled; threaded flange || order number: 1827871 8A 160V +phoenix_contact connector MC_01x03_GF_3.81mm +0 +3 +3 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_3-GF-3.81_1x03_P3.81mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MC_1,5/3-GF-3.81; number of pins: 03; pin pitch: 3.81mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1827871 8A 160V +phoenix_contact connector MC_01x03_GF_3.81mm_MH +0 +3 +3 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_4-G-3.5_1x04_P3.50mm_Horizontal +Generic Phoenix Contact connector footprint for: MC_1,5/4-G-3.5; number of pins: 04; pin pitch: 3.50mm; Angled || order number: 1844236 8A 160V +phoenix_contact connector MC_01x04_G_3.5mm +0 +4 +4 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_4-G-3.81_1x04_P3.81mm_Horizontal +Generic Phoenix Contact connector footprint for: MC_1,5/4-G-3.81; number of pins: 04; pin pitch: 3.81mm; Angled || order number: 1803293 8A 160V +phoenix_contact connector MC_01x04_G_3.81mm +0 +4 +4 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_4-GF-3.5_1x04_P3.50mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MC_1,5/4-GF-3.5; number of pins: 04; pin pitch: 3.50mm; Angled; threaded flange || order number: 1843813 8A 160V +phoenix_contact connector MC_01x04_GF_3.5mm +0 +4 +4 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_4-GF-3.5_1x04_P3.50mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MC_1,5/4-GF-3.5; number of pins: 04; pin pitch: 3.50mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1843813 8A 160V +phoenix_contact connector MC_01x04_GF_3.5mm_MH +0 +4 +4 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_4-GF-3.81_1x04_P3.81mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MC_1,5/4-GF-3.81; number of pins: 04; pin pitch: 3.81mm; Angled; threaded flange || order number: 1827884 8A 160V +phoenix_contact connector MC_01x04_GF_3.81mm +0 +4 +4 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_4-GF-3.81_1x04_P3.81mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MC_1,5/4-GF-3.81; number of pins: 04; pin pitch: 3.81mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1827884 8A 160V +phoenix_contact connector MC_01x04_GF_3.81mm_MH +0 +4 +4 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_5-G-3.5_1x05_P3.50mm_Horizontal +Generic Phoenix Contact connector footprint for: MC_1,5/5-G-3.5; number of pins: 05; pin pitch: 3.50mm; Angled || order number: 1844249 8A 160V +phoenix_contact connector MC_01x05_G_3.5mm +0 +5 +5 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_5-G-3.81_1x05_P3.81mm_Horizontal +Generic Phoenix Contact connector footprint for: MC_1,5/5-G-3.81; number of pins: 05; pin pitch: 3.81mm; Angled || order number: 1803303 8A 160V +phoenix_contact connector MC_01x05_G_3.81mm +0 +5 +5 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_5-GF-3.5_1x05_P3.50mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MC_1,5/5-GF-3.5; number of pins: 05; pin pitch: 3.50mm; Angled; threaded flange || order number: 1843826 8A 160V +phoenix_contact connector MC_01x05_GF_3.5mm +0 +5 +5 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_5-GF-3.5_1x05_P3.50mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MC_1,5/5-GF-3.5; number of pins: 05; pin pitch: 3.50mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1843826 8A 160V +phoenix_contact connector MC_01x05_GF_3.5mm_MH +0 +5 +5 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_5-GF-3.81_1x05_P3.81mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MC_1,5/5-GF-3.81; number of pins: 05; pin pitch: 3.81mm; Angled; threaded flange || order number: 1827897 8A 160V +phoenix_contact connector MC_01x05_GF_3.81mm +0 +5 +5 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_5-GF-3.81_1x05_P3.81mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MC_1,5/5-GF-3.81; number of pins: 05; pin pitch: 3.81mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1827897 8A 160V +phoenix_contact connector MC_01x05_GF_3.81mm_MH +0 +5 +5 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_6-G-3.5_1x06_P3.50mm_Horizontal +Generic Phoenix Contact connector footprint for: MC_1,5/6-G-3.5; number of pins: 06; pin pitch: 3.50mm; Angled || order number: 1844252 8A 160V +phoenix_contact connector MC_01x06_G_3.5mm +0 +6 +6 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_6-G-3.81_1x06_P3.81mm_Horizontal +Generic Phoenix Contact connector footprint for: MC_1,5/6-G-3.81; number of pins: 06; pin pitch: 3.81mm; Angled || order number: 1803316 8A 160V +phoenix_contact connector MC_01x06_G_3.81mm +0 +6 +6 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_6-GF-3.5_1x06_P3.50mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MC_1,5/6-GF-3.5; number of pins: 06; pin pitch: 3.50mm; Angled; threaded flange || order number: 1843839 8A 160V +phoenix_contact connector MC_01x06_GF_3.5mm +0 +6 +6 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_6-GF-3.5_1x06_P3.50mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MC_1,5/6-GF-3.5; number of pins: 06; pin pitch: 3.50mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1843839 8A 160V +phoenix_contact connector MC_01x06_GF_3.5mm_MH +0 +6 +6 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_6-GF-3.81_1x06_P3.81mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MC_1,5/6-GF-3.81; number of pins: 06; pin pitch: 3.81mm; Angled; threaded flange || order number: 1827907 8A 160V +phoenix_contact connector MC_01x06_GF_3.81mm +0 +6 +6 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_6-GF-3.81_1x06_P3.81mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MC_1,5/6-GF-3.81; number of pins: 06; pin pitch: 3.81mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1827907 8A 160V +phoenix_contact connector MC_01x06_GF_3.81mm_MH +0 +6 +6 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_7-G-3.5_1x07_P3.50mm_Horizontal +Generic Phoenix Contact connector footprint for: MC_1,5/7-G-3.5; number of pins: 07; pin pitch: 3.50mm; Angled || order number: 1844265 8A 160V +phoenix_contact connector MC_01x07_G_3.5mm +0 +7 +7 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_7-G-3.81_1x07_P3.81mm_Horizontal +Generic Phoenix Contact connector footprint for: MC_1,5/7-G-3.81; number of pins: 07; pin pitch: 3.81mm; Angled || order number: 1803329 8A 160V +phoenix_contact connector MC_01x07_G_3.81mm +0 +7 +7 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_7-GF-3.5_1x07_P3.50mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MC_1,5/7-GF-3.5; number of pins: 07; pin pitch: 3.50mm; Angled; threaded flange || order number: 1843842 8A 160V +phoenix_contact connector MC_01x07_GF_3.5mm +0 +7 +7 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_7-GF-3.5_1x07_P3.50mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MC_1,5/7-GF-3.5; number of pins: 07; pin pitch: 3.50mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1843842 8A 160V +phoenix_contact connector MC_01x07_GF_3.5mm_MH +0 +7 +7 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_7-GF-3.81_1x07_P3.81mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MC_1,5/7-GF-3.81; number of pins: 07; pin pitch: 3.81mm; Angled; threaded flange || order number: 1827910 8A 160V +phoenix_contact connector MC_01x07_GF_3.81mm +0 +7 +7 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_7-GF-3.81_1x07_P3.81mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MC_1,5/7-GF-3.81; number of pins: 07; pin pitch: 3.81mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1827910 8A 160V +phoenix_contact connector MC_01x07_GF_3.81mm_MH +0 +7 +7 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_8-G-3.5_1x08_P3.50mm_Horizontal +Generic Phoenix Contact connector footprint for: MC_1,5/8-G-3.5; number of pins: 08; pin pitch: 3.50mm; Angled || order number: 1844278 8A 160V +phoenix_contact connector MC_01x08_G_3.5mm +0 +8 +8 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_8-G-3.81_1x08_P3.81mm_Horizontal +Generic Phoenix Contact connector footprint for: MC_1,5/8-G-3.81; number of pins: 08; pin pitch: 3.81mm; Angled || order number: 1803332 8A 160V +phoenix_contact connector MC_01x08_G_3.81mm +0 +8 +8 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_8-GF-3.5_1x08_P3.50mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MC_1,5/8-GF-3.5; number of pins: 08; pin pitch: 3.50mm; Angled; threaded flange || order number: 1843855 8A 160V +phoenix_contact connector MC_01x08_GF_3.5mm +0 +8 +8 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_8-GF-3.5_1x08_P3.50mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MC_1,5/8-GF-3.5; number of pins: 08; pin pitch: 3.50mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1843855 8A 160V +phoenix_contact connector MC_01x08_GF_3.5mm_MH +0 +8 +8 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_8-GF-3.81_1x08_P3.81mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MC_1,5/8-GF-3.81; number of pins: 08; pin pitch: 3.81mm; Angled; threaded flange || order number: 1827923 8A 160V +phoenix_contact connector MC_01x08_GF_3.81mm +0 +8 +8 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_8-GF-3.81_1x08_P3.81mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MC_1,5/8-GF-3.81; number of pins: 08; pin pitch: 3.81mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1827923 8A 160V +phoenix_contact connector MC_01x08_GF_3.81mm_MH +0 +8 +8 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_9-G-3.5_1x09_P3.50mm_Horizontal +Generic Phoenix Contact connector footprint for: MC_1,5/9-G-3.5; number of pins: 09; pin pitch: 3.50mm; Angled || order number: 1844281 8A 160V +phoenix_contact connector MC_01x09_G_3.5mm +0 +9 +9 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_9-G-3.81_1x09_P3.81mm_Horizontal +Generic Phoenix Contact connector footprint for: MC_1,5/9-G-3.81; number of pins: 09; pin pitch: 3.81mm; Angled || order number: 1803345 8A 160V +phoenix_contact connector MC_01x09_G_3.81mm +0 +9 +9 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_9-GF-3.5_1x09_P3.50mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MC_1,5/9-GF-3.5; number of pins: 09; pin pitch: 3.50mm; Angled; threaded flange || order number: 1843868 8A 160V +phoenix_contact connector MC_01x09_GF_3.5mm +0 +9 +9 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_9-GF-3.5_1x09_P3.50mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MC_1,5/9-GF-3.5; number of pins: 09; pin pitch: 3.50mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1843868 8A 160V +phoenix_contact connector MC_01x09_GF_3.5mm_MH +0 +9 +9 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_9-GF-3.81_1x09_P3.81mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MC_1,5/9-GF-3.81; number of pins: 09; pin pitch: 3.81mm; Angled; threaded flange || order number: 1827936 8A 160V +phoenix_contact connector MC_01x09_GF_3.81mm +0 +9 +9 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_9-GF-3.81_1x09_P3.81mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MC_1,5/9-GF-3.81; number of pins: 09; pin pitch: 3.81mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1827936 8A 160V +phoenix_contact connector MC_01x09_GF_3.81mm_MH +0 +9 +9 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_10-G-3.5_1x10_P3.50mm_Horizontal +Generic Phoenix Contact connector footprint for: MC_1,5/10-G-3.5; number of pins: 10; pin pitch: 3.50mm; Angled || order number: 1844294 8A 160V +phoenix_contact connector MC_01x10_G_3.5mm +0 +10 +10 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_10-G-3.81_1x10_P3.81mm_Horizontal +Generic Phoenix Contact connector footprint for: MC_1,5/10-G-3.81; number of pins: 10; pin pitch: 3.81mm; Angled || order number: 1803358 8A 160V +phoenix_contact connector MC_01x10_G_3.81mm +0 +10 +10 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_10-GF-3.5_1x10_P3.50mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MC_1,5/10-GF-3.5; number of pins: 10; pin pitch: 3.50mm; Angled; threaded flange || order number: 1843871 8A 160V +phoenix_contact connector MC_01x10_GF_3.5mm +0 +10 +10 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_10-GF-3.5_1x10_P3.50mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MC_1,5/10-GF-3.5; number of pins: 10; pin pitch: 3.50mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1843871 8A 160V +phoenix_contact connector MC_01x10_GF_3.5mm_MH +0 +10 +10 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_10-GF-3.81_1x10_P3.81mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MC_1,5/10-GF-3.81; number of pins: 10; pin pitch: 3.81mm; Angled; threaded flange || order number: 1827949 8A 160V +phoenix_contact connector MC_01x10_GF_3.81mm +0 +10 +10 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_10-GF-3.81_1x10_P3.81mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MC_1,5/10-GF-3.81; number of pins: 10; pin pitch: 3.81mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1827949 8A 160V +phoenix_contact connector MC_01x10_GF_3.81mm_MH +0 +10 +10 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_11-G-3.5_1x11_P3.50mm_Horizontal +Generic Phoenix Contact connector footprint for: MC_1,5/11-G-3.5; number of pins: 11; pin pitch: 3.50mm; Angled || order number: 1844304 8A 160V +phoenix_contact connector MC_01x11_G_3.5mm +0 +11 +11 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_11-G-3.81_1x11_P3.81mm_Horizontal +Generic Phoenix Contact connector footprint for: MC_1,5/11-G-3.81; number of pins: 11; pin pitch: 3.81mm; Angled || order number: 1803361 8A 160V +phoenix_contact connector MC_01x11_G_3.81mm +0 +11 +11 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_11-GF-3.5_1x11_P3.50mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MC_1,5/11-GF-3.5; number of pins: 11; pin pitch: 3.50mm; Angled; threaded flange || order number: 1843884 8A 160V +phoenix_contact connector MC_01x11_GF_3.5mm +0 +11 +11 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_11-GF-3.5_1x11_P3.50mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MC_1,5/11-GF-3.5; number of pins: 11; pin pitch: 3.50mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1843884 8A 160V +phoenix_contact connector MC_01x11_GF_3.5mm_MH +0 +11 +11 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_11-GF-3.81_1x11_P3.81mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MC_1,5/11-GF-3.81; number of pins: 11; pin pitch: 3.81mm; Angled; threaded flange || order number: 1827952 8A 160V +phoenix_contact connector MC_01x11_GF_3.81mm +0 +11 +11 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_11-GF-3.81_1x11_P3.81mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MC_1,5/11-GF-3.81; number of pins: 11; pin pitch: 3.81mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1827952 8A 160V +phoenix_contact connector MC_01x11_GF_3.81mm_MH +0 +11 +11 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_12-G-3.5_1x12_P3.50mm_Horizontal +Generic Phoenix Contact connector footprint for: MC_1,5/12-G-3.5; number of pins: 12; pin pitch: 3.50mm; Angled || order number: 1844317 8A 160V +phoenix_contact connector MC_01x12_G_3.5mm +0 +12 +12 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_12-G-3.81_1x12_P3.81mm_Horizontal +Generic Phoenix Contact connector footprint for: MC_1,5/12-G-3.81; number of pins: 12; pin pitch: 3.81mm; Angled || order number: 1803374 8A 160V +phoenix_contact connector MC_01x12_G_3.81mm +0 +12 +12 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_12-GF-3.5_1x12_P3.50mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MC_1,5/12-GF-3.5; number of pins: 12; pin pitch: 3.50mm; Angled; threaded flange || order number: 1843897 8A 160V +phoenix_contact connector MC_01x12_GF_3.5mm +0 +12 +12 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_12-GF-3.5_1x12_P3.50mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MC_1,5/12-GF-3.5; number of pins: 12; pin pitch: 3.50mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1843897 8A 160V +phoenix_contact connector MC_01x12_GF_3.5mm_MH +0 +12 +12 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_12-GF-3.81_1x12_P3.81mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MC_1,5/12-GF-3.81; number of pins: 12; pin pitch: 3.81mm; Angled; threaded flange || order number: 1827965 8A 160V +phoenix_contact connector MC_01x12_GF_3.81mm +0 +12 +12 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_12-GF-3.81_1x12_P3.81mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MC_1,5/12-GF-3.81; number of pins: 12; pin pitch: 3.81mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1827965 8A 160V +phoenix_contact connector MC_01x12_GF_3.81mm_MH +0 +12 +12 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_13-G-3.5_1x13_P3.50mm_Horizontal +Generic Phoenix Contact connector footprint for: MC_1,5/13-G-3.5; number of pins: 13; pin pitch: 3.50mm; Angled || order number: 1844320 8A 160V +phoenix_contact connector MC_01x13_G_3.5mm +0 +13 +13 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_13-G-3.81_1x13_P3.81mm_Horizontal +Generic Phoenix Contact connector footprint for: MC_1,5/13-G-3.81; number of pins: 13; pin pitch: 3.81mm; Angled || order number: 1803387 8A 160V +phoenix_contact connector MC_01x13_G_3.81mm +0 +13 +13 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_13-GF-3.5_1x13_P3.50mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MC_1,5/13-GF-3.5; number of pins: 13; pin pitch: 3.50mm; Angled; threaded flange || order number: 1843907 8A 160V +phoenix_contact connector MC_01x13_GF_3.5mm +0 +13 +13 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_13-GF-3.5_1x13_P3.50mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MC_1,5/13-GF-3.5; number of pins: 13; pin pitch: 3.50mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1843907 8A 160V +phoenix_contact connector MC_01x13_GF_3.5mm_MH +0 +13 +13 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_13-GF-3.81_1x13_P3.81mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MC_1,5/13-GF-3.81; number of pins: 13; pin pitch: 3.81mm; Angled; threaded flange || order number: 1827978 8A 160V +phoenix_contact connector MC_01x13_GF_3.81mm +0 +13 +13 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_13-GF-3.81_1x13_P3.81mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MC_1,5/13-GF-3.81; number of pins: 13; pin pitch: 3.81mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1827978 8A 160V +phoenix_contact connector MC_01x13_GF_3.81mm_MH +0 +13 +13 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_14-G-3.5_1x14_P3.50mm_Horizontal +Generic Phoenix Contact connector footprint for: MC_1,5/14-G-3.5; number of pins: 14; pin pitch: 3.50mm; Angled || order number: 1844333 8A 160V +phoenix_contact connector MC_01x14_G_3.5mm +0 +14 +14 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_14-G-3.81_1x14_P3.81mm_Horizontal +Generic Phoenix Contact connector footprint for: MC_1,5/14-G-3.81; number of pins: 14; pin pitch: 3.81mm; Angled || order number: 1803390 8A 160V +phoenix_contact connector MC_01x14_G_3.81mm +0 +14 +14 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_14-GF-3.5_1x14_P3.50mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MC_1,5/14-GF-3.5; number of pins: 14; pin pitch: 3.50mm; Angled; threaded flange || order number: 1843910 8A 160V +phoenix_contact connector MC_01x14_GF_3.5mm +0 +14 +14 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_14-GF-3.5_1x14_P3.50mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MC_1,5/14-GF-3.5; number of pins: 14; pin pitch: 3.50mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1843910 8A 160V +phoenix_contact connector MC_01x14_GF_3.5mm_MH +0 +14 +14 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_14-GF-3.81_1x14_P3.81mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MC_1,5/14-GF-3.81; number of pins: 14; pin pitch: 3.81mm; Angled; threaded flange || order number: 1827981 8A 160V +phoenix_contact connector MC_01x14_GF_3.81mm +0 +14 +14 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_14-GF-3.81_1x14_P3.81mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MC_1,5/14-GF-3.81; number of pins: 14; pin pitch: 3.81mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1827981 8A 160V +phoenix_contact connector MC_01x14_GF_3.81mm_MH +0 +14 +14 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_15-G-3.5_1x15_P3.50mm_Horizontal +Generic Phoenix Contact connector footprint for: MC_1,5/15-G-3.5; number of pins: 15; pin pitch: 3.50mm; Angled || order number: 1844346 8A 160V +phoenix_contact connector MC_01x15_G_3.5mm +0 +15 +15 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_15-G-3.81_1x15_P3.81mm_Horizontal +Generic Phoenix Contact connector footprint for: MC_1,5/15-G-3.81; number of pins: 15; pin pitch: 3.81mm; Angled || order number: 1803400 8A 160V +phoenix_contact connector MC_01x15_G_3.81mm +0 +15 +15 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_15-GF-3.5_1x15_P3.50mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MC_1,5/15-GF-3.5; number of pins: 15; pin pitch: 3.50mm; Angled; threaded flange || order number: 1843923 8A 160V +phoenix_contact connector MC_01x15_GF_3.5mm +0 +15 +15 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_15-GF-3.5_1x15_P3.50mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MC_1,5/15-GF-3.5; number of pins: 15; pin pitch: 3.50mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1843923 8A 160V +phoenix_contact connector MC_01x15_GF_3.5mm_MH +0 +15 +15 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_15-GF-3.81_1x15_P3.81mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MC_1,5/15-GF-3.81; number of pins: 15; pin pitch: 3.81mm; Angled; threaded flange || order number: 1827994 8A 160V +phoenix_contact connector MC_01x15_GF_3.81mm +0 +15 +15 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_15-GF-3.81_1x15_P3.81mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MC_1,5/15-GF-3.81; number of pins: 15; pin pitch: 3.81mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1827994 8A 160V +phoenix_contact connector MC_01x15_GF_3.81mm_MH +0 +15 +15 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_16-G-3.5_1x16_P3.50mm_Horizontal +Generic Phoenix Contact connector footprint for: MC_1,5/16-G-3.5; number of pins: 16; pin pitch: 3.50mm; Angled || order number: 1844359 8A 160V +phoenix_contact connector MC_01x16_G_3.5mm +0 +16 +16 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_16-G-3.81_1x16_P3.81mm_Horizontal +Generic Phoenix Contact connector footprint for: MC_1,5/16-G-3.81; number of pins: 16; pin pitch: 3.81mm; Angled || order number: 1803413 8A 160V +phoenix_contact connector MC_01x16_G_3.81mm +0 +16 +16 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_16-GF-3.5_1x16_P3.50mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MC_1,5/16-GF-3.5; number of pins: 16; pin pitch: 3.50mm; Angled; threaded flange || order number: 1843936 8A 160V +phoenix_contact connector MC_01x16_GF_3.5mm +0 +16 +16 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_16-GF-3.5_1x16_P3.50mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MC_1,5/16-GF-3.5; number of pins: 16; pin pitch: 3.50mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1843936 8A 160V +phoenix_contact connector MC_01x16_GF_3.5mm_MH +0 +16 +16 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_16-GF-3.81_1x16_P3.81mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MC_1,5/16-GF-3.81; number of pins: 16; pin pitch: 3.81mm; Angled; threaded flange || order number: 1828003 8A 160V +phoenix_contact connector MC_01x16_GF_3.81mm +0 +16 +16 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_16-GF-3.81_1x16_P3.81mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MC_1,5/16-GF-3.81; number of pins: 16; pin pitch: 3.81mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1828003 8A 160V +phoenix_contact connector MC_01x16_GF_3.81mm_MH +0 +16 +16 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MCV_1,5_2-G-5.08_1x02_P5.08mm_Vertical +Generic Phoenix Contact connector footprint for: MCV_1,5/2-G-5.08; number of pins: 02; pin pitch: 5.08mm; Vertical || order number: 1836299 8A 320V +phoenix_contact connector MCV_01x02_G_5.08mm +0 +2 +2 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MCV_1,5_2-GF-5.08_1x02_P5.08mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MCV_1,5/2-GF-5.08; number of pins: 02; pin pitch: 5.08mm; Vertical; threaded flange || order number: 1847615 8A 320V +phoenix_contact connector MCV_01x02_GF_5.08mm +0 +2 +2 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MCV_1,5_2-GF-5.08_1x02_P5.08mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MCV_1,5/2-GF-5.08; number of pins: 02; pin pitch: 5.08mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1847615 8A 320V +phoenix_contact connector MCV_01x02_GF_5.08mm_MH +0 +2 +2 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MCV_1,5_3-G-5.08_1x03_P5.08mm_Vertical +Generic Phoenix Contact connector footprint for: MCV_1,5/3-G-5.08; number of pins: 03; pin pitch: 5.08mm; Vertical || order number: 1836309 8A 320V +phoenix_contact connector MCV_01x03_G_5.08mm +0 +3 +3 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MCV_1,5_3-GF-5.08_1x03_P5.08mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MCV_1,5/3-GF-5.08; number of pins: 03; pin pitch: 5.08mm; Vertical; threaded flange || order number: 1847628 8A 320V +phoenix_contact connector MCV_01x03_GF_5.08mm +0 +3 +3 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MCV_1,5_3-GF-5.08_1x03_P5.08mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MCV_1,5/3-GF-5.08; number of pins: 03; pin pitch: 5.08mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1847628 8A 320V +phoenix_contact connector MCV_01x03_GF_5.08mm_MH +0 +3 +3 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MCV_1,5_4-G-5.08_1x04_P5.08mm_Vertical +Generic Phoenix Contact connector footprint for: MCV_1,5/4-G-5.08; number of pins: 04; pin pitch: 5.08mm; Vertical || order number: 1836312 8A 320V +phoenix_contact connector MCV_01x04_G_5.08mm +0 +4 +4 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MCV_1,5_4-GF-5.08_1x04_P5.08mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MCV_1,5/4-GF-5.08; number of pins: 04; pin pitch: 5.08mm; Vertical; threaded flange || order number: 1847631 8A 320V +phoenix_contact connector MCV_01x04_GF_5.08mm +0 +4 +4 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MCV_1,5_4-GF-5.08_1x04_P5.08mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MCV_1,5/4-GF-5.08; number of pins: 04; pin pitch: 5.08mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1847631 8A 320V +phoenix_contact connector MCV_01x04_GF_5.08mm_MH +0 +4 +4 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MCV_1,5_5-G-5.08_1x05_P5.08mm_Vertical +Generic Phoenix Contact connector footprint for: MCV_1,5/5-G-5.08; number of pins: 05; pin pitch: 5.08mm; Vertical || order number: 1836325 8A 320V +phoenix_contact connector MCV_01x05_G_5.08mm +0 +5 +5 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MCV_1,5_5-GF-5.08_1x05_P5.08mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MCV_1,5/5-GF-5.08; number of pins: 05; pin pitch: 5.08mm; Vertical; threaded flange || order number: 1847644 8A 320V +phoenix_contact connector MCV_01x05_GF_5.08mm +0 +5 +5 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MCV_1,5_5-GF-5.08_1x05_P5.08mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MCV_1,5/5-GF-5.08; number of pins: 05; pin pitch: 5.08mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1847644 8A 320V +phoenix_contact connector MCV_01x05_GF_5.08mm_MH +0 +5 +5 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MCV_1,5_6-G-5.08_1x06_P5.08mm_Vertical +Generic Phoenix Contact connector footprint for: MCV_1,5/6-G-5.08; number of pins: 06; pin pitch: 5.08mm; Vertical || order number: 1836338 8A 320V +phoenix_contact connector MCV_01x06_G_5.08mm +0 +6 +6 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MCV_1,5_6-GF-5.08_1x06_P5.08mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MCV_1,5/6-GF-5.08; number of pins: 06; pin pitch: 5.08mm; Vertical; threaded flange || order number: 1847657 8A 320V +phoenix_contact connector MCV_01x06_GF_5.08mm +0 +6 +6 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MCV_1,5_6-GF-5.08_1x06_P5.08mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MCV_1,5/6-GF-5.08; number of pins: 06; pin pitch: 5.08mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1847657 8A 320V +phoenix_contact connector MCV_01x06_GF_5.08mm_MH +0 +6 +6 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MCV_1,5_7-G-5.08_1x07_P5.08mm_Vertical +Generic Phoenix Contact connector footprint for: MCV_1,5/7-G-5.08; number of pins: 07; pin pitch: 5.08mm; Vertical || order number: 1836341 8A 320V +phoenix_contact connector MCV_01x07_G_5.08mm +0 +7 +7 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MCV_1,5_7-GF-5.08_1x07_P5.08mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MCV_1,5/7-GF-5.08; number of pins: 07; pin pitch: 5.08mm; Vertical; threaded flange || order number: 1847660 8A 320V +phoenix_contact connector MCV_01x07_GF_5.08mm +0 +7 +7 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MCV_1,5_7-GF-5.08_1x07_P5.08mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MCV_1,5/7-GF-5.08; number of pins: 07; pin pitch: 5.08mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1847660 8A 320V +phoenix_contact connector MCV_01x07_GF_5.08mm_MH +0 +7 +7 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MCV_1,5_8-G-5.08_1x08_P5.08mm_Vertical +Generic Phoenix Contact connector footprint for: MCV_1,5/8-G-5.08; number of pins: 08; pin pitch: 5.08mm; Vertical || order number: 1836354 8A 320V +phoenix_contact connector MCV_01x08_G_5.08mm +0 +8 +8 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MCV_1,5_8-GF-5.08_1x08_P5.08mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MCV_1,5/8-GF-5.08; number of pins: 08; pin pitch: 5.08mm; Vertical; threaded flange || order number: 1847673 8A 320V +phoenix_contact connector MCV_01x08_GF_5.08mm +0 +8 +8 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MCV_1,5_8-GF-5.08_1x08_P5.08mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MCV_1,5/8-GF-5.08; number of pins: 08; pin pitch: 5.08mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1847673 8A 320V +phoenix_contact connector MCV_01x08_GF_5.08mm_MH +0 +8 +8 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MCV_1,5_9-G-5.08_1x09_P5.08mm_Vertical +Generic Phoenix Contact connector footprint for: MCV_1,5/9-G-5.08; number of pins: 09; pin pitch: 5.08mm; Vertical || order number: 1836367 8A 320V +phoenix_contact connector MCV_01x09_G_5.08mm +0 +9 +9 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MCV_1,5_9-GF-5.08_1x09_P5.08mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MCV_1,5/9-GF-5.08; number of pins: 09; pin pitch: 5.08mm; Vertical; threaded flange || order number: 1847686 8A 320V +phoenix_contact connector MCV_01x09_GF_5.08mm +0 +9 +9 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MCV_1,5_9-GF-5.08_1x09_P5.08mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MCV_1,5/9-GF-5.08; number of pins: 09; pin pitch: 5.08mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1847686 8A 320V +phoenix_contact connector MCV_01x09_GF_5.08mm_MH +0 +9 +9 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MCV_1,5_10-G-5.08_1x10_P5.08mm_Vertical +Generic Phoenix Contact connector footprint for: MCV_1,5/10-G-5.08; number of pins: 10; pin pitch: 5.08mm; Vertical || order number: 1836370 8A 320V +phoenix_contact connector MCV_01x10_G_5.08mm +0 +10 +10 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MCV_1,5_10-GF-5.08_1x10_P5.08mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MCV_1,5/10-GF-5.08; number of pins: 10; pin pitch: 5.08mm; Vertical; threaded flange || order number: 1847699 8A 320V +phoenix_contact connector MCV_01x10_GF_5.08mm +0 +10 +10 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MCV_1,5_10-GF-5.08_1x10_P5.08mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MCV_1,5/10-GF-5.08; number of pins: 10; pin pitch: 5.08mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1847699 8A 320V +phoenix_contact connector MCV_01x10_GF_5.08mm_MH +0 +10 +10 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MCV_1,5_11-G-5.08_1x11_P5.08mm_Vertical +Generic Phoenix Contact connector footprint for: MCV_1,5/11-G-5.08; number of pins: 11; pin pitch: 5.08mm; Vertical || order number: 1836383 8A 320V +phoenix_contact connector MCV_01x11_G_5.08mm +0 +11 +11 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MCV_1,5_11-GF-5.08_1x11_P5.08mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MCV_1,5/11-GF-5.08; number of pins: 11; pin pitch: 5.08mm; Vertical; threaded flange || order number: 1847709 8A 320V +phoenix_contact connector MCV_01x11_GF_5.08mm +0 +11 +11 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MCV_1,5_11-GF-5.08_1x11_P5.08mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MCV_1,5/11-GF-5.08; number of pins: 11; pin pitch: 5.08mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1847709 8A 320V +phoenix_contact connector MCV_01x11_GF_5.08mm_MH +0 +11 +11 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MCV_1,5_12-G-5.08_1x12_P5.08mm_Vertical +Generic Phoenix Contact connector footprint for: MCV_1,5/12-G-5.08; number of pins: 12; pin pitch: 5.08mm; Vertical || order number: 1836396 8A 320V +phoenix_contact connector MCV_01x12_G_5.08mm +0 +12 +12 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MCV_1,5_12-GF-5.08_1x12_P5.08mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MCV_1,5/12-GF-5.08; number of pins: 12; pin pitch: 5.08mm; Vertical; threaded flange || order number: 1847712 8A 320V +phoenix_contact connector MCV_01x12_GF_5.08mm +0 +12 +12 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MCV_1,5_12-GF-5.08_1x12_P5.08mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MCV_1,5/12-GF-5.08; number of pins: 12; pin pitch: 5.08mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1847712 8A 320V +phoenix_contact connector MCV_01x12_GF_5.08mm_MH +0 +12 +12 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MC_1,5_2-G-5.08_1x02_P5.08mm_Horizontal +Generic Phoenix Contact connector footprint for: MC_1,5/2-G-5.08; number of pins: 02; pin pitch: 5.08mm; Angled || order number: 1836189 8A 320V +phoenix_contact connector MC_01x02_G_5.08mm +0 +2 +2 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MC_1,5_2-GF-5.08_1x02_P5.08mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MC_1,5/2-GF-5.08; number of pins: 02; pin pitch: 5.08mm; Angled; threaded flange || order number: 1847466 8A 320V +phoenix_contact connector MC_01x02_GF_5.08mm +0 +2 +2 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MC_1,5_2-GF-5.08_1x02_P5.08mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MC_1,5/2-GF-5.08; number of pins: 02; pin pitch: 5.08mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1847466 8A 320V +phoenix_contact connector MC_01x02_GF_5.08mm_MH +0 +2 +2 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MC_1,5_3-G-5.08_1x03_P5.08mm_Horizontal +Generic Phoenix Contact connector footprint for: MC_1,5/3-G-5.08; number of pins: 03; pin pitch: 5.08mm; Angled || order number: 1836192 8A 320V +phoenix_contact connector MC_01x03_G_5.08mm +0 +3 +3 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MC_1,5_3-GF-5.08_1x03_P5.08mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MC_1,5/3-GF-5.08; number of pins: 03; pin pitch: 5.08mm; Angled; threaded flange || order number: 1847479 8A 320V +phoenix_contact connector MC_01x03_GF_5.08mm +0 +3 +3 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MC_1,5_3-GF-5.08_1x03_P5.08mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MC_1,5/3-GF-5.08; number of pins: 03; pin pitch: 5.08mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1847479 8A 320V +phoenix_contact connector MC_01x03_GF_5.08mm_MH +0 +3 +3 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MC_1,5_4-G-5.08_1x04_P5.08mm_Horizontal +Generic Phoenix Contact connector footprint for: MC_1,5/4-G-5.08; number of pins: 04; pin pitch: 5.08mm; Angled || order number: 1836202 8A 320V +phoenix_contact connector MC_01x04_G_5.08mm +0 +4 +4 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MC_1,5_4-GF-5.08_1x04_P5.08mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MC_1,5/4-GF-5.08; number of pins: 04; pin pitch: 5.08mm; Angled; threaded flange || order number: 1847482 8A 320V +phoenix_contact connector MC_01x04_GF_5.08mm +0 +4 +4 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MC_1,5_4-GF-5.08_1x04_P5.08mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MC_1,5/4-GF-5.08; number of pins: 04; pin pitch: 5.08mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1847482 8A 320V +phoenix_contact connector MC_01x04_GF_5.08mm_MH +0 +4 +4 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MC_1,5_5-G-5.08_1x05_P5.08mm_Horizontal +Generic Phoenix Contact connector footprint for: MC_1,5/5-G-5.08; number of pins: 05; pin pitch: 5.08mm; Angled || order number: 1836215 8A 320V +phoenix_contact connector MC_01x05_G_5.08mm +0 +5 +5 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MC_1,5_5-GF-5.08_1x05_P5.08mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MC_1,5/5-GF-5.08; number of pins: 05; pin pitch: 5.08mm; Angled; threaded flange || order number: 1847495 8A 320V +phoenix_contact connector MC_01x05_GF_5.08mm +0 +5 +5 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MC_1,5_5-GF-5.08_1x05_P5.08mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MC_1,5/5-GF-5.08; number of pins: 05; pin pitch: 5.08mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1847495 8A 320V +phoenix_contact connector MC_01x05_GF_5.08mm_MH +0 +5 +5 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MC_1,5_6-G-5.08_1x06_P5.08mm_Horizontal +Generic Phoenix Contact connector footprint for: MC_1,5/6-G-5.08; number of pins: 06; pin pitch: 5.08mm; Angled || order number: 1836228 8A 320V +phoenix_contact connector MC_01x06_G_5.08mm +0 +6 +6 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MC_1,5_6-GF-5.08_1x06_P5.08mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MC_1,5/6-GF-5.08; number of pins: 06; pin pitch: 5.08mm; Angled; threaded flange || order number: 1847505 8A 320V +phoenix_contact connector MC_01x06_GF_5.08mm +0 +6 +6 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MC_1,5_6-GF-5.08_1x06_P5.08mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MC_1,5/6-GF-5.08; number of pins: 06; pin pitch: 5.08mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1847505 8A 320V +phoenix_contact connector MC_01x06_GF_5.08mm_MH +0 +6 +6 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MC_1,5_7-G-5.08_1x07_P5.08mm_Horizontal +Generic Phoenix Contact connector footprint for: MC_1,5/7-G-5.08; number of pins: 07; pin pitch: 5.08mm; Angled || order number: 1836231 8A 320V +phoenix_contact connector MC_01x07_G_5.08mm +0 +7 +7 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MC_1,5_7-GF-5.08_1x07_P5.08mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MC_1,5/7-GF-5.08; number of pins: 07; pin pitch: 5.08mm; Angled; threaded flange || order number: 1847518 8A 320V +phoenix_contact connector MC_01x07_GF_5.08mm +0 +7 +7 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MC_1,5_7-GF-5.08_1x07_P5.08mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MC_1,5/7-GF-5.08; number of pins: 07; pin pitch: 5.08mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1847518 8A 320V +phoenix_contact connector MC_01x07_GF_5.08mm_MH +0 +7 +7 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MC_1,5_8-G-5.08_1x08_P5.08mm_Horizontal +Generic Phoenix Contact connector footprint for: MC_1,5/8-G-5.08; number of pins: 08; pin pitch: 5.08mm; Angled || order number: 1836244 8A 320V +phoenix_contact connector MC_01x08_G_5.08mm +0 +8 +8 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MC_1,5_8-GF-5.08_1x08_P5.08mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MC_1,5/8-GF-5.08; number of pins: 08; pin pitch: 5.08mm; Angled; threaded flange || order number: 1847521 8A 320V +phoenix_contact connector MC_01x08_GF_5.08mm +0 +8 +8 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MC_1,5_8-GF-5.08_1x08_P5.08mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MC_1,5/8-GF-5.08; number of pins: 08; pin pitch: 5.08mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1847521 8A 320V +phoenix_contact connector MC_01x08_GF_5.08mm_MH +0 +8 +8 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MC_1,5_9-G-5.08_1x09_P5.08mm_Horizontal +Generic Phoenix Contact connector footprint for: MC_1,5/9-G-5.08; number of pins: 09; pin pitch: 5.08mm; Angled || order number: 1836257 8A 320V +phoenix_contact connector MC_01x09_G_5.08mm +0 +9 +9 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MC_1,5_9-GF-5.08_1x09_P5.08mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MC_1,5/9-GF-5.08; number of pins: 09; pin pitch: 5.08mm; Angled; threaded flange || order number: 1847534 8A 320V +phoenix_contact connector MC_01x09_GF_5.08mm +0 +9 +9 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MC_1,5_9-GF-5.08_1x09_P5.08mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MC_1,5/9-GF-5.08; number of pins: 09; pin pitch: 5.08mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1847534 8A 320V +phoenix_contact connector MC_01x09_GF_5.08mm_MH +0 +9 +9 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MC_1,5_10-G-5.08_1x10_P5.08mm_Horizontal +Generic Phoenix Contact connector footprint for: MC_1,5/10-G-5.08; number of pins: 10; pin pitch: 5.08mm; Angled || order number: 1836260 8A 320V +phoenix_contact connector MC_01x10_G_5.08mm +0 +10 +10 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MC_1,5_10-GF-5.08_1x10_P5.08mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MC_1,5/10-GF-5.08; number of pins: 10; pin pitch: 5.08mm; Angled; threaded flange || order number: 1847547 8A 320V +phoenix_contact connector MC_01x10_GF_5.08mm +0 +10 +10 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MC_1,5_10-GF-5.08_1x10_P5.08mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MC_1,5/10-GF-5.08; number of pins: 10; pin pitch: 5.08mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1847547 8A 320V +phoenix_contact connector MC_01x10_GF_5.08mm_MH +0 +10 +10 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MC_1,5_11-G-5.08_1x11_P5.08mm_Horizontal +Generic Phoenix Contact connector footprint for: MC_1,5/11-G-5.08; number of pins: 11; pin pitch: 5.08mm; Angled || order number: 1836273 8A 320V +phoenix_contact connector MC_01x11_G_5.08mm +0 +11 +11 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MC_1,5_11-GF-5.08_1x11_P5.08mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MC_1,5/11-GF-5.08; number of pins: 11; pin pitch: 5.08mm; Angled; threaded flange || order number: 1847550 8A 320V +phoenix_contact connector MC_01x11_GF_5.08mm +0 +11 +11 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MC_1,5_11-GF-5.08_1x11_P5.08mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MC_1,5/11-GF-5.08; number of pins: 11; pin pitch: 5.08mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1847550 8A 320V +phoenix_contact connector MC_01x11_GF_5.08mm_MH +0 +11 +11 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MC_1,5_12-G-5.08_1x12_P5.08mm_Horizontal +Generic Phoenix Contact connector footprint for: MC_1,5/12-G-5.08; number of pins: 12; pin pitch: 5.08mm; Angled || order number: 1836286 8A 320V +phoenix_contact connector MC_01x12_G_5.08mm +0 +12 +12 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MC_1,5_12-GF-5.08_1x12_P5.08mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MC_1,5/12-GF-5.08; number of pins: 12; pin pitch: 5.08mm; Angled; threaded flange || order number: 1847563 8A 320V +phoenix_contact connector MC_01x12_GF_5.08mm +0 +12 +12 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MC_1,5_12-GF-5.08_1x12_P5.08mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MC_1,5/12-GF-5.08; number of pins: 12; pin pitch: 5.08mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1847563 8A 320V +phoenix_contact connector MC_01x12_GF_5.08mm_MH +0 +12 +12 +Connector_Phoenix_MSTB +PhoenixContact_MSTBA_2,5_2-G-5,08_1x02_P5.08mm_Horizontal +Generic Phoenix Contact connector footprint for: MSTBA_2,5/2-G-5,08; number of pins: 02; pin pitch: 5.08mm; Angled || order number: 1757242 12A || order number: 1923869 16A (HC) +phoenix_contact connector MSTBA_01x02_G_5.08mm +0 +2 +2 +Connector_Phoenix_MSTB +PhoenixContact_MSTBA_2,5_2-G_1x02_P5.00mm_Horizontal +Generic Phoenix Contact connector footprint for: MSTBA_2,5/2-G; number of pins: 02; pin pitch: 5.00mm; Angled || order number: 1757475 12A || order number: 1923759 16A (HC) +phoenix_contact connector MSTBA_01x02_G_5.00mm +0 +2 +2 +Connector_Phoenix_MSTB +PhoenixContact_MSTBA_2,5_3-G-5,08_1x03_P5.08mm_Horizontal +Generic Phoenix Contact connector footprint for: MSTBA_2,5/3-G-5,08; number of pins: 03; pin pitch: 5.08mm; Angled || order number: 1757255 12A || order number: 1923872 16A (HC) +phoenix_contact connector MSTBA_01x03_G_5.08mm +0 +3 +3 +Connector_Phoenix_MSTB +PhoenixContact_MSTBA_2,5_3-G_1x03_P5.00mm_Horizontal +Generic Phoenix Contact connector footprint for: MSTBA_2,5/3-G; number of pins: 03; pin pitch: 5.00mm; Angled || order number: 1757488 12A || order number: 1923762 16A (HC) +phoenix_contact connector MSTBA_01x03_G_5.00mm +0 +3 +3 +Connector_Phoenix_MSTB +PhoenixContact_MSTBA_2,5_4-G-5,08_1x04_P5.08mm_Horizontal +Generic Phoenix Contact connector footprint for: MSTBA_2,5/4-G-5,08; number of pins: 04; pin pitch: 5.08mm; Angled || order number: 1757268 12A || order number: 1923885 16A (HC) +phoenix_contact connector MSTBA_01x04_G_5.08mm +0 +4 +4 +Connector_Phoenix_MSTB +PhoenixContact_MSTBA_2,5_4-G_1x04_P5.00mm_Horizontal +Generic Phoenix Contact connector footprint for: MSTBA_2,5/4-G; number of pins: 04; pin pitch: 5.00mm; Angled || order number: 1757491 12A || order number: 1923775 16A (HC) +phoenix_contact connector MSTBA_01x04_G_5.00mm +0 +4 +4 +Connector_Phoenix_MSTB +PhoenixContact_MSTBA_2,5_5-G-5,08_1x05_P5.08mm_Horizontal +Generic Phoenix Contact connector footprint for: MSTBA_2,5/5-G-5,08; number of pins: 05; pin pitch: 5.08mm; Angled || order number: 1757271 12A || order number: 1923898 16A (HC) +phoenix_contact connector MSTBA_01x05_G_5.08mm +0 +5 +5 +Connector_Phoenix_MSTB +PhoenixContact_MSTBA_2,5_5-G_1x05_P5.00mm_Horizontal +Generic Phoenix Contact connector footprint for: MSTBA_2,5/5-G; number of pins: 05; pin pitch: 5.00mm; Angled || order number: 1757501 12A || order number: 1923788 16A (HC) +phoenix_contact connector MSTBA_01x05_G_5.00mm +0 +5 +5 +Connector_Phoenix_MSTB +PhoenixContact_MSTBA_2,5_6-G-5,08_1x06_P5.08mm_Horizontal +Generic Phoenix Contact connector footprint for: MSTBA_2,5/6-G-5,08; number of pins: 06; pin pitch: 5.08mm; Angled || order number: 1757284 12A || order number: 1923908 16A (HC) +phoenix_contact connector MSTBA_01x06_G_5.08mm +0 +6 +6 +Connector_Phoenix_MSTB +PhoenixContact_MSTBA_2,5_6-G_1x06_P5.00mm_Horizontal +Generic Phoenix Contact connector footprint for: MSTBA_2,5/6-G; number of pins: 06; pin pitch: 5.00mm; Angled || order number: 1757514 12A || order number: 1923791 16A (HC) +phoenix_contact connector MSTBA_01x06_G_5.00mm +0 +6 +6 +Connector_Phoenix_MSTB +PhoenixContact_MSTBA_2,5_7-G-5,08_1x07_P5.08mm_Horizontal +Generic Phoenix Contact connector footprint for: MSTBA_2,5/7-G-5,08; number of pins: 07; pin pitch: 5.08mm; Angled || order number: 1757297 12A || order number: 1923911 16A (HC) +phoenix_contact connector MSTBA_01x07_G_5.08mm +0 +7 +7 +Connector_Phoenix_MSTB +PhoenixContact_MSTBA_2,5_7-G_1x07_P5.00mm_Horizontal +Generic Phoenix Contact connector footprint for: MSTBA_2,5/7-G; number of pins: 07; pin pitch: 5.00mm; Angled || order number: 1757493 12A || order number: 1923801 16A (HC) +phoenix_contact connector MSTBA_01x07_G_5.00mm +0 +7 +7 +Connector_Phoenix_MSTB +PhoenixContact_MSTBA_2,5_8-G-5,08_1x08_P5.08mm_Horizontal +Generic Phoenix Contact connector footprint for: MSTBA_2,5/8-G-5,08; number of pins: 08; pin pitch: 5.08mm; Angled || order number: 1757307 12A || order number: 1923924 16A (HC) +phoenix_contact connector MSTBA_01x08_G_5.08mm +0 +8 +8 +Connector_Phoenix_MSTB +PhoenixContact_MSTBA_2,5_8-G_1x08_P5.00mm_Horizontal +Generic Phoenix Contact connector footprint for: MSTBA_2,5/8-G; number of pins: 08; pin pitch: 5.00mm; Angled || order number: 1757527 12A || order number: 1923814 16A (HC) +phoenix_contact connector MSTBA_01x08_G_5.00mm +0 +8 +8 +Connector_Phoenix_MSTB +PhoenixContact_MSTBA_2,5_9-G-5,08_1x09_P5.08mm_Horizontal +Generic Phoenix Contact connector footprint for: MSTBA_2,5/9-G-5,08; number of pins: 09; pin pitch: 5.08mm; Angled || order number: 1757310 12A || order number: 1923937 16A (HC) +phoenix_contact connector MSTBA_01x09_G_5.08mm +0 +9 +9 +Connector_Phoenix_MSTB +PhoenixContact_MSTBA_2,5_9-G_1x09_P5.00mm_Horizontal +Generic Phoenix Contact connector footprint for: MSTBA_2,5/9-G; number of pins: 09; pin pitch: 5.00mm; Angled || order number: 1757530 12A || order number: 1923827 16A (HC) +phoenix_contact connector MSTBA_01x09_G_5.00mm +0 +9 +9 +Connector_Phoenix_MSTB +PhoenixContact_MSTBA_2,5_10-G-5,08_1x10_P5.08mm_Horizontal +Generic Phoenix Contact connector footprint for: MSTBA_2,5/10-G-5,08; number of pins: 10; pin pitch: 5.08mm; Angled || order number: 1757323 12A || order number: 1923940 16A (HC) +phoenix_contact connector MSTBA_01x10_G_5.08mm +0 +10 +10 +Connector_Phoenix_MSTB +PhoenixContact_MSTBA_2,5_10-G_1x10_P5.00mm_Horizontal +Generic Phoenix Contact connector footprint for: MSTBA_2,5/10-G; number of pins: 10; pin pitch: 5.00mm; Angled || order number: 1757543 12A || order number: 1923830 16A (HC) +phoenix_contact connector MSTBA_01x10_G_5.00mm +0 +10 +10 +Connector_Phoenix_MSTB +PhoenixContact_MSTBA_2,5_11-G-5,08_1x11_P5.08mm_Horizontal +Generic Phoenix Contact connector footprint for: MSTBA_2,5/11-G-5,08; number of pins: 11; pin pitch: 5.08mm; Angled || order number: 1757336 12A || order number: 1923953 16A (HC) +phoenix_contact connector MSTBA_01x11_G_5.08mm +0 +11 +11 +Connector_Phoenix_MSTB +PhoenixContact_MSTBA_2,5_11-G_1x11_P5.00mm_Horizontal +Generic Phoenix Contact connector footprint for: MSTBA_2,5/11-G; number of pins: 11; pin pitch: 5.00mm; Angled || order number: 1757556 12A || order number: 1923843 16A (HC) +phoenix_contact connector MSTBA_01x11_G_5.00mm +0 +11 +11 +Connector_Phoenix_MSTB +PhoenixContact_MSTBA_2,5_12-G-5,08_1x12_P5.08mm_Horizontal +Generic Phoenix Contact connector footprint for: MSTBA_2,5/12-G-5,08; number of pins: 12; pin pitch: 5.08mm; Angled || order number: 1757349 12A || order number: 1923966 16A (HC) +phoenix_contact connector MSTBA_01x12_G_5.08mm +0 +12 +12 +Connector_Phoenix_MSTB +PhoenixContact_MSTBA_2,5_12-G_1x12_P5.00mm_Horizontal +Generic Phoenix Contact connector footprint for: MSTBA_2,5/12-G; number of pins: 12; pin pitch: 5.00mm; Angled || order number: 1757569 12A || order number: 1923856 16A (HC) +phoenix_contact connector MSTBA_01x12_G_5.00mm +0 +12 +12 +Connector_Phoenix_MSTB +PhoenixContact_MSTBA_2,5_13-G-5,08_1x13_P5.08mm_Horizontal +Generic Phoenix Contact connector footprint for: MSTBA_2,5/13-G-5,08; number of pins: 13; pin pitch: 5.08mm; Angled || order number: 1757352 12A +phoenix_contact connector MSTBA_01x13_G_5.08mm +0 +13 +13 +Connector_Phoenix_MSTB +PhoenixContact_MSTBA_2,5_13-G_1x13_P5.00mm_Horizontal +Generic Phoenix Contact connector footprint for: MSTBA_2,5/13-G; number of pins: 13; pin pitch: 5.00mm; Angled || order number: 1757572 12A +phoenix_contact connector MSTBA_01x13_G_5.00mm +0 +13 +13 +Connector_Phoenix_MSTB +PhoenixContact_MSTBA_2,5_14-G-5,08_1x14_P5.08mm_Horizontal +Generic Phoenix Contact connector footprint for: MSTBA_2,5/14-G-5,08; number of pins: 14; pin pitch: 5.08mm; Angled || order number: 1757365 12A +phoenix_contact connector MSTBA_01x14_G_5.08mm +0 +14 +14 +Connector_Phoenix_MSTB +PhoenixContact_MSTBA_2,5_14-G_1x14_P5.00mm_Horizontal +Generic Phoenix Contact connector footprint for: MSTBA_2,5/14-G; number of pins: 14; pin pitch: 5.00mm; Angled || order number: 1757585 12A +phoenix_contact connector MSTBA_01x14_G_5.00mm +0 +14 +14 +Connector_Phoenix_MSTB +PhoenixContact_MSTBA_2,5_15-G-5,08_1x15_P5.08mm_Horizontal +Generic Phoenix Contact connector footprint for: MSTBA_2,5/15-G-5,08; number of pins: 15; pin pitch: 5.08mm; Angled || order number: 1757378 12A +phoenix_contact connector MSTBA_01x15_G_5.08mm +0 +15 +15 +Connector_Phoenix_MSTB +PhoenixContact_MSTBA_2,5_15-G_1x15_P5.00mm_Horizontal +Generic Phoenix Contact connector footprint for: MSTBA_2,5/15-G; number of pins: 15; pin pitch: 5.00mm; Angled || order number: 1757598 12A +phoenix_contact connector MSTBA_01x15_G_5.00mm +0 +15 +15 +Connector_Phoenix_MSTB +PhoenixContact_MSTBA_2,5_16-G-5,08_1x16_P5.08mm_Horizontal +Generic Phoenix Contact connector footprint for: MSTBA_2,5/16-G-5,08; number of pins: 16; pin pitch: 5.08mm; Angled || order number: 1757381 12A +phoenix_contact connector MSTBA_01x16_G_5.08mm +0 +16 +16 +Connector_Phoenix_MSTB +PhoenixContact_MSTBA_2,5_16-G_1x16_P5.00mm_Horizontal +Generic Phoenix Contact connector footprint for: MSTBA_2,5/16-G; number of pins: 16; pin pitch: 5.00mm; Angled || order number: 1757608 12A +phoenix_contact connector MSTBA_01x16_G_5.00mm +0 +16 +16 +Connector_Phoenix_MSTB +PhoenixContact_MSTBVA_2,5_2-G-5,08_1x02_P5.08mm_Vertical +Generic Phoenix Contact connector footprint for: MSTBVA_2,5/2-G-5,08; number of pins: 02; pin pitch: 5.08mm; Vertical || order number: 1755736 12A || order number: 1924305 16A (HC) +phoenix_contact connector MSTBVA_01x02_G_5.08mm +0 +2 +2 +Connector_Phoenix_MSTB +PhoenixContact_MSTBVA_2,5_2-G_1x02_P5.00mm_Vertical +Generic Phoenix Contact connector footprint for: MSTBVA_2,5/2-G; number of pins: 02; pin pitch: 5.00mm; Vertical || order number: 1755516 12A || order number: 1924198 16A (HC) +phoenix_contact connector MSTBVA_01x02_G_5.00mm +0 +2 +2 +Connector_Phoenix_MSTB +PhoenixContact_MSTBVA_2,5_3-G-5,08_1x03_P5.08mm_Vertical +Generic Phoenix Contact connector footprint for: MSTBVA_2,5/3-G-5,08; number of pins: 03; pin pitch: 5.08mm; Vertical || order number: 1755749 12A || order number: 1924318 16A (HC) +phoenix_contact connector MSTBVA_01x03_G_5.08mm +0 +3 +3 +Connector_Phoenix_MSTB +PhoenixContact_MSTBVA_2,5_3-G_1x03_P5.00mm_Vertical +Generic Phoenix Contact connector footprint for: MSTBVA_2,5/3-G; number of pins: 03; pin pitch: 5.00mm; Vertical || order number: 1755529 12A || order number: 1924208 16A (HC) +phoenix_contact connector MSTBVA_01x03_G_5.00mm +0 +3 +3 +Connector_Phoenix_MSTB +PhoenixContact_MSTBVA_2,5_4-G-5,08_1x04_P5.08mm_Vertical +Generic Phoenix Contact connector footprint for: MSTBVA_2,5/4-G-5,08; number of pins: 04; pin pitch: 5.08mm; Vertical || order number: 1755752 12A || order number: 1924321 16A (HC) +phoenix_contact connector MSTBVA_01x04_G_5.08mm +0 +4 +4 +Connector_Phoenix_MSTB +PhoenixContact_MSTBVA_2,5_4-G_1x04_P5.00mm_Vertical +Generic Phoenix Contact connector footprint for: MSTBVA_2,5/4-G; number of pins: 04; pin pitch: 5.00mm; Vertical || order number: 1755532 12A || order number: 1924211 16A (HC) +phoenix_contact connector MSTBVA_01x04_G_5.00mm +0 +4 +4 +Connector_Phoenix_MSTB +PhoenixContact_MSTBVA_2,5_5-G-5,08_1x05_P5.08mm_Vertical +Generic Phoenix Contact connector footprint for: MSTBVA_2,5/5-G-5,08; number of pins: 05; pin pitch: 5.08mm; Vertical || order number: 1755765 12A || order number: 1924334 16A (HC) +phoenix_contact connector MSTBVA_01x05_G_5.08mm +0 +5 +5 +Connector_Phoenix_MSTB +PhoenixContact_MSTBVA_2,5_5-G_1x05_P5.00mm_Vertical +Generic Phoenix Contact connector footprint for: MSTBVA_2,5/5-G; number of pins: 05; pin pitch: 5.00mm; Vertical || order number: 1755545 12A || order number: 1924224 16A (HC) +phoenix_contact connector MSTBVA_01x05_G_5.00mm +0 +5 +5 +Connector_Phoenix_MSTB +PhoenixContact_MSTBVA_2,5_6-G-5,08_1x06_P5.08mm_Vertical +Generic Phoenix Contact connector footprint for: MSTBVA_2,5/6-G-5,08; number of pins: 06; pin pitch: 5.08mm; Vertical || order number: 1755778 12A || order number: 1924347 16A (HC) +phoenix_contact connector MSTBVA_01x06_G_5.08mm +0 +6 +6 +Connector_Phoenix_MSTB +PhoenixContact_MSTBVA_2,5_6-G_1x06_P5.00mm_Vertical +Generic Phoenix Contact connector footprint for: MSTBVA_2,5/6-G; number of pins: 06; pin pitch: 5.00mm; Vertical || order number: 1755558 12A || order number: 1924237 16A (HC) +phoenix_contact connector MSTBVA_01x06_G_5.00mm +0 +6 +6 +Connector_Phoenix_MSTB +PhoenixContact_MSTBVA_2,5_7-G-5,08_1x07_P5.08mm_Vertical +Generic Phoenix Contact connector footprint for: MSTBVA_2,5/7-G-5,08; number of pins: 07; pin pitch: 5.08mm; Vertical || order number: 1755781 12A || order number: 1924350 16A (HC) +phoenix_contact connector MSTBVA_01x07_G_5.08mm +0 +7 +7 +Connector_Phoenix_MSTB +PhoenixContact_MSTBVA_2,5_7-G_1x07_P5.00mm_Vertical +Generic Phoenix Contact connector footprint for: MSTBVA_2,5/7-G; number of pins: 07; pin pitch: 5.00mm; Vertical || order number: 1755561 12A || order number: 1924240 16A (HC) +phoenix_contact connector MSTBVA_01x07_G_5.00mm +0 +7 +7 +Connector_Phoenix_MSTB +PhoenixContact_MSTBVA_2,5_8-G-5,08_1x08_P5.08mm_Vertical +Generic Phoenix Contact connector footprint for: MSTBVA_2,5/8-G-5,08; number of pins: 08; pin pitch: 5.08mm; Vertical || order number: 1755794 12A || order number: 1924363 16A (HC) +phoenix_contact connector MSTBVA_01x08_G_5.08mm +0 +8 +8 +Connector_Phoenix_MSTB +PhoenixContact_MSTBVA_2,5_8-G_1x08_P5.00mm_Vertical +Generic Phoenix Contact connector footprint for: MSTBVA_2,5/8-G; number of pins: 08; pin pitch: 5.00mm; Vertical || order number: 1755574 12A || order number: 1924253 16A (HC) +phoenix_contact connector MSTBVA_01x08_G_5.00mm +0 +8 +8 +Connector_Phoenix_MSTB +PhoenixContact_MSTBVA_2,5_9-G-5,08_1x09_P5.08mm_Vertical +Generic Phoenix Contact connector footprint for: MSTBVA_2,5/9-G-5,08; number of pins: 09; pin pitch: 5.08mm; Vertical || order number: 1755804 12A || order number: 1924376 16A (HC) +phoenix_contact connector MSTBVA_01x09_G_5.08mm +0 +9 +9 +Connector_Phoenix_MSTB +PhoenixContact_MSTBVA_2,5_9-G_1x09_P5.00mm_Vertical +Generic Phoenix Contact connector footprint for: MSTBVA_2,5/9-G; number of pins: 09; pin pitch: 5.00mm; Vertical || order number: 1755587 12A || order number: 1924266 16A (HC) +phoenix_contact connector MSTBVA_01x09_G_5.00mm +0 +9 +9 +Connector_Phoenix_MSTB +PhoenixContact_MSTBVA_2,5_10-G-5,08_1x10_P5.08mm_Vertical +Generic Phoenix Contact connector footprint for: MSTBVA_2,5/10-G-5,08; number of pins: 10; pin pitch: 5.08mm; Vertical || order number: 1755817 12A || order number: 1924389 16A (HC) +phoenix_contact connector MSTBVA_01x10_G_5.08mm +0 +10 +10 +Connector_Phoenix_MSTB +PhoenixContact_MSTBVA_2,5_10-G_1x10_P5.00mm_Vertical +Generic Phoenix Contact connector footprint for: MSTBVA_2,5/10-G; number of pins: 10; pin pitch: 5.00mm; Vertical || order number: 1755503 12A || order number: 1924279 16A (HC) +phoenix_contact connector MSTBVA_01x10_G_5.00mm +0 +10 +10 +Connector_Phoenix_MSTB +PhoenixContact_MSTBVA_2,5_11-G-5,08_1x11_P5.08mm_Vertical +Generic Phoenix Contact connector footprint for: MSTBVA_2,5/11-G-5,08; number of pins: 11; pin pitch: 5.08mm; Vertical || order number: 1755820 12A || order number: 1924392 16A (HC) +phoenix_contact connector MSTBVA_01x11_G_5.08mm +0 +11 +11 +Connector_Phoenix_MSTB +PhoenixContact_MSTBVA_2,5_11-G_1x11_P5.00mm_Vertical +Generic Phoenix Contact connector footprint for: MSTBVA_2,5/11-G; number of pins: 11; pin pitch: 5.00mm; Vertical || order number: 1755590 12A || order number: 1924282 16A (HC) +phoenix_contact connector MSTBVA_01x11_G_5.00mm +0 +11 +11 +Connector_Phoenix_MSTB +PhoenixContact_MSTBVA_2,5_12-G-5,08_1x12_P5.08mm_Vertical +Generic Phoenix Contact connector footprint for: MSTBVA_2,5/12-G-5,08; number of pins: 12; pin pitch: 5.08mm; Vertical || order number: 1755833 12A || order number: 1924402 16A (HC) +phoenix_contact connector MSTBVA_01x12_G_5.08mm +0 +12 +12 +Connector_Phoenix_MSTB +PhoenixContact_MSTBVA_2,5_12-G_1x12_P5.00mm_Vertical +Generic Phoenix Contact connector footprint for: MSTBVA_2,5/12-G; number of pins: 12; pin pitch: 5.00mm; Vertical || order number: 1755600 12A || order number: 1924295 16A (HC) +phoenix_contact connector MSTBVA_01x12_G_5.00mm +0 +12 +12 +Connector_Phoenix_MSTB +PhoenixContact_MSTBVA_2,5_13-G-5,08_1x13_P5.08mm_Vertical +Generic Phoenix Contact connector footprint for: MSTBVA_2,5/13-G-5,08; number of pins: 13; pin pitch: 5.08mm; Vertical || order number: 1755846 12A +phoenix_contact connector MSTBVA_01x13_G_5.08mm +0 +13 +13 +Connector_Phoenix_MSTB +PhoenixContact_MSTBVA_2,5_13-G_1x13_P5.00mm_Vertical +Generic Phoenix Contact connector footprint for: MSTBVA_2,5/13-G; number of pins: 13; pin pitch: 5.00mm; Vertical || order number: 1755613 12A +phoenix_contact connector MSTBVA_01x13_G_5.00mm +0 +13 +13 +Connector_Phoenix_MSTB +PhoenixContact_MSTBVA_2,5_14-G-5,08_1x14_P5.08mm_Vertical +Generic Phoenix Contact connector footprint for: MSTBVA_2,5/14-G-5,08; number of pins: 14; pin pitch: 5.08mm; Vertical || order number: 1755859 12A +phoenix_contact connector MSTBVA_01x14_G_5.08mm +0 +14 +14 +Connector_Phoenix_MSTB +PhoenixContact_MSTBVA_2,5_14-G_1x14_P5.00mm_Vertical +Generic Phoenix Contact connector footprint for: MSTBVA_2,5/14-G; number of pins: 14; pin pitch: 5.00mm; Vertical || order number: 1755626 12A +phoenix_contact connector MSTBVA_01x14_G_5.00mm +0 +14 +14 +Connector_Phoenix_MSTB +PhoenixContact_MSTBVA_2,5_15-G-5,08_1x15_P5.08mm_Vertical +Generic Phoenix Contact connector footprint for: MSTBVA_2,5/15-G-5,08; number of pins: 15; pin pitch: 5.08mm; Vertical || order number: 1755862 12A +phoenix_contact connector MSTBVA_01x15_G_5.08mm +0 +15 +15 +Connector_Phoenix_MSTB +PhoenixContact_MSTBVA_2,5_15-G_1x15_P5.00mm_Vertical +Generic Phoenix Contact connector footprint for: MSTBVA_2,5/15-G; number of pins: 15; pin pitch: 5.00mm; Vertical || order number: 1755639 12A +phoenix_contact connector MSTBVA_01x15_G_5.00mm +0 +15 +15 +Connector_Phoenix_MSTB +PhoenixContact_MSTBVA_2,5_16-G-5,08_1x16_P5.08mm_Vertical +Generic Phoenix Contact connector footprint for: MSTBVA_2,5/16-G-5,08; number of pins: 16; pin pitch: 5.08mm; Vertical || order number: 1755875 12A +phoenix_contact connector MSTBVA_01x16_G_5.08mm +0 +16 +16 +Connector_Phoenix_MSTB +PhoenixContact_MSTBVA_2,5_16-G_1x16_P5.00mm_Vertical +Generic Phoenix Contact connector footprint for: MSTBVA_2,5/16-G; number of pins: 16; pin pitch: 5.00mm; Vertical || order number: 1755642 12A +phoenix_contact connector MSTBVA_01x16_G_5.00mm +0 +16 +16 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_2-GF-5,08_1x02_P5.08mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTBV_2,5/2-GF-5,08; number of pins: 02; pin pitch: 5.08mm; Vertical; threaded flange || order number: 1777073 12A || order number: 1924525 16A (HC) +phoenix_contact connector MSTBV_01x02_GF_5.08mm +0 +2 +2 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_2-GF-5,08_1x02_P5.08mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTBV_2,5/2-GF-5,08; number of pins: 02; pin pitch: 5.08mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1777073 12A || order number: 1924525 16A (HC) +phoenix_contact connector MSTBV_01x02_GF_5.08mm_MH +0 +2 +2 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_2-GF_1x02_P5.00mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTBV_2,5/2-GF; number of pins: 02; pin pitch: 5.00mm; Vertical; threaded flange || order number: 1776883 12A || order number: 1924415 16A (HC) +phoenix_contact connector MSTBV_01x02_GF_5.00mm +0 +2 +2 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_2-GF_1x02_P5.00mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTBV_2,5/2-GF; number of pins: 02; pin pitch: 5.00mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776883 12A || order number: 1924415 16A (HC) +phoenix_contact connector MSTBV_01x02_GF_5.00mm_MH +0 +2 +2 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_3-GF-5,08_1x03_P5.08mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTBV_2,5/3-GF-5,08; number of pins: 03; pin pitch: 5.08mm; Vertical; threaded flange || order number: 1777086 12A || order number: 1924538 16A (HC) +phoenix_contact connector MSTBV_01x03_GF_5.08mm +0 +3 +3 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_3-GF-5,08_1x03_P5.08mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTBV_2,5/3-GF-5,08; number of pins: 03; pin pitch: 5.08mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1777086 12A || order number: 1924538 16A (HC) +phoenix_contact connector MSTBV_01x03_GF_5.08mm_MH +0 +3 +3 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_3-GF_1x03_P5.00mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTBV_2,5/3-GF; number of pins: 03; pin pitch: 5.00mm; Vertical; threaded flange || order number: 1776896 12A || order number: 1924428 16A (HC) +phoenix_contact connector MSTBV_01x03_GF_5.00mm +0 +3 +3 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_3-GF_1x03_P5.00mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTBV_2,5/3-GF; number of pins: 03; pin pitch: 5.00mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776896 12A || order number: 1924428 16A (HC) +phoenix_contact connector MSTBV_01x03_GF_5.00mm_MH +0 +3 +3 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_4-GF-5,08_1x04_P5.08mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTBV_2,5/4-GF-5,08; number of pins: 04; pin pitch: 5.08mm; Vertical; threaded flange || order number: 1777099 12A || order number: 1924541 16A (HC) +phoenix_contact connector MSTBV_01x04_GF_5.08mm +0 +4 +4 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_4-GF-5,08_1x04_P5.08mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTBV_2,5/4-GF-5,08; number of pins: 04; pin pitch: 5.08mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1777099 12A || order number: 1924541 16A (HC) +phoenix_contact connector MSTBV_01x04_GF_5.08mm_MH +0 +4 +4 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_4-GF_1x04_P5.00mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTBV_2,5/4-GF; number of pins: 04; pin pitch: 5.00mm; Vertical; threaded flange || order number: 1776906 12A || order number: 1924431 16A (HC) +phoenix_contact connector MSTBV_01x04_GF_5.00mm +0 +4 +4 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_4-GF_1x04_P5.00mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTBV_2,5/4-GF; number of pins: 04; pin pitch: 5.00mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776906 12A || order number: 1924431 16A (HC) +phoenix_contact connector MSTBV_01x04_GF_5.00mm_MH +0 +4 +4 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_5-GF-5,08_1x05_P5.08mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTBV_2,5/5-GF-5,08; number of pins: 05; pin pitch: 5.08mm; Vertical; threaded flange || order number: 1777109 12A || order number: 1924554 16A (HC) +phoenix_contact connector MSTBV_01x05_GF_5.08mm +0 +5 +5 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_5-GF-5,08_1x05_P5.08mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTBV_2,5/5-GF-5,08; number of pins: 05; pin pitch: 5.08mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1777109 12A || order number: 1924554 16A (HC) +phoenix_contact connector MSTBV_01x05_GF_5.08mm_MH +0 +5 +5 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_5-GF_1x05_P5.00mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTBV_2,5/5-GF; number of pins: 05; pin pitch: 5.00mm; Vertical; threaded flange || order number: 1776919 12A || order number: 1924444 16A (HC) +phoenix_contact connector MSTBV_01x05_GF_5.00mm +0 +5 +5 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_5-GF_1x05_P5.00mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTBV_2,5/5-GF; number of pins: 05; pin pitch: 5.00mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776919 12A || order number: 1924444 16A (HC) +phoenix_contact connector MSTBV_01x05_GF_5.00mm_MH +0 +5 +5 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_6-GF-5,08_1x06_P5.08mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTBV_2,5/6-GF-5,08; number of pins: 06; pin pitch: 5.08mm; Vertical; threaded flange || order number: 1777112 12A || order number: 1924567 16A (HC) +phoenix_contact connector MSTBV_01x06_GF_5.08mm +0 +6 +6 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_6-GF-5,08_1x06_P5.08mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTBV_2,5/6-GF-5,08; number of pins: 06; pin pitch: 5.08mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1777112 12A || order number: 1924567 16A (HC) +phoenix_contact connector MSTBV_01x06_GF_5.08mm_MH +0 +6 +6 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_6-GF_1x06_P5.00mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTBV_2,5/6-GF; number of pins: 06; pin pitch: 5.00mm; Vertical; threaded flange || order number: 1776922 12A || order number: 1924457 16A (HC) +phoenix_contact connector MSTBV_01x06_GF_5.00mm +0 +6 +6 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_6-GF_1x06_P5.00mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTBV_2,5/6-GF; number of pins: 06; pin pitch: 5.00mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776922 12A || order number: 1924457 16A (HC) +phoenix_contact connector MSTBV_01x06_GF_5.00mm_MH +0 +6 +6 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_7-GF-5,08_1x07_P5.08mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTBV_2,5/7-GF-5,08; number of pins: 07; pin pitch: 5.08mm; Vertical; threaded flange || order number: 1777125 12A || order number: 1924570 16A (HC) +phoenix_contact connector MSTBV_01x07_GF_5.08mm +0 +7 +7 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_7-GF-5,08_1x07_P5.08mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTBV_2,5/7-GF-5,08; number of pins: 07; pin pitch: 5.08mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1777125 12A || order number: 1924570 16A (HC) +phoenix_contact connector MSTBV_01x07_GF_5.08mm_MH +0 +7 +7 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_7-GF_1x07_P5.00mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTBV_2,5/7-GF; number of pins: 07; pin pitch: 5.00mm; Vertical; threaded flange || order number: 1776935 12A || order number: 1924460 16A (HC) +phoenix_contact connector MSTBV_01x07_GF_5.00mm +0 +7 +7 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_7-GF_1x07_P5.00mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTBV_2,5/7-GF; number of pins: 07; pin pitch: 5.00mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776935 12A || order number: 1924460 16A (HC) +phoenix_contact connector MSTBV_01x07_GF_5.00mm_MH +0 +7 +7 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_8-GF-5,08_1x08_P5.08mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTBV_2,5/8-GF-5,08; number of pins: 08; pin pitch: 5.08mm; Vertical; threaded flange || order number: 1777138 12A || order number: 1924583 16A (HC) +phoenix_contact connector MSTBV_01x08_GF_5.08mm +0 +8 +8 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_8-GF-5,08_1x08_P5.08mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTBV_2,5/8-GF-5,08; number of pins: 08; pin pitch: 5.08mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1777138 12A || order number: 1924583 16A (HC) +phoenix_contact connector MSTBV_01x08_GF_5.08mm_MH +0 +8 +8 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_8-GF_1x08_P5.00mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTBV_2,5/8-GF; number of pins: 08; pin pitch: 5.00mm; Vertical; threaded flange || order number: 1776948 12A || order number: 1924473 16A (HC) +phoenix_contact connector MSTBV_01x08_GF_5.00mm +0 +8 +8 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_8-GF_1x08_P5.00mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTBV_2,5/8-GF; number of pins: 08; pin pitch: 5.00mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776948 12A || order number: 1924473 16A (HC) +phoenix_contact connector MSTBV_01x08_GF_5.00mm_MH +0 +8 +8 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_9-GF-5,08_1x09_P5.08mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTBV_2,5/9-GF-5,08; number of pins: 09; pin pitch: 5.08mm; Vertical; threaded flange || order number: 1777141 12A || order number: 1924596 16A (HC) +phoenix_contact connector MSTBV_01x09_GF_5.08mm +0 +9 +9 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_9-GF-5,08_1x09_P5.08mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTBV_2,5/9-GF-5,08; number of pins: 09; pin pitch: 5.08mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1777141 12A || order number: 1924596 16A (HC) +phoenix_contact connector MSTBV_01x09_GF_5.08mm_MH +0 +9 +9 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_9-GF_1x09_P5.00mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTBV_2,5/9-GF; number of pins: 09; pin pitch: 5.00mm; Vertical; threaded flange || order number: 1776951 12A || order number: 1924486 16A (HC) +phoenix_contact connector MSTBV_01x09_GF_5.00mm +0 +9 +9 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_9-GF_1x09_P5.00mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTBV_2,5/9-GF; number of pins: 09; pin pitch: 5.00mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776951 12A || order number: 1924486 16A (HC) +phoenix_contact connector MSTBV_01x09_GF_5.00mm_MH +0 +9 +9 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_10-GF-5,08_1x10_P5.08mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTBV_2,5/10-GF-5,08; number of pins: 10; pin pitch: 5.08mm; Vertical; threaded flange || order number: 1777154 12A || order number: 1924606 16A (HC) +phoenix_contact connector MSTBV_01x10_GF_5.08mm +0 +10 +10 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_10-GF-5,08_1x10_P5.08mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTBV_2,5/10-GF-5,08; number of pins: 10; pin pitch: 5.08mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1777154 12A || order number: 1924606 16A (HC) +phoenix_contact connector MSTBV_01x10_GF_5.08mm_MH +0 +10 +10 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_10-GF_1x10_P5.00mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTBV_2,5/10-GF; number of pins: 10; pin pitch: 5.00mm; Vertical; threaded flange || order number: 1776964 12A || order number: 1924499 16A (HC) +phoenix_contact connector MSTBV_01x10_GF_5.00mm +0 +10 +10 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_10-GF_1x10_P5.00mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTBV_2,5/10-GF; number of pins: 10; pin pitch: 5.00mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776964 12A || order number: 1924499 16A (HC) +phoenix_contact connector MSTBV_01x10_GF_5.00mm_MH +0 +10 +10 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_11-GF-5,08_1x11_P5.08mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTBV_2,5/11-GF-5,08; number of pins: 11; pin pitch: 5.08mm; Vertical; threaded flange || order number: 1777167 12A || order number: 1924619 16A (HC) +phoenix_contact connector MSTBV_01x11_GF_5.08mm +0 +11 +11 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_11-GF-5,08_1x11_P5.08mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTBV_2,5/11-GF-5,08; number of pins: 11; pin pitch: 5.08mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1777167 12A || order number: 1924619 16A (HC) +phoenix_contact connector MSTBV_01x11_GF_5.08mm_MH +0 +11 +11 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_11-GF_1x11_P5.00mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTBV_2,5/11-GF; number of pins: 11; pin pitch: 5.00mm; Vertical; threaded flange || order number: 1776977 12A || order number: 1924509 16A (HC) +phoenix_contact connector MSTBV_01x11_GF_5.00mm +0 +11 +11 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_11-GF_1x11_P5.00mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTBV_2,5/11-GF; number of pins: 11; pin pitch: 5.00mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776977 12A || order number: 1924509 16A (HC) +phoenix_contact connector MSTBV_01x11_GF_5.00mm_MH +0 +11 +11 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_12-GF-5,08_1x12_P5.08mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTBV_2,5/12-GF-5,08; number of pins: 12; pin pitch: 5.08mm; Vertical; threaded flange || order number: 1777170 12A || order number: 1924622 16A (HC) +phoenix_contact connector MSTBV_01x12_GF_5.08mm +0 +12 +12 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_12-GF-5,08_1x12_P5.08mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTBV_2,5/12-GF-5,08; number of pins: 12; pin pitch: 5.08mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1777170 12A || order number: 1924622 16A (HC) +phoenix_contact connector MSTBV_01x12_GF_5.08mm_MH +0 +12 +12 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_12-GF_1x12_P5.00mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTBV_2,5/12-GF; number of pins: 12; pin pitch: 5.00mm; Vertical; threaded flange || order number: 1776980 12A || order number: 1924512 16A (HC) +phoenix_contact connector MSTBV_01x12_GF_5.00mm +0 +12 +12 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_12-GF_1x12_P5.00mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTBV_2,5/12-GF; number of pins: 12; pin pitch: 5.00mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776980 12A || order number: 1924512 16A (HC) +phoenix_contact connector MSTBV_01x12_GF_5.00mm_MH +0 +12 +12 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_13-GF-5,08_1x13_P5.08mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTBV_2,5/13-GF-5,08; number of pins: 13; pin pitch: 5.08mm; Vertical; threaded flange || order number: 1777183 12A +phoenix_contact connector MSTBV_01x13_GF_5.08mm +0 +13 +13 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_13-GF-5,08_1x13_P5.08mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTBV_2,5/13-GF-5,08; number of pins: 13; pin pitch: 5.08mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1777183 12A +phoenix_contact connector MSTBV_01x13_GF_5.08mm_MH +0 +13 +13 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_13-GF_1x13_P5.00mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTBV_2,5/13-GF; number of pins: 13; pin pitch: 5.00mm; Vertical; threaded flange || order number: 1776993 12A +phoenix_contact connector MSTBV_01x13_GF_5.00mm +0 +13 +13 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_13-GF_1x13_P5.00mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTBV_2,5/13-GF; number of pins: 13; pin pitch: 5.00mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776993 12A +phoenix_contact connector MSTBV_01x13_GF_5.00mm_MH +0 +13 +13 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_14-GF-5,08_1x14_P5.08mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTBV_2,5/14-GF-5,08; number of pins: 14; pin pitch: 5.08mm; Vertical; threaded flange || order number: 1777196 12A +phoenix_contact connector MSTBV_01x14_GF_5.08mm +0 +14 +14 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_14-GF-5,08_1x14_P5.08mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTBV_2,5/14-GF-5,08; number of pins: 14; pin pitch: 5.08mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1777196 12A +phoenix_contact connector MSTBV_01x14_GF_5.08mm_MH +0 +14 +14 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_14-GF_1x14_P5.00mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTBV_2,5/14-GF; number of pins: 14; pin pitch: 5.00mm; Vertical; threaded flange || order number: 1776002 12A +phoenix_contact connector MSTBV_01x14_GF_5.00mm +0 +14 +14 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_14-GF_1x14_P5.00mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTBV_2,5/14-GF; number of pins: 14; pin pitch: 5.00mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776002 12A +phoenix_contact connector MSTBV_01x14_GF_5.00mm_MH +0 +14 +14 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_15-GF-5,08_1x15_P5.08mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTBV_2,5/15-GF-5,08; number of pins: 15; pin pitch: 5.08mm; Vertical; threaded flange || order number: 1777206 12A +phoenix_contact connector MSTBV_01x15_GF_5.08mm +0 +15 +15 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_15-GF-5,08_1x15_P5.08mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTBV_2,5/15-GF-5,08; number of pins: 15; pin pitch: 5.08mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1777206 12A +phoenix_contact connector MSTBV_01x15_GF_5.08mm_MH +0 +15 +15 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_15-GF_1x15_P5.00mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTBV_2,5/15-GF; number of pins: 15; pin pitch: 5.00mm; Vertical; threaded flange || order number: 1776015 12A +phoenix_contact connector MSTBV_01x15_GF_5.00mm +0 +15 +15 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_15-GF_1x15_P5.00mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTBV_2,5/15-GF; number of pins: 15; pin pitch: 5.00mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776015 12A +phoenix_contact connector MSTBV_01x15_GF_5.00mm_MH +0 +15 +15 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_16-GF-5,08_1x16_P5.08mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTBV_2,5/16-GF-5,08; number of pins: 16; pin pitch: 5.08mm; Vertical; threaded flange || order number: 1777219 12A +phoenix_contact connector MSTBV_01x16_GF_5.08mm +0 +16 +16 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_16-GF-5,08_1x16_P5.08mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTBV_2,5/16-GF-5,08; number of pins: 16; pin pitch: 5.08mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1777219 12A +phoenix_contact connector MSTBV_01x16_GF_5.08mm_MH +0 +16 +16 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_16-GF_1x16_P5.00mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTBV_2,5/16-GF; number of pins: 16; pin pitch: 5.00mm; Vertical; threaded flange || order number: 1776028 12A +phoenix_contact connector MSTBV_01x16_GF_5.00mm +0 +16 +16 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_16-GF_1x16_P5.00mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTBV_2,5/16-GF; number of pins: 16; pin pitch: 5.00mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776028 12A +phoenix_contact connector MSTBV_01x16_GF_5.00mm_MH +0 +16 +16 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_2-GF-5,08_1x02_P5.08mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTB_2,5/2-GF-5,08; number of pins: 02; pin pitch: 5.08mm; Angled; threaded flange || order number: 1776508 12A || order number: 1924088 16A (HC) +phoenix_contact connector MSTB_01x02_GF_5.08mm +0 +2 +2 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_2-GF-5,08_1x02_P5.08mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTB_2,5/2-GF-5,08; number of pins: 02; pin pitch: 5.08mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776508 12A || order number: 1924088 16A (HC) +phoenix_contact connector MSTB_01x02_GF_5.08mm_MH +0 +2 +2 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_2-GF_1x02_P5.00mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTB_2,5/2-GF; number of pins: 02; pin pitch: 5.00mm; Angled; threaded flange || order number: 1776692 12A || order number: 1923979 16A (HC) +phoenix_contact connector MSTB_01x02_GF_5.00mm +0 +2 +2 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_2-GF_1x02_P5.00mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTB_2,5/2-GF; number of pins: 02; pin pitch: 5.00mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776692 12A || order number: 1923979 16A (HC) +phoenix_contact connector MSTB_01x02_GF_5.00mm_MH +0 +2 +2 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_3-GF-5,08_1x03_P5.08mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTB_2,5/3-GF-5,08; number of pins: 03; pin pitch: 5.08mm; Angled; threaded flange || order number: 1776511 12A || order number: 1924091 16A (HC) +phoenix_contact connector MSTB_01x03_GF_5.08mm +0 +3 +3 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_3-GF-5,08_1x03_P5.08mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTB_2,5/3-GF-5,08; number of pins: 03; pin pitch: 5.08mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776511 12A || order number: 1924091 16A (HC) +phoenix_contact connector MSTB_01x03_GF_5.08mm_MH +0 +3 +3 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_3-GF_1x03_P5.00mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTB_2,5/3-GF; number of pins: 03; pin pitch: 5.00mm; Angled; threaded flange || order number: 1776702 12A || order number: 1923982 16A (HC) +phoenix_contact connector MSTB_01x03_GF_5.00mm +0 +3 +3 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_3-GF_1x03_P5.00mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTB_2,5/3-GF; number of pins: 03; pin pitch: 5.00mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776702 12A || order number: 1923982 16A (HC) +phoenix_contact connector MSTB_01x03_GF_5.00mm_MH +0 +3 +3 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_4-GF-5,08_1x04_P5.08mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTB_2,5/4-GF-5,08; number of pins: 04; pin pitch: 5.08mm; Angled; threaded flange || order number: 1776524 12A || order number: 1924101 16A (HC) +phoenix_contact connector MSTB_01x04_GF_5.08mm +0 +4 +4 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_4-GF-5,08_1x04_P5.08mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTB_2,5/4-GF-5,08; number of pins: 04; pin pitch: 5.08mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776524 12A || order number: 1924101 16A (HC) +phoenix_contact connector MSTB_01x04_GF_5.08mm_MH +0 +4 +4 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_4-GF_1x04_P5.00mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTB_2,5/4-GF; number of pins: 04; pin pitch: 5.00mm; Angled; threaded flange || order number: 1776715 12A || order number: 1923995 16A (HC) +phoenix_contact connector MSTB_01x04_GF_5.00mm +0 +4 +4 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_4-GF_1x04_P5.00mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTB_2,5/4-GF; number of pins: 04; pin pitch: 5.00mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776715 12A || order number: 1923995 16A (HC) +phoenix_contact connector MSTB_01x04_GF_5.00mm_MH +0 +4 +4 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_5-GF-5,08_1x05_P5.08mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTB_2,5/5-GF-5,08; number of pins: 05; pin pitch: 5.08mm; Angled; threaded flange || order number: 1776537 12A || order number: 1924114 16A (HC) +phoenix_contact connector MSTB_01x05_GF_5.08mm +0 +5 +5 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_5-GF-5,08_1x05_P5.08mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTB_2,5/5-GF-5,08; number of pins: 05; pin pitch: 5.08mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776537 12A || order number: 1924114 16A (HC) +phoenix_contact connector MSTB_01x05_GF_5.08mm_MH +0 +5 +5 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_5-GF_1x05_P5.00mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTB_2,5/5-GF; number of pins: 05; pin pitch: 5.00mm; Angled; threaded flange || order number: 1776728 12A || order number: 1924004 16A (HC) +phoenix_contact connector MSTB_01x05_GF_5.00mm +0 +5 +5 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_5-GF_1x05_P5.00mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTB_2,5/5-GF; number of pins: 05; pin pitch: 5.00mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776728 12A || order number: 1924004 16A (HC) +phoenix_contact connector MSTB_01x05_GF_5.00mm_MH +0 +5 +5 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_6-GF-5,08_1x06_P5.08mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTB_2,5/6-GF-5,08; number of pins: 06; pin pitch: 5.08mm; Angled; threaded flange || order number: 1776540 12A || order number: 1924127 16A (HC) +phoenix_contact connector MSTB_01x06_GF_5.08mm +0 +6 +6 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_6-GF-5,08_1x06_P5.08mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTB_2,5/6-GF-5,08; number of pins: 06; pin pitch: 5.08mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776540 12A || order number: 1924127 16A (HC) +phoenix_contact connector MSTB_01x06_GF_5.08mm_MH +0 +6 +6 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_6-GF_1x06_P5.00mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTB_2,5/6-GF; number of pins: 06; pin pitch: 5.00mm; Angled; threaded flange || order number: 1776731 12A || order number: 1924017 16A (HC) +phoenix_contact connector MSTB_01x06_GF_5.00mm +0 +6 +6 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_6-GF_1x06_P5.00mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTB_2,5/6-GF; number of pins: 06; pin pitch: 5.00mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776731 12A || order number: 1924017 16A (HC) +phoenix_contact connector MSTB_01x06_GF_5.00mm_MH +0 +6 +6 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_7-GF-5,08_1x07_P5.08mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTB_2,5/7-GF-5,08; number of pins: 07; pin pitch: 5.08mm; Angled; threaded flange || order number: 1776553 12A || order number: 1924130 16A (HC) +phoenix_contact connector MSTB_01x07_GF_5.08mm +0 +7 +7 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_7-GF-5,08_1x07_P5.08mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTB_2,5/7-GF-5,08; number of pins: 07; pin pitch: 5.08mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776553 12A || order number: 1924130 16A (HC) +phoenix_contact connector MSTB_01x07_GF_5.08mm_MH +0 +7 +7 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_7-GF_1x07_P5.00mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTB_2,5/7-GF; number of pins: 07; pin pitch: 5.00mm; Angled; threaded flange || order number: 1776744 12A || order number: 1924020 16A (HC) +phoenix_contact connector MSTB_01x07_GF_5.00mm +0 +7 +7 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_7-GF_1x07_P5.00mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTB_2,5/7-GF; number of pins: 07; pin pitch: 5.00mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776744 12A || order number: 1924020 16A (HC) +phoenix_contact connector MSTB_01x07_GF_5.00mm_MH +0 +7 +7 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_8-GF-5,08_1x08_P5.08mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTB_2,5/8-GF-5,08; number of pins: 08; pin pitch: 5.08mm; Angled; threaded flange || order number: 1776566 12A || order number: 1924143 16A (HC) +phoenix_contact connector MSTB_01x08_GF_5.08mm +0 +8 +8 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_8-GF-5,08_1x08_P5.08mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTB_2,5/8-GF-5,08; number of pins: 08; pin pitch: 5.08mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776566 12A || order number: 1924143 16A (HC) +phoenix_contact connector MSTB_01x08_GF_5.08mm_MH +0 +8 +8 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_8-GF_1x08_P5.00mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTB_2,5/8-GF; number of pins: 08; pin pitch: 5.00mm; Angled; threaded flange || order number: 1776757 12A || order number: 1924033 16A (HC) +phoenix_contact connector MSTB_01x08_GF_5.00mm +0 +8 +8 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_8-GF_1x08_P5.00mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTB_2,5/8-GF; number of pins: 08; pin pitch: 5.00mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776757 12A || order number: 1924033 16A (HC) +phoenix_contact connector MSTB_01x08_GF_5.00mm_MH +0 +8 +8 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_9-GF-5,08_1x09_P5.08mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTB_2,5/9-GF-5,08; number of pins: 09; pin pitch: 5.08mm; Angled; threaded flange || order number: 1776579 12A || order number: 1924156 16A (HC) +phoenix_contact connector MSTB_01x09_GF_5.08mm +0 +9 +9 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_9-GF-5,08_1x09_P5.08mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTB_2,5/9-GF-5,08; number of pins: 09; pin pitch: 5.08mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776579 12A || order number: 1924156 16A (HC) +phoenix_contact connector MSTB_01x09_GF_5.08mm_MH +0 +9 +9 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_9-GF_1x09_P5.00mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTB_2,5/9-GF; number of pins: 09; pin pitch: 5.00mm; Angled; threaded flange || order number: 1776760 12A || order number: 1924046 16A (HC) +phoenix_contact connector MSTB_01x09_GF_5.00mm +0 +9 +9 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_9-GF_1x09_P5.00mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTB_2,5/9-GF; number of pins: 09; pin pitch: 5.00mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776760 12A || order number: 1924046 16A (HC) +phoenix_contact connector MSTB_01x09_GF_5.00mm_MH +0 +9 +9 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_10-GF-5,08_1x10_P5.08mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTB_2,5/10-GF-5,08; number of pins: 10; pin pitch: 5.08mm; Angled; threaded flange || order number: 1776582 12A || order number: 1924169 16A (HC) +phoenix_contact connector MSTB_01x10_GF_5.08mm +0 +10 +10 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_10-GF-5,08_1x10_P5.08mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTB_2,5/10-GF-5,08; number of pins: 10; pin pitch: 5.08mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776582 12A || order number: 1924169 16A (HC) +phoenix_contact connector MSTB_01x10_GF_5.08mm_MH +0 +10 +10 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_10-GF_1x10_P5.00mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTB_2,5/10-GF; number of pins: 10; pin pitch: 5.00mm; Angled; threaded flange || order number: 1776773 12A || order number: 1924059 16A (HC) +phoenix_contact connector MSTB_01x10_GF_5.00mm +0 +10 +10 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_10-GF_1x10_P5.00mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTB_2,5/10-GF; number of pins: 10; pin pitch: 5.00mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776773 12A || order number: 1924059 16A (HC) +phoenix_contact connector MSTB_01x10_GF_5.00mm_MH +0 +10 +10 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_11-GF-5,08_1x11_P5.08mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTB_2,5/11-GF-5,08; number of pins: 11; pin pitch: 5.08mm; Angled; threaded flange || order number: 1776595 12A || order number: 1924172 16A (HC) +phoenix_contact connector MSTB_01x11_GF_5.08mm +0 +11 +11 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_11-GF-5,08_1x11_P5.08mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTB_2,5/11-GF-5,08; number of pins: 11; pin pitch: 5.08mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776595 12A || order number: 1924172 16A (HC) +phoenix_contact connector MSTB_01x11_GF_5.08mm_MH +0 +11 +11 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_11-GF_1x11_P5.00mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTB_2,5/11-GF; number of pins: 11; pin pitch: 5.00mm; Angled; threaded flange || order number: 1776786 12A || order number: 1924062 16A (HC) +phoenix_contact connector MSTB_01x11_GF_5.00mm +0 +11 +11 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_11-GF_1x11_P5.00mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTB_2,5/11-GF; number of pins: 11; pin pitch: 5.00mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776786 12A || order number: 1924062 16A (HC) +phoenix_contact connector MSTB_01x11_GF_5.00mm_MH +0 +11 +11 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_12-GF-5,08_1x12_P5.08mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTB_2,5/12-GF-5,08; number of pins: 12; pin pitch: 5.08mm; Angled; threaded flange || order number: 1776605 12A || order number: 1924185 16A (HC) +phoenix_contact connector MSTB_01x12_GF_5.08mm +0 +12 +12 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_12-GF-5,08_1x12_P5.08mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTB_2,5/12-GF-5,08; number of pins: 12; pin pitch: 5.08mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776605 12A || order number: 1924185 16A (HC) +phoenix_contact connector MSTB_01x12_GF_5.08mm_MH +0 +12 +12 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_12-GF_1x12_P5.00mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTB_2,5/12-GF; number of pins: 12; pin pitch: 5.00mm; Angled; threaded flange || order number: 1776799 12A || order number: 1924075 16A (HC) +phoenix_contact connector MSTB_01x12_GF_5.00mm +0 +12 +12 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_12-GF_1x12_P5.00mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTB_2,5/12-GF; number of pins: 12; pin pitch: 5.00mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776799 12A || order number: 1924075 16A (HC) +phoenix_contact connector MSTB_01x12_GF_5.00mm_MH +0 +12 +12 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_13-GF-5,08_1x13_P5.08mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTB_2,5/13-GF-5,08; number of pins: 13; pin pitch: 5.08mm; Angled; threaded flange || order number: 1776618 12A +phoenix_contact connector MSTB_01x13_GF_5.08mm +0 +13 +13 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_13-GF-5,08_1x13_P5.08mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTB_2,5/13-GF-5,08; number of pins: 13; pin pitch: 5.08mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776618 12A +phoenix_contact connector MSTB_01x13_GF_5.08mm_MH +0 +13 +13 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_13-GF_1x13_P5.00mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTB_2,5/13-GF; number of pins: 13; pin pitch: 5.00mm; Angled; threaded flange || order number: 1776809 12A +phoenix_contact connector MSTB_01x13_GF_5.00mm +0 +13 +13 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_13-GF_1x13_P5.00mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTB_2,5/13-GF; number of pins: 13; pin pitch: 5.00mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776809 12A +phoenix_contact connector MSTB_01x13_GF_5.00mm_MH +0 +13 +13 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_14-GF-5,08_1x14_P5.08mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTB_2,5/14-GF-5,08; number of pins: 14; pin pitch: 5.08mm; Angled; threaded flange || order number: 1776621 12A +phoenix_contact connector MSTB_01x14_GF_5.08mm +0 +14 +14 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_14-GF-5,08_1x14_P5.08mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTB_2,5/14-GF-5,08; number of pins: 14; pin pitch: 5.08mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776621 12A +phoenix_contact connector MSTB_01x14_GF_5.08mm_MH +0 +14 +14 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_14-GF_1x14_P5.00mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTB_2,5/14-GF; number of pins: 14; pin pitch: 5.00mm; Angled; threaded flange || order number: 1776812 12A +phoenix_contact connector MSTB_01x14_GF_5.00mm +0 +14 +14 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_14-GF_1x14_P5.00mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTB_2,5/14-GF; number of pins: 14; pin pitch: 5.00mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776812 12A +phoenix_contact connector MSTB_01x14_GF_5.00mm_MH +0 +14 +14 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_15-GF-5,08_1x15_P5.08mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTB_2,5/15-GF-5,08; number of pins: 15; pin pitch: 5.08mm; Angled; threaded flange || order number: 1776634 12A +phoenix_contact connector MSTB_01x15_GF_5.08mm +0 +15 +15 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_15-GF-5,08_1x15_P5.08mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTB_2,5/15-GF-5,08; number of pins: 15; pin pitch: 5.08mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776634 12A +phoenix_contact connector MSTB_01x15_GF_5.08mm_MH +0 +15 +15 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_15-GF_1x15_P5.00mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTB_2,5/15-GF; number of pins: 15; pin pitch: 5.00mm; Angled; threaded flange || order number: 1776825 12A +phoenix_contact connector MSTB_01x15_GF_5.00mm +0 +15 +15 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_15-GF_1x15_P5.00mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTB_2,5/15-GF; number of pins: 15; pin pitch: 5.00mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776825 12A +phoenix_contact connector MSTB_01x15_GF_5.00mm_MH +0 +15 +15 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_16-GF-5,08_1x16_P5.08mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTB_2,5/16-GF-5,08; number of pins: 16; pin pitch: 5.08mm; Angled; threaded flange || order number: 1776647 12A +phoenix_contact connector MSTB_01x16_GF_5.08mm +0 +16 +16 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_16-GF-5,08_1x16_P5.08mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTB_2,5/16-GF-5,08; number of pins: 16; pin pitch: 5.08mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776647 12A +phoenix_contact connector MSTB_01x16_GF_5.08mm_MH +0 +16 +16 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_16-GF_1x16_P5.00mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTB_2,5/16-GF; number of pins: 16; pin pitch: 5.00mm; Angled; threaded flange || order number: 1776838 12A +phoenix_contact connector MSTB_01x16_GF_5.00mm +0 +16 +16 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_16-GF_1x16_P5.00mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTB_2,5/16-GF; number of pins: 16; pin pitch: 5.00mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776838 12A +phoenix_contact connector MSTB_01x16_GF_5.00mm_MH +0 +16 +16 +Connector_Phoenix_SPT +PhoenixContact_SPT_1.5_2-H-3.5_1x02_P3.5mm_Horizontal +Connector Phoenix Contact, SPT 1.5/2-H-3.5 Terminal Block, 1990737 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1990737), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 1.5/2-H-3.5 1990737 +0 +4 +2 +Connector_Phoenix_SPT +PhoenixContact_SPT_1.5_3-H-3.5_1x03_P3.5mm_Horizontal +Connector Phoenix Contact, SPT 1.5/3-H-3.5 Terminal Block, 1990740 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1990740), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 1.5/3-H-3.5 1990740 +0 +6 +3 +Connector_Phoenix_SPT +PhoenixContact_SPT_1.5_4-H-3.5_1x04_P3.5mm_Horizontal +Connector Phoenix Contact, SPT 1.5/4-H-3.5 Terminal Block, 1990753 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1990753), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 1.5/4-H-3.5 1990753 +0 +8 +4 +Connector_Phoenix_SPT +PhoenixContact_SPT_1.5_5-H-3.5_1x05_P3.5mm_Horizontal +Connector Phoenix Contact, SPT 1.5/5-H-3.5 Terminal Block, 1990766 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1990766), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 1.5/5-H-3.5 1990766 +0 +10 +5 +Connector_Phoenix_SPT +PhoenixContact_SPT_1.5_6-H-3.5_1x06_P3.5mm_Horizontal +Connector Phoenix Contact, SPT 1.5/6-H-3.5 Terminal Block, 1990779 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1990779), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 1.5/6-H-3.5 1990779 +0 +12 +6 +Connector_Phoenix_SPT +PhoenixContact_SPT_1.5_7-H-3.5_1x07_P3.5mm_Horizontal +Connector Phoenix Contact, SPT 1.5/7-H-3.5 Terminal Block, 1990782 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1990782), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 1.5/7-H-3.5 1990782 +0 +14 +7 +Connector_Phoenix_SPT +PhoenixContact_SPT_1.5_8-H-3.5_1x08_P3.5mm_Horizontal +Connector Phoenix Contact, SPT 1.5/8-H-3.5 Terminal Block, 1990795 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1990795), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 1.5/8-H-3.5 1990795 +0 +16 +8 +Connector_Phoenix_SPT +PhoenixContact_SPT_1.5_9-H-3.5_1x09_P3.5mm_Horizontal +Connector Phoenix Contact, SPT 1.5/9-H-3.5 Terminal Block, 1990805 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1990805), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 1.5/9-H-3.5 1990805 +0 +18 +9 +Connector_Phoenix_SPT +PhoenixContact_SPT_1.5_10-H-3.5_1x10_P3.5mm_Horizontal +Connector Phoenix Contact, SPT 1.5/10-H-3.5 Terminal Block, 1990818 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1990818), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 1.5/10-H-3.5 1990818 +0 +20 +10 +Connector_Phoenix_SPT +PhoenixContact_SPT_1.5_11-H-3.5_1x11_P3.5mm_Horizontal +Connector Phoenix Contact, SPT 1.5/11-H-3.5 Terminal Block, 1990821 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1990821), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 1.5/11-H-3.5 1990821 +0 +22 +11 +Connector_Phoenix_SPT +PhoenixContact_SPT_1.5_12-H-3.5_1x12_P3.5mm_Horizontal +Connector Phoenix Contact, SPT 1.5/12-H-3.5 Terminal Block, 1990834 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1990834), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 1.5/12-H-3.5 1990834 +0 +24 +12 +Connector_Phoenix_SPT +PhoenixContact_SPT_2.5_1-H-5.0_1x01_P5.0mm_Horizontal +Connector Phoenix Contact, SPT 2.5/1-H-5.0 Terminal Block, 1751066 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1751066), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 2.5/1-H-5.0 1751066 +0 +2 +1 +Connector_Phoenix_SPT +PhoenixContact_SPT_2.5_2-H-5.0-EX_1x02_P5.0mm_Horizontal +Connector Phoenix Contact, SPT 2.5/2-H-5.0-EX Terminal Block, 1732386 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1732386), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 2.5/2-H-5.0-EX 1732386 +0 +4 +2 +Connector_Phoenix_SPT +PhoenixContact_SPT_2.5_2-H-5.0_1x02_P5.0mm_Horizontal +Connector Phoenix Contact, SPT 2.5/2-H-5.0 Terminal Block, 1990973 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1990973), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 2.5/2-H-5.0 1990973 +0 +4 +2 +Connector_Phoenix_SPT +PhoenixContact_SPT_2.5_2-V-5.0-EX_1x02_P5.0mm_Vertical +Connector Phoenix Contact, SPT 2.5/2-V-5.0-EX Terminal Block, 1732496 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1732496), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 2.5/2-V-5.0-EX 1732496 +0 +4 +2 +Connector_Phoenix_SPT +PhoenixContact_SPT_2.5_3-H-5.0-EX_1x03_P5.0mm_Horizontal +Connector Phoenix Contact, SPT 2.5/3-H-5.0-EX Terminal Block, 1732399 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1732399), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 2.5/3-H-5.0-EX 1732399 +0 +6 +3 +Connector_Phoenix_SPT +PhoenixContact_SPT_2.5_3-H-5.0_1x03_P5.0mm_Horizontal +Connector Phoenix Contact, SPT 2.5/3-H-5.0 Terminal Block, 1990986 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1990986), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 2.5/3-H-5.0 1990986 +0 +6 +3 +Connector_Phoenix_SPT +PhoenixContact_SPT_2.5_3-V-5.0-EX_1x03_P5.0mm_Vertical +Connector Phoenix Contact, SPT 2.5/3-V-5.0-EX Terminal Block, 1732506 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1732506), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 2.5/3-V-5.0-EX 1732506 +0 +6 +3 +Connector_Phoenix_SPT +PhoenixContact_SPT_2.5_4-H-5.0-EX_1x04_P5.0mm_Horizontal +Connector Phoenix Contact, SPT 2.5/4-H-5.0-EX Terminal Block, 1732409 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1732409), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 2.5/4-H-5.0-EX 1732409 +0 +8 +4 +Connector_Phoenix_SPT +PhoenixContact_SPT_2.5_4-H-5.0_1x04_P5.0mm_Horizontal +Connector Phoenix Contact, SPT 2.5/4-H-5.0 Terminal Block, 1990999 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1990999), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 2.5/4-H-5.0 1990999 +0 +8 +4 +Connector_Phoenix_SPT +PhoenixContact_SPT_2.5_4-V-5.0-EX_1x04_P5.0mm_Vertical +Connector Phoenix Contact, SPT 2.5/4-V-5.0-EX Terminal Block, 1732519 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1732519), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 2.5/4-V-5.0-EX 1732519 +0 +8 +4 +Connector_Phoenix_SPT +PhoenixContact_SPT_2.5_5-H-5.0-EX_1x05_P5.0mm_Horizontal +Connector Phoenix Contact, SPT 2.5/5-H-5.0-EX Terminal Block, 1732412 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1732412), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 2.5/5-H-5.0-EX 1732412 +0 +10 +5 +Connector_Phoenix_SPT +PhoenixContact_SPT_2.5_5-H-5.0_1x05_P5.0mm_Horizontal +Connector Phoenix Contact, SPT 2.5/5-H-5.0 Terminal Block, 1991008 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1991008), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 2.5/5-H-5.0 1991008 +0 +10 +5 +Connector_Phoenix_SPT +PhoenixContact_SPT_2.5_5-V-5.0-EX_1x05_P5.0mm_Vertical +Connector Phoenix Contact, SPT 2.5/5-V-5.0-EX Terminal Block, 1732522 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1732522), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 2.5/5-V-5.0-EX 1732522 +0 +10 +5 +Connector_Phoenix_SPT +PhoenixContact_SPT_2.5_6-H-5.0-EX_1x06_P5.0mm_Horizontal +Connector Phoenix Contact, SPT 2.5/6-H-5.0-EX Terminal Block, 1732425 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1732425), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 2.5/6-H-5.0-EX 1732425 +0 +12 +6 +Connector_Phoenix_SPT +PhoenixContact_SPT_2.5_6-H-5.0_1x06_P5.0mm_Horizontal +Connector Phoenix Contact, SPT 2.5/6-H-5.0 Terminal Block, 1991011 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1991011), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 2.5/6-H-5.0 1991011 +0 +12 +6 +Connector_Phoenix_SPT +PhoenixContact_SPT_2.5_6-V-5.0-EX_1x06_P5.0mm_Vertical +Connector Phoenix Contact, SPT 2.5/6-V-5.0-EX Terminal Block, 1732535 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1732535), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 2.5/6-V-5.0-EX 1732535 +0 +12 +6 +Connector_Phoenix_SPT +PhoenixContact_SPT_2.5_7-H-5.0-EX_1x07_P5.0mm_Horizontal +Connector Phoenix Contact, SPT 2.5/7-H-5.0-EX Terminal Block, 1732438 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1732438), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 2.5/7-H-5.0-EX 1732438 +0 +14 +7 +Connector_Phoenix_SPT +PhoenixContact_SPT_2.5_7-H-5.0_1x07_P5.0mm_Horizontal +Connector Phoenix Contact, SPT 2.5/7-H-5.0 Terminal Block, 1991024 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1991024), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 2.5/7-H-5.0 1991024 +0 +14 +7 +Connector_Phoenix_SPT +PhoenixContact_SPT_2.5_7-V-5.0-EX_1x07_P5.0mm_Vertical +Connector Phoenix Contact, SPT 2.5/7-V-5.0-EX Terminal Block, 1732548 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1732548), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 2.5/7-V-5.0-EX 1732548 +0 +14 +7 +Connector_Phoenix_SPT +PhoenixContact_SPT_2.5_8-H-5.0-EX_1x08_P5.0mm_Horizontal +Connector Phoenix Contact, SPT 2.5/8-H-5.0-EX Terminal Block, 1732441 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1732441), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 2.5/8-H-5.0-EX 1732441 +0 +16 +8 +Connector_Phoenix_SPT +PhoenixContact_SPT_2.5_8-H-5.0_1x08_P5.0mm_Horizontal +Connector Phoenix Contact, SPT 2.5/8-H-5.0 Terminal Block, 1991037 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1991037), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 2.5/8-H-5.0 1991037 +0 +16 +8 +Connector_Phoenix_SPT +PhoenixContact_SPT_2.5_8-V-5.0-EX_1x08_P5.0mm_Vertical +Connector Phoenix Contact, SPT 2.5/8-V-5.0-EX Terminal Block, 1732551 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1732551), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 2.5/8-V-5.0-EX 1732551 +0 +16 +8 +Connector_Phoenix_SPT +PhoenixContact_SPT_2.5_9-H-5.0-EX_1x09_P5.0mm_Horizontal +Connector Phoenix Contact, SPT 2.5/9-H-5.0-EX Terminal Block, 1732454 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1732454), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 2.5/9-H-5.0-EX 1732454 +0 +18 +9 +Connector_Phoenix_SPT +PhoenixContact_SPT_2.5_9-H-5.0_1x09_P5.0mm_Horizontal +Connector Phoenix Contact, SPT 2.5/9-H-5.0 Terminal Block, 1991040 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1991040), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 2.5/9-H-5.0 1991040 +0 +18 +9 +Connector_Phoenix_SPT +PhoenixContact_SPT_2.5_9-V-5.0-EX_1x09_P5.0mm_Vertical +Connector Phoenix Contact, SPT 2.5/9-V-5.0-EX Terminal Block, 1732564 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1732564), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 2.5/9-V-5.0-EX 1732564 +0 +18 +9 +Connector_Phoenix_SPT +PhoenixContact_SPT_2.5_10-H-5.0-EX_1x10_P5.0mm_Horizontal +Connector Phoenix Contact, SPT 2.5/10-H-5.0-EX Terminal Block, 1732467 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1732467), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 2.5/10-H-5.0-EX 1732467 +0 +20 +10 +Connector_Phoenix_SPT +PhoenixContact_SPT_2.5_10-H-5.0_1x10_P5.0mm_Horizontal +Connector Phoenix Contact, SPT 2.5/10-H-5.0 Terminal Block, 1991053 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1991053), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 2.5/10-H-5.0 1991053 +0 +20 +10 +Connector_Phoenix_SPT +PhoenixContact_SPT_2.5_10-V-5.0-EX_1x10_P5.0mm_Vertical +Connector Phoenix Contact, SPT 2.5/10-V-5.0-EX Terminal Block, 1732577 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1732577), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 2.5/10-V-5.0-EX 1732577 +0 +20 +10 +Connector_Phoenix_SPT +PhoenixContact_SPT_2.5_11-H-5.0-EX_1x11_P5.0mm_Horizontal +Connector Phoenix Contact, SPT 2.5/11-H-5.0-EX Terminal Block, 1732470 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1732470), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 2.5/11-H-5.0-EX 1732470 +0 +22 +11 +Connector_Phoenix_SPT +PhoenixContact_SPT_2.5_11-H-5.0_1x11_P5.0mm_Horizontal +Connector Phoenix Contact, SPT 2.5/11-H-5.0 Terminal Block, 1991066 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1991066), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 2.5/11-H-5.0 1991066 +0 +22 +11 +Connector_Phoenix_SPT +PhoenixContact_SPT_2.5_11-V-5.0-EX_1x11_P5.0mm_Vertical +Connector Phoenix Contact, SPT 2.5/11-V-5.0-EX Terminal Block, 1732580 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1732580), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 2.5/11-V-5.0-EX 1732580 +0 +22 +11 +Connector_Phoenix_SPT +PhoenixContact_SPT_2.5_12-H-5.0-EX_1x12_P5.0mm_Horizontal +Connector Phoenix Contact, SPT 2.5/12-H-5.0-EX Terminal Block, 1732483 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1732483), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 2.5/12-H-5.0-EX 1732483 +0 +24 +12 +Connector_Phoenix_SPT +PhoenixContact_SPT_2.5_12-H-5.0_1x12_P5.0mm_Horizontal +Connector Phoenix Contact, SPT 2.5/12-H-5.0 Terminal Block, 1991079 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1991079), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 2.5/12-H-5.0 1991079 +0 +24 +12 +Connector_Phoenix_SPT +PhoenixContact_SPT_2.5_12-V-5.0-EX_1x12_P5.0mm_Vertical +Connector Phoenix Contact, SPT 2.5/12-V-5.0-EX Terminal Block, 1732593 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1732593), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 2.5/12-V-5.0-EX 1732593 +0 +24 +12 +Connector_Phoenix_SPT +PhoenixContact_SPT_5_1-H-7.5_1x01_P7.5mm_Horizontal +Connector Phoenix Contact, SPT 5/1-H-7.5 Terminal Block, 1719189 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1719189), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 5/1-H-7.5 1719189 +0 +2 +1 +Connector_Phoenix_SPT +PhoenixContact_SPT_5_1-V-7.5_1x01_P7.5mm_Vertical +Connector Phoenix Contact, SPT 5/1-V-7.5 Terminal Block, 1719309 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1719309), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 5/1-V-7.5 1719309 +0 +2 +1 +Connector_Phoenix_SPT +PhoenixContact_SPT_5_2-H-7.5-ZB_1x02_P7.5mm_Horizontal +Connector Phoenix Contact, SPT 5/2-H-7.5-ZB Terminal Block, 1719192 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1719192), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 5/2-H-7.5-ZB 1719192 +0 +2 +2 +Connector_Phoenix_SPT +PhoenixContact_SPT_5_2-V-7.5_1x02_P7.5mm_Vertical +Connector Phoenix Contact, SPT 5/2-V-7.5 Terminal Block, 1738144 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1738144), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 5/2-V-7.5 1738144 +0 +4 +2 +Connector_Phoenix_SPT +PhoenixContact_SPT_5_3-H-7.5-ZB_1x03_P7.5mm_Horizontal +Connector Phoenix Contact, SPT 5/3-H-7.5-ZB Terminal Block, 1719202 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1719202), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 5/3-H-7.5-ZB 1719202 +0 +3 +3 +Connector_Phoenix_SPT +PhoenixContact_SPT_5_3-H-7.5_1x03_P7.5mm_Horizontal +Connector Phoenix Contact, SPT 5/3-H-7.5 Terminal Block, 1701361 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1701361), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 5/3-H-7.5 1701361 +0 +6 +3 +Connector_Phoenix_SPT +PhoenixContact_SPT_5_3-V-7.5-ZB_1x03_P7.5mm_Vertical +Connector Phoenix Contact, SPT 5/3-V-7.5-ZB Terminal Block, 1719325 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1719325), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 5/3-V-7.5-ZB 1719325 +0 +3 +3 +Connector_Phoenix_SPT +PhoenixContact_SPT_5_4-H-7.5-ZB_1x04_P7.5mm_Horizontal +Connector Phoenix Contact, SPT 5/4-H-7.5-ZB Terminal Block, 1719215 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1719215), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 5/4-H-7.5-ZB 1719215 +0 +4 +4 +Connector_Phoenix_SPT +PhoenixContact_SPT_5_5-H-7.5-ZB_1x05_P7.5mm_Horizontal +Connector Phoenix Contact, SPT 5/5-H-7.5-ZB Terminal Block, 1719228 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1719228), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 5/5-H-7.5-ZB 1719228 +0 +5 +5 +Connector_Phoenix_SPT +PhoenixContact_SPT_5_5-V-7.5-ZB_1x05_P7.5mm_Vertical +Connector Phoenix Contact, SPT 5/5-V-7.5-ZB Terminal Block, 1719341 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1719341), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 5/5-V-7.5-ZB 1719341 +0 +5 +5 +Connector_Phoenix_SPT +PhoenixContact_SPT_5_6-H-7.5-ZB_1x06_P7.5mm_Horizontal +Connector Phoenix Contact, SPT 5/6-H-7.5-ZB Terminal Block, 1719231 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1719231), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 5/6-H-7.5-ZB 1719231 +0 +6 +6 +Connector_Phoenix_SPT +PhoenixContact_SPT_5_6-V-7.5-ZB_1x06_P7.5mm_Vertical +Connector Phoenix Contact, SPT 5/6-V-7.5-ZB Terminal Block, 1719354 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1719354), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 5/6-V-7.5-ZB 1719354 +0 +6 +6 +Connector_Phoenix_SPT +PhoenixContact_SPT_5_7-H-7.5-ZB_1x07_P7.5mm_Horizontal +Connector Phoenix Contact, SPT 5/7-H-7.5-ZB Terminal Block, 1719244 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1719244), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 5/7-H-7.5-ZB 1719244 +0 +7 +7 +Connector_Phoenix_SPT +PhoenixContact_SPT_5_7-V-7.5-ZB_1x07_P7.5mm_Vertical +Connector Phoenix Contact, SPT 5/7-V-7.5-ZB Terminal Block, 1719367 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1719367), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 5/7-V-7.5-ZB 1719367 +0 +7 +7 +Connector_Phoenix_SPT +PhoenixContact_SPT_5_8-H-7.5-ZB_1x08_P7.5mm_Horizontal +Connector Phoenix Contact, SPT 5/8-H-7.5-ZB Terminal Block, 1719257 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1719257), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 5/8-H-7.5-ZB 1719257 +0 +8 +8 +Connector_Phoenix_SPT +PhoenixContact_SPT_5_8-V-7.5-ZB_1x08_P7.5mm_Vertical +Connector Phoenix Contact, SPT 5/8-V-7.5-ZB Terminal Block, 1719370 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1719370), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 5/8-V-7.5-ZB 1719370 +0 +8 +8 +Connector_Phoenix_SPT +PhoenixContact_SPT_5_9-H-7.5-ZB_1x09_P7.5mm_Horizontal +Connector Phoenix Contact, SPT 5/9-H-7.5-ZB Terminal Block, 1719260 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1719260), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 5/9-H-7.5-ZB 1719260 +0 +9 +9 +Connector_Phoenix_SPT +PhoenixContact_SPT_5_9-V-7.5-ZB_1x09_P7.5mm_Vertical +Connector Phoenix Contact, SPT 5/9-V-7.5-ZB Terminal Block, 1719383 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1719383), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 5/9-V-7.5-ZB 1719383 +0 +9 +9 +Connector_Phoenix_SPT +PhoenixContact_SPT_5_10-H-7.5-ZB_1x10_P7.5mm_Horizontal +Connector Phoenix Contact, SPT 5/10-H-7.5-ZB Terminal Block, 1719273 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1719273), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 5/10-H-7.5-ZB 1719273 +0 +10 +10 +Connector_Phoenix_SPT +PhoenixContact_SPT_5_10-V-7.5-ZB_1x10_P7.5mm_Vertical +Connector Phoenix Contact, SPT 5/10-V-7.5-ZB Terminal Block, 1719396 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1719396), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 5/10-V-7.5-ZB 1719396 +0 +10 +10 +Connector_Phoenix_SPT +PhoenixContact_SPT_5_11-H-7.5-ZB_1x11_P7.5mm_Horizontal +Connector Phoenix Contact, SPT 5/11-H-7.5-ZB Terminal Block, 1719286 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1719286), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 5/11-H-7.5-ZB 1719286 +0 +11 +11 +Connector_Phoenix_SPT +PhoenixContact_SPT_5_11-V-7.5-ZB_1x11_P7.5mm_Vertical +Connector Phoenix Contact, SPT 5/11-V-7.5-ZB Terminal Block, 1719406 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1719406), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 5/11-V-7.5-ZB 1719406 +0 +11 +11 +Connector_Phoenix_SPT +PhoenixContact_SPT_5_12-H-7.5-ZB_1x12_P7.5mm_Horizontal +Connector Phoenix Contact, SPT 5/12-H-7.5-ZB Terminal Block, 1719299 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1719299), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 5/12-H-7.5-ZB 1719299 +0 +12 +12 +Connector_Phoenix_SPT +PhoenixContact_SPT_5_12-V-7.5-ZB_1x12_P7.5mm_Vertical +Connector Phoenix Contact, SPT 5/12-V-7.5-ZB Terminal Block, 1719419 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1719419), generated with kicad-footprint-generator +Connector Phoenix Contact SPT 5/12-V-7.5-ZB 1719419 +0 +12 +12 +Connector_Pin +Pin_D0.7mm_L6.5mm_W1.8mm_FlatFork +solder Pin_ with flat fork, hole diameter 0.7mm, length 6.5mm, width 1.8mm +solder Pin_ with flat fork +0 +1 +1 +Connector_Pin +Pin_D0.9mm_L10.0mm_W2.4mm_FlatFork +solder Pin_ with flat fork, hole diameter 0.9mm, length 10.0mm, width 2.4mm +solder Pin_ with flat fork +0 +1 +1 +Connector_Pin +Pin_D1.0mm_L10.0mm +solder Pin_ diameter 1.0mm, hole diameter 1.0mm (press fit), length 10.0mm +solder Pin_ press fit +0 +1 +1 +Connector_Pin +Pin_D1.0mm_L10.0mm_LooseFit +solder Pin_ diameter 1.0mm, hole diameter 1.2mm (loose fit), length 10.0mm +solder Pin_ loose fit +0 +1 +1 +Connector_Pin +Pin_D1.1mm_L8.5mm_W2.5mm_FlatFork +solder Pin_ with flat fork, hole diameter 1.1mm, length 8.5mm, width 2.5mm +solder Pin_ with flat fork +0 +1 +1 +Connector_Pin +Pin_D1.1mm_L10.2mm_W3.5mm_Flat +solder Pin_ with flat with hole, hole diameter 1.1mm, length 10.2mm, width 3.5mm +solder Pin_ with flat fork +0 +1 +1 +Connector_Pin +Pin_D1.2mm_L10.2mm_W2.9mm_FlatFork +solder Pin_ with flat with fork, hole diameter 1.2mm, length 11.3mm, width 3.0mm +solder Pin_ with flat fork +0 +1 +1 +Connector_Pin +Pin_D1.2mm_L11.3mm_W3.0mm_Flat +solder Pin_ with flat with hole, hole diameter 1.2mm, length 11.3mm, width 3.0mm +solder Pin_ with flat fork +0 +1 +1 +Connector_Pin +Pin_D1.3mm_L10.0mm_W3.5mm_Flat +solder Pin_ with flat with hole, hole diameter 1.3mm, length 10.0mm, width 3.5mm, e.g. Ettinger 13.13.865, https://katalog.ettinger.de/#p=434 +solder Pin_ with flat fork +0 +1 +1 +Connector_Pin +Pin_D1.3mm_L11.0mm +solder Pin_ diameter 1.3mm, hole diameter 1.3mm, length 11.0mm +solder Pin_ pressfit +0 +1 +1 +Connector_Pin +Pin_D1.3mm_L11.0mm_LooseFit +solder Pin_ diameter 1.3mm, hole diameter 1.5mm (loose fit), length 11.0mm +solder Pin_ loose fit +0 +1 +1 +Connector_Pin +Pin_D1.3mm_L11.3mm_W2.8mm_Flat +solder Pin_ with flat with hole, hole diameter 1.3mm, length 11.3mm, width 2.8mm +solder Pin_ with flat fork +0 +1 +1 +Connector_Pin +Pin_D1.4mm_L8.5mm_W2.8mm_FlatFork +solder Pin_ with flat with fork, hole diameter 1.4mm, length 8.5mm, width 2.8mm, e.g. Ettinger 13.13.890, https://katalog.ettinger.de/#p=434 +solder Pin_ with flat fork +0 +1 +1 +Connector_PinHeader_1.00mm +PinHeader_1x01_P1.00mm_Horizontal +Through hole angled pin header, 1x01, 1.00mm pitch, 2.0mm pin length, single row +Through hole angled pin header THT 1x01 1.00mm single row +0 +1 +1 +Connector_PinHeader_1.00mm +PinHeader_1x01_P1.00mm_Vertical +Through hole straight pin header, 1x01, 1.00mm pitch, single row +Through hole pin header THT 1x01 1.00mm single row +0 +1 +1 +Connector_PinHeader_1.00mm +PinHeader_1x02_P1.00mm_Horizontal +Through hole angled pin header, 1x02, 1.00mm pitch, 2.0mm pin length, single row +Through hole angled pin header THT 1x02 1.00mm single row +0 +2 +2 +Connector_PinHeader_1.00mm +PinHeader_1x02_P1.00mm_Vertical +Through hole straight pin header, 1x02, 1.00mm pitch, single row +Through hole pin header THT 1x02 1.00mm single row +0 +2 +2 +Connector_PinHeader_1.00mm +PinHeader_1x02_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x02, 1.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x02 1.00mm single row style1 pin1 left +0 +2 +2 +Connector_PinHeader_1.00mm +PinHeader_1x02_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x02, 1.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x02 1.00mm single row style2 pin1 right +0 +2 +2 +Connector_PinHeader_1.00mm +PinHeader_1x03_P1.00mm_Horizontal +Through hole angled pin header, 1x03, 1.00mm pitch, 2.0mm pin length, single row +Through hole angled pin header THT 1x03 1.00mm single row +0 +3 +3 +Connector_PinHeader_1.00mm +PinHeader_1x03_P1.00mm_Vertical +Through hole straight pin header, 1x03, 1.00mm pitch, single row +Through hole pin header THT 1x03 1.00mm single row +0 +3 +3 +Connector_PinHeader_1.00mm +PinHeader_1x03_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x03, 1.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x03 1.00mm single row style1 pin1 left +0 +3 +3 +Connector_PinHeader_1.00mm +PinHeader_1x03_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x03, 1.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x03 1.00mm single row style2 pin1 right +0 +3 +3 +Connector_PinHeader_1.00mm +PinHeader_1x04_P1.00mm_Horizontal +Through hole angled pin header, 1x04, 1.00mm pitch, 2.0mm pin length, single row +Through hole angled pin header THT 1x04 1.00mm single row +0 +4 +4 +Connector_PinHeader_1.00mm +PinHeader_1x04_P1.00mm_Vertical +Through hole straight pin header, 1x04, 1.00mm pitch, single row +Through hole pin header THT 1x04 1.00mm single row +0 +4 +4 +Connector_PinHeader_1.00mm +PinHeader_1x04_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x04, 1.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x04 1.00mm single row style1 pin1 left +0 +4 +4 +Connector_PinHeader_1.00mm +PinHeader_1x04_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x04, 1.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x04 1.00mm single row style2 pin1 right +0 +4 +4 +Connector_PinHeader_1.00mm +PinHeader_1x05_P1.00mm_Horizontal +Through hole angled pin header, 1x05, 1.00mm pitch, 2.0mm pin length, single row +Through hole angled pin header THT 1x05 1.00mm single row +0 +5 +5 +Connector_PinHeader_1.00mm +PinHeader_1x05_P1.00mm_Vertical +Through hole straight pin header, 1x05, 1.00mm pitch, single row +Through hole pin header THT 1x05 1.00mm single row +0 +5 +5 +Connector_PinHeader_1.00mm +PinHeader_1x05_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x05, 1.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x05 1.00mm single row style1 pin1 left +0 +5 +5 +Connector_PinHeader_1.00mm +PinHeader_1x05_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x05, 1.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x05 1.00mm single row style2 pin1 right +0 +5 +5 +Connector_PinHeader_1.00mm +PinHeader_1x06_P1.00mm_Horizontal +Through hole angled pin header, 1x06, 1.00mm pitch, 2.0mm pin length, single row +Through hole angled pin header THT 1x06 1.00mm single row +0 +6 +6 +Connector_PinHeader_1.00mm +PinHeader_1x06_P1.00mm_Vertical +Through hole straight pin header, 1x06, 1.00mm pitch, single row +Through hole pin header THT 1x06 1.00mm single row +0 +6 +6 +Connector_PinHeader_1.00mm +PinHeader_1x06_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x06, 1.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x06 1.00mm single row style1 pin1 left +0 +6 +6 +Connector_PinHeader_1.00mm +PinHeader_1x06_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x06, 1.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x06 1.00mm single row style2 pin1 right +0 +6 +6 +Connector_PinHeader_1.00mm +PinHeader_1x07_P1.00mm_Horizontal +Through hole angled pin header, 1x07, 1.00mm pitch, 2.0mm pin length, single row +Through hole angled pin header THT 1x07 1.00mm single row +0 +7 +7 +Connector_PinHeader_1.00mm +PinHeader_1x07_P1.00mm_Vertical +Through hole straight pin header, 1x07, 1.00mm pitch, single row +Through hole pin header THT 1x07 1.00mm single row +0 +7 +7 +Connector_PinHeader_1.00mm +PinHeader_1x07_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x07, 1.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x07 1.00mm single row style1 pin1 left +0 +7 +7 +Connector_PinHeader_1.00mm +PinHeader_1x07_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x07, 1.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x07 1.00mm single row style2 pin1 right +0 +7 +7 +Connector_PinHeader_1.00mm +PinHeader_1x08_P1.00mm_Horizontal +Through hole angled pin header, 1x08, 1.00mm pitch, 2.0mm pin length, single row +Through hole angled pin header THT 1x08 1.00mm single row +0 +8 +8 +Connector_PinHeader_1.00mm +PinHeader_1x08_P1.00mm_Vertical +Through hole straight pin header, 1x08, 1.00mm pitch, single row +Through hole pin header THT 1x08 1.00mm single row +0 +8 +8 +Connector_PinHeader_1.00mm +PinHeader_1x08_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x08, 1.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x08 1.00mm single row style1 pin1 left +0 +8 +8 +Connector_PinHeader_1.00mm +PinHeader_1x08_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x08, 1.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x08 1.00mm single row style2 pin1 right +0 +8 +8 +Connector_PinHeader_1.00mm +PinHeader_1x09_P1.00mm_Horizontal +Through hole angled pin header, 1x09, 1.00mm pitch, 2.0mm pin length, single row +Through hole angled pin header THT 1x09 1.00mm single row +0 +9 +9 +Connector_PinHeader_1.00mm +PinHeader_1x09_P1.00mm_Vertical +Through hole straight pin header, 1x09, 1.00mm pitch, single row +Through hole pin header THT 1x09 1.00mm single row +0 +9 +9 +Connector_PinHeader_1.00mm +PinHeader_1x09_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x09, 1.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x09 1.00mm single row style1 pin1 left +0 +9 +9 +Connector_PinHeader_1.00mm +PinHeader_1x09_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x09, 1.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x09 1.00mm single row style2 pin1 right +0 +9 +9 +Connector_PinHeader_1.00mm +PinHeader_1x10_P1.00mm_Horizontal +Through hole angled pin header, 1x10, 1.00mm pitch, 2.0mm pin length, single row +Through hole angled pin header THT 1x10 1.00mm single row +0 +10 +10 +Connector_PinHeader_1.00mm +PinHeader_1x10_P1.00mm_Vertical +Through hole straight pin header, 1x10, 1.00mm pitch, single row +Through hole pin header THT 1x10 1.00mm single row +0 +10 +10 +Connector_PinHeader_1.00mm +PinHeader_1x10_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x10, 1.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x10 1.00mm single row style1 pin1 left +0 +10 +10 +Connector_PinHeader_1.00mm +PinHeader_1x10_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x10, 1.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x10 1.00mm single row style2 pin1 right +0 +10 +10 +Connector_PinHeader_1.00mm +PinHeader_1x11_P1.00mm_Horizontal +Through hole angled pin header, 1x11, 1.00mm pitch, 2.0mm pin length, single row +Through hole angled pin header THT 1x11 1.00mm single row +0 +11 +11 +Connector_PinHeader_1.00mm +PinHeader_1x11_P1.00mm_Vertical +Through hole straight pin header, 1x11, 1.00mm pitch, single row +Through hole pin header THT 1x11 1.00mm single row +0 +11 +11 +Connector_PinHeader_1.00mm +PinHeader_1x11_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x11, 1.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x11 1.00mm single row style1 pin1 left +0 +11 +11 +Connector_PinHeader_1.00mm +PinHeader_1x11_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x11, 1.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x11 1.00mm single row style2 pin1 right +0 +11 +11 +Connector_PinHeader_1.00mm +PinHeader_1x12_P1.00mm_Horizontal +Through hole angled pin header, 1x12, 1.00mm pitch, 2.0mm pin length, single row +Through hole angled pin header THT 1x12 1.00mm single row +0 +12 +12 +Connector_PinHeader_1.00mm +PinHeader_1x12_P1.00mm_Vertical +Through hole straight pin header, 1x12, 1.00mm pitch, single row +Through hole pin header THT 1x12 1.00mm single row +0 +12 +12 +Connector_PinHeader_1.00mm +PinHeader_1x12_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x12, 1.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x12 1.00mm single row style1 pin1 left +0 +12 +12 +Connector_PinHeader_1.00mm +PinHeader_1x12_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x12, 1.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x12 1.00mm single row style2 pin1 right +0 +12 +12 +Connector_PinHeader_1.00mm +PinHeader_1x13_P1.00mm_Horizontal +Through hole angled pin header, 1x13, 1.00mm pitch, 2.0mm pin length, single row +Through hole angled pin header THT 1x13 1.00mm single row +0 +13 +13 +Connector_PinHeader_1.00mm +PinHeader_1x13_P1.00mm_Vertical +Through hole straight pin header, 1x13, 1.00mm pitch, single row +Through hole pin header THT 1x13 1.00mm single row +0 +13 +13 +Connector_PinHeader_1.00mm +PinHeader_1x13_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x13, 1.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x13 1.00mm single row style1 pin1 left +0 +13 +13 +Connector_PinHeader_1.00mm +PinHeader_1x13_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x13, 1.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x13 1.00mm single row style2 pin1 right +0 +13 +13 +Connector_PinHeader_1.00mm +PinHeader_1x14_P1.00mm_Horizontal +Through hole angled pin header, 1x14, 1.00mm pitch, 2.0mm pin length, single row +Through hole angled pin header THT 1x14 1.00mm single row +0 +14 +14 +Connector_PinHeader_1.00mm +PinHeader_1x14_P1.00mm_Vertical +Through hole straight pin header, 1x14, 1.00mm pitch, single row +Through hole pin header THT 1x14 1.00mm single row +0 +14 +14 +Connector_PinHeader_1.00mm +PinHeader_1x14_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x14, 1.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x14 1.00mm single row style1 pin1 left +0 +14 +14 +Connector_PinHeader_1.00mm +PinHeader_1x14_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x14, 1.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x14 1.00mm single row style2 pin1 right +0 +14 +14 +Connector_PinHeader_1.00mm +PinHeader_1x15_P1.00mm_Horizontal +Through hole angled pin header, 1x15, 1.00mm pitch, 2.0mm pin length, single row +Through hole angled pin header THT 1x15 1.00mm single row +0 +15 +15 +Connector_PinHeader_1.00mm +PinHeader_1x15_P1.00mm_Vertical +Through hole straight pin header, 1x15, 1.00mm pitch, single row +Through hole pin header THT 1x15 1.00mm single row +0 +15 +15 +Connector_PinHeader_1.00mm +PinHeader_1x15_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x15, 1.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x15 1.00mm single row style1 pin1 left +0 +15 +15 +Connector_PinHeader_1.00mm +PinHeader_1x15_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x15, 1.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x15 1.00mm single row style2 pin1 right +0 +15 +15 +Connector_PinHeader_1.00mm +PinHeader_1x16_P1.00mm_Horizontal +Through hole angled pin header, 1x16, 1.00mm pitch, 2.0mm pin length, single row +Through hole angled pin header THT 1x16 1.00mm single row +0 +16 +16 +Connector_PinHeader_1.00mm +PinHeader_1x16_P1.00mm_Vertical +Through hole straight pin header, 1x16, 1.00mm pitch, single row +Through hole pin header THT 1x16 1.00mm single row +0 +16 +16 +Connector_PinHeader_1.00mm +PinHeader_1x16_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x16, 1.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x16 1.00mm single row style1 pin1 left +0 +16 +16 +Connector_PinHeader_1.00mm +PinHeader_1x16_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x16, 1.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x16 1.00mm single row style2 pin1 right +0 +16 +16 +Connector_PinHeader_1.00mm +PinHeader_1x17_P1.00mm_Horizontal +Through hole angled pin header, 1x17, 1.00mm pitch, 2.0mm pin length, single row +Through hole angled pin header THT 1x17 1.00mm single row +0 +17 +17 +Connector_PinHeader_1.00mm +PinHeader_1x17_P1.00mm_Vertical +Through hole straight pin header, 1x17, 1.00mm pitch, single row +Through hole pin header THT 1x17 1.00mm single row +0 +17 +17 +Connector_PinHeader_1.00mm +PinHeader_1x17_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x17, 1.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x17 1.00mm single row style1 pin1 left +0 +17 +17 +Connector_PinHeader_1.00mm +PinHeader_1x17_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x17, 1.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x17 1.00mm single row style2 pin1 right +0 +17 +17 +Connector_PinHeader_1.00mm +PinHeader_1x18_P1.00mm_Horizontal +Through hole angled pin header, 1x18, 1.00mm pitch, 2.0mm pin length, single row +Through hole angled pin header THT 1x18 1.00mm single row +0 +18 +18 +Connector_PinHeader_1.00mm +PinHeader_1x18_P1.00mm_Vertical +Through hole straight pin header, 1x18, 1.00mm pitch, single row +Through hole pin header THT 1x18 1.00mm single row +0 +18 +18 +Connector_PinHeader_1.00mm +PinHeader_1x18_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x18, 1.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x18 1.00mm single row style1 pin1 left +0 +18 +18 +Connector_PinHeader_1.00mm +PinHeader_1x18_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x18, 1.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x18 1.00mm single row style2 pin1 right +0 +18 +18 +Connector_PinHeader_1.00mm +PinHeader_1x19_P1.00mm_Horizontal +Through hole angled pin header, 1x19, 1.00mm pitch, 2.0mm pin length, single row +Through hole angled pin header THT 1x19 1.00mm single row +0 +19 +19 +Connector_PinHeader_1.00mm +PinHeader_1x19_P1.00mm_Vertical +Through hole straight pin header, 1x19, 1.00mm pitch, single row +Through hole pin header THT 1x19 1.00mm single row +0 +19 +19 +Connector_PinHeader_1.00mm +PinHeader_1x19_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x19, 1.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x19 1.00mm single row style1 pin1 left +0 +19 +19 +Connector_PinHeader_1.00mm +PinHeader_1x19_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x19, 1.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x19 1.00mm single row style2 pin1 right +0 +19 +19 +Connector_PinHeader_1.00mm +PinHeader_1x20_P1.00mm_Horizontal +Through hole angled pin header, 1x20, 1.00mm pitch, 2.0mm pin length, single row +Through hole angled pin header THT 1x20 1.00mm single row +0 +20 +20 +Connector_PinHeader_1.00mm +PinHeader_1x20_P1.00mm_Vertical +Through hole straight pin header, 1x20, 1.00mm pitch, single row +Through hole pin header THT 1x20 1.00mm single row +0 +20 +20 +Connector_PinHeader_1.00mm +PinHeader_1x20_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x20, 1.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x20 1.00mm single row style1 pin1 left +0 +20 +20 +Connector_PinHeader_1.00mm +PinHeader_1x20_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x20, 1.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x20 1.00mm single row style2 pin1 right +0 +20 +20 +Connector_PinHeader_1.00mm +PinHeader_1x21_P1.00mm_Horizontal +Through hole angled pin header, 1x21, 1.00mm pitch, 2.0mm pin length, single row +Through hole angled pin header THT 1x21 1.00mm single row +0 +21 +21 +Connector_PinHeader_1.00mm +PinHeader_1x21_P1.00mm_Vertical +Through hole straight pin header, 1x21, 1.00mm pitch, single row +Through hole pin header THT 1x21 1.00mm single row +0 +21 +21 +Connector_PinHeader_1.00mm +PinHeader_1x21_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x21, 1.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x21 1.00mm single row style1 pin1 left +0 +21 +21 +Connector_PinHeader_1.00mm +PinHeader_1x21_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x21, 1.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x21 1.00mm single row style2 pin1 right +0 +21 +21 +Connector_PinHeader_1.00mm +PinHeader_1x22_P1.00mm_Horizontal +Through hole angled pin header, 1x22, 1.00mm pitch, 2.0mm pin length, single row +Through hole angled pin header THT 1x22 1.00mm single row +0 +22 +22 +Connector_PinHeader_1.00mm +PinHeader_1x22_P1.00mm_Vertical +Through hole straight pin header, 1x22, 1.00mm pitch, single row +Through hole pin header THT 1x22 1.00mm single row +0 +22 +22 +Connector_PinHeader_1.00mm +PinHeader_1x22_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x22, 1.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x22 1.00mm single row style1 pin1 left +0 +22 +22 +Connector_PinHeader_1.00mm +PinHeader_1x22_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x22, 1.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x22 1.00mm single row style2 pin1 right +0 +22 +22 +Connector_PinHeader_1.00mm +PinHeader_1x23_P1.00mm_Horizontal +Through hole angled pin header, 1x23, 1.00mm pitch, 2.0mm pin length, single row +Through hole angled pin header THT 1x23 1.00mm single row +0 +23 +23 +Connector_PinHeader_1.00mm +PinHeader_1x23_P1.00mm_Vertical +Through hole straight pin header, 1x23, 1.00mm pitch, single row +Through hole pin header THT 1x23 1.00mm single row +0 +23 +23 +Connector_PinHeader_1.00mm +PinHeader_1x23_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x23, 1.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x23 1.00mm single row style1 pin1 left +0 +23 +23 +Connector_PinHeader_1.00mm +PinHeader_1x23_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x23, 1.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x23 1.00mm single row style2 pin1 right +0 +23 +23 +Connector_PinHeader_1.00mm +PinHeader_1x24_P1.00mm_Horizontal +Through hole angled pin header, 1x24, 1.00mm pitch, 2.0mm pin length, single row +Through hole angled pin header THT 1x24 1.00mm single row +0 +24 +24 +Connector_PinHeader_1.00mm +PinHeader_1x24_P1.00mm_Vertical +Through hole straight pin header, 1x24, 1.00mm pitch, single row +Through hole pin header THT 1x24 1.00mm single row +0 +24 +24 +Connector_PinHeader_1.00mm +PinHeader_1x24_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x24, 1.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x24 1.00mm single row style1 pin1 left +0 +24 +24 +Connector_PinHeader_1.00mm +PinHeader_1x24_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x24, 1.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x24 1.00mm single row style2 pin1 right +0 +24 +24 +Connector_PinHeader_1.00mm +PinHeader_1x25_P1.00mm_Horizontal +Through hole angled pin header, 1x25, 1.00mm pitch, 2.0mm pin length, single row +Through hole angled pin header THT 1x25 1.00mm single row +0 +25 +25 +Connector_PinHeader_1.00mm +PinHeader_1x25_P1.00mm_Vertical +Through hole straight pin header, 1x25, 1.00mm pitch, single row +Through hole pin header THT 1x25 1.00mm single row +0 +25 +25 +Connector_PinHeader_1.00mm +PinHeader_1x25_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x25, 1.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x25 1.00mm single row style1 pin1 left +0 +25 +25 +Connector_PinHeader_1.00mm +PinHeader_1x25_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x25, 1.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x25 1.00mm single row style2 pin1 right +0 +25 +25 +Connector_PinHeader_1.00mm +PinHeader_1x26_P1.00mm_Horizontal +Through hole angled pin header, 1x26, 1.00mm pitch, 2.0mm pin length, single row +Through hole angled pin header THT 1x26 1.00mm single row +0 +26 +26 +Connector_PinHeader_1.00mm +PinHeader_1x26_P1.00mm_Vertical +Through hole straight pin header, 1x26, 1.00mm pitch, single row +Through hole pin header THT 1x26 1.00mm single row +0 +26 +26 +Connector_PinHeader_1.00mm +PinHeader_1x26_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x26, 1.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x26 1.00mm single row style1 pin1 left +0 +26 +26 +Connector_PinHeader_1.00mm +PinHeader_1x26_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x26, 1.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x26 1.00mm single row style2 pin1 right +0 +26 +26 +Connector_PinHeader_1.00mm +PinHeader_1x27_P1.00mm_Horizontal +Through hole angled pin header, 1x27, 1.00mm pitch, 2.0mm pin length, single row +Through hole angled pin header THT 1x27 1.00mm single row +0 +27 +27 +Connector_PinHeader_1.00mm +PinHeader_1x27_P1.00mm_Vertical +Through hole straight pin header, 1x27, 1.00mm pitch, single row +Through hole pin header THT 1x27 1.00mm single row +0 +27 +27 +Connector_PinHeader_1.00mm +PinHeader_1x27_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x27, 1.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x27 1.00mm single row style1 pin1 left +0 +27 +27 +Connector_PinHeader_1.00mm +PinHeader_1x27_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x27, 1.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x27 1.00mm single row style2 pin1 right +0 +27 +27 +Connector_PinHeader_1.00mm +PinHeader_1x28_P1.00mm_Horizontal +Through hole angled pin header, 1x28, 1.00mm pitch, 2.0mm pin length, single row +Through hole angled pin header THT 1x28 1.00mm single row +0 +28 +28 +Connector_PinHeader_1.00mm +PinHeader_1x28_P1.00mm_Vertical +Through hole straight pin header, 1x28, 1.00mm pitch, single row +Through hole pin header THT 1x28 1.00mm single row +0 +28 +28 +Connector_PinHeader_1.00mm +PinHeader_1x28_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x28, 1.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x28 1.00mm single row style1 pin1 left +0 +28 +28 +Connector_PinHeader_1.00mm +PinHeader_1x28_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x28, 1.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x28 1.00mm single row style2 pin1 right +0 +28 +28 +Connector_PinHeader_1.00mm +PinHeader_1x29_P1.00mm_Horizontal +Through hole angled pin header, 1x29, 1.00mm pitch, 2.0mm pin length, single row +Through hole angled pin header THT 1x29 1.00mm single row +0 +29 +29 +Connector_PinHeader_1.00mm +PinHeader_1x29_P1.00mm_Vertical +Through hole straight pin header, 1x29, 1.00mm pitch, single row +Through hole pin header THT 1x29 1.00mm single row +0 +29 +29 +Connector_PinHeader_1.00mm +PinHeader_1x29_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x29, 1.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x29 1.00mm single row style1 pin1 left +0 +29 +29 +Connector_PinHeader_1.00mm +PinHeader_1x29_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x29, 1.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x29 1.00mm single row style2 pin1 right +0 +29 +29 +Connector_PinHeader_1.00mm +PinHeader_1x30_P1.00mm_Horizontal +Through hole angled pin header, 1x30, 1.00mm pitch, 2.0mm pin length, single row +Through hole angled pin header THT 1x30 1.00mm single row +0 +30 +30 +Connector_PinHeader_1.00mm +PinHeader_1x30_P1.00mm_Vertical +Through hole straight pin header, 1x30, 1.00mm pitch, single row +Through hole pin header THT 1x30 1.00mm single row +0 +30 +30 +Connector_PinHeader_1.00mm +PinHeader_1x30_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x30, 1.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x30 1.00mm single row style1 pin1 left +0 +30 +30 +Connector_PinHeader_1.00mm +PinHeader_1x30_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x30, 1.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x30 1.00mm single row style2 pin1 right +0 +30 +30 +Connector_PinHeader_1.00mm +PinHeader_1x31_P1.00mm_Horizontal +Through hole angled pin header, 1x31, 1.00mm pitch, 2.0mm pin length, single row +Through hole angled pin header THT 1x31 1.00mm single row +0 +31 +31 +Connector_PinHeader_1.00mm +PinHeader_1x31_P1.00mm_Vertical +Through hole straight pin header, 1x31, 1.00mm pitch, single row +Through hole pin header THT 1x31 1.00mm single row +0 +31 +31 +Connector_PinHeader_1.00mm +PinHeader_1x31_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x31, 1.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x31 1.00mm single row style1 pin1 left +0 +31 +31 +Connector_PinHeader_1.00mm +PinHeader_1x31_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x31, 1.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x31 1.00mm single row style2 pin1 right +0 +31 +31 +Connector_PinHeader_1.00mm +PinHeader_1x32_P1.00mm_Horizontal +Through hole angled pin header, 1x32, 1.00mm pitch, 2.0mm pin length, single row +Through hole angled pin header THT 1x32 1.00mm single row +0 +32 +32 +Connector_PinHeader_1.00mm +PinHeader_1x32_P1.00mm_Vertical +Through hole straight pin header, 1x32, 1.00mm pitch, single row +Through hole pin header THT 1x32 1.00mm single row +0 +32 +32 +Connector_PinHeader_1.00mm +PinHeader_1x32_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x32, 1.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x32 1.00mm single row style1 pin1 left +0 +32 +32 +Connector_PinHeader_1.00mm +PinHeader_1x32_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x32, 1.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x32 1.00mm single row style2 pin1 right +0 +32 +32 +Connector_PinHeader_1.00mm +PinHeader_1x33_P1.00mm_Horizontal +Through hole angled pin header, 1x33, 1.00mm pitch, 2.0mm pin length, single row +Through hole angled pin header THT 1x33 1.00mm single row +0 +33 +33 +Connector_PinHeader_1.00mm +PinHeader_1x33_P1.00mm_Vertical +Through hole straight pin header, 1x33, 1.00mm pitch, single row +Through hole pin header THT 1x33 1.00mm single row +0 +33 +33 +Connector_PinHeader_1.00mm +PinHeader_1x33_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x33, 1.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x33 1.00mm single row style1 pin1 left +0 +33 +33 +Connector_PinHeader_1.00mm +PinHeader_1x33_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x33, 1.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x33 1.00mm single row style2 pin1 right +0 +33 +33 +Connector_PinHeader_1.00mm +PinHeader_1x34_P1.00mm_Horizontal +Through hole angled pin header, 1x34, 1.00mm pitch, 2.0mm pin length, single row +Through hole angled pin header THT 1x34 1.00mm single row +0 +34 +34 +Connector_PinHeader_1.00mm +PinHeader_1x34_P1.00mm_Vertical +Through hole straight pin header, 1x34, 1.00mm pitch, single row +Through hole pin header THT 1x34 1.00mm single row +0 +34 +34 +Connector_PinHeader_1.00mm +PinHeader_1x34_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x34, 1.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x34 1.00mm single row style1 pin1 left +0 +34 +34 +Connector_PinHeader_1.00mm +PinHeader_1x34_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x34, 1.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x34 1.00mm single row style2 pin1 right +0 +34 +34 +Connector_PinHeader_1.00mm +PinHeader_1x35_P1.00mm_Horizontal +Through hole angled pin header, 1x35, 1.00mm pitch, 2.0mm pin length, single row +Through hole angled pin header THT 1x35 1.00mm single row +0 +35 +35 +Connector_PinHeader_1.00mm +PinHeader_1x35_P1.00mm_Vertical +Through hole straight pin header, 1x35, 1.00mm pitch, single row +Through hole pin header THT 1x35 1.00mm single row +0 +35 +35 +Connector_PinHeader_1.00mm +PinHeader_1x35_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x35, 1.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x35 1.00mm single row style1 pin1 left +0 +35 +35 +Connector_PinHeader_1.00mm +PinHeader_1x35_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x35, 1.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x35 1.00mm single row style2 pin1 right +0 +35 +35 +Connector_PinHeader_1.00mm +PinHeader_1x36_P1.00mm_Horizontal +Through hole angled pin header, 1x36, 1.00mm pitch, 2.0mm pin length, single row +Through hole angled pin header THT 1x36 1.00mm single row +0 +36 +36 +Connector_PinHeader_1.00mm +PinHeader_1x36_P1.00mm_Vertical +Through hole straight pin header, 1x36, 1.00mm pitch, single row +Through hole pin header THT 1x36 1.00mm single row +0 +36 +36 +Connector_PinHeader_1.00mm +PinHeader_1x36_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x36, 1.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x36 1.00mm single row style1 pin1 left +0 +36 +36 +Connector_PinHeader_1.00mm +PinHeader_1x36_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x36, 1.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x36 1.00mm single row style2 pin1 right +0 +36 +36 +Connector_PinHeader_1.00mm +PinHeader_1x37_P1.00mm_Horizontal +Through hole angled pin header, 1x37, 1.00mm pitch, 2.0mm pin length, single row +Through hole angled pin header THT 1x37 1.00mm single row +0 +37 +37 +Connector_PinHeader_1.00mm +PinHeader_1x37_P1.00mm_Vertical +Through hole straight pin header, 1x37, 1.00mm pitch, single row +Through hole pin header THT 1x37 1.00mm single row +0 +37 +37 +Connector_PinHeader_1.00mm +PinHeader_1x37_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x37, 1.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x37 1.00mm single row style1 pin1 left +0 +37 +37 +Connector_PinHeader_1.00mm +PinHeader_1x37_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x37, 1.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x37 1.00mm single row style2 pin1 right +0 +37 +37 +Connector_PinHeader_1.00mm +PinHeader_1x38_P1.00mm_Horizontal +Through hole angled pin header, 1x38, 1.00mm pitch, 2.0mm pin length, single row +Through hole angled pin header THT 1x38 1.00mm single row +0 +38 +38 +Connector_PinHeader_1.00mm +PinHeader_1x38_P1.00mm_Vertical +Through hole straight pin header, 1x38, 1.00mm pitch, single row +Through hole pin header THT 1x38 1.00mm single row +0 +38 +38 +Connector_PinHeader_1.00mm +PinHeader_1x38_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x38, 1.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x38 1.00mm single row style1 pin1 left +0 +38 +38 +Connector_PinHeader_1.00mm +PinHeader_1x38_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x38, 1.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x38 1.00mm single row style2 pin1 right +0 +38 +38 +Connector_PinHeader_1.00mm +PinHeader_1x39_P1.00mm_Horizontal +Through hole angled pin header, 1x39, 1.00mm pitch, 2.0mm pin length, single row +Through hole angled pin header THT 1x39 1.00mm single row +0 +39 +39 +Connector_PinHeader_1.00mm +PinHeader_1x39_P1.00mm_Vertical +Through hole straight pin header, 1x39, 1.00mm pitch, single row +Through hole pin header THT 1x39 1.00mm single row +0 +39 +39 +Connector_PinHeader_1.00mm +PinHeader_1x39_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x39, 1.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x39 1.00mm single row style1 pin1 left +0 +39 +39 +Connector_PinHeader_1.00mm +PinHeader_1x39_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x39, 1.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x39 1.00mm single row style2 pin1 right +0 +39 +39 +Connector_PinHeader_1.00mm +PinHeader_1x40_P1.00mm_Horizontal +Through hole angled pin header, 1x40, 1.00mm pitch, 2.0mm pin length, single row +Through hole angled pin header THT 1x40 1.00mm single row +0 +40 +40 +Connector_PinHeader_1.00mm +PinHeader_1x40_P1.00mm_Vertical +Through hole straight pin header, 1x40, 1.00mm pitch, single row +Through hole pin header THT 1x40 1.00mm single row +0 +40 +40 +Connector_PinHeader_1.00mm +PinHeader_1x40_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x40, 1.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x40 1.00mm single row style1 pin1 left +0 +40 +40 +Connector_PinHeader_1.00mm +PinHeader_1x40_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x40, 1.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x40 1.00mm single row style2 pin1 right +0 +40 +40 +Connector_PinHeader_1.00mm +PinHeader_2x01_P1.00mm_Horizontal +Through hole angled pin header, 2x01, 1.00mm pitch, 2.0mm pin length, double rows +Through hole angled pin header THT 2x01 1.00mm double row +0 +2 +2 +Connector_PinHeader_1.00mm +PinHeader_2x01_P1.00mm_Vertical +Through hole straight pin header, 2x01, 1.00mm pitch, double rows +Through hole pin header THT 2x01 1.00mm double row +0 +2 +2 +Connector_PinHeader_1.00mm +PinHeader_2x01_P1.00mm_Vertical_SMD +surface-mounted straight pin header, 2x01, 1.00mm pitch, double rows +Surface mounted pin header SMD 2x01 1.00mm double row +0 +2 +2 +Connector_PinHeader_1.00mm +PinHeader_2x02_P1.00mm_Horizontal +Through hole angled pin header, 2x02, 1.00mm pitch, 2.0mm pin length, double rows +Through hole angled pin header THT 2x02 1.00mm double row +0 +4 +4 +Connector_PinHeader_1.00mm +PinHeader_2x02_P1.00mm_Vertical +Through hole straight pin header, 2x02, 1.00mm pitch, double rows +Through hole pin header THT 2x02 1.00mm double row +0 +4 +4 +Connector_PinHeader_1.00mm +PinHeader_2x02_P1.00mm_Vertical_SMD +surface-mounted straight pin header, 2x02, 1.00mm pitch, double rows +Surface mounted pin header SMD 2x02 1.00mm double row +0 +4 +4 +Connector_PinHeader_1.00mm +PinHeader_2x03_P1.00mm_Horizontal +Through hole angled pin header, 2x03, 1.00mm pitch, 2.0mm pin length, double rows +Through hole angled pin header THT 2x03 1.00mm double row +0 +6 +6 +Connector_PinHeader_1.00mm +PinHeader_2x03_P1.00mm_Vertical +Through hole straight pin header, 2x03, 1.00mm pitch, double rows +Through hole pin header THT 2x03 1.00mm double row +0 +6 +6 +Connector_PinHeader_1.00mm +PinHeader_2x03_P1.00mm_Vertical_SMD +surface-mounted straight pin header, 2x03, 1.00mm pitch, double rows +Surface mounted pin header SMD 2x03 1.00mm double row +0 +6 +6 +Connector_PinHeader_1.00mm +PinHeader_2x04_P1.00mm_Horizontal +Through hole angled pin header, 2x04, 1.00mm pitch, 2.0mm pin length, double rows +Through hole angled pin header THT 2x04 1.00mm double row +0 +8 +8 +Connector_PinHeader_1.00mm +PinHeader_2x04_P1.00mm_Vertical +Through hole straight pin header, 2x04, 1.00mm pitch, double rows +Through hole pin header THT 2x04 1.00mm double row +0 +8 +8 +Connector_PinHeader_1.00mm +PinHeader_2x04_P1.00mm_Vertical_SMD +surface-mounted straight pin header, 2x04, 1.00mm pitch, double rows +Surface mounted pin header SMD 2x04 1.00mm double row +0 +8 +8 +Connector_PinHeader_1.00mm +PinHeader_2x05_P1.00mm_Horizontal +Through hole angled pin header, 2x05, 1.00mm pitch, 2.0mm pin length, double rows +Through hole angled pin header THT 2x05 1.00mm double row +0 +10 +10 +Connector_PinHeader_1.00mm +PinHeader_2x05_P1.00mm_Vertical +Through hole straight pin header, 2x05, 1.00mm pitch, double rows +Through hole pin header THT 2x05 1.00mm double row +0 +10 +10 +Connector_PinHeader_1.00mm +PinHeader_2x05_P1.00mm_Vertical_SMD +surface-mounted straight pin header, 2x05, 1.00mm pitch, double rows +Surface mounted pin header SMD 2x05 1.00mm double row +0 +10 +10 +Connector_PinHeader_1.00mm +PinHeader_2x06_P1.00mm_Horizontal +Through hole angled pin header, 2x06, 1.00mm pitch, 2.0mm pin length, double rows +Through hole angled pin header THT 2x06 1.00mm double row +0 +12 +12 +Connector_PinHeader_1.00mm +PinHeader_2x06_P1.00mm_Vertical +Through hole straight pin header, 2x06, 1.00mm pitch, double rows +Through hole pin header THT 2x06 1.00mm double row +0 +12 +12 +Connector_PinHeader_1.00mm +PinHeader_2x06_P1.00mm_Vertical_SMD +surface-mounted straight pin header, 2x06, 1.00mm pitch, double rows +Surface mounted pin header SMD 2x06 1.00mm double row +0 +12 +12 +Connector_PinHeader_1.00mm +PinHeader_2x07_P1.00mm_Horizontal +Through hole angled pin header, 2x07, 1.00mm pitch, 2.0mm pin length, double rows +Through hole angled pin header THT 2x07 1.00mm double row +0 +14 +14 +Connector_PinHeader_1.00mm +PinHeader_2x07_P1.00mm_Vertical +Through hole straight pin header, 2x07, 1.00mm pitch, double rows +Through hole pin header THT 2x07 1.00mm double row +0 +14 +14 +Connector_PinHeader_1.00mm +PinHeader_2x07_P1.00mm_Vertical_SMD +surface-mounted straight pin header, 2x07, 1.00mm pitch, double rows +Surface mounted pin header SMD 2x07 1.00mm double row +0 +14 +14 +Connector_PinHeader_1.00mm +PinHeader_2x08_P1.00mm_Horizontal +Through hole angled pin header, 2x08, 1.00mm pitch, 2.0mm pin length, double rows +Through hole angled pin header THT 2x08 1.00mm double row +0 +16 +16 +Connector_PinHeader_1.00mm +PinHeader_2x08_P1.00mm_Vertical +Through hole straight pin header, 2x08, 1.00mm pitch, double rows +Through hole pin header THT 2x08 1.00mm double row +0 +16 +16 +Connector_PinHeader_1.00mm +PinHeader_2x08_P1.00mm_Vertical_SMD +surface-mounted straight pin header, 2x08, 1.00mm pitch, double rows +Surface mounted pin header SMD 2x08 1.00mm double row +0 +16 +16 +Connector_PinHeader_1.00mm +PinHeader_2x09_P1.00mm_Horizontal +Through hole angled pin header, 2x09, 1.00mm pitch, 2.0mm pin length, double rows +Through hole angled pin header THT 2x09 1.00mm double row +0 +18 +18 +Connector_PinHeader_1.00mm +PinHeader_2x09_P1.00mm_Vertical +Through hole straight pin header, 2x09, 1.00mm pitch, double rows +Through hole pin header THT 2x09 1.00mm double row +0 +18 +18 +Connector_PinHeader_1.00mm +PinHeader_2x09_P1.00mm_Vertical_SMD +surface-mounted straight pin header, 2x09, 1.00mm pitch, double rows +Surface mounted pin header SMD 2x09 1.00mm double row +0 +18 +18 +Connector_PinHeader_1.00mm +PinHeader_2x10_P1.00mm_Horizontal +Through hole angled pin header, 2x10, 1.00mm pitch, 2.0mm pin length, double rows +Through hole angled pin header THT 2x10 1.00mm double row +0 +20 +20 +Connector_PinHeader_1.00mm +PinHeader_2x10_P1.00mm_Vertical +Through hole straight pin header, 2x10, 1.00mm pitch, double rows +Through hole pin header THT 2x10 1.00mm double row +0 +20 +20 +Connector_PinHeader_1.00mm +PinHeader_2x10_P1.00mm_Vertical_SMD +surface-mounted straight pin header, 2x10, 1.00mm pitch, double rows +Surface mounted pin header SMD 2x10 1.00mm double row +0 +20 +20 +Connector_PinHeader_1.00mm +PinHeader_2x11_P1.00mm_Horizontal +Through hole angled pin header, 2x11, 1.00mm pitch, 2.0mm pin length, double rows +Through hole angled pin header THT 2x11 1.00mm double row +0 +22 +22 +Connector_PinHeader_1.00mm +PinHeader_2x11_P1.00mm_Vertical +Through hole straight pin header, 2x11, 1.00mm pitch, double rows +Through hole pin header THT 2x11 1.00mm double row +0 +22 +22 +Connector_PinHeader_1.00mm +PinHeader_2x11_P1.00mm_Vertical_SMD +surface-mounted straight pin header, 2x11, 1.00mm pitch, double rows +Surface mounted pin header SMD 2x11 1.00mm double row +0 +22 +22 +Connector_PinHeader_1.00mm +PinHeader_2x12_P1.00mm_Horizontal +Through hole angled pin header, 2x12, 1.00mm pitch, 2.0mm pin length, double rows +Through hole angled pin header THT 2x12 1.00mm double row +0 +24 +24 +Connector_PinHeader_1.00mm +PinHeader_2x12_P1.00mm_Vertical +Through hole straight pin header, 2x12, 1.00mm pitch, double rows +Through hole pin header THT 2x12 1.00mm double row +0 +24 +24 +Connector_PinHeader_1.00mm +PinHeader_2x12_P1.00mm_Vertical_SMD +surface-mounted straight pin header, 2x12, 1.00mm pitch, double rows +Surface mounted pin header SMD 2x12 1.00mm double row +0 +24 +24 +Connector_PinHeader_1.00mm +PinHeader_2x13_P1.00mm_Horizontal +Through hole angled pin header, 2x13, 1.00mm pitch, 2.0mm pin length, double rows +Through hole angled pin header THT 2x13 1.00mm double row +0 +26 +26 +Connector_PinHeader_1.00mm +PinHeader_2x13_P1.00mm_Vertical +Through hole straight pin header, 2x13, 1.00mm pitch, double rows +Through hole pin header THT 2x13 1.00mm double row +0 +26 +26 +Connector_PinHeader_1.00mm +PinHeader_2x13_P1.00mm_Vertical_SMD +surface-mounted straight pin header, 2x13, 1.00mm pitch, double rows +Surface mounted pin header SMD 2x13 1.00mm double row +0 +26 +26 +Connector_PinHeader_1.00mm +PinHeader_2x14_P1.00mm_Horizontal +Through hole angled pin header, 2x14, 1.00mm pitch, 2.0mm pin length, double rows +Through hole angled pin header THT 2x14 1.00mm double row +0 +28 +28 +Connector_PinHeader_1.00mm +PinHeader_2x14_P1.00mm_Vertical +Through hole straight pin header, 2x14, 1.00mm pitch, double rows +Through hole pin header THT 2x14 1.00mm double row +0 +28 +28 +Connector_PinHeader_1.00mm +PinHeader_2x14_P1.00mm_Vertical_SMD +surface-mounted straight pin header, 2x14, 1.00mm pitch, double rows +Surface mounted pin header SMD 2x14 1.00mm double row +0 +28 +28 +Connector_PinHeader_1.00mm +PinHeader_2x15_P1.00mm_Horizontal +Through hole angled pin header, 2x15, 1.00mm pitch, 2.0mm pin length, double rows +Through hole angled pin header THT 2x15 1.00mm double row +0 +30 +30 +Connector_PinHeader_1.00mm +PinHeader_2x15_P1.00mm_Vertical +Through hole straight pin header, 2x15, 1.00mm pitch, double rows +Through hole pin header THT 2x15 1.00mm double row +0 +30 +30 +Connector_PinHeader_1.00mm +PinHeader_2x15_P1.00mm_Vertical_SMD +surface-mounted straight pin header, 2x15, 1.00mm pitch, double rows +Surface mounted pin header SMD 2x15 1.00mm double row +0 +30 +30 +Connector_PinHeader_1.00mm +PinHeader_2x16_P1.00mm_Horizontal +Through hole angled pin header, 2x16, 1.00mm pitch, 2.0mm pin length, double rows +Through hole angled pin header THT 2x16 1.00mm double row +0 +32 +32 +Connector_PinHeader_1.00mm +PinHeader_2x16_P1.00mm_Vertical +Through hole straight pin header, 2x16, 1.00mm pitch, double rows +Through hole pin header THT 2x16 1.00mm double row +0 +32 +32 +Connector_PinHeader_1.00mm +PinHeader_2x16_P1.00mm_Vertical_SMD +surface-mounted straight pin header, 2x16, 1.00mm pitch, double rows +Surface mounted pin header SMD 2x16 1.00mm double row +0 +32 +32 +Connector_PinHeader_1.00mm +PinHeader_2x17_P1.00mm_Horizontal +Through hole angled pin header, 2x17, 1.00mm pitch, 2.0mm pin length, double rows +Through hole angled pin header THT 2x17 1.00mm double row +0 +34 +34 +Connector_PinHeader_1.00mm +PinHeader_2x17_P1.00mm_Vertical +Through hole straight pin header, 2x17, 1.00mm pitch, double rows +Through hole pin header THT 2x17 1.00mm double row +0 +34 +34 +Connector_PinHeader_1.00mm +PinHeader_2x17_P1.00mm_Vertical_SMD +surface-mounted straight pin header, 2x17, 1.00mm pitch, double rows +Surface mounted pin header SMD 2x17 1.00mm double row +0 +34 +34 +Connector_PinHeader_1.00mm +PinHeader_2x18_P1.00mm_Horizontal +Through hole angled pin header, 2x18, 1.00mm pitch, 2.0mm pin length, double rows +Through hole angled pin header THT 2x18 1.00mm double row +0 +36 +36 +Connector_PinHeader_1.00mm +PinHeader_2x18_P1.00mm_Vertical +Through hole straight pin header, 2x18, 1.00mm pitch, double rows +Through hole pin header THT 2x18 1.00mm double row +0 +36 +36 +Connector_PinHeader_1.00mm +PinHeader_2x18_P1.00mm_Vertical_SMD +surface-mounted straight pin header, 2x18, 1.00mm pitch, double rows +Surface mounted pin header SMD 2x18 1.00mm double row +0 +36 +36 +Connector_PinHeader_1.00mm +PinHeader_2x19_P1.00mm_Horizontal +Through hole angled pin header, 2x19, 1.00mm pitch, 2.0mm pin length, double rows +Through hole angled pin header THT 2x19 1.00mm double row +0 +38 +38 +Connector_PinHeader_1.00mm +PinHeader_2x19_P1.00mm_Vertical +Through hole straight pin header, 2x19, 1.00mm pitch, double rows +Through hole pin header THT 2x19 1.00mm double row +0 +38 +38 +Connector_PinHeader_1.00mm +PinHeader_2x19_P1.00mm_Vertical_SMD +surface-mounted straight pin header, 2x19, 1.00mm pitch, double rows +Surface mounted pin header SMD 2x19 1.00mm double row +0 +38 +38 +Connector_PinHeader_1.00mm +PinHeader_2x20_P1.00mm_Horizontal +Through hole angled pin header, 2x20, 1.00mm pitch, 2.0mm pin length, double rows +Through hole angled pin header THT 2x20 1.00mm double row +0 +40 +40 +Connector_PinHeader_1.00mm +PinHeader_2x20_P1.00mm_Vertical +Through hole straight pin header, 2x20, 1.00mm pitch, double rows +Through hole pin header THT 2x20 1.00mm double row +0 +40 +40 +Connector_PinHeader_1.00mm +PinHeader_2x20_P1.00mm_Vertical_SMD +surface-mounted straight pin header, 2x20, 1.00mm pitch, double rows +Surface mounted pin header SMD 2x20 1.00mm double row +0 +40 +40 +Connector_PinHeader_1.00mm +PinHeader_2x21_P1.00mm_Horizontal +Through hole angled pin header, 2x21, 1.00mm pitch, 2.0mm pin length, double rows +Through hole angled pin header THT 2x21 1.00mm double row +0 +42 +42 +Connector_PinHeader_1.00mm +PinHeader_2x21_P1.00mm_Vertical +Through hole straight pin header, 2x21, 1.00mm pitch, double rows +Through hole pin header THT 2x21 1.00mm double row +0 +42 +42 +Connector_PinHeader_1.00mm +PinHeader_2x21_P1.00mm_Vertical_SMD +surface-mounted straight pin header, 2x21, 1.00mm pitch, double rows +Surface mounted pin header SMD 2x21 1.00mm double row +0 +42 +42 +Connector_PinHeader_1.00mm +PinHeader_2x22_P1.00mm_Horizontal +Through hole angled pin header, 2x22, 1.00mm pitch, 2.0mm pin length, double rows +Through hole angled pin header THT 2x22 1.00mm double row +0 +44 +44 +Connector_PinHeader_1.00mm +PinHeader_2x22_P1.00mm_Vertical +Through hole straight pin header, 2x22, 1.00mm pitch, double rows +Through hole pin header THT 2x22 1.00mm double row +0 +44 +44 +Connector_PinHeader_1.00mm +PinHeader_2x22_P1.00mm_Vertical_SMD +surface-mounted straight pin header, 2x22, 1.00mm pitch, double rows +Surface mounted pin header SMD 2x22 1.00mm double row +0 +44 +44 +Connector_PinHeader_1.00mm +PinHeader_2x23_P1.00mm_Horizontal +Through hole angled pin header, 2x23, 1.00mm pitch, 2.0mm pin length, double rows +Through hole angled pin header THT 2x23 1.00mm double row +0 +46 +46 +Connector_PinHeader_1.00mm +PinHeader_2x23_P1.00mm_Vertical +Through hole straight pin header, 2x23, 1.00mm pitch, double rows +Through hole pin header THT 2x23 1.00mm double row +0 +46 +46 +Connector_PinHeader_1.00mm +PinHeader_2x23_P1.00mm_Vertical_SMD +surface-mounted straight pin header, 2x23, 1.00mm pitch, double rows +Surface mounted pin header SMD 2x23 1.00mm double row +0 +46 +46 +Connector_PinHeader_1.00mm +PinHeader_2x24_P1.00mm_Horizontal +Through hole angled pin header, 2x24, 1.00mm pitch, 2.0mm pin length, double rows +Through hole angled pin header THT 2x24 1.00mm double row +0 +48 +48 +Connector_PinHeader_1.00mm +PinHeader_2x24_P1.00mm_Vertical +Through hole straight pin header, 2x24, 1.00mm pitch, double rows +Through hole pin header THT 2x24 1.00mm double row +0 +48 +48 +Connector_PinHeader_1.00mm +PinHeader_2x24_P1.00mm_Vertical_SMD +surface-mounted straight pin header, 2x24, 1.00mm pitch, double rows +Surface mounted pin header SMD 2x24 1.00mm double row +0 +48 +48 +Connector_PinHeader_1.00mm +PinHeader_2x25_P1.00mm_Horizontal +Through hole angled pin header, 2x25, 1.00mm pitch, 2.0mm pin length, double rows +Through hole angled pin header THT 2x25 1.00mm double row +0 +50 +50 +Connector_PinHeader_1.00mm +PinHeader_2x25_P1.00mm_Vertical +Through hole straight pin header, 2x25, 1.00mm pitch, double rows +Through hole pin header THT 2x25 1.00mm double row +0 +50 +50 +Connector_PinHeader_1.00mm +PinHeader_2x25_P1.00mm_Vertical_SMD +surface-mounted straight pin header, 2x25, 1.00mm pitch, double rows +Surface mounted pin header SMD 2x25 1.00mm double row +0 +50 +50 +Connector_PinHeader_1.00mm +PinHeader_2x26_P1.00mm_Horizontal +Through hole angled pin header, 2x26, 1.00mm pitch, 2.0mm pin length, double rows +Through hole angled pin header THT 2x26 1.00mm double row +0 +52 +52 +Connector_PinHeader_1.00mm +PinHeader_2x26_P1.00mm_Vertical +Through hole straight pin header, 2x26, 1.00mm pitch, double rows +Through hole pin header THT 2x26 1.00mm double row +0 +52 +52 +Connector_PinHeader_1.00mm +PinHeader_2x26_P1.00mm_Vertical_SMD +surface-mounted straight pin header, 2x26, 1.00mm pitch, double rows +Surface mounted pin header SMD 2x26 1.00mm double row +0 +52 +52 +Connector_PinHeader_1.00mm +PinHeader_2x27_P1.00mm_Horizontal +Through hole angled pin header, 2x27, 1.00mm pitch, 2.0mm pin length, double rows +Through hole angled pin header THT 2x27 1.00mm double row +0 +54 +54 +Connector_PinHeader_1.00mm +PinHeader_2x27_P1.00mm_Vertical +Through hole straight pin header, 2x27, 1.00mm pitch, double rows +Through hole pin header THT 2x27 1.00mm double row +0 +54 +54 +Connector_PinHeader_1.00mm +PinHeader_2x27_P1.00mm_Vertical_SMD +surface-mounted straight pin header, 2x27, 1.00mm pitch, double rows +Surface mounted pin header SMD 2x27 1.00mm double row +0 +54 +54 +Connector_PinHeader_1.00mm +PinHeader_2x28_P1.00mm_Horizontal +Through hole angled pin header, 2x28, 1.00mm pitch, 2.0mm pin length, double rows +Through hole angled pin header THT 2x28 1.00mm double row +0 +56 +56 +Connector_PinHeader_1.00mm +PinHeader_2x28_P1.00mm_Vertical +Through hole straight pin header, 2x28, 1.00mm pitch, double rows +Through hole pin header THT 2x28 1.00mm double row +0 +56 +56 +Connector_PinHeader_1.00mm +PinHeader_2x28_P1.00mm_Vertical_SMD +surface-mounted straight pin header, 2x28, 1.00mm pitch, double rows +Surface mounted pin header SMD 2x28 1.00mm double row +0 +56 +56 +Connector_PinHeader_1.00mm +PinHeader_2x29_P1.00mm_Horizontal +Through hole angled pin header, 2x29, 1.00mm pitch, 2.0mm pin length, double rows +Through hole angled pin header THT 2x29 1.00mm double row +0 +58 +58 +Connector_PinHeader_1.00mm +PinHeader_2x29_P1.00mm_Vertical +Through hole straight pin header, 2x29, 1.00mm pitch, double rows +Through hole pin header THT 2x29 1.00mm double row +0 +58 +58 +Connector_PinHeader_1.00mm +PinHeader_2x29_P1.00mm_Vertical_SMD +surface-mounted straight pin header, 2x29, 1.00mm pitch, double rows +Surface mounted pin header SMD 2x29 1.00mm double row +0 +58 +58 +Connector_PinHeader_1.00mm +PinHeader_2x30_P1.00mm_Horizontal +Through hole angled pin header, 2x30, 1.00mm pitch, 2.0mm pin length, double rows +Through hole angled pin header THT 2x30 1.00mm double row +0 +60 +60 +Connector_PinHeader_1.00mm +PinHeader_2x30_P1.00mm_Vertical +Through hole straight pin header, 2x30, 1.00mm pitch, double rows +Through hole pin header THT 2x30 1.00mm double row +0 +60 +60 +Connector_PinHeader_1.00mm +PinHeader_2x30_P1.00mm_Vertical_SMD +surface-mounted straight pin header, 2x30, 1.00mm pitch, double rows +Surface mounted pin header SMD 2x30 1.00mm double row +0 +60 +60 +Connector_PinHeader_1.00mm +PinHeader_2x31_P1.00mm_Horizontal +Through hole angled pin header, 2x31, 1.00mm pitch, 2.0mm pin length, double rows +Through hole angled pin header THT 2x31 1.00mm double row +0 +62 +62 +Connector_PinHeader_1.00mm +PinHeader_2x31_P1.00mm_Vertical +Through hole straight pin header, 2x31, 1.00mm pitch, double rows +Through hole pin header THT 2x31 1.00mm double row +0 +62 +62 +Connector_PinHeader_1.00mm +PinHeader_2x31_P1.00mm_Vertical_SMD +surface-mounted straight pin header, 2x31, 1.00mm pitch, double rows +Surface mounted pin header SMD 2x31 1.00mm double row +0 +62 +62 +Connector_PinHeader_1.00mm +PinHeader_2x32_P1.00mm_Horizontal +Through hole angled pin header, 2x32, 1.00mm pitch, 2.0mm pin length, double rows +Through hole angled pin header THT 2x32 1.00mm double row +0 +64 +64 +Connector_PinHeader_1.00mm +PinHeader_2x32_P1.00mm_Vertical +Through hole straight pin header, 2x32, 1.00mm pitch, double rows +Through hole pin header THT 2x32 1.00mm double row +0 +64 +64 +Connector_PinHeader_1.00mm +PinHeader_2x32_P1.00mm_Vertical_SMD +surface-mounted straight pin header, 2x32, 1.00mm pitch, double rows +Surface mounted pin header SMD 2x32 1.00mm double row +0 +64 +64 +Connector_PinHeader_1.00mm +PinHeader_2x33_P1.00mm_Horizontal +Through hole angled pin header, 2x33, 1.00mm pitch, 2.0mm pin length, double rows +Through hole angled pin header THT 2x33 1.00mm double row +0 +66 +66 +Connector_PinHeader_1.00mm +PinHeader_2x33_P1.00mm_Vertical +Through hole straight pin header, 2x33, 1.00mm pitch, double rows +Through hole pin header THT 2x33 1.00mm double row +0 +66 +66 +Connector_PinHeader_1.00mm +PinHeader_2x33_P1.00mm_Vertical_SMD +surface-mounted straight pin header, 2x33, 1.00mm pitch, double rows +Surface mounted pin header SMD 2x33 1.00mm double row +0 +66 +66 +Connector_PinHeader_1.00mm +PinHeader_2x34_P1.00mm_Horizontal +Through hole angled pin header, 2x34, 1.00mm pitch, 2.0mm pin length, double rows +Through hole angled pin header THT 2x34 1.00mm double row +0 +68 +68 +Connector_PinHeader_1.00mm +PinHeader_2x34_P1.00mm_Vertical +Through hole straight pin header, 2x34, 1.00mm pitch, double rows +Through hole pin header THT 2x34 1.00mm double row +0 +68 +68 +Connector_PinHeader_1.00mm +PinHeader_2x34_P1.00mm_Vertical_SMD +surface-mounted straight pin header, 2x34, 1.00mm pitch, double rows +Surface mounted pin header SMD 2x34 1.00mm double row +0 +68 +68 +Connector_PinHeader_1.00mm +PinHeader_2x35_P1.00mm_Horizontal +Through hole angled pin header, 2x35, 1.00mm pitch, 2.0mm pin length, double rows +Through hole angled pin header THT 2x35 1.00mm double row +0 +70 +70 +Connector_PinHeader_1.00mm +PinHeader_2x35_P1.00mm_Vertical +Through hole straight pin header, 2x35, 1.00mm pitch, double rows +Through hole pin header THT 2x35 1.00mm double row +0 +70 +70 +Connector_PinHeader_1.00mm +PinHeader_2x35_P1.00mm_Vertical_SMD +surface-mounted straight pin header, 2x35, 1.00mm pitch, double rows +Surface mounted pin header SMD 2x35 1.00mm double row +0 +70 +70 +Connector_PinHeader_1.00mm +PinHeader_2x36_P1.00mm_Horizontal +Through hole angled pin header, 2x36, 1.00mm pitch, 2.0mm pin length, double rows +Through hole angled pin header THT 2x36 1.00mm double row +0 +72 +72 +Connector_PinHeader_1.00mm +PinHeader_2x36_P1.00mm_Vertical +Through hole straight pin header, 2x36, 1.00mm pitch, double rows +Through hole pin header THT 2x36 1.00mm double row +0 +72 +72 +Connector_PinHeader_1.00mm +PinHeader_2x36_P1.00mm_Vertical_SMD +surface-mounted straight pin header, 2x36, 1.00mm pitch, double rows +Surface mounted pin header SMD 2x36 1.00mm double row +0 +72 +72 +Connector_PinHeader_1.00mm +PinHeader_2x37_P1.00mm_Horizontal +Through hole angled pin header, 2x37, 1.00mm pitch, 2.0mm pin length, double rows +Through hole angled pin header THT 2x37 1.00mm double row +0 +74 +74 +Connector_PinHeader_1.00mm +PinHeader_2x37_P1.00mm_Vertical +Through hole straight pin header, 2x37, 1.00mm pitch, double rows +Through hole pin header THT 2x37 1.00mm double row +0 +74 +74 +Connector_PinHeader_1.00mm +PinHeader_2x37_P1.00mm_Vertical_SMD +surface-mounted straight pin header, 2x37, 1.00mm pitch, double rows +Surface mounted pin header SMD 2x37 1.00mm double row +0 +74 +74 +Connector_PinHeader_1.00mm +PinHeader_2x38_P1.00mm_Horizontal +Through hole angled pin header, 2x38, 1.00mm pitch, 2.0mm pin length, double rows +Through hole angled pin header THT 2x38 1.00mm double row +0 +76 +76 +Connector_PinHeader_1.00mm +PinHeader_2x38_P1.00mm_Vertical +Through hole straight pin header, 2x38, 1.00mm pitch, double rows +Through hole pin header THT 2x38 1.00mm double row +0 +76 +76 +Connector_PinHeader_1.00mm +PinHeader_2x38_P1.00mm_Vertical_SMD +surface-mounted straight pin header, 2x38, 1.00mm pitch, double rows +Surface mounted pin header SMD 2x38 1.00mm double row +0 +76 +76 +Connector_PinHeader_1.00mm +PinHeader_2x39_P1.00mm_Horizontal +Through hole angled pin header, 2x39, 1.00mm pitch, 2.0mm pin length, double rows +Through hole angled pin header THT 2x39 1.00mm double row +0 +78 +78 +Connector_PinHeader_1.00mm +PinHeader_2x39_P1.00mm_Vertical +Through hole straight pin header, 2x39, 1.00mm pitch, double rows +Through hole pin header THT 2x39 1.00mm double row +0 +78 +78 +Connector_PinHeader_1.00mm +PinHeader_2x39_P1.00mm_Vertical_SMD +surface-mounted straight pin header, 2x39, 1.00mm pitch, double rows +Surface mounted pin header SMD 2x39 1.00mm double row +0 +78 +78 +Connector_PinHeader_1.00mm +PinHeader_2x40_P1.00mm_Horizontal +Through hole angled pin header, 2x40, 1.00mm pitch, 2.0mm pin length, double rows +Through hole angled pin header THT 2x40 1.00mm double row +0 +80 +80 +Connector_PinHeader_1.00mm +PinHeader_2x40_P1.00mm_Vertical +Through hole straight pin header, 2x40, 1.00mm pitch, double rows +Through hole pin header THT 2x40 1.00mm double row +0 +80 +80 +Connector_PinHeader_1.00mm +PinHeader_2x40_P1.00mm_Vertical_SMD +surface-mounted straight pin header, 2x40, 1.00mm pitch, double rows +Surface mounted pin header SMD 2x40 1.00mm double row +0 +80 +80 +Connector_PinHeader_1.27mm +PinHeader_1x01_P1.27mm_Horizontal +Through hole angled pin header, 1x01, 1.27mm pitch, 4.0mm pin length, single row +Through hole angled pin header THT 1x01 1.27mm single row +0 +1 +1 +Connector_PinHeader_1.27mm +PinHeader_1x01_P1.27mm_Vertical +Through hole straight pin header, 1x01, 1.27mm pitch, single row +Through hole pin header THT 1x01 1.27mm single row +0 +1 +1 +Connector_PinHeader_1.27mm +PinHeader_1x02_P1.27mm_Horizontal +Through hole angled pin header, 1x02, 1.27mm pitch, 4.0mm pin length, single row +Through hole angled pin header THT 1x02 1.27mm single row +0 +2 +2 +Connector_PinHeader_1.27mm +PinHeader_1x02_P1.27mm_Vertical +Through hole straight pin header, 1x02, 1.27mm pitch, single row +Through hole pin header THT 1x02 1.27mm single row +0 +2 +2 +Connector_PinHeader_1.27mm +PinHeader_1x02_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x02, 1.27mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x02 1.27mm single row style1 pin1 left +0 +2 +2 +Connector_PinHeader_1.27mm +PinHeader_1x02_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x02, 1.27mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x02 1.27mm single row style2 pin1 right +0 +2 +2 +Connector_PinHeader_1.27mm +PinHeader_1x03_P1.27mm_Horizontal +Through hole angled pin header, 1x03, 1.27mm pitch, 4.0mm pin length, single row +Through hole angled pin header THT 1x03 1.27mm single row +0 +3 +3 +Connector_PinHeader_1.27mm +PinHeader_1x03_P1.27mm_Vertical +Through hole straight pin header, 1x03, 1.27mm pitch, single row +Through hole pin header THT 1x03 1.27mm single row +0 +3 +3 +Connector_PinHeader_1.27mm +PinHeader_1x03_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x03, 1.27mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x03 1.27mm single row style1 pin1 left +0 +3 +3 +Connector_PinHeader_1.27mm +PinHeader_1x03_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x03, 1.27mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x03 1.27mm single row style2 pin1 right +0 +3 +3 +Connector_PinHeader_1.27mm +PinHeader_1x04_P1.27mm_Horizontal +Through hole angled pin header, 1x04, 1.27mm pitch, 4.0mm pin length, single row +Through hole angled pin header THT 1x04 1.27mm single row +0 +4 +4 +Connector_PinHeader_1.27mm +PinHeader_1x04_P1.27mm_Vertical +Through hole straight pin header, 1x04, 1.27mm pitch, single row +Through hole pin header THT 1x04 1.27mm single row +0 +4 +4 +Connector_PinHeader_1.27mm +PinHeader_1x04_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x04, 1.27mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x04 1.27mm single row style1 pin1 left +0 +4 +4 +Connector_PinHeader_1.27mm +PinHeader_1x04_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x04, 1.27mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x04 1.27mm single row style2 pin1 right +0 +4 +4 +Connector_PinHeader_1.27mm +PinHeader_1x05_P1.27mm_Horizontal +Through hole angled pin header, 1x05, 1.27mm pitch, 4.0mm pin length, single row +Through hole angled pin header THT 1x05 1.27mm single row +0 +5 +5 +Connector_PinHeader_1.27mm +PinHeader_1x05_P1.27mm_Vertical +Through hole straight pin header, 1x05, 1.27mm pitch, single row +Through hole pin header THT 1x05 1.27mm single row +0 +5 +5 +Connector_PinHeader_1.27mm +PinHeader_1x05_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x05, 1.27mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x05 1.27mm single row style1 pin1 left +0 +5 +5 +Connector_PinHeader_1.27mm +PinHeader_1x05_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x05, 1.27mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x05 1.27mm single row style2 pin1 right +0 +5 +5 +Connector_PinHeader_1.27mm +PinHeader_1x06_P1.27mm_Horizontal +Through hole angled pin header, 1x06, 1.27mm pitch, 4.0mm pin length, single row +Through hole angled pin header THT 1x06 1.27mm single row +0 +6 +6 +Connector_PinHeader_1.27mm +PinHeader_1x06_P1.27mm_Vertical +Through hole straight pin header, 1x06, 1.27mm pitch, single row +Through hole pin header THT 1x06 1.27mm single row +0 +6 +6 +Connector_PinHeader_1.27mm +PinHeader_1x06_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x06, 1.27mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x06 1.27mm single row style1 pin1 left +0 +6 +6 +Connector_PinHeader_1.27mm +PinHeader_1x06_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x06, 1.27mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x06 1.27mm single row style2 pin1 right +0 +6 +6 +Connector_PinHeader_1.27mm +PinHeader_1x07_P1.27mm_Horizontal +Through hole angled pin header, 1x07, 1.27mm pitch, 4.0mm pin length, single row +Through hole angled pin header THT 1x07 1.27mm single row +0 +7 +7 +Connector_PinHeader_1.27mm +PinHeader_1x07_P1.27mm_Vertical +Through hole straight pin header, 1x07, 1.27mm pitch, single row +Through hole pin header THT 1x07 1.27mm single row +0 +7 +7 +Connector_PinHeader_1.27mm +PinHeader_1x07_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x07, 1.27mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x07 1.27mm single row style1 pin1 left +0 +7 +7 +Connector_PinHeader_1.27mm +PinHeader_1x07_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x07, 1.27mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x07 1.27mm single row style2 pin1 right +0 +7 +7 +Connector_PinHeader_1.27mm +PinHeader_1x08_P1.27mm_Horizontal +Through hole angled pin header, 1x08, 1.27mm pitch, 4.0mm pin length, single row +Through hole angled pin header THT 1x08 1.27mm single row +0 +8 +8 +Connector_PinHeader_1.27mm +PinHeader_1x08_P1.27mm_Vertical +Through hole straight pin header, 1x08, 1.27mm pitch, single row +Through hole pin header THT 1x08 1.27mm single row +0 +8 +8 +Connector_PinHeader_1.27mm +PinHeader_1x08_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x08, 1.27mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x08 1.27mm single row style1 pin1 left +0 +8 +8 +Connector_PinHeader_1.27mm +PinHeader_1x08_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x08, 1.27mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x08 1.27mm single row style2 pin1 right +0 +8 +8 +Connector_PinHeader_1.27mm +PinHeader_1x09_P1.27mm_Horizontal +Through hole angled pin header, 1x09, 1.27mm pitch, 4.0mm pin length, single row +Through hole angled pin header THT 1x09 1.27mm single row +0 +9 +9 +Connector_PinHeader_1.27mm +PinHeader_1x09_P1.27mm_Vertical +Through hole straight pin header, 1x09, 1.27mm pitch, single row +Through hole pin header THT 1x09 1.27mm single row +0 +9 +9 +Connector_PinHeader_1.27mm +PinHeader_1x09_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x09, 1.27mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x09 1.27mm single row style1 pin1 left +0 +9 +9 +Connector_PinHeader_1.27mm +PinHeader_1x09_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x09, 1.27mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x09 1.27mm single row style2 pin1 right +0 +9 +9 +Connector_PinHeader_1.27mm +PinHeader_1x10_P1.27mm_Horizontal +Through hole angled pin header, 1x10, 1.27mm pitch, 4.0mm pin length, single row +Through hole angled pin header THT 1x10 1.27mm single row +0 +10 +10 +Connector_PinHeader_1.27mm +PinHeader_1x10_P1.27mm_Vertical +Through hole straight pin header, 1x10, 1.27mm pitch, single row +Through hole pin header THT 1x10 1.27mm single row +0 +10 +10 +Connector_PinHeader_1.27mm +PinHeader_1x10_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x10, 1.27mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x10 1.27mm single row style1 pin1 left +0 +10 +10 +Connector_PinHeader_1.27mm +PinHeader_1x10_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x10, 1.27mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x10 1.27mm single row style2 pin1 right +0 +10 +10 +Connector_PinHeader_1.27mm +PinHeader_1x11_P1.27mm_Horizontal +Through hole angled pin header, 1x11, 1.27mm pitch, 4.0mm pin length, single row +Through hole angled pin header THT 1x11 1.27mm single row +0 +11 +11 +Connector_PinHeader_1.27mm +PinHeader_1x11_P1.27mm_Vertical +Through hole straight pin header, 1x11, 1.27mm pitch, single row +Through hole pin header THT 1x11 1.27mm single row +0 +11 +11 +Connector_PinHeader_1.27mm +PinHeader_1x11_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x11, 1.27mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x11 1.27mm single row style1 pin1 left +0 +11 +11 +Connector_PinHeader_1.27mm +PinHeader_1x11_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x11, 1.27mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x11 1.27mm single row style2 pin1 right +0 +11 +11 +Connector_PinHeader_1.27mm +PinHeader_1x12_P1.27mm_Horizontal +Through hole angled pin header, 1x12, 1.27mm pitch, 4.0mm pin length, single row +Through hole angled pin header THT 1x12 1.27mm single row +0 +12 +12 +Connector_PinHeader_1.27mm +PinHeader_1x12_P1.27mm_Vertical +Through hole straight pin header, 1x12, 1.27mm pitch, single row +Through hole pin header THT 1x12 1.27mm single row +0 +12 +12 +Connector_PinHeader_1.27mm +PinHeader_1x12_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x12, 1.27mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x12 1.27mm single row style1 pin1 left +0 +12 +12 +Connector_PinHeader_1.27mm +PinHeader_1x12_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x12, 1.27mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x12 1.27mm single row style2 pin1 right +0 +12 +12 +Connector_PinHeader_1.27mm +PinHeader_1x13_P1.27mm_Horizontal +Through hole angled pin header, 1x13, 1.27mm pitch, 4.0mm pin length, single row +Through hole angled pin header THT 1x13 1.27mm single row +0 +13 +13 +Connector_PinHeader_1.27mm +PinHeader_1x13_P1.27mm_Vertical +Through hole straight pin header, 1x13, 1.27mm pitch, single row +Through hole pin header THT 1x13 1.27mm single row +0 +13 +13 +Connector_PinHeader_1.27mm +PinHeader_1x13_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x13, 1.27mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x13 1.27mm single row style1 pin1 left +0 +13 +13 +Connector_PinHeader_1.27mm +PinHeader_1x13_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x13, 1.27mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x13 1.27mm single row style2 pin1 right +0 +13 +13 +Connector_PinHeader_1.27mm +PinHeader_1x14_P1.27mm_Horizontal +Through hole angled pin header, 1x14, 1.27mm pitch, 4.0mm pin length, single row +Through hole angled pin header THT 1x14 1.27mm single row +0 +14 +14 +Connector_PinHeader_1.27mm +PinHeader_1x14_P1.27mm_Vertical +Through hole straight pin header, 1x14, 1.27mm pitch, single row +Through hole pin header THT 1x14 1.27mm single row +0 +14 +14 +Connector_PinHeader_1.27mm +PinHeader_1x14_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x14, 1.27mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x14 1.27mm single row style1 pin1 left +0 +14 +14 +Connector_PinHeader_1.27mm +PinHeader_1x14_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x14, 1.27mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x14 1.27mm single row style2 pin1 right +0 +14 +14 +Connector_PinHeader_1.27mm +PinHeader_1x15_P1.27mm_Horizontal +Through hole angled pin header, 1x15, 1.27mm pitch, 4.0mm pin length, single row +Through hole angled pin header THT 1x15 1.27mm single row +0 +15 +15 +Connector_PinHeader_1.27mm +PinHeader_1x15_P1.27mm_Vertical +Through hole straight pin header, 1x15, 1.27mm pitch, single row +Through hole pin header THT 1x15 1.27mm single row +0 +15 +15 +Connector_PinHeader_1.27mm +PinHeader_1x15_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x15, 1.27mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x15 1.27mm single row style1 pin1 left +0 +15 +15 +Connector_PinHeader_1.27mm +PinHeader_1x15_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x15, 1.27mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x15 1.27mm single row style2 pin1 right +0 +15 +15 +Connector_PinHeader_1.27mm +PinHeader_1x16_P1.27mm_Horizontal +Through hole angled pin header, 1x16, 1.27mm pitch, 4.0mm pin length, single row +Through hole angled pin header THT 1x16 1.27mm single row +0 +16 +16 +Connector_PinHeader_1.27mm +PinHeader_1x16_P1.27mm_Vertical +Through hole straight pin header, 1x16, 1.27mm pitch, single row +Through hole pin header THT 1x16 1.27mm single row +0 +16 +16 +Connector_PinHeader_1.27mm +PinHeader_1x16_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x16, 1.27mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x16 1.27mm single row style1 pin1 left +0 +16 +16 +Connector_PinHeader_1.27mm +PinHeader_1x16_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x16, 1.27mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x16 1.27mm single row style2 pin1 right +0 +16 +16 +Connector_PinHeader_1.27mm +PinHeader_1x17_P1.27mm_Horizontal +Through hole angled pin header, 1x17, 1.27mm pitch, 4.0mm pin length, single row +Through hole angled pin header THT 1x17 1.27mm single row +0 +17 +17 +Connector_PinHeader_1.27mm +PinHeader_1x17_P1.27mm_Vertical +Through hole straight pin header, 1x17, 1.27mm pitch, single row +Through hole pin header THT 1x17 1.27mm single row +0 +17 +17 +Connector_PinHeader_1.27mm +PinHeader_1x17_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x17, 1.27mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x17 1.27mm single row style1 pin1 left +0 +17 +17 +Connector_PinHeader_1.27mm +PinHeader_1x17_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x17, 1.27mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x17 1.27mm single row style2 pin1 right +0 +17 +17 +Connector_PinHeader_1.27mm +PinHeader_1x18_P1.27mm_Horizontal +Through hole angled pin header, 1x18, 1.27mm pitch, 4.0mm pin length, single row +Through hole angled pin header THT 1x18 1.27mm single row +0 +18 +18 +Connector_PinHeader_1.27mm +PinHeader_1x18_P1.27mm_Vertical +Through hole straight pin header, 1x18, 1.27mm pitch, single row +Through hole pin header THT 1x18 1.27mm single row +0 +18 +18 +Connector_PinHeader_1.27mm +PinHeader_1x18_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x18, 1.27mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x18 1.27mm single row style1 pin1 left +0 +18 +18 +Connector_PinHeader_1.27mm +PinHeader_1x18_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x18, 1.27mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x18 1.27mm single row style2 pin1 right +0 +18 +18 +Connector_PinHeader_1.27mm +PinHeader_1x19_P1.27mm_Horizontal +Through hole angled pin header, 1x19, 1.27mm pitch, 4.0mm pin length, single row +Through hole angled pin header THT 1x19 1.27mm single row +0 +19 +19 +Connector_PinHeader_1.27mm +PinHeader_1x19_P1.27mm_Vertical +Through hole straight pin header, 1x19, 1.27mm pitch, single row +Through hole pin header THT 1x19 1.27mm single row +0 +19 +19 +Connector_PinHeader_1.27mm +PinHeader_1x19_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x19, 1.27mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x19 1.27mm single row style1 pin1 left +0 +19 +19 +Connector_PinHeader_1.27mm +PinHeader_1x19_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x19, 1.27mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x19 1.27mm single row style2 pin1 right +0 +19 +19 +Connector_PinHeader_1.27mm +PinHeader_1x20_P1.27mm_Horizontal +Through hole angled pin header, 1x20, 1.27mm pitch, 4.0mm pin length, single row +Through hole angled pin header THT 1x20 1.27mm single row +0 +20 +20 +Connector_PinHeader_1.27mm +PinHeader_1x20_P1.27mm_Vertical +Through hole straight pin header, 1x20, 1.27mm pitch, single row +Through hole pin header THT 1x20 1.27mm single row +0 +20 +20 +Connector_PinHeader_1.27mm +PinHeader_1x20_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x20, 1.27mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x20 1.27mm single row style1 pin1 left +0 +20 +20 +Connector_PinHeader_1.27mm +PinHeader_1x20_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x20, 1.27mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x20 1.27mm single row style2 pin1 right +0 +20 +20 +Connector_PinHeader_1.27mm +PinHeader_1x21_P1.27mm_Horizontal +Through hole angled pin header, 1x21, 1.27mm pitch, 4.0mm pin length, single row +Through hole angled pin header THT 1x21 1.27mm single row +0 +21 +21 +Connector_PinHeader_1.27mm +PinHeader_1x21_P1.27mm_Vertical +Through hole straight pin header, 1x21, 1.27mm pitch, single row +Through hole pin header THT 1x21 1.27mm single row +0 +21 +21 +Connector_PinHeader_1.27mm +PinHeader_1x21_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x21, 1.27mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x21 1.27mm single row style1 pin1 left +0 +21 +21 +Connector_PinHeader_1.27mm +PinHeader_1x21_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x21, 1.27mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x21 1.27mm single row style2 pin1 right +0 +21 +21 +Connector_PinHeader_1.27mm +PinHeader_1x22_P1.27mm_Horizontal +Through hole angled pin header, 1x22, 1.27mm pitch, 4.0mm pin length, single row +Through hole angled pin header THT 1x22 1.27mm single row +0 +22 +22 +Connector_PinHeader_1.27mm +PinHeader_1x22_P1.27mm_Vertical +Through hole straight pin header, 1x22, 1.27mm pitch, single row +Through hole pin header THT 1x22 1.27mm single row +0 +22 +22 +Connector_PinHeader_1.27mm +PinHeader_1x22_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x22, 1.27mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x22 1.27mm single row style1 pin1 left +0 +22 +22 +Connector_PinHeader_1.27mm +PinHeader_1x22_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x22, 1.27mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x22 1.27mm single row style2 pin1 right +0 +22 +22 +Connector_PinHeader_1.27mm +PinHeader_1x23_P1.27mm_Horizontal +Through hole angled pin header, 1x23, 1.27mm pitch, 4.0mm pin length, single row +Through hole angled pin header THT 1x23 1.27mm single row +0 +23 +23 +Connector_PinHeader_1.27mm +PinHeader_1x23_P1.27mm_Vertical +Through hole straight pin header, 1x23, 1.27mm pitch, single row +Through hole pin header THT 1x23 1.27mm single row +0 +23 +23 +Connector_PinHeader_1.27mm +PinHeader_1x23_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x23, 1.27mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x23 1.27mm single row style1 pin1 left +0 +23 +23 +Connector_PinHeader_1.27mm +PinHeader_1x23_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x23, 1.27mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x23 1.27mm single row style2 pin1 right +0 +23 +23 +Connector_PinHeader_1.27mm +PinHeader_1x24_P1.27mm_Horizontal +Through hole angled pin header, 1x24, 1.27mm pitch, 4.0mm pin length, single row +Through hole angled pin header THT 1x24 1.27mm single row +0 +24 +24 +Connector_PinHeader_1.27mm +PinHeader_1x24_P1.27mm_Vertical +Through hole straight pin header, 1x24, 1.27mm pitch, single row +Through hole pin header THT 1x24 1.27mm single row +0 +24 +24 +Connector_PinHeader_1.27mm +PinHeader_1x24_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x24, 1.27mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x24 1.27mm single row style1 pin1 left +0 +24 +24 +Connector_PinHeader_1.27mm +PinHeader_1x24_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x24, 1.27mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x24 1.27mm single row style2 pin1 right +0 +24 +24 +Connector_PinHeader_1.27mm +PinHeader_1x25_P1.27mm_Horizontal +Through hole angled pin header, 1x25, 1.27mm pitch, 4.0mm pin length, single row +Through hole angled pin header THT 1x25 1.27mm single row +0 +25 +25 +Connector_PinHeader_1.27mm +PinHeader_1x25_P1.27mm_Vertical +Through hole straight pin header, 1x25, 1.27mm pitch, single row +Through hole pin header THT 1x25 1.27mm single row +0 +25 +25 +Connector_PinHeader_1.27mm +PinHeader_1x25_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x25, 1.27mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x25 1.27mm single row style1 pin1 left +0 +25 +25 +Connector_PinHeader_1.27mm +PinHeader_1x25_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x25, 1.27mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x25 1.27mm single row style2 pin1 right +0 +25 +25 +Connector_PinHeader_1.27mm +PinHeader_1x26_P1.27mm_Horizontal +Through hole angled pin header, 1x26, 1.27mm pitch, 4.0mm pin length, single row +Through hole angled pin header THT 1x26 1.27mm single row +0 +26 +26 +Connector_PinHeader_1.27mm +PinHeader_1x26_P1.27mm_Vertical +Through hole straight pin header, 1x26, 1.27mm pitch, single row +Through hole pin header THT 1x26 1.27mm single row +0 +26 +26 +Connector_PinHeader_1.27mm +PinHeader_1x26_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x26, 1.27mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x26 1.27mm single row style1 pin1 left +0 +26 +26 +Connector_PinHeader_1.27mm +PinHeader_1x26_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x26, 1.27mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x26 1.27mm single row style2 pin1 right +0 +26 +26 +Connector_PinHeader_1.27mm +PinHeader_1x27_P1.27mm_Horizontal +Through hole angled pin header, 1x27, 1.27mm pitch, 4.0mm pin length, single row +Through hole angled pin header THT 1x27 1.27mm single row +0 +27 +27 +Connector_PinHeader_1.27mm +PinHeader_1x27_P1.27mm_Vertical +Through hole straight pin header, 1x27, 1.27mm pitch, single row +Through hole pin header THT 1x27 1.27mm single row +0 +27 +27 +Connector_PinHeader_1.27mm +PinHeader_1x27_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x27, 1.27mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x27 1.27mm single row style1 pin1 left +0 +27 +27 +Connector_PinHeader_1.27mm +PinHeader_1x27_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x27, 1.27mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x27 1.27mm single row style2 pin1 right +0 +27 +27 +Connector_PinHeader_1.27mm +PinHeader_1x28_P1.27mm_Horizontal +Through hole angled pin header, 1x28, 1.27mm pitch, 4.0mm pin length, single row +Through hole angled pin header THT 1x28 1.27mm single row +0 +28 +28 +Connector_PinHeader_1.27mm +PinHeader_1x28_P1.27mm_Vertical +Through hole straight pin header, 1x28, 1.27mm pitch, single row +Through hole pin header THT 1x28 1.27mm single row +0 +28 +28 +Connector_PinHeader_1.27mm +PinHeader_1x28_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x28, 1.27mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x28 1.27mm single row style1 pin1 left +0 +28 +28 +Connector_PinHeader_1.27mm +PinHeader_1x28_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x28, 1.27mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x28 1.27mm single row style2 pin1 right +0 +28 +28 +Connector_PinHeader_1.27mm +PinHeader_1x29_P1.27mm_Horizontal +Through hole angled pin header, 1x29, 1.27mm pitch, 4.0mm pin length, single row +Through hole angled pin header THT 1x29 1.27mm single row +0 +29 +29 +Connector_PinHeader_1.27mm +PinHeader_1x29_P1.27mm_Vertical +Through hole straight pin header, 1x29, 1.27mm pitch, single row +Through hole pin header THT 1x29 1.27mm single row +0 +29 +29 +Connector_PinHeader_1.27mm +PinHeader_1x29_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x29, 1.27mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x29 1.27mm single row style1 pin1 left +0 +29 +29 +Connector_PinHeader_1.27mm +PinHeader_1x29_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x29, 1.27mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x29 1.27mm single row style2 pin1 right +0 +29 +29 +Connector_PinHeader_1.27mm +PinHeader_1x30_P1.27mm_Horizontal +Through hole angled pin header, 1x30, 1.27mm pitch, 4.0mm pin length, single row +Through hole angled pin header THT 1x30 1.27mm single row +0 +30 +30 +Connector_PinHeader_1.27mm +PinHeader_1x30_P1.27mm_Vertical +Through hole straight pin header, 1x30, 1.27mm pitch, single row +Through hole pin header THT 1x30 1.27mm single row +0 +30 +30 +Connector_PinHeader_1.27mm +PinHeader_1x30_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x30, 1.27mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x30 1.27mm single row style1 pin1 left +0 +30 +30 +Connector_PinHeader_1.27mm +PinHeader_1x30_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x30, 1.27mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x30 1.27mm single row style2 pin1 right +0 +30 +30 +Connector_PinHeader_1.27mm +PinHeader_1x31_P1.27mm_Horizontal +Through hole angled pin header, 1x31, 1.27mm pitch, 4.0mm pin length, single row +Through hole angled pin header THT 1x31 1.27mm single row +0 +31 +31 +Connector_PinHeader_1.27mm +PinHeader_1x31_P1.27mm_Vertical +Through hole straight pin header, 1x31, 1.27mm pitch, single row +Through hole pin header THT 1x31 1.27mm single row +0 +31 +31 +Connector_PinHeader_1.27mm +PinHeader_1x31_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x31, 1.27mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x31 1.27mm single row style1 pin1 left +0 +31 +31 +Connector_PinHeader_1.27mm +PinHeader_1x31_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x31, 1.27mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x31 1.27mm single row style2 pin1 right +0 +31 +31 +Connector_PinHeader_1.27mm +PinHeader_1x32_P1.27mm_Horizontal +Through hole angled pin header, 1x32, 1.27mm pitch, 4.0mm pin length, single row +Through hole angled pin header THT 1x32 1.27mm single row +0 +32 +32 +Connector_PinHeader_1.27mm +PinHeader_1x32_P1.27mm_Vertical +Through hole straight pin header, 1x32, 1.27mm pitch, single row +Through hole pin header THT 1x32 1.27mm single row +0 +32 +32 +Connector_PinHeader_1.27mm +PinHeader_1x32_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x32, 1.27mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x32 1.27mm single row style1 pin1 left +0 +32 +32 +Connector_PinHeader_1.27mm +PinHeader_1x32_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x32, 1.27mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x32 1.27mm single row style2 pin1 right +0 +32 +32 +Connector_PinHeader_1.27mm +PinHeader_1x33_P1.27mm_Horizontal +Through hole angled pin header, 1x33, 1.27mm pitch, 4.0mm pin length, single row +Through hole angled pin header THT 1x33 1.27mm single row +0 +33 +33 +Connector_PinHeader_1.27mm +PinHeader_1x33_P1.27mm_Vertical +Through hole straight pin header, 1x33, 1.27mm pitch, single row +Through hole pin header THT 1x33 1.27mm single row +0 +33 +33 +Connector_PinHeader_1.27mm +PinHeader_1x33_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x33, 1.27mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x33 1.27mm single row style1 pin1 left +0 +33 +33 +Connector_PinHeader_1.27mm +PinHeader_1x33_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x33, 1.27mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x33 1.27mm single row style2 pin1 right +0 +33 +33 +Connector_PinHeader_1.27mm +PinHeader_1x34_P1.27mm_Horizontal +Through hole angled pin header, 1x34, 1.27mm pitch, 4.0mm pin length, single row +Through hole angled pin header THT 1x34 1.27mm single row +0 +34 +34 +Connector_PinHeader_1.27mm +PinHeader_1x34_P1.27mm_Vertical +Through hole straight pin header, 1x34, 1.27mm pitch, single row +Through hole pin header THT 1x34 1.27mm single row +0 +34 +34 +Connector_PinHeader_1.27mm +PinHeader_1x34_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x34, 1.27mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x34 1.27mm single row style1 pin1 left +0 +34 +34 +Connector_PinHeader_1.27mm +PinHeader_1x34_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x34, 1.27mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x34 1.27mm single row style2 pin1 right +0 +34 +34 +Connector_PinHeader_1.27mm +PinHeader_1x35_P1.27mm_Horizontal +Through hole angled pin header, 1x35, 1.27mm pitch, 4.0mm pin length, single row +Through hole angled pin header THT 1x35 1.27mm single row +0 +35 +35 +Connector_PinHeader_1.27mm +PinHeader_1x35_P1.27mm_Vertical +Through hole straight pin header, 1x35, 1.27mm pitch, single row +Through hole pin header THT 1x35 1.27mm single row +0 +35 +35 +Connector_PinHeader_1.27mm +PinHeader_1x35_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x35, 1.27mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x35 1.27mm single row style1 pin1 left +0 +35 +35 +Connector_PinHeader_1.27mm +PinHeader_1x35_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x35, 1.27mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x35 1.27mm single row style2 pin1 right +0 +35 +35 +Connector_PinHeader_1.27mm +PinHeader_1x36_P1.27mm_Horizontal +Through hole angled pin header, 1x36, 1.27mm pitch, 4.0mm pin length, single row +Through hole angled pin header THT 1x36 1.27mm single row +0 +36 +36 +Connector_PinHeader_1.27mm +PinHeader_1x36_P1.27mm_Vertical +Through hole straight pin header, 1x36, 1.27mm pitch, single row +Through hole pin header THT 1x36 1.27mm single row +0 +36 +36 +Connector_PinHeader_1.27mm +PinHeader_1x36_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x36, 1.27mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x36 1.27mm single row style1 pin1 left +0 +36 +36 +Connector_PinHeader_1.27mm +PinHeader_1x36_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x36, 1.27mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x36 1.27mm single row style2 pin1 right +0 +36 +36 +Connector_PinHeader_1.27mm +PinHeader_1x37_P1.27mm_Horizontal +Through hole angled pin header, 1x37, 1.27mm pitch, 4.0mm pin length, single row +Through hole angled pin header THT 1x37 1.27mm single row +0 +37 +37 +Connector_PinHeader_1.27mm +PinHeader_1x37_P1.27mm_Vertical +Through hole straight pin header, 1x37, 1.27mm pitch, single row +Through hole pin header THT 1x37 1.27mm single row +0 +37 +37 +Connector_PinHeader_1.27mm +PinHeader_1x37_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x37, 1.27mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x37 1.27mm single row style1 pin1 left +0 +37 +37 +Connector_PinHeader_1.27mm +PinHeader_1x37_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x37, 1.27mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x37 1.27mm single row style2 pin1 right +0 +37 +37 +Connector_PinHeader_1.27mm +PinHeader_1x38_P1.27mm_Horizontal +Through hole angled pin header, 1x38, 1.27mm pitch, 4.0mm pin length, single row +Through hole angled pin header THT 1x38 1.27mm single row +0 +38 +38 +Connector_PinHeader_1.27mm +PinHeader_1x38_P1.27mm_Vertical +Through hole straight pin header, 1x38, 1.27mm pitch, single row +Through hole pin header THT 1x38 1.27mm single row +0 +38 +38 +Connector_PinHeader_1.27mm +PinHeader_1x38_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x38, 1.27mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x38 1.27mm single row style1 pin1 left +0 +38 +38 +Connector_PinHeader_1.27mm +PinHeader_1x38_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x38, 1.27mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x38 1.27mm single row style2 pin1 right +0 +38 +38 +Connector_PinHeader_1.27mm +PinHeader_1x39_P1.27mm_Horizontal +Through hole angled pin header, 1x39, 1.27mm pitch, 4.0mm pin length, single row +Through hole angled pin header THT 1x39 1.27mm single row +0 +39 +39 +Connector_PinHeader_1.27mm +PinHeader_1x39_P1.27mm_Vertical +Through hole straight pin header, 1x39, 1.27mm pitch, single row +Through hole pin header THT 1x39 1.27mm single row +0 +39 +39 +Connector_PinHeader_1.27mm +PinHeader_1x39_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x39, 1.27mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x39 1.27mm single row style1 pin1 left +0 +39 +39 +Connector_PinHeader_1.27mm +PinHeader_1x39_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x39, 1.27mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x39 1.27mm single row style2 pin1 right +0 +39 +39 +Connector_PinHeader_1.27mm +PinHeader_1x40_P1.27mm_Horizontal +Through hole angled pin header, 1x40, 1.27mm pitch, 4.0mm pin length, single row +Through hole angled pin header THT 1x40 1.27mm single row +0 +40 +40 +Connector_PinHeader_1.27mm +PinHeader_1x40_P1.27mm_Vertical +Through hole straight pin header, 1x40, 1.27mm pitch, single row +Through hole pin header THT 1x40 1.27mm single row +0 +40 +40 +Connector_PinHeader_1.27mm +PinHeader_1x40_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x40, 1.27mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x40 1.27mm single row style1 pin1 left +0 +40 +40 +Connector_PinHeader_1.27mm +PinHeader_1x40_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x40, 1.27mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x40 1.27mm single row style2 pin1 right +0 +40 +40 +Connector_PinHeader_1.27mm +PinHeader_2x01_P1.27mm_Horizontal +Through hole angled pin header, 2x01, 1.27mm pitch, 4.0mm pin length, double rows +Through hole angled pin header THT 2x01 1.27mm double row +0 +2 +2 +Connector_PinHeader_1.27mm +PinHeader_2x01_P1.27mm_Vertical +Through hole straight pin header, 2x01, 1.27mm pitch, double rows +Through hole pin header THT 2x01 1.27mm double row +0 +2 +2 +Connector_PinHeader_1.27mm +PinHeader_2x01_P1.27mm_Vertical_SMD +surface-mounted straight pin header, 2x01, 1.27mm pitch, double rows +Surface mounted pin header SMD 2x01 1.27mm double row +0 +2 +2 +Connector_PinHeader_1.27mm +PinHeader_2x02_P1.27mm_Horizontal +Through hole angled pin header, 2x02, 1.27mm pitch, 4.0mm pin length, double rows +Through hole angled pin header THT 2x02 1.27mm double row +0 +4 +4 +Connector_PinHeader_1.27mm +PinHeader_2x02_P1.27mm_Vertical +Through hole straight pin header, 2x02, 1.27mm pitch, double rows +Through hole pin header THT 2x02 1.27mm double row +0 +4 +4 +Connector_PinHeader_1.27mm +PinHeader_2x02_P1.27mm_Vertical_SMD +surface-mounted straight pin header, 2x02, 1.27mm pitch, double rows +Surface mounted pin header SMD 2x02 1.27mm double row +0 +4 +4 +Connector_PinHeader_1.27mm +PinHeader_2x03_P1.27mm_Horizontal +Through hole angled pin header, 2x03, 1.27mm pitch, 4.0mm pin length, double rows +Through hole angled pin header THT 2x03 1.27mm double row +0 +6 +6 +Connector_PinHeader_1.27mm +PinHeader_2x03_P1.27mm_Vertical +Through hole straight pin header, 2x03, 1.27mm pitch, double rows +Through hole pin header THT 2x03 1.27mm double row +0 +6 +6 +Connector_PinHeader_1.27mm +PinHeader_2x03_P1.27mm_Vertical_SMD +surface-mounted straight pin header, 2x03, 1.27mm pitch, double rows +Surface mounted pin header SMD 2x03 1.27mm double row +0 +6 +6 +Connector_PinHeader_1.27mm +PinHeader_2x04_P1.27mm_Horizontal +Through hole angled pin header, 2x04, 1.27mm pitch, 4.0mm pin length, double rows +Through hole angled pin header THT 2x04 1.27mm double row +0 +8 +8 +Connector_PinHeader_1.27mm +PinHeader_2x04_P1.27mm_Vertical +Through hole straight pin header, 2x04, 1.27mm pitch, double rows +Through hole pin header THT 2x04 1.27mm double row +0 +8 +8 +Connector_PinHeader_1.27mm +PinHeader_2x04_P1.27mm_Vertical_SMD +surface-mounted straight pin header, 2x04, 1.27mm pitch, double rows +Surface mounted pin header SMD 2x04 1.27mm double row +0 +8 +8 +Connector_PinHeader_1.27mm +PinHeader_2x05_P1.27mm_Horizontal +Through hole angled pin header, 2x05, 1.27mm pitch, 4.0mm pin length, double rows +Through hole angled pin header THT 2x05 1.27mm double row +0 +10 +10 +Connector_PinHeader_1.27mm +PinHeader_2x05_P1.27mm_Vertical +Through hole straight pin header, 2x05, 1.27mm pitch, double rows +Through hole pin header THT 2x05 1.27mm double row +0 +10 +10 +Connector_PinHeader_1.27mm +PinHeader_2x05_P1.27mm_Vertical_SMD +surface-mounted straight pin header, 2x05, 1.27mm pitch, double rows +Surface mounted pin header SMD 2x05 1.27mm double row +0 +10 +10 +Connector_PinHeader_1.27mm +PinHeader_2x06_P1.27mm_Horizontal +Through hole angled pin header, 2x06, 1.27mm pitch, 4.0mm pin length, double rows +Through hole angled pin header THT 2x06 1.27mm double row +0 +12 +12 +Connector_PinHeader_1.27mm +PinHeader_2x06_P1.27mm_Vertical +Through hole straight pin header, 2x06, 1.27mm pitch, double rows +Through hole pin header THT 2x06 1.27mm double row +0 +12 +12 +Connector_PinHeader_1.27mm +PinHeader_2x06_P1.27mm_Vertical_SMD +surface-mounted straight pin header, 2x06, 1.27mm pitch, double rows +Surface mounted pin header SMD 2x06 1.27mm double row +0 +12 +12 +Connector_PinHeader_1.27mm +PinHeader_2x07_P1.27mm_Horizontal +Through hole angled pin header, 2x07, 1.27mm pitch, 4.0mm pin length, double rows +Through hole angled pin header THT 2x07 1.27mm double row +0 +14 +14 +Connector_PinHeader_1.27mm +PinHeader_2x07_P1.27mm_Vertical +Through hole straight pin header, 2x07, 1.27mm pitch, double rows +Through hole pin header THT 2x07 1.27mm double row +0 +14 +14 +Connector_PinHeader_1.27mm +PinHeader_2x07_P1.27mm_Vertical_SMD +surface-mounted straight pin header, 2x07, 1.27mm pitch, double rows +Surface mounted pin header SMD 2x07 1.27mm double row +0 +14 +14 +Connector_PinHeader_1.27mm +PinHeader_2x08_P1.27mm_Horizontal +Through hole angled pin header, 2x08, 1.27mm pitch, 4.0mm pin length, double rows +Through hole angled pin header THT 2x08 1.27mm double row +0 +16 +16 +Connector_PinHeader_1.27mm +PinHeader_2x08_P1.27mm_Vertical +Through hole straight pin header, 2x08, 1.27mm pitch, double rows +Through hole pin header THT 2x08 1.27mm double row +0 +16 +16 +Connector_PinHeader_1.27mm +PinHeader_2x08_P1.27mm_Vertical_SMD +surface-mounted straight pin header, 2x08, 1.27mm pitch, double rows +Surface mounted pin header SMD 2x08 1.27mm double row +0 +16 +16 +Connector_PinHeader_1.27mm +PinHeader_2x09_P1.27mm_Horizontal +Through hole angled pin header, 2x09, 1.27mm pitch, 4.0mm pin length, double rows +Through hole angled pin header THT 2x09 1.27mm double row +0 +18 +18 +Connector_PinHeader_1.27mm +PinHeader_2x09_P1.27mm_Vertical +Through hole straight pin header, 2x09, 1.27mm pitch, double rows +Through hole pin header THT 2x09 1.27mm double row +0 +18 +18 +Connector_PinHeader_1.27mm +PinHeader_2x09_P1.27mm_Vertical_SMD +surface-mounted straight pin header, 2x09, 1.27mm pitch, double rows +Surface mounted pin header SMD 2x09 1.27mm double row +0 +18 +18 +Connector_PinHeader_1.27mm +PinHeader_2x10_P1.27mm_Horizontal +Through hole angled pin header, 2x10, 1.27mm pitch, 4.0mm pin length, double rows +Through hole angled pin header THT 2x10 1.27mm double row +0 +20 +20 +Connector_PinHeader_1.27mm +PinHeader_2x10_P1.27mm_Vertical +Through hole straight pin header, 2x10, 1.27mm pitch, double rows +Through hole pin header THT 2x10 1.27mm double row +0 +20 +20 +Connector_PinHeader_1.27mm +PinHeader_2x10_P1.27mm_Vertical_SMD +surface-mounted straight pin header, 2x10, 1.27mm pitch, double rows +Surface mounted pin header SMD 2x10 1.27mm double row +0 +20 +20 +Connector_PinHeader_1.27mm +PinHeader_2x11_P1.27mm_Horizontal +Through hole angled pin header, 2x11, 1.27mm pitch, 4.0mm pin length, double rows +Through hole angled pin header THT 2x11 1.27mm double row +0 +22 +22 +Connector_PinHeader_1.27mm +PinHeader_2x11_P1.27mm_Vertical +Through hole straight pin header, 2x11, 1.27mm pitch, double rows +Through hole pin header THT 2x11 1.27mm double row +0 +22 +22 +Connector_PinHeader_1.27mm +PinHeader_2x11_P1.27mm_Vertical_SMD +surface-mounted straight pin header, 2x11, 1.27mm pitch, double rows +Surface mounted pin header SMD 2x11 1.27mm double row +0 +22 +22 +Connector_PinHeader_1.27mm +PinHeader_2x12_P1.27mm_Horizontal +Through hole angled pin header, 2x12, 1.27mm pitch, 4.0mm pin length, double rows +Through hole angled pin header THT 2x12 1.27mm double row +0 +24 +24 +Connector_PinHeader_1.27mm +PinHeader_2x12_P1.27mm_Vertical +Through hole straight pin header, 2x12, 1.27mm pitch, double rows +Through hole pin header THT 2x12 1.27mm double row +0 +24 +24 +Connector_PinHeader_1.27mm +PinHeader_2x12_P1.27mm_Vertical_SMD +surface-mounted straight pin header, 2x12, 1.27mm pitch, double rows +Surface mounted pin header SMD 2x12 1.27mm double row +0 +24 +24 +Connector_PinHeader_1.27mm +PinHeader_2x13_P1.27mm_Horizontal +Through hole angled pin header, 2x13, 1.27mm pitch, 4.0mm pin length, double rows +Through hole angled pin header THT 2x13 1.27mm double row +0 +26 +26 +Connector_PinHeader_1.27mm +PinHeader_2x13_P1.27mm_Vertical +Through hole straight pin header, 2x13, 1.27mm pitch, double rows +Through hole pin header THT 2x13 1.27mm double row +0 +26 +26 +Connector_PinHeader_1.27mm +PinHeader_2x13_P1.27mm_Vertical_SMD +surface-mounted straight pin header, 2x13, 1.27mm pitch, double rows +Surface mounted pin header SMD 2x13 1.27mm double row +0 +26 +26 +Connector_PinHeader_1.27mm +PinHeader_2x14_P1.27mm_Horizontal +Through hole angled pin header, 2x14, 1.27mm pitch, 4.0mm pin length, double rows +Through hole angled pin header THT 2x14 1.27mm double row +0 +28 +28 +Connector_PinHeader_1.27mm +PinHeader_2x14_P1.27mm_Vertical +Through hole straight pin header, 2x14, 1.27mm pitch, double rows +Through hole pin header THT 2x14 1.27mm double row +0 +28 +28 +Connector_PinHeader_1.27mm +PinHeader_2x14_P1.27mm_Vertical_SMD +surface-mounted straight pin header, 2x14, 1.27mm pitch, double rows +Surface mounted pin header SMD 2x14 1.27mm double row +0 +28 +28 +Connector_PinHeader_1.27mm +PinHeader_2x15_P1.27mm_Horizontal +Through hole angled pin header, 2x15, 1.27mm pitch, 4.0mm pin length, double rows +Through hole angled pin header THT 2x15 1.27mm double row +0 +30 +30 +Connector_PinHeader_1.27mm +PinHeader_2x15_P1.27mm_Vertical +Through hole straight pin header, 2x15, 1.27mm pitch, double rows +Through hole pin header THT 2x15 1.27mm double row +0 +30 +30 +Connector_PinHeader_1.27mm +PinHeader_2x15_P1.27mm_Vertical_SMD +surface-mounted straight pin header, 2x15, 1.27mm pitch, double rows +Surface mounted pin header SMD 2x15 1.27mm double row +0 +30 +30 +Connector_PinHeader_1.27mm +PinHeader_2x16_P1.27mm_Horizontal +Through hole angled pin header, 2x16, 1.27mm pitch, 4.0mm pin length, double rows +Through hole angled pin header THT 2x16 1.27mm double row +0 +32 +32 +Connector_PinHeader_1.27mm +PinHeader_2x16_P1.27mm_Vertical +Through hole straight pin header, 2x16, 1.27mm pitch, double rows +Through hole pin header THT 2x16 1.27mm double row +0 +32 +32 +Connector_PinHeader_1.27mm +PinHeader_2x16_P1.27mm_Vertical_SMD +surface-mounted straight pin header, 2x16, 1.27mm pitch, double rows +Surface mounted pin header SMD 2x16 1.27mm double row +0 +32 +32 +Connector_PinHeader_1.27mm +PinHeader_2x17_P1.27mm_Horizontal +Through hole angled pin header, 2x17, 1.27mm pitch, 4.0mm pin length, double rows +Through hole angled pin header THT 2x17 1.27mm double row +0 +34 +34 +Connector_PinHeader_1.27mm +PinHeader_2x17_P1.27mm_Vertical +Through hole straight pin header, 2x17, 1.27mm pitch, double rows +Through hole pin header THT 2x17 1.27mm double row +0 +34 +34 +Connector_PinHeader_1.27mm +PinHeader_2x17_P1.27mm_Vertical_SMD +surface-mounted straight pin header, 2x17, 1.27mm pitch, double rows +Surface mounted pin header SMD 2x17 1.27mm double row +0 +34 +34 +Connector_PinHeader_1.27mm +PinHeader_2x18_P1.27mm_Horizontal +Through hole angled pin header, 2x18, 1.27mm pitch, 4.0mm pin length, double rows +Through hole angled pin header THT 2x18 1.27mm double row +0 +36 +36 +Connector_PinHeader_1.27mm +PinHeader_2x18_P1.27mm_Vertical +Through hole straight pin header, 2x18, 1.27mm pitch, double rows +Through hole pin header THT 2x18 1.27mm double row +0 +36 +36 +Connector_PinHeader_1.27mm +PinHeader_2x18_P1.27mm_Vertical_SMD +surface-mounted straight pin header, 2x18, 1.27mm pitch, double rows +Surface mounted pin header SMD 2x18 1.27mm double row +0 +36 +36 +Connector_PinHeader_1.27mm +PinHeader_2x19_P1.27mm_Horizontal +Through hole angled pin header, 2x19, 1.27mm pitch, 4.0mm pin length, double rows +Through hole angled pin header THT 2x19 1.27mm double row +0 +38 +38 +Connector_PinHeader_1.27mm +PinHeader_2x19_P1.27mm_Vertical +Through hole straight pin header, 2x19, 1.27mm pitch, double rows +Through hole pin header THT 2x19 1.27mm double row +0 +38 +38 +Connector_PinHeader_1.27mm +PinHeader_2x19_P1.27mm_Vertical_SMD +surface-mounted straight pin header, 2x19, 1.27mm pitch, double rows +Surface mounted pin header SMD 2x19 1.27mm double row +0 +38 +38 +Connector_PinHeader_1.27mm +PinHeader_2x20_P1.27mm_Horizontal +Through hole angled pin header, 2x20, 1.27mm pitch, 4.0mm pin length, double rows +Through hole angled pin header THT 2x20 1.27mm double row +0 +40 +40 +Connector_PinHeader_1.27mm +PinHeader_2x20_P1.27mm_Vertical +Through hole straight pin header, 2x20, 1.27mm pitch, double rows +Through hole pin header THT 2x20 1.27mm double row +0 +40 +40 +Connector_PinHeader_1.27mm +PinHeader_2x20_P1.27mm_Vertical_SMD +surface-mounted straight pin header, 2x20, 1.27mm pitch, double rows +Surface mounted pin header SMD 2x20 1.27mm double row +0 +40 +40 +Connector_PinHeader_1.27mm +PinHeader_2x21_P1.27mm_Horizontal +Through hole angled pin header, 2x21, 1.27mm pitch, 4.0mm pin length, double rows +Through hole angled pin header THT 2x21 1.27mm double row +0 +42 +42 +Connector_PinHeader_1.27mm +PinHeader_2x21_P1.27mm_Vertical +Through hole straight pin header, 2x21, 1.27mm pitch, double rows +Through hole pin header THT 2x21 1.27mm double row +0 +42 +42 +Connector_PinHeader_1.27mm +PinHeader_2x21_P1.27mm_Vertical_SMD +surface-mounted straight pin header, 2x21, 1.27mm pitch, double rows +Surface mounted pin header SMD 2x21 1.27mm double row +0 +42 +42 +Connector_PinHeader_1.27mm +PinHeader_2x22_P1.27mm_Horizontal +Through hole angled pin header, 2x22, 1.27mm pitch, 4.0mm pin length, double rows +Through hole angled pin header THT 2x22 1.27mm double row +0 +44 +44 +Connector_PinHeader_1.27mm +PinHeader_2x22_P1.27mm_Vertical +Through hole straight pin header, 2x22, 1.27mm pitch, double rows +Through hole pin header THT 2x22 1.27mm double row +0 +44 +44 +Connector_PinHeader_1.27mm +PinHeader_2x22_P1.27mm_Vertical_SMD +surface-mounted straight pin header, 2x22, 1.27mm pitch, double rows +Surface mounted pin header SMD 2x22 1.27mm double row +0 +44 +44 +Connector_PinHeader_1.27mm +PinHeader_2x23_P1.27mm_Horizontal +Through hole angled pin header, 2x23, 1.27mm pitch, 4.0mm pin length, double rows +Through hole angled pin header THT 2x23 1.27mm double row +0 +46 +46 +Connector_PinHeader_1.27mm +PinHeader_2x23_P1.27mm_Vertical +Through hole straight pin header, 2x23, 1.27mm pitch, double rows +Through hole pin header THT 2x23 1.27mm double row +0 +46 +46 +Connector_PinHeader_1.27mm +PinHeader_2x23_P1.27mm_Vertical_SMD +surface-mounted straight pin header, 2x23, 1.27mm pitch, double rows +Surface mounted pin header SMD 2x23 1.27mm double row +0 +46 +46 +Connector_PinHeader_1.27mm +PinHeader_2x24_P1.27mm_Horizontal +Through hole angled pin header, 2x24, 1.27mm pitch, 4.0mm pin length, double rows +Through hole angled pin header THT 2x24 1.27mm double row +0 +48 +48 +Connector_PinHeader_1.27mm +PinHeader_2x24_P1.27mm_Vertical +Through hole straight pin header, 2x24, 1.27mm pitch, double rows +Through hole pin header THT 2x24 1.27mm double row +0 +48 +48 +Connector_PinHeader_1.27mm +PinHeader_2x24_P1.27mm_Vertical_SMD +surface-mounted straight pin header, 2x24, 1.27mm pitch, double rows +Surface mounted pin header SMD 2x24 1.27mm double row +0 +48 +48 +Connector_PinHeader_1.27mm +PinHeader_2x25_P1.27mm_Horizontal +Through hole angled pin header, 2x25, 1.27mm pitch, 4.0mm pin length, double rows +Through hole angled pin header THT 2x25 1.27mm double row +0 +50 +50 +Connector_PinHeader_1.27mm +PinHeader_2x25_P1.27mm_Vertical +Through hole straight pin header, 2x25, 1.27mm pitch, double rows +Through hole pin header THT 2x25 1.27mm double row +0 +50 +50 +Connector_PinHeader_1.27mm +PinHeader_2x25_P1.27mm_Vertical_SMD +surface-mounted straight pin header, 2x25, 1.27mm pitch, double rows +Surface mounted pin header SMD 2x25 1.27mm double row +0 +50 +50 +Connector_PinHeader_1.27mm +PinHeader_2x26_P1.27mm_Horizontal +Through hole angled pin header, 2x26, 1.27mm pitch, 4.0mm pin length, double rows +Through hole angled pin header THT 2x26 1.27mm double row +0 +52 +52 +Connector_PinHeader_1.27mm +PinHeader_2x26_P1.27mm_Vertical +Through hole straight pin header, 2x26, 1.27mm pitch, double rows +Through hole pin header THT 2x26 1.27mm double row +0 +52 +52 +Connector_PinHeader_1.27mm +PinHeader_2x26_P1.27mm_Vertical_SMD +surface-mounted straight pin header, 2x26, 1.27mm pitch, double rows +Surface mounted pin header SMD 2x26 1.27mm double row +0 +52 +52 +Connector_PinHeader_1.27mm +PinHeader_2x27_P1.27mm_Horizontal +Through hole angled pin header, 2x27, 1.27mm pitch, 4.0mm pin length, double rows +Through hole angled pin header THT 2x27 1.27mm double row +0 +54 +54 +Connector_PinHeader_1.27mm +PinHeader_2x27_P1.27mm_Vertical +Through hole straight pin header, 2x27, 1.27mm pitch, double rows +Through hole pin header THT 2x27 1.27mm double row +0 +54 +54 +Connector_PinHeader_1.27mm +PinHeader_2x27_P1.27mm_Vertical_SMD +surface-mounted straight pin header, 2x27, 1.27mm pitch, double rows +Surface mounted pin header SMD 2x27 1.27mm double row +0 +54 +54 +Connector_PinHeader_1.27mm +PinHeader_2x28_P1.27mm_Horizontal +Through hole angled pin header, 2x28, 1.27mm pitch, 4.0mm pin length, double rows +Through hole angled pin header THT 2x28 1.27mm double row +0 +56 +56 +Connector_PinHeader_1.27mm +PinHeader_2x28_P1.27mm_Vertical +Through hole straight pin header, 2x28, 1.27mm pitch, double rows +Through hole pin header THT 2x28 1.27mm double row +0 +56 +56 +Connector_PinHeader_1.27mm +PinHeader_2x28_P1.27mm_Vertical_SMD +surface-mounted straight pin header, 2x28, 1.27mm pitch, double rows +Surface mounted pin header SMD 2x28 1.27mm double row +0 +56 +56 +Connector_PinHeader_1.27mm +PinHeader_2x29_P1.27mm_Horizontal +Through hole angled pin header, 2x29, 1.27mm pitch, 4.0mm pin length, double rows +Through hole angled pin header THT 2x29 1.27mm double row +0 +58 +58 +Connector_PinHeader_1.27mm +PinHeader_2x29_P1.27mm_Vertical +Through hole straight pin header, 2x29, 1.27mm pitch, double rows +Through hole pin header THT 2x29 1.27mm double row +0 +58 +58 +Connector_PinHeader_1.27mm +PinHeader_2x29_P1.27mm_Vertical_SMD +surface-mounted straight pin header, 2x29, 1.27mm pitch, double rows +Surface mounted pin header SMD 2x29 1.27mm double row +0 +58 +58 +Connector_PinHeader_1.27mm +PinHeader_2x30_P1.27mm_Horizontal +Through hole angled pin header, 2x30, 1.27mm pitch, 4.0mm pin length, double rows +Through hole angled pin header THT 2x30 1.27mm double row +0 +60 +60 +Connector_PinHeader_1.27mm +PinHeader_2x30_P1.27mm_Vertical +Through hole straight pin header, 2x30, 1.27mm pitch, double rows +Through hole pin header THT 2x30 1.27mm double row +0 +60 +60 +Connector_PinHeader_1.27mm +PinHeader_2x30_P1.27mm_Vertical_SMD +surface-mounted straight pin header, 2x30, 1.27mm pitch, double rows +Surface mounted pin header SMD 2x30 1.27mm double row +0 +60 +60 +Connector_PinHeader_1.27mm +PinHeader_2x31_P1.27mm_Horizontal +Through hole angled pin header, 2x31, 1.27mm pitch, 4.0mm pin length, double rows +Through hole angled pin header THT 2x31 1.27mm double row +0 +62 +62 +Connector_PinHeader_1.27mm +PinHeader_2x31_P1.27mm_Vertical +Through hole straight pin header, 2x31, 1.27mm pitch, double rows +Through hole pin header THT 2x31 1.27mm double row +0 +62 +62 +Connector_PinHeader_1.27mm +PinHeader_2x31_P1.27mm_Vertical_SMD +surface-mounted straight pin header, 2x31, 1.27mm pitch, double rows +Surface mounted pin header SMD 2x31 1.27mm double row +0 +62 +62 +Connector_PinHeader_1.27mm +PinHeader_2x32_P1.27mm_Horizontal +Through hole angled pin header, 2x32, 1.27mm pitch, 4.0mm pin length, double rows +Through hole angled pin header THT 2x32 1.27mm double row +0 +64 +64 +Connector_PinHeader_1.27mm +PinHeader_2x32_P1.27mm_Vertical +Through hole straight pin header, 2x32, 1.27mm pitch, double rows +Through hole pin header THT 2x32 1.27mm double row +0 +64 +64 +Connector_PinHeader_1.27mm +PinHeader_2x32_P1.27mm_Vertical_SMD +surface-mounted straight pin header, 2x32, 1.27mm pitch, double rows +Surface mounted pin header SMD 2x32 1.27mm double row +0 +64 +64 +Connector_PinHeader_1.27mm +PinHeader_2x33_P1.27mm_Horizontal +Through hole angled pin header, 2x33, 1.27mm pitch, 4.0mm pin length, double rows +Through hole angled pin header THT 2x33 1.27mm double row +0 +66 +66 +Connector_PinHeader_1.27mm +PinHeader_2x33_P1.27mm_Vertical +Through hole straight pin header, 2x33, 1.27mm pitch, double rows +Through hole pin header THT 2x33 1.27mm double row +0 +66 +66 +Connector_PinHeader_1.27mm +PinHeader_2x33_P1.27mm_Vertical_SMD +surface-mounted straight pin header, 2x33, 1.27mm pitch, double rows +Surface mounted pin header SMD 2x33 1.27mm double row +0 +66 +66 +Connector_PinHeader_1.27mm +PinHeader_2x34_P1.27mm_Horizontal +Through hole angled pin header, 2x34, 1.27mm pitch, 4.0mm pin length, double rows +Through hole angled pin header THT 2x34 1.27mm double row +0 +68 +68 +Connector_PinHeader_1.27mm +PinHeader_2x34_P1.27mm_Vertical +Through hole straight pin header, 2x34, 1.27mm pitch, double rows +Through hole pin header THT 2x34 1.27mm double row +0 +68 +68 +Connector_PinHeader_1.27mm +PinHeader_2x34_P1.27mm_Vertical_SMD +surface-mounted straight pin header, 2x34, 1.27mm pitch, double rows +Surface mounted pin header SMD 2x34 1.27mm double row +0 +68 +68 +Connector_PinHeader_1.27mm +PinHeader_2x35_P1.27mm_Horizontal +Through hole angled pin header, 2x35, 1.27mm pitch, 4.0mm pin length, double rows +Through hole angled pin header THT 2x35 1.27mm double row +0 +70 +70 +Connector_PinHeader_1.27mm +PinHeader_2x35_P1.27mm_Vertical +Through hole straight pin header, 2x35, 1.27mm pitch, double rows +Through hole pin header THT 2x35 1.27mm double row +0 +70 +70 +Connector_PinHeader_1.27mm +PinHeader_2x35_P1.27mm_Vertical_SMD +surface-mounted straight pin header, 2x35, 1.27mm pitch, double rows +Surface mounted pin header SMD 2x35 1.27mm double row +0 +70 +70 +Connector_PinHeader_1.27mm +PinHeader_2x36_P1.27mm_Horizontal +Through hole angled pin header, 2x36, 1.27mm pitch, 4.0mm pin length, double rows +Through hole angled pin header THT 2x36 1.27mm double row +0 +72 +72 +Connector_PinHeader_1.27mm +PinHeader_2x36_P1.27mm_Vertical +Through hole straight pin header, 2x36, 1.27mm pitch, double rows +Through hole pin header THT 2x36 1.27mm double row +0 +72 +72 +Connector_PinHeader_1.27mm +PinHeader_2x36_P1.27mm_Vertical_SMD +surface-mounted straight pin header, 2x36, 1.27mm pitch, double rows +Surface mounted pin header SMD 2x36 1.27mm double row +0 +72 +72 +Connector_PinHeader_1.27mm +PinHeader_2x37_P1.27mm_Horizontal +Through hole angled pin header, 2x37, 1.27mm pitch, 4.0mm pin length, double rows +Through hole angled pin header THT 2x37 1.27mm double row +0 +74 +74 +Connector_PinHeader_1.27mm +PinHeader_2x37_P1.27mm_Vertical +Through hole straight pin header, 2x37, 1.27mm pitch, double rows +Through hole pin header THT 2x37 1.27mm double row +0 +74 +74 +Connector_PinHeader_1.27mm +PinHeader_2x37_P1.27mm_Vertical_SMD +surface-mounted straight pin header, 2x37, 1.27mm pitch, double rows +Surface mounted pin header SMD 2x37 1.27mm double row +0 +74 +74 +Connector_PinHeader_1.27mm +PinHeader_2x38_P1.27mm_Horizontal +Through hole angled pin header, 2x38, 1.27mm pitch, 4.0mm pin length, double rows +Through hole angled pin header THT 2x38 1.27mm double row +0 +76 +76 +Connector_PinHeader_1.27mm +PinHeader_2x38_P1.27mm_Vertical +Through hole straight pin header, 2x38, 1.27mm pitch, double rows +Through hole pin header THT 2x38 1.27mm double row +0 +76 +76 +Connector_PinHeader_1.27mm +PinHeader_2x38_P1.27mm_Vertical_SMD +surface-mounted straight pin header, 2x38, 1.27mm pitch, double rows +Surface mounted pin header SMD 2x38 1.27mm double row +0 +76 +76 +Connector_PinHeader_1.27mm +PinHeader_2x39_P1.27mm_Horizontal +Through hole angled pin header, 2x39, 1.27mm pitch, 4.0mm pin length, double rows +Through hole angled pin header THT 2x39 1.27mm double row +0 +78 +78 +Connector_PinHeader_1.27mm +PinHeader_2x39_P1.27mm_Vertical +Through hole straight pin header, 2x39, 1.27mm pitch, double rows +Through hole pin header THT 2x39 1.27mm double row +0 +78 +78 +Connector_PinHeader_1.27mm +PinHeader_2x39_P1.27mm_Vertical_SMD +surface-mounted straight pin header, 2x39, 1.27mm pitch, double rows +Surface mounted pin header SMD 2x39 1.27mm double row +0 +78 +78 +Connector_PinHeader_1.27mm +PinHeader_2x40_P1.27mm_Horizontal +Through hole angled pin header, 2x40, 1.27mm pitch, 4.0mm pin length, double rows +Through hole angled pin header THT 2x40 1.27mm double row +0 +80 +80 +Connector_PinHeader_1.27mm +PinHeader_2x40_P1.27mm_Vertical +Through hole straight pin header, 2x40, 1.27mm pitch, double rows +Through hole pin header THT 2x40 1.27mm double row +0 +80 +80 +Connector_PinHeader_1.27mm +PinHeader_2x40_P1.27mm_Vertical_SMD +surface-mounted straight pin header, 2x40, 1.27mm pitch, double rows +Surface mounted pin header SMD 2x40 1.27mm double row +0 +80 +80 +Connector_PinHeader_2.00mm +PinHeader_1x01_P2.00mm_Horizontal +Through hole angled pin header, 1x01, 2.00mm pitch, 4.2mm pin length, single row +Through hole angled pin header THT 1x01 2.00mm single row +0 +1 +1 +Connector_PinHeader_2.00mm +PinHeader_1x01_P2.00mm_Vertical +Through hole straight pin header, 1x01, 2.00mm pitch, single row +Through hole pin header THT 1x01 2.00mm single row +0 +1 +1 +Connector_PinHeader_2.00mm +PinHeader_1x02_P2.00mm_Horizontal +Through hole angled pin header, 1x02, 2.00mm pitch, 4.2mm pin length, single row +Through hole angled pin header THT 1x02 2.00mm single row +0 +2 +2 +Connector_PinHeader_2.00mm +PinHeader_1x02_P2.00mm_Vertical +Through hole straight pin header, 1x02, 2.00mm pitch, single row +Through hole pin header THT 1x02 2.00mm single row +0 +2 +2 +Connector_PinHeader_2.00mm +PinHeader_1x02_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x02, 2.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x02 2.00mm single row style1 pin1 left +0 +2 +2 +Connector_PinHeader_2.00mm +PinHeader_1x02_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x02, 2.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x02 2.00mm single row style2 pin1 right +0 +2 +2 +Connector_PinHeader_2.00mm +PinHeader_1x03_P2.00mm_Horizontal +Through hole angled pin header, 1x03, 2.00mm pitch, 4.2mm pin length, single row +Through hole angled pin header THT 1x03 2.00mm single row +0 +3 +3 +Connector_PinHeader_2.00mm +PinHeader_1x03_P2.00mm_Vertical +Through hole straight pin header, 1x03, 2.00mm pitch, single row +Through hole pin header THT 1x03 2.00mm single row +0 +3 +3 +Connector_PinHeader_2.00mm +PinHeader_1x03_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x03, 2.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x03 2.00mm single row style1 pin1 left +0 +3 +3 +Connector_PinHeader_2.00mm +PinHeader_1x03_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x03, 2.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x03 2.00mm single row style2 pin1 right +0 +3 +3 +Connector_PinHeader_2.00mm +PinHeader_1x04_P2.00mm_Horizontal +Through hole angled pin header, 1x04, 2.00mm pitch, 4.2mm pin length, single row +Through hole angled pin header THT 1x04 2.00mm single row +0 +4 +4 +Connector_PinHeader_2.00mm +PinHeader_1x04_P2.00mm_Vertical +Through hole straight pin header, 1x04, 2.00mm pitch, single row +Through hole pin header THT 1x04 2.00mm single row +0 +4 +4 +Connector_PinHeader_2.00mm +PinHeader_1x04_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x04, 2.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x04 2.00mm single row style1 pin1 left +0 +4 +4 +Connector_PinHeader_2.00mm +PinHeader_1x04_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x04, 2.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x04 2.00mm single row style2 pin1 right +0 +4 +4 +Connector_PinHeader_2.00mm +PinHeader_1x05_P2.00mm_Horizontal +Through hole angled pin header, 1x05, 2.00mm pitch, 4.2mm pin length, single row +Through hole angled pin header THT 1x05 2.00mm single row +0 +5 +5 +Connector_PinHeader_2.00mm +PinHeader_1x05_P2.00mm_Vertical +Through hole straight pin header, 1x05, 2.00mm pitch, single row +Through hole pin header THT 1x05 2.00mm single row +0 +5 +5 +Connector_PinHeader_2.00mm +PinHeader_1x05_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x05, 2.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x05 2.00mm single row style1 pin1 left +0 +5 +5 +Connector_PinHeader_2.00mm +PinHeader_1x05_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x05, 2.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x05 2.00mm single row style2 pin1 right +0 +5 +5 +Connector_PinHeader_2.00mm +PinHeader_1x06_P2.00mm_Horizontal +Through hole angled pin header, 1x06, 2.00mm pitch, 4.2mm pin length, single row +Through hole angled pin header THT 1x06 2.00mm single row +0 +6 +6 +Connector_PinHeader_2.00mm +PinHeader_1x06_P2.00mm_Vertical +Through hole straight pin header, 1x06, 2.00mm pitch, single row +Through hole pin header THT 1x06 2.00mm single row +0 +6 +6 +Connector_PinHeader_2.00mm +PinHeader_1x06_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x06, 2.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x06 2.00mm single row style1 pin1 left +0 +6 +6 +Connector_PinHeader_2.00mm +PinHeader_1x06_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x06, 2.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x06 2.00mm single row style2 pin1 right +0 +6 +6 +Connector_PinHeader_2.00mm +PinHeader_1x07_P2.00mm_Horizontal +Through hole angled pin header, 1x07, 2.00mm pitch, 4.2mm pin length, single row +Through hole angled pin header THT 1x07 2.00mm single row +0 +7 +7 +Connector_PinHeader_2.00mm +PinHeader_1x07_P2.00mm_Vertical +Through hole straight pin header, 1x07, 2.00mm pitch, single row +Through hole pin header THT 1x07 2.00mm single row +0 +7 +7 +Connector_PinHeader_2.00mm +PinHeader_1x07_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x07, 2.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x07 2.00mm single row style1 pin1 left +0 +7 +7 +Connector_PinHeader_2.00mm +PinHeader_1x07_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x07, 2.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x07 2.00mm single row style2 pin1 right +0 +7 +7 +Connector_PinHeader_2.00mm +PinHeader_1x08_P2.00mm_Horizontal +Through hole angled pin header, 1x08, 2.00mm pitch, 4.2mm pin length, single row +Through hole angled pin header THT 1x08 2.00mm single row +0 +8 +8 +Connector_PinHeader_2.00mm +PinHeader_1x08_P2.00mm_Vertical +Through hole straight pin header, 1x08, 2.00mm pitch, single row +Through hole pin header THT 1x08 2.00mm single row +0 +8 +8 +Connector_PinHeader_2.00mm +PinHeader_1x08_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x08, 2.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x08 2.00mm single row style1 pin1 left +0 +8 +8 +Connector_PinHeader_2.00mm +PinHeader_1x08_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x08, 2.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x08 2.00mm single row style2 pin1 right +0 +8 +8 +Connector_PinHeader_2.00mm +PinHeader_1x09_P2.00mm_Horizontal +Through hole angled pin header, 1x09, 2.00mm pitch, 4.2mm pin length, single row +Through hole angled pin header THT 1x09 2.00mm single row +0 +9 +9 +Connector_PinHeader_2.00mm +PinHeader_1x09_P2.00mm_Vertical +Through hole straight pin header, 1x09, 2.00mm pitch, single row +Through hole pin header THT 1x09 2.00mm single row +0 +9 +9 +Connector_PinHeader_2.00mm +PinHeader_1x09_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x09, 2.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x09 2.00mm single row style1 pin1 left +0 +9 +9 +Connector_PinHeader_2.00mm +PinHeader_1x09_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x09, 2.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x09 2.00mm single row style2 pin1 right +0 +9 +9 +Connector_PinHeader_2.00mm +PinHeader_1x10_P2.00mm_Horizontal +Through hole angled pin header, 1x10, 2.00mm pitch, 4.2mm pin length, single row +Through hole angled pin header THT 1x10 2.00mm single row +0 +10 +10 +Connector_PinHeader_2.00mm +PinHeader_1x10_P2.00mm_Vertical +Through hole straight pin header, 1x10, 2.00mm pitch, single row +Through hole pin header THT 1x10 2.00mm single row +0 +10 +10 +Connector_PinHeader_2.00mm +PinHeader_1x10_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x10, 2.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x10 2.00mm single row style1 pin1 left +0 +10 +10 +Connector_PinHeader_2.00mm +PinHeader_1x10_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x10, 2.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x10 2.00mm single row style2 pin1 right +0 +10 +10 +Connector_PinHeader_2.00mm +PinHeader_1x11_P2.00mm_Horizontal +Through hole angled pin header, 1x11, 2.00mm pitch, 4.2mm pin length, single row +Through hole angled pin header THT 1x11 2.00mm single row +0 +11 +11 +Connector_PinHeader_2.00mm +PinHeader_1x11_P2.00mm_Vertical +Through hole straight pin header, 1x11, 2.00mm pitch, single row +Through hole pin header THT 1x11 2.00mm single row +0 +11 +11 +Connector_PinHeader_2.00mm +PinHeader_1x11_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x11, 2.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x11 2.00mm single row style1 pin1 left +0 +11 +11 +Connector_PinHeader_2.00mm +PinHeader_1x11_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x11, 2.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x11 2.00mm single row style2 pin1 right +0 +11 +11 +Connector_PinHeader_2.00mm +PinHeader_1x12_P2.00mm_Horizontal +Through hole angled pin header, 1x12, 2.00mm pitch, 4.2mm pin length, single row +Through hole angled pin header THT 1x12 2.00mm single row +0 +12 +12 +Connector_PinHeader_2.00mm +PinHeader_1x12_P2.00mm_Vertical +Through hole straight pin header, 1x12, 2.00mm pitch, single row +Through hole pin header THT 1x12 2.00mm single row +0 +12 +12 +Connector_PinHeader_2.00mm +PinHeader_1x12_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x12, 2.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x12 2.00mm single row style1 pin1 left +0 +12 +12 +Connector_PinHeader_2.00mm +PinHeader_1x12_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x12, 2.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x12 2.00mm single row style2 pin1 right +0 +12 +12 +Connector_PinHeader_2.00mm +PinHeader_1x13_P2.00mm_Horizontal +Through hole angled pin header, 1x13, 2.00mm pitch, 4.2mm pin length, single row +Through hole angled pin header THT 1x13 2.00mm single row +0 +13 +13 +Connector_PinHeader_2.00mm +PinHeader_1x13_P2.00mm_Vertical +Through hole straight pin header, 1x13, 2.00mm pitch, single row +Through hole pin header THT 1x13 2.00mm single row +0 +13 +13 +Connector_PinHeader_2.00mm +PinHeader_1x13_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x13, 2.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x13 2.00mm single row style1 pin1 left +0 +13 +13 +Connector_PinHeader_2.00mm +PinHeader_1x13_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x13, 2.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x13 2.00mm single row style2 pin1 right +0 +13 +13 +Connector_PinHeader_2.00mm +PinHeader_1x14_P2.00mm_Horizontal +Through hole angled pin header, 1x14, 2.00mm pitch, 4.2mm pin length, single row +Through hole angled pin header THT 1x14 2.00mm single row +0 +14 +14 +Connector_PinHeader_2.00mm +PinHeader_1x14_P2.00mm_Vertical +Through hole straight pin header, 1x14, 2.00mm pitch, single row +Through hole pin header THT 1x14 2.00mm single row +0 +14 +14 +Connector_PinHeader_2.00mm +PinHeader_1x14_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x14, 2.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x14 2.00mm single row style1 pin1 left +0 +14 +14 +Connector_PinHeader_2.00mm +PinHeader_1x14_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x14, 2.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x14 2.00mm single row style2 pin1 right +0 +14 +14 +Connector_PinHeader_2.00mm +PinHeader_1x15_P2.00mm_Horizontal +Through hole angled pin header, 1x15, 2.00mm pitch, 4.2mm pin length, single row +Through hole angled pin header THT 1x15 2.00mm single row +0 +15 +15 +Connector_PinHeader_2.00mm +PinHeader_1x15_P2.00mm_Vertical +Through hole straight pin header, 1x15, 2.00mm pitch, single row +Through hole pin header THT 1x15 2.00mm single row +0 +15 +15 +Connector_PinHeader_2.00mm +PinHeader_1x15_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x15, 2.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x15 2.00mm single row style1 pin1 left +0 +15 +15 +Connector_PinHeader_2.00mm +PinHeader_1x15_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x15, 2.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x15 2.00mm single row style2 pin1 right +0 +15 +15 +Connector_PinHeader_2.00mm +PinHeader_1x16_P2.00mm_Horizontal +Through hole angled pin header, 1x16, 2.00mm pitch, 4.2mm pin length, single row +Through hole angled pin header THT 1x16 2.00mm single row +0 +16 +16 +Connector_PinHeader_2.00mm +PinHeader_1x16_P2.00mm_Vertical +Through hole straight pin header, 1x16, 2.00mm pitch, single row +Through hole pin header THT 1x16 2.00mm single row +0 +16 +16 +Connector_PinHeader_2.00mm +PinHeader_1x16_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x16, 2.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x16 2.00mm single row style1 pin1 left +0 +16 +16 +Connector_PinHeader_2.00mm +PinHeader_1x16_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x16, 2.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x16 2.00mm single row style2 pin1 right +0 +16 +16 +Connector_PinHeader_2.00mm +PinHeader_1x17_P2.00mm_Horizontal +Through hole angled pin header, 1x17, 2.00mm pitch, 4.2mm pin length, single row +Through hole angled pin header THT 1x17 2.00mm single row +0 +17 +17 +Connector_PinHeader_2.00mm +PinHeader_1x17_P2.00mm_Vertical +Through hole straight pin header, 1x17, 2.00mm pitch, single row +Through hole pin header THT 1x17 2.00mm single row +0 +17 +17 +Connector_PinHeader_2.00mm +PinHeader_1x17_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x17, 2.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x17 2.00mm single row style1 pin1 left +0 +17 +17 +Connector_PinHeader_2.00mm +PinHeader_1x17_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x17, 2.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x17 2.00mm single row style2 pin1 right +0 +17 +17 +Connector_PinHeader_2.00mm +PinHeader_1x18_P2.00mm_Horizontal +Through hole angled pin header, 1x18, 2.00mm pitch, 4.2mm pin length, single row +Through hole angled pin header THT 1x18 2.00mm single row +0 +18 +18 +Connector_PinHeader_2.00mm +PinHeader_1x18_P2.00mm_Vertical +Through hole straight pin header, 1x18, 2.00mm pitch, single row +Through hole pin header THT 1x18 2.00mm single row +0 +18 +18 +Connector_PinHeader_2.00mm +PinHeader_1x18_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x18, 2.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x18 2.00mm single row style1 pin1 left +0 +18 +18 +Connector_PinHeader_2.00mm +PinHeader_1x18_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x18, 2.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x18 2.00mm single row style2 pin1 right +0 +18 +18 +Connector_PinHeader_2.00mm +PinHeader_1x19_P2.00mm_Horizontal +Through hole angled pin header, 1x19, 2.00mm pitch, 4.2mm pin length, single row +Through hole angled pin header THT 1x19 2.00mm single row +0 +19 +19 +Connector_PinHeader_2.00mm +PinHeader_1x19_P2.00mm_Vertical +Through hole straight pin header, 1x19, 2.00mm pitch, single row +Through hole pin header THT 1x19 2.00mm single row +0 +19 +19 +Connector_PinHeader_2.00mm +PinHeader_1x19_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x19, 2.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x19 2.00mm single row style1 pin1 left +0 +19 +19 +Connector_PinHeader_2.00mm +PinHeader_1x19_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x19, 2.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x19 2.00mm single row style2 pin1 right +0 +19 +19 +Connector_PinHeader_2.00mm +PinHeader_1x20_P2.00mm_Horizontal +Through hole angled pin header, 1x20, 2.00mm pitch, 4.2mm pin length, single row +Through hole angled pin header THT 1x20 2.00mm single row +0 +20 +20 +Connector_PinHeader_2.00mm +PinHeader_1x20_P2.00mm_Vertical +Through hole straight pin header, 1x20, 2.00mm pitch, single row +Through hole pin header THT 1x20 2.00mm single row +0 +20 +20 +Connector_PinHeader_2.00mm +PinHeader_1x20_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x20, 2.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x20 2.00mm single row style1 pin1 left +0 +20 +20 +Connector_PinHeader_2.00mm +PinHeader_1x20_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x20, 2.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x20 2.00mm single row style2 pin1 right +0 +20 +20 +Connector_PinHeader_2.00mm +PinHeader_1x21_P2.00mm_Horizontal +Through hole angled pin header, 1x21, 2.00mm pitch, 4.2mm pin length, single row +Through hole angled pin header THT 1x21 2.00mm single row +0 +21 +21 +Connector_PinHeader_2.00mm +PinHeader_1x21_P2.00mm_Vertical +Through hole straight pin header, 1x21, 2.00mm pitch, single row +Through hole pin header THT 1x21 2.00mm single row +0 +21 +21 +Connector_PinHeader_2.00mm +PinHeader_1x21_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x21, 2.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x21 2.00mm single row style1 pin1 left +0 +21 +21 +Connector_PinHeader_2.00mm +PinHeader_1x21_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x21, 2.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x21 2.00mm single row style2 pin1 right +0 +21 +21 +Connector_PinHeader_2.00mm +PinHeader_1x22_P2.00mm_Horizontal +Through hole angled pin header, 1x22, 2.00mm pitch, 4.2mm pin length, single row +Through hole angled pin header THT 1x22 2.00mm single row +0 +22 +22 +Connector_PinHeader_2.00mm +PinHeader_1x22_P2.00mm_Vertical +Through hole straight pin header, 1x22, 2.00mm pitch, single row +Through hole pin header THT 1x22 2.00mm single row +0 +22 +22 +Connector_PinHeader_2.00mm +PinHeader_1x22_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x22, 2.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x22 2.00mm single row style1 pin1 left +0 +22 +22 +Connector_PinHeader_2.00mm +PinHeader_1x22_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x22, 2.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x22 2.00mm single row style2 pin1 right +0 +22 +22 +Connector_PinHeader_2.00mm +PinHeader_1x23_P2.00mm_Horizontal +Through hole angled pin header, 1x23, 2.00mm pitch, 4.2mm pin length, single row +Through hole angled pin header THT 1x23 2.00mm single row +0 +23 +23 +Connector_PinHeader_2.00mm +PinHeader_1x23_P2.00mm_Vertical +Through hole straight pin header, 1x23, 2.00mm pitch, single row +Through hole pin header THT 1x23 2.00mm single row +0 +23 +23 +Connector_PinHeader_2.00mm +PinHeader_1x23_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x23, 2.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x23 2.00mm single row style1 pin1 left +0 +23 +23 +Connector_PinHeader_2.00mm +PinHeader_1x23_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x23, 2.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x23 2.00mm single row style2 pin1 right +0 +23 +23 +Connector_PinHeader_2.00mm +PinHeader_1x24_P2.00mm_Horizontal +Through hole angled pin header, 1x24, 2.00mm pitch, 4.2mm pin length, single row +Through hole angled pin header THT 1x24 2.00mm single row +0 +24 +24 +Connector_PinHeader_2.00mm +PinHeader_1x24_P2.00mm_Vertical +Through hole straight pin header, 1x24, 2.00mm pitch, single row +Through hole pin header THT 1x24 2.00mm single row +0 +24 +24 +Connector_PinHeader_2.00mm +PinHeader_1x24_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x24, 2.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x24 2.00mm single row style1 pin1 left +0 +24 +24 +Connector_PinHeader_2.00mm +PinHeader_1x24_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x24, 2.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x24 2.00mm single row style2 pin1 right +0 +24 +24 +Connector_PinHeader_2.00mm +PinHeader_1x25_P2.00mm_Horizontal +Through hole angled pin header, 1x25, 2.00mm pitch, 4.2mm pin length, single row +Through hole angled pin header THT 1x25 2.00mm single row +0 +25 +25 +Connector_PinHeader_2.00mm +PinHeader_1x25_P2.00mm_Vertical +Through hole straight pin header, 1x25, 2.00mm pitch, single row +Through hole pin header THT 1x25 2.00mm single row +0 +25 +25 +Connector_PinHeader_2.00mm +PinHeader_1x25_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x25, 2.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x25 2.00mm single row style1 pin1 left +0 +25 +25 +Connector_PinHeader_2.00mm +PinHeader_1x25_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x25, 2.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x25 2.00mm single row style2 pin1 right +0 +25 +25 +Connector_PinHeader_2.00mm +PinHeader_1x26_P2.00mm_Horizontal +Through hole angled pin header, 1x26, 2.00mm pitch, 4.2mm pin length, single row +Through hole angled pin header THT 1x26 2.00mm single row +0 +26 +26 +Connector_PinHeader_2.00mm +PinHeader_1x26_P2.00mm_Vertical +Through hole straight pin header, 1x26, 2.00mm pitch, single row +Through hole pin header THT 1x26 2.00mm single row +0 +26 +26 +Connector_PinHeader_2.00mm +PinHeader_1x26_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x26, 2.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x26 2.00mm single row style1 pin1 left +0 +26 +26 +Connector_PinHeader_2.00mm +PinHeader_1x26_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x26, 2.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x26 2.00mm single row style2 pin1 right +0 +26 +26 +Connector_PinHeader_2.00mm +PinHeader_1x27_P2.00mm_Horizontal +Through hole angled pin header, 1x27, 2.00mm pitch, 4.2mm pin length, single row +Through hole angled pin header THT 1x27 2.00mm single row +0 +27 +27 +Connector_PinHeader_2.00mm +PinHeader_1x27_P2.00mm_Vertical +Through hole straight pin header, 1x27, 2.00mm pitch, single row +Through hole pin header THT 1x27 2.00mm single row +0 +27 +27 +Connector_PinHeader_2.00mm +PinHeader_1x27_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x27, 2.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x27 2.00mm single row style1 pin1 left +0 +27 +27 +Connector_PinHeader_2.00mm +PinHeader_1x27_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x27, 2.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x27 2.00mm single row style2 pin1 right +0 +27 +27 +Connector_PinHeader_2.00mm +PinHeader_1x28_P2.00mm_Horizontal +Through hole angled pin header, 1x28, 2.00mm pitch, 4.2mm pin length, single row +Through hole angled pin header THT 1x28 2.00mm single row +0 +28 +28 +Connector_PinHeader_2.00mm +PinHeader_1x28_P2.00mm_Vertical +Through hole straight pin header, 1x28, 2.00mm pitch, single row +Through hole pin header THT 1x28 2.00mm single row +0 +28 +28 +Connector_PinHeader_2.00mm +PinHeader_1x28_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x28, 2.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x28 2.00mm single row style1 pin1 left +0 +28 +28 +Connector_PinHeader_2.00mm +PinHeader_1x28_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x28, 2.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x28 2.00mm single row style2 pin1 right +0 +28 +28 +Connector_PinHeader_2.00mm +PinHeader_1x29_P2.00mm_Horizontal +Through hole angled pin header, 1x29, 2.00mm pitch, 4.2mm pin length, single row +Through hole angled pin header THT 1x29 2.00mm single row +0 +29 +29 +Connector_PinHeader_2.00mm +PinHeader_1x29_P2.00mm_Vertical +Through hole straight pin header, 1x29, 2.00mm pitch, single row +Through hole pin header THT 1x29 2.00mm single row +0 +29 +29 +Connector_PinHeader_2.00mm +PinHeader_1x29_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x29, 2.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x29 2.00mm single row style1 pin1 left +0 +29 +29 +Connector_PinHeader_2.00mm +PinHeader_1x29_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x29, 2.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x29 2.00mm single row style2 pin1 right +0 +29 +29 +Connector_PinHeader_2.00mm +PinHeader_1x30_P2.00mm_Horizontal +Through hole angled pin header, 1x30, 2.00mm pitch, 4.2mm pin length, single row +Through hole angled pin header THT 1x30 2.00mm single row +0 +30 +30 +Connector_PinHeader_2.00mm +PinHeader_1x30_P2.00mm_Vertical +Through hole straight pin header, 1x30, 2.00mm pitch, single row +Through hole pin header THT 1x30 2.00mm single row +0 +30 +30 +Connector_PinHeader_2.00mm +PinHeader_1x30_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x30, 2.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x30 2.00mm single row style1 pin1 left +0 +30 +30 +Connector_PinHeader_2.00mm +PinHeader_1x30_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x30, 2.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x30 2.00mm single row style2 pin1 right +0 +30 +30 +Connector_PinHeader_2.00mm +PinHeader_1x31_P2.00mm_Horizontal +Through hole angled pin header, 1x31, 2.00mm pitch, 4.2mm pin length, single row +Through hole angled pin header THT 1x31 2.00mm single row +0 +31 +31 +Connector_PinHeader_2.00mm +PinHeader_1x31_P2.00mm_Vertical +Through hole straight pin header, 1x31, 2.00mm pitch, single row +Through hole pin header THT 1x31 2.00mm single row +0 +31 +31 +Connector_PinHeader_2.00mm +PinHeader_1x31_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x31, 2.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x31 2.00mm single row style1 pin1 left +0 +31 +31 +Connector_PinHeader_2.00mm +PinHeader_1x31_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x31, 2.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x31 2.00mm single row style2 pin1 right +0 +31 +31 +Connector_PinHeader_2.00mm +PinHeader_1x32_P2.00mm_Horizontal +Through hole angled pin header, 1x32, 2.00mm pitch, 4.2mm pin length, single row +Through hole angled pin header THT 1x32 2.00mm single row +0 +32 +32 +Connector_PinHeader_2.00mm +PinHeader_1x32_P2.00mm_Vertical +Through hole straight pin header, 1x32, 2.00mm pitch, single row +Through hole pin header THT 1x32 2.00mm single row +0 +32 +32 +Connector_PinHeader_2.00mm +PinHeader_1x32_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x32, 2.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x32 2.00mm single row style1 pin1 left +0 +32 +32 +Connector_PinHeader_2.00mm +PinHeader_1x32_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x32, 2.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x32 2.00mm single row style2 pin1 right +0 +32 +32 +Connector_PinHeader_2.00mm +PinHeader_1x33_P2.00mm_Horizontal +Through hole angled pin header, 1x33, 2.00mm pitch, 4.2mm pin length, single row +Through hole angled pin header THT 1x33 2.00mm single row +0 +33 +33 +Connector_PinHeader_2.00mm +PinHeader_1x33_P2.00mm_Vertical +Through hole straight pin header, 1x33, 2.00mm pitch, single row +Through hole pin header THT 1x33 2.00mm single row +0 +33 +33 +Connector_PinHeader_2.00mm +PinHeader_1x33_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x33, 2.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x33 2.00mm single row style1 pin1 left +0 +33 +33 +Connector_PinHeader_2.00mm +PinHeader_1x33_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x33, 2.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x33 2.00mm single row style2 pin1 right +0 +33 +33 +Connector_PinHeader_2.00mm +PinHeader_1x34_P2.00mm_Horizontal +Through hole angled pin header, 1x34, 2.00mm pitch, 4.2mm pin length, single row +Through hole angled pin header THT 1x34 2.00mm single row +0 +34 +34 +Connector_PinHeader_2.00mm +PinHeader_1x34_P2.00mm_Vertical +Through hole straight pin header, 1x34, 2.00mm pitch, single row +Through hole pin header THT 1x34 2.00mm single row +0 +34 +34 +Connector_PinHeader_2.00mm +PinHeader_1x34_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x34, 2.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x34 2.00mm single row style1 pin1 left +0 +34 +34 +Connector_PinHeader_2.00mm +PinHeader_1x34_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x34, 2.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x34 2.00mm single row style2 pin1 right +0 +34 +34 +Connector_PinHeader_2.00mm +PinHeader_1x35_P2.00mm_Horizontal +Through hole angled pin header, 1x35, 2.00mm pitch, 4.2mm pin length, single row +Through hole angled pin header THT 1x35 2.00mm single row +0 +35 +35 +Connector_PinHeader_2.00mm +PinHeader_1x35_P2.00mm_Vertical +Through hole straight pin header, 1x35, 2.00mm pitch, single row +Through hole pin header THT 1x35 2.00mm single row +0 +35 +35 +Connector_PinHeader_2.00mm +PinHeader_1x35_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x35, 2.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x35 2.00mm single row style1 pin1 left +0 +35 +35 +Connector_PinHeader_2.00mm +PinHeader_1x35_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x35, 2.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x35 2.00mm single row style2 pin1 right +0 +35 +35 +Connector_PinHeader_2.00mm +PinHeader_1x36_P2.00mm_Horizontal +Through hole angled pin header, 1x36, 2.00mm pitch, 4.2mm pin length, single row +Through hole angled pin header THT 1x36 2.00mm single row +0 +36 +36 +Connector_PinHeader_2.00mm +PinHeader_1x36_P2.00mm_Vertical +Through hole straight pin header, 1x36, 2.00mm pitch, single row +Through hole pin header THT 1x36 2.00mm single row +0 +36 +36 +Connector_PinHeader_2.00mm +PinHeader_1x36_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x36, 2.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x36 2.00mm single row style1 pin1 left +0 +36 +36 +Connector_PinHeader_2.00mm +PinHeader_1x36_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x36, 2.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x36 2.00mm single row style2 pin1 right +0 +36 +36 +Connector_PinHeader_2.00mm +PinHeader_1x37_P2.00mm_Horizontal +Through hole angled pin header, 1x37, 2.00mm pitch, 4.2mm pin length, single row +Through hole angled pin header THT 1x37 2.00mm single row +0 +37 +37 +Connector_PinHeader_2.00mm +PinHeader_1x37_P2.00mm_Vertical +Through hole straight pin header, 1x37, 2.00mm pitch, single row +Through hole pin header THT 1x37 2.00mm single row +0 +37 +37 +Connector_PinHeader_2.00mm +PinHeader_1x37_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x37, 2.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x37 2.00mm single row style1 pin1 left +0 +37 +37 +Connector_PinHeader_2.00mm +PinHeader_1x37_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x37, 2.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x37 2.00mm single row style2 pin1 right +0 +37 +37 +Connector_PinHeader_2.00mm +PinHeader_1x38_P2.00mm_Horizontal +Through hole angled pin header, 1x38, 2.00mm pitch, 4.2mm pin length, single row +Through hole angled pin header THT 1x38 2.00mm single row +0 +38 +38 +Connector_PinHeader_2.00mm +PinHeader_1x38_P2.00mm_Vertical +Through hole straight pin header, 1x38, 2.00mm pitch, single row +Through hole pin header THT 1x38 2.00mm single row +0 +38 +38 +Connector_PinHeader_2.00mm +PinHeader_1x38_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x38, 2.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x38 2.00mm single row style1 pin1 left +0 +38 +38 +Connector_PinHeader_2.00mm +PinHeader_1x38_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x38, 2.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x38 2.00mm single row style2 pin1 right +0 +38 +38 +Connector_PinHeader_2.00mm +PinHeader_1x39_P2.00mm_Horizontal +Through hole angled pin header, 1x39, 2.00mm pitch, 4.2mm pin length, single row +Through hole angled pin header THT 1x39 2.00mm single row +0 +39 +39 +Connector_PinHeader_2.00mm +PinHeader_1x39_P2.00mm_Vertical +Through hole straight pin header, 1x39, 2.00mm pitch, single row +Through hole pin header THT 1x39 2.00mm single row +0 +39 +39 +Connector_PinHeader_2.00mm +PinHeader_1x39_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x39, 2.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x39 2.00mm single row style1 pin1 left +0 +39 +39 +Connector_PinHeader_2.00mm +PinHeader_1x39_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x39, 2.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x39 2.00mm single row style2 pin1 right +0 +39 +39 +Connector_PinHeader_2.00mm +PinHeader_1x40_P2.00mm_Horizontal +Through hole angled pin header, 1x40, 2.00mm pitch, 4.2mm pin length, single row +Through hole angled pin header THT 1x40 2.00mm single row +0 +40 +40 +Connector_PinHeader_2.00mm +PinHeader_1x40_P2.00mm_Vertical +Through hole straight pin header, 1x40, 2.00mm pitch, single row +Through hole pin header THT 1x40 2.00mm single row +0 +40 +40 +Connector_PinHeader_2.00mm +PinHeader_1x40_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x40, 2.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x40 2.00mm single row style1 pin1 left +0 +40 +40 +Connector_PinHeader_2.00mm +PinHeader_1x40_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x40, 2.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x40 2.00mm single row style2 pin1 right +0 +40 +40 +Connector_PinHeader_2.00mm +PinHeader_2x01_P2.00mm_Horizontal +Through hole angled pin header, 2x01, 2.00mm pitch, 4.2mm pin length, double rows +Through hole angled pin header THT 2x01 2.00mm double row +0 +2 +2 +Connector_PinHeader_2.00mm +PinHeader_2x01_P2.00mm_Vertical +Through hole straight pin header, 2x01, 2.00mm pitch, double rows +Through hole pin header THT 2x01 2.00mm double row +0 +2 +2 +Connector_PinHeader_2.00mm +PinHeader_2x01_P2.00mm_Vertical_SMD +surface-mounted straight pin header, 2x01, 2.00mm pitch, double rows +Surface mounted pin header SMD 2x01 2.00mm double row +0 +2 +2 +Connector_PinHeader_2.00mm +PinHeader_2x02_P2.00mm_Horizontal +Through hole angled pin header, 2x02, 2.00mm pitch, 4.2mm pin length, double rows +Through hole angled pin header THT 2x02 2.00mm double row +0 +4 +4 +Connector_PinHeader_2.00mm +PinHeader_2x02_P2.00mm_Vertical +Through hole straight pin header, 2x02, 2.00mm pitch, double rows +Through hole pin header THT 2x02 2.00mm double row +0 +4 +4 +Connector_PinHeader_2.00mm +PinHeader_2x02_P2.00mm_Vertical_SMD +surface-mounted straight pin header, 2x02, 2.00mm pitch, double rows +Surface mounted pin header SMD 2x02 2.00mm double row +0 +4 +4 +Connector_PinHeader_2.00mm +PinHeader_2x03_P2.00mm_Horizontal +Through hole angled pin header, 2x03, 2.00mm pitch, 4.2mm pin length, double rows +Through hole angled pin header THT 2x03 2.00mm double row +0 +6 +6 +Connector_PinHeader_2.00mm +PinHeader_2x03_P2.00mm_Vertical +Through hole straight pin header, 2x03, 2.00mm pitch, double rows +Through hole pin header THT 2x03 2.00mm double row +0 +6 +6 +Connector_PinHeader_2.00mm +PinHeader_2x03_P2.00mm_Vertical_SMD +surface-mounted straight pin header, 2x03, 2.00mm pitch, double rows +Surface mounted pin header SMD 2x03 2.00mm double row +0 +6 +6 +Connector_PinHeader_2.00mm +PinHeader_2x04_P2.00mm_Horizontal +Through hole angled pin header, 2x04, 2.00mm pitch, 4.2mm pin length, double rows +Through hole angled pin header THT 2x04 2.00mm double row +0 +8 +8 +Connector_PinHeader_2.00mm +PinHeader_2x04_P2.00mm_Vertical +Through hole straight pin header, 2x04, 2.00mm pitch, double rows +Through hole pin header THT 2x04 2.00mm double row +0 +8 +8 +Connector_PinHeader_2.00mm +PinHeader_2x04_P2.00mm_Vertical_SMD +surface-mounted straight pin header, 2x04, 2.00mm pitch, double rows +Surface mounted pin header SMD 2x04 2.00mm double row +0 +8 +8 +Connector_PinHeader_2.00mm +PinHeader_2x05_P2.00mm_Horizontal +Through hole angled pin header, 2x05, 2.00mm pitch, 4.2mm pin length, double rows +Through hole angled pin header THT 2x05 2.00mm double row +0 +10 +10 +Connector_PinHeader_2.00mm +PinHeader_2x05_P2.00mm_Vertical +Through hole straight pin header, 2x05, 2.00mm pitch, double rows +Through hole pin header THT 2x05 2.00mm double row +0 +10 +10 +Connector_PinHeader_2.00mm +PinHeader_2x05_P2.00mm_Vertical_SMD +surface-mounted straight pin header, 2x05, 2.00mm pitch, double rows +Surface mounted pin header SMD 2x05 2.00mm double row +0 +10 +10 +Connector_PinHeader_2.00mm +PinHeader_2x06_P2.00mm_Horizontal +Through hole angled pin header, 2x06, 2.00mm pitch, 4.2mm pin length, double rows +Through hole angled pin header THT 2x06 2.00mm double row +0 +12 +12 +Connector_PinHeader_2.00mm +PinHeader_2x06_P2.00mm_Vertical +Through hole straight pin header, 2x06, 2.00mm pitch, double rows +Through hole pin header THT 2x06 2.00mm double row +0 +12 +12 +Connector_PinHeader_2.00mm +PinHeader_2x06_P2.00mm_Vertical_SMD +surface-mounted straight pin header, 2x06, 2.00mm pitch, double rows +Surface mounted pin header SMD 2x06 2.00mm double row +0 +12 +12 +Connector_PinHeader_2.00mm +PinHeader_2x07_P2.00mm_Horizontal +Through hole angled pin header, 2x07, 2.00mm pitch, 4.2mm pin length, double rows +Through hole angled pin header THT 2x07 2.00mm double row +0 +14 +14 +Connector_PinHeader_2.00mm +PinHeader_2x07_P2.00mm_Vertical +Through hole straight pin header, 2x07, 2.00mm pitch, double rows +Through hole pin header THT 2x07 2.00mm double row +0 +14 +14 +Connector_PinHeader_2.00mm +PinHeader_2x07_P2.00mm_Vertical_SMD +surface-mounted straight pin header, 2x07, 2.00mm pitch, double rows +Surface mounted pin header SMD 2x07 2.00mm double row +0 +14 +14 +Connector_PinHeader_2.00mm +PinHeader_2x08_P2.00mm_Horizontal +Through hole angled pin header, 2x08, 2.00mm pitch, 4.2mm pin length, double rows +Through hole angled pin header THT 2x08 2.00mm double row +0 +16 +16 +Connector_PinHeader_2.00mm +PinHeader_2x08_P2.00mm_Vertical +Through hole straight pin header, 2x08, 2.00mm pitch, double rows +Through hole pin header THT 2x08 2.00mm double row +0 +16 +16 +Connector_PinHeader_2.00mm +PinHeader_2x08_P2.00mm_Vertical_SMD +surface-mounted straight pin header, 2x08, 2.00mm pitch, double rows +Surface mounted pin header SMD 2x08 2.00mm double row +0 +16 +16 +Connector_PinHeader_2.00mm +PinHeader_2x09_P2.00mm_Horizontal +Through hole angled pin header, 2x09, 2.00mm pitch, 4.2mm pin length, double rows +Through hole angled pin header THT 2x09 2.00mm double row +0 +18 +18 +Connector_PinHeader_2.00mm +PinHeader_2x09_P2.00mm_Vertical +Through hole straight pin header, 2x09, 2.00mm pitch, double rows +Through hole pin header THT 2x09 2.00mm double row +0 +18 +18 +Connector_PinHeader_2.00mm +PinHeader_2x09_P2.00mm_Vertical_SMD +surface-mounted straight pin header, 2x09, 2.00mm pitch, double rows +Surface mounted pin header SMD 2x09 2.00mm double row +0 +18 +18 +Connector_PinHeader_2.00mm +PinHeader_2x10_P2.00mm_Horizontal +Through hole angled pin header, 2x10, 2.00mm pitch, 4.2mm pin length, double rows +Through hole angled pin header THT 2x10 2.00mm double row +0 +20 +20 +Connector_PinHeader_2.00mm +PinHeader_2x10_P2.00mm_Vertical +Through hole straight pin header, 2x10, 2.00mm pitch, double rows +Through hole pin header THT 2x10 2.00mm double row +0 +20 +20 +Connector_PinHeader_2.00mm +PinHeader_2x10_P2.00mm_Vertical_SMD +surface-mounted straight pin header, 2x10, 2.00mm pitch, double rows +Surface mounted pin header SMD 2x10 2.00mm double row +0 +20 +20 +Connector_PinHeader_2.00mm +PinHeader_2x11_P2.00mm_Horizontal +Through hole angled pin header, 2x11, 2.00mm pitch, 4.2mm pin length, double rows +Through hole angled pin header THT 2x11 2.00mm double row +0 +22 +22 +Connector_PinHeader_2.00mm +PinHeader_2x11_P2.00mm_Vertical +Through hole straight pin header, 2x11, 2.00mm pitch, double rows +Through hole pin header THT 2x11 2.00mm double row +0 +22 +22 +Connector_PinHeader_2.00mm +PinHeader_2x11_P2.00mm_Vertical_SMD +surface-mounted straight pin header, 2x11, 2.00mm pitch, double rows +Surface mounted pin header SMD 2x11 2.00mm double row +0 +22 +22 +Connector_PinHeader_2.00mm +PinHeader_2x12_P2.00mm_Horizontal +Through hole angled pin header, 2x12, 2.00mm pitch, 4.2mm pin length, double rows +Through hole angled pin header THT 2x12 2.00mm double row +0 +24 +24 +Connector_PinHeader_2.00mm +PinHeader_2x12_P2.00mm_Vertical +Through hole straight pin header, 2x12, 2.00mm pitch, double rows +Through hole pin header THT 2x12 2.00mm double row +0 +24 +24 +Connector_PinHeader_2.00mm +PinHeader_2x12_P2.00mm_Vertical_SMD +surface-mounted straight pin header, 2x12, 2.00mm pitch, double rows +Surface mounted pin header SMD 2x12 2.00mm double row +0 +24 +24 +Connector_PinHeader_2.00mm +PinHeader_2x13_P2.00mm_Horizontal +Through hole angled pin header, 2x13, 2.00mm pitch, 4.2mm pin length, double rows +Through hole angled pin header THT 2x13 2.00mm double row +0 +26 +26 +Connector_PinHeader_2.00mm +PinHeader_2x13_P2.00mm_Vertical +Through hole straight pin header, 2x13, 2.00mm pitch, double rows +Through hole pin header THT 2x13 2.00mm double row +0 +26 +26 +Connector_PinHeader_2.00mm +PinHeader_2x13_P2.00mm_Vertical_SMD +surface-mounted straight pin header, 2x13, 2.00mm pitch, double rows +Surface mounted pin header SMD 2x13 2.00mm double row +0 +26 +26 +Connector_PinHeader_2.00mm +PinHeader_2x14_P2.00mm_Horizontal +Through hole angled pin header, 2x14, 2.00mm pitch, 4.2mm pin length, double rows +Through hole angled pin header THT 2x14 2.00mm double row +0 +28 +28 +Connector_PinHeader_2.00mm +PinHeader_2x14_P2.00mm_Vertical +Through hole straight pin header, 2x14, 2.00mm pitch, double rows +Through hole pin header THT 2x14 2.00mm double row +0 +28 +28 +Connector_PinHeader_2.00mm +PinHeader_2x14_P2.00mm_Vertical_SMD +surface-mounted straight pin header, 2x14, 2.00mm pitch, double rows +Surface mounted pin header SMD 2x14 2.00mm double row +0 +28 +28 +Connector_PinHeader_2.00mm +PinHeader_2x15_P2.00mm_Horizontal +Through hole angled pin header, 2x15, 2.00mm pitch, 4.2mm pin length, double rows +Through hole angled pin header THT 2x15 2.00mm double row +0 +30 +30 +Connector_PinHeader_2.00mm +PinHeader_2x15_P2.00mm_Vertical +Through hole straight pin header, 2x15, 2.00mm pitch, double rows +Through hole pin header THT 2x15 2.00mm double row +0 +30 +30 +Connector_PinHeader_2.00mm +PinHeader_2x15_P2.00mm_Vertical_SMD +surface-mounted straight pin header, 2x15, 2.00mm pitch, double rows +Surface mounted pin header SMD 2x15 2.00mm double row +0 +30 +30 +Connector_PinHeader_2.00mm +PinHeader_2x16_P2.00mm_Horizontal +Through hole angled pin header, 2x16, 2.00mm pitch, 4.2mm pin length, double rows +Through hole angled pin header THT 2x16 2.00mm double row +0 +32 +32 +Connector_PinHeader_2.00mm +PinHeader_2x16_P2.00mm_Vertical +Through hole straight pin header, 2x16, 2.00mm pitch, double rows +Through hole pin header THT 2x16 2.00mm double row +0 +32 +32 +Connector_PinHeader_2.00mm +PinHeader_2x16_P2.00mm_Vertical_SMD +surface-mounted straight pin header, 2x16, 2.00mm pitch, double rows +Surface mounted pin header SMD 2x16 2.00mm double row +0 +32 +32 +Connector_PinHeader_2.00mm +PinHeader_2x17_P2.00mm_Horizontal +Through hole angled pin header, 2x17, 2.00mm pitch, 4.2mm pin length, double rows +Through hole angled pin header THT 2x17 2.00mm double row +0 +34 +34 +Connector_PinHeader_2.00mm +PinHeader_2x17_P2.00mm_Vertical +Through hole straight pin header, 2x17, 2.00mm pitch, double rows +Through hole pin header THT 2x17 2.00mm double row +0 +34 +34 +Connector_PinHeader_2.00mm +PinHeader_2x17_P2.00mm_Vertical_SMD +surface-mounted straight pin header, 2x17, 2.00mm pitch, double rows +Surface mounted pin header SMD 2x17 2.00mm double row +0 +34 +34 +Connector_PinHeader_2.00mm +PinHeader_2x18_P2.00mm_Horizontal +Through hole angled pin header, 2x18, 2.00mm pitch, 4.2mm pin length, double rows +Through hole angled pin header THT 2x18 2.00mm double row +0 +36 +36 +Connector_PinHeader_2.00mm +PinHeader_2x18_P2.00mm_Vertical +Through hole straight pin header, 2x18, 2.00mm pitch, double rows +Through hole pin header THT 2x18 2.00mm double row +0 +36 +36 +Connector_PinHeader_2.00mm +PinHeader_2x18_P2.00mm_Vertical_SMD +surface-mounted straight pin header, 2x18, 2.00mm pitch, double rows +Surface mounted pin header SMD 2x18 2.00mm double row +0 +36 +36 +Connector_PinHeader_2.00mm +PinHeader_2x19_P2.00mm_Horizontal +Through hole angled pin header, 2x19, 2.00mm pitch, 4.2mm pin length, double rows +Through hole angled pin header THT 2x19 2.00mm double row +0 +38 +38 +Connector_PinHeader_2.00mm +PinHeader_2x19_P2.00mm_Vertical +Through hole straight pin header, 2x19, 2.00mm pitch, double rows +Through hole pin header THT 2x19 2.00mm double row +0 +38 +38 +Connector_PinHeader_2.00mm +PinHeader_2x19_P2.00mm_Vertical_SMD +surface-mounted straight pin header, 2x19, 2.00mm pitch, double rows +Surface mounted pin header SMD 2x19 2.00mm double row +0 +38 +38 +Connector_PinHeader_2.00mm +PinHeader_2x20_P2.00mm_Horizontal +Through hole angled pin header, 2x20, 2.00mm pitch, 4.2mm pin length, double rows +Through hole angled pin header THT 2x20 2.00mm double row +0 +40 +40 +Connector_PinHeader_2.00mm +PinHeader_2x20_P2.00mm_Vertical +Through hole straight pin header, 2x20, 2.00mm pitch, double rows +Through hole pin header THT 2x20 2.00mm double row +0 +40 +40 +Connector_PinHeader_2.00mm +PinHeader_2x20_P2.00mm_Vertical_SMD +surface-mounted straight pin header, 2x20, 2.00mm pitch, double rows +Surface mounted pin header SMD 2x20 2.00mm double row +0 +40 +40 +Connector_PinHeader_2.00mm +PinHeader_2x21_P2.00mm_Horizontal +Through hole angled pin header, 2x21, 2.00mm pitch, 4.2mm pin length, double rows +Through hole angled pin header THT 2x21 2.00mm double row +0 +42 +42 +Connector_PinHeader_2.00mm +PinHeader_2x21_P2.00mm_Vertical +Through hole straight pin header, 2x21, 2.00mm pitch, double rows +Through hole pin header THT 2x21 2.00mm double row +0 +42 +42 +Connector_PinHeader_2.00mm +PinHeader_2x21_P2.00mm_Vertical_SMD +surface-mounted straight pin header, 2x21, 2.00mm pitch, double rows +Surface mounted pin header SMD 2x21 2.00mm double row +0 +42 +42 +Connector_PinHeader_2.00mm +PinHeader_2x22_P2.00mm_Horizontal +Through hole angled pin header, 2x22, 2.00mm pitch, 4.2mm pin length, double rows +Through hole angled pin header THT 2x22 2.00mm double row +0 +44 +44 +Connector_PinHeader_2.00mm +PinHeader_2x22_P2.00mm_Vertical +Through hole straight pin header, 2x22, 2.00mm pitch, double rows +Through hole pin header THT 2x22 2.00mm double row +0 +44 +44 +Connector_PinHeader_2.00mm +PinHeader_2x22_P2.00mm_Vertical_SMD +surface-mounted straight pin header, 2x22, 2.00mm pitch, double rows +Surface mounted pin header SMD 2x22 2.00mm double row +0 +44 +44 +Connector_PinHeader_2.00mm +PinHeader_2x23_P2.00mm_Horizontal +Through hole angled pin header, 2x23, 2.00mm pitch, 4.2mm pin length, double rows +Through hole angled pin header THT 2x23 2.00mm double row +0 +46 +46 +Connector_PinHeader_2.00mm +PinHeader_2x23_P2.00mm_Vertical +Through hole straight pin header, 2x23, 2.00mm pitch, double rows +Through hole pin header THT 2x23 2.00mm double row +0 +46 +46 +Connector_PinHeader_2.00mm +PinHeader_2x23_P2.00mm_Vertical_SMD +surface-mounted straight pin header, 2x23, 2.00mm pitch, double rows +Surface mounted pin header SMD 2x23 2.00mm double row +0 +46 +46 +Connector_PinHeader_2.00mm +PinHeader_2x24_P2.00mm_Horizontal +Through hole angled pin header, 2x24, 2.00mm pitch, 4.2mm pin length, double rows +Through hole angled pin header THT 2x24 2.00mm double row +0 +48 +48 +Connector_PinHeader_2.00mm +PinHeader_2x24_P2.00mm_Vertical +Through hole straight pin header, 2x24, 2.00mm pitch, double rows +Through hole pin header THT 2x24 2.00mm double row +0 +48 +48 +Connector_PinHeader_2.00mm +PinHeader_2x24_P2.00mm_Vertical_SMD +surface-mounted straight pin header, 2x24, 2.00mm pitch, double rows +Surface mounted pin header SMD 2x24 2.00mm double row +0 +48 +48 +Connector_PinHeader_2.00mm +PinHeader_2x25_P2.00mm_Horizontal +Through hole angled pin header, 2x25, 2.00mm pitch, 4.2mm pin length, double rows +Through hole angled pin header THT 2x25 2.00mm double row +0 +50 +50 +Connector_PinHeader_2.00mm +PinHeader_2x25_P2.00mm_Vertical +Through hole straight pin header, 2x25, 2.00mm pitch, double rows +Through hole pin header THT 2x25 2.00mm double row +0 +50 +50 +Connector_PinHeader_2.00mm +PinHeader_2x25_P2.00mm_Vertical_SMD +surface-mounted straight pin header, 2x25, 2.00mm pitch, double rows +Surface mounted pin header SMD 2x25 2.00mm double row +0 +50 +50 +Connector_PinHeader_2.00mm +PinHeader_2x26_P2.00mm_Horizontal +Through hole angled pin header, 2x26, 2.00mm pitch, 4.2mm pin length, double rows +Through hole angled pin header THT 2x26 2.00mm double row +0 +52 +52 +Connector_PinHeader_2.00mm +PinHeader_2x26_P2.00mm_Vertical +Through hole straight pin header, 2x26, 2.00mm pitch, double rows +Through hole pin header THT 2x26 2.00mm double row +0 +52 +52 +Connector_PinHeader_2.00mm +PinHeader_2x26_P2.00mm_Vertical_SMD +surface-mounted straight pin header, 2x26, 2.00mm pitch, double rows +Surface mounted pin header SMD 2x26 2.00mm double row +0 +52 +52 +Connector_PinHeader_2.00mm +PinHeader_2x27_P2.00mm_Horizontal +Through hole angled pin header, 2x27, 2.00mm pitch, 4.2mm pin length, double rows +Through hole angled pin header THT 2x27 2.00mm double row +0 +54 +54 +Connector_PinHeader_2.00mm +PinHeader_2x27_P2.00mm_Vertical +Through hole straight pin header, 2x27, 2.00mm pitch, double rows +Through hole pin header THT 2x27 2.00mm double row +0 +54 +54 +Connector_PinHeader_2.00mm +PinHeader_2x27_P2.00mm_Vertical_SMD +surface-mounted straight pin header, 2x27, 2.00mm pitch, double rows +Surface mounted pin header SMD 2x27 2.00mm double row +0 +54 +54 +Connector_PinHeader_2.00mm +PinHeader_2x28_P2.00mm_Horizontal +Through hole angled pin header, 2x28, 2.00mm pitch, 4.2mm pin length, double rows +Through hole angled pin header THT 2x28 2.00mm double row +0 +56 +56 +Connector_PinHeader_2.00mm +PinHeader_2x28_P2.00mm_Vertical +Through hole straight pin header, 2x28, 2.00mm pitch, double rows +Through hole pin header THT 2x28 2.00mm double row +0 +56 +56 +Connector_PinHeader_2.00mm +PinHeader_2x28_P2.00mm_Vertical_SMD +surface-mounted straight pin header, 2x28, 2.00mm pitch, double rows +Surface mounted pin header SMD 2x28 2.00mm double row +0 +56 +56 +Connector_PinHeader_2.00mm +PinHeader_2x29_P2.00mm_Horizontal +Through hole angled pin header, 2x29, 2.00mm pitch, 4.2mm pin length, double rows +Through hole angled pin header THT 2x29 2.00mm double row +0 +58 +58 +Connector_PinHeader_2.00mm +PinHeader_2x29_P2.00mm_Vertical +Through hole straight pin header, 2x29, 2.00mm pitch, double rows +Through hole pin header THT 2x29 2.00mm double row +0 +58 +58 +Connector_PinHeader_2.00mm +PinHeader_2x29_P2.00mm_Vertical_SMD +surface-mounted straight pin header, 2x29, 2.00mm pitch, double rows +Surface mounted pin header SMD 2x29 2.00mm double row +0 +58 +58 +Connector_PinHeader_2.00mm +PinHeader_2x30_P2.00mm_Horizontal +Through hole angled pin header, 2x30, 2.00mm pitch, 4.2mm pin length, double rows +Through hole angled pin header THT 2x30 2.00mm double row +0 +60 +60 +Connector_PinHeader_2.00mm +PinHeader_2x30_P2.00mm_Vertical +Through hole straight pin header, 2x30, 2.00mm pitch, double rows +Through hole pin header THT 2x30 2.00mm double row +0 +60 +60 +Connector_PinHeader_2.00mm +PinHeader_2x30_P2.00mm_Vertical_SMD +surface-mounted straight pin header, 2x30, 2.00mm pitch, double rows +Surface mounted pin header SMD 2x30 2.00mm double row +0 +60 +60 +Connector_PinHeader_2.00mm +PinHeader_2x31_P2.00mm_Horizontal +Through hole angled pin header, 2x31, 2.00mm pitch, 4.2mm pin length, double rows +Through hole angled pin header THT 2x31 2.00mm double row +0 +62 +62 +Connector_PinHeader_2.00mm +PinHeader_2x31_P2.00mm_Vertical +Through hole straight pin header, 2x31, 2.00mm pitch, double rows +Through hole pin header THT 2x31 2.00mm double row +0 +62 +62 +Connector_PinHeader_2.00mm +PinHeader_2x31_P2.00mm_Vertical_SMD +surface-mounted straight pin header, 2x31, 2.00mm pitch, double rows +Surface mounted pin header SMD 2x31 2.00mm double row +0 +62 +62 +Connector_PinHeader_2.00mm +PinHeader_2x32_P2.00mm_Horizontal +Through hole angled pin header, 2x32, 2.00mm pitch, 4.2mm pin length, double rows +Through hole angled pin header THT 2x32 2.00mm double row +0 +64 +64 +Connector_PinHeader_2.00mm +PinHeader_2x32_P2.00mm_Vertical +Through hole straight pin header, 2x32, 2.00mm pitch, double rows +Through hole pin header THT 2x32 2.00mm double row +0 +64 +64 +Connector_PinHeader_2.00mm +PinHeader_2x32_P2.00mm_Vertical_SMD +surface-mounted straight pin header, 2x32, 2.00mm pitch, double rows +Surface mounted pin header SMD 2x32 2.00mm double row +0 +64 +64 +Connector_PinHeader_2.00mm +PinHeader_2x33_P2.00mm_Horizontal +Through hole angled pin header, 2x33, 2.00mm pitch, 4.2mm pin length, double rows +Through hole angled pin header THT 2x33 2.00mm double row +0 +66 +66 +Connector_PinHeader_2.00mm +PinHeader_2x33_P2.00mm_Vertical +Through hole straight pin header, 2x33, 2.00mm pitch, double rows +Through hole pin header THT 2x33 2.00mm double row +0 +66 +66 +Connector_PinHeader_2.00mm +PinHeader_2x33_P2.00mm_Vertical_SMD +surface-mounted straight pin header, 2x33, 2.00mm pitch, double rows +Surface mounted pin header SMD 2x33 2.00mm double row +0 +66 +66 +Connector_PinHeader_2.00mm +PinHeader_2x34_P2.00mm_Horizontal +Through hole angled pin header, 2x34, 2.00mm pitch, 4.2mm pin length, double rows +Through hole angled pin header THT 2x34 2.00mm double row +0 +68 +68 +Connector_PinHeader_2.00mm +PinHeader_2x34_P2.00mm_Vertical +Through hole straight pin header, 2x34, 2.00mm pitch, double rows +Through hole pin header THT 2x34 2.00mm double row +0 +68 +68 +Connector_PinHeader_2.00mm +PinHeader_2x34_P2.00mm_Vertical_SMD +surface-mounted straight pin header, 2x34, 2.00mm pitch, double rows +Surface mounted pin header SMD 2x34 2.00mm double row +0 +68 +68 +Connector_PinHeader_2.00mm +PinHeader_2x35_P2.00mm_Horizontal +Through hole angled pin header, 2x35, 2.00mm pitch, 4.2mm pin length, double rows +Through hole angled pin header THT 2x35 2.00mm double row +0 +70 +70 +Connector_PinHeader_2.00mm +PinHeader_2x35_P2.00mm_Vertical +Through hole straight pin header, 2x35, 2.00mm pitch, double rows +Through hole pin header THT 2x35 2.00mm double row +0 +70 +70 +Connector_PinHeader_2.00mm +PinHeader_2x35_P2.00mm_Vertical_SMD +surface-mounted straight pin header, 2x35, 2.00mm pitch, double rows +Surface mounted pin header SMD 2x35 2.00mm double row +0 +70 +70 +Connector_PinHeader_2.00mm +PinHeader_2x36_P2.00mm_Horizontal +Through hole angled pin header, 2x36, 2.00mm pitch, 4.2mm pin length, double rows +Through hole angled pin header THT 2x36 2.00mm double row +0 +72 +72 +Connector_PinHeader_2.00mm +PinHeader_2x36_P2.00mm_Vertical +Through hole straight pin header, 2x36, 2.00mm pitch, double rows +Through hole pin header THT 2x36 2.00mm double row +0 +72 +72 +Connector_PinHeader_2.00mm +PinHeader_2x36_P2.00mm_Vertical_SMD +surface-mounted straight pin header, 2x36, 2.00mm pitch, double rows +Surface mounted pin header SMD 2x36 2.00mm double row +0 +72 +72 +Connector_PinHeader_2.00mm +PinHeader_2x37_P2.00mm_Horizontal +Through hole angled pin header, 2x37, 2.00mm pitch, 4.2mm pin length, double rows +Through hole angled pin header THT 2x37 2.00mm double row +0 +74 +74 +Connector_PinHeader_2.00mm +PinHeader_2x37_P2.00mm_Vertical +Through hole straight pin header, 2x37, 2.00mm pitch, double rows +Through hole pin header THT 2x37 2.00mm double row +0 +74 +74 +Connector_PinHeader_2.00mm +PinHeader_2x37_P2.00mm_Vertical_SMD +surface-mounted straight pin header, 2x37, 2.00mm pitch, double rows +Surface mounted pin header SMD 2x37 2.00mm double row +0 +74 +74 +Connector_PinHeader_2.00mm +PinHeader_2x38_P2.00mm_Horizontal +Through hole angled pin header, 2x38, 2.00mm pitch, 4.2mm pin length, double rows +Through hole angled pin header THT 2x38 2.00mm double row +0 +76 +76 +Connector_PinHeader_2.00mm +PinHeader_2x38_P2.00mm_Vertical +Through hole straight pin header, 2x38, 2.00mm pitch, double rows +Through hole pin header THT 2x38 2.00mm double row +0 +76 +76 +Connector_PinHeader_2.00mm +PinHeader_2x38_P2.00mm_Vertical_SMD +surface-mounted straight pin header, 2x38, 2.00mm pitch, double rows +Surface mounted pin header SMD 2x38 2.00mm double row +0 +76 +76 +Connector_PinHeader_2.00mm +PinHeader_2x39_P2.00mm_Horizontal +Through hole angled pin header, 2x39, 2.00mm pitch, 4.2mm pin length, double rows +Through hole angled pin header THT 2x39 2.00mm double row +0 +78 +78 +Connector_PinHeader_2.00mm +PinHeader_2x39_P2.00mm_Vertical +Through hole straight pin header, 2x39, 2.00mm pitch, double rows +Through hole pin header THT 2x39 2.00mm double row +0 +78 +78 +Connector_PinHeader_2.00mm +PinHeader_2x39_P2.00mm_Vertical_SMD +surface-mounted straight pin header, 2x39, 2.00mm pitch, double rows +Surface mounted pin header SMD 2x39 2.00mm double row +0 +78 +78 +Connector_PinHeader_2.00mm +PinHeader_2x40_P2.00mm_Horizontal +Through hole angled pin header, 2x40, 2.00mm pitch, 4.2mm pin length, double rows +Through hole angled pin header THT 2x40 2.00mm double row +0 +80 +80 +Connector_PinHeader_2.00mm +PinHeader_2x40_P2.00mm_Vertical +Through hole straight pin header, 2x40, 2.00mm pitch, double rows +Through hole pin header THT 2x40 2.00mm double row +0 +80 +80 +Connector_PinHeader_2.00mm +PinHeader_2x40_P2.00mm_Vertical_SMD +surface-mounted straight pin header, 2x40, 2.00mm pitch, double rows +Surface mounted pin header SMD 2x40 2.00mm double row +0 +80 +80 +Connector_PinHeader_2.54mm +PinHeader_1x01_P2.54mm_Horizontal +Through hole angled pin header, 1x01, 2.54mm pitch, 6mm pin length, single row +Through hole angled pin header THT 1x01 2.54mm single row +0 +1 +1 +Connector_PinHeader_2.54mm +PinHeader_1x01_P2.54mm_Vertical +Through hole straight pin header, 1x01, 2.54mm pitch, single row +Through hole pin header THT 1x01 2.54mm single row +0 +1 +1 +Connector_PinHeader_2.54mm +PinHeader_1x02_P2.54mm_Horizontal +Through hole angled pin header, 1x02, 2.54mm pitch, 6mm pin length, single row +Through hole angled pin header THT 1x02 2.54mm single row +0 +2 +2 +Connector_PinHeader_2.54mm +PinHeader_1x02_P2.54mm_Vertical +Through hole straight pin header, 1x02, 2.54mm pitch, single row +Through hole pin header THT 1x02 2.54mm single row +0 +2 +2 +Connector_PinHeader_2.54mm +PinHeader_1x02_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x02, 2.54mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x02 2.54mm single row style1 pin1 left +0 +2 +2 +Connector_PinHeader_2.54mm +PinHeader_1x02_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x02, 2.54mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x02 2.54mm single row style2 pin1 right +0 +2 +2 +Connector_PinHeader_2.54mm +PinHeader_1x03_P2.54mm_Horizontal +Through hole angled pin header, 1x03, 2.54mm pitch, 6mm pin length, single row +Through hole angled pin header THT 1x03 2.54mm single row +0 +3 +3 +Connector_PinHeader_2.54mm +PinHeader_1x03_P2.54mm_Vertical +Through hole straight pin header, 1x03, 2.54mm pitch, single row +Through hole pin header THT 1x03 2.54mm single row +0 +3 +3 +Connector_PinHeader_2.54mm +PinHeader_1x03_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x03, 2.54mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x03 2.54mm single row style1 pin1 left +0 +3 +3 +Connector_PinHeader_2.54mm +PinHeader_1x03_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x03, 2.54mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x03 2.54mm single row style2 pin1 right +0 +3 +3 +Connector_PinHeader_2.54mm +PinHeader_1x04_P2.54mm_Horizontal +Through hole angled pin header, 1x04, 2.54mm pitch, 6mm pin length, single row +Through hole angled pin header THT 1x04 2.54mm single row +0 +4 +4 +Connector_PinHeader_2.54mm +PinHeader_1x04_P2.54mm_Vertical +Through hole straight pin header, 1x04, 2.54mm pitch, single row +Through hole pin header THT 1x04 2.54mm single row +0 +4 +4 +Connector_PinHeader_2.54mm +PinHeader_1x04_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x04, 2.54mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x04 2.54mm single row style1 pin1 left +0 +4 +4 +Connector_PinHeader_2.54mm +PinHeader_1x04_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x04, 2.54mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x04 2.54mm single row style2 pin1 right +0 +4 +4 +Connector_PinHeader_2.54mm +PinHeader_1x05_P2.54mm_Horizontal +Through hole angled pin header, 1x05, 2.54mm pitch, 6mm pin length, single row +Through hole angled pin header THT 1x05 2.54mm single row +0 +5 +5 +Connector_PinHeader_2.54mm +PinHeader_1x05_P2.54mm_Vertical +Through hole straight pin header, 1x05, 2.54mm pitch, single row +Through hole pin header THT 1x05 2.54mm single row +0 +5 +5 +Connector_PinHeader_2.54mm +PinHeader_1x05_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x05, 2.54mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x05 2.54mm single row style1 pin1 left +0 +5 +5 +Connector_PinHeader_2.54mm +PinHeader_1x05_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x05, 2.54mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x05 2.54mm single row style2 pin1 right +0 +5 +5 +Connector_PinHeader_2.54mm +PinHeader_1x06_P2.54mm_Horizontal +Through hole angled pin header, 1x06, 2.54mm pitch, 6mm pin length, single row +Through hole angled pin header THT 1x06 2.54mm single row +0 +6 +6 +Connector_PinHeader_2.54mm +PinHeader_1x06_P2.54mm_Vertical +Through hole straight pin header, 1x06, 2.54mm pitch, single row +Through hole pin header THT 1x06 2.54mm single row +0 +6 +6 +Connector_PinHeader_2.54mm +PinHeader_1x06_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x06, 2.54mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x06 2.54mm single row style1 pin1 left +0 +6 +6 +Connector_PinHeader_2.54mm +PinHeader_1x06_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x06, 2.54mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x06 2.54mm single row style2 pin1 right +0 +6 +6 +Connector_PinHeader_2.54mm +PinHeader_1x07_P2.54mm_Horizontal +Through hole angled pin header, 1x07, 2.54mm pitch, 6mm pin length, single row +Through hole angled pin header THT 1x07 2.54mm single row +0 +7 +7 +Connector_PinHeader_2.54mm +PinHeader_1x07_P2.54mm_Vertical +Through hole straight pin header, 1x07, 2.54mm pitch, single row +Through hole pin header THT 1x07 2.54mm single row +0 +7 +7 +Connector_PinHeader_2.54mm +PinHeader_1x07_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x07, 2.54mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x07 2.54mm single row style1 pin1 left +0 +7 +7 +Connector_PinHeader_2.54mm +PinHeader_1x07_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x07, 2.54mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x07 2.54mm single row style2 pin1 right +0 +7 +7 +Connector_PinHeader_2.54mm +PinHeader_1x08_P2.54mm_Horizontal +Through hole angled pin header, 1x08, 2.54mm pitch, 6mm pin length, single row +Through hole angled pin header THT 1x08 2.54mm single row +0 +8 +8 +Connector_PinHeader_2.54mm +PinHeader_1x08_P2.54mm_Vertical +Through hole straight pin header, 1x08, 2.54mm pitch, single row +Through hole pin header THT 1x08 2.54mm single row +0 +8 +8 +Connector_PinHeader_2.54mm +PinHeader_1x08_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x08, 2.54mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x08 2.54mm single row style1 pin1 left +0 +8 +8 +Connector_PinHeader_2.54mm +PinHeader_1x08_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x08, 2.54mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x08 2.54mm single row style2 pin1 right +0 +8 +8 +Connector_PinHeader_2.54mm +PinHeader_1x09_P2.54mm_Horizontal +Through hole angled pin header, 1x09, 2.54mm pitch, 6mm pin length, single row +Through hole angled pin header THT 1x09 2.54mm single row +0 +9 +9 +Connector_PinHeader_2.54mm +PinHeader_1x09_P2.54mm_Vertical +Through hole straight pin header, 1x09, 2.54mm pitch, single row +Through hole pin header THT 1x09 2.54mm single row +0 +9 +9 +Connector_PinHeader_2.54mm +PinHeader_1x09_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x09, 2.54mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x09 2.54mm single row style1 pin1 left +0 +9 +9 +Connector_PinHeader_2.54mm +PinHeader_1x09_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x09, 2.54mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x09 2.54mm single row style2 pin1 right +0 +9 +9 +Connector_PinHeader_2.54mm +PinHeader_1x10_P2.54mm_Horizontal +Through hole angled pin header, 1x10, 2.54mm pitch, 6mm pin length, single row +Through hole angled pin header THT 1x10 2.54mm single row +0 +10 +10 +Connector_PinHeader_2.54mm +PinHeader_1x10_P2.54mm_Vertical +Through hole straight pin header, 1x10, 2.54mm pitch, single row +Through hole pin header THT 1x10 2.54mm single row +0 +10 +10 +Connector_PinHeader_2.54mm +PinHeader_1x10_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x10, 2.54mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x10 2.54mm single row style1 pin1 left +0 +10 +10 +Connector_PinHeader_2.54mm +PinHeader_1x10_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x10, 2.54mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x10 2.54mm single row style2 pin1 right +0 +10 +10 +Connector_PinHeader_2.54mm +PinHeader_1x11_P2.54mm_Horizontal +Through hole angled pin header, 1x11, 2.54mm pitch, 6mm pin length, single row +Through hole angled pin header THT 1x11 2.54mm single row +0 +11 +11 +Connector_PinHeader_2.54mm +PinHeader_1x11_P2.54mm_Vertical +Through hole straight pin header, 1x11, 2.54mm pitch, single row +Through hole pin header THT 1x11 2.54mm single row +0 +11 +11 +Connector_PinHeader_2.54mm +PinHeader_1x11_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x11, 2.54mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x11 2.54mm single row style1 pin1 left +0 +11 +11 +Connector_PinHeader_2.54mm +PinHeader_1x11_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x11, 2.54mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x11 2.54mm single row style2 pin1 right +0 +11 +11 +Connector_PinHeader_2.54mm +PinHeader_1x12_P2.54mm_Horizontal +Through hole angled pin header, 1x12, 2.54mm pitch, 6mm pin length, single row +Through hole angled pin header THT 1x12 2.54mm single row +0 +12 +12 +Connector_PinHeader_2.54mm +PinHeader_1x12_P2.54mm_Vertical +Through hole straight pin header, 1x12, 2.54mm pitch, single row +Through hole pin header THT 1x12 2.54mm single row +0 +12 +12 +Connector_PinHeader_2.54mm +PinHeader_1x12_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x12, 2.54mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x12 2.54mm single row style1 pin1 left +0 +12 +12 +Connector_PinHeader_2.54mm +PinHeader_1x12_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x12, 2.54mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x12 2.54mm single row style2 pin1 right +0 +12 +12 +Connector_PinHeader_2.54mm +PinHeader_1x13_P2.54mm_Horizontal +Through hole angled pin header, 1x13, 2.54mm pitch, 6mm pin length, single row +Through hole angled pin header THT 1x13 2.54mm single row +0 +13 +13 +Connector_PinHeader_2.54mm +PinHeader_1x13_P2.54mm_Vertical +Through hole straight pin header, 1x13, 2.54mm pitch, single row +Through hole pin header THT 1x13 2.54mm single row +0 +13 +13 +Connector_PinHeader_2.54mm +PinHeader_1x13_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x13, 2.54mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x13 2.54mm single row style1 pin1 left +0 +13 +13 +Connector_PinHeader_2.54mm +PinHeader_1x13_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x13, 2.54mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x13 2.54mm single row style2 pin1 right +0 +13 +13 +Connector_PinHeader_2.54mm +PinHeader_1x14_P2.54mm_Horizontal +Through hole angled pin header, 1x14, 2.54mm pitch, 6mm pin length, single row +Through hole angled pin header THT 1x14 2.54mm single row +0 +14 +14 +Connector_PinHeader_2.54mm +PinHeader_1x14_P2.54mm_Vertical +Through hole straight pin header, 1x14, 2.54mm pitch, single row +Through hole pin header THT 1x14 2.54mm single row +0 +14 +14 +Connector_PinHeader_2.54mm +PinHeader_1x14_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x14, 2.54mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x14 2.54mm single row style1 pin1 left +0 +14 +14 +Connector_PinHeader_2.54mm +PinHeader_1x14_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x14, 2.54mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x14 2.54mm single row style2 pin1 right +0 +14 +14 +Connector_PinHeader_2.54mm +PinHeader_1x15_P2.54mm_Horizontal +Through hole angled pin header, 1x15, 2.54mm pitch, 6mm pin length, single row +Through hole angled pin header THT 1x15 2.54mm single row +0 +15 +15 +Connector_PinHeader_2.54mm +PinHeader_1x15_P2.54mm_Vertical +Through hole straight pin header, 1x15, 2.54mm pitch, single row +Through hole pin header THT 1x15 2.54mm single row +0 +15 +15 +Connector_PinHeader_2.54mm +PinHeader_1x15_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x15, 2.54mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x15 2.54mm single row style1 pin1 left +0 +15 +15 +Connector_PinHeader_2.54mm +PinHeader_1x15_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x15, 2.54mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x15 2.54mm single row style2 pin1 right +0 +15 +15 +Connector_PinHeader_2.54mm +PinHeader_1x16_P2.54mm_Horizontal +Through hole angled pin header, 1x16, 2.54mm pitch, 6mm pin length, single row +Through hole angled pin header THT 1x16 2.54mm single row +0 +16 +16 +Connector_PinHeader_2.54mm +PinHeader_1x16_P2.54mm_Vertical +Through hole straight pin header, 1x16, 2.54mm pitch, single row +Through hole pin header THT 1x16 2.54mm single row +0 +16 +16 +Connector_PinHeader_2.54mm +PinHeader_1x16_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x16, 2.54mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x16 2.54mm single row style1 pin1 left +0 +16 +16 +Connector_PinHeader_2.54mm +PinHeader_1x16_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x16, 2.54mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x16 2.54mm single row style2 pin1 right +0 +16 +16 +Connector_PinHeader_2.54mm +PinHeader_1x17_P2.54mm_Horizontal +Through hole angled pin header, 1x17, 2.54mm pitch, 6mm pin length, single row +Through hole angled pin header THT 1x17 2.54mm single row +0 +17 +17 +Connector_PinHeader_2.54mm +PinHeader_1x17_P2.54mm_Vertical +Through hole straight pin header, 1x17, 2.54mm pitch, single row +Through hole pin header THT 1x17 2.54mm single row +0 +17 +17 +Connector_PinHeader_2.54mm +PinHeader_1x17_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x17, 2.54mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x17 2.54mm single row style1 pin1 left +0 +17 +17 +Connector_PinHeader_2.54mm +PinHeader_1x17_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x17, 2.54mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x17 2.54mm single row style2 pin1 right +0 +17 +17 +Connector_PinHeader_2.54mm +PinHeader_1x18_P2.54mm_Horizontal +Through hole angled pin header, 1x18, 2.54mm pitch, 6mm pin length, single row +Through hole angled pin header THT 1x18 2.54mm single row +0 +18 +18 +Connector_PinHeader_2.54mm +PinHeader_1x18_P2.54mm_Vertical +Through hole straight pin header, 1x18, 2.54mm pitch, single row +Through hole pin header THT 1x18 2.54mm single row +0 +18 +18 +Connector_PinHeader_2.54mm +PinHeader_1x18_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x18, 2.54mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x18 2.54mm single row style1 pin1 left +0 +18 +18 +Connector_PinHeader_2.54mm +PinHeader_1x18_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x18, 2.54mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x18 2.54mm single row style2 pin1 right +0 +18 +18 +Connector_PinHeader_2.54mm +PinHeader_1x19_P2.54mm_Horizontal +Through hole angled pin header, 1x19, 2.54mm pitch, 6mm pin length, single row +Through hole angled pin header THT 1x19 2.54mm single row +0 +19 +19 +Connector_PinHeader_2.54mm +PinHeader_1x19_P2.54mm_Vertical +Through hole straight pin header, 1x19, 2.54mm pitch, single row +Through hole pin header THT 1x19 2.54mm single row +0 +19 +19 +Connector_PinHeader_2.54mm +PinHeader_1x19_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x19, 2.54mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x19 2.54mm single row style1 pin1 left +0 +19 +19 +Connector_PinHeader_2.54mm +PinHeader_1x19_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x19, 2.54mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x19 2.54mm single row style2 pin1 right +0 +19 +19 +Connector_PinHeader_2.54mm +PinHeader_1x20_P2.54mm_Horizontal +Through hole angled pin header, 1x20, 2.54mm pitch, 6mm pin length, single row +Through hole angled pin header THT 1x20 2.54mm single row +0 +20 +20 +Connector_PinHeader_2.54mm +PinHeader_1x20_P2.54mm_Vertical +Through hole straight pin header, 1x20, 2.54mm pitch, single row +Through hole pin header THT 1x20 2.54mm single row +0 +20 +20 +Connector_PinHeader_2.54mm +PinHeader_1x20_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x20, 2.54mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x20 2.54mm single row style1 pin1 left +0 +20 +20 +Connector_PinHeader_2.54mm +PinHeader_1x20_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x20, 2.54mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x20 2.54mm single row style2 pin1 right +0 +20 +20 +Connector_PinHeader_2.54mm +PinHeader_1x21_P2.54mm_Horizontal +Through hole angled pin header, 1x21, 2.54mm pitch, 6mm pin length, single row +Through hole angled pin header THT 1x21 2.54mm single row +0 +21 +21 +Connector_PinHeader_2.54mm +PinHeader_1x21_P2.54mm_Vertical +Through hole straight pin header, 1x21, 2.54mm pitch, single row +Through hole pin header THT 1x21 2.54mm single row +0 +21 +21 +Connector_PinHeader_2.54mm +PinHeader_1x21_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x21, 2.54mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x21 2.54mm single row style1 pin1 left +0 +21 +21 +Connector_PinHeader_2.54mm +PinHeader_1x21_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x21, 2.54mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x21 2.54mm single row style2 pin1 right +0 +21 +21 +Connector_PinHeader_2.54mm +PinHeader_1x22_P2.54mm_Horizontal +Through hole angled pin header, 1x22, 2.54mm pitch, 6mm pin length, single row +Through hole angled pin header THT 1x22 2.54mm single row +0 +22 +22 +Connector_PinHeader_2.54mm +PinHeader_1x22_P2.54mm_Vertical +Through hole straight pin header, 1x22, 2.54mm pitch, single row +Through hole pin header THT 1x22 2.54mm single row +0 +22 +22 +Connector_PinHeader_2.54mm +PinHeader_1x22_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x22, 2.54mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x22 2.54mm single row style1 pin1 left +0 +22 +22 +Connector_PinHeader_2.54mm +PinHeader_1x22_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x22, 2.54mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x22 2.54mm single row style2 pin1 right +0 +22 +22 +Connector_PinHeader_2.54mm +PinHeader_1x23_P2.54mm_Horizontal +Through hole angled pin header, 1x23, 2.54mm pitch, 6mm pin length, single row +Through hole angled pin header THT 1x23 2.54mm single row +0 +23 +23 +Connector_PinHeader_2.54mm +PinHeader_1x23_P2.54mm_Vertical +Through hole straight pin header, 1x23, 2.54mm pitch, single row +Through hole pin header THT 1x23 2.54mm single row +0 +23 +23 +Connector_PinHeader_2.54mm +PinHeader_1x23_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x23, 2.54mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x23 2.54mm single row style1 pin1 left +0 +23 +23 +Connector_PinHeader_2.54mm +PinHeader_1x23_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x23, 2.54mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x23 2.54mm single row style2 pin1 right +0 +23 +23 +Connector_PinHeader_2.54mm +PinHeader_1x24_P2.54mm_Horizontal +Through hole angled pin header, 1x24, 2.54mm pitch, 6mm pin length, single row +Through hole angled pin header THT 1x24 2.54mm single row +0 +24 +24 +Connector_PinHeader_2.54mm +PinHeader_1x24_P2.54mm_Vertical +Through hole straight pin header, 1x24, 2.54mm pitch, single row +Through hole pin header THT 1x24 2.54mm single row +0 +24 +24 +Connector_PinHeader_2.54mm +PinHeader_1x24_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x24, 2.54mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x24 2.54mm single row style1 pin1 left +0 +24 +24 +Connector_PinHeader_2.54mm +PinHeader_1x24_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x24, 2.54mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x24 2.54mm single row style2 pin1 right +0 +24 +24 +Connector_PinHeader_2.54mm +PinHeader_1x25_P2.54mm_Horizontal +Through hole angled pin header, 1x25, 2.54mm pitch, 6mm pin length, single row +Through hole angled pin header THT 1x25 2.54mm single row +0 +25 +25 +Connector_PinHeader_2.54mm +PinHeader_1x25_P2.54mm_Vertical +Through hole straight pin header, 1x25, 2.54mm pitch, single row +Through hole pin header THT 1x25 2.54mm single row +0 +25 +25 +Connector_PinHeader_2.54mm +PinHeader_1x25_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x25, 2.54mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x25 2.54mm single row style1 pin1 left +0 +25 +25 +Connector_PinHeader_2.54mm +PinHeader_1x25_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x25, 2.54mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x25 2.54mm single row style2 pin1 right +0 +25 +25 +Connector_PinHeader_2.54mm +PinHeader_1x26_P2.54mm_Horizontal +Through hole angled pin header, 1x26, 2.54mm pitch, 6mm pin length, single row +Through hole angled pin header THT 1x26 2.54mm single row +0 +26 +26 +Connector_PinHeader_2.54mm +PinHeader_1x26_P2.54mm_Vertical +Through hole straight pin header, 1x26, 2.54mm pitch, single row +Through hole pin header THT 1x26 2.54mm single row +0 +26 +26 +Connector_PinHeader_2.54mm +PinHeader_1x26_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x26, 2.54mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x26 2.54mm single row style1 pin1 left +0 +26 +26 +Connector_PinHeader_2.54mm +PinHeader_1x26_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x26, 2.54mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x26 2.54mm single row style2 pin1 right +0 +26 +26 +Connector_PinHeader_2.54mm +PinHeader_1x27_P2.54mm_Horizontal +Through hole angled pin header, 1x27, 2.54mm pitch, 6mm pin length, single row +Through hole angled pin header THT 1x27 2.54mm single row +0 +27 +27 +Connector_PinHeader_2.54mm +PinHeader_1x27_P2.54mm_Vertical +Through hole straight pin header, 1x27, 2.54mm pitch, single row +Through hole pin header THT 1x27 2.54mm single row +0 +27 +27 +Connector_PinHeader_2.54mm +PinHeader_1x27_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x27, 2.54mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x27 2.54mm single row style1 pin1 left +0 +27 +27 +Connector_PinHeader_2.54mm +PinHeader_1x27_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x27, 2.54mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x27 2.54mm single row style2 pin1 right +0 +27 +27 +Connector_PinHeader_2.54mm +PinHeader_1x28_P2.54mm_Horizontal +Through hole angled pin header, 1x28, 2.54mm pitch, 6mm pin length, single row +Through hole angled pin header THT 1x28 2.54mm single row +0 +28 +28 +Connector_PinHeader_2.54mm +PinHeader_1x28_P2.54mm_Vertical +Through hole straight pin header, 1x28, 2.54mm pitch, single row +Through hole pin header THT 1x28 2.54mm single row +0 +28 +28 +Connector_PinHeader_2.54mm +PinHeader_1x28_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x28, 2.54mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x28 2.54mm single row style1 pin1 left +0 +28 +28 +Connector_PinHeader_2.54mm +PinHeader_1x28_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x28, 2.54mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x28 2.54mm single row style2 pin1 right +0 +28 +28 +Connector_PinHeader_2.54mm +PinHeader_1x29_P2.54mm_Horizontal +Through hole angled pin header, 1x29, 2.54mm pitch, 6mm pin length, single row +Through hole angled pin header THT 1x29 2.54mm single row +0 +29 +29 +Connector_PinHeader_2.54mm +PinHeader_1x29_P2.54mm_Vertical +Through hole straight pin header, 1x29, 2.54mm pitch, single row +Through hole pin header THT 1x29 2.54mm single row +0 +29 +29 +Connector_PinHeader_2.54mm +PinHeader_1x29_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x29, 2.54mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x29 2.54mm single row style1 pin1 left +0 +29 +29 +Connector_PinHeader_2.54mm +PinHeader_1x29_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x29, 2.54mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x29 2.54mm single row style2 pin1 right +0 +29 +29 +Connector_PinHeader_2.54mm +PinHeader_1x30_P2.54mm_Horizontal +Through hole angled pin header, 1x30, 2.54mm pitch, 6mm pin length, single row +Through hole angled pin header THT 1x30 2.54mm single row +0 +30 +30 +Connector_PinHeader_2.54mm +PinHeader_1x30_P2.54mm_Vertical +Through hole straight pin header, 1x30, 2.54mm pitch, single row +Through hole pin header THT 1x30 2.54mm single row +0 +30 +30 +Connector_PinHeader_2.54mm +PinHeader_1x30_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x30, 2.54mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x30 2.54mm single row style1 pin1 left +0 +30 +30 +Connector_PinHeader_2.54mm +PinHeader_1x30_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x30, 2.54mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x30 2.54mm single row style2 pin1 right +0 +30 +30 +Connector_PinHeader_2.54mm +PinHeader_1x31_P2.54mm_Horizontal +Through hole angled pin header, 1x31, 2.54mm pitch, 6mm pin length, single row +Through hole angled pin header THT 1x31 2.54mm single row +0 +31 +31 +Connector_PinHeader_2.54mm +PinHeader_1x31_P2.54mm_Vertical +Through hole straight pin header, 1x31, 2.54mm pitch, single row +Through hole pin header THT 1x31 2.54mm single row +0 +31 +31 +Connector_PinHeader_2.54mm +PinHeader_1x31_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x31, 2.54mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x31 2.54mm single row style1 pin1 left +0 +31 +31 +Connector_PinHeader_2.54mm +PinHeader_1x31_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x31, 2.54mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x31 2.54mm single row style2 pin1 right +0 +31 +31 +Connector_PinHeader_2.54mm +PinHeader_1x32_P2.54mm_Horizontal +Through hole angled pin header, 1x32, 2.54mm pitch, 6mm pin length, single row +Through hole angled pin header THT 1x32 2.54mm single row +0 +32 +32 +Connector_PinHeader_2.54mm +PinHeader_1x32_P2.54mm_Vertical +Through hole straight pin header, 1x32, 2.54mm pitch, single row +Through hole pin header THT 1x32 2.54mm single row +0 +32 +32 +Connector_PinHeader_2.54mm +PinHeader_1x32_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x32, 2.54mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x32 2.54mm single row style1 pin1 left +0 +32 +32 +Connector_PinHeader_2.54mm +PinHeader_1x32_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x32, 2.54mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x32 2.54mm single row style2 pin1 right +0 +32 +32 +Connector_PinHeader_2.54mm +PinHeader_1x33_P2.54mm_Horizontal +Through hole angled pin header, 1x33, 2.54mm pitch, 6mm pin length, single row +Through hole angled pin header THT 1x33 2.54mm single row +0 +33 +33 +Connector_PinHeader_2.54mm +PinHeader_1x33_P2.54mm_Vertical +Through hole straight pin header, 1x33, 2.54mm pitch, single row +Through hole pin header THT 1x33 2.54mm single row +0 +33 +33 +Connector_PinHeader_2.54mm +PinHeader_1x33_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x33, 2.54mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x33 2.54mm single row style1 pin1 left +0 +33 +33 +Connector_PinHeader_2.54mm +PinHeader_1x33_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x33, 2.54mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x33 2.54mm single row style2 pin1 right +0 +33 +33 +Connector_PinHeader_2.54mm +PinHeader_1x34_P2.54mm_Horizontal +Through hole angled pin header, 1x34, 2.54mm pitch, 6mm pin length, single row +Through hole angled pin header THT 1x34 2.54mm single row +0 +34 +34 +Connector_PinHeader_2.54mm +PinHeader_1x34_P2.54mm_Vertical +Through hole straight pin header, 1x34, 2.54mm pitch, single row +Through hole pin header THT 1x34 2.54mm single row +0 +34 +34 +Connector_PinHeader_2.54mm +PinHeader_1x34_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x34, 2.54mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x34 2.54mm single row style1 pin1 left +0 +34 +34 +Connector_PinHeader_2.54mm +PinHeader_1x34_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x34, 2.54mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x34 2.54mm single row style2 pin1 right +0 +34 +34 +Connector_PinHeader_2.54mm +PinHeader_1x35_P2.54mm_Horizontal +Through hole angled pin header, 1x35, 2.54mm pitch, 6mm pin length, single row +Through hole angled pin header THT 1x35 2.54mm single row +0 +35 +35 +Connector_PinHeader_2.54mm +PinHeader_1x35_P2.54mm_Vertical +Through hole straight pin header, 1x35, 2.54mm pitch, single row +Through hole pin header THT 1x35 2.54mm single row +0 +35 +35 +Connector_PinHeader_2.54mm +PinHeader_1x35_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x35, 2.54mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x35 2.54mm single row style1 pin1 left +0 +35 +35 +Connector_PinHeader_2.54mm +PinHeader_1x35_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x35, 2.54mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x35 2.54mm single row style2 pin1 right +0 +35 +35 +Connector_PinHeader_2.54mm +PinHeader_1x36_P2.54mm_Horizontal +Through hole angled pin header, 1x36, 2.54mm pitch, 6mm pin length, single row +Through hole angled pin header THT 1x36 2.54mm single row +0 +36 +36 +Connector_PinHeader_2.54mm +PinHeader_1x36_P2.54mm_Vertical +Through hole straight pin header, 1x36, 2.54mm pitch, single row +Through hole pin header THT 1x36 2.54mm single row +0 +36 +36 +Connector_PinHeader_2.54mm +PinHeader_1x36_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x36, 2.54mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x36 2.54mm single row style1 pin1 left +0 +36 +36 +Connector_PinHeader_2.54mm +PinHeader_1x36_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x36, 2.54mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x36 2.54mm single row style2 pin1 right +0 +36 +36 +Connector_PinHeader_2.54mm +PinHeader_1x37_P2.54mm_Horizontal +Through hole angled pin header, 1x37, 2.54mm pitch, 6mm pin length, single row +Through hole angled pin header THT 1x37 2.54mm single row +0 +37 +37 +Connector_PinHeader_2.54mm +PinHeader_1x37_P2.54mm_Vertical +Through hole straight pin header, 1x37, 2.54mm pitch, single row +Through hole pin header THT 1x37 2.54mm single row +0 +37 +37 +Connector_PinHeader_2.54mm +PinHeader_1x37_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x37, 2.54mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x37 2.54mm single row style1 pin1 left +0 +37 +37 +Connector_PinHeader_2.54mm +PinHeader_1x37_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x37, 2.54mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x37 2.54mm single row style2 pin1 right +0 +37 +37 +Connector_PinHeader_2.54mm +PinHeader_1x38_P2.54mm_Horizontal +Through hole angled pin header, 1x38, 2.54mm pitch, 6mm pin length, single row +Through hole angled pin header THT 1x38 2.54mm single row +0 +38 +38 +Connector_PinHeader_2.54mm +PinHeader_1x38_P2.54mm_Vertical +Through hole straight pin header, 1x38, 2.54mm pitch, single row +Through hole pin header THT 1x38 2.54mm single row +0 +38 +38 +Connector_PinHeader_2.54mm +PinHeader_1x38_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x38, 2.54mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x38 2.54mm single row style1 pin1 left +0 +38 +38 +Connector_PinHeader_2.54mm +PinHeader_1x38_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x38, 2.54mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x38 2.54mm single row style2 pin1 right +0 +38 +38 +Connector_PinHeader_2.54mm +PinHeader_1x39_P2.54mm_Horizontal +Through hole angled pin header, 1x39, 2.54mm pitch, 6mm pin length, single row +Through hole angled pin header THT 1x39 2.54mm single row +0 +39 +39 +Connector_PinHeader_2.54mm +PinHeader_1x39_P2.54mm_Vertical +Through hole straight pin header, 1x39, 2.54mm pitch, single row +Through hole pin header THT 1x39 2.54mm single row +0 +39 +39 +Connector_PinHeader_2.54mm +PinHeader_1x39_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x39, 2.54mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x39 2.54mm single row style1 pin1 left +0 +39 +39 +Connector_PinHeader_2.54mm +PinHeader_1x39_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x39, 2.54mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x39 2.54mm single row style2 pin1 right +0 +39 +39 +Connector_PinHeader_2.54mm +PinHeader_1x40_P2.54mm_Horizontal +Through hole angled pin header, 1x40, 2.54mm pitch, 6mm pin length, single row +Through hole angled pin header THT 1x40 2.54mm single row +0 +40 +40 +Connector_PinHeader_2.54mm +PinHeader_1x40_P2.54mm_Vertical +Through hole straight pin header, 1x40, 2.54mm pitch, single row +Through hole pin header THT 1x40 2.54mm single row +0 +40 +40 +Connector_PinHeader_2.54mm +PinHeader_1x40_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x40, 2.54mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x40 2.54mm single row style1 pin1 left +0 +40 +40 +Connector_PinHeader_2.54mm +PinHeader_1x40_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x40, 2.54mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x40 2.54mm single row style2 pin1 right +0 +40 +40 +Connector_PinHeader_2.54mm +PinHeader_2x01_P2.54mm_Horizontal +Through hole angled pin header, 2x01, 2.54mm pitch, 6mm pin length, double rows +Through hole angled pin header THT 2x01 2.54mm double row +0 +2 +2 +Connector_PinHeader_2.54mm +PinHeader_2x01_P2.54mm_Vertical +Through hole straight pin header, 2x01, 2.54mm pitch, double rows +Through hole pin header THT 2x01 2.54mm double row +0 +2 +2 +Connector_PinHeader_2.54mm +PinHeader_2x01_P2.54mm_Vertical_SMD +surface-mounted straight pin header, 2x01, 2.54mm pitch, double rows +Surface mounted pin header SMD 2x01 2.54mm double row +0 +2 +2 +Connector_PinHeader_2.54mm +PinHeader_2x02_P2.54mm_Horizontal +Through hole angled pin header, 2x02, 2.54mm pitch, 6mm pin length, double rows +Through hole angled pin header THT 2x02 2.54mm double row +0 +4 +4 +Connector_PinHeader_2.54mm +PinHeader_2x02_P2.54mm_Vertical +Through hole straight pin header, 2x02, 2.54mm pitch, double rows +Through hole pin header THT 2x02 2.54mm double row +0 +4 +4 +Connector_PinHeader_2.54mm +PinHeader_2x02_P2.54mm_Vertical_SMD +surface-mounted straight pin header, 2x02, 2.54mm pitch, double rows +Surface mounted pin header SMD 2x02 2.54mm double row +0 +4 +4 +Connector_PinHeader_2.54mm +PinHeader_2x03_P2.54mm_Horizontal +Through hole angled pin header, 2x03, 2.54mm pitch, 6mm pin length, double rows +Through hole angled pin header THT 2x03 2.54mm double row +0 +6 +6 +Connector_PinHeader_2.54mm +PinHeader_2x03_P2.54mm_Vertical +Through hole straight pin header, 2x03, 2.54mm pitch, double rows +Through hole pin header THT 2x03 2.54mm double row +0 +6 +6 +Connector_PinHeader_2.54mm +PinHeader_2x03_P2.54mm_Vertical_SMD +surface-mounted straight pin header, 2x03, 2.54mm pitch, double rows +Surface mounted pin header SMD 2x03 2.54mm double row +0 +6 +6 +Connector_PinHeader_2.54mm +PinHeader_2x04_P2.54mm_Horizontal +Through hole angled pin header, 2x04, 2.54mm pitch, 6mm pin length, double rows +Through hole angled pin header THT 2x04 2.54mm double row +0 +8 +8 +Connector_PinHeader_2.54mm +PinHeader_2x04_P2.54mm_Vertical +Through hole straight pin header, 2x04, 2.54mm pitch, double rows +Through hole pin header THT 2x04 2.54mm double row +0 +8 +8 +Connector_PinHeader_2.54mm +PinHeader_2x04_P2.54mm_Vertical_SMD +surface-mounted straight pin header, 2x04, 2.54mm pitch, double rows +Surface mounted pin header SMD 2x04 2.54mm double row +0 +8 +8 +Connector_PinHeader_2.54mm +PinHeader_2x05_P2.54mm_Horizontal +Through hole angled pin header, 2x05, 2.54mm pitch, 6mm pin length, double rows +Through hole angled pin header THT 2x05 2.54mm double row +0 +10 +10 +Connector_PinHeader_2.54mm +PinHeader_2x05_P2.54mm_Vertical +Through hole straight pin header, 2x05, 2.54mm pitch, double rows +Through hole pin header THT 2x05 2.54mm double row +0 +10 +10 +Connector_PinHeader_2.54mm +PinHeader_2x05_P2.54mm_Vertical_SMD +surface-mounted straight pin header, 2x05, 2.54mm pitch, double rows +Surface mounted pin header SMD 2x05 2.54mm double row +0 +10 +10 +Connector_PinHeader_2.54mm +PinHeader_2x06_P2.54mm_Horizontal +Through hole angled pin header, 2x06, 2.54mm pitch, 6mm pin length, double rows +Through hole angled pin header THT 2x06 2.54mm double row +0 +12 +12 +Connector_PinHeader_2.54mm +PinHeader_2x06_P2.54mm_Vertical +Through hole straight pin header, 2x06, 2.54mm pitch, double rows +Through hole pin header THT 2x06 2.54mm double row +0 +12 +12 +Connector_PinHeader_2.54mm +PinHeader_2x06_P2.54mm_Vertical_SMD +surface-mounted straight pin header, 2x06, 2.54mm pitch, double rows +Surface mounted pin header SMD 2x06 2.54mm double row +0 +12 +12 +Connector_PinHeader_2.54mm +PinHeader_2x07_P2.54mm_Horizontal +Through hole angled pin header, 2x07, 2.54mm pitch, 6mm pin length, double rows +Through hole angled pin header THT 2x07 2.54mm double row +0 +14 +14 +Connector_PinHeader_2.54mm +PinHeader_2x07_P2.54mm_Vertical +Through hole straight pin header, 2x07, 2.54mm pitch, double rows +Through hole pin header THT 2x07 2.54mm double row +0 +14 +14 +Connector_PinHeader_2.54mm +PinHeader_2x07_P2.54mm_Vertical_SMD +surface-mounted straight pin header, 2x07, 2.54mm pitch, double rows +Surface mounted pin header SMD 2x07 2.54mm double row +0 +14 +14 +Connector_PinHeader_2.54mm +PinHeader_2x08_P2.54mm_Horizontal +Through hole angled pin header, 2x08, 2.54mm pitch, 6mm pin length, double rows +Through hole angled pin header THT 2x08 2.54mm double row +0 +16 +16 +Connector_PinHeader_2.54mm +PinHeader_2x08_P2.54mm_Vertical +Through hole straight pin header, 2x08, 2.54mm pitch, double rows +Through hole pin header THT 2x08 2.54mm double row +0 +16 +16 +Connector_PinHeader_2.54mm +PinHeader_2x08_P2.54mm_Vertical_SMD +surface-mounted straight pin header, 2x08, 2.54mm pitch, double rows +Surface mounted pin header SMD 2x08 2.54mm double row +0 +16 +16 +Connector_PinHeader_2.54mm +PinHeader_2x09_P2.54mm_Horizontal +Through hole angled pin header, 2x09, 2.54mm pitch, 6mm pin length, double rows +Through hole angled pin header THT 2x09 2.54mm double row +0 +18 +18 +Connector_PinHeader_2.54mm +PinHeader_2x09_P2.54mm_Vertical +Through hole straight pin header, 2x09, 2.54mm pitch, double rows +Through hole pin header THT 2x09 2.54mm double row +0 +18 +18 +Connector_PinHeader_2.54mm +PinHeader_2x09_P2.54mm_Vertical_SMD +surface-mounted straight pin header, 2x09, 2.54mm pitch, double rows +Surface mounted pin header SMD 2x09 2.54mm double row +0 +18 +18 +Connector_PinHeader_2.54mm +PinHeader_2x10_P2.54mm_Horizontal +Through hole angled pin header, 2x10, 2.54mm pitch, 6mm pin length, double rows +Through hole angled pin header THT 2x10 2.54mm double row +0 +20 +20 +Connector_PinHeader_2.54mm +PinHeader_2x10_P2.54mm_Vertical +Through hole straight pin header, 2x10, 2.54mm pitch, double rows +Through hole pin header THT 2x10 2.54mm double row +0 +20 +20 +Connector_PinHeader_2.54mm +PinHeader_2x10_P2.54mm_Vertical_SMD +surface-mounted straight pin header, 2x10, 2.54mm pitch, double rows +Surface mounted pin header SMD 2x10 2.54mm double row +0 +20 +20 +Connector_PinHeader_2.54mm +PinHeader_2x11_P2.54mm_Horizontal +Through hole angled pin header, 2x11, 2.54mm pitch, 6mm pin length, double rows +Through hole angled pin header THT 2x11 2.54mm double row +0 +22 +22 +Connector_PinHeader_2.54mm +PinHeader_2x11_P2.54mm_Vertical +Through hole straight pin header, 2x11, 2.54mm pitch, double rows +Through hole pin header THT 2x11 2.54mm double row +0 +22 +22 +Connector_PinHeader_2.54mm +PinHeader_2x11_P2.54mm_Vertical_SMD +surface-mounted straight pin header, 2x11, 2.54mm pitch, double rows +Surface mounted pin header SMD 2x11 2.54mm double row +0 +22 +22 +Connector_PinHeader_2.54mm +PinHeader_2x12_P2.54mm_Horizontal +Through hole angled pin header, 2x12, 2.54mm pitch, 6mm pin length, double rows +Through hole angled pin header THT 2x12 2.54mm double row +0 +24 +24 +Connector_PinHeader_2.54mm +PinHeader_2x12_P2.54mm_Vertical +Through hole straight pin header, 2x12, 2.54mm pitch, double rows +Through hole pin header THT 2x12 2.54mm double row +0 +24 +24 +Connector_PinHeader_2.54mm +PinHeader_2x12_P2.54mm_Vertical_SMD +surface-mounted straight pin header, 2x12, 2.54mm pitch, double rows +Surface mounted pin header SMD 2x12 2.54mm double row +0 +24 +24 +Connector_PinHeader_2.54mm +PinHeader_2x13_P2.54mm_Horizontal +Through hole angled pin header, 2x13, 2.54mm pitch, 6mm pin length, double rows +Through hole angled pin header THT 2x13 2.54mm double row +0 +26 +26 +Connector_PinHeader_2.54mm +PinHeader_2x13_P2.54mm_Vertical +Through hole straight pin header, 2x13, 2.54mm pitch, double rows +Through hole pin header THT 2x13 2.54mm double row +0 +26 +26 +Connector_PinHeader_2.54mm +PinHeader_2x13_P2.54mm_Vertical_SMD +surface-mounted straight pin header, 2x13, 2.54mm pitch, double rows +Surface mounted pin header SMD 2x13 2.54mm double row +0 +26 +26 +Connector_PinHeader_2.54mm +PinHeader_2x14_P2.54mm_Horizontal +Through hole angled pin header, 2x14, 2.54mm pitch, 6mm pin length, double rows +Through hole angled pin header THT 2x14 2.54mm double row +0 +28 +28 +Connector_PinHeader_2.54mm +PinHeader_2x14_P2.54mm_Vertical +Through hole straight pin header, 2x14, 2.54mm pitch, double rows +Through hole pin header THT 2x14 2.54mm double row +0 +28 +28 +Connector_PinHeader_2.54mm +PinHeader_2x14_P2.54mm_Vertical_SMD +surface-mounted straight pin header, 2x14, 2.54mm pitch, double rows +Surface mounted pin header SMD 2x14 2.54mm double row +0 +28 +28 +Connector_PinHeader_2.54mm +PinHeader_2x15_P2.54mm_Horizontal +Through hole angled pin header, 2x15, 2.54mm pitch, 6mm pin length, double rows +Through hole angled pin header THT 2x15 2.54mm double row +0 +30 +30 +Connector_PinHeader_2.54mm +PinHeader_2x15_P2.54mm_Vertical +Through hole straight pin header, 2x15, 2.54mm pitch, double rows +Through hole pin header THT 2x15 2.54mm double row +0 +30 +30 +Connector_PinHeader_2.54mm +PinHeader_2x15_P2.54mm_Vertical_SMD +surface-mounted straight pin header, 2x15, 2.54mm pitch, double rows +Surface mounted pin header SMD 2x15 2.54mm double row +0 +30 +30 +Connector_PinHeader_2.54mm +PinHeader_2x16_P2.54mm_Horizontal +Through hole angled pin header, 2x16, 2.54mm pitch, 6mm pin length, double rows +Through hole angled pin header THT 2x16 2.54mm double row +0 +32 +32 +Connector_PinHeader_2.54mm +PinHeader_2x16_P2.54mm_Vertical +Through hole straight pin header, 2x16, 2.54mm pitch, double rows +Through hole pin header THT 2x16 2.54mm double row +0 +32 +32 +Connector_PinHeader_2.54mm +PinHeader_2x16_P2.54mm_Vertical_SMD +surface-mounted straight pin header, 2x16, 2.54mm pitch, double rows +Surface mounted pin header SMD 2x16 2.54mm double row +0 +32 +32 +Connector_PinHeader_2.54mm +PinHeader_2x17_P2.54mm_Horizontal +Through hole angled pin header, 2x17, 2.54mm pitch, 6mm pin length, double rows +Through hole angled pin header THT 2x17 2.54mm double row +0 +34 +34 +Connector_PinHeader_2.54mm +PinHeader_2x17_P2.54mm_Vertical +Through hole straight pin header, 2x17, 2.54mm pitch, double rows +Through hole pin header THT 2x17 2.54mm double row +0 +34 +34 +Connector_PinHeader_2.54mm +PinHeader_2x17_P2.54mm_Vertical_SMD +surface-mounted straight pin header, 2x17, 2.54mm pitch, double rows +Surface mounted pin header SMD 2x17 2.54mm double row +0 +34 +34 +Connector_PinHeader_2.54mm +PinHeader_2x18_P2.54mm_Horizontal +Through hole angled pin header, 2x18, 2.54mm pitch, 6mm pin length, double rows +Through hole angled pin header THT 2x18 2.54mm double row +0 +36 +36 +Connector_PinHeader_2.54mm +PinHeader_2x18_P2.54mm_Vertical +Through hole straight pin header, 2x18, 2.54mm pitch, double rows +Through hole pin header THT 2x18 2.54mm double row +0 +36 +36 +Connector_PinHeader_2.54mm +PinHeader_2x18_P2.54mm_Vertical_SMD +surface-mounted straight pin header, 2x18, 2.54mm pitch, double rows +Surface mounted pin header SMD 2x18 2.54mm double row +0 +36 +36 +Connector_PinHeader_2.54mm +PinHeader_2x19_P2.54mm_Horizontal +Through hole angled pin header, 2x19, 2.54mm pitch, 6mm pin length, double rows +Through hole angled pin header THT 2x19 2.54mm double row +0 +38 +38 +Connector_PinHeader_2.54mm +PinHeader_2x19_P2.54mm_Vertical +Through hole straight pin header, 2x19, 2.54mm pitch, double rows +Through hole pin header THT 2x19 2.54mm double row +0 +38 +38 +Connector_PinHeader_2.54mm +PinHeader_2x19_P2.54mm_Vertical_SMD +surface-mounted straight pin header, 2x19, 2.54mm pitch, double rows +Surface mounted pin header SMD 2x19 2.54mm double row +0 +38 +38 +Connector_PinHeader_2.54mm +PinHeader_2x20_P2.54mm_Horizontal +Through hole angled pin header, 2x20, 2.54mm pitch, 6mm pin length, double rows +Through hole angled pin header THT 2x20 2.54mm double row +0 +40 +40 +Connector_PinHeader_2.54mm +PinHeader_2x20_P2.54mm_Vertical +Through hole straight pin header, 2x20, 2.54mm pitch, double rows +Through hole pin header THT 2x20 2.54mm double row +0 +40 +40 +Connector_PinHeader_2.54mm +PinHeader_2x20_P2.54mm_Vertical_SMD +surface-mounted straight pin header, 2x20, 2.54mm pitch, double rows +Surface mounted pin header SMD 2x20 2.54mm double row +0 +40 +40 +Connector_PinHeader_2.54mm +PinHeader_2x21_P2.54mm_Horizontal +Through hole angled pin header, 2x21, 2.54mm pitch, 6mm pin length, double rows +Through hole angled pin header THT 2x21 2.54mm double row +0 +42 +42 +Connector_PinHeader_2.54mm +PinHeader_2x21_P2.54mm_Vertical +Through hole straight pin header, 2x21, 2.54mm pitch, double rows +Through hole pin header THT 2x21 2.54mm double row +0 +42 +42 +Connector_PinHeader_2.54mm +PinHeader_2x21_P2.54mm_Vertical_SMD +surface-mounted straight pin header, 2x21, 2.54mm pitch, double rows +Surface mounted pin header SMD 2x21 2.54mm double row +0 +42 +42 +Connector_PinHeader_2.54mm +PinHeader_2x22_P2.54mm_Horizontal +Through hole angled pin header, 2x22, 2.54mm pitch, 6mm pin length, double rows +Through hole angled pin header THT 2x22 2.54mm double row +0 +44 +44 +Connector_PinHeader_2.54mm +PinHeader_2x22_P2.54mm_Vertical +Through hole straight pin header, 2x22, 2.54mm pitch, double rows +Through hole pin header THT 2x22 2.54mm double row +0 +44 +44 +Connector_PinHeader_2.54mm +PinHeader_2x22_P2.54mm_Vertical_SMD +surface-mounted straight pin header, 2x22, 2.54mm pitch, double rows +Surface mounted pin header SMD 2x22 2.54mm double row +0 +44 +44 +Connector_PinHeader_2.54mm +PinHeader_2x23_P2.54mm_Horizontal +Through hole angled pin header, 2x23, 2.54mm pitch, 6mm pin length, double rows +Through hole angled pin header THT 2x23 2.54mm double row +0 +46 +46 +Connector_PinHeader_2.54mm +PinHeader_2x23_P2.54mm_Vertical +Through hole straight pin header, 2x23, 2.54mm pitch, double rows +Through hole pin header THT 2x23 2.54mm double row +0 +46 +46 +Connector_PinHeader_2.54mm +PinHeader_2x23_P2.54mm_Vertical_SMD +surface-mounted straight pin header, 2x23, 2.54mm pitch, double rows +Surface mounted pin header SMD 2x23 2.54mm double row +0 +46 +46 +Connector_PinHeader_2.54mm +PinHeader_2x24_P2.54mm_Horizontal +Through hole angled pin header, 2x24, 2.54mm pitch, 6mm pin length, double rows +Through hole angled pin header THT 2x24 2.54mm double row +0 +48 +48 +Connector_PinHeader_2.54mm +PinHeader_2x24_P2.54mm_Vertical +Through hole straight pin header, 2x24, 2.54mm pitch, double rows +Through hole pin header THT 2x24 2.54mm double row +0 +48 +48 +Connector_PinHeader_2.54mm +PinHeader_2x24_P2.54mm_Vertical_SMD +surface-mounted straight pin header, 2x24, 2.54mm pitch, double rows +Surface mounted pin header SMD 2x24 2.54mm double row +0 +48 +48 +Connector_PinHeader_2.54mm +PinHeader_2x25_P2.54mm_Horizontal +Through hole angled pin header, 2x25, 2.54mm pitch, 6mm pin length, double rows +Through hole angled pin header THT 2x25 2.54mm double row +0 +50 +50 +Connector_PinHeader_2.54mm +PinHeader_2x25_P2.54mm_Vertical +Through hole straight pin header, 2x25, 2.54mm pitch, double rows +Through hole pin header THT 2x25 2.54mm double row +0 +50 +50 +Connector_PinHeader_2.54mm +PinHeader_2x25_P2.54mm_Vertical_SMD +surface-mounted straight pin header, 2x25, 2.54mm pitch, double rows +Surface mounted pin header SMD 2x25 2.54mm double row +0 +50 +50 +Connector_PinHeader_2.54mm +PinHeader_2x26_P2.54mm_Horizontal +Through hole angled pin header, 2x26, 2.54mm pitch, 6mm pin length, double rows +Through hole angled pin header THT 2x26 2.54mm double row +0 +52 +52 +Connector_PinHeader_2.54mm +PinHeader_2x26_P2.54mm_Vertical +Through hole straight pin header, 2x26, 2.54mm pitch, double rows +Through hole pin header THT 2x26 2.54mm double row +0 +52 +52 +Connector_PinHeader_2.54mm +PinHeader_2x26_P2.54mm_Vertical_SMD +surface-mounted straight pin header, 2x26, 2.54mm pitch, double rows +Surface mounted pin header SMD 2x26 2.54mm double row +0 +52 +52 +Connector_PinHeader_2.54mm +PinHeader_2x27_P2.54mm_Horizontal +Through hole angled pin header, 2x27, 2.54mm pitch, 6mm pin length, double rows +Through hole angled pin header THT 2x27 2.54mm double row +0 +54 +54 +Connector_PinHeader_2.54mm +PinHeader_2x27_P2.54mm_Vertical +Through hole straight pin header, 2x27, 2.54mm pitch, double rows +Through hole pin header THT 2x27 2.54mm double row +0 +54 +54 +Connector_PinHeader_2.54mm +PinHeader_2x27_P2.54mm_Vertical_SMD +surface-mounted straight pin header, 2x27, 2.54mm pitch, double rows +Surface mounted pin header SMD 2x27 2.54mm double row +0 +54 +54 +Connector_PinHeader_2.54mm +PinHeader_2x28_P2.54mm_Horizontal +Through hole angled pin header, 2x28, 2.54mm pitch, 6mm pin length, double rows +Through hole angled pin header THT 2x28 2.54mm double row +0 +56 +56 +Connector_PinHeader_2.54mm +PinHeader_2x28_P2.54mm_Vertical +Through hole straight pin header, 2x28, 2.54mm pitch, double rows +Through hole pin header THT 2x28 2.54mm double row +0 +56 +56 +Connector_PinHeader_2.54mm +PinHeader_2x28_P2.54mm_Vertical_SMD +surface-mounted straight pin header, 2x28, 2.54mm pitch, double rows +Surface mounted pin header SMD 2x28 2.54mm double row +0 +56 +56 +Connector_PinHeader_2.54mm +PinHeader_2x29_P2.54mm_Horizontal +Through hole angled pin header, 2x29, 2.54mm pitch, 6mm pin length, double rows +Through hole angled pin header THT 2x29 2.54mm double row +0 +58 +58 +Connector_PinHeader_2.54mm +PinHeader_2x29_P2.54mm_Vertical +Through hole straight pin header, 2x29, 2.54mm pitch, double rows +Through hole pin header THT 2x29 2.54mm double row +0 +58 +58 +Connector_PinHeader_2.54mm +PinHeader_2x29_P2.54mm_Vertical_SMD +surface-mounted straight pin header, 2x29, 2.54mm pitch, double rows +Surface mounted pin header SMD 2x29 2.54mm double row +0 +58 +58 +Connector_PinHeader_2.54mm +PinHeader_2x30_P2.54mm_Horizontal +Through hole angled pin header, 2x30, 2.54mm pitch, 6mm pin length, double rows +Through hole angled pin header THT 2x30 2.54mm double row +0 +60 +60 +Connector_PinHeader_2.54mm +PinHeader_2x30_P2.54mm_Vertical +Through hole straight pin header, 2x30, 2.54mm pitch, double rows +Through hole pin header THT 2x30 2.54mm double row +0 +60 +60 +Connector_PinHeader_2.54mm +PinHeader_2x30_P2.54mm_Vertical_SMD +surface-mounted straight pin header, 2x30, 2.54mm pitch, double rows +Surface mounted pin header SMD 2x30 2.54mm double row +0 +60 +60 +Connector_PinHeader_2.54mm +PinHeader_2x31_P2.54mm_Horizontal +Through hole angled pin header, 2x31, 2.54mm pitch, 6mm pin length, double rows +Through hole angled pin header THT 2x31 2.54mm double row +0 +62 +62 +Connector_PinHeader_2.54mm +PinHeader_2x31_P2.54mm_Vertical +Through hole straight pin header, 2x31, 2.54mm pitch, double rows +Through hole pin header THT 2x31 2.54mm double row +0 +62 +62 +Connector_PinHeader_2.54mm +PinHeader_2x31_P2.54mm_Vertical_SMD +surface-mounted straight pin header, 2x31, 2.54mm pitch, double rows +Surface mounted pin header SMD 2x31 2.54mm double row +0 +62 +62 +Connector_PinHeader_2.54mm +PinHeader_2x32_P2.54mm_Horizontal +Through hole angled pin header, 2x32, 2.54mm pitch, 6mm pin length, double rows +Through hole angled pin header THT 2x32 2.54mm double row +0 +64 +64 +Connector_PinHeader_2.54mm +PinHeader_2x32_P2.54mm_Vertical +Through hole straight pin header, 2x32, 2.54mm pitch, double rows +Through hole pin header THT 2x32 2.54mm double row +0 +64 +64 +Connector_PinHeader_2.54mm +PinHeader_2x32_P2.54mm_Vertical_SMD +surface-mounted straight pin header, 2x32, 2.54mm pitch, double rows +Surface mounted pin header SMD 2x32 2.54mm double row +0 +64 +64 +Connector_PinHeader_2.54mm +PinHeader_2x33_P2.54mm_Horizontal +Through hole angled pin header, 2x33, 2.54mm pitch, 6mm pin length, double rows +Through hole angled pin header THT 2x33 2.54mm double row +0 +66 +66 +Connector_PinHeader_2.54mm +PinHeader_2x33_P2.54mm_Vertical +Through hole straight pin header, 2x33, 2.54mm pitch, double rows +Through hole pin header THT 2x33 2.54mm double row +0 +66 +66 +Connector_PinHeader_2.54mm +PinHeader_2x33_P2.54mm_Vertical_SMD +surface-mounted straight pin header, 2x33, 2.54mm pitch, double rows +Surface mounted pin header SMD 2x33 2.54mm double row +0 +66 +66 +Connector_PinHeader_2.54mm +PinHeader_2x34_P2.54mm_Horizontal +Through hole angled pin header, 2x34, 2.54mm pitch, 6mm pin length, double rows +Through hole angled pin header THT 2x34 2.54mm double row +0 +68 +68 +Connector_PinHeader_2.54mm +PinHeader_2x34_P2.54mm_Vertical +Through hole straight pin header, 2x34, 2.54mm pitch, double rows +Through hole pin header THT 2x34 2.54mm double row +0 +68 +68 +Connector_PinHeader_2.54mm +PinHeader_2x34_P2.54mm_Vertical_SMD +surface-mounted straight pin header, 2x34, 2.54mm pitch, double rows +Surface mounted pin header SMD 2x34 2.54mm double row +0 +68 +68 +Connector_PinHeader_2.54mm +PinHeader_2x35_P2.54mm_Horizontal +Through hole angled pin header, 2x35, 2.54mm pitch, 6mm pin length, double rows +Through hole angled pin header THT 2x35 2.54mm double row +0 +70 +70 +Connector_PinHeader_2.54mm +PinHeader_2x35_P2.54mm_Vertical +Through hole straight pin header, 2x35, 2.54mm pitch, double rows +Through hole pin header THT 2x35 2.54mm double row +0 +70 +70 +Connector_PinHeader_2.54mm +PinHeader_2x35_P2.54mm_Vertical_SMD +surface-mounted straight pin header, 2x35, 2.54mm pitch, double rows +Surface mounted pin header SMD 2x35 2.54mm double row +0 +70 +70 +Connector_PinHeader_2.54mm +PinHeader_2x36_P2.54mm_Horizontal +Through hole angled pin header, 2x36, 2.54mm pitch, 6mm pin length, double rows +Through hole angled pin header THT 2x36 2.54mm double row +0 +72 +72 +Connector_PinHeader_2.54mm +PinHeader_2x36_P2.54mm_Vertical +Through hole straight pin header, 2x36, 2.54mm pitch, double rows +Through hole pin header THT 2x36 2.54mm double row +0 +72 +72 +Connector_PinHeader_2.54mm +PinHeader_2x36_P2.54mm_Vertical_SMD +surface-mounted straight pin header, 2x36, 2.54mm pitch, double rows +Surface mounted pin header SMD 2x36 2.54mm double row +0 +72 +72 +Connector_PinHeader_2.54mm +PinHeader_2x37_P2.54mm_Horizontal +Through hole angled pin header, 2x37, 2.54mm pitch, 6mm pin length, double rows +Through hole angled pin header THT 2x37 2.54mm double row +0 +74 +74 +Connector_PinHeader_2.54mm +PinHeader_2x37_P2.54mm_Vertical +Through hole straight pin header, 2x37, 2.54mm pitch, double rows +Through hole pin header THT 2x37 2.54mm double row +0 +74 +74 +Connector_PinHeader_2.54mm +PinHeader_2x37_P2.54mm_Vertical_SMD +surface-mounted straight pin header, 2x37, 2.54mm pitch, double rows +Surface mounted pin header SMD 2x37 2.54mm double row +0 +74 +74 +Connector_PinHeader_2.54mm +PinHeader_2x38_P2.54mm_Horizontal +Through hole angled pin header, 2x38, 2.54mm pitch, 6mm pin length, double rows +Through hole angled pin header THT 2x38 2.54mm double row +0 +76 +76 +Connector_PinHeader_2.54mm +PinHeader_2x38_P2.54mm_Vertical +Through hole straight pin header, 2x38, 2.54mm pitch, double rows +Through hole pin header THT 2x38 2.54mm double row +0 +76 +76 +Connector_PinHeader_2.54mm +PinHeader_2x38_P2.54mm_Vertical_SMD +surface-mounted straight pin header, 2x38, 2.54mm pitch, double rows +Surface mounted pin header SMD 2x38 2.54mm double row +0 +76 +76 +Connector_PinHeader_2.54mm +PinHeader_2x39_P2.54mm_Horizontal +Through hole angled pin header, 2x39, 2.54mm pitch, 6mm pin length, double rows +Through hole angled pin header THT 2x39 2.54mm double row +0 +78 +78 +Connector_PinHeader_2.54mm +PinHeader_2x39_P2.54mm_Vertical +Through hole straight pin header, 2x39, 2.54mm pitch, double rows +Through hole pin header THT 2x39 2.54mm double row +0 +78 +78 +Connector_PinHeader_2.54mm +PinHeader_2x39_P2.54mm_Vertical_SMD +surface-mounted straight pin header, 2x39, 2.54mm pitch, double rows +Surface mounted pin header SMD 2x39 2.54mm double row +0 +78 +78 +Connector_PinHeader_2.54mm +PinHeader_2x40_P2.54mm_Horizontal +Through hole angled pin header, 2x40, 2.54mm pitch, 6mm pin length, double rows +Through hole angled pin header THT 2x40 2.54mm double row +0 +80 +80 +Connector_PinHeader_2.54mm +PinHeader_2x40_P2.54mm_Vertical +Through hole straight pin header, 2x40, 2.54mm pitch, double rows +Through hole pin header THT 2x40 2.54mm double row +0 +80 +80 +Connector_PinHeader_2.54mm +PinHeader_2x40_P2.54mm_Vertical_SMD +surface-mounted straight pin header, 2x40, 2.54mm pitch, double rows +Surface mounted pin header SMD 2x40 2.54mm double row +0 +80 +80 +Connector_PinSocket_1.00mm +PinSocket_1x02_P1.00mm_Vertical +Through hole straight socket strip, 1x02, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated +Through hole socket strip THT 1x02 1.00mm single row +0 +2 +2 +Connector_PinSocket_1.00mm +PinSocket_1x02_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x02, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x02 1.00mm single row style1 pin1 left +0 +2 +2 +Connector_PinSocket_1.00mm +PinSocket_1x02_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x02, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x02 1.00mm single row style2 pin1 right +0 +2 +2 +Connector_PinSocket_1.00mm +PinSocket_1x03_P1.00mm_Vertical +Through hole straight socket strip, 1x03, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated +Through hole socket strip THT 1x03 1.00mm single row +0 +3 +3 +Connector_PinSocket_1.00mm +PinSocket_1x03_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x03, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x03 1.00mm single row style1 pin1 left +0 +3 +3 +Connector_PinSocket_1.00mm +PinSocket_1x03_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x03, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x03 1.00mm single row style2 pin1 right +0 +3 +3 +Connector_PinSocket_1.00mm +PinSocket_1x04_P1.00mm_Vertical +Through hole straight socket strip, 1x04, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated +Through hole socket strip THT 1x04 1.00mm single row +0 +4 +4 +Connector_PinSocket_1.00mm +PinSocket_1x04_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x04, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x04 1.00mm single row style1 pin1 left +0 +4 +4 +Connector_PinSocket_1.00mm +PinSocket_1x04_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x04, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x04 1.00mm single row style2 pin1 right +0 +4 +4 +Connector_PinSocket_1.00mm +PinSocket_1x05_P1.00mm_Vertical +Through hole straight socket strip, 1x05, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated +Through hole socket strip THT 1x05 1.00mm single row +0 +5 +5 +Connector_PinSocket_1.00mm +PinSocket_1x05_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x05, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x05 1.00mm single row style1 pin1 left +0 +5 +5 +Connector_PinSocket_1.00mm +PinSocket_1x05_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x05, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x05 1.00mm single row style2 pin1 right +0 +5 +5 +Connector_PinSocket_1.00mm +PinSocket_1x06_P1.00mm_Vertical +Through hole straight socket strip, 1x06, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated +Through hole socket strip THT 1x06 1.00mm single row +0 +6 +6 +Connector_PinSocket_1.00mm +PinSocket_1x06_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x06, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x06 1.00mm single row style1 pin1 left +0 +6 +6 +Connector_PinSocket_1.00mm +PinSocket_1x06_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x06, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x06 1.00mm single row style2 pin1 right +0 +6 +6 +Connector_PinSocket_1.00mm +PinSocket_1x07_P1.00mm_Vertical +Through hole straight socket strip, 1x07, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated +Through hole socket strip THT 1x07 1.00mm single row +0 +7 +7 +Connector_PinSocket_1.00mm +PinSocket_1x07_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x07, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x07 1.00mm single row style1 pin1 left +0 +7 +7 +Connector_PinSocket_1.00mm +PinSocket_1x07_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x07, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x07 1.00mm single row style2 pin1 right +0 +7 +7 +Connector_PinSocket_1.00mm +PinSocket_1x08_P1.00mm_Vertical +Through hole straight socket strip, 1x08, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated +Through hole socket strip THT 1x08 1.00mm single row +0 +8 +8 +Connector_PinSocket_1.00mm +PinSocket_1x08_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x08, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x08 1.00mm single row style1 pin1 left +0 +8 +8 +Connector_PinSocket_1.00mm +PinSocket_1x08_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x08, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x08 1.00mm single row style2 pin1 right +0 +8 +8 +Connector_PinSocket_1.00mm +PinSocket_1x09_P1.00mm_Vertical +Through hole straight socket strip, 1x09, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated +Through hole socket strip THT 1x09 1.00mm single row +0 +9 +9 +Connector_PinSocket_1.00mm +PinSocket_1x09_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x09, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x09 1.00mm single row style1 pin1 left +0 +9 +9 +Connector_PinSocket_1.00mm +PinSocket_1x09_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x09, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x09 1.00mm single row style2 pin1 right +0 +9 +9 +Connector_PinSocket_1.00mm +PinSocket_1x10_P1.00mm_Vertical +Through hole straight socket strip, 1x10, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated +Through hole socket strip THT 1x10 1.00mm single row +0 +10 +10 +Connector_PinSocket_1.00mm +PinSocket_1x10_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x10, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x10 1.00mm single row style1 pin1 left +0 +10 +10 +Connector_PinSocket_1.00mm +PinSocket_1x10_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x10, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x10 1.00mm single row style2 pin1 right +0 +10 +10 +Connector_PinSocket_1.00mm +PinSocket_1x11_P1.00mm_Vertical +Through hole straight socket strip, 1x11, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated +Through hole socket strip THT 1x11 1.00mm single row +0 +11 +11 +Connector_PinSocket_1.00mm +PinSocket_1x11_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x11, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x11 1.00mm single row style1 pin1 left +0 +11 +11 +Connector_PinSocket_1.00mm +PinSocket_1x11_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x11, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x11 1.00mm single row style2 pin1 right +0 +11 +11 +Connector_PinSocket_1.00mm +PinSocket_1x12_P1.00mm_Vertical +Through hole straight socket strip, 1x12, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated +Through hole socket strip THT 1x12 1.00mm single row +0 +12 +12 +Connector_PinSocket_1.00mm +PinSocket_1x12_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x12, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x12 1.00mm single row style1 pin1 left +0 +12 +12 +Connector_PinSocket_1.00mm +PinSocket_1x12_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x12, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x12 1.00mm single row style2 pin1 right +0 +12 +12 +Connector_PinSocket_1.00mm +PinSocket_1x13_P1.00mm_Vertical +Through hole straight socket strip, 1x13, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated +Through hole socket strip THT 1x13 1.00mm single row +0 +13 +13 +Connector_PinSocket_1.00mm +PinSocket_1x13_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x13, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x13 1.00mm single row style1 pin1 left +0 +13 +13 +Connector_PinSocket_1.00mm +PinSocket_1x13_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x13, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x13 1.00mm single row style2 pin1 right +0 +13 +13 +Connector_PinSocket_1.00mm +PinSocket_1x14_P1.00mm_Vertical +Through hole straight socket strip, 1x14, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated +Through hole socket strip THT 1x14 1.00mm single row +0 +14 +14 +Connector_PinSocket_1.00mm +PinSocket_1x14_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x14, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x14 1.00mm single row style1 pin1 left +0 +14 +14 +Connector_PinSocket_1.00mm +PinSocket_1x14_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x14, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x14 1.00mm single row style2 pin1 right +0 +14 +14 +Connector_PinSocket_1.00mm +PinSocket_1x15_P1.00mm_Vertical +Through hole straight socket strip, 1x15, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated +Through hole socket strip THT 1x15 1.00mm single row +0 +15 +15 +Connector_PinSocket_1.00mm +PinSocket_1x15_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x15, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x15 1.00mm single row style1 pin1 left +0 +15 +15 +Connector_PinSocket_1.00mm +PinSocket_1x15_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x15, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x15 1.00mm single row style2 pin1 right +0 +15 +15 +Connector_PinSocket_1.00mm +PinSocket_1x16_P1.00mm_Vertical +Through hole straight socket strip, 1x16, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated +Through hole socket strip THT 1x16 1.00mm single row +0 +16 +16 +Connector_PinSocket_1.00mm +PinSocket_1x16_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x16, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x16 1.00mm single row style1 pin1 left +0 +16 +16 +Connector_PinSocket_1.00mm +PinSocket_1x16_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x16, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x16 1.00mm single row style2 pin1 right +0 +16 +16 +Connector_PinSocket_1.00mm +PinSocket_1x17_P1.00mm_Vertical +Through hole straight socket strip, 1x17, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated +Through hole socket strip THT 1x17 1.00mm single row +0 +17 +17 +Connector_PinSocket_1.00mm +PinSocket_1x17_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x17, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x17 1.00mm single row style1 pin1 left +0 +17 +17 +Connector_PinSocket_1.00mm +PinSocket_1x17_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x17, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x17 1.00mm single row style2 pin1 right +0 +17 +17 +Connector_PinSocket_1.00mm +PinSocket_1x18_P1.00mm_Vertical +Through hole straight socket strip, 1x18, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated +Through hole socket strip THT 1x18 1.00mm single row +0 +18 +18 +Connector_PinSocket_1.00mm +PinSocket_1x18_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x18, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x18 1.00mm single row style1 pin1 left +0 +18 +18 +Connector_PinSocket_1.00mm +PinSocket_1x18_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x18, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x18 1.00mm single row style2 pin1 right +0 +18 +18 +Connector_PinSocket_1.00mm +PinSocket_1x19_P1.00mm_Vertical +Through hole straight socket strip, 1x19, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated +Through hole socket strip THT 1x19 1.00mm single row +0 +19 +19 +Connector_PinSocket_1.00mm +PinSocket_1x19_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x19, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x19 1.00mm single row style1 pin1 left +0 +19 +19 +Connector_PinSocket_1.00mm +PinSocket_1x19_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x19, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x19 1.00mm single row style2 pin1 right +0 +19 +19 +Connector_PinSocket_1.00mm +PinSocket_1x20_P1.00mm_Vertical +Through hole straight socket strip, 1x20, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated +Through hole socket strip THT 1x20 1.00mm single row +0 +20 +20 +Connector_PinSocket_1.00mm +PinSocket_1x20_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x20, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x20 1.00mm single row style1 pin1 left +0 +20 +20 +Connector_PinSocket_1.00mm +PinSocket_1x20_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x20, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x20 1.00mm single row style2 pin1 right +0 +20 +20 +Connector_PinSocket_1.00mm +PinSocket_1x21_P1.00mm_Vertical +Through hole straight socket strip, 1x21, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated +Through hole socket strip THT 1x21 1.00mm single row +0 +21 +21 +Connector_PinSocket_1.00mm +PinSocket_1x21_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x21, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x21 1.00mm single row style1 pin1 left +0 +21 +21 +Connector_PinSocket_1.00mm +PinSocket_1x21_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x21, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x21 1.00mm single row style2 pin1 right +0 +21 +21 +Connector_PinSocket_1.00mm +PinSocket_1x22_P1.00mm_Vertical +Through hole straight socket strip, 1x22, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated +Through hole socket strip THT 1x22 1.00mm single row +0 +22 +22 +Connector_PinSocket_1.00mm +PinSocket_1x22_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x22, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x22 1.00mm single row style1 pin1 left +0 +22 +22 +Connector_PinSocket_1.00mm +PinSocket_1x22_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x22, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x22 1.00mm single row style2 pin1 right +0 +22 +22 +Connector_PinSocket_1.00mm +PinSocket_1x23_P1.00mm_Vertical +Through hole straight socket strip, 1x23, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated +Through hole socket strip THT 1x23 1.00mm single row +0 +23 +23 +Connector_PinSocket_1.00mm +PinSocket_1x23_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x23, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x23 1.00mm single row style1 pin1 left +0 +23 +23 +Connector_PinSocket_1.00mm +PinSocket_1x23_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x23, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x23 1.00mm single row style2 pin1 right +0 +23 +23 +Connector_PinSocket_1.00mm +PinSocket_1x24_P1.00mm_Vertical +Through hole straight socket strip, 1x24, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated +Through hole socket strip THT 1x24 1.00mm single row +0 +24 +24 +Connector_PinSocket_1.00mm +PinSocket_1x24_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x24, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x24 1.00mm single row style1 pin1 left +0 +24 +24 +Connector_PinSocket_1.00mm +PinSocket_1x24_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x24, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x24 1.00mm single row style2 pin1 right +0 +24 +24 +Connector_PinSocket_1.00mm +PinSocket_1x25_P1.00mm_Vertical +Through hole straight socket strip, 1x25, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated +Through hole socket strip THT 1x25 1.00mm single row +0 +25 +25 +Connector_PinSocket_1.00mm +PinSocket_1x25_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x25, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x25 1.00mm single row style1 pin1 left +0 +25 +25 +Connector_PinSocket_1.00mm +PinSocket_1x25_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x25, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x25 1.00mm single row style2 pin1 right +0 +25 +25 +Connector_PinSocket_1.00mm +PinSocket_1x26_P1.00mm_Vertical +Through hole straight socket strip, 1x26, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated +Through hole socket strip THT 1x26 1.00mm single row +0 +26 +26 +Connector_PinSocket_1.00mm +PinSocket_1x26_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x26, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x26 1.00mm single row style1 pin1 left +0 +26 +26 +Connector_PinSocket_1.00mm +PinSocket_1x26_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x26, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x26 1.00mm single row style2 pin1 right +0 +26 +26 +Connector_PinSocket_1.00mm +PinSocket_1x27_P1.00mm_Vertical +Through hole straight socket strip, 1x27, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated +Through hole socket strip THT 1x27 1.00mm single row +0 +27 +27 +Connector_PinSocket_1.00mm +PinSocket_1x27_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x27, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x27 1.00mm single row style1 pin1 left +0 +27 +27 +Connector_PinSocket_1.00mm +PinSocket_1x27_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x27, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x27 1.00mm single row style2 pin1 right +0 +27 +27 +Connector_PinSocket_1.00mm +PinSocket_1x28_P1.00mm_Vertical +Through hole straight socket strip, 1x28, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated +Through hole socket strip THT 1x28 1.00mm single row +0 +28 +28 +Connector_PinSocket_1.00mm +PinSocket_1x28_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x28, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x28 1.00mm single row style1 pin1 left +0 +28 +28 +Connector_PinSocket_1.00mm +PinSocket_1x28_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x28, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x28 1.00mm single row style2 pin1 right +0 +28 +28 +Connector_PinSocket_1.00mm +PinSocket_1x29_P1.00mm_Vertical +Through hole straight socket strip, 1x29, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated +Through hole socket strip THT 1x29 1.00mm single row +0 +29 +29 +Connector_PinSocket_1.00mm +PinSocket_1x29_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x29, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x29 1.00mm single row style1 pin1 left +0 +29 +29 +Connector_PinSocket_1.00mm +PinSocket_1x29_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x29, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x29 1.00mm single row style2 pin1 right +0 +29 +29 +Connector_PinSocket_1.00mm +PinSocket_1x30_P1.00mm_Vertical +Through hole straight socket strip, 1x30, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated +Through hole socket strip THT 1x30 1.00mm single row +0 +30 +30 +Connector_PinSocket_1.00mm +PinSocket_1x30_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x30, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x30 1.00mm single row style1 pin1 left +0 +30 +30 +Connector_PinSocket_1.00mm +PinSocket_1x30_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x30, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x30 1.00mm single row style2 pin1 right +0 +30 +30 +Connector_PinSocket_1.00mm +PinSocket_1x31_P1.00mm_Vertical +Through hole straight socket strip, 1x31, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated +Through hole socket strip THT 1x31 1.00mm single row +0 +31 +31 +Connector_PinSocket_1.00mm +PinSocket_1x31_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x31, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x31 1.00mm single row style1 pin1 left +0 +31 +31 +Connector_PinSocket_1.00mm +PinSocket_1x31_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x31, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x31 1.00mm single row style2 pin1 right +0 +31 +31 +Connector_PinSocket_1.00mm +PinSocket_1x32_P1.00mm_Vertical +Through hole straight socket strip, 1x32, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated +Through hole socket strip THT 1x32 1.00mm single row +0 +32 +32 +Connector_PinSocket_1.00mm +PinSocket_1x32_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x32, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x32 1.00mm single row style1 pin1 left +0 +32 +32 +Connector_PinSocket_1.00mm +PinSocket_1x32_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x32, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x32 1.00mm single row style2 pin1 right +0 +32 +32 +Connector_PinSocket_1.00mm +PinSocket_1x33_P1.00mm_Vertical +Through hole straight socket strip, 1x33, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated +Through hole socket strip THT 1x33 1.00mm single row +0 +33 +33 +Connector_PinSocket_1.00mm +PinSocket_1x33_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x33, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x33 1.00mm single row style1 pin1 left +0 +33 +33 +Connector_PinSocket_1.00mm +PinSocket_1x33_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x33, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x33 1.00mm single row style2 pin1 right +0 +33 +33 +Connector_PinSocket_1.00mm +PinSocket_1x34_P1.00mm_Vertical +Through hole straight socket strip, 1x34, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated +Through hole socket strip THT 1x34 1.00mm single row +0 +34 +34 +Connector_PinSocket_1.00mm +PinSocket_1x34_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x34, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x34 1.00mm single row style1 pin1 left +0 +34 +34 +Connector_PinSocket_1.00mm +PinSocket_1x34_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x34, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x34 1.00mm single row style2 pin1 right +0 +34 +34 +Connector_PinSocket_1.00mm +PinSocket_1x35_P1.00mm_Vertical +Through hole straight socket strip, 1x35, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated +Through hole socket strip THT 1x35 1.00mm single row +0 +35 +35 +Connector_PinSocket_1.00mm +PinSocket_1x35_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x35, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x35 1.00mm single row style1 pin1 left +0 +35 +35 +Connector_PinSocket_1.00mm +PinSocket_1x35_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x35, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x35 1.00mm single row style2 pin1 right +0 +35 +35 +Connector_PinSocket_1.00mm +PinSocket_1x36_P1.00mm_Vertical +Through hole straight socket strip, 1x36, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated +Through hole socket strip THT 1x36 1.00mm single row +0 +36 +36 +Connector_PinSocket_1.00mm +PinSocket_1x36_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x36, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x36 1.00mm single row style1 pin1 left +0 +36 +36 +Connector_PinSocket_1.00mm +PinSocket_1x36_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x36, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x36 1.00mm single row style2 pin1 right +0 +36 +36 +Connector_PinSocket_1.00mm +PinSocket_1x37_P1.00mm_Vertical +Through hole straight socket strip, 1x37, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated +Through hole socket strip THT 1x37 1.00mm single row +0 +37 +37 +Connector_PinSocket_1.00mm +PinSocket_1x37_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x37, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x37 1.00mm single row style1 pin1 left +0 +37 +37 +Connector_PinSocket_1.00mm +PinSocket_1x37_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x37, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x37 1.00mm single row style2 pin1 right +0 +37 +37 +Connector_PinSocket_1.00mm +PinSocket_1x38_P1.00mm_Vertical +Through hole straight socket strip, 1x38, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated +Through hole socket strip THT 1x38 1.00mm single row +0 +38 +38 +Connector_PinSocket_1.00mm +PinSocket_1x38_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x38, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x38 1.00mm single row style1 pin1 left +0 +38 +38 +Connector_PinSocket_1.00mm +PinSocket_1x38_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x38, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x38 1.00mm single row style2 pin1 right +0 +38 +38 +Connector_PinSocket_1.00mm +PinSocket_1x39_P1.00mm_Vertical +Through hole straight socket strip, 1x39, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated +Through hole socket strip THT 1x39 1.00mm single row +0 +39 +39 +Connector_PinSocket_1.00mm +PinSocket_1x39_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x39, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x39 1.00mm single row style1 pin1 left +0 +39 +39 +Connector_PinSocket_1.00mm +PinSocket_1x39_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x39, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x39 1.00mm single row style2 pin1 right +0 +39 +39 +Connector_PinSocket_1.00mm +PinSocket_1x40_P1.00mm_Vertical +Through hole straight socket strip, 1x40, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated +Through hole socket strip THT 1x40 1.00mm single row +0 +40 +40 +Connector_PinSocket_1.00mm +PinSocket_1x40_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x40, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x40 1.00mm single row style1 pin1 left +0 +40 +40 +Connector_PinSocket_1.00mm +PinSocket_1x40_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x40, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x40 1.00mm single row style2 pin1 right +0 +40 +40 +Connector_PinSocket_1.00mm +PinSocket_2x02_P1.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x02, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated +Surface mounted socket strip SMD 2x02 1.00mm double row +0 +4 +4 +Connector_PinSocket_1.00mm +PinSocket_2x03_P1.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x03, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated +Surface mounted socket strip SMD 2x03 1.00mm double row +0 +6 +6 +Connector_PinSocket_1.00mm +PinSocket_2x04_P1.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x04, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated +Surface mounted socket strip SMD 2x04 1.00mm double row +0 +8 +8 +Connector_PinSocket_1.00mm +PinSocket_2x05_P1.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x05, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated +Surface mounted socket strip SMD 2x05 1.00mm double row +0 +10 +10 +Connector_PinSocket_1.00mm +PinSocket_2x06_P1.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x06, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated +Surface mounted socket strip SMD 2x06 1.00mm double row +0 +12 +12 +Connector_PinSocket_1.00mm +PinSocket_2x07_P1.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x07, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated +Surface mounted socket strip SMD 2x07 1.00mm double row +0 +14 +14 +Connector_PinSocket_1.00mm +PinSocket_2x08_P1.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x08, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated +Surface mounted socket strip SMD 2x08 1.00mm double row +0 +16 +16 +Connector_PinSocket_1.00mm +PinSocket_2x09_P1.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x09, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated +Surface mounted socket strip SMD 2x09 1.00mm double row +0 +18 +18 +Connector_PinSocket_1.00mm +PinSocket_2x10_P1.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x10, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated +Surface mounted socket strip SMD 2x10 1.00mm double row +0 +20 +20 +Connector_PinSocket_1.00mm +PinSocket_2x11_P1.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x11, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated +Surface mounted socket strip SMD 2x11 1.00mm double row +0 +22 +22 +Connector_PinSocket_1.00mm +PinSocket_2x12_P1.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x12, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated +Surface mounted socket strip SMD 2x12 1.00mm double row +0 +24 +24 +Connector_PinSocket_1.00mm +PinSocket_2x13_P1.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x13, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated +Surface mounted socket strip SMD 2x13 1.00mm double row +0 +26 +26 +Connector_PinSocket_1.00mm +PinSocket_2x14_P1.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x14, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated +Surface mounted socket strip SMD 2x14 1.00mm double row +0 +28 +28 +Connector_PinSocket_1.00mm +PinSocket_2x15_P1.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x15, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated +Surface mounted socket strip SMD 2x15 1.00mm double row +0 +30 +30 +Connector_PinSocket_1.00mm +PinSocket_2x16_P1.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x16, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated +Surface mounted socket strip SMD 2x16 1.00mm double row +0 +32 +32 +Connector_PinSocket_1.00mm +PinSocket_2x17_P1.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x17, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated +Surface mounted socket strip SMD 2x17 1.00mm double row +0 +34 +34 +Connector_PinSocket_1.00mm +PinSocket_2x18_P1.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x18, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated +Surface mounted socket strip SMD 2x18 1.00mm double row +0 +36 +36 +Connector_PinSocket_1.00mm +PinSocket_2x19_P1.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x19, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated +Surface mounted socket strip SMD 2x19 1.00mm double row +0 +38 +38 +Connector_PinSocket_1.00mm +PinSocket_2x20_P1.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x20, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated +Surface mounted socket strip SMD 2x20 1.00mm double row +0 +40 +40 +Connector_PinSocket_1.00mm +PinSocket_2x21_P1.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x21, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated +Surface mounted socket strip SMD 2x21 1.00mm double row +0 +42 +42 +Connector_PinSocket_1.00mm +PinSocket_2x22_P1.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x22, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated +Surface mounted socket strip SMD 2x22 1.00mm double row +0 +44 +44 +Connector_PinSocket_1.00mm +PinSocket_2x23_P1.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x23, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated +Surface mounted socket strip SMD 2x23 1.00mm double row +0 +46 +46 +Connector_PinSocket_1.00mm +PinSocket_2x24_P1.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x24, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated +Surface mounted socket strip SMD 2x24 1.00mm double row +0 +48 +48 +Connector_PinSocket_1.00mm +PinSocket_2x25_P1.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x25, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated +Surface mounted socket strip SMD 2x25 1.00mm double row +0 +50 +50 +Connector_PinSocket_1.00mm +PinSocket_2x26_P1.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x26, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated +Surface mounted socket strip SMD 2x26 1.00mm double row +0 +52 +52 +Connector_PinSocket_1.00mm +PinSocket_2x27_P1.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x27, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated +Surface mounted socket strip SMD 2x27 1.00mm double row +0 +54 +54 +Connector_PinSocket_1.00mm +PinSocket_2x28_P1.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x28, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated +Surface mounted socket strip SMD 2x28 1.00mm double row +0 +56 +56 +Connector_PinSocket_1.00mm +PinSocket_2x29_P1.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x29, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated +Surface mounted socket strip SMD 2x29 1.00mm double row +0 +58 +58 +Connector_PinSocket_1.00mm +PinSocket_2x30_P1.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x30, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated +Surface mounted socket strip SMD 2x30 1.00mm double row +0 +60 +60 +Connector_PinSocket_1.00mm +PinSocket_2x31_P1.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x31, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated +Surface mounted socket strip SMD 2x31 1.00mm double row +0 +62 +62 +Connector_PinSocket_1.00mm +PinSocket_2x32_P1.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x32, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated +Surface mounted socket strip SMD 2x32 1.00mm double row +0 +64 +64 +Connector_PinSocket_1.00mm +PinSocket_2x33_P1.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x33, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated +Surface mounted socket strip SMD 2x33 1.00mm double row +0 +66 +66 +Connector_PinSocket_1.00mm +PinSocket_2x34_P1.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x34, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated +Surface mounted socket strip SMD 2x34 1.00mm double row +0 +68 +68 +Connector_PinSocket_1.00mm +PinSocket_2x35_P1.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x35, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated +Surface mounted socket strip SMD 2x35 1.00mm double row +0 +70 +70 +Connector_PinSocket_1.00mm +PinSocket_2x36_P1.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x36, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated +Surface mounted socket strip SMD 2x36 1.00mm double row +0 +72 +72 +Connector_PinSocket_1.00mm +PinSocket_2x37_P1.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x37, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated +Surface mounted socket strip SMD 2x37 1.00mm double row +0 +74 +74 +Connector_PinSocket_1.00mm +PinSocket_2x38_P1.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x38, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated +Surface mounted socket strip SMD 2x38 1.00mm double row +0 +76 +76 +Connector_PinSocket_1.00mm +PinSocket_2x39_P1.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x39, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated +Surface mounted socket strip SMD 2x39 1.00mm double row +0 +78 +78 +Connector_PinSocket_1.00mm +PinSocket_2x40_P1.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x40, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated +Surface mounted socket strip SMD 2x40 1.00mm double row +0 +80 +80 +Connector_PinSocket_1.27mm +PinSocket_1x01_P1.27mm_Vertical +Through hole straight socket strip, 1x01, 1.27mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x01 1.27mm single row +0 +1 +1 +Connector_PinSocket_1.27mm +PinSocket_1x02_P1.27mm_Vertical +Through hole straight socket strip, 1x02, 1.27mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x02 1.27mm single row +0 +2 +2 +Connector_PinSocket_1.27mm +PinSocket_1x02_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x02, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x02 1.27mm single row style1 pin1 left +0 +2 +2 +Connector_PinSocket_1.27mm +PinSocket_1x02_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x02, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x02 1.27mm single row style2 pin1 right +0 +2 +2 +Connector_PinSocket_1.27mm +PinSocket_1x03_P1.27mm_Vertical +Through hole straight socket strip, 1x03, 1.27mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x03 1.27mm single row +0 +3 +3 +Connector_PinSocket_1.27mm +PinSocket_1x03_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x03, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x03 1.27mm single row style1 pin1 left +0 +3 +3 +Connector_PinSocket_1.27mm +PinSocket_1x03_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x03, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x03 1.27mm single row style2 pin1 right +0 +3 +3 +Connector_PinSocket_1.27mm +PinSocket_1x04_P1.27mm_Vertical +Through hole straight socket strip, 1x04, 1.27mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x04 1.27mm single row +0 +4 +4 +Connector_PinSocket_1.27mm +PinSocket_1x04_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x04, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x04 1.27mm single row style1 pin1 left +0 +4 +4 +Connector_PinSocket_1.27mm +PinSocket_1x04_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x04, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x04 1.27mm single row style2 pin1 right +0 +4 +4 +Connector_PinSocket_1.27mm +PinSocket_1x05_P1.27mm_Vertical +Through hole straight socket strip, 1x05, 1.27mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x05 1.27mm single row +0 +5 +5 +Connector_PinSocket_1.27mm +PinSocket_1x05_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x05, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x05 1.27mm single row style1 pin1 left +0 +5 +5 +Connector_PinSocket_1.27mm +PinSocket_1x05_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x05, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x05 1.27mm single row style2 pin1 right +0 +5 +5 +Connector_PinSocket_1.27mm +PinSocket_1x06_P1.27mm_Vertical +Through hole straight socket strip, 1x06, 1.27mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x06 1.27mm single row +0 +6 +6 +Connector_PinSocket_1.27mm +PinSocket_1x06_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x06, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x06 1.27mm single row style1 pin1 left +0 +6 +6 +Connector_PinSocket_1.27mm +PinSocket_1x06_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x06, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x06 1.27mm single row style2 pin1 right +0 +6 +6 +Connector_PinSocket_1.27mm +PinSocket_1x07_P1.27mm_Vertical +Through hole straight socket strip, 1x07, 1.27mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x07 1.27mm single row +0 +7 +7 +Connector_PinSocket_1.27mm +PinSocket_1x07_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x07, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x07 1.27mm single row style1 pin1 left +0 +7 +7 +Connector_PinSocket_1.27mm +PinSocket_1x07_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x07, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x07 1.27mm single row style2 pin1 right +0 +7 +7 +Connector_PinSocket_1.27mm +PinSocket_1x08_P1.27mm_Vertical +Through hole straight socket strip, 1x08, 1.27mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x08 1.27mm single row +0 +8 +8 +Connector_PinSocket_1.27mm +PinSocket_1x08_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x08, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x08 1.27mm single row style1 pin1 left +0 +8 +8 +Connector_PinSocket_1.27mm +PinSocket_1x08_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x08, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x08 1.27mm single row style2 pin1 right +0 +8 +8 +Connector_PinSocket_1.27mm +PinSocket_1x09_P1.27mm_Vertical +Through hole straight socket strip, 1x09, 1.27mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x09 1.27mm single row +0 +9 +9 +Connector_PinSocket_1.27mm +PinSocket_1x09_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x09, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x09 1.27mm single row style1 pin1 left +0 +9 +9 +Connector_PinSocket_1.27mm +PinSocket_1x09_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x09, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x09 1.27mm single row style2 pin1 right +0 +9 +9 +Connector_PinSocket_1.27mm +PinSocket_1x10_P1.27mm_Vertical +Through hole straight socket strip, 1x10, 1.27mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x10 1.27mm single row +0 +10 +10 +Connector_PinSocket_1.27mm +PinSocket_1x10_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x10, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x10 1.27mm single row style1 pin1 left +0 +10 +10 +Connector_PinSocket_1.27mm +PinSocket_1x10_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x10, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x10 1.27mm single row style2 pin1 right +0 +10 +10 +Connector_PinSocket_1.27mm +PinSocket_1x11_P1.27mm_Vertical +Through hole straight socket strip, 1x11, 1.27mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x11 1.27mm single row +0 +11 +11 +Connector_PinSocket_1.27mm +PinSocket_1x11_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x11, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x11 1.27mm single row style1 pin1 left +0 +11 +11 +Connector_PinSocket_1.27mm +PinSocket_1x11_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x11, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x11 1.27mm single row style2 pin1 right +0 +11 +11 +Connector_PinSocket_1.27mm +PinSocket_1x12_P1.27mm_Vertical +Through hole straight socket strip, 1x12, 1.27mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x12 1.27mm single row +0 +12 +12 +Connector_PinSocket_1.27mm +PinSocket_1x12_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x12, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x12 1.27mm single row style1 pin1 left +0 +12 +12 +Connector_PinSocket_1.27mm +PinSocket_1x12_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x12, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x12 1.27mm single row style2 pin1 right +0 +12 +12 +Connector_PinSocket_1.27mm +PinSocket_1x13_P1.27mm_Vertical +Through hole straight socket strip, 1x13, 1.27mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x13 1.27mm single row +0 +13 +13 +Connector_PinSocket_1.27mm +PinSocket_1x13_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x13, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x13 1.27mm single row style1 pin1 left +0 +13 +13 +Connector_PinSocket_1.27mm +PinSocket_1x13_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x13, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x13 1.27mm single row style2 pin1 right +0 +13 +13 +Connector_PinSocket_1.27mm +PinSocket_1x14_P1.27mm_Vertical +Through hole straight socket strip, 1x14, 1.27mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x14 1.27mm single row +0 +14 +14 +Connector_PinSocket_1.27mm +PinSocket_1x14_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x14, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x14 1.27mm single row style1 pin1 left +0 +14 +14 +Connector_PinSocket_1.27mm +PinSocket_1x14_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x14, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x14 1.27mm single row style2 pin1 right +0 +14 +14 +Connector_PinSocket_1.27mm +PinSocket_1x15_P1.27mm_Vertical +Through hole straight socket strip, 1x15, 1.27mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x15 1.27mm single row +0 +15 +15 +Connector_PinSocket_1.27mm +PinSocket_1x15_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x15, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x15 1.27mm single row style1 pin1 left +0 +15 +15 +Connector_PinSocket_1.27mm +PinSocket_1x15_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x15, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x15 1.27mm single row style2 pin1 right +0 +15 +15 +Connector_PinSocket_1.27mm +PinSocket_1x16_P1.27mm_Vertical +Through hole straight socket strip, 1x16, 1.27mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x16 1.27mm single row +0 +16 +16 +Connector_PinSocket_1.27mm +PinSocket_1x16_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x16, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x16 1.27mm single row style1 pin1 left +0 +16 +16 +Connector_PinSocket_1.27mm +PinSocket_1x16_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x16, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x16 1.27mm single row style2 pin1 right +0 +16 +16 +Connector_PinSocket_1.27mm +PinSocket_1x17_P1.27mm_Vertical +Through hole straight socket strip, 1x17, 1.27mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x17 1.27mm single row +0 +17 +17 +Connector_PinSocket_1.27mm +PinSocket_1x17_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x17, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x17 1.27mm single row style1 pin1 left +0 +17 +17 +Connector_PinSocket_1.27mm +PinSocket_1x17_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x17, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x17 1.27mm single row style2 pin1 right +0 +17 +17 +Connector_PinSocket_1.27mm +PinSocket_1x18_P1.27mm_Vertical +Through hole straight socket strip, 1x18, 1.27mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x18 1.27mm single row +0 +18 +18 +Connector_PinSocket_1.27mm +PinSocket_1x18_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x18, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x18 1.27mm single row style1 pin1 left +0 +18 +18 +Connector_PinSocket_1.27mm +PinSocket_1x18_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x18, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x18 1.27mm single row style2 pin1 right +0 +18 +18 +Connector_PinSocket_1.27mm +PinSocket_1x19_P1.27mm_Vertical +Through hole straight socket strip, 1x19, 1.27mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x19 1.27mm single row +0 +19 +19 +Connector_PinSocket_1.27mm +PinSocket_1x19_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x19, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x19 1.27mm single row style1 pin1 left +0 +19 +19 +Connector_PinSocket_1.27mm +PinSocket_1x19_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x19, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x19 1.27mm single row style2 pin1 right +0 +19 +19 +Connector_PinSocket_1.27mm +PinSocket_1x20_P1.27mm_Vertical +Through hole straight socket strip, 1x20, 1.27mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x20 1.27mm single row +0 +20 +20 +Connector_PinSocket_1.27mm +PinSocket_1x20_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x20, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x20 1.27mm single row style1 pin1 left +0 +20 +20 +Connector_PinSocket_1.27mm +PinSocket_1x20_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x20, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x20 1.27mm single row style2 pin1 right +0 +20 +20 +Connector_PinSocket_1.27mm +PinSocket_1x21_P1.27mm_Vertical +Through hole straight socket strip, 1x21, 1.27mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x21 1.27mm single row +0 +21 +21 +Connector_PinSocket_1.27mm +PinSocket_1x21_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x21, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x21 1.27mm single row style1 pin1 left +0 +21 +21 +Connector_PinSocket_1.27mm +PinSocket_1x21_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x21, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x21 1.27mm single row style2 pin1 right +0 +21 +21 +Connector_PinSocket_1.27mm +PinSocket_1x22_P1.27mm_Vertical +Through hole straight socket strip, 1x22, 1.27mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x22 1.27mm single row +0 +22 +22 +Connector_PinSocket_1.27mm +PinSocket_1x22_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x22, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x22 1.27mm single row style1 pin1 left +0 +22 +22 +Connector_PinSocket_1.27mm +PinSocket_1x22_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x22, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x22 1.27mm single row style2 pin1 right +0 +22 +22 +Connector_PinSocket_1.27mm +PinSocket_1x23_P1.27mm_Vertical +Through hole straight socket strip, 1x23, 1.27mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x23 1.27mm single row +0 +23 +23 +Connector_PinSocket_1.27mm +PinSocket_1x23_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x23, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x23 1.27mm single row style1 pin1 left +0 +23 +23 +Connector_PinSocket_1.27mm +PinSocket_1x23_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x23, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x23 1.27mm single row style2 pin1 right +0 +23 +23 +Connector_PinSocket_1.27mm +PinSocket_1x24_P1.27mm_Vertical +Through hole straight socket strip, 1x24, 1.27mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x24 1.27mm single row +0 +24 +24 +Connector_PinSocket_1.27mm +PinSocket_1x24_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x24, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x24 1.27mm single row style1 pin1 left +0 +24 +24 +Connector_PinSocket_1.27mm +PinSocket_1x24_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x24, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x24 1.27mm single row style2 pin1 right +0 +24 +24 +Connector_PinSocket_1.27mm +PinSocket_1x25_P1.27mm_Vertical +Through hole straight socket strip, 1x25, 1.27mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x25 1.27mm single row +0 +25 +25 +Connector_PinSocket_1.27mm +PinSocket_1x25_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x25, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x25 1.27mm single row style1 pin1 left +0 +25 +25 +Connector_PinSocket_1.27mm +PinSocket_1x25_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x25, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x25 1.27mm single row style2 pin1 right +0 +25 +25 +Connector_PinSocket_1.27mm +PinSocket_1x26_P1.27mm_Vertical +Through hole straight socket strip, 1x26, 1.27mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x26 1.27mm single row +0 +26 +26 +Connector_PinSocket_1.27mm +PinSocket_1x26_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x26, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x26 1.27mm single row style1 pin1 left +0 +26 +26 +Connector_PinSocket_1.27mm +PinSocket_1x26_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x26, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x26 1.27mm single row style2 pin1 right +0 +26 +26 +Connector_PinSocket_1.27mm +PinSocket_1x27_P1.27mm_Vertical +Through hole straight socket strip, 1x27, 1.27mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x27 1.27mm single row +0 +27 +27 +Connector_PinSocket_1.27mm +PinSocket_1x27_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x27, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x27 1.27mm single row style1 pin1 left +0 +27 +27 +Connector_PinSocket_1.27mm +PinSocket_1x27_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x27, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x27 1.27mm single row style2 pin1 right +0 +27 +27 +Connector_PinSocket_1.27mm +PinSocket_1x28_P1.27mm_Vertical +Through hole straight socket strip, 1x28, 1.27mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x28 1.27mm single row +0 +28 +28 +Connector_PinSocket_1.27mm +PinSocket_1x28_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x28, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x28 1.27mm single row style1 pin1 left +0 +28 +28 +Connector_PinSocket_1.27mm +PinSocket_1x28_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x28, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x28 1.27mm single row style2 pin1 right +0 +28 +28 +Connector_PinSocket_1.27mm +PinSocket_1x29_P1.27mm_Vertical +Through hole straight socket strip, 1x29, 1.27mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x29 1.27mm single row +0 +29 +29 +Connector_PinSocket_1.27mm +PinSocket_1x29_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x29, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x29 1.27mm single row style1 pin1 left +0 +29 +29 +Connector_PinSocket_1.27mm +PinSocket_1x29_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x29, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x29 1.27mm single row style2 pin1 right +0 +29 +29 +Connector_PinSocket_1.27mm +PinSocket_1x30_P1.27mm_Vertical +Through hole straight socket strip, 1x30, 1.27mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x30 1.27mm single row +0 +30 +30 +Connector_PinSocket_1.27mm +PinSocket_1x30_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x30, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x30 1.27mm single row style1 pin1 left +0 +30 +30 +Connector_PinSocket_1.27mm +PinSocket_1x30_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x30, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x30 1.27mm single row style2 pin1 right +0 +30 +30 +Connector_PinSocket_1.27mm +PinSocket_1x31_P1.27mm_Vertical +Through hole straight socket strip, 1x31, 1.27mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x31 1.27mm single row +0 +31 +31 +Connector_PinSocket_1.27mm +PinSocket_1x31_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x31, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x31 1.27mm single row style1 pin1 left +0 +31 +31 +Connector_PinSocket_1.27mm +PinSocket_1x31_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x31, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x31 1.27mm single row style2 pin1 right +0 +31 +31 +Connector_PinSocket_1.27mm +PinSocket_1x32_P1.27mm_Vertical +Through hole straight socket strip, 1x32, 1.27mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x32 1.27mm single row +0 +32 +32 +Connector_PinSocket_1.27mm +PinSocket_1x32_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x32, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x32 1.27mm single row style1 pin1 left +0 +32 +32 +Connector_PinSocket_1.27mm +PinSocket_1x32_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x32, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x32 1.27mm single row style2 pin1 right +0 +32 +32 +Connector_PinSocket_1.27mm +PinSocket_1x33_P1.27mm_Vertical +Through hole straight socket strip, 1x33, 1.27mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x33 1.27mm single row +0 +33 +33 +Connector_PinSocket_1.27mm +PinSocket_1x33_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x33, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x33 1.27mm single row style1 pin1 left +0 +33 +33 +Connector_PinSocket_1.27mm +PinSocket_1x33_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x33, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x33 1.27mm single row style2 pin1 right +0 +33 +33 +Connector_PinSocket_1.27mm +PinSocket_1x34_P1.27mm_Vertical +Through hole straight socket strip, 1x34, 1.27mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x34 1.27mm single row +0 +34 +34 +Connector_PinSocket_1.27mm +PinSocket_1x34_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x34, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x34 1.27mm single row style1 pin1 left +0 +34 +34 +Connector_PinSocket_1.27mm +PinSocket_1x34_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x34, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x34 1.27mm single row style2 pin1 right +0 +34 +34 +Connector_PinSocket_1.27mm +PinSocket_1x35_P1.27mm_Vertical +Through hole straight socket strip, 1x35, 1.27mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x35 1.27mm single row +0 +35 +35 +Connector_PinSocket_1.27mm +PinSocket_1x35_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x35, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x35 1.27mm single row style1 pin1 left +0 +35 +35 +Connector_PinSocket_1.27mm +PinSocket_1x35_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x35, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x35 1.27mm single row style2 pin1 right +0 +35 +35 +Connector_PinSocket_1.27mm +PinSocket_1x36_P1.27mm_Vertical +Through hole straight socket strip, 1x36, 1.27mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x36 1.27mm single row +0 +36 +36 +Connector_PinSocket_1.27mm +PinSocket_1x36_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x36, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x36 1.27mm single row style1 pin1 left +0 +36 +36 +Connector_PinSocket_1.27mm +PinSocket_1x36_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x36, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x36 1.27mm single row style2 pin1 right +0 +36 +36 +Connector_PinSocket_1.27mm +PinSocket_1x37_P1.27mm_Vertical +Through hole straight socket strip, 1x37, 1.27mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x37 1.27mm single row +0 +37 +37 +Connector_PinSocket_1.27mm +PinSocket_1x37_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x37, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x37 1.27mm single row style1 pin1 left +0 +37 +37 +Connector_PinSocket_1.27mm +PinSocket_1x37_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x37, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x37 1.27mm single row style2 pin1 right +0 +37 +37 +Connector_PinSocket_1.27mm +PinSocket_1x38_P1.27mm_Vertical +Through hole straight socket strip, 1x38, 1.27mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x38 1.27mm single row +0 +38 +38 +Connector_PinSocket_1.27mm +PinSocket_1x38_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x38, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x38 1.27mm single row style1 pin1 left +0 +38 +38 +Connector_PinSocket_1.27mm +PinSocket_1x38_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x38, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x38 1.27mm single row style2 pin1 right +0 +38 +38 +Connector_PinSocket_1.27mm +PinSocket_1x39_P1.27mm_Vertical +Through hole straight socket strip, 1x39, 1.27mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x39 1.27mm single row +0 +39 +39 +Connector_PinSocket_1.27mm +PinSocket_1x39_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x39, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x39 1.27mm single row style1 pin1 left +0 +39 +39 +Connector_PinSocket_1.27mm +PinSocket_1x39_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x39, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x39 1.27mm single row style2 pin1 right +0 +39 +39 +Connector_PinSocket_1.27mm +PinSocket_1x40_P1.27mm_Vertical +Through hole straight socket strip, 1x40, 1.27mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x40 1.27mm single row +0 +40 +40 +Connector_PinSocket_1.27mm +PinSocket_1x40_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x40, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x40 1.27mm single row style1 pin1 left +0 +40 +40 +Connector_PinSocket_1.27mm +PinSocket_1x40_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x40, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x40 1.27mm single row style2 pin1 right +0 +40 +40 +Connector_PinSocket_1.27mm +PinSocket_2x01_P1.27mm_Vertical +Through hole straight socket strip, 2x01, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x01 1.27mm double row +0 +2 +2 +Connector_PinSocket_1.27mm +PinSocket_2x01_P1.27mm_Vertical_SMD +surface-mounted straight socket strip, 2x01, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated +Surface mounted socket strip SMD 2x01 1.27mm double row +0 +2 +2 +Connector_PinSocket_1.27mm +PinSocket_2x02_P1.27mm_Vertical +Through hole straight socket strip, 2x02, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x02 1.27mm double row +0 +4 +4 +Connector_PinSocket_1.27mm +PinSocket_2x02_P1.27mm_Vertical_SMD +surface-mounted straight socket strip, 2x02, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated +Surface mounted socket strip SMD 2x02 1.27mm double row +0 +4 +4 +Connector_PinSocket_1.27mm +PinSocket_2x03_P1.27mm_Horizontal +Through hole angled socket strip, 2x03, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x03 1.27mm double row +0 +6 +6 +Connector_PinSocket_1.27mm +PinSocket_2x03_P1.27mm_Vertical +Through hole straight socket strip, 2x03, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x03 1.27mm double row +0 +6 +6 +Connector_PinSocket_1.27mm +PinSocket_2x03_P1.27mm_Vertical_SMD +surface-mounted straight socket strip, 2x03, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated +Surface mounted socket strip SMD 2x03 1.27mm double row +0 +6 +6 +Connector_PinSocket_1.27mm +PinSocket_2x04_P1.27mm_Horizontal +Through hole angled socket strip, 2x04, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x04 1.27mm double row +0 +8 +8 +Connector_PinSocket_1.27mm +PinSocket_2x04_P1.27mm_Vertical +Through hole straight socket strip, 2x04, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x04 1.27mm double row +0 +8 +8 +Connector_PinSocket_1.27mm +PinSocket_2x04_P1.27mm_Vertical_SMD +surface-mounted straight socket strip, 2x04, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated +Surface mounted socket strip SMD 2x04 1.27mm double row +0 +8 +8 +Connector_PinSocket_1.27mm +PinSocket_2x05_P1.27mm_Horizontal +Through hole angled socket strip, 2x05, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x05 1.27mm double row +0 +10 +10 +Connector_PinSocket_1.27mm +PinSocket_2x05_P1.27mm_Vertical +Through hole straight socket strip, 2x05, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x05 1.27mm double row +0 +10 +10 +Connector_PinSocket_1.27mm +PinSocket_2x05_P1.27mm_Vertical_SMD +surface-mounted straight socket strip, 2x05, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated +Surface mounted socket strip SMD 2x05 1.27mm double row +0 +10 +10 +Connector_PinSocket_1.27mm +PinSocket_2x06_P1.27mm_Horizontal +Through hole angled socket strip, 2x06, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x06 1.27mm double row +0 +12 +12 +Connector_PinSocket_1.27mm +PinSocket_2x06_P1.27mm_Vertical +Through hole straight socket strip, 2x06, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x06 1.27mm double row +0 +12 +12 +Connector_PinSocket_1.27mm +PinSocket_2x06_P1.27mm_Vertical_SMD +surface-mounted straight socket strip, 2x06, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated +Surface mounted socket strip SMD 2x06 1.27mm double row +0 +12 +12 +Connector_PinSocket_1.27mm +PinSocket_2x07_P1.27mm_Horizontal +Through hole angled socket strip, 2x07, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x07 1.27mm double row +0 +14 +14 +Connector_PinSocket_1.27mm +PinSocket_2x07_P1.27mm_Vertical +Through hole straight socket strip, 2x07, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x07 1.27mm double row +0 +14 +14 +Connector_PinSocket_1.27mm +PinSocket_2x07_P1.27mm_Vertical_SMD +surface-mounted straight socket strip, 2x07, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated +Surface mounted socket strip SMD 2x07 1.27mm double row +0 +14 +14 +Connector_PinSocket_1.27mm +PinSocket_2x08_P1.27mm_Horizontal +Through hole angled socket strip, 2x08, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x08 1.27mm double row +0 +16 +16 +Connector_PinSocket_1.27mm +PinSocket_2x08_P1.27mm_Vertical +Through hole straight socket strip, 2x08, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x08 1.27mm double row +0 +16 +16 +Connector_PinSocket_1.27mm +PinSocket_2x08_P1.27mm_Vertical_SMD +surface-mounted straight socket strip, 2x08, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated +Surface mounted socket strip SMD 2x08 1.27mm double row +0 +16 +16 +Connector_PinSocket_1.27mm +PinSocket_2x09_P1.27mm_Horizontal +Through hole angled socket strip, 2x09, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x09 1.27mm double row +0 +18 +18 +Connector_PinSocket_1.27mm +PinSocket_2x09_P1.27mm_Vertical +Through hole straight socket strip, 2x09, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x09 1.27mm double row +0 +18 +18 +Connector_PinSocket_1.27mm +PinSocket_2x09_P1.27mm_Vertical_SMD +surface-mounted straight socket strip, 2x09, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated +Surface mounted socket strip SMD 2x09 1.27mm double row +0 +18 +18 +Connector_PinSocket_1.27mm +PinSocket_2x10_P1.27mm_Horizontal +Through hole angled socket strip, 2x10, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x10 1.27mm double row +0 +20 +20 +Connector_PinSocket_1.27mm +PinSocket_2x10_P1.27mm_Vertical +Through hole straight socket strip, 2x10, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x10 1.27mm double row +0 +20 +20 +Connector_PinSocket_1.27mm +PinSocket_2x10_P1.27mm_Vertical_SMD +surface-mounted straight socket strip, 2x10, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated +Surface mounted socket strip SMD 2x10 1.27mm double row +0 +20 +20 +Connector_PinSocket_1.27mm +PinSocket_2x11_P1.27mm_Horizontal +Through hole angled socket strip, 2x11, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x11 1.27mm double row +0 +22 +22 +Connector_PinSocket_1.27mm +PinSocket_2x11_P1.27mm_Vertical +Through hole straight socket strip, 2x11, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x11 1.27mm double row +0 +22 +22 +Connector_PinSocket_1.27mm +PinSocket_2x11_P1.27mm_Vertical_SMD +surface-mounted straight socket strip, 2x11, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated +Surface mounted socket strip SMD 2x11 1.27mm double row +0 +22 +22 +Connector_PinSocket_1.27mm +PinSocket_2x12_P1.27mm_Horizontal +Through hole angled socket strip, 2x12, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x12 1.27mm double row +0 +24 +24 +Connector_PinSocket_1.27mm +PinSocket_2x12_P1.27mm_Vertical +Through hole straight socket strip, 2x12, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x12 1.27mm double row +0 +24 +24 +Connector_PinSocket_1.27mm +PinSocket_2x12_P1.27mm_Vertical_SMD +surface-mounted straight socket strip, 2x12, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated +Surface mounted socket strip SMD 2x12 1.27mm double row +0 +24 +24 +Connector_PinSocket_1.27mm +PinSocket_2x13_P1.27mm_Horizontal +Through hole angled socket strip, 2x13, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x13 1.27mm double row +0 +26 +26 +Connector_PinSocket_1.27mm +PinSocket_2x13_P1.27mm_Vertical +Through hole straight socket strip, 2x13, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x13 1.27mm double row +0 +26 +26 +Connector_PinSocket_1.27mm +PinSocket_2x13_P1.27mm_Vertical_SMD +surface-mounted straight socket strip, 2x13, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated +Surface mounted socket strip SMD 2x13 1.27mm double row +0 +26 +26 +Connector_PinSocket_1.27mm +PinSocket_2x14_P1.27mm_Horizontal +Through hole angled socket strip, 2x14, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x14 1.27mm double row +0 +28 +28 +Connector_PinSocket_1.27mm +PinSocket_2x14_P1.27mm_Vertical +Through hole straight socket strip, 2x14, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x14 1.27mm double row +0 +28 +28 +Connector_PinSocket_1.27mm +PinSocket_2x14_P1.27mm_Vertical_SMD +surface-mounted straight socket strip, 2x14, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated +Surface mounted socket strip SMD 2x14 1.27mm double row +0 +28 +28 +Connector_PinSocket_1.27mm +PinSocket_2x15_P1.27mm_Horizontal +Through hole angled socket strip, 2x15, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x15 1.27mm double row +0 +30 +30 +Connector_PinSocket_1.27mm +PinSocket_2x15_P1.27mm_Vertical +Through hole straight socket strip, 2x15, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x15 1.27mm double row +0 +30 +30 +Connector_PinSocket_1.27mm +PinSocket_2x15_P1.27mm_Vertical_SMD +surface-mounted straight socket strip, 2x15, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated +Surface mounted socket strip SMD 2x15 1.27mm double row +0 +30 +30 +Connector_PinSocket_1.27mm +PinSocket_2x16_P1.27mm_Horizontal +Through hole angled socket strip, 2x16, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x16 1.27mm double row +0 +32 +32 +Connector_PinSocket_1.27mm +PinSocket_2x16_P1.27mm_Vertical +Through hole straight socket strip, 2x16, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x16 1.27mm double row +0 +32 +32 +Connector_PinSocket_1.27mm +PinSocket_2x16_P1.27mm_Vertical_SMD +surface-mounted straight socket strip, 2x16, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated +Surface mounted socket strip SMD 2x16 1.27mm double row +0 +32 +32 +Connector_PinSocket_1.27mm +PinSocket_2x17_P1.27mm_Horizontal +Through hole angled socket strip, 2x17, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x17 1.27mm double row +0 +34 +34 +Connector_PinSocket_1.27mm +PinSocket_2x17_P1.27mm_Vertical +Through hole straight socket strip, 2x17, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x17 1.27mm double row +0 +34 +34 +Connector_PinSocket_1.27mm +PinSocket_2x17_P1.27mm_Vertical_SMD +surface-mounted straight socket strip, 2x17, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated +Surface mounted socket strip SMD 2x17 1.27mm double row +0 +34 +34 +Connector_PinSocket_1.27mm +PinSocket_2x18_P1.27mm_Horizontal +Through hole angled socket strip, 2x18, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x18 1.27mm double row +0 +36 +36 +Connector_PinSocket_1.27mm +PinSocket_2x18_P1.27mm_Vertical +Through hole straight socket strip, 2x18, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x18 1.27mm double row +0 +36 +36 +Connector_PinSocket_1.27mm +PinSocket_2x18_P1.27mm_Vertical_SMD +surface-mounted straight socket strip, 2x18, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated +Surface mounted socket strip SMD 2x18 1.27mm double row +0 +36 +36 +Connector_PinSocket_1.27mm +PinSocket_2x19_P1.27mm_Horizontal +Through hole angled socket strip, 2x19, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x19 1.27mm double row +0 +38 +38 +Connector_PinSocket_1.27mm +PinSocket_2x19_P1.27mm_Vertical +Through hole straight socket strip, 2x19, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x19 1.27mm double row +0 +38 +38 +Connector_PinSocket_1.27mm +PinSocket_2x19_P1.27mm_Vertical_SMD +surface-mounted straight socket strip, 2x19, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated +Surface mounted socket strip SMD 2x19 1.27mm double row +0 +38 +38 +Connector_PinSocket_1.27mm +PinSocket_2x20_P1.27mm_Horizontal +Through hole angled socket strip, 2x20, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x20 1.27mm double row +0 +40 +40 +Connector_PinSocket_1.27mm +PinSocket_2x20_P1.27mm_Vertical +Through hole straight socket strip, 2x20, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x20 1.27mm double row +0 +40 +40 +Connector_PinSocket_1.27mm +PinSocket_2x20_P1.27mm_Vertical_SMD +surface-mounted straight socket strip, 2x20, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated +Surface mounted socket strip SMD 2x20 1.27mm double row +0 +40 +40 +Connector_PinSocket_1.27mm +PinSocket_2x21_P1.27mm_Horizontal +Through hole angled socket strip, 2x21, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x21 1.27mm double row +0 +42 +42 +Connector_PinSocket_1.27mm +PinSocket_2x21_P1.27mm_Vertical +Through hole straight socket strip, 2x21, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x21 1.27mm double row +0 +42 +42 +Connector_PinSocket_1.27mm +PinSocket_2x21_P1.27mm_Vertical_SMD +surface-mounted straight socket strip, 2x21, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated +Surface mounted socket strip SMD 2x21 1.27mm double row +0 +42 +42 +Connector_PinSocket_1.27mm +PinSocket_2x22_P1.27mm_Horizontal +Through hole angled socket strip, 2x22, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x22 1.27mm double row +0 +44 +44 +Connector_PinSocket_1.27mm +PinSocket_2x22_P1.27mm_Vertical +Through hole straight socket strip, 2x22, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x22 1.27mm double row +0 +44 +44 +Connector_PinSocket_1.27mm +PinSocket_2x22_P1.27mm_Vertical_SMD +surface-mounted straight socket strip, 2x22, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated +Surface mounted socket strip SMD 2x22 1.27mm double row +0 +44 +44 +Connector_PinSocket_1.27mm +PinSocket_2x23_P1.27mm_Horizontal +Through hole angled socket strip, 2x23, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x23 1.27mm double row +0 +46 +46 +Connector_PinSocket_1.27mm +PinSocket_2x23_P1.27mm_Vertical +Through hole straight socket strip, 2x23, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x23 1.27mm double row +0 +46 +46 +Connector_PinSocket_1.27mm +PinSocket_2x23_P1.27mm_Vertical_SMD +surface-mounted straight socket strip, 2x23, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated +Surface mounted socket strip SMD 2x23 1.27mm double row +0 +46 +46 +Connector_PinSocket_1.27mm +PinSocket_2x24_P1.27mm_Horizontal +Through hole angled socket strip, 2x24, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x24 1.27mm double row +0 +48 +48 +Connector_PinSocket_1.27mm +PinSocket_2x24_P1.27mm_Vertical +Through hole straight socket strip, 2x24, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x24 1.27mm double row +0 +48 +48 +Connector_PinSocket_1.27mm +PinSocket_2x24_P1.27mm_Vertical_SMD +surface-mounted straight socket strip, 2x24, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated +Surface mounted socket strip SMD 2x24 1.27mm double row +0 +48 +48 +Connector_PinSocket_1.27mm +PinSocket_2x25_P1.27mm_Horizontal +Through hole angled socket strip, 2x25, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x25 1.27mm double row +0 +50 +50 +Connector_PinSocket_1.27mm +PinSocket_2x25_P1.27mm_Vertical +Through hole straight socket strip, 2x25, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x25 1.27mm double row +0 +50 +50 +Connector_PinSocket_1.27mm +PinSocket_2x25_P1.27mm_Vertical_SMD +surface-mounted straight socket strip, 2x25, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated +Surface mounted socket strip SMD 2x25 1.27mm double row +0 +50 +50 +Connector_PinSocket_1.27mm +PinSocket_2x26_P1.27mm_Horizontal +Through hole angled socket strip, 2x26, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x26 1.27mm double row +0 +52 +52 +Connector_PinSocket_1.27mm +PinSocket_2x26_P1.27mm_Vertical +Through hole straight socket strip, 2x26, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x26 1.27mm double row +0 +52 +52 +Connector_PinSocket_1.27mm +PinSocket_2x26_P1.27mm_Vertical_SMD +surface-mounted straight socket strip, 2x26, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated +Surface mounted socket strip SMD 2x26 1.27mm double row +0 +52 +52 +Connector_PinSocket_1.27mm +PinSocket_2x27_P1.27mm_Horizontal +Through hole angled socket strip, 2x27, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x27 1.27mm double row +0 +54 +54 +Connector_PinSocket_1.27mm +PinSocket_2x27_P1.27mm_Vertical +Through hole straight socket strip, 2x27, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x27 1.27mm double row +0 +54 +54 +Connector_PinSocket_1.27mm +PinSocket_2x27_P1.27mm_Vertical_SMD +surface-mounted straight socket strip, 2x27, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated +Surface mounted socket strip SMD 2x27 1.27mm double row +0 +54 +54 +Connector_PinSocket_1.27mm +PinSocket_2x28_P1.27mm_Horizontal +Through hole angled socket strip, 2x28, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x28 1.27mm double row +0 +56 +56 +Connector_PinSocket_1.27mm +PinSocket_2x28_P1.27mm_Vertical +Through hole straight socket strip, 2x28, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x28 1.27mm double row +0 +56 +56 +Connector_PinSocket_1.27mm +PinSocket_2x28_P1.27mm_Vertical_SMD +surface-mounted straight socket strip, 2x28, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated +Surface mounted socket strip SMD 2x28 1.27mm double row +0 +56 +56 +Connector_PinSocket_1.27mm +PinSocket_2x29_P1.27mm_Horizontal +Through hole angled socket strip, 2x29, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x29 1.27mm double row +0 +58 +58 +Connector_PinSocket_1.27mm +PinSocket_2x29_P1.27mm_Vertical +Through hole straight socket strip, 2x29, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x29 1.27mm double row +0 +58 +58 +Connector_PinSocket_1.27mm +PinSocket_2x29_P1.27mm_Vertical_SMD +surface-mounted straight socket strip, 2x29, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated +Surface mounted socket strip SMD 2x29 1.27mm double row +0 +58 +58 +Connector_PinSocket_1.27mm +PinSocket_2x30_P1.27mm_Horizontal +Through hole angled socket strip, 2x30, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x30 1.27mm double row +0 +60 +60 +Connector_PinSocket_1.27mm +PinSocket_2x30_P1.27mm_Vertical +Through hole straight socket strip, 2x30, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x30 1.27mm double row +0 +60 +60 +Connector_PinSocket_1.27mm +PinSocket_2x30_P1.27mm_Vertical_SMD +surface-mounted straight socket strip, 2x30, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated +Surface mounted socket strip SMD 2x30 1.27mm double row +0 +60 +60 +Connector_PinSocket_1.27mm +PinSocket_2x31_P1.27mm_Horizontal +Through hole angled socket strip, 2x31, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x31 1.27mm double row +0 +62 +62 +Connector_PinSocket_1.27mm +PinSocket_2x31_P1.27mm_Vertical +Through hole straight socket strip, 2x31, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x31 1.27mm double row +0 +62 +62 +Connector_PinSocket_1.27mm +PinSocket_2x31_P1.27mm_Vertical_SMD +surface-mounted straight socket strip, 2x31, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated +Surface mounted socket strip SMD 2x31 1.27mm double row +0 +62 +62 +Connector_PinSocket_1.27mm +PinSocket_2x32_P1.27mm_Horizontal +Through hole angled socket strip, 2x32, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x32 1.27mm double row +0 +64 +64 +Connector_PinSocket_1.27mm +PinSocket_2x32_P1.27mm_Vertical +Through hole straight socket strip, 2x32, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x32 1.27mm double row +0 +64 +64 +Connector_PinSocket_1.27mm +PinSocket_2x32_P1.27mm_Vertical_SMD +surface-mounted straight socket strip, 2x32, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated +Surface mounted socket strip SMD 2x32 1.27mm double row +0 +64 +64 +Connector_PinSocket_1.27mm +PinSocket_2x33_P1.27mm_Horizontal +Through hole angled socket strip, 2x33, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x33 1.27mm double row +0 +66 +66 +Connector_PinSocket_1.27mm +PinSocket_2x33_P1.27mm_Vertical +Through hole straight socket strip, 2x33, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x33 1.27mm double row +0 +66 +66 +Connector_PinSocket_1.27mm +PinSocket_2x33_P1.27mm_Vertical_SMD +surface-mounted straight socket strip, 2x33, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated +Surface mounted socket strip SMD 2x33 1.27mm double row +0 +66 +66 +Connector_PinSocket_1.27mm +PinSocket_2x34_P1.27mm_Horizontal +Through hole angled socket strip, 2x34, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x34 1.27mm double row +0 +68 +68 +Connector_PinSocket_1.27mm +PinSocket_2x34_P1.27mm_Vertical +Through hole straight socket strip, 2x34, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x34 1.27mm double row +0 +68 +68 +Connector_PinSocket_1.27mm +PinSocket_2x34_P1.27mm_Vertical_SMD +surface-mounted straight socket strip, 2x34, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated +Surface mounted socket strip SMD 2x34 1.27mm double row +0 +68 +68 +Connector_PinSocket_1.27mm +PinSocket_2x35_P1.27mm_Horizontal +Through hole angled socket strip, 2x35, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x35 1.27mm double row +0 +70 +70 +Connector_PinSocket_1.27mm +PinSocket_2x35_P1.27mm_Vertical +Through hole straight socket strip, 2x35, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x35 1.27mm double row +0 +70 +70 +Connector_PinSocket_1.27mm +PinSocket_2x35_P1.27mm_Vertical_SMD +surface-mounted straight socket strip, 2x35, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated +Surface mounted socket strip SMD 2x35 1.27mm double row +0 +70 +70 +Connector_PinSocket_1.27mm +PinSocket_2x36_P1.27mm_Horizontal +Through hole angled socket strip, 2x36, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x36 1.27mm double row +0 +72 +72 +Connector_PinSocket_1.27mm +PinSocket_2x36_P1.27mm_Vertical +Through hole straight socket strip, 2x36, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x36 1.27mm double row +0 +72 +72 +Connector_PinSocket_1.27mm +PinSocket_2x36_P1.27mm_Vertical_SMD +surface-mounted straight socket strip, 2x36, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated +Surface mounted socket strip SMD 2x36 1.27mm double row +0 +72 +72 +Connector_PinSocket_1.27mm +PinSocket_2x37_P1.27mm_Horizontal +Through hole angled socket strip, 2x37, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x37 1.27mm double row +0 +74 +74 +Connector_PinSocket_1.27mm +PinSocket_2x37_P1.27mm_Vertical +Through hole straight socket strip, 2x37, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x37 1.27mm double row +0 +74 +74 +Connector_PinSocket_1.27mm +PinSocket_2x37_P1.27mm_Vertical_SMD +surface-mounted straight socket strip, 2x37, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated +Surface mounted socket strip SMD 2x37 1.27mm double row +0 +74 +74 +Connector_PinSocket_1.27mm +PinSocket_2x38_P1.27mm_Horizontal +Through hole angled socket strip, 2x38, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x38 1.27mm double row +0 +76 +76 +Connector_PinSocket_1.27mm +PinSocket_2x38_P1.27mm_Vertical +Through hole straight socket strip, 2x38, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x38 1.27mm double row +0 +76 +76 +Connector_PinSocket_1.27mm +PinSocket_2x38_P1.27mm_Vertical_SMD +surface-mounted straight socket strip, 2x38, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated +Surface mounted socket strip SMD 2x38 1.27mm double row +0 +76 +76 +Connector_PinSocket_1.27mm +PinSocket_2x39_P1.27mm_Horizontal +Through hole angled socket strip, 2x39, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x39 1.27mm double row +0 +78 +78 +Connector_PinSocket_1.27mm +PinSocket_2x39_P1.27mm_Vertical +Through hole straight socket strip, 2x39, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x39 1.27mm double row +0 +78 +78 +Connector_PinSocket_1.27mm +PinSocket_2x39_P1.27mm_Vertical_SMD +surface-mounted straight socket strip, 2x39, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated +Surface mounted socket strip SMD 2x39 1.27mm double row +0 +78 +78 +Connector_PinSocket_1.27mm +PinSocket_2x40_P1.27mm_Horizontal +Through hole angled socket strip, 2x40, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x40 1.27mm double row +0 +80 +80 +Connector_PinSocket_1.27mm +PinSocket_2x40_P1.27mm_Vertical +Through hole straight socket strip, 2x40, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x40 1.27mm double row +0 +80 +80 +Connector_PinSocket_1.27mm +PinSocket_2x40_P1.27mm_Vertical_SMD +surface-mounted straight socket strip, 2x40, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated +Surface mounted socket strip SMD 2x40 1.27mm double row +0 +80 +80 +Connector_PinSocket_1.27mm +PinSocket_2x41_P1.27mm_Horizontal +Through hole angled socket strip, 2x41, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x41 1.27mm double row +0 +82 +82 +Connector_PinSocket_1.27mm +PinSocket_2x42_P1.27mm_Horizontal +Through hole angled socket strip, 2x42, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x42 1.27mm double row +0 +84 +84 +Connector_PinSocket_1.27mm +PinSocket_2x43_P1.27mm_Horizontal +Through hole angled socket strip, 2x43, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x43 1.27mm double row +0 +86 +86 +Connector_PinSocket_1.27mm +PinSocket_2x44_P1.27mm_Horizontal +Through hole angled socket strip, 2x44, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x44 1.27mm double row +0 +88 +88 +Connector_PinSocket_1.27mm +PinSocket_2x45_P1.27mm_Horizontal +Through hole angled socket strip, 2x45, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x45 1.27mm double row +0 +90 +90 +Connector_PinSocket_1.27mm +PinSocket_2x46_P1.27mm_Horizontal +Through hole angled socket strip, 2x46, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x46 1.27mm double row +0 +92 +92 +Connector_PinSocket_1.27mm +PinSocket_2x47_P1.27mm_Horizontal +Through hole angled socket strip, 2x47, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x47 1.27mm double row +0 +94 +94 +Connector_PinSocket_1.27mm +PinSocket_2x48_P1.27mm_Horizontal +Through hole angled socket strip, 2x48, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x48 1.27mm double row +0 +96 +96 +Connector_PinSocket_1.27mm +PinSocket_2x49_P1.27mm_Horizontal +Through hole angled socket strip, 2x49, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x49 1.27mm double row +0 +98 +98 +Connector_PinSocket_1.27mm +PinSocket_2x50_P1.27mm_Horizontal +Through hole angled socket strip, 2x50, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x50 1.27mm double row +0 +100 +100 +Connector_PinSocket_2.00mm +PinSocket_1x01_P2.00mm_Horizontal +Through hole angled socket strip, 1x01, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x01 2.00mm single row +0 +1 +1 +Connector_PinSocket_2.00mm +PinSocket_1x01_P2.00mm_Vertical +Through hole straight socket strip, 1x01, 2.00mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x01 2.00mm single row +0 +1 +1 +Connector_PinSocket_2.00mm +PinSocket_1x02_P2.00mm_Horizontal +Through hole angled socket strip, 1x02, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x02 2.00mm single row +0 +2 +2 +Connector_PinSocket_2.00mm +PinSocket_1x02_P2.00mm_Vertical +Through hole straight socket strip, 1x02, 2.00mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x02 2.00mm single row +0 +2 +2 +Connector_PinSocket_2.00mm +PinSocket_1x02_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x02, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x02 2.00mm single row style1 pin1 left +0 +2 +2 +Connector_PinSocket_2.00mm +PinSocket_1x02_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x02, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x02 2.00mm single row style2 pin1 right +0 +2 +2 +Connector_PinSocket_2.00mm +PinSocket_1x03_P2.00mm_Horizontal +Through hole angled socket strip, 1x03, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x03 2.00mm single row +0 +3 +3 +Connector_PinSocket_2.00mm +PinSocket_1x03_P2.00mm_Vertical +Through hole straight socket strip, 1x03, 2.00mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x03 2.00mm single row +0 +3 +3 +Connector_PinSocket_2.00mm +PinSocket_1x03_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x03, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x03 2.00mm single row style1 pin1 left +0 +3 +3 +Connector_PinSocket_2.00mm +PinSocket_1x03_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x03, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x03 2.00mm single row style2 pin1 right +0 +3 +3 +Connector_PinSocket_2.00mm +PinSocket_1x04_P2.00mm_Horizontal +Through hole angled socket strip, 1x04, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x04 2.00mm single row +0 +4 +4 +Connector_PinSocket_2.00mm +PinSocket_1x04_P2.00mm_Vertical +Through hole straight socket strip, 1x04, 2.00mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x04 2.00mm single row +0 +4 +4 +Connector_PinSocket_2.00mm +PinSocket_1x04_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x04, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x04 2.00mm single row style1 pin1 left +0 +4 +4 +Connector_PinSocket_2.00mm +PinSocket_1x04_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x04, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x04 2.00mm single row style2 pin1 right +0 +4 +4 +Connector_PinSocket_2.00mm +PinSocket_1x05_P2.00mm_Horizontal +Through hole angled socket strip, 1x05, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x05 2.00mm single row +0 +5 +5 +Connector_PinSocket_2.00mm +PinSocket_1x05_P2.00mm_Vertical +Through hole straight socket strip, 1x05, 2.00mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x05 2.00mm single row +0 +5 +5 +Connector_PinSocket_2.00mm +PinSocket_1x05_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x05, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x05 2.00mm single row style1 pin1 left +0 +5 +5 +Connector_PinSocket_2.00mm +PinSocket_1x05_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x05, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x05 2.00mm single row style2 pin1 right +0 +5 +5 +Connector_PinSocket_2.00mm +PinSocket_1x06_P2.00mm_Horizontal +Through hole angled socket strip, 1x06, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x06 2.00mm single row +0 +6 +6 +Connector_PinSocket_2.00mm +PinSocket_1x06_P2.00mm_Vertical +Through hole straight socket strip, 1x06, 2.00mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x06 2.00mm single row +0 +6 +6 +Connector_PinSocket_2.00mm +PinSocket_1x06_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x06, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x06 2.00mm single row style1 pin1 left +0 +6 +6 +Connector_PinSocket_2.00mm +PinSocket_1x06_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x06, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x06 2.00mm single row style2 pin1 right +0 +6 +6 +Connector_PinSocket_2.00mm +PinSocket_1x07_P2.00mm_Horizontal +Through hole angled socket strip, 1x07, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x07 2.00mm single row +0 +7 +7 +Connector_PinSocket_2.00mm +PinSocket_1x07_P2.00mm_Vertical +Through hole straight socket strip, 1x07, 2.00mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x07 2.00mm single row +0 +7 +7 +Connector_PinSocket_2.00mm +PinSocket_1x07_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x07, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x07 2.00mm single row style1 pin1 left +0 +7 +7 +Connector_PinSocket_2.00mm +PinSocket_1x07_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x07, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x07 2.00mm single row style2 pin1 right +0 +7 +7 +Connector_PinSocket_2.00mm +PinSocket_1x08_P2.00mm_Horizontal +Through hole angled socket strip, 1x08, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x08 2.00mm single row +0 +8 +8 +Connector_PinSocket_2.00mm +PinSocket_1x08_P2.00mm_Vertical +Through hole straight socket strip, 1x08, 2.00mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x08 2.00mm single row +0 +8 +8 +Connector_PinSocket_2.00mm +PinSocket_1x08_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x08, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x08 2.00mm single row style1 pin1 left +0 +8 +8 +Connector_PinSocket_2.00mm +PinSocket_1x08_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x08, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x08 2.00mm single row style2 pin1 right +0 +8 +8 +Connector_PinSocket_2.00mm +PinSocket_1x09_P2.00mm_Horizontal +Through hole angled socket strip, 1x09, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x09 2.00mm single row +0 +9 +9 +Connector_PinSocket_2.00mm +PinSocket_1x09_P2.00mm_Vertical +Through hole straight socket strip, 1x09, 2.00mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x09 2.00mm single row +0 +9 +9 +Connector_PinSocket_2.00mm +PinSocket_1x09_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x09, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x09 2.00mm single row style1 pin1 left +0 +9 +9 +Connector_PinSocket_2.00mm +PinSocket_1x09_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x09, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x09 2.00mm single row style2 pin1 right +0 +9 +9 +Connector_PinSocket_2.00mm +PinSocket_1x10_P2.00mm_Horizontal +Through hole angled socket strip, 1x10, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x10 2.00mm single row +0 +10 +10 +Connector_PinSocket_2.00mm +PinSocket_1x10_P2.00mm_Vertical +Through hole straight socket strip, 1x10, 2.00mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x10 2.00mm single row +0 +10 +10 +Connector_PinSocket_2.00mm +PinSocket_1x10_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x10, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x10 2.00mm single row style1 pin1 left +0 +10 +10 +Connector_PinSocket_2.00mm +PinSocket_1x10_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x10, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x10 2.00mm single row style2 pin1 right +0 +10 +10 +Connector_PinSocket_2.00mm +PinSocket_1x11_P2.00mm_Horizontal +Through hole angled socket strip, 1x11, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x11 2.00mm single row +0 +11 +11 +Connector_PinSocket_2.00mm +PinSocket_1x11_P2.00mm_Vertical +Through hole straight socket strip, 1x11, 2.00mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x11 2.00mm single row +0 +11 +11 +Connector_PinSocket_2.00mm +PinSocket_1x11_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x11, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x11 2.00mm single row style1 pin1 left +0 +11 +11 +Connector_PinSocket_2.00mm +PinSocket_1x11_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x11, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x11 2.00mm single row style2 pin1 right +0 +11 +11 +Connector_PinSocket_2.00mm +PinSocket_1x12_P2.00mm_Horizontal +Through hole angled socket strip, 1x12, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x12 2.00mm single row +0 +12 +12 +Connector_PinSocket_2.00mm +PinSocket_1x12_P2.00mm_Vertical +Through hole straight socket strip, 1x12, 2.00mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x12 2.00mm single row +0 +12 +12 +Connector_PinSocket_2.00mm +PinSocket_1x12_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x12, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x12 2.00mm single row style1 pin1 left +0 +12 +12 +Connector_PinSocket_2.00mm +PinSocket_1x12_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x12, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x12 2.00mm single row style2 pin1 right +0 +12 +12 +Connector_PinSocket_2.00mm +PinSocket_1x13_P2.00mm_Horizontal +Through hole angled socket strip, 1x13, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x13 2.00mm single row +0 +13 +13 +Connector_PinSocket_2.00mm +PinSocket_1x13_P2.00mm_Vertical +Through hole straight socket strip, 1x13, 2.00mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x13 2.00mm single row +0 +13 +13 +Connector_PinSocket_2.00mm +PinSocket_1x13_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x13, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x13 2.00mm single row style1 pin1 left +0 +13 +13 +Connector_PinSocket_2.00mm +PinSocket_1x13_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x13, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x13 2.00mm single row style2 pin1 right +0 +13 +13 +Connector_PinSocket_2.00mm +PinSocket_1x14_P2.00mm_Horizontal +Through hole angled socket strip, 1x14, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x14 2.00mm single row +0 +14 +14 +Connector_PinSocket_2.00mm +PinSocket_1x14_P2.00mm_Vertical +Through hole straight socket strip, 1x14, 2.00mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x14 2.00mm single row +0 +14 +14 +Connector_PinSocket_2.00mm +PinSocket_1x14_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x14, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x14 2.00mm single row style1 pin1 left +0 +14 +14 +Connector_PinSocket_2.00mm +PinSocket_1x14_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x14, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x14 2.00mm single row style2 pin1 right +0 +14 +14 +Connector_PinSocket_2.00mm +PinSocket_1x15_P2.00mm_Horizontal +Through hole angled socket strip, 1x15, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x15 2.00mm single row +0 +15 +15 +Connector_PinSocket_2.00mm +PinSocket_1x15_P2.00mm_Vertical +Through hole straight socket strip, 1x15, 2.00mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x15 2.00mm single row +0 +15 +15 +Connector_PinSocket_2.00mm +PinSocket_1x15_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x15, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x15 2.00mm single row style1 pin1 left +0 +15 +15 +Connector_PinSocket_2.00mm +PinSocket_1x15_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x15, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x15 2.00mm single row style2 pin1 right +0 +15 +15 +Connector_PinSocket_2.00mm +PinSocket_1x16_P2.00mm_Horizontal +Through hole angled socket strip, 1x16, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x16 2.00mm single row +0 +16 +16 +Connector_PinSocket_2.00mm +PinSocket_1x16_P2.00mm_Vertical +Through hole straight socket strip, 1x16, 2.00mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x16 2.00mm single row +0 +16 +16 +Connector_PinSocket_2.00mm +PinSocket_1x16_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x16, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x16 2.00mm single row style1 pin1 left +0 +16 +16 +Connector_PinSocket_2.00mm +PinSocket_1x16_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x16, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x16 2.00mm single row style2 pin1 right +0 +16 +16 +Connector_PinSocket_2.00mm +PinSocket_1x17_P2.00mm_Horizontal +Through hole angled socket strip, 1x17, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x17 2.00mm single row +0 +17 +17 +Connector_PinSocket_2.00mm +PinSocket_1x17_P2.00mm_Vertical +Through hole straight socket strip, 1x17, 2.00mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x17 2.00mm single row +0 +17 +17 +Connector_PinSocket_2.00mm +PinSocket_1x17_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x17, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x17 2.00mm single row style1 pin1 left +0 +17 +17 +Connector_PinSocket_2.00mm +PinSocket_1x17_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x17, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x17 2.00mm single row style2 pin1 right +0 +17 +17 +Connector_PinSocket_2.00mm +PinSocket_1x18_P2.00mm_Horizontal +Through hole angled socket strip, 1x18, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x18 2.00mm single row +0 +18 +18 +Connector_PinSocket_2.00mm +PinSocket_1x18_P2.00mm_Vertical +Through hole straight socket strip, 1x18, 2.00mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x18 2.00mm single row +0 +18 +18 +Connector_PinSocket_2.00mm +PinSocket_1x18_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x18, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x18 2.00mm single row style1 pin1 left +0 +18 +18 +Connector_PinSocket_2.00mm +PinSocket_1x18_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x18, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x18 2.00mm single row style2 pin1 right +0 +18 +18 +Connector_PinSocket_2.00mm +PinSocket_1x19_P2.00mm_Horizontal +Through hole angled socket strip, 1x19, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x19 2.00mm single row +0 +19 +19 +Connector_PinSocket_2.00mm +PinSocket_1x19_P2.00mm_Vertical +Through hole straight socket strip, 1x19, 2.00mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x19 2.00mm single row +0 +19 +19 +Connector_PinSocket_2.00mm +PinSocket_1x19_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x19, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x19 2.00mm single row style1 pin1 left +0 +19 +19 +Connector_PinSocket_2.00mm +PinSocket_1x19_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x19, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x19 2.00mm single row style2 pin1 right +0 +19 +19 +Connector_PinSocket_2.00mm +PinSocket_1x20_P2.00mm_Horizontal +Through hole angled socket strip, 1x20, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x20 2.00mm single row +0 +20 +20 +Connector_PinSocket_2.00mm +PinSocket_1x20_P2.00mm_Vertical +Through hole straight socket strip, 1x20, 2.00mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x20 2.00mm single row +0 +20 +20 +Connector_PinSocket_2.00mm +PinSocket_1x20_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x20, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x20 2.00mm single row style1 pin1 left +0 +20 +20 +Connector_PinSocket_2.00mm +PinSocket_1x20_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x20, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x20 2.00mm single row style2 pin1 right +0 +20 +20 +Connector_PinSocket_2.00mm +PinSocket_1x21_P2.00mm_Horizontal +Through hole angled socket strip, 1x21, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x21 2.00mm single row +0 +21 +21 +Connector_PinSocket_2.00mm +PinSocket_1x21_P2.00mm_Vertical +Through hole straight socket strip, 1x21, 2.00mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x21 2.00mm single row +0 +21 +21 +Connector_PinSocket_2.00mm +PinSocket_1x21_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x21, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x21 2.00mm single row style1 pin1 left +0 +21 +21 +Connector_PinSocket_2.00mm +PinSocket_1x21_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x21, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x21 2.00mm single row style2 pin1 right +0 +21 +21 +Connector_PinSocket_2.00mm +PinSocket_1x22_P2.00mm_Horizontal +Through hole angled socket strip, 1x22, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x22 2.00mm single row +0 +22 +22 +Connector_PinSocket_2.00mm +PinSocket_1x22_P2.00mm_Vertical +Through hole straight socket strip, 1x22, 2.00mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x22 2.00mm single row +0 +22 +22 +Connector_PinSocket_2.00mm +PinSocket_1x22_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x22, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x22 2.00mm single row style1 pin1 left +0 +22 +22 +Connector_PinSocket_2.00mm +PinSocket_1x22_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x22, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x22 2.00mm single row style2 pin1 right +0 +22 +22 +Connector_PinSocket_2.00mm +PinSocket_1x23_P2.00mm_Horizontal +Through hole angled socket strip, 1x23, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x23 2.00mm single row +0 +23 +23 +Connector_PinSocket_2.00mm +PinSocket_1x23_P2.00mm_Vertical +Through hole straight socket strip, 1x23, 2.00mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x23 2.00mm single row +0 +23 +23 +Connector_PinSocket_2.00mm +PinSocket_1x23_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x23, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x23 2.00mm single row style1 pin1 left +0 +23 +23 +Connector_PinSocket_2.00mm +PinSocket_1x23_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x23, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x23 2.00mm single row style2 pin1 right +0 +23 +23 +Connector_PinSocket_2.00mm +PinSocket_1x24_P2.00mm_Horizontal +Through hole angled socket strip, 1x24, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x24 2.00mm single row +0 +24 +24 +Connector_PinSocket_2.00mm +PinSocket_1x24_P2.00mm_Vertical +Through hole straight socket strip, 1x24, 2.00mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x24 2.00mm single row +0 +24 +24 +Connector_PinSocket_2.00mm +PinSocket_1x24_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x24, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x24 2.00mm single row style1 pin1 left +0 +24 +24 +Connector_PinSocket_2.00mm +PinSocket_1x24_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x24, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x24 2.00mm single row style2 pin1 right +0 +24 +24 +Connector_PinSocket_2.00mm +PinSocket_1x25_P2.00mm_Horizontal +Through hole angled socket strip, 1x25, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x25 2.00mm single row +0 +25 +25 +Connector_PinSocket_2.00mm +PinSocket_1x25_P2.00mm_Vertical +Through hole straight socket strip, 1x25, 2.00mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x25 2.00mm single row +0 +25 +25 +Connector_PinSocket_2.00mm +PinSocket_1x25_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x25, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x25 2.00mm single row style1 pin1 left +0 +25 +25 +Connector_PinSocket_2.00mm +PinSocket_1x25_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x25, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x25 2.00mm single row style2 pin1 right +0 +25 +25 +Connector_PinSocket_2.00mm +PinSocket_1x26_P2.00mm_Horizontal +Through hole angled socket strip, 1x26, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x26 2.00mm single row +0 +26 +26 +Connector_PinSocket_2.00mm +PinSocket_1x26_P2.00mm_Vertical +Through hole straight socket strip, 1x26, 2.00mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x26 2.00mm single row +0 +26 +26 +Connector_PinSocket_2.00mm +PinSocket_1x26_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x26, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x26 2.00mm single row style1 pin1 left +0 +26 +26 +Connector_PinSocket_2.00mm +PinSocket_1x26_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x26, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x26 2.00mm single row style2 pin1 right +0 +26 +26 +Connector_PinSocket_2.00mm +PinSocket_1x27_P2.00mm_Horizontal +Through hole angled socket strip, 1x27, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x27 2.00mm single row +0 +27 +27 +Connector_PinSocket_2.00mm +PinSocket_1x27_P2.00mm_Vertical +Through hole straight socket strip, 1x27, 2.00mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x27 2.00mm single row +0 +27 +27 +Connector_PinSocket_2.00mm +PinSocket_1x27_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x27, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x27 2.00mm single row style1 pin1 left +0 +27 +27 +Connector_PinSocket_2.00mm +PinSocket_1x27_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x27, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x27 2.00mm single row style2 pin1 right +0 +27 +27 +Connector_PinSocket_2.00mm +PinSocket_1x28_P2.00mm_Horizontal +Through hole angled socket strip, 1x28, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x28 2.00mm single row +0 +28 +28 +Connector_PinSocket_2.00mm +PinSocket_1x28_P2.00mm_Vertical +Through hole straight socket strip, 1x28, 2.00mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x28 2.00mm single row +0 +28 +28 +Connector_PinSocket_2.00mm +PinSocket_1x28_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x28, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x28 2.00mm single row style1 pin1 left +0 +28 +28 +Connector_PinSocket_2.00mm +PinSocket_1x28_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x28, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x28 2.00mm single row style2 pin1 right +0 +28 +28 +Connector_PinSocket_2.00mm +PinSocket_1x29_P2.00mm_Horizontal +Through hole angled socket strip, 1x29, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x29 2.00mm single row +0 +29 +29 +Connector_PinSocket_2.00mm +PinSocket_1x29_P2.00mm_Vertical +Through hole straight socket strip, 1x29, 2.00mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x29 2.00mm single row +0 +29 +29 +Connector_PinSocket_2.00mm +PinSocket_1x29_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x29, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x29 2.00mm single row style1 pin1 left +0 +29 +29 +Connector_PinSocket_2.00mm +PinSocket_1x29_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x29, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x29 2.00mm single row style2 pin1 right +0 +29 +29 +Connector_PinSocket_2.00mm +PinSocket_1x30_P2.00mm_Horizontal +Through hole angled socket strip, 1x30, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x30 2.00mm single row +0 +30 +30 +Connector_PinSocket_2.00mm +PinSocket_1x30_P2.00mm_Vertical +Through hole straight socket strip, 1x30, 2.00mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x30 2.00mm single row +0 +30 +30 +Connector_PinSocket_2.00mm +PinSocket_1x30_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x30, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x30 2.00mm single row style1 pin1 left +0 +30 +30 +Connector_PinSocket_2.00mm +PinSocket_1x30_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x30, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x30 2.00mm single row style2 pin1 right +0 +30 +30 +Connector_PinSocket_2.00mm +PinSocket_1x31_P2.00mm_Horizontal +Through hole angled socket strip, 1x31, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x31 2.00mm single row +0 +31 +31 +Connector_PinSocket_2.00mm +PinSocket_1x31_P2.00mm_Vertical +Through hole straight socket strip, 1x31, 2.00mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x31 2.00mm single row +0 +31 +31 +Connector_PinSocket_2.00mm +PinSocket_1x31_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x31, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x31 2.00mm single row style1 pin1 left +0 +31 +31 +Connector_PinSocket_2.00mm +PinSocket_1x31_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x31, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x31 2.00mm single row style2 pin1 right +0 +31 +31 +Connector_PinSocket_2.00mm +PinSocket_1x32_P2.00mm_Horizontal +Through hole angled socket strip, 1x32, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x32 2.00mm single row +0 +32 +32 +Connector_PinSocket_2.00mm +PinSocket_1x32_P2.00mm_Vertical +Through hole straight socket strip, 1x32, 2.00mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x32 2.00mm single row +0 +32 +32 +Connector_PinSocket_2.00mm +PinSocket_1x32_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x32, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x32 2.00mm single row style1 pin1 left +0 +32 +32 +Connector_PinSocket_2.00mm +PinSocket_1x32_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x32, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x32 2.00mm single row style2 pin1 right +0 +32 +32 +Connector_PinSocket_2.00mm +PinSocket_1x33_P2.00mm_Horizontal +Through hole angled socket strip, 1x33, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x33 2.00mm single row +0 +33 +33 +Connector_PinSocket_2.00mm +PinSocket_1x33_P2.00mm_Vertical +Through hole straight socket strip, 1x33, 2.00mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x33 2.00mm single row +0 +33 +33 +Connector_PinSocket_2.00mm +PinSocket_1x33_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x33, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x33 2.00mm single row style1 pin1 left +0 +33 +33 +Connector_PinSocket_2.00mm +PinSocket_1x33_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x33, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x33 2.00mm single row style2 pin1 right +0 +33 +33 +Connector_PinSocket_2.00mm +PinSocket_1x34_P2.00mm_Horizontal +Through hole angled socket strip, 1x34, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x34 2.00mm single row +0 +34 +34 +Connector_PinSocket_2.00mm +PinSocket_1x34_P2.00mm_Vertical +Through hole straight socket strip, 1x34, 2.00mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x34 2.00mm single row +0 +34 +34 +Connector_PinSocket_2.00mm +PinSocket_1x34_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x34, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x34 2.00mm single row style1 pin1 left +0 +34 +34 +Connector_PinSocket_2.00mm +PinSocket_1x34_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x34, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x34 2.00mm single row style2 pin1 right +0 +34 +34 +Connector_PinSocket_2.00mm +PinSocket_1x35_P2.00mm_Horizontal +Through hole angled socket strip, 1x35, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x35 2.00mm single row +0 +35 +35 +Connector_PinSocket_2.00mm +PinSocket_1x35_P2.00mm_Vertical +Through hole straight socket strip, 1x35, 2.00mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x35 2.00mm single row +0 +35 +35 +Connector_PinSocket_2.00mm +PinSocket_1x35_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x35, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x35 2.00mm single row style1 pin1 left +0 +35 +35 +Connector_PinSocket_2.00mm +PinSocket_1x35_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x35, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x35 2.00mm single row style2 pin1 right +0 +35 +35 +Connector_PinSocket_2.00mm +PinSocket_1x36_P2.00mm_Horizontal +Through hole angled socket strip, 1x36, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x36 2.00mm single row +0 +36 +36 +Connector_PinSocket_2.00mm +PinSocket_1x36_P2.00mm_Vertical +Through hole straight socket strip, 1x36, 2.00mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x36 2.00mm single row +0 +36 +36 +Connector_PinSocket_2.00mm +PinSocket_1x36_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x36, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x36 2.00mm single row style1 pin1 left +0 +36 +36 +Connector_PinSocket_2.00mm +PinSocket_1x36_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x36, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x36 2.00mm single row style2 pin1 right +0 +36 +36 +Connector_PinSocket_2.00mm +PinSocket_1x37_P2.00mm_Horizontal +Through hole angled socket strip, 1x37, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x37 2.00mm single row +0 +37 +37 +Connector_PinSocket_2.00mm +PinSocket_1x37_P2.00mm_Vertical +Through hole straight socket strip, 1x37, 2.00mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x37 2.00mm single row +0 +37 +37 +Connector_PinSocket_2.00mm +PinSocket_1x37_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x37, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x37 2.00mm single row style1 pin1 left +0 +37 +37 +Connector_PinSocket_2.00mm +PinSocket_1x37_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x37, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x37 2.00mm single row style2 pin1 right +0 +37 +37 +Connector_PinSocket_2.00mm +PinSocket_1x38_P2.00mm_Horizontal +Through hole angled socket strip, 1x38, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x38 2.00mm single row +0 +38 +38 +Connector_PinSocket_2.00mm +PinSocket_1x38_P2.00mm_Vertical +Through hole straight socket strip, 1x38, 2.00mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x38 2.00mm single row +0 +38 +38 +Connector_PinSocket_2.00mm +PinSocket_1x38_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x38, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x38 2.00mm single row style1 pin1 left +0 +38 +38 +Connector_PinSocket_2.00mm +PinSocket_1x38_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x38, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x38 2.00mm single row style2 pin1 right +0 +38 +38 +Connector_PinSocket_2.00mm +PinSocket_1x39_P2.00mm_Horizontal +Through hole angled socket strip, 1x39, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x39 2.00mm single row +0 +39 +39 +Connector_PinSocket_2.00mm +PinSocket_1x39_P2.00mm_Vertical +Through hole straight socket strip, 1x39, 2.00mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x39 2.00mm single row +0 +39 +39 +Connector_PinSocket_2.00mm +PinSocket_1x39_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x39, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x39 2.00mm single row style1 pin1 left +0 +39 +39 +Connector_PinSocket_2.00mm +PinSocket_1x39_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x39, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x39 2.00mm single row style2 pin1 right +0 +39 +39 +Connector_PinSocket_2.00mm +PinSocket_1x40_P2.00mm_Horizontal +Through hole angled socket strip, 1x40, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x40 2.00mm single row +0 +40 +40 +Connector_PinSocket_2.00mm +PinSocket_1x40_P2.00mm_Vertical +Through hole straight socket strip, 1x40, 2.00mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x40 2.00mm single row +0 +40 +40 +Connector_PinSocket_2.00mm +PinSocket_1x40_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x40, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x40 2.00mm single row style1 pin1 left +0 +40 +40 +Connector_PinSocket_2.00mm +PinSocket_1x40_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x40, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x40 2.00mm single row style2 pin1 right +0 +40 +40 +Connector_PinSocket_2.00mm +PinSocket_2x01_P2.00mm_Horizontal +Through hole angled socket strip, 2x01, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x01 2.00mm double row +0 +2 +2 +Connector_PinSocket_2.00mm +PinSocket_2x01_P2.00mm_Vertical +Through hole straight socket strip, 2x01, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x01 2.00mm double row +0 +2 +2 +Connector_PinSocket_2.00mm +PinSocket_2x01_P2.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x01, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x01 2.00mm double row +0 +2 +2 +Connector_PinSocket_2.00mm +PinSocket_2x02_P2.00mm_Horizontal +Through hole angled socket strip, 2x02, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x02 2.00mm double row +0 +4 +4 +Connector_PinSocket_2.00mm +PinSocket_2x02_P2.00mm_Vertical +Through hole straight socket strip, 2x02, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x02 2.00mm double row +0 +4 +4 +Connector_PinSocket_2.00mm +PinSocket_2x02_P2.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x02, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x02 2.00mm double row +0 +4 +4 +Connector_PinSocket_2.00mm +PinSocket_2x03_P2.00mm_Horizontal +Through hole angled socket strip, 2x03, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x03 2.00mm double row +0 +6 +6 +Connector_PinSocket_2.00mm +PinSocket_2x03_P2.00mm_Vertical +Through hole straight socket strip, 2x03, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x03 2.00mm double row +0 +6 +6 +Connector_PinSocket_2.00mm +PinSocket_2x03_P2.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x03, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x03 2.00mm double row +0 +6 +6 +Connector_PinSocket_2.00mm +PinSocket_2x04_P2.00mm_Horizontal +Through hole angled socket strip, 2x04, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x04 2.00mm double row +0 +8 +8 +Connector_PinSocket_2.00mm +PinSocket_2x04_P2.00mm_Vertical +Through hole straight socket strip, 2x04, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x04 2.00mm double row +0 +8 +8 +Connector_PinSocket_2.00mm +PinSocket_2x04_P2.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x04, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x04 2.00mm double row +0 +8 +8 +Connector_PinSocket_2.00mm +PinSocket_2x05_P2.00mm_Horizontal +Through hole angled socket strip, 2x05, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x05 2.00mm double row +0 +10 +10 +Connector_PinSocket_2.00mm +PinSocket_2x05_P2.00mm_Vertical +Through hole straight socket strip, 2x05, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x05 2.00mm double row +0 +10 +10 +Connector_PinSocket_2.00mm +PinSocket_2x05_P2.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x05, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x05 2.00mm double row +0 +10 +10 +Connector_PinSocket_2.00mm +PinSocket_2x06_P2.00mm_Horizontal +Through hole angled socket strip, 2x06, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x06 2.00mm double row +0 +12 +12 +Connector_PinSocket_2.00mm +PinSocket_2x06_P2.00mm_Vertical +Through hole straight socket strip, 2x06, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x06 2.00mm double row +0 +12 +12 +Connector_PinSocket_2.00mm +PinSocket_2x06_P2.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x06, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x06 2.00mm double row +0 +12 +12 +Connector_PinSocket_2.00mm +PinSocket_2x07_P2.00mm_Horizontal +Through hole angled socket strip, 2x07, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x07 2.00mm double row +0 +14 +14 +Connector_PinSocket_2.00mm +PinSocket_2x07_P2.00mm_Vertical +Through hole straight socket strip, 2x07, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x07 2.00mm double row +0 +14 +14 +Connector_PinSocket_2.00mm +PinSocket_2x07_P2.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x07, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x07 2.00mm double row +0 +14 +14 +Connector_PinSocket_2.00mm +PinSocket_2x08_P2.00mm_Horizontal +Through hole angled socket strip, 2x08, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x08 2.00mm double row +0 +16 +16 +Connector_PinSocket_2.00mm +PinSocket_2x08_P2.00mm_Vertical +Through hole straight socket strip, 2x08, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x08 2.00mm double row +0 +16 +16 +Connector_PinSocket_2.00mm +PinSocket_2x08_P2.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x08, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x08 2.00mm double row +0 +16 +16 +Connector_PinSocket_2.00mm +PinSocket_2x09_P2.00mm_Horizontal +Through hole angled socket strip, 2x09, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x09 2.00mm double row +0 +18 +18 +Connector_PinSocket_2.00mm +PinSocket_2x09_P2.00mm_Vertical +Through hole straight socket strip, 2x09, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x09 2.00mm double row +0 +18 +18 +Connector_PinSocket_2.00mm +PinSocket_2x09_P2.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x09, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x09 2.00mm double row +0 +18 +18 +Connector_PinSocket_2.00mm +PinSocket_2x10_P2.00mm_Horizontal +Through hole angled socket strip, 2x10, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x10 2.00mm double row +0 +20 +20 +Connector_PinSocket_2.00mm +PinSocket_2x10_P2.00mm_Vertical +Through hole straight socket strip, 2x10, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x10 2.00mm double row +0 +20 +20 +Connector_PinSocket_2.00mm +PinSocket_2x10_P2.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x10, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x10 2.00mm double row +0 +20 +20 +Connector_PinSocket_2.00mm +PinSocket_2x11_P2.00mm_Horizontal +Through hole angled socket strip, 2x11, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x11 2.00mm double row +0 +22 +22 +Connector_PinSocket_2.00mm +PinSocket_2x11_P2.00mm_Vertical +Through hole straight socket strip, 2x11, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x11 2.00mm double row +0 +22 +22 +Connector_PinSocket_2.00mm +PinSocket_2x11_P2.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x11, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x11 2.00mm double row +0 +22 +22 +Connector_PinSocket_2.00mm +PinSocket_2x12_P2.00mm_Horizontal +Through hole angled socket strip, 2x12, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x12 2.00mm double row +0 +24 +24 +Connector_PinSocket_2.00mm +PinSocket_2x12_P2.00mm_Vertical +Through hole straight socket strip, 2x12, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x12 2.00mm double row +0 +24 +24 +Connector_PinSocket_2.00mm +PinSocket_2x12_P2.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x12, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x12 2.00mm double row +0 +24 +24 +Connector_PinSocket_2.00mm +PinSocket_2x13_P2.00mm_Horizontal +Through hole angled socket strip, 2x13, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x13 2.00mm double row +0 +26 +26 +Connector_PinSocket_2.00mm +PinSocket_2x13_P2.00mm_Vertical +Through hole straight socket strip, 2x13, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x13 2.00mm double row +0 +26 +26 +Connector_PinSocket_2.00mm +PinSocket_2x13_P2.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x13, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x13 2.00mm double row +0 +26 +26 +Connector_PinSocket_2.00mm +PinSocket_2x14_P2.00mm_Horizontal +Through hole angled socket strip, 2x14, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x14 2.00mm double row +0 +28 +28 +Connector_PinSocket_2.00mm +PinSocket_2x14_P2.00mm_Vertical +Through hole straight socket strip, 2x14, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x14 2.00mm double row +0 +28 +28 +Connector_PinSocket_2.00mm +PinSocket_2x14_P2.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x14, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x14 2.00mm double row +0 +28 +28 +Connector_PinSocket_2.00mm +PinSocket_2x15_P2.00mm_Horizontal +Through hole angled socket strip, 2x15, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x15 2.00mm double row +0 +30 +30 +Connector_PinSocket_2.00mm +PinSocket_2x15_P2.00mm_Vertical +Through hole straight socket strip, 2x15, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x15 2.00mm double row +0 +30 +30 +Connector_PinSocket_2.00mm +PinSocket_2x15_P2.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x15, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x15 2.00mm double row +0 +30 +30 +Connector_PinSocket_2.00mm +PinSocket_2x16_P2.00mm_Horizontal +Through hole angled socket strip, 2x16, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x16 2.00mm double row +0 +32 +32 +Connector_PinSocket_2.00mm +PinSocket_2x16_P2.00mm_Vertical +Through hole straight socket strip, 2x16, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x16 2.00mm double row +0 +32 +32 +Connector_PinSocket_2.00mm +PinSocket_2x16_P2.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x16, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x16 2.00mm double row +0 +32 +32 +Connector_PinSocket_2.00mm +PinSocket_2x17_P2.00mm_Horizontal +Through hole angled socket strip, 2x17, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x17 2.00mm double row +0 +34 +34 +Connector_PinSocket_2.00mm +PinSocket_2x17_P2.00mm_Vertical +Through hole straight socket strip, 2x17, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x17 2.00mm double row +0 +34 +34 +Connector_PinSocket_2.00mm +PinSocket_2x17_P2.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x17, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x17 2.00mm double row +0 +34 +34 +Connector_PinSocket_2.00mm +PinSocket_2x18_P2.00mm_Horizontal +Through hole angled socket strip, 2x18, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x18 2.00mm double row +0 +36 +36 +Connector_PinSocket_2.00mm +PinSocket_2x18_P2.00mm_Vertical +Through hole straight socket strip, 2x18, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x18 2.00mm double row +0 +36 +36 +Connector_PinSocket_2.00mm +PinSocket_2x18_P2.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x18, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x18 2.00mm double row +0 +36 +36 +Connector_PinSocket_2.00mm +PinSocket_2x19_P2.00mm_Horizontal +Through hole angled socket strip, 2x19, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x19 2.00mm double row +0 +38 +38 +Connector_PinSocket_2.00mm +PinSocket_2x19_P2.00mm_Vertical +Through hole straight socket strip, 2x19, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x19 2.00mm double row +0 +38 +38 +Connector_PinSocket_2.00mm +PinSocket_2x19_P2.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x19, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x19 2.00mm double row +0 +38 +38 +Connector_PinSocket_2.00mm +PinSocket_2x20_P2.00mm_Horizontal +Through hole angled socket strip, 2x20, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x20 2.00mm double row +0 +40 +40 +Connector_PinSocket_2.00mm +PinSocket_2x20_P2.00mm_Vertical +Through hole straight socket strip, 2x20, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x20 2.00mm double row +0 +40 +40 +Connector_PinSocket_2.00mm +PinSocket_2x20_P2.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x20, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x20 2.00mm double row +0 +40 +40 +Connector_PinSocket_2.00mm +PinSocket_2x21_P2.00mm_Horizontal +Through hole angled socket strip, 2x21, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x21 2.00mm double row +0 +42 +42 +Connector_PinSocket_2.00mm +PinSocket_2x21_P2.00mm_Vertical +Through hole straight socket strip, 2x21, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x21 2.00mm double row +0 +42 +42 +Connector_PinSocket_2.00mm +PinSocket_2x21_P2.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x21, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x21 2.00mm double row +0 +42 +42 +Connector_PinSocket_2.00mm +PinSocket_2x22_P2.00mm_Horizontal +Through hole angled socket strip, 2x22, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x22 2.00mm double row +0 +44 +44 +Connector_PinSocket_2.00mm +PinSocket_2x22_P2.00mm_Vertical +Through hole straight socket strip, 2x22, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x22 2.00mm double row +0 +44 +44 +Connector_PinSocket_2.00mm +PinSocket_2x22_P2.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x22, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x22 2.00mm double row +0 +44 +44 +Connector_PinSocket_2.00mm +PinSocket_2x23_P2.00mm_Horizontal +Through hole angled socket strip, 2x23, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x23 2.00mm double row +0 +46 +46 +Connector_PinSocket_2.00mm +PinSocket_2x23_P2.00mm_Vertical +Through hole straight socket strip, 2x23, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x23 2.00mm double row +0 +46 +46 +Connector_PinSocket_2.00mm +PinSocket_2x23_P2.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x23, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x23 2.00mm double row +0 +46 +46 +Connector_PinSocket_2.00mm +PinSocket_2x24_P2.00mm_Horizontal +Through hole angled socket strip, 2x24, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x24 2.00mm double row +0 +48 +48 +Connector_PinSocket_2.00mm +PinSocket_2x24_P2.00mm_Vertical +Through hole straight socket strip, 2x24, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x24 2.00mm double row +0 +48 +48 +Connector_PinSocket_2.00mm +PinSocket_2x24_P2.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x24, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x24 2.00mm double row +0 +48 +48 +Connector_PinSocket_2.00mm +PinSocket_2x25_P2.00mm_Horizontal +Through hole angled socket strip, 2x25, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x25 2.00mm double row +0 +50 +50 +Connector_PinSocket_2.00mm +PinSocket_2x25_P2.00mm_Vertical +Through hole straight socket strip, 2x25, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x25 2.00mm double row +0 +50 +50 +Connector_PinSocket_2.00mm +PinSocket_2x25_P2.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x25, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x25 2.00mm double row +0 +50 +50 +Connector_PinSocket_2.00mm +PinSocket_2x26_P2.00mm_Horizontal +Through hole angled socket strip, 2x26, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x26 2.00mm double row +0 +52 +52 +Connector_PinSocket_2.00mm +PinSocket_2x26_P2.00mm_Vertical +Through hole straight socket strip, 2x26, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x26 2.00mm double row +0 +52 +52 +Connector_PinSocket_2.00mm +PinSocket_2x26_P2.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x26, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x26 2.00mm double row +0 +52 +52 +Connector_PinSocket_2.00mm +PinSocket_2x27_P2.00mm_Horizontal +Through hole angled socket strip, 2x27, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x27 2.00mm double row +0 +54 +54 +Connector_PinSocket_2.00mm +PinSocket_2x27_P2.00mm_Vertical +Through hole straight socket strip, 2x27, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x27 2.00mm double row +0 +54 +54 +Connector_PinSocket_2.00mm +PinSocket_2x27_P2.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x27, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x27 2.00mm double row +0 +54 +54 +Connector_PinSocket_2.00mm +PinSocket_2x28_P2.00mm_Horizontal +Through hole angled socket strip, 2x28, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x28 2.00mm double row +0 +56 +56 +Connector_PinSocket_2.00mm +PinSocket_2x28_P2.00mm_Vertical +Through hole straight socket strip, 2x28, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x28 2.00mm double row +0 +56 +56 +Connector_PinSocket_2.00mm +PinSocket_2x28_P2.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x28, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x28 2.00mm double row +0 +56 +56 +Connector_PinSocket_2.00mm +PinSocket_2x29_P2.00mm_Horizontal +Through hole angled socket strip, 2x29, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x29 2.00mm double row +0 +58 +58 +Connector_PinSocket_2.00mm +PinSocket_2x29_P2.00mm_Vertical +Through hole straight socket strip, 2x29, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x29 2.00mm double row +0 +58 +58 +Connector_PinSocket_2.00mm +PinSocket_2x29_P2.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x29, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x29 2.00mm double row +0 +58 +58 +Connector_PinSocket_2.00mm +PinSocket_2x30_P2.00mm_Horizontal +Through hole angled socket strip, 2x30, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x30 2.00mm double row +0 +60 +60 +Connector_PinSocket_2.00mm +PinSocket_2x30_P2.00mm_Vertical +Through hole straight socket strip, 2x30, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x30 2.00mm double row +0 +60 +60 +Connector_PinSocket_2.00mm +PinSocket_2x30_P2.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x30, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x30 2.00mm double row +0 +60 +60 +Connector_PinSocket_2.00mm +PinSocket_2x31_P2.00mm_Horizontal +Through hole angled socket strip, 2x31, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x31 2.00mm double row +0 +62 +62 +Connector_PinSocket_2.00mm +PinSocket_2x31_P2.00mm_Vertical +Through hole straight socket strip, 2x31, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x31 2.00mm double row +0 +62 +62 +Connector_PinSocket_2.00mm +PinSocket_2x31_P2.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x31, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x31 2.00mm double row +0 +62 +62 +Connector_PinSocket_2.00mm +PinSocket_2x32_P2.00mm_Horizontal +Through hole angled socket strip, 2x32, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x32 2.00mm double row +0 +64 +64 +Connector_PinSocket_2.00mm +PinSocket_2x32_P2.00mm_Vertical +Through hole straight socket strip, 2x32, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x32 2.00mm double row +0 +64 +64 +Connector_PinSocket_2.00mm +PinSocket_2x32_P2.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x32, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x32 2.00mm double row +0 +64 +64 +Connector_PinSocket_2.00mm +PinSocket_2x33_P2.00mm_Horizontal +Through hole angled socket strip, 2x33, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x33 2.00mm double row +0 +66 +66 +Connector_PinSocket_2.00mm +PinSocket_2x33_P2.00mm_Vertical +Through hole straight socket strip, 2x33, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x33 2.00mm double row +0 +66 +66 +Connector_PinSocket_2.00mm +PinSocket_2x33_P2.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x33, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x33 2.00mm double row +0 +66 +66 +Connector_PinSocket_2.00mm +PinSocket_2x34_P2.00mm_Horizontal +Through hole angled socket strip, 2x34, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x34 2.00mm double row +0 +68 +68 +Connector_PinSocket_2.00mm +PinSocket_2x34_P2.00mm_Vertical +Through hole straight socket strip, 2x34, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x34 2.00mm double row +0 +68 +68 +Connector_PinSocket_2.00mm +PinSocket_2x34_P2.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x34, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x34 2.00mm double row +0 +68 +68 +Connector_PinSocket_2.00mm +PinSocket_2x35_P2.00mm_Horizontal +Through hole angled socket strip, 2x35, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x35 2.00mm double row +0 +70 +70 +Connector_PinSocket_2.00mm +PinSocket_2x35_P2.00mm_Vertical +Through hole straight socket strip, 2x35, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x35 2.00mm double row +0 +70 +70 +Connector_PinSocket_2.00mm +PinSocket_2x35_P2.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x35, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x35 2.00mm double row +0 +70 +70 +Connector_PinSocket_2.00mm +PinSocket_2x36_P2.00mm_Horizontal +Through hole angled socket strip, 2x36, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x36 2.00mm double row +0 +72 +72 +Connector_PinSocket_2.00mm +PinSocket_2x36_P2.00mm_Vertical +Through hole straight socket strip, 2x36, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x36 2.00mm double row +0 +72 +72 +Connector_PinSocket_2.00mm +PinSocket_2x36_P2.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x36, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x36 2.00mm double row +0 +72 +72 +Connector_PinSocket_2.00mm +PinSocket_2x37_P2.00mm_Horizontal +Through hole angled socket strip, 2x37, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x37 2.00mm double row +0 +74 +74 +Connector_PinSocket_2.00mm +PinSocket_2x37_P2.00mm_Vertical +Through hole straight socket strip, 2x37, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x37 2.00mm double row +0 +74 +74 +Connector_PinSocket_2.00mm +PinSocket_2x37_P2.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x37, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x37 2.00mm double row +0 +74 +74 +Connector_PinSocket_2.00mm +PinSocket_2x38_P2.00mm_Horizontal +Through hole angled socket strip, 2x38, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x38 2.00mm double row +0 +76 +76 +Connector_PinSocket_2.00mm +PinSocket_2x38_P2.00mm_Vertical +Through hole straight socket strip, 2x38, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x38 2.00mm double row +0 +76 +76 +Connector_PinSocket_2.00mm +PinSocket_2x38_P2.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x38, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x38 2.00mm double row +0 +76 +76 +Connector_PinSocket_2.00mm +PinSocket_2x39_P2.00mm_Horizontal +Through hole angled socket strip, 2x39, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x39 2.00mm double row +0 +78 +78 +Connector_PinSocket_2.00mm +PinSocket_2x39_P2.00mm_Vertical +Through hole straight socket strip, 2x39, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x39 2.00mm double row +0 +78 +78 +Connector_PinSocket_2.00mm +PinSocket_2x39_P2.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x39, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x39 2.00mm double row +0 +78 +78 +Connector_PinSocket_2.00mm +PinSocket_2x40_P2.00mm_Horizontal +Through hole angled socket strip, 2x40, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x40 2.00mm double row +0 +80 +80 +Connector_PinSocket_2.00mm +PinSocket_2x40_P2.00mm_Vertical +Through hole straight socket strip, 2x40, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x40 2.00mm double row +0 +80 +80 +Connector_PinSocket_2.00mm +PinSocket_2x40_P2.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x40, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x40 2.00mm double row +0 +80 +80 +Connector_PinSocket_2.54mm +PinSocket_1x01_P2.54mm_Horizontal +Through hole angled socket strip, 1x01, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x01 2.54mm single row +0 +1 +1 +Connector_PinSocket_2.54mm +PinSocket_1x01_P2.54mm_Vertical +Through hole straight socket strip, 1x01, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x01 2.54mm single row +0 +1 +1 +Connector_PinSocket_2.54mm +PinSocket_1x02_P2.54mm_Horizontal +Through hole angled socket strip, 1x02, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x02 2.54mm single row +0 +2 +2 +Connector_PinSocket_2.54mm +PinSocket_1x02_P2.54mm_Vertical +Through hole straight socket strip, 1x02, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x02 2.54mm single row +0 +2 +2 +Connector_PinSocket_2.54mm +PinSocket_1x02_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x02, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x02 2.54mm single row style1 pin1 left +0 +2 +2 +Connector_PinSocket_2.54mm +PinSocket_1x02_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x02, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x02 2.54mm single row style2 pin1 right +0 +2 +2 +Connector_PinSocket_2.54mm +PinSocket_1x03_P2.54mm_Horizontal +Through hole angled socket strip, 1x03, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x03 2.54mm single row +0 +3 +3 +Connector_PinSocket_2.54mm +PinSocket_1x03_P2.54mm_Vertical +Through hole straight socket strip, 1x03, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x03 2.54mm single row +0 +3 +3 +Connector_PinSocket_2.54mm +PinSocket_1x03_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x03, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x03 2.54mm single row style1 pin1 left +0 +3 +3 +Connector_PinSocket_2.54mm +PinSocket_1x03_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x03, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x03 2.54mm single row style2 pin1 right +0 +3 +3 +Connector_PinSocket_2.54mm +PinSocket_1x04_P2.54mm_Horizontal +Through hole angled socket strip, 1x04, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x04 2.54mm single row +0 +4 +4 +Connector_PinSocket_2.54mm +PinSocket_1x04_P2.54mm_Vertical +Through hole straight socket strip, 1x04, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x04 2.54mm single row +0 +4 +4 +Connector_PinSocket_2.54mm +PinSocket_1x04_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x04, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x04 2.54mm single row style1 pin1 left +0 +4 +4 +Connector_PinSocket_2.54mm +PinSocket_1x04_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x04, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x04 2.54mm single row style2 pin1 right +0 +4 +4 +Connector_PinSocket_2.54mm +PinSocket_1x05_P2.54mm_Horizontal +Through hole angled socket strip, 1x05, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x05 2.54mm single row +0 +5 +5 +Connector_PinSocket_2.54mm +PinSocket_1x05_P2.54mm_Vertical +Through hole straight socket strip, 1x05, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x05 2.54mm single row +0 +5 +5 +Connector_PinSocket_2.54mm +PinSocket_1x05_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x05, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x05 2.54mm single row style1 pin1 left +0 +5 +5 +Connector_PinSocket_2.54mm +PinSocket_1x05_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x05, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x05 2.54mm single row style2 pin1 right +0 +5 +5 +Connector_PinSocket_2.54mm +PinSocket_1x06_P2.54mm_Horizontal +Through hole angled socket strip, 1x06, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x06 2.54mm single row +0 +6 +6 +Connector_PinSocket_2.54mm +PinSocket_1x06_P2.54mm_Vertical +Through hole straight socket strip, 1x06, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x06 2.54mm single row +0 +6 +6 +Connector_PinSocket_2.54mm +PinSocket_1x06_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x06, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x06 2.54mm single row style1 pin1 left +0 +6 +6 +Connector_PinSocket_2.54mm +PinSocket_1x06_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x06, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x06 2.54mm single row style2 pin1 right +0 +6 +6 +Connector_PinSocket_2.54mm +PinSocket_1x07_P2.54mm_Horizontal +Through hole angled socket strip, 1x07, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x07 2.54mm single row +0 +7 +7 +Connector_PinSocket_2.54mm +PinSocket_1x07_P2.54mm_Vertical +Through hole straight socket strip, 1x07, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x07 2.54mm single row +0 +7 +7 +Connector_PinSocket_2.54mm +PinSocket_1x07_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x07, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x07 2.54mm single row style1 pin1 left +0 +7 +7 +Connector_PinSocket_2.54mm +PinSocket_1x07_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x07, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x07 2.54mm single row style2 pin1 right +0 +7 +7 +Connector_PinSocket_2.54mm +PinSocket_1x08_P2.54mm_Horizontal +Through hole angled socket strip, 1x08, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x08 2.54mm single row +0 +8 +8 +Connector_PinSocket_2.54mm +PinSocket_1x08_P2.54mm_Vertical +Through hole straight socket strip, 1x08, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x08 2.54mm single row +0 +8 +8 +Connector_PinSocket_2.54mm +PinSocket_1x08_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x08, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x08 2.54mm single row style1 pin1 left +0 +8 +8 +Connector_PinSocket_2.54mm +PinSocket_1x08_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x08, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x08 2.54mm single row style2 pin1 right +0 +8 +8 +Connector_PinSocket_2.54mm +PinSocket_1x09_P2.54mm_Horizontal +Through hole angled socket strip, 1x09, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x09 2.54mm single row +0 +9 +9 +Connector_PinSocket_2.54mm +PinSocket_1x09_P2.54mm_Vertical +Through hole straight socket strip, 1x09, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x09 2.54mm single row +0 +9 +9 +Connector_PinSocket_2.54mm +PinSocket_1x09_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x09, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x09 2.54mm single row style1 pin1 left +0 +9 +9 +Connector_PinSocket_2.54mm +PinSocket_1x09_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x09, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x09 2.54mm single row style2 pin1 right +0 +9 +9 +Connector_PinSocket_2.54mm +PinSocket_1x10_P2.54mm_Horizontal +Through hole angled socket strip, 1x10, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x10 2.54mm single row +0 +10 +10 +Connector_PinSocket_2.54mm +PinSocket_1x10_P2.54mm_Vertical +Through hole straight socket strip, 1x10, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x10 2.54mm single row +0 +10 +10 +Connector_PinSocket_2.54mm +PinSocket_1x10_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x10, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x10 2.54mm single row style1 pin1 left +0 +10 +10 +Connector_PinSocket_2.54mm +PinSocket_1x10_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x10, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x10 2.54mm single row style2 pin1 right +0 +10 +10 +Connector_PinSocket_2.54mm +PinSocket_1x11_P2.54mm_Horizontal +Through hole angled socket strip, 1x11, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x11 2.54mm single row +0 +11 +11 +Connector_PinSocket_2.54mm +PinSocket_1x11_P2.54mm_Vertical +Through hole straight socket strip, 1x11, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x11 2.54mm single row +0 +11 +11 +Connector_PinSocket_2.54mm +PinSocket_1x11_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x11, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x11 2.54mm single row style1 pin1 left +0 +11 +11 +Connector_PinSocket_2.54mm +PinSocket_1x11_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x11, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x11 2.54mm single row style2 pin1 right +0 +11 +11 +Connector_PinSocket_2.54mm +PinSocket_1x12_P2.54mm_Horizontal +Through hole angled socket strip, 1x12, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x12 2.54mm single row +0 +12 +12 +Connector_PinSocket_2.54mm +PinSocket_1x12_P2.54mm_Vertical +Through hole straight socket strip, 1x12, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x12 2.54mm single row +0 +12 +12 +Connector_PinSocket_2.54mm +PinSocket_1x12_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x12, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x12 2.54mm single row style1 pin1 left +0 +12 +12 +Connector_PinSocket_2.54mm +PinSocket_1x12_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x12, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x12 2.54mm single row style2 pin1 right +0 +12 +12 +Connector_PinSocket_2.54mm +PinSocket_1x13_P2.54mm_Horizontal +Through hole angled socket strip, 1x13, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x13 2.54mm single row +0 +13 +13 +Connector_PinSocket_2.54mm +PinSocket_1x13_P2.54mm_Vertical +Through hole straight socket strip, 1x13, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x13 2.54mm single row +0 +13 +13 +Connector_PinSocket_2.54mm +PinSocket_1x13_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x13, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x13 2.54mm single row style1 pin1 left +0 +13 +13 +Connector_PinSocket_2.54mm +PinSocket_1x13_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x13, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x13 2.54mm single row style2 pin1 right +0 +13 +13 +Connector_PinSocket_2.54mm +PinSocket_1x14_P2.54mm_Horizontal +Through hole angled socket strip, 1x14, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x14 2.54mm single row +0 +14 +14 +Connector_PinSocket_2.54mm +PinSocket_1x14_P2.54mm_Vertical +Through hole straight socket strip, 1x14, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x14 2.54mm single row +0 +14 +14 +Connector_PinSocket_2.54mm +PinSocket_1x14_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x14, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x14 2.54mm single row style1 pin1 left +0 +14 +14 +Connector_PinSocket_2.54mm +PinSocket_1x14_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x14, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x14 2.54mm single row style2 pin1 right +0 +14 +14 +Connector_PinSocket_2.54mm +PinSocket_1x15_P2.54mm_Horizontal +Through hole angled socket strip, 1x15, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x15 2.54mm single row +0 +15 +15 +Connector_PinSocket_2.54mm +PinSocket_1x15_P2.54mm_Vertical +Through hole straight socket strip, 1x15, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x15 2.54mm single row +0 +15 +15 +Connector_PinSocket_2.54mm +PinSocket_1x15_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x15, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x15 2.54mm single row style1 pin1 left +0 +15 +15 +Connector_PinSocket_2.54mm +PinSocket_1x15_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x15, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x15 2.54mm single row style2 pin1 right +0 +15 +15 +Connector_PinSocket_2.54mm +PinSocket_1x16_P2.54mm_Horizontal +Through hole angled socket strip, 1x16, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x16 2.54mm single row +0 +16 +16 +Connector_PinSocket_2.54mm +PinSocket_1x16_P2.54mm_Vertical +Through hole straight socket strip, 1x16, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x16 2.54mm single row +0 +16 +16 +Connector_PinSocket_2.54mm +PinSocket_1x16_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x16, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x16 2.54mm single row style1 pin1 left +0 +16 +16 +Connector_PinSocket_2.54mm +PinSocket_1x16_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x16, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x16 2.54mm single row style2 pin1 right +0 +16 +16 +Connector_PinSocket_2.54mm +PinSocket_1x17_P2.54mm_Horizontal +Through hole angled socket strip, 1x17, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x17 2.54mm single row +0 +17 +17 +Connector_PinSocket_2.54mm +PinSocket_1x17_P2.54mm_Vertical +Through hole straight socket strip, 1x17, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x17 2.54mm single row +0 +17 +17 +Connector_PinSocket_2.54mm +PinSocket_1x17_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x17, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x17 2.54mm single row style1 pin1 left +0 +17 +17 +Connector_PinSocket_2.54mm +PinSocket_1x17_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x17, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x17 2.54mm single row style2 pin1 right +0 +17 +17 +Connector_PinSocket_2.54mm +PinSocket_1x18_P2.54mm_Horizontal +Through hole angled socket strip, 1x18, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x18 2.54mm single row +0 +18 +18 +Connector_PinSocket_2.54mm +PinSocket_1x18_P2.54mm_Vertical +Through hole straight socket strip, 1x18, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x18 2.54mm single row +0 +18 +18 +Connector_PinSocket_2.54mm +PinSocket_1x18_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x18, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x18 2.54mm single row style1 pin1 left +0 +18 +18 +Connector_PinSocket_2.54mm +PinSocket_1x18_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x18, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x18 2.54mm single row style2 pin1 right +0 +18 +18 +Connector_PinSocket_2.54mm +PinSocket_1x19_P2.54mm_Horizontal +Through hole angled socket strip, 1x19, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x19 2.54mm single row +0 +19 +19 +Connector_PinSocket_2.54mm +PinSocket_1x19_P2.54mm_Vertical +Through hole straight socket strip, 1x19, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x19 2.54mm single row +0 +19 +19 +Connector_PinSocket_2.54mm +PinSocket_1x19_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x19, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x19 2.54mm single row style1 pin1 left +0 +19 +19 +Connector_PinSocket_2.54mm +PinSocket_1x19_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x19, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x19 2.54mm single row style2 pin1 right +0 +19 +19 +Connector_PinSocket_2.54mm +PinSocket_1x20_P2.54mm_Horizontal +Through hole angled socket strip, 1x20, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x20 2.54mm single row +0 +20 +20 +Connector_PinSocket_2.54mm +PinSocket_1x20_P2.54mm_Vertical +Through hole straight socket strip, 1x20, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x20 2.54mm single row +0 +20 +20 +Connector_PinSocket_2.54mm +PinSocket_1x20_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x20, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x20 2.54mm single row style1 pin1 left +0 +20 +20 +Connector_PinSocket_2.54mm +PinSocket_1x20_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x20, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x20 2.54mm single row style2 pin1 right +0 +20 +20 +Connector_PinSocket_2.54mm +PinSocket_1x21_P2.54mm_Horizontal +Through hole angled socket strip, 1x21, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x21 2.54mm single row +0 +21 +21 +Connector_PinSocket_2.54mm +PinSocket_1x21_P2.54mm_Vertical +Through hole straight socket strip, 1x21, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x21 2.54mm single row +0 +21 +21 +Connector_PinSocket_2.54mm +PinSocket_1x21_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x21, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x21 2.54mm single row style1 pin1 left +0 +21 +21 +Connector_PinSocket_2.54mm +PinSocket_1x21_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x21, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x21 2.54mm single row style2 pin1 right +0 +21 +21 +Connector_PinSocket_2.54mm +PinSocket_1x22_P2.54mm_Horizontal +Through hole angled socket strip, 1x22, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x22 2.54mm single row +0 +22 +22 +Connector_PinSocket_2.54mm +PinSocket_1x22_P2.54mm_Vertical +Through hole straight socket strip, 1x22, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x22 2.54mm single row +0 +22 +22 +Connector_PinSocket_2.54mm +PinSocket_1x22_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x22, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x22 2.54mm single row style1 pin1 left +0 +22 +22 +Connector_PinSocket_2.54mm +PinSocket_1x22_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x22, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x22 2.54mm single row style2 pin1 right +0 +22 +22 +Connector_PinSocket_2.54mm +PinSocket_1x23_P2.54mm_Horizontal +Through hole angled socket strip, 1x23, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x23 2.54mm single row +0 +23 +23 +Connector_PinSocket_2.54mm +PinSocket_1x23_P2.54mm_Vertical +Through hole straight socket strip, 1x23, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x23 2.54mm single row +0 +23 +23 +Connector_PinSocket_2.54mm +PinSocket_1x23_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x23, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x23 2.54mm single row style1 pin1 left +0 +23 +23 +Connector_PinSocket_2.54mm +PinSocket_1x23_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x23, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x23 2.54mm single row style2 pin1 right +0 +23 +23 +Connector_PinSocket_2.54mm +PinSocket_1x24_P2.54mm_Horizontal +Through hole angled socket strip, 1x24, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x24 2.54mm single row +0 +24 +24 +Connector_PinSocket_2.54mm +PinSocket_1x24_P2.54mm_Vertical +Through hole straight socket strip, 1x24, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x24 2.54mm single row +0 +24 +24 +Connector_PinSocket_2.54mm +PinSocket_1x24_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x24, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x24 2.54mm single row style1 pin1 left +0 +24 +24 +Connector_PinSocket_2.54mm +PinSocket_1x24_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x24, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x24 2.54mm single row style2 pin1 right +0 +24 +24 +Connector_PinSocket_2.54mm +PinSocket_1x25_P2.54mm_Horizontal +Through hole angled socket strip, 1x25, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x25 2.54mm single row +0 +25 +25 +Connector_PinSocket_2.54mm +PinSocket_1x25_P2.54mm_Vertical +Through hole straight socket strip, 1x25, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x25 2.54mm single row +0 +25 +25 +Connector_PinSocket_2.54mm +PinSocket_1x25_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x25, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x25 2.54mm single row style1 pin1 left +0 +25 +25 +Connector_PinSocket_2.54mm +PinSocket_1x25_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x25, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x25 2.54mm single row style2 pin1 right +0 +25 +25 +Connector_PinSocket_2.54mm +PinSocket_1x26_P2.54mm_Horizontal +Through hole angled socket strip, 1x26, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x26 2.54mm single row +0 +26 +26 +Connector_PinSocket_2.54mm +PinSocket_1x26_P2.54mm_Vertical +Through hole straight socket strip, 1x26, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x26 2.54mm single row +0 +26 +26 +Connector_PinSocket_2.54mm +PinSocket_1x26_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x26, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x26 2.54mm single row style1 pin1 left +0 +26 +26 +Connector_PinSocket_2.54mm +PinSocket_1x26_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x26, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x26 2.54mm single row style2 pin1 right +0 +26 +26 +Connector_PinSocket_2.54mm +PinSocket_1x27_P2.54mm_Horizontal +Through hole angled socket strip, 1x27, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x27 2.54mm single row +0 +27 +27 +Connector_PinSocket_2.54mm +PinSocket_1x27_P2.54mm_Vertical +Through hole straight socket strip, 1x27, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x27 2.54mm single row +0 +27 +27 +Connector_PinSocket_2.54mm +PinSocket_1x27_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x27, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x27 2.54mm single row style1 pin1 left +0 +27 +27 +Connector_PinSocket_2.54mm +PinSocket_1x27_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x27, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x27 2.54mm single row style2 pin1 right +0 +27 +27 +Connector_PinSocket_2.54mm +PinSocket_1x28_P2.54mm_Horizontal +Through hole angled socket strip, 1x28, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x28 2.54mm single row +0 +28 +28 +Connector_PinSocket_2.54mm +PinSocket_1x28_P2.54mm_Vertical +Through hole straight socket strip, 1x28, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x28 2.54mm single row +0 +28 +28 +Connector_PinSocket_2.54mm +PinSocket_1x28_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x28, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x28 2.54mm single row style1 pin1 left +0 +28 +28 +Connector_PinSocket_2.54mm +PinSocket_1x28_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x28, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x28 2.54mm single row style2 pin1 right +0 +28 +28 +Connector_PinSocket_2.54mm +PinSocket_1x29_P2.54mm_Horizontal +Through hole angled socket strip, 1x29, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x29 2.54mm single row +0 +29 +29 +Connector_PinSocket_2.54mm +PinSocket_1x29_P2.54mm_Vertical +Through hole straight socket strip, 1x29, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x29 2.54mm single row +0 +29 +29 +Connector_PinSocket_2.54mm +PinSocket_1x29_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x29, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x29 2.54mm single row style1 pin1 left +0 +29 +29 +Connector_PinSocket_2.54mm +PinSocket_1x29_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x29, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x29 2.54mm single row style2 pin1 right +0 +29 +29 +Connector_PinSocket_2.54mm +PinSocket_1x30_P2.54mm_Horizontal +Through hole angled socket strip, 1x30, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x30 2.54mm single row +0 +30 +30 +Connector_PinSocket_2.54mm +PinSocket_1x30_P2.54mm_Vertical +Through hole straight socket strip, 1x30, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x30 2.54mm single row +0 +30 +30 +Connector_PinSocket_2.54mm +PinSocket_1x30_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x30, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x30 2.54mm single row style1 pin1 left +0 +30 +30 +Connector_PinSocket_2.54mm +PinSocket_1x30_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x30, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x30 2.54mm single row style2 pin1 right +0 +30 +30 +Connector_PinSocket_2.54mm +PinSocket_1x31_P2.54mm_Horizontal +Through hole angled socket strip, 1x31, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x31 2.54mm single row +0 +31 +31 +Connector_PinSocket_2.54mm +PinSocket_1x31_P2.54mm_Vertical +Through hole straight socket strip, 1x31, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x31 2.54mm single row +0 +31 +31 +Connector_PinSocket_2.54mm +PinSocket_1x31_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x31, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x31 2.54mm single row style1 pin1 left +0 +31 +31 +Connector_PinSocket_2.54mm +PinSocket_1x31_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x31, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x31 2.54mm single row style2 pin1 right +0 +31 +31 +Connector_PinSocket_2.54mm +PinSocket_1x32_P2.54mm_Horizontal +Through hole angled socket strip, 1x32, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x32 2.54mm single row +0 +32 +32 +Connector_PinSocket_2.54mm +PinSocket_1x32_P2.54mm_Vertical +Through hole straight socket strip, 1x32, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x32 2.54mm single row +0 +32 +32 +Connector_PinSocket_2.54mm +PinSocket_1x32_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x32, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x32 2.54mm single row style1 pin1 left +0 +32 +32 +Connector_PinSocket_2.54mm +PinSocket_1x32_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x32, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x32 2.54mm single row style2 pin1 right +0 +32 +32 +Connector_PinSocket_2.54mm +PinSocket_1x33_P2.54mm_Horizontal +Through hole angled socket strip, 1x33, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x33 2.54mm single row +0 +33 +33 +Connector_PinSocket_2.54mm +PinSocket_1x33_P2.54mm_Vertical +Through hole straight socket strip, 1x33, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x33 2.54mm single row +0 +33 +33 +Connector_PinSocket_2.54mm +PinSocket_1x33_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x33, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x33 2.54mm single row style1 pin1 left +0 +33 +33 +Connector_PinSocket_2.54mm +PinSocket_1x33_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x33, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x33 2.54mm single row style2 pin1 right +0 +33 +33 +Connector_PinSocket_2.54mm +PinSocket_1x34_P2.54mm_Horizontal +Through hole angled socket strip, 1x34, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x34 2.54mm single row +0 +34 +34 +Connector_PinSocket_2.54mm +PinSocket_1x34_P2.54mm_Vertical +Through hole straight socket strip, 1x34, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x34 2.54mm single row +0 +34 +34 +Connector_PinSocket_2.54mm +PinSocket_1x34_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x34, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x34 2.54mm single row style1 pin1 left +0 +34 +34 +Connector_PinSocket_2.54mm +PinSocket_1x34_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x34, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x34 2.54mm single row style2 pin1 right +0 +34 +34 +Connector_PinSocket_2.54mm +PinSocket_1x35_P2.54mm_Horizontal +Through hole angled socket strip, 1x35, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x35 2.54mm single row +0 +35 +35 +Connector_PinSocket_2.54mm +PinSocket_1x35_P2.54mm_Vertical +Through hole straight socket strip, 1x35, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x35 2.54mm single row +0 +35 +35 +Connector_PinSocket_2.54mm +PinSocket_1x35_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x35, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x35 2.54mm single row style1 pin1 left +0 +35 +35 +Connector_PinSocket_2.54mm +PinSocket_1x35_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x35, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x35 2.54mm single row style2 pin1 right +0 +35 +35 +Connector_PinSocket_2.54mm +PinSocket_1x36_P2.54mm_Horizontal +Through hole angled socket strip, 1x36, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x36 2.54mm single row +0 +36 +36 +Connector_PinSocket_2.54mm +PinSocket_1x36_P2.54mm_Vertical +Through hole straight socket strip, 1x36, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x36 2.54mm single row +0 +36 +36 +Connector_PinSocket_2.54mm +PinSocket_1x36_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x36, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x36 2.54mm single row style1 pin1 left +0 +36 +36 +Connector_PinSocket_2.54mm +PinSocket_1x36_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x36, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x36 2.54mm single row style2 pin1 right +0 +36 +36 +Connector_PinSocket_2.54mm +PinSocket_1x37_P2.54mm_Horizontal +Through hole angled socket strip, 1x37, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x37 2.54mm single row +0 +37 +37 +Connector_PinSocket_2.54mm +PinSocket_1x37_P2.54mm_Vertical +Through hole straight socket strip, 1x37, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x37 2.54mm single row +0 +37 +37 +Connector_PinSocket_2.54mm +PinSocket_1x37_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x37, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x37 2.54mm single row style1 pin1 left +0 +37 +37 +Connector_PinSocket_2.54mm +PinSocket_1x37_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x37, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x37 2.54mm single row style2 pin1 right +0 +37 +37 +Connector_PinSocket_2.54mm +PinSocket_1x38_P2.54mm_Horizontal +Through hole angled socket strip, 1x38, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x38 2.54mm single row +0 +38 +38 +Connector_PinSocket_2.54mm +PinSocket_1x38_P2.54mm_Vertical +Through hole straight socket strip, 1x38, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x38 2.54mm single row +0 +38 +38 +Connector_PinSocket_2.54mm +PinSocket_1x38_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x38, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x38 2.54mm single row style1 pin1 left +0 +38 +38 +Connector_PinSocket_2.54mm +PinSocket_1x38_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x38, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x38 2.54mm single row style2 pin1 right +0 +38 +38 +Connector_PinSocket_2.54mm +PinSocket_1x39_P2.54mm_Horizontal +Through hole angled socket strip, 1x39, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x39 2.54mm single row +0 +39 +39 +Connector_PinSocket_2.54mm +PinSocket_1x39_P2.54mm_Vertical +Through hole straight socket strip, 1x39, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x39 2.54mm single row +0 +39 +39 +Connector_PinSocket_2.54mm +PinSocket_1x39_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x39, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x39 2.54mm single row style1 pin1 left +0 +39 +39 +Connector_PinSocket_2.54mm +PinSocket_1x39_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x39, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x39 2.54mm single row style2 pin1 right +0 +39 +39 +Connector_PinSocket_2.54mm +PinSocket_1x40_P2.54mm_Horizontal +Through hole angled socket strip, 1x40, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x40 2.54mm single row +0 +40 +40 +Connector_PinSocket_2.54mm +PinSocket_1x40_P2.54mm_Vertical +Through hole straight socket strip, 1x40, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x40 2.54mm single row +0 +40 +40 +Connector_PinSocket_2.54mm +PinSocket_1x40_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x40, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x40 2.54mm single row style1 pin1 left +0 +40 +40 +Connector_PinSocket_2.54mm +PinSocket_1x40_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x40, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x40 2.54mm single row style2 pin1 right +0 +40 +40 +Connector_PinSocket_2.54mm +PinSocket_2x01_P2.54mm_Horizontal +Through hole angled socket strip, 2x01, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x01 2.54mm double row +0 +2 +2 +Connector_PinSocket_2.54mm +PinSocket_2x01_P2.54mm_Vertical +Through hole straight socket strip, 2x01, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x01 2.54mm double row +0 +2 +2 +Connector_PinSocket_2.54mm +PinSocket_2x01_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x01, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x01 2.54mm double row +0 +2 +2 +Connector_PinSocket_2.54mm +PinSocket_2x02_P2.54mm_Horizontal +Through hole angled socket strip, 2x02, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x02 2.54mm double row +0 +4 +4 +Connector_PinSocket_2.54mm +PinSocket_2x02_P2.54mm_Vertical +Through hole straight socket strip, 2x02, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x02 2.54mm double row +0 +4 +4 +Connector_PinSocket_2.54mm +PinSocket_2x02_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x02, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x02 2.54mm double row +0 +4 +4 +Connector_PinSocket_2.54mm +PinSocket_2x03_P2.54mm_Horizontal +Through hole angled socket strip, 2x03, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x03 2.54mm double row +0 +6 +6 +Connector_PinSocket_2.54mm +PinSocket_2x03_P2.54mm_Vertical +Through hole straight socket strip, 2x03, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x03 2.54mm double row +0 +6 +6 +Connector_PinSocket_2.54mm +PinSocket_2x03_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x03, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x03 2.54mm double row +0 +6 +6 +Connector_PinSocket_2.54mm +PinSocket_2x04_P2.54mm_Horizontal +Through hole angled socket strip, 2x04, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x04 2.54mm double row +0 +8 +8 +Connector_PinSocket_2.54mm +PinSocket_2x04_P2.54mm_Vertical +Through hole straight socket strip, 2x04, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x04 2.54mm double row +0 +8 +8 +Connector_PinSocket_2.54mm +PinSocket_2x04_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x04, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x04 2.54mm double row +0 +8 +8 +Connector_PinSocket_2.54mm +PinSocket_2x05_P2.54mm_Horizontal +Through hole angled socket strip, 2x05, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x05 2.54mm double row +0 +10 +10 +Connector_PinSocket_2.54mm +PinSocket_2x05_P2.54mm_Vertical +Through hole straight socket strip, 2x05, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x05 2.54mm double row +0 +10 +10 +Connector_PinSocket_2.54mm +PinSocket_2x05_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x05, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x05 2.54mm double row +0 +10 +10 +Connector_PinSocket_2.54mm +PinSocket_2x06_P2.54mm_Horizontal +Through hole angled socket strip, 2x06, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x06 2.54mm double row +0 +12 +12 +Connector_PinSocket_2.54mm +PinSocket_2x06_P2.54mm_Vertical +Through hole straight socket strip, 2x06, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x06 2.54mm double row +0 +12 +12 +Connector_PinSocket_2.54mm +PinSocket_2x06_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x06, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x06 2.54mm double row +0 +12 +12 +Connector_PinSocket_2.54mm +PinSocket_2x07_P2.54mm_Horizontal +Through hole angled socket strip, 2x07, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x07 2.54mm double row +0 +14 +14 +Connector_PinSocket_2.54mm +PinSocket_2x07_P2.54mm_Vertical +Through hole straight socket strip, 2x07, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x07 2.54mm double row +0 +14 +14 +Connector_PinSocket_2.54mm +PinSocket_2x07_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x07, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x07 2.54mm double row +0 +14 +14 +Connector_PinSocket_2.54mm +PinSocket_2x08_P2.54mm_Horizontal +Through hole angled socket strip, 2x08, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x08 2.54mm double row +0 +16 +16 +Connector_PinSocket_2.54mm +PinSocket_2x08_P2.54mm_Vertical +Through hole straight socket strip, 2x08, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x08 2.54mm double row +0 +16 +16 +Connector_PinSocket_2.54mm +PinSocket_2x08_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x08, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x08 2.54mm double row +0 +16 +16 +Connector_PinSocket_2.54mm +PinSocket_2x09_P2.54mm_Horizontal +Through hole angled socket strip, 2x09, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x09 2.54mm double row +0 +18 +18 +Connector_PinSocket_2.54mm +PinSocket_2x09_P2.54mm_Vertical +Through hole straight socket strip, 2x09, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x09 2.54mm double row +0 +18 +18 +Connector_PinSocket_2.54mm +PinSocket_2x09_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x09, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x09 2.54mm double row +0 +18 +18 +Connector_PinSocket_2.54mm +PinSocket_2x10_P2.54mm_Horizontal +Through hole angled socket strip, 2x10, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x10 2.54mm double row +0 +20 +20 +Connector_PinSocket_2.54mm +PinSocket_2x10_P2.54mm_Vertical +Through hole straight socket strip, 2x10, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x10 2.54mm double row +0 +20 +20 +Connector_PinSocket_2.54mm +PinSocket_2x10_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x10, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x10 2.54mm double row +0 +20 +20 +Connector_PinSocket_2.54mm +PinSocket_2x11_P2.54mm_Horizontal +Through hole angled socket strip, 2x11, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x11 2.54mm double row +0 +22 +22 +Connector_PinSocket_2.54mm +PinSocket_2x11_P2.54mm_Vertical +Through hole straight socket strip, 2x11, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x11 2.54mm double row +0 +22 +22 +Connector_PinSocket_2.54mm +PinSocket_2x11_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x11, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x11 2.54mm double row +0 +22 +22 +Connector_PinSocket_2.54mm +PinSocket_2x12_P2.54mm_Horizontal +Through hole angled socket strip, 2x12, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x12 2.54mm double row +0 +24 +24 +Connector_PinSocket_2.54mm +PinSocket_2x12_P2.54mm_Vertical +Through hole straight socket strip, 2x12, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x12 2.54mm double row +0 +24 +24 +Connector_PinSocket_2.54mm +PinSocket_2x12_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x12, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x12 2.54mm double row +0 +24 +24 +Connector_PinSocket_2.54mm +PinSocket_2x13_P2.54mm_Horizontal +Through hole angled socket strip, 2x13, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x13 2.54mm double row +0 +26 +26 +Connector_PinSocket_2.54mm +PinSocket_2x13_P2.54mm_Vertical +Through hole straight socket strip, 2x13, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x13 2.54mm double row +0 +26 +26 +Connector_PinSocket_2.54mm +PinSocket_2x13_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x13, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x13 2.54mm double row +0 +26 +26 +Connector_PinSocket_2.54mm +PinSocket_2x14_P2.54mm_Horizontal +Through hole angled socket strip, 2x14, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x14 2.54mm double row +0 +28 +28 +Connector_PinSocket_2.54mm +PinSocket_2x14_P2.54mm_Vertical +Through hole straight socket strip, 2x14, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x14 2.54mm double row +0 +28 +28 +Connector_PinSocket_2.54mm +PinSocket_2x14_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x14, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x14 2.54mm double row +0 +28 +28 +Connector_PinSocket_2.54mm +PinSocket_2x15_P2.54mm_Horizontal +Through hole angled socket strip, 2x15, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x15 2.54mm double row +0 +30 +30 +Connector_PinSocket_2.54mm +PinSocket_2x15_P2.54mm_Vertical +Through hole straight socket strip, 2x15, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x15 2.54mm double row +0 +30 +30 +Connector_PinSocket_2.54mm +PinSocket_2x15_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x15, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x15 2.54mm double row +0 +30 +30 +Connector_PinSocket_2.54mm +PinSocket_2x16_P2.54mm_Horizontal +Through hole angled socket strip, 2x16, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x16 2.54mm double row +0 +32 +32 +Connector_PinSocket_2.54mm +PinSocket_2x16_P2.54mm_Vertical +Through hole straight socket strip, 2x16, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x16 2.54mm double row +0 +32 +32 +Connector_PinSocket_2.54mm +PinSocket_2x16_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x16, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x16 2.54mm double row +0 +32 +32 +Connector_PinSocket_2.54mm +PinSocket_2x17_P2.54mm_Horizontal +Through hole angled socket strip, 2x17, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x17 2.54mm double row +0 +34 +34 +Connector_PinSocket_2.54mm +PinSocket_2x17_P2.54mm_Vertical +Through hole straight socket strip, 2x17, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x17 2.54mm double row +0 +34 +34 +Connector_PinSocket_2.54mm +PinSocket_2x17_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x17, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x17 2.54mm double row +0 +34 +34 +Connector_PinSocket_2.54mm +PinSocket_2x18_P2.54mm_Horizontal +Through hole angled socket strip, 2x18, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x18 2.54mm double row +0 +36 +36 +Connector_PinSocket_2.54mm +PinSocket_2x18_P2.54mm_Vertical +Through hole straight socket strip, 2x18, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x18 2.54mm double row +0 +36 +36 +Connector_PinSocket_2.54mm +PinSocket_2x18_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x18, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x18 2.54mm double row +0 +36 +36 +Connector_PinSocket_2.54mm +PinSocket_2x19_P2.54mm_Horizontal +Through hole angled socket strip, 2x19, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x19 2.54mm double row +0 +38 +38 +Connector_PinSocket_2.54mm +PinSocket_2x19_P2.54mm_Vertical +Through hole straight socket strip, 2x19, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x19 2.54mm double row +0 +38 +38 +Connector_PinSocket_2.54mm +PinSocket_2x19_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x19, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x19 2.54mm double row +0 +38 +38 +Connector_PinSocket_2.54mm +PinSocket_2x20_P2.54mm_Horizontal +Through hole angled socket strip, 2x20, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x20 2.54mm double row +0 +40 +40 +Connector_PinSocket_2.54mm +PinSocket_2x20_P2.54mm_Vertical +Through hole straight socket strip, 2x20, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x20 2.54mm double row +0 +40 +40 +Connector_PinSocket_2.54mm +PinSocket_2x20_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x20, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x20 2.54mm double row +0 +40 +40 +Connector_PinSocket_2.54mm +PinSocket_2x21_P2.54mm_Horizontal +Through hole angled socket strip, 2x21, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x21 2.54mm double row +0 +42 +42 +Connector_PinSocket_2.54mm +PinSocket_2x21_P2.54mm_Vertical +Through hole straight socket strip, 2x21, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x21 2.54mm double row +0 +42 +42 +Connector_PinSocket_2.54mm +PinSocket_2x21_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x21, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x21 2.54mm double row +0 +42 +42 +Connector_PinSocket_2.54mm +PinSocket_2x22_P2.54mm_Horizontal +Through hole angled socket strip, 2x22, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x22 2.54mm double row +0 +44 +44 +Connector_PinSocket_2.54mm +PinSocket_2x22_P2.54mm_Vertical +Through hole straight socket strip, 2x22, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x22 2.54mm double row +0 +44 +44 +Connector_PinSocket_2.54mm +PinSocket_2x22_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x22, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x22 2.54mm double row +0 +44 +44 +Connector_PinSocket_2.54mm +PinSocket_2x23_P2.54mm_Horizontal +Through hole angled socket strip, 2x23, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x23 2.54mm double row +0 +46 +46 +Connector_PinSocket_2.54mm +PinSocket_2x23_P2.54mm_Vertical +Through hole straight socket strip, 2x23, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x23 2.54mm double row +0 +46 +46 +Connector_PinSocket_2.54mm +PinSocket_2x23_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x23, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x23 2.54mm double row +0 +46 +46 +Connector_PinSocket_2.54mm +PinSocket_2x24_P2.54mm_Horizontal +Through hole angled socket strip, 2x24, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x24 2.54mm double row +0 +48 +48 +Connector_PinSocket_2.54mm +PinSocket_2x24_P2.54mm_Vertical +Through hole straight socket strip, 2x24, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x24 2.54mm double row +0 +48 +48 +Connector_PinSocket_2.54mm +PinSocket_2x24_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x24, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x24 2.54mm double row +0 +48 +48 +Connector_PinSocket_2.54mm +PinSocket_2x25_P2.54mm_Horizontal +Through hole angled socket strip, 2x25, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x25 2.54mm double row +0 +50 +50 +Connector_PinSocket_2.54mm +PinSocket_2x25_P2.54mm_Vertical +Through hole straight socket strip, 2x25, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x25 2.54mm double row +0 +50 +50 +Connector_PinSocket_2.54mm +PinSocket_2x25_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x25, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x25 2.54mm double row +0 +50 +50 +Connector_PinSocket_2.54mm +PinSocket_2x26_P2.54mm_Horizontal +Through hole angled socket strip, 2x26, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x26 2.54mm double row +0 +52 +52 +Connector_PinSocket_2.54mm +PinSocket_2x26_P2.54mm_Vertical +Through hole straight socket strip, 2x26, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x26 2.54mm double row +0 +52 +52 +Connector_PinSocket_2.54mm +PinSocket_2x26_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x26, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x26 2.54mm double row +0 +52 +52 +Connector_PinSocket_2.54mm +PinSocket_2x27_P2.54mm_Horizontal +Through hole angled socket strip, 2x27, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x27 2.54mm double row +0 +54 +54 +Connector_PinSocket_2.54mm +PinSocket_2x27_P2.54mm_Vertical +Through hole straight socket strip, 2x27, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x27 2.54mm double row +0 +54 +54 +Connector_PinSocket_2.54mm +PinSocket_2x27_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x27, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x27 2.54mm double row +0 +54 +54 +Connector_PinSocket_2.54mm +PinSocket_2x28_P2.54mm_Horizontal +Through hole angled socket strip, 2x28, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x28 2.54mm double row +0 +56 +56 +Connector_PinSocket_2.54mm +PinSocket_2x28_P2.54mm_Vertical +Through hole straight socket strip, 2x28, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x28 2.54mm double row +0 +56 +56 +Connector_PinSocket_2.54mm +PinSocket_2x28_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x28, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x28 2.54mm double row +0 +56 +56 +Connector_PinSocket_2.54mm +PinSocket_2x29_P2.54mm_Horizontal +Through hole angled socket strip, 2x29, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x29 2.54mm double row +0 +58 +58 +Connector_PinSocket_2.54mm +PinSocket_2x29_P2.54mm_Vertical +Through hole straight socket strip, 2x29, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x29 2.54mm double row +0 +58 +58 +Connector_PinSocket_2.54mm +PinSocket_2x29_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x29, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x29 2.54mm double row +0 +58 +58 +Connector_PinSocket_2.54mm +PinSocket_2x30_P2.54mm_Horizontal +Through hole angled socket strip, 2x30, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x30 2.54mm double row +0 +60 +60 +Connector_PinSocket_2.54mm +PinSocket_2x30_P2.54mm_Vertical +Through hole straight socket strip, 2x30, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x30 2.54mm double row +0 +60 +60 +Connector_PinSocket_2.54mm +PinSocket_2x30_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x30, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x30 2.54mm double row +0 +60 +60 +Connector_PinSocket_2.54mm +PinSocket_2x31_P2.54mm_Horizontal +Through hole angled socket strip, 2x31, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x31 2.54mm double row +0 +62 +62 +Connector_PinSocket_2.54mm +PinSocket_2x31_P2.54mm_Vertical +Through hole straight socket strip, 2x31, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x31 2.54mm double row +0 +62 +62 +Connector_PinSocket_2.54mm +PinSocket_2x31_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x31, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x31 2.54mm double row +0 +62 +62 +Connector_PinSocket_2.54mm +PinSocket_2x32_P2.54mm_Horizontal +Through hole angled socket strip, 2x32, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x32 2.54mm double row +0 +64 +64 +Connector_PinSocket_2.54mm +PinSocket_2x32_P2.54mm_Vertical +Through hole straight socket strip, 2x32, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x32 2.54mm double row +0 +64 +64 +Connector_PinSocket_2.54mm +PinSocket_2x32_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x32, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x32 2.54mm double row +0 +64 +64 +Connector_PinSocket_2.54mm +PinSocket_2x33_P2.54mm_Horizontal +Through hole angled socket strip, 2x33, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x33 2.54mm double row +0 +66 +66 +Connector_PinSocket_2.54mm +PinSocket_2x33_P2.54mm_Vertical +Through hole straight socket strip, 2x33, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x33 2.54mm double row +0 +66 +66 +Connector_PinSocket_2.54mm +PinSocket_2x33_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x33, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x33 2.54mm double row +0 +66 +66 +Connector_PinSocket_2.54mm +PinSocket_2x34_P2.54mm_Horizontal +Through hole angled socket strip, 2x34, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x34 2.54mm double row +0 +68 +68 +Connector_PinSocket_2.54mm +PinSocket_2x34_P2.54mm_Vertical +Through hole straight socket strip, 2x34, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x34 2.54mm double row +0 +68 +68 +Connector_PinSocket_2.54mm +PinSocket_2x34_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x34, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x34 2.54mm double row +0 +68 +68 +Connector_PinSocket_2.54mm +PinSocket_2x35_P2.54mm_Horizontal +Through hole angled socket strip, 2x35, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x35 2.54mm double row +0 +70 +70 +Connector_PinSocket_2.54mm +PinSocket_2x35_P2.54mm_Vertical +Through hole straight socket strip, 2x35, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x35 2.54mm double row +0 +70 +70 +Connector_PinSocket_2.54mm +PinSocket_2x35_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x35, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x35 2.54mm double row +0 +70 +70 +Connector_PinSocket_2.54mm +PinSocket_2x36_P2.54mm_Horizontal +Through hole angled socket strip, 2x36, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x36 2.54mm double row +0 +72 +72 +Connector_PinSocket_2.54mm +PinSocket_2x36_P2.54mm_Vertical +Through hole straight socket strip, 2x36, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x36 2.54mm double row +0 +72 +72 +Connector_PinSocket_2.54mm +PinSocket_2x36_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x36, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x36 2.54mm double row +0 +72 +72 +Connector_PinSocket_2.54mm +PinSocket_2x37_P2.54mm_Horizontal +Through hole angled socket strip, 2x37, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x37 2.54mm double row +0 +74 +74 +Connector_PinSocket_2.54mm +PinSocket_2x37_P2.54mm_Vertical +Through hole straight socket strip, 2x37, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x37 2.54mm double row +0 +74 +74 +Connector_PinSocket_2.54mm +PinSocket_2x37_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x37, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x37 2.54mm double row +0 +74 +74 +Connector_PinSocket_2.54mm +PinSocket_2x38_P2.54mm_Horizontal +Through hole angled socket strip, 2x38, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x38 2.54mm double row +0 +76 +76 +Connector_PinSocket_2.54mm +PinSocket_2x38_P2.54mm_Vertical +Through hole straight socket strip, 2x38, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x38 2.54mm double row +0 +76 +76 +Connector_PinSocket_2.54mm +PinSocket_2x38_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x38, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x38 2.54mm double row +0 +76 +76 +Connector_PinSocket_2.54mm +PinSocket_2x39_P2.54mm_Horizontal +Through hole angled socket strip, 2x39, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x39 2.54mm double row +0 +78 +78 +Connector_PinSocket_2.54mm +PinSocket_2x39_P2.54mm_Vertical +Through hole straight socket strip, 2x39, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x39 2.54mm double row +0 +78 +78 +Connector_PinSocket_2.54mm +PinSocket_2x39_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x39, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x39 2.54mm double row +0 +78 +78 +Connector_PinSocket_2.54mm +PinSocket_2x40_P2.54mm_Horizontal +Through hole angled socket strip, 2x40, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x40 2.54mm double row +0 +80 +80 +Connector_PinSocket_2.54mm +PinSocket_2x40_P2.54mm_Vertical +Through hole straight socket strip, 2x40, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x40 2.54mm double row +0 +80 +80 +Connector_PinSocket_2.54mm +PinSocket_2x40_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x40, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x40 2.54mm double row +0 +80 +80 +Connector_RJ +RJ9_Evercom_5301-440xxx_Horizontal +Evercom 5301-4P4C RJ9 receptacle, unshielded, https://datasheet.lcsc.com/lcsc/2207051802_EVERCOM-5301-4P4C_C3097715.pdf +RJ9 Connector tab down +0 +4 +4 +Connector_RJ +RJ12_Amphenol_54601-x06_Horizontal +RJ12 6P6C horizontal socket, plastic body, tab down, 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_RJHSE538X-04 +Shielded, LEDs, 4 Ports, https://cdn.amphenol-cs.com/media/wysiwyg/files/drawing/rjhse538x04.pdf +RJ45 8p8c quad ethernet cat5 +0 +52 +49 +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.amphenol-cs.com/media/wysiwyg/files/drawing/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_Bel_V895-1001-AW_Vertical +1 Port RJ45 Magjack Vertical Connector SMD 10/100 Base-T, https://www.belfuse.com/resources/drawings/magneticsolutions/dr-mag-v895-1001-aw.pdf +RJ45 Magjack +0 +14 +11 +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_Connfly_DS1128-09-S8xx-S_Horizontal +1 Port RJ45 8p8c receptacle, shielded, through hole, 2 LEDs, tab up, http://en.connfly.group/static/upload/file//DS1128-09.pdf +RJ45 8p8c ethernet +0 +14 +13 +Connector_RJ +RJ45_HALO_HFJ11-x2450E-LxxRL_Horizontal +Halo FastJack, Shielded, 2 LEDs, https://www.haloelectronics.com/pdf/fastjack-100baset.pdf +10/100 Ethernet RJ45 Tab-Down +0 +14 +13 +Connector_RJ +RJ45_HALO_HFJ11-x2450ERL_Horizontal +Halo FastJack, Shielded, https://www.haloelectronics.com/pdf/fastjack-100baset.pdf +10/100 Ethernet RJ45 Tab-Down +0 +9 +8 +Connector_RJ +RJ45_HALO_HFJ11-x2450HRL_Horizontal +Halo FastJack, Shielded, https://www.haloelectronics.com/pdf/fastjack-100baset.pdf +10/100 Ethernet RJ45 Tab-Down +0 +10 +9 +Connector_RJ +RJ45_Hanrun_HR911105A_Horizontal +1 Port RJ45 8P8C receptacle, shielded, with magnetics, through hole, 2 LEDs, tab down, http://www.hanrun.com/public/upload/down/2020/09-11/cc11be56d66bb63d5f1eeb85492439c0.pdf +RJ45 Magjack ethernet +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_9346520x_Horizontal +1 Port RJ45 Magjack Connector Through Hole 10/100 Base-T, two LED, tab up +RJ45 Magjack +0 +14 +13 +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_RCH_RC01937 +1 port ethernet throughhole connector, https://www.lcsc.com/datasheet/lcsc_datasheet_2411121142_RCH-RC01937_C708652.pdf +RJ45 ethernet 8p8c shielded +0 +10 +9 +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_7499010211A_Horizontal +RJ45 connector, horizontal, tab down, 10/100Base-TX, with magnetics, green/yellow LEDs, https://katalog.we-online.de/pbs/datasheet/7499010211A.pdf +RJ45 ethernet magnetic magjack transformer +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 +Samtec 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 vertical +0 +10 +10 +Connector_Samtec +Samtec_LSHM-105-xx.x-x-DV-S_2x05-1SH_P0.50mm_Vertical +Samtec 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 vertical +0 +12 +11 +Connector_Samtec +Samtec_LSHM-110-xx.x-x-DV-N_2x10_P0.50mm_Vertical +Samtec 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 vertical +0 +20 +20 +Connector_Samtec +Samtec_LSHM-110-xx.x-x-DV-S_2x10-1SH_P0.50mm_Vertical +Samtec 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 vertical +0 +22 +21 +Connector_Samtec +Samtec_LSHM-120-xx.x-x-DV-N_2x20_P0.50mm_Vertical +Samtec 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 vertical +0 +40 +40 +Connector_Samtec +Samtec_LSHM-120-xx.x-x-DV-S_2x20-1SH_P0.50mm_Vertical +Samtec 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 vertical +0 +42 +41 +Connector_Samtec +Samtec_LSHM-130-xx.x-x-DV-N_2x30_P0.50mm_Vertical +Samtec 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 vertical +0 +60 +60 +Connector_Samtec +Samtec_LSHM-130-xx.x-x-DV-S_2x30-1SH_P0.50mm_Vertical +Samtec 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 vertical +0 +62 +61 +Connector_Samtec +Samtec_LSHM-140-xx.x-x-DV-N_2x40_P0.50mm_Vertical +Samtec 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 vertical +0 +80 +80 +Connector_Samtec +Samtec_LSHM-140-xx.x-x-DV-S_2x40-1SH_P0.50mm_Vertical +Samtec 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 vertical +0 +82 +81 +Connector_Samtec +Samtec_LSHM-150-xx.x-x-DV-N_2x50_P0.50mm_Vertical +Samtec 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 vertical +0 +100 +100 +Connector_Samtec +Samtec_LSHM-150-xx.x-x-DV-S_2x50-1SH_P0.50mm_Vertical +Samtec 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 vertical +0 +102 +101 +Connector_Samtec +Samtec_SS4-10-3.00-x-D-K-xR_2x10_P0.4mm_Socket +Micro Blade & Beam Ultra Fine Pitch Socket, 0.40 mm pitch, 02x10 ways, 3.00 lead style (source: https://suddendocs.samtec.com/prints/ss4-xx-x.xx-x-d-x-xx-tr-footprint.pdf) +conn samtec board-to-board socket high-speed +0 +20 +20 +Connector_Samtec +Samtec_SS4-10-3.50-x-D-K-xR_2x10_P0.4mm_Socket +Micro Blade & Beam Ultra Fine Pitch Socket, 0.40 mm pitch, 02x10 ways, 3.50 lead style (source: https://suddendocs.samtec.com/prints/ss4-xx-x.xx-x-d-x-xx-tr-footprint.pdf) +conn samtec board-to-board socket high-speed +0 +20 +20 +Connector_Samtec +Samtec_SS4-15-3.00-x-D-K-xR_2x15_P0.4mm_Socket +Micro Blade & Beam Ultra Fine Pitch Socket, 0.40 mm pitch, 02x15 ways, 3.00 lead style (source: https://suddendocs.samtec.com/prints/ss4-xx-x.xx-x-d-x-xx-tr-footprint.pdf) +conn samtec board-to-board socket high-speed +0 +30 +30 +Connector_Samtec +Samtec_SS4-15-3.50-x-D-K-xR_2x15_P0.4mm_Socket +Micro Blade & Beam Ultra Fine Pitch Socket, 0.40 mm pitch, 02x15 ways, 3.50 lead style (source: https://suddendocs.samtec.com/prints/ss4-xx-x.xx-x-d-x-xx-tr-footprint.pdf) +conn samtec board-to-board socket high-speed +0 +30 +30 +Connector_Samtec +Samtec_SS4-20-3.00-x-D-K-xR_2x20_P0.4mm_Socket +Micro Blade & Beam Ultra Fine Pitch Socket, 0.40 mm pitch, 02x20 ways, 3.00 lead style (source: https://suddendocs.samtec.com/prints/ss4-xx-x.xx-x-d-x-xx-tr-footprint.pdf) +conn samtec board-to-board socket high-speed +0 +40 +40 +Connector_Samtec +Samtec_SS4-20-3.50-x-D-K-xR_2x20_P0.4mm_Socket +Micro Blade & Beam Ultra Fine Pitch Socket, 0.40 mm pitch, 02x20 ways, 3.50 lead style (source: https://suddendocs.samtec.com/prints/ss4-xx-x.xx-x-d-x-xx-tr-footprint.pdf) +conn samtec board-to-board socket high-speed +0 +40 +40 +Connector_Samtec +Samtec_SS4-30-3.00-x-D-K-xR_2x30_P0.4mm_Socket +Micro Blade & Beam Ultra Fine Pitch Socket, 0.40 mm pitch, 02x30 ways, 3.00 lead style (source: https://suddendocs.samtec.com/prints/ss4-xx-x.xx-x-d-x-xx-tr-footprint.pdf) +conn samtec board-to-board socket high-speed +0 +60 +60 +Connector_Samtec +Samtec_SS4-30-3.50-x-D-K-xR_2x30_P0.4mm_Socket +Micro Blade & Beam Ultra Fine Pitch Socket, 0.40 mm pitch, 02x30 ways, 3.50 lead style (source: https://suddendocs.samtec.com/prints/ss4-xx-x.xx-x-d-x-xx-tr-footprint.pdf) +conn samtec board-to-board socket high-speed +0 +60 +60 +Connector_Samtec +Samtec_SS4-40-3.00-x-D-K-xR_2x40_P0.4mm_Socket +Micro Blade & Beam Ultra Fine Pitch Socket, 0.40 mm pitch, 02x40 ways, 3.00 lead style (source: https://suddendocs.samtec.com/prints/ss4-xx-x.xx-x-d-x-xx-tr-footprint.pdf) +conn samtec board-to-board socket high-speed +0 +80 +80 +Connector_Samtec +Samtec_SS4-40-3.50-x-D-K-xR_2x40_P0.4mm_Socket +Micro Blade & Beam Ultra Fine Pitch Socket, 0.40 mm pitch, 02x40 ways, 3.50 lead style (source: https://suddendocs.samtec.com/prints/ss4-xx-x.xx-x-d-x-xx-tr-footprint.pdf) +conn samtec board-to-board socket high-speed +0 +80 +80 +Connector_Samtec +Samtec_SS4-50-3.00-x-D-K-xR_2x50_P0.4mm_Socket +Micro Blade & Beam Ultra Fine Pitch Socket, 0.40 mm pitch, 02x50 ways, 3.00 lead style (source: https://suddendocs.samtec.com/prints/ss4-xx-x.xx-x-d-x-xx-tr-footprint.pdf) +conn samtec board-to-board socket high-speed +0 +100 +100 +Connector_Samtec +Samtec_SS4-50-3.50-x-D-K-xR_2x50_P0.4mm_Socket +Micro Blade & Beam Ultra Fine Pitch Socket, 0.40 mm pitch, 02x50 ways, 3.50 lead style (source: https://suddendocs.samtec.com/prints/ss4-xx-x.xx-x-d-x-xx-tr-footprint.pdf) +conn samtec board-to-board socket high-speed +0 +100 +100 +Connector_Samtec_FSI +Samtec_FSI-105-03-X-D-AD_2x05_P1.0mm_Socket_AlignmentPin +Samtec FSI One-Piece Interface, 1.00 mm Pitch, Double Row, Alignment Pin (source: https://suddendocs.samtec.com/prints/fsi-1xx-03-x-d-x-xx-xx-footprint.pdf) +conn samtec one piece interface +0 +10 +10 +Connector_Samtec_FSI +Samtec_FSI-105-03-X-D_2x05_P1.0mm_Socket +Samtec FSI One-Piece Interface, 1.00 mm Pitch, Double Row (source: https://suddendocs.samtec.com/prints/fsi-1xx-03-x-d-x-xx-xx-footprint.pdf) +conn samtec one piece interface +0 +10 +10 +Connector_Samtec_FSI +Samtec_FSI-105-XX-X-D-AD_2x05_P1.0mm_Mate_AlignmentPin +Samtec FSI One-Piece Interface, 1.00 mm Pitch, Double Row, Alignment Pin, PCB Mate (source: https://suddendocs.samtec.com/prints/fsi-mating%20board.pdf) +conn samtec one piece interface +0 +10 +10 +Connector_Samtec_FSI +Samtec_FSI-105-XX-X-D-AD_2x05_P1.0mm_Socket_AlignmentPin +Samtec FSI One-Piece Interface, 1.00 mm Pitch, Double Row, Alignment Pin (source: https://suddendocs.samtec.com/prints/fsi-1xx-xx-xxx-d-x-xx-xx-footprint.pdf) +conn samtec one piece interface +0 +10 +10 +Connector_Samtec_FSI +Samtec_FSI-105-XX-X-D_2x05_P1.0mm_Mate +Samtec FSI One-Piece Interface, 1.00 mm Pitch, Double Row, PCB Mate (source: https://suddendocs.samtec.com/prints/fsi-mating%20board.pdf) +conn samtec one piece interface +0 +10 +10 +Connector_Samtec_FSI +Samtec_FSI-105-XX-X-D_2x05_P1.0mm_Socket +Samtec FSI One-Piece Interface, 1.00 mm Pitch, Double Row (source: https://suddendocs.samtec.com/prints/fsi-1xx-xx-xxx-d-x-xx-xx-footprint.pdf) +conn samtec one piece interface +0 +10 +10 +Connector_Samtec_FSI +Samtec_FSI-110-03-X-D-AD_2x10_P1.0mm_Socket_AlignmentPin +Samtec FSI One-Piece Interface, 1.00 mm Pitch, Double Row, Alignment Pin (source: https://suddendocs.samtec.com/prints/fsi-1xx-03-x-d-x-xx-xx-footprint.pdf) +conn samtec one piece interface +0 +20 +20 +Connector_Samtec_FSI +Samtec_FSI-110-03-X-D-M-AD_2x10_P1.0mm_Socket_Threaded_AlignmentPin +Samtec FSI One-Piece Interface, 1.00 mm Pitch, Double Row, Threaded, Alignment Pin (source: https://suddendocs.samtec.com/prints/fsi-1xx-03-x-d-x-xx-xx-footprint.pdf) +conn samtec one piece interface +0 +20 +20 +Connector_Samtec_FSI +Samtec_FSI-110-03-X-D-M_2x10_P1.0mm_Socket_Threaded +Samtec FSI One-Piece Interface, 1.00 mm Pitch, Double Row, Threaded (source: https://suddendocs.samtec.com/prints/fsi-1xx-03-x-d-x-xx-xx-footprint.pdf) +conn samtec one piece interface +0 +20 +20 +Connector_Samtec_FSI +Samtec_FSI-110-03-X-D_2x10_P1.0mm_Socket +Samtec FSI One-Piece Interface, 1.00 mm Pitch, Double Row (source: https://suddendocs.samtec.com/prints/fsi-1xx-03-x-d-x-xx-xx-footprint.pdf) +conn samtec one piece interface +0 +20 +20 +Connector_Samtec_FSI +Samtec_FSI-110-XX-X-D-AD_2x10_P1.0mm_Mate_AlignmentPin +Samtec FSI One-Piece Interface, 1.00 mm Pitch, Double Row, Alignment Pin, PCB Mate (source: https://suddendocs.samtec.com/prints/fsi-mating%20board.pdf) +conn samtec one piece interface +0 +20 +20 +Connector_Samtec_FSI +Samtec_FSI-110-XX-X-D-AD_2x10_P1.0mm_Socket_AlignmentPin +Samtec FSI One-Piece Interface, 1.00 mm Pitch, Double Row, Alignment Pin (source: https://suddendocs.samtec.com/prints/fsi-1xx-xx-xxx-d-x-xx-xx-footprint.pdf) +conn samtec one piece interface +0 +20 +20 +Connector_Samtec_FSI +Samtec_FSI-110-XX-X-D-M-AD_2x10_P1.0mm_Mate_Threaded_AlignmentPin +Samtec FSI One-Piece Interface, 1.00 mm Pitch, Double Row, PCB Mate, Threaded, Alignment Pin (source: https://suddendocs.samtec.com/prints/fsi-mating%20board.pdf) +conn samtec one piece interface +0 +20 +20 +Connector_Samtec_FSI +Samtec_FSI-110-XX-X-D-M-AD_2x10_P1.0mm_Socket_Threaded_AlignmentPin +Samtec FSI One-Piece Interface, 1.00 mm Pitch, Double Row, Threaded, Alignment Pin (source: https://suddendocs.samtec.com/prints/fsi-1xx-xx-xxx-d-x-xx-xx-footprint.pdf) +conn samtec one piece interface +0 +20 +20 +Connector_Samtec_FSI +Samtec_FSI-110-XX-X-D-M_2x10_P1.0mm_Mate_Threaded +Samtec FSI One-Piece Interface, 1.00 mm Pitch, Double Row, PCB Mate, Threaded (source: https://suddendocs.samtec.com/prints/fsi-mating%20board.pdf) +conn samtec one piece interface +0 +20 +20 +Connector_Samtec_FSI +Samtec_FSI-110-XX-X-D-M_2x10_P1.0mm_Socket_Threaded +Samtec FSI One-Piece Interface, 1.00 mm Pitch, Double Row, Threaded (source: https://suddendocs.samtec.com/prints/fsi-1xx-xx-xxx-d-x-xx-xx-footprint.pdf) +conn samtec one piece interface +0 +20 +20 +Connector_Samtec_FSI +Samtec_FSI-110-XX-X-D_2x10_P1.0mm_Mate +Samtec FSI One-Piece Interface, 1.00 mm Pitch, Double Row, PCB Mate (source: https://suddendocs.samtec.com/prints/fsi-mating%20board.pdf) +conn samtec one piece interface +0 +20 +20 +Connector_Samtec_FSI +Samtec_FSI-110-XX-X-D_2x10_P1.0mm_Socket +Samtec FSI One-Piece Interface, 1.00 mm Pitch, Double Row (source: https://suddendocs.samtec.com/prints/fsi-1xx-xx-xxx-d-x-xx-xx-footprint.pdf) +conn samtec one piece interface +0 +20 +20 +Connector_Samtec_FSI +Samtec_FSI-115-03-X-D-AD_2x15_P1.0mm_Socket_AlignmentPin +Samtec FSI One-Piece Interface, 1.00 mm Pitch, Double Row, Alignment Pin (source: https://suddendocs.samtec.com/prints/fsi-1xx-03-x-d-x-xx-xx-footprint.pdf) +conn samtec one piece interface +0 +30 +30 +Connector_Samtec_FSI +Samtec_FSI-115-03-X-D_2x15_P1.0mm_Socket +Samtec FSI One-Piece Interface, 1.00 mm Pitch, Double Row (source: https://suddendocs.samtec.com/prints/fsi-1xx-03-x-d-x-xx-xx-footprint.pdf) +conn samtec one piece interface +0 +30 +30 +Connector_Samtec_FSI +Samtec_FSI-115-XX-X-D-AD_2x15_P1.0mm_Mate_AlignmentPin +Samtec FSI One-Piece Interface, 1.00 mm Pitch, Double Row, Alignment Pin, PCB Mate (source: https://suddendocs.samtec.com/prints/fsi-mating%20board.pdf) +conn samtec one piece interface +0 +30 +30 +Connector_Samtec_FSI +Samtec_FSI-115-XX-X-D-AD_2x15_P1.0mm_Socket_AlignmentPin +Samtec FSI One-Piece Interface, 1.00 mm Pitch, Double Row, Alignment Pin (source: https://suddendocs.samtec.com/prints/fsi-1xx-xx-xxx-d-x-xx-xx-footprint.pdf) +conn samtec one piece interface +0 +30 +30 +Connector_Samtec_FSI +Samtec_FSI-115-XX-X-D_2x15_P1.0mm_Mate +Samtec FSI One-Piece Interface, 1.00 mm Pitch, Double Row, PCB Mate (source: https://suddendocs.samtec.com/prints/fsi-mating%20board.pdf) +conn samtec one piece interface +0 +30 +30 +Connector_Samtec_FSI +Samtec_FSI-115-XX-X-D_2x15_P1.0mm_Socket +Samtec FSI One-Piece Interface, 1.00 mm Pitch, Double Row (source: https://suddendocs.samtec.com/prints/fsi-1xx-xx-xxx-d-x-xx-xx-footprint.pdf) +conn samtec one piece interface +0 +30 +30 +Connector_Samtec_FSI +Samtec_FSI-120-03-X-D-AD_2x20_P1.0mm_Socket_AlignmentPin +Samtec FSI One-Piece Interface, 1.00 mm Pitch, Double Row, Alignment Pin (source: https://suddendocs.samtec.com/prints/fsi-1xx-03-x-d-x-xx-xx-footprint.pdf) +conn samtec one piece interface +0 +40 +40 +Connector_Samtec_FSI +Samtec_FSI-120-03-X-D-M-AD_2x20_P1.0mm_Socket_Threaded_AlignmentPin +Samtec FSI One-Piece Interface, 1.00 mm Pitch, Double Row, Threaded, Alignment Pin (source: https://suddendocs.samtec.com/prints/fsi-1xx-03-x-d-x-xx-xx-footprint.pdf) +conn samtec one piece interface +0 +40 +40 +Connector_Samtec_FSI +Samtec_FSI-120-03-X-D-M_2x20_P1.0mm_Socket_Threaded +Samtec FSI One-Piece Interface, 1.00 mm Pitch, Double Row, Threaded (source: https://suddendocs.samtec.com/prints/fsi-1xx-03-x-d-x-xx-xx-footprint.pdf) +conn samtec one piece interface +0 +40 +40 +Connector_Samtec_FSI +Samtec_FSI-120-03-X-D_2x20_P1.0mm_Socket +Samtec FSI One-Piece Interface, 1.00 mm Pitch, Double Row (source: https://suddendocs.samtec.com/prints/fsi-1xx-03-x-d-x-xx-xx-footprint.pdf) +conn samtec one piece interface +0 +40 +40 +Connector_Samtec_FSI +Samtec_FSI-120-XX-X-D-AD_2x20_P1.0mm_Mate_AlignmentPin +Samtec FSI One-Piece Interface, 1.00 mm Pitch, Double Row, Alignment Pin, PCB Mate (source: https://suddendocs.samtec.com/prints/fsi-mating%20board.pdf) +conn samtec one piece interface +0 +40 +40 +Connector_Samtec_FSI +Samtec_FSI-120-XX-X-D-AD_2x20_P1.0mm_Socket_AlignmentPin +Samtec FSI One-Piece Interface, 1.00 mm Pitch, Double Row, Alignment Pin (source: https://suddendocs.samtec.com/prints/fsi-1xx-xx-xxx-d-x-xx-xx-footprint.pdf) +conn samtec one piece interface +0 +40 +40 +Connector_Samtec_FSI +Samtec_FSI-120-XX-X-D-M-AD_2x20_P1.0mm_Mate_Threaded_AlignmentPin +Samtec FSI One-Piece Interface, 1.00 mm Pitch, Double Row, PCB Mate, Threaded, Alignment Pin (source: https://suddendocs.samtec.com/prints/fsi-mating%20board.pdf) +conn samtec one piece interface +0 +40 +40 +Connector_Samtec_FSI +Samtec_FSI-120-XX-X-D-M-AD_2x20_P1.0mm_Socket_Threaded_AlignmentPin +Samtec FSI One-Piece Interface, 1.00 mm Pitch, Double Row, Threaded, Alignment Pin (source: https://suddendocs.samtec.com/prints/fsi-1xx-xx-xxx-d-x-xx-xx-footprint.pdf) +conn samtec one piece interface +0 +40 +40 +Connector_Samtec_FSI +Samtec_FSI-120-XX-X-D-M_2x20_P1.0mm_Mate_Threaded +Samtec FSI One-Piece Interface, 1.00 mm Pitch, Double Row, PCB Mate, Threaded (source: https://suddendocs.samtec.com/prints/fsi-mating%20board.pdf) +conn samtec one piece interface +0 +40 +40 +Connector_Samtec_FSI +Samtec_FSI-120-XX-X-D-M_2x20_P1.0mm_Socket_Threaded +Samtec FSI One-Piece Interface, 1.00 mm Pitch, Double Row, Threaded (source: https://suddendocs.samtec.com/prints/fsi-1xx-xx-xxx-d-x-xx-xx-footprint.pdf) +conn samtec one piece interface +0 +40 +40 +Connector_Samtec_FSI +Samtec_FSI-120-XX-X-D_2x20_P1.0mm_Mate +Samtec FSI One-Piece Interface, 1.00 mm Pitch, Double Row, PCB Mate (source: https://suddendocs.samtec.com/prints/fsi-mating%20board.pdf) +conn samtec one piece interface +0 +40 +40 +Connector_Samtec_FSI +Samtec_FSI-120-XX-X-D_2x20_P1.0mm_Socket +Samtec FSI One-Piece Interface, 1.00 mm Pitch, Double Row (source: https://suddendocs.samtec.com/prints/fsi-1xx-xx-xxx-d-x-xx-xx-footprint.pdf) +conn samtec one piece interface +0 +40 +40 +Connector_Samtec_FSI +Samtec_FSI-125-03-X-D-AD_2x25_P1.0mm_Socket_AlignmentPin +Samtec FSI One-Piece Interface, 1.00 mm Pitch, Double Row, Alignment Pin (source: https://suddendocs.samtec.com/prints/fsi-1xx-03-x-d-x-xx-xx-footprint.pdf) +conn samtec one piece interface +0 +50 +50 +Connector_Samtec_FSI +Samtec_FSI-125-03-X-D_2x25_P1.0mm_Socket +Samtec FSI One-Piece Interface, 1.00 mm Pitch, Double Row (source: https://suddendocs.samtec.com/prints/fsi-1xx-03-x-d-x-xx-xx-footprint.pdf) +conn samtec one piece interface +0 +50 +50 +Connector_Samtec_FSI +Samtec_FSI-125-XX-X-D-AD_2x25_P1.0mm_Mate_AlignmentPin +Samtec FSI One-Piece Interface, 1.00 mm Pitch, Double Row, Alignment Pin, PCB Mate (source: https://suddendocs.samtec.com/prints/fsi-mating%20board.pdf) +conn samtec one piece interface +0 +50 +50 +Connector_Samtec_FSI +Samtec_FSI-125-XX-X-D-AD_2x25_P1.0mm_Socket_AlignmentPin +Samtec FSI One-Piece Interface, 1.00 mm Pitch, Double Row, Alignment Pin (source: https://suddendocs.samtec.com/prints/fsi-1xx-xx-xxx-d-x-xx-xx-footprint.pdf) +conn samtec one piece interface +0 +50 +50 +Connector_Samtec_FSI +Samtec_FSI-125-XX-X-D_2x25_P1.0mm_Mate +Samtec FSI One-Piece Interface, 1.00 mm Pitch, Double Row, PCB Mate (source: https://suddendocs.samtec.com/prints/fsi-mating%20board.pdf) +conn samtec one piece interface +0 +50 +50 +Connector_Samtec_FSI +Samtec_FSI-125-XX-X-D_2x25_P1.0mm_Socket +Samtec FSI One-Piece Interface, 1.00 mm Pitch, Double Row (source: https://suddendocs.samtec.com/prints/fsi-1xx-xx-xxx-d-x-xx-xx-footprint.pdf) +conn samtec one piece interface +0 +50 +50 +Connector_Samtec_FSI +Samtec_FSI-130-03-X-D-AD_2x30_P1.0mm_Socket_AlignmentPin +Samtec FSI One-Piece Interface, 1.00 mm Pitch, Double Row, Alignment Pin (source: https://suddendocs.samtec.com/prints/fsi-1xx-03-x-d-x-xx-xx-footprint.pdf) +conn samtec one piece interface +0 +60 +60 +Connector_Samtec_FSI +Samtec_FSI-130-03-X-D-M-AD_2x30_P1.0mm_Socket_Threaded_AlignmentPin +Samtec FSI One-Piece Interface, 1.00 mm Pitch, Double Row, Threaded, Alignment Pin (source: https://suddendocs.samtec.com/prints/fsi-1xx-03-x-d-x-xx-xx-footprint.pdf) +conn samtec one piece interface +0 +60 +60 +Connector_Samtec_FSI +Samtec_FSI-130-03-X-D-M_2x30_P1.0mm_Socket_Threaded +Samtec FSI One-Piece Interface, 1.00 mm Pitch, Double Row, Threaded (source: https://suddendocs.samtec.com/prints/fsi-1xx-03-x-d-x-xx-xx-footprint.pdf) +conn samtec one piece interface +0 +60 +60 +Connector_Samtec_FSI +Samtec_FSI-130-03-X-D_2x30_P1.0mm_Socket +Samtec FSI One-Piece Interface, 1.00 mm Pitch, Double Row (source: https://suddendocs.samtec.com/prints/fsi-1xx-03-x-d-x-xx-xx-footprint.pdf) +conn samtec one piece interface +0 +60 +60 +Connector_Samtec_FSI +Samtec_FSI-130-XX-X-D-AD_2x30_P1.0mm_Mate_AlignmentPin +Samtec FSI One-Piece Interface, 1.00 mm Pitch, Double Row, Alignment Pin, PCB Mate (source: https://suddendocs.samtec.com/prints/fsi-mating%20board.pdf) +conn samtec one piece interface +0 +60 +60 +Connector_Samtec_FSI +Samtec_FSI-130-XX-X-D-AD_2x30_P1.0mm_Socket_AlignmentPin +Samtec FSI One-Piece Interface, 1.00 mm Pitch, Double Row, Alignment Pin (source: https://suddendocs.samtec.com/prints/fsi-1xx-xx-xxx-d-x-xx-xx-footprint.pdf) +conn samtec one piece interface +0 +60 +60 +Connector_Samtec_FSI +Samtec_FSI-130-XX-X-D-M-AD_2x30_P1.0mm_Mate_Threaded_AlignmentPin +Samtec FSI One-Piece Interface, 1.00 mm Pitch, Double Row, PCB Mate, Threaded, Alignment Pin (source: https://suddendocs.samtec.com/prints/fsi-mating%20board.pdf) +conn samtec one piece interface +0 +60 +60 +Connector_Samtec_FSI +Samtec_FSI-130-XX-X-D-M-AD_2x30_P1.0mm_Socket_Threaded_AlignmentPin +Samtec FSI One-Piece Interface, 1.00 mm Pitch, Double Row, Threaded, Alignment Pin (source: https://suddendocs.samtec.com/prints/fsi-1xx-xx-xxx-d-x-xx-xx-footprint.pdf) +conn samtec one piece interface +0 +60 +60 +Connector_Samtec_FSI +Samtec_FSI-130-XX-X-D-M_2x30_P1.0mm_Mate_Threaded +Samtec FSI One-Piece Interface, 1.00 mm Pitch, Double Row, PCB Mate, Threaded (source: https://suddendocs.samtec.com/prints/fsi-mating%20board.pdf) +conn samtec one piece interface +0 +60 +60 +Connector_Samtec_FSI +Samtec_FSI-130-XX-X-D-M_2x30_P1.0mm_Socket_Threaded +Samtec FSI One-Piece Interface, 1.00 mm Pitch, Double Row, Threaded (source: https://suddendocs.samtec.com/prints/fsi-1xx-xx-xxx-d-x-xx-xx-footprint.pdf) +conn samtec one piece interface +0 +60 +60 +Connector_Samtec_FSI +Samtec_FSI-130-XX-X-D_2x30_P1.0mm_Mate +Samtec FSI One-Piece Interface, 1.00 mm Pitch, Double Row, PCB Mate (source: https://suddendocs.samtec.com/prints/fsi-mating%20board.pdf) +conn samtec one piece interface +0 +60 +60 +Connector_Samtec_FSI +Samtec_FSI-130-XX-X-D_2x30_P1.0mm_Socket +Samtec FSI One-Piece Interface, 1.00 mm Pitch, Double Row (source: https://suddendocs.samtec.com/prints/fsi-1xx-xx-xxx-d-x-xx-xx-footprint.pdf) +conn samtec one piece interface +0 +60 +60 +Connector_Samtec_FSI +Samtec_FSI-135-03-X-D-AD_2x35_P1.0mm_Socket_AlignmentPin +Samtec FSI One-Piece Interface, 1.00 mm Pitch, Double Row, Alignment Pin (source: https://suddendocs.samtec.com/prints/fsi-1xx-03-x-d-x-xx-xx-footprint.pdf) +conn samtec one piece interface +0 +70 +70 +Connector_Samtec_FSI +Samtec_FSI-135-03-X-D_2x35_P1.0mm_Socket +Samtec FSI One-Piece Interface, 1.00 mm Pitch, Double Row (source: https://suddendocs.samtec.com/prints/fsi-1xx-03-x-d-x-xx-xx-footprint.pdf) +conn samtec one piece interface +0 +70 +70 +Connector_Samtec_FSI +Samtec_FSI-135-XX-X-D-AD_2x35_P1.0mm_Mate_AlignmentPin +Samtec FSI One-Piece Interface, 1.00 mm Pitch, Double Row, Alignment Pin, PCB Mate (source: https://suddendocs.samtec.com/prints/fsi-mating%20board.pdf) +conn samtec one piece interface +0 +70 +70 +Connector_Samtec_FSI +Samtec_FSI-135-XX-X-D-AD_2x35_P1.0mm_Socket_AlignmentPin +Samtec FSI One-Piece Interface, 1.00 mm Pitch, Double Row, Alignment Pin (source: https://suddendocs.samtec.com/prints/fsi-1xx-xx-xxx-d-x-xx-xx-footprint.pdf) +conn samtec one piece interface +0 +70 +70 +Connector_Samtec_FSI +Samtec_FSI-135-XX-X-D_2x35_P1.0mm_Mate +Samtec FSI One-Piece Interface, 1.00 mm Pitch, Double Row, PCB Mate (source: https://suddendocs.samtec.com/prints/fsi-mating%20board.pdf) +conn samtec one piece interface +0 +70 +70 +Connector_Samtec_FSI +Samtec_FSI-135-XX-X-D_2x35_P1.0mm_Socket +Samtec FSI One-Piece Interface, 1.00 mm Pitch, Double Row (source: https://suddendocs.samtec.com/prints/fsi-1xx-xx-xxx-d-x-xx-xx-footprint.pdf) +conn samtec one piece interface +0 +70 +70 +Connector_Samtec_FSI +Samtec_FSI-140-03-X-D-AD_2x40_P1.0mm_Socket_AlignmentPin +Samtec FSI One-Piece Interface, 1.00 mm Pitch, Double Row, Alignment Pin (source: https://suddendocs.samtec.com/prints/fsi-1xx-03-x-d-x-xx-xx-footprint.pdf) +conn samtec one piece interface +0 +80 +80 +Connector_Samtec_FSI +Samtec_FSI-140-03-X-D-M-AD_2x40_P1.0mm_Pol20_Socket_Threaded_AlignmentPin +Samtec FSI One-Piece Interface, 1.00 mm Pitch, Double Row, Threaded, Alignment Pin (source: https://suddendocs.samtec.com/prints/fsi-1xx-03-x-d-x-xx-xx-footprint.pdf) +conn samtec one piece interface +0 +80 +80 +Connector_Samtec_FSI +Samtec_FSI-140-03-X-D-M_2x40_P1.0mm_Pol20_Socket_Threaded +Samtec FSI One-Piece Interface, 1.00 mm Pitch, Double Row, Threaded (source: https://suddendocs.samtec.com/prints/fsi-1xx-03-x-d-x-xx-xx-footprint.pdf) +conn samtec one piece interface +0 +80 +80 +Connector_Samtec_FSI +Samtec_FSI-140-03-X-D_2x40_P1.0mm_Socket +Samtec FSI One-Piece Interface, 1.00 mm Pitch, Double Row (source: https://suddendocs.samtec.com/prints/fsi-1xx-03-x-d-x-xx-xx-footprint.pdf) +conn samtec one piece interface +0 +80 +80 +Connector_Samtec_FSI +Samtec_FSI-140-XX-X-D-AD_2x40_P1.0mm_Mate_AlignmentPin +Samtec FSI One-Piece Interface, 1.00 mm Pitch, Double Row, Alignment Pin, PCB Mate (source: https://suddendocs.samtec.com/prints/fsi-mating%20board.pdf) +conn samtec one piece interface +0 +80 +80 +Connector_Samtec_FSI +Samtec_FSI-140-XX-X-D-AD_2x40_P1.0mm_Socket_AlignmentPin +Samtec FSI One-Piece Interface, 1.00 mm Pitch, Double Row, Alignment Pin (source: https://suddendocs.samtec.com/prints/fsi-1xx-xx-xxx-d-x-xx-xx-footprint.pdf) +conn samtec one piece interface +0 +80 +80 +Connector_Samtec_FSI +Samtec_FSI-140-XX-X-D-M-AD_2x40_P1.0mm_Pol20_Mate_Threaded_AlignmentPin +Samtec FSI One-Piece Interface, 1.00 mm Pitch, Double Row, PCB Mate, Threaded, Alignment Pin (source: https://suddendocs.samtec.com/prints/fsi-mating%20board.pdf) +conn samtec one piece interface +0 +80 +80 +Connector_Samtec_FSI +Samtec_FSI-140-XX-X-D-M-AD_2x40_P1.0mm_Pol20_Socket_Threaded_AlignmentPin +Samtec FSI One-Piece Interface, 1.00 mm Pitch, Double Row, Threaded, Alignment Pin (source: https://suddendocs.samtec.com/prints/fsi-1xx-xx-xxx-d-x-xx-xx-footprint.pdf) +conn samtec one piece interface +0 +80 +80 +Connector_Samtec_FSI +Samtec_FSI-140-XX-X-D-M_2x40_P1.0mm_Pol20_Mate_Threaded +Samtec FSI One-Piece Interface, 1.00 mm Pitch, Double Row, PCB Mate, Threaded (source: https://suddendocs.samtec.com/prints/fsi-mating%20board.pdf) +conn samtec one piece interface +0 +80 +80 +Connector_Samtec_FSI +Samtec_FSI-140-XX-X-D-M_2x40_P1.0mm_Pol20_Socket_Threaded +Samtec FSI One-Piece Interface, 1.00 mm Pitch, Double Row, Threaded (source: https://suddendocs.samtec.com/prints/fsi-1xx-xx-xxx-d-x-xx-xx-footprint.pdf) +conn samtec one piece interface +0 +80 +80 +Connector_Samtec_FSI +Samtec_FSI-140-XX-X-D_2x40_P1.0mm_Mate +Samtec FSI One-Piece Interface, 1.00 mm Pitch, Double Row, PCB Mate (source: https://suddendocs.samtec.com/prints/fsi-mating%20board.pdf) +conn samtec one piece interface +0 +80 +80 +Connector_Samtec_FSI +Samtec_FSI-140-XX-X-D_2x40_P1.0mm_Socket +Samtec FSI One-Piece Interface, 1.00 mm Pitch, Double Row (source: https://suddendocs.samtec.com/prints/fsi-1xx-xx-xxx-d-x-xx-xx-footprint.pdf) +conn samtec one piece interface +0 +80 +80 +Connector_Samtec_FSI +Samtec_FSI-145-03-X-D-AD_2x45_P1.0mm_Socket_AlignmentPin +Samtec FSI One-Piece Interface, 1.00 mm Pitch, Double Row, Alignment Pin (source: https://suddendocs.samtec.com/prints/fsi-1xx-03-x-d-x-xx-xx-footprint.pdf) +conn samtec one piece interface +0 +90 +90 +Connector_Samtec_FSI +Samtec_FSI-145-03-X-D_2x45_P1.0mm_Socket +Samtec FSI One-Piece Interface, 1.00 mm Pitch, Double Row (source: https://suddendocs.samtec.com/prints/fsi-1xx-03-x-d-x-xx-xx-footprint.pdf) +conn samtec one piece interface +0 +90 +90 +Connector_Samtec_FSI +Samtec_FSI-145-XX-X-D-AD_2x45_P1.0mm_Mate_AlignmentPin +Samtec FSI One-Piece Interface, 1.00 mm Pitch, Double Row, Alignment Pin, PCB Mate (source: https://suddendocs.samtec.com/prints/fsi-mating%20board.pdf) +conn samtec one piece interface +0 +90 +90 +Connector_Samtec_FSI +Samtec_FSI-145-XX-X-D-AD_2x45_P1.0mm_Socket_AlignmentPin +Samtec FSI One-Piece Interface, 1.00 mm Pitch, Double Row, Alignment Pin (source: https://suddendocs.samtec.com/prints/fsi-1xx-xx-xxx-d-x-xx-xx-footprint.pdf) +conn samtec one piece interface +0 +90 +90 +Connector_Samtec_FSI +Samtec_FSI-145-XX-X-D_2x45_P1.0mm_Mate +Samtec FSI One-Piece Interface, 1.00 mm Pitch, Double Row, PCB Mate (source: https://suddendocs.samtec.com/prints/fsi-mating%20board.pdf) +conn samtec one piece interface +0 +90 +90 +Connector_Samtec_FSI +Samtec_FSI-145-XX-X-D_2x45_P1.0mm_Socket +Samtec FSI One-Piece Interface, 1.00 mm Pitch, Double Row (source: https://suddendocs.samtec.com/prints/fsi-1xx-xx-xxx-d-x-xx-xx-footprint.pdf) +conn samtec one piece interface +0 +90 +90 +Connector_Samtec_FSI +Samtec_FSI-150-03-X-D-AD_2x50_P1.0mm_Socket_AlignmentPin +Samtec FSI One-Piece Interface, 1.00 mm Pitch, Double Row, Alignment Pin (source: https://suddendocs.samtec.com/prints/fsi-1xx-03-x-d-x-xx-xx-footprint.pdf) +conn samtec one piece interface +0 +100 +100 +Connector_Samtec_FSI +Samtec_FSI-150-03-X-D-M-AD_2x50_P1.0mm_Pol25_Socket_Threaded_AlignmentPin +Samtec FSI One-Piece Interface, 1.00 mm Pitch, Double Row, Threaded, Alignment Pin (source: https://suddendocs.samtec.com/prints/fsi-1xx-03-x-d-x-xx-xx-footprint.pdf) +conn samtec one piece interface +0 +100 +100 +Connector_Samtec_FSI +Samtec_FSI-150-03-X-D-M_2x50_P1.0mm_Pol25_Socket_Threaded +Samtec FSI One-Piece Interface, 1.00 mm Pitch, Double Row, Threaded (source: https://suddendocs.samtec.com/prints/fsi-1xx-03-x-d-x-xx-xx-footprint.pdf) +conn samtec one piece interface +0 +100 +100 +Connector_Samtec_FSI +Samtec_FSI-150-03-X-D_2x50_P1.0mm_Socket +Samtec FSI One-Piece Interface, 1.00 mm Pitch, Double Row (source: https://suddendocs.samtec.com/prints/fsi-1xx-03-x-d-x-xx-xx-footprint.pdf) +conn samtec one piece interface +0 +100 +100 +Connector_Samtec_FSI +Samtec_FSI-150-XX-X-D-AD_2x50_P1.0mm_Mate_AlignmentPin +Samtec FSI One-Piece Interface, 1.00 mm Pitch, Double Row, Alignment Pin, PCB Mate (source: https://suddendocs.samtec.com/prints/fsi-mating%20board.pdf) +conn samtec one piece interface +0 +100 +100 +Connector_Samtec_FSI +Samtec_FSI-150-XX-X-D-AD_2x50_P1.0mm_Socket_AlignmentPin +Samtec FSI One-Piece Interface, 1.00 mm Pitch, Double Row, Alignment Pin (source: https://suddendocs.samtec.com/prints/fsi-1xx-xx-xxx-d-x-xx-xx-footprint.pdf) +conn samtec one piece interface +0 +100 +100 +Connector_Samtec_FSI +Samtec_FSI-150-XX-X-D-M-AD_2x50_P1.0mm_Pol25_Mate_Threaded_AlignmentPin +Samtec FSI One-Piece Interface, 1.00 mm Pitch, Double Row, PCB Mate, Threaded, Alignment Pin (source: https://suddendocs.samtec.com/prints/fsi-mating%20board.pdf) +conn samtec one piece interface +0 +100 +100 +Connector_Samtec_FSI +Samtec_FSI-150-XX-X-D-M-AD_2x50_P1.0mm_Pol25_Socket_Threaded_AlignmentPin +Samtec FSI One-Piece Interface, 1.00 mm Pitch, Double Row, Threaded, Alignment Pin (source: https://suddendocs.samtec.com/prints/fsi-1xx-xx-xxx-d-x-xx-xx-footprint.pdf) +conn samtec one piece interface +0 +100 +100 +Connector_Samtec_FSI +Samtec_FSI-150-XX-X-D-M_2x50_P1.0mm_Pol25_Mate_Threaded +Samtec FSI One-Piece Interface, 1.00 mm Pitch, Double Row, PCB Mate, Threaded (source: https://suddendocs.samtec.com/prints/fsi-mating%20board.pdf) +conn samtec one piece interface +0 +100 +100 +Connector_Samtec_FSI +Samtec_FSI-150-XX-X-D-M_2x50_P1.0mm_Pol25_Socket_Threaded +Samtec FSI One-Piece Interface, 1.00 mm Pitch, Double Row, Threaded (source: https://suddendocs.samtec.com/prints/fsi-1xx-xx-xxx-d-x-xx-xx-footprint.pdf) +conn samtec one piece interface +0 +100 +100 +Connector_Samtec_FSI +Samtec_FSI-150-XX-X-D_2x50_P1.0mm_Mate +Samtec FSI One-Piece Interface, 1.00 mm Pitch, Double Row, PCB Mate (source: https://suddendocs.samtec.com/prints/fsi-mating%20board.pdf) +conn samtec one piece interface +0 +100 +100 +Connector_Samtec_FSI +Samtec_FSI-150-XX-X-D_2x50_P1.0mm_Socket +Samtec FSI One-Piece Interface, 1.00 mm Pitch, Double Row (source: https://suddendocs.samtec.com/prints/fsi-1xx-xx-xxx-d-x-xx-xx-footprint.pdf) +conn samtec one piece interface +0 +100 +100 +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +0 +100 +100 +Connector_Samtec_HPM_THT +Samtec_HPM-01-01-x-S_Straight_1x01_Pitch5.08mm +Through hole straight Samtec HPM power header series 11.94mm post length, 1x01, 5.08mm pitch, single row +Through hole Samtec HPM power header series 11.94mm post length THT 1x01 5.08mm single row +0 +1 +1 +Connector_Samtec_HPM_THT +Samtec_HPM-01-05-x-S_Straight_1x01_Pitch5.08mm +Through hole straight Samtec HPM power header series 3.81mm post length, 1x01, 5.08mm pitch, single row +Through hole Samtec HPM power header series 3.81mm post length THT 1x01 5.08mm single row +0 +1 +1 +Connector_Samtec_HPM_THT +Samtec_HPM-02-01-x-S_Straight_1x02_Pitch5.08mm +Through hole straight Samtec HPM power header series 11.94mm post length, 1x02, 5.08mm pitch, single row +Through hole Samtec HPM power header series 11.94mm post length THT 1x02 5.08mm single row +0 +2 +2 +Connector_Samtec_HPM_THT +Samtec_HPM-02-05-x-S_Straight_1x02_Pitch5.08mm +Through hole straight Samtec HPM power header series 3.81mm post length, 1x02, 5.08mm pitch, single row +Through hole Samtec HPM power header series 3.81mm post length THT 1x02 5.08mm single row +0 +2 +2 +Connector_Samtec_HPM_THT +Samtec_HPM-03-01-x-S_Straight_1x03_Pitch5.08mm +Through hole straight Samtec HPM power header series 11.94mm post length, 1x03, 5.08mm pitch, single row +Through hole Samtec HPM power header series 11.94mm post length THT 1x03 5.08mm single row +0 +3 +3 +Connector_Samtec_HPM_THT +Samtec_HPM-03-05-x-S_Straight_1x03_Pitch5.08mm +Through hole straight Samtec HPM power header series 3.81mm post length, 1x03, 5.08mm pitch, single row +Through hole Samtec HPM power header series 3.81mm post length THT 1x03 5.08mm single row +0 +3 +3 +Connector_Samtec_HPM_THT +Samtec_HPM-04-01-x-S_Straight_1x04_Pitch5.08mm +Through hole straight Samtec HPM power header series 11.94mm post length, 1x04, 5.08mm pitch, single row +Through hole Samtec HPM power header series 11.94mm post length THT 1x04 5.08mm single row +0 +4 +4 +Connector_Samtec_HPM_THT +Samtec_HPM-04-05-x-S_Straight_1x04_Pitch5.08mm +Through hole straight Samtec HPM power header series 3.81mm post length, 1x04, 5.08mm pitch, single row +Through hole Samtec HPM power header series 3.81mm post length THT 1x04 5.08mm single row +0 +4 +4 +Connector_Samtec_HPM_THT +Samtec_HPM-05-01-x-S_Straight_1x05_Pitch5.08mm +Through hole straight Samtec HPM power header series 11.94mm post length, 1x05, 5.08mm pitch, single row +Through hole Samtec HPM power header series 11.94mm post length THT 1x05 5.08mm single row +0 +5 +5 +Connector_Samtec_HPM_THT +Samtec_HPM-05-05-x-S_Straight_1x05_Pitch5.08mm +Through hole straight Samtec HPM power header series 3.81mm post length, 1x05, 5.08mm pitch, single row +Through hole Samtec HPM power header series 3.81mm post length THT 1x05 5.08mm single row +0 +5 +5 +Connector_Samtec_HPM_THT +Samtec_HPM-06-01-x-S_Straight_1x06_Pitch5.08mm +Through hole straight Samtec HPM power header series 11.94mm post length, 1x06, 5.08mm pitch, single row +Through hole Samtec HPM power header series 11.94mm post length THT 1x06 5.08mm single row +0 +6 +6 +Connector_Samtec_HPM_THT +Samtec_HPM-06-05-x-S_Straight_1x06_Pitch5.08mm +Through hole straight Samtec HPM power header series 3.81mm post length, 1x06, 5.08mm pitch, single row +Through hole Samtec HPM power header series 3.81mm post length THT 1x06 5.08mm single row +0 +6 +6 +Connector_Samtec_HPM_THT +Samtec_HPM-07-01-x-S_Straight_1x07_Pitch5.08mm +Through hole straight Samtec HPM power header series 11.94mm post length, 1x07, 5.08mm pitch, single row +Through hole Samtec HPM power header series 11.94mm post length THT 1x07 5.08mm single row +0 +7 +7 +Connector_Samtec_HPM_THT +Samtec_HPM-07-05-x-S_Straight_1x07_Pitch5.08mm +Through hole straight Samtec HPM power header series 3.81mm post length, 1x07, 5.08mm pitch, single row +Through hole Samtec HPM power header series 3.81mm post length THT 1x07 5.08mm single row +0 +7 +7 +Connector_Samtec_HPM_THT +Samtec_HPM-08-01-x-S_Straight_1x08_Pitch5.08mm +Through hole straight Samtec HPM power header series 11.94mm post length, 1x08, 5.08mm pitch, single row +Through hole Samtec HPM power header series 11.94mm post length THT 1x08 5.08mm single row +0 +8 +8 +Connector_Samtec_HPM_THT +Samtec_HPM-08-05-x-S_Straight_1x08_Pitch5.08mm +Through hole straight Samtec HPM power header series 3.81mm post length, 1x08, 5.08mm pitch, single row +Through hole Samtec HPM power header series 3.81mm post length THT 1x08 5.08mm single row +0 +8 +8 +Connector_Samtec_HPM_THT +Samtec_HPM-09-01-x-S_Straight_1x09_Pitch5.08mm +Through hole straight Samtec HPM power header series 11.94mm post length, 1x09, 5.08mm pitch, single row +Through hole Samtec HPM power header series 11.94mm post length THT 1x09 5.08mm single row +0 +9 +9 +Connector_Samtec_HPM_THT +Samtec_HPM-09-05-x-S_Straight_1x09_Pitch5.08mm +Through hole straight Samtec HPM power header series 3.81mm post length, 1x09, 5.08mm pitch, single row +Through hole Samtec HPM power header series 3.81mm post length THT 1x09 5.08mm single row +0 +9 +9 +Connector_Samtec_HPM_THT +Samtec_HPM-10-01-x-S_Straight_1x10_Pitch5.08mm +Through hole straight Samtec HPM power header series 11.94mm post length, 1x10, 5.08mm pitch, single row +Through hole Samtec HPM power header series 11.94mm post length THT 1x10 5.08mm single row +0 +10 +10 +Connector_Samtec_HPM_THT +Samtec_HPM-10-05-x-S_Straight_1x10_Pitch5.08mm +Through hole straight Samtec HPM power header series 3.81mm post length, 1x10, 5.08mm pitch, single row +Through hole Samtec HPM power header series 3.81mm post length THT 1x10 5.08mm single row +0 +10 +10 +Connector_Samtec_HPM_THT +Samtec_HPM-11-01-x-S_Straight_1x11_Pitch5.08mm +Through hole straight Samtec HPM power header series 11.94mm post length, 1x11, 5.08mm pitch, single row +Through hole Samtec HPM power header series 11.94mm post length THT 1x11 5.08mm single row +0 +11 +11 +Connector_Samtec_HPM_THT +Samtec_HPM-11-05-x-S_Straight_1x11_Pitch5.08mm +Through hole straight Samtec HPM power header series 3.81mm post length, 1x11, 5.08mm pitch, single row +Through hole Samtec HPM power header series 3.81mm post length THT 1x11 5.08mm single row +0 +11 +11 +Connector_Samtec_HPM_THT +Samtec_HPM-12-01-x-S_Straight_1x12_Pitch5.08mm +Through hole straight Samtec HPM power header series 11.94mm post length, 1x12, 5.08mm pitch, single row +Through hole Samtec HPM power header series 11.94mm post length THT 1x12 5.08mm single row +0 +12 +12 +Connector_Samtec_HPM_THT +Samtec_HPM-12-05-x-S_Straight_1x12_Pitch5.08mm +Through hole straight Samtec HPM power header series 3.81mm post length, 1x12, 5.08mm pitch, single row +Through hole Samtec HPM power header series 3.81mm post length THT 1x12 5.08mm single row +0 +12 +12 +Connector_Samtec_HPM_THT +Samtec_HPM-13-01-x-S_Straight_1x13_Pitch5.08mm +Through hole straight Samtec HPM power header series 11.94mm post length, 1x13, 5.08mm pitch, single row +Through hole Samtec HPM power header series 11.94mm post length THT 1x13 5.08mm single row +0 +13 +13 +Connector_Samtec_HPM_THT +Samtec_HPM-13-05-x-S_Straight_1x13_Pitch5.08mm +Through hole straight Samtec HPM power header series 3.81mm post length, 1x13, 5.08mm pitch, single row +Through hole Samtec HPM power header series 3.81mm post length THT 1x13 5.08mm single row +0 +13 +13 +Connector_Samtec_HPM_THT +Samtec_HPM-14-01-x-S_Straight_1x14_Pitch5.08mm +Through hole straight Samtec HPM power header series 11.94mm post length, 1x14, 5.08mm pitch, single row +Through hole Samtec HPM power header series 11.94mm post length THT 1x14 5.08mm single row +0 +14 +14 +Connector_Samtec_HPM_THT +Samtec_HPM-14-05-x-S_Straight_1x14_Pitch5.08mm +Through hole straight Samtec HPM power header series 3.81mm post length, 1x14, 5.08mm pitch, single row +Through hole Samtec HPM power header series 3.81mm post length THT 1x14 5.08mm single row +0 +14 +14 +Connector_Samtec_HPM_THT +Samtec_HPM-15-01-x-S_Straight_1x15_Pitch5.08mm +Through hole straight Samtec HPM power header series 11.94mm post length, 1x15, 5.08mm pitch, single row +Through hole Samtec HPM power header series 11.94mm post length THT 1x15 5.08mm single row +0 +15 +15 +Connector_Samtec_HPM_THT +Samtec_HPM-15-05-x-S_Straight_1x15_Pitch5.08mm +Through hole straight Samtec HPM power header series 3.81mm post length, 1x15, 5.08mm pitch, single row +Through hole Samtec HPM power header series 3.81mm post length THT 1x15 5.08mm single row +0 +15 +15 +Connector_Samtec_HPM_THT +Samtec_HPM-16-01-x-S_Straight_1x16_Pitch5.08mm +Through hole straight Samtec HPM power header series 11.94mm post length, 1x16, 5.08mm pitch, single row +Through hole Samtec HPM power header series 11.94mm post length THT 1x16 5.08mm single row +0 +16 +16 +Connector_Samtec_HPM_THT +Samtec_HPM-16-05-x-S_Straight_1x16_Pitch5.08mm +Through hole straight Samtec HPM power header series 3.81mm post length, 1x16, 5.08mm pitch, single row +Through hole Samtec HPM power header series 3.81mm post length THT 1x16 5.08mm single row +0 +16 +16 +Connector_Samtec_HPM_THT +Samtec_HPM-17-01-x-S_Straight_1x17_Pitch5.08mm +Through hole straight Samtec HPM power header series 11.94mm post length, 1x17, 5.08mm pitch, single row +Through hole Samtec HPM power header series 11.94mm post length THT 1x17 5.08mm single row +0 +17 +17 +Connector_Samtec_HPM_THT +Samtec_HPM-17-05-x-S_Straight_1x17_Pitch5.08mm +Through hole straight Samtec HPM power header series 3.81mm post length, 1x17, 5.08mm pitch, single row +Through hole Samtec HPM power header series 3.81mm post length THT 1x17 5.08mm single row +0 +17 +17 +Connector_Samtec_HPM_THT +Samtec_HPM-18-01-x-S_Straight_1x18_Pitch5.08mm +Through hole straight Samtec HPM power header series 11.94mm post length, 1x18, 5.08mm pitch, single row +Through hole Samtec HPM power header series 11.94mm post length THT 1x18 5.08mm single row +0 +18 +18 +Connector_Samtec_HPM_THT +Samtec_HPM-18-05-x-S_Straight_1x18_Pitch5.08mm +Through hole straight Samtec HPM power header series 3.81mm post length, 1x18, 5.08mm pitch, single row +Through hole Samtec HPM power header series 3.81mm post length THT 1x18 5.08mm single row +0 +18 +18 +Connector_Samtec_HPM_THT +Samtec_HPM-19-01-x-S_Straight_1x19_Pitch5.08mm +Through hole straight Samtec HPM power header series 11.94mm post length, 1x19, 5.08mm pitch, single row +Through hole Samtec HPM power header series 11.94mm post length THT 1x19 5.08mm single row +0 +19 +19 +Connector_Samtec_HPM_THT +Samtec_HPM-19-05-x-S_Straight_1x19_Pitch5.08mm +Through hole straight Samtec HPM power header series 3.81mm post length, 1x19, 5.08mm pitch, single row +Through hole Samtec HPM power header series 3.81mm post length THT 1x19 5.08mm single row +0 +19 +19 +Connector_Samtec_HSEC8 +Samtec_HSEC8-109-01-X-DV-A-BL_2x09_P0.8mm_Pol04_Socket_WeldTabs_BoardLocks +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical, alignment pins, weld tabs, board locks (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +20 +18 +Connector_Samtec_HSEC8 +Samtec_HSEC8-109-01-X-DV-A-WT_2x09_P0.8mm_Pol04_Socket_WeldTabs +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical, alignment pins, weld tabs (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +20 +18 +Connector_Samtec_HSEC8 +Samtec_HSEC8-109-X-X-DV-BL_2x09_P0.8mm_Edge +Highspeed card edge for PCB's with 2x9 contacts (with board lock option) +conn samtec card-edge high-speed +0 +18 +18 +Connector_Samtec_HSEC8 +Samtec_HSEC8-109-X-X-DV_2x09_P0.8mm_Edge +Highspeed card edge for PCB's with 2x9 contacts +conn samtec card-edge high-speed +0 +18 +18 +Connector_Samtec_HSEC8 +Samtec_HSEC8-109-X-X-DV_2x09_P0.8mm_Wing_Edge +Highspeed card edge for PCB's with 2x9 contacts (with horizontal Edge.Cuts ends) +conn samtec card-edge high-speed +0 +18 +18 +Connector_Samtec_HSEC8 +Samtec_HSEC8-110-01-X-DV-A-BL_2x10_P0.8mm_Socket_WeldTabs_BoardLocks +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical, alignment pins, weld tabs, board locks (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +22 +20 +Connector_Samtec_HSEC8 +Samtec_HSEC8-110-01-X-DV-A-WT_2x10_P0.8mm_Socket_WeldTabs +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical, alignment pins, weld tabs (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +22 +20 +Connector_Samtec_HSEC8 +Samtec_HSEC8-110-01-X-DV-A_2x10_P0.8mm_Socket_AlignmentPins +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical, alignment pins (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +20 +20 +Connector_Samtec_HSEC8 +Samtec_HSEC8-110-01-X-DV_2x10_P0.8mm_Socket +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +20 +20 +Connector_Samtec_HSEC8 +Samtec_HSEC8-110-03-X-DV-A-WT_2x10_P0.8mm_Socket_WeldTabs +0.8 mm Highspeed card edge card connector socket for 2.36mm PCBs, vertical, alignment pins, weld tabs (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +22 +20 +Connector_Samtec_HSEC8 +Samtec_HSEC8-110-03-X-DV-A_2x10_P0.8mm_Socket_AlignmentPins +0.8 mm Highspeed card edge card connector socket for 2.36mm PCBs, vertical, alignment pins (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +20 +20 +Connector_Samtec_HSEC8 +Samtec_HSEC8-110-03-X-DV_2x10_P0.8mm_Socket +0.8 mm Highspeed card edge card connector socket for 2.36mm PCBs, vertical (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +20 +20 +Connector_Samtec_HSEC8 +Samtec_HSEC8-110-X-X-DV-BL_2x10_P0.8mm_Edge +Highspeed card edge for PCB's with 2x10 contacts (with board lock option) +conn samtec card-edge high-speed +0 +20 +20 +Connector_Samtec_HSEC8 +Samtec_HSEC8-110-X-X-DV_2x10_P0.8mm_Edge +Highspeed card edge for PCB's with 2x10 contacts +conn samtec card-edge high-speed +0 +20 +20 +Connector_Samtec_HSEC8 +Samtec_HSEC8-110-X-X-DV_2x10_P0.8mm_Wing_Edge +Highspeed card edge for PCB's with 2x10 contacts (with horizontal Edge.Cuts ends) +conn samtec card-edge high-speed +0 +20 +20 +Connector_Samtec_HSEC8 +Samtec_HSEC8-113-01-X-DV-A-BL_2x13_P0.8mm_Pol06_Socket_WeldTabs_BoardLocks +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical, alignment pins, weld tabs, board locks (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +28 +26 +Connector_Samtec_HSEC8 +Samtec_HSEC8-113-01-X-DV-A-WT_2x13_P0.8mm_Pol06_Socket_WeldTabs +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical, alignment pins, weld tabs (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +28 +26 +Connector_Samtec_HSEC8 +Samtec_HSEC8-113-01-X-DV-A_2x13_P0.8mm_Pol06_Socket_AlignmentPins +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical, alignment pins (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +26 +26 +Connector_Samtec_HSEC8 +Samtec_HSEC8-113-01-X-DV_2x13_P0.8mm_Pol06_Socket +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +26 +26 +Connector_Samtec_HSEC8 +Samtec_HSEC8-113-X-X-DV-BL_2x13_P0.8mm_Edge +Highspeed card edge for PCB's with 2x13 contacts (with board lock option) +conn samtec card-edge high-speed +0 +26 +26 +Connector_Samtec_HSEC8 +Samtec_HSEC8-113-X-X-DV_2x13_P0.8mm_Edge +Highspeed card edge for PCB's with 2x13 contacts +conn samtec card-edge high-speed +0 +26 +26 +Connector_Samtec_HSEC8 +Samtec_HSEC8-113-X-X-DV_2x13_P0.8mm_Wing_Edge +Highspeed card edge for PCB's with 2x13 contacts (with horizontal Edge.Cuts ends) +conn samtec card-edge high-speed +0 +26 +26 +Connector_Samtec_HSEC8 +Samtec_HSEC8-120-01-X-DV-A-BL_2x20_P0.8mm_Socket_WeldTabs_BoardLocks +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical, alignment pins, weld tabs, board locks (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +42 +40 +Connector_Samtec_HSEC8 +Samtec_HSEC8-120-01-X-DV-A-WT_2x20_P0.8mm_Socket_WeldTabs +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical, alignment pins, weld tabs (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +42 +40 +Connector_Samtec_HSEC8 +Samtec_HSEC8-120-01-X-DV-A_2x20_P0.8mm_Socket_AlignmentPins +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical, alignment pins (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +40 +40 +Connector_Samtec_HSEC8 +Samtec_HSEC8-120-01-X-DV_2x20_P0.8mm_Socket +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +40 +40 +Connector_Samtec_HSEC8 +Samtec_HSEC8-120-03-X-DV-A-WT_2x20_P0.8mm_Socket_WeldTabs +0.8 mm Highspeed card edge card connector socket for 2.36mm PCBs, vertical, alignment pins, weld tabs (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +42 +40 +Connector_Samtec_HSEC8 +Samtec_HSEC8-120-03-X-DV-A_2x20_P0.8mm_Socket_AlignmentPins +0.8 mm Highspeed card edge card connector socket for 2.36mm PCBs, vertical, alignment pins (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +40 +40 +Connector_Samtec_HSEC8 +Samtec_HSEC8-120-03-X-DV_2x20_P0.8mm_Socket +0.8 mm Highspeed card edge card connector socket for 2.36mm PCBs, vertical (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +40 +40 +Connector_Samtec_HSEC8 +Samtec_HSEC8-120-X-X-DV-BL_2x20_P0.8mm_Edge +Highspeed card edge for PCB's with 2x20 contacts (with board lock option) +conn samtec card-edge high-speed +0 +40 +40 +Connector_Samtec_HSEC8 +Samtec_HSEC8-120-X-X-DV_2x20_P0.8mm_Edge +Highspeed card edge for PCB's with 2x20 contacts +conn samtec card-edge high-speed +0 +40 +40 +Connector_Samtec_HSEC8 +Samtec_HSEC8-120-X-X-DV_2x20_P0.8mm_Wing_Edge +Highspeed card edge for PCB's with 2x20 contacts (with horizontal Edge.Cuts ends) +conn samtec card-edge high-speed +0 +40 +40 +Connector_Samtec_HSEC8 +Samtec_HSEC8-125-01-X-DV-A-BL_2x25_P0.8mm_Pol06_Socket_WeldTabs_BoardLocks +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical, alignment pins, weld tabs, board locks (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +52 +50 +Connector_Samtec_HSEC8 +Samtec_HSEC8-125-01-X-DV-A-WT_2x25_P0.8mm_Pol06_Socket_WeldTabs +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical, alignment pins, weld tabs (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +52 +50 +Connector_Samtec_HSEC8 +Samtec_HSEC8-125-01-X-DV-A_2x25_P0.8mm_Pol06_Socket_AlignmentPins +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical, alignment pins (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +50 +50 +Connector_Samtec_HSEC8 +Samtec_HSEC8-125-01-X-DV_2x25_P0.8mm_Pol06_Socket +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +50 +50 +Connector_Samtec_HSEC8 +Samtec_HSEC8-125-X-X-DV-BL_2x25_P0.8mm_Edge +Highspeed card edge for PCB's with 2x25 contacts (with board lock option) +conn samtec card-edge high-speed +0 +50 +50 +Connector_Samtec_HSEC8 +Samtec_HSEC8-125-X-X-DV_2x25_P0.8mm_Edge +Highspeed card edge for PCB's with 2x25 contacts +conn samtec card-edge high-speed +0 +50 +50 +Connector_Samtec_HSEC8 +Samtec_HSEC8-125-X-X-DV_2x25_P0.8mm_Wing_Edge +Highspeed card edge for PCB's with 2x25 contacts (with horizontal Edge.Cuts ends) +conn samtec card-edge high-speed +0 +50 +50 +Connector_Samtec_HSEC8 +Samtec_HSEC8-130-01-X-DV-A-BL_2x30_P0.8mm_Socket_WeldTabs_BoardLocks +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical, alignment pins, weld tabs, board locks (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +62 +60 +Connector_Samtec_HSEC8 +Samtec_HSEC8-130-01-X-DV-A-WT_2x30_P0.8mm_Socket_WeldTabs +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical, alignment pins, weld tabs (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +62 +60 +Connector_Samtec_HSEC8 +Samtec_HSEC8-130-01-X-DV-A_2x30_P0.8mm_Socket_AlignmentPins +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical, alignment pins (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +60 +60 +Connector_Samtec_HSEC8 +Samtec_HSEC8-130-01-X-DV_2x30_P0.8mm_Socket +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +60 +60 +Connector_Samtec_HSEC8 +Samtec_HSEC8-130-03-X-DV-A-WT_2x30_P0.8mm_Socket_WeldTabs +0.8 mm Highspeed card edge card connector socket for 2.36mm PCBs, vertical, alignment pins, weld tabs (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +62 +60 +Connector_Samtec_HSEC8 +Samtec_HSEC8-130-03-X-DV-A_2x30_P0.8mm_Socket_AlignmentPins +0.8 mm Highspeed card edge card connector socket for 2.36mm PCBs, vertical, alignment pins (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +60 +60 +Connector_Samtec_HSEC8 +Samtec_HSEC8-130-03-X-DV_2x30_P0.8mm_Socket +0.8 mm Highspeed card edge card connector socket for 2.36mm PCBs, vertical (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +60 +60 +Connector_Samtec_HSEC8 +Samtec_HSEC8-130-X-X-DV-BL_2x30_P0.8mm_Edge +Highspeed card edge for PCB's with 2x30 contacts (with board lock option) +conn samtec card-edge high-speed +0 +60 +60 +Connector_Samtec_HSEC8 +Samtec_HSEC8-130-X-X-DV_2x30_P0.8mm_Edge +Highspeed card edge for PCB's with 2x30 contacts +conn samtec card-edge high-speed +0 +60 +60 +Connector_Samtec_HSEC8 +Samtec_HSEC8-130-X-X-DV_2x30_P0.8mm_Wing_Edge +Highspeed card edge for PCB's with 2x30 contacts (with horizontal Edge.Cuts ends) +conn samtec card-edge high-speed +0 +60 +60 +Connector_Samtec_HSEC8 +Samtec_HSEC8-137-01-X-DV-A-BL_2x37_P0.8mm_Pol21_Socket_WeldTabs_BoardLocks +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical, alignment pins, weld tabs, board locks (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +76 +74 +Connector_Samtec_HSEC8 +Samtec_HSEC8-137-01-X-DV-A-WT_2x37_P0.8mm_Pol21_Socket_WeldTabs +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical, alignment pins, weld tabs (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +76 +74 +Connector_Samtec_HSEC8 +Samtec_HSEC8-137-01-X-DV-A_2x37_P0.8mm_Pol21_Socket_AlignmentPins +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical, alignment pins (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +74 +74 +Connector_Samtec_HSEC8 +Samtec_HSEC8-137-01-X-DV_2x37_P0.8mm_Pol21_Socket +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +74 +74 +Connector_Samtec_HSEC8 +Samtec_HSEC8-137-X-X-DV-BL_2x37_P0.8mm_Edge +Highspeed card edge for PCB's with 2x37 contacts (with board lock option) +conn samtec card-edge high-speed +0 +74 +74 +Connector_Samtec_HSEC8 +Samtec_HSEC8-137-X-X-DV_2x37_P0.8mm_Edge +Highspeed card edge for PCB's with 2x37 contacts +conn samtec card-edge high-speed +0 +74 +74 +Connector_Samtec_HSEC8 +Samtec_HSEC8-137-X-X-DV_2x37_P0.8mm_Wing_Edge +Highspeed card edge for PCB's with 2x37 contacts (with horizontal Edge.Cuts ends) +conn samtec card-edge high-speed +0 +74 +74 +Connector_Samtec_HSEC8 +Samtec_HSEC8-140-01-X-DV-A-BL_2x40_P0.8mm_Pol22_Socket_WeldTabs_BoardLocks +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical, alignment pins, weld tabs, board locks (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +82 +80 +Connector_Samtec_HSEC8 +Samtec_HSEC8-140-01-X-DV-A-WT_2x40_P0.8mm_Pol22_Socket_WeldTabs +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical, alignment pins, weld tabs (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +82 +80 +Connector_Samtec_HSEC8 +Samtec_HSEC8-140-01-X-DV-A_2x40_P0.8mm_Pol22_Socket_AlignmentPins +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical, alignment pins (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +80 +80 +Connector_Samtec_HSEC8 +Samtec_HSEC8-140-01-X-DV_2x40_P0.8mm_Pol22_Socket +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +80 +80 +Connector_Samtec_HSEC8 +Samtec_HSEC8-140-03-X-DV-A-WT_2x40_P0.8mm_Pol22_Socket_WeldTabs +0.8 mm Highspeed card edge card connector socket for 2.36mm PCBs, vertical, alignment pins, weld tabs (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +82 +80 +Connector_Samtec_HSEC8 +Samtec_HSEC8-140-03-X-DV-A_2x40_P0.8mm_Pol22_Socket_AlignmentPins +0.8 mm Highspeed card edge card connector socket for 2.36mm PCBs, vertical, alignment pins (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +80 +80 +Connector_Samtec_HSEC8 +Samtec_HSEC8-140-03-X-DV_2x40_P0.8mm_Pol22_Socket +0.8 mm Highspeed card edge card connector socket for 2.36mm PCBs, vertical (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +80 +80 +Connector_Samtec_HSEC8 +Samtec_HSEC8-140-X-X-DV-BL_2x40_P0.8mm_Edge +Highspeed card edge for PCB's with 2x40 contacts (with board lock option) +conn samtec card-edge high-speed +0 +80 +80 +Connector_Samtec_HSEC8 +Samtec_HSEC8-140-X-X-DV_2x40_P0.8mm_Edge +Highspeed card edge for PCB's with 2x40 contacts +conn samtec card-edge high-speed +0 +80 +80 +Connector_Samtec_HSEC8 +Samtec_HSEC8-140-X-X-DV_2x40_P0.8mm_Wing_Edge +Highspeed card edge for PCB's with 2x40 contacts (with horizontal Edge.Cuts ends) +conn samtec card-edge high-speed +0 +80 +80 +Connector_Samtec_HSEC8 +Samtec_HSEC8-149-01-X-DV-A-BL_2x49_P0.8mm_Pol27_Socket_WeldTabs_BoardLocks +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical, alignment pins, weld tabs, board locks (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +100 +98 +Connector_Samtec_HSEC8 +Samtec_HSEC8-149-01-X-DV-A-WT_2x49_P0.8mm_Pol27_Socket_WeldTabs +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical, alignment pins, weld tabs (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +100 +98 +Connector_Samtec_HSEC8 +Samtec_HSEC8-149-01-X-DV-A_2x49_P0.8mm_Pol27_Socket_AlignmentPins +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical, alignment pins (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +98 +98 +Connector_Samtec_HSEC8 +Samtec_HSEC8-149-01-X-DV_2x49_P0.8mm_Pol27_Socket +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +98 +98 +Connector_Samtec_HSEC8 +Samtec_HSEC8-149-X-X-DV-BL_2x49_P0.8mm_Edge +Highspeed card edge for PCB's with 2x49 contacts (with board lock option) +conn samtec card-edge high-speed +0 +98 +98 +Connector_Samtec_HSEC8 +Samtec_HSEC8-149-X-X-DV_2x49_P0.8mm_Edge +Highspeed card edge for PCB's with 2x49 contacts +conn samtec card-edge high-speed +0 +98 +98 +Connector_Samtec_HSEC8 +Samtec_HSEC8-149-X-X-DV_2x49_P0.8mm_Wing_Edge +Highspeed card edge for PCB's with 2x49 contacts (with horizontal Edge.Cuts ends) +conn samtec card-edge high-speed +0 +98 +98 +Connector_Samtec_HSEC8 +Samtec_HSEC8-150-01-X-DV-A-BL_2x50_P0.8mm_Pol27_Socket_WeldTabs_BoardLocks +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical, alignment pins, weld tabs, board locks (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +102 +100 +Connector_Samtec_HSEC8 +Samtec_HSEC8-150-01-X-DV-A-WT_2x50_P0.8mm_Pol27_Socket_WeldTabs +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical, alignment pins, weld tabs (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +102 +100 +Connector_Samtec_HSEC8 +Samtec_HSEC8-150-01-X-DV-A_2x50_P0.8mm_Pol27_Socket_AlignmentPins +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical, alignment pins (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +100 +100 +Connector_Samtec_HSEC8 +Samtec_HSEC8-150-01-X-DV_2x50_P0.8mm_Pol27_Socket +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +100 +100 +Connector_Samtec_HSEC8 +Samtec_HSEC8-150-03-X-DV-A-WT_2x50_P0.8mm_Pol27_Socket_WeldTabs +0.8 mm Highspeed card edge card connector socket for 2.36mm PCBs, vertical, alignment pins, weld tabs (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +102 +100 +Connector_Samtec_HSEC8 +Samtec_HSEC8-150-03-X-DV-A_2x50_P0.8mm_Pol27_Socket_AlignmentPins +0.8 mm Highspeed card edge card connector socket for 2.36mm PCBs, vertical, alignment pins (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +100 +100 +Connector_Samtec_HSEC8 +Samtec_HSEC8-150-03-X-DV_2x50_P0.8mm_Pol27_Socket +0.8 mm Highspeed card edge card connector socket for 2.36mm PCBs, vertical (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +100 +100 +Connector_Samtec_HSEC8 +Samtec_HSEC8-150-X-X-DV-BL_2x50_P0.8mm_Edge +Highspeed card edge for PCB's with 2x50 contacts (with board lock option) +conn samtec card-edge high-speed +0 +100 +100 +Connector_Samtec_HSEC8 +Samtec_HSEC8-150-X-X-DV_2x50_P0.8mm_Edge +Highspeed card edge for PCB's with 2x50 contacts +conn samtec card-edge high-speed +0 +100 +100 +Connector_Samtec_HSEC8 +Samtec_HSEC8-150-X-X-DV_2x50_P0.8mm_Wing_Edge +Highspeed card edge for PCB's with 2x50 contacts (with horizontal Edge.Cuts ends) +conn samtec card-edge high-speed +0 +100 +100 +Connector_Samtec_HSEC8 +Samtec_HSEC8-160-01-X-DV-A-BL_2x60_P0.8mm_Pol32_Socket_WeldTabs_BoardLocks +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical, alignment pins, weld tabs, board locks (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +122 +120 +Connector_Samtec_HSEC8 +Samtec_HSEC8-160-01-X-DV-A-WT_2x60_P0.8mm_Pol32_Socket_WeldTabs +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical, alignment pins, weld tabs (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +122 +120 +Connector_Samtec_HSEC8 +Samtec_HSEC8-160-01-X-DV-A_2x60_P0.8mm_Pol32_Socket_AlignmentPins +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical, alignment pins (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +120 +120 +Connector_Samtec_HSEC8 +Samtec_HSEC8-160-01-X-DV_2x60_P0.8mm_Pol32_Socket +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +120 +120 +Connector_Samtec_HSEC8 +Samtec_HSEC8-160-03-X-DV-A-WT_2x60_P0.8mm_Pol32_Socket_WeldTabs +0.8 mm Highspeed card edge card connector socket for 2.36mm PCBs, vertical, alignment pins, weld tabs (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +122 +120 +Connector_Samtec_HSEC8 +Samtec_HSEC8-160-03-X-DV-A_2x60_P0.8mm_Pol32_Socket_AlignmentPins +0.8 mm Highspeed card edge card connector socket for 2.36mm PCBs, vertical, alignment pins (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +120 +120 +Connector_Samtec_HSEC8 +Samtec_HSEC8-160-03-X-DV_2x60_P0.8mm_Pol32_Socket +0.8 mm Highspeed card edge card connector socket for 2.36mm PCBs, vertical (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +120 +120 +Connector_Samtec_HSEC8 +Samtec_HSEC8-160-X-X-DV-BL_2x60_P0.8mm_Edge +Highspeed card edge for PCB's with 2x60 contacts (with board lock option) +conn samtec card-edge high-speed +0 +120 +120 +Connector_Samtec_HSEC8 +Samtec_HSEC8-160-X-X-DV_2x60_P0.8mm_Edge +Highspeed card edge for PCB's with 2x60 contacts +conn samtec card-edge high-speed +0 +120 +120 +Connector_Samtec_HSEC8 +Samtec_HSEC8-160-X-X-DV_2x60_P0.8mm_Wing_Edge +Highspeed card edge for PCB's with 2x60 contacts (with horizontal Edge.Cuts ends) +conn samtec card-edge high-speed +0 +120 +120 +Connector_Samtec_HSEC8 +Samtec_HSEC8-170-01-X-DV-A-BL_2x70_P0.8mm_Pol32_Socket_WeldTabs_BoardLocks +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical, alignment pins, weld tabs, board locks (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +142 +140 +Connector_Samtec_HSEC8 +Samtec_HSEC8-170-01-X-DV-A-WT_2x70_P0.8mm_Pol32_Socket_WeldTabs +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical, alignment pins, weld tabs (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +142 +140 +Connector_Samtec_HSEC8 +Samtec_HSEC8-170-01-X-DV-A_2x70_P0.8mm_Pol32_Socket_AlignmentPins +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical, alignment pins (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +140 +140 +Connector_Samtec_HSEC8 +Samtec_HSEC8-170-01-X-DV_2x70_P0.8mm_Pol32_Socket +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +140 +140 +Connector_Samtec_HSEC8 +Samtec_HSEC8-170-03-X-DV-A-WT_2x70_P0.8mm_Pol32_Socket_WeldTabs +0.8 mm Highspeed card edge card connector socket for 2.36mm PCBs, vertical, alignment pins, weld tabs (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +142 +140 +Connector_Samtec_HSEC8 +Samtec_HSEC8-170-03-X-DV-A_2x70_P0.8mm_Pol32_Socket_AlignmentPins +0.8 mm Highspeed card edge card connector socket for 2.36mm PCBs, vertical, alignment pins (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +140 +140 +Connector_Samtec_HSEC8 +Samtec_HSEC8-170-03-X-DV_2x70_P0.8mm_Pol32_Socket +0.8 mm Highspeed card edge card connector socket for 2.36mm PCBs, vertical (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +140 +140 +Connector_Samtec_HSEC8 +Samtec_HSEC8-170-X-X-DV-BL_2x70_P0.8mm_Edge +Highspeed card edge for PCB's with 2x70 contacts (with board lock option) +conn samtec card-edge high-speed +0 +140 +140 +Connector_Samtec_HSEC8 +Samtec_HSEC8-170-X-X-DV_2x70_P0.8mm_Edge +Highspeed card edge for PCB's with 2x70 contacts +conn samtec card-edge high-speed +0 +140 +140 +Connector_Samtec_HSEC8 +Samtec_HSEC8-170-X-X-DV_2x70_P0.8mm_Wing_Edge +Highspeed card edge for PCB's with 2x70 contacts (with horizontal Edge.Cuts ends) +conn samtec card-edge high-speed +0 +140 +140 +Connector_Samtec_HSEC8 +Samtec_HSEC8-180-01-X-DV-A-BL_2x80_P0.8mm_Pol32_Socket_WeldTabs_BoardLocks +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical, alignment pins, weld tabs, board locks (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +162 +160 +Connector_Samtec_HSEC8 +Samtec_HSEC8-180-01-X-DV-A-WT_2x80_P0.8mm_Pol32_Socket_WeldTabs +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical, alignment pins, weld tabs (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +162 +160 +Connector_Samtec_HSEC8 +Samtec_HSEC8-180-01-X-DV-A_2x80_P0.8mm_Pol32_Socket_AlignmentPins +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical, alignment pins (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +160 +160 +Connector_Samtec_HSEC8 +Samtec_HSEC8-180-01-X-DV_2x80_P0.8mm_Pol32_Socket +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +160 +160 +Connector_Samtec_HSEC8 +Samtec_HSEC8-180-03-X-DV-A-WT_2x80_P0.8mm_Pol32_Socket_WeldTabs +0.8 mm Highspeed card edge card connector socket for 2.36mm PCBs, vertical, alignment pins, weld tabs (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +162 +160 +Connector_Samtec_HSEC8 +Samtec_HSEC8-180-03-X-DV-A_2x80_P0.8mm_Pol32_Socket_AlignmentPins +0.8 mm Highspeed card edge card connector socket for 2.36mm PCBs, vertical, alignment pins (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +160 +160 +Connector_Samtec_HSEC8 +Samtec_HSEC8-180-03-X-DV_2x80_P0.8mm_Pol32_Socket +0.8 mm Highspeed card edge card connector socket for 2.36mm PCBs, vertical (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +160 +160 +Connector_Samtec_HSEC8 +Samtec_HSEC8-180-X-X-DV-BL_2x80_P0.8mm_Edge +Highspeed card edge for PCB's with 2x80 contacts (with board lock option) +conn samtec card-edge high-speed +0 +160 +160 +Connector_Samtec_HSEC8 +Samtec_HSEC8-180-X-X-DV_2x80_P0.8mm_Edge +Highspeed card edge for PCB's with 2x80 contacts +conn samtec card-edge high-speed +0 +160 +160 +Connector_Samtec_HSEC8 +Samtec_HSEC8-180-X-X-DV_2x80_P0.8mm_Wing_Edge +Highspeed card edge for PCB's with 2x80 contacts (with horizontal Edge.Cuts ends) +conn samtec card-edge high-speed +0 +160 +160 +Connector_Samtec_HSEC8 +Samtec_HSEC8-190-01-X-DV-A-BL_2x90_P0.8mm_Pol32_Socket_WeldTabs_BoardLocks +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical, alignment pins, weld tabs, board locks (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +182 +180 +Connector_Samtec_HSEC8 +Samtec_HSEC8-190-01-X-DV-A-WT_2x90_P0.8mm_Pol32_Socket_WeldTabs +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical, alignment pins, weld tabs (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +182 +180 +Connector_Samtec_HSEC8 +Samtec_HSEC8-190-01-X-DV-A_2x90_P0.8mm_Pol32_Socket_AlignmentPins +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical, alignment pins (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +180 +180 +Connector_Samtec_HSEC8 +Samtec_HSEC8-190-01-X-DV_2x90_P0.8mm_Pol32_Socket +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +180 +180 +Connector_Samtec_HSEC8 +Samtec_HSEC8-190-03-X-DV-A-WT_2x90_P0.8mm_Pol32_Socket_WeldTabs +0.8 mm Highspeed card edge card connector socket for 2.36mm PCBs, vertical, alignment pins, weld tabs (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +182 +180 +Connector_Samtec_HSEC8 +Samtec_HSEC8-190-03-X-DV-A_2x90_P0.8mm_Pol32_Socket_AlignmentPins +0.8 mm Highspeed card edge card connector socket for 2.36mm PCBs, vertical, alignment pins (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +180 +180 +Connector_Samtec_HSEC8 +Samtec_HSEC8-190-03-X-DV_2x90_P0.8mm_Pol32_Socket +0.8 mm Highspeed card edge card connector socket for 2.36mm PCBs, vertical (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +180 +180 +Connector_Samtec_HSEC8 +Samtec_HSEC8-190-X-X-DV-BL_2x90_P0.8mm_Edge +Highspeed card edge for PCB's with 2x90 contacts (with board lock option) +conn samtec card-edge high-speed +0 +180 +180 +Connector_Samtec_HSEC8 +Samtec_HSEC8-190-X-X-DV_2x90_P0.8mm_Edge +Highspeed card edge for PCB's with 2x90 contacts +conn samtec card-edge high-speed +0 +180 +180 +Connector_Samtec_HSEC8 +Samtec_HSEC8-190-X-X-DV_2x90_P0.8mm_Wing_Edge +Highspeed card edge for PCB's with 2x90 contacts (with horizontal Edge.Cuts ends) +conn samtec card-edge high-speed +0 +180 +180 +Connector_Samtec_HSEC8 +Samtec_HSEC8-1100-01-X-DV-A-BL_2x100_P0.8mm_Pol32_Socket_WeldTabs_BoardLocks +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical, alignment pins, weld tabs, board locks (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +202 +200 +Connector_Samtec_HSEC8 +Samtec_HSEC8-1100-01-X-DV-A-WT_2x100_P0.8mm_Pol32_Socket_WeldTabs +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical, alignment pins, weld tabs (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +202 +200 +Connector_Samtec_HSEC8 +Samtec_HSEC8-1100-01-X-DV-A_2x100_P0.8mm_Pol32_Socket_AlignmentPins +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical, alignment pins (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +200 +200 +Connector_Samtec_HSEC8 +Samtec_HSEC8-1100-01-X-DV_2x100_P0.8mm_Pol32_Socket +0.8 mm Highspeed card edge card connector socket for 1.57mm PCBs, vertical (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +200 +200 +Connector_Samtec_HSEC8 +Samtec_HSEC8-1100-03-X-DV-A-WT_2x100_P0.8mm_Pol32_Socket_WeldTabs +0.8 mm Highspeed card edge card connector socket for 2.36mm PCBs, vertical, alignment pins, weld tabs (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +202 +200 +Connector_Samtec_HSEC8 +Samtec_HSEC8-1100-03-X-DV-A_2x100_P0.8mm_Pol32_Socket_AlignmentPins +0.8 mm Highspeed card edge card connector socket for 2.36mm PCBs, vertical, alignment pins (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +200 +200 +Connector_Samtec_HSEC8 +Samtec_HSEC8-1100-03-X-DV_2x100_P0.8mm_Pol32_Socket +0.8 mm Highspeed card edge card connector socket for 2.36mm PCBs, vertical (source: https://suddendocs.samtec.com/prints/hsec8-1xxx-xx-xx-dv-x-xx-footprint.pdf) +conn samtec card-edge socket high-speed +0 +200 +200 +Connector_Samtec_HSEC8 +Samtec_HSEC8-1100-X-X-DV-BL_2x100_P0.8mm_Edge +Highspeed card edge for PCB's with 2x100 contacts (with board lock option) +conn samtec card-edge high-speed +0 +200 +200 +Connector_Samtec_HSEC8 +Samtec_HSEC8-1100-X-X-DV_2x100_P0.8mm_Edge +Highspeed card edge for PCB's with 2x100 contacts +conn samtec card-edge high-speed +0 +200 +200 +Connector_Samtec_HSEC8 +Samtec_HSEC8-1100-X-X-DV_2x100_P0.8mm_Wing_Edge +Highspeed card edge for PCB's with 2x100 contacts (with horizontal Edge.Cuts ends) +conn samtec card-edge high-speed +0 +200 +200 +Connector_Samtec_LTMM +Samtec_LTMM-104-02-X-D-SM-LC_2x04_P2.0mm_Header_Vertical_LockingClip +Samtec LTMM Shrouded Terminal Strip, 2.00 mm Pitch, Double Row, Surface Mount, Locking Clips (source: https://suddendocs.samtec.com/prints/ltmm-1xx-xx-xx-d-xx-xx-footprint.pdf#page=3) +conn samtec terminal strip pin header +0 +8 +8 +Connector_Samtec_LTMM +Samtec_LTMM-104-02-X-D-SM_2x04_P2.0mm_Header_Vertical +Samtec LTMM Shrouded Terminal Strip, 2.00 mm Pitch, Double Row, Surface Mount (source: https://suddendocs.samtec.com/prints/ltmm-1xx-xx-xx-d-xx-xx-footprint.pdf#page=3) +conn samtec terminal strip pin header +0 +8 +8 +Connector_Samtec_LTMM +Samtec_LTMM-105-02-X-D-SM-LC_2x05_P2.0mm_Header_Vertical_LockingClip +Samtec LTMM Shrouded Terminal Strip, 2.00 mm Pitch, Double Row, Surface Mount, Locking Clips (source: https://suddendocs.samtec.com/prints/ltmm-1xx-xx-xx-d-xx-xx-footprint.pdf#page=3) +conn samtec terminal strip pin header +0 +10 +10 +Connector_Samtec_LTMM +Samtec_LTMM-105-02-X-D-SM_2x05_P2.0mm_Header_Vertical +Samtec LTMM Shrouded Terminal Strip, 2.00 mm Pitch, Double Row, Surface Mount (source: https://suddendocs.samtec.com/prints/ltmm-1xx-xx-xx-d-xx-xx-footprint.pdf#page=3) +conn samtec terminal strip pin header +0 +10 +10 +Connector_Samtec_LTMM +Samtec_LTMM-106-02-X-D-SM-LC_2x06_P2.0mm_Header_Vertical_LockingClip +Samtec LTMM Shrouded Terminal Strip, 2.00 mm Pitch, Double Row, Surface Mount, Locking Clips (source: https://suddendocs.samtec.com/prints/ltmm-1xx-xx-xx-d-xx-xx-footprint.pdf#page=3) +conn samtec terminal strip pin header +0 +12 +12 +Connector_Samtec_LTMM +Samtec_LTMM-106-02-X-D-SM_2x06_P2.0mm_Header_Vertical +Samtec LTMM Shrouded Terminal Strip, 2.00 mm Pitch, Double Row, Surface Mount (source: https://suddendocs.samtec.com/prints/ltmm-1xx-xx-xx-d-xx-xx-footprint.pdf#page=3) +conn samtec terminal strip pin header +0 +12 +12 +Connector_Samtec_LTMM +Samtec_LTMM-107-02-X-D-SM-LC_2x07_P2.0mm_Header_Vertical_LockingClip +Samtec LTMM Shrouded Terminal Strip, 2.00 mm Pitch, Double Row, Surface Mount, Locking Clips (source: https://suddendocs.samtec.com/prints/ltmm-1xx-xx-xx-d-xx-xx-footprint.pdf#page=3) +conn samtec terminal strip pin header +0 +14 +14 +Connector_Samtec_LTMM +Samtec_LTMM-107-02-X-D-SM_2x07_P2.0mm_Header_Vertical +Samtec LTMM Shrouded Terminal Strip, 2.00 mm Pitch, Double Row, Surface Mount (source: https://suddendocs.samtec.com/prints/ltmm-1xx-xx-xx-d-xx-xx-footprint.pdf#page=3) +conn samtec terminal strip pin header +0 +14 +14 +Connector_Samtec_LTMM +Samtec_LTMM-108-02-X-D-SM-LC_2x08_P2.0mm_Header_Vertical_LockingClip +Samtec LTMM Shrouded Terminal Strip, 2.00 mm Pitch, Double Row, Surface Mount, Locking Clips (source: https://suddendocs.samtec.com/prints/ltmm-1xx-xx-xx-d-xx-xx-footprint.pdf#page=3) +conn samtec terminal strip pin header +0 +16 +16 +Connector_Samtec_LTMM +Samtec_LTMM-108-02-X-D-SM_2x08_P2.0mm_Header_Vertical +Samtec LTMM Shrouded Terminal Strip, 2.00 mm Pitch, Double Row, Surface Mount (source: https://suddendocs.samtec.com/prints/ltmm-1xx-xx-xx-d-xx-xx-footprint.pdf#page=3) +conn samtec terminal strip pin header +0 +16 +16 +Connector_Samtec_LTMM +Samtec_LTMM-110-02-X-D-SM-LC_2x10_P2.0mm_Header_Vertical_LockingClip +Samtec LTMM Shrouded Terminal Strip, 2.00 mm Pitch, Double Row, Surface Mount, Locking Clips (source: https://suddendocs.samtec.com/prints/ltmm-1xx-xx-xx-d-xx-xx-footprint.pdf#page=3) +conn samtec terminal strip pin header +0 +20 +20 +Connector_Samtec_LTMM +Samtec_LTMM-110-02-X-D-SM_2x10_P2.0mm_Header_Vertical +Samtec LTMM Shrouded Terminal Strip, 2.00 mm Pitch, Double Row, Surface Mount (source: https://suddendocs.samtec.com/prints/ltmm-1xx-xx-xx-d-xx-xx-footprint.pdf#page=3) +conn samtec terminal strip pin header +0 +20 +20 +Connector_Samtec_LTMM +Samtec_LTMM-112-02-X-D-SM-LC_2x12_P2.0mm_Header_Vertical_LockingClip +Samtec LTMM Shrouded Terminal Strip, 2.00 mm Pitch, Double Row, Surface Mount, Locking Clips (source: https://suddendocs.samtec.com/prints/ltmm-1xx-xx-xx-d-xx-xx-footprint.pdf#page=3) +conn samtec terminal strip pin header +0 +24 +24 +Connector_Samtec_LTMM +Samtec_LTMM-112-02-X-D-SM_2x12_P2.0mm_Header_Vertical +Samtec LTMM Shrouded Terminal Strip, 2.00 mm Pitch, Double Row, Surface Mount (source: https://suddendocs.samtec.com/prints/ltmm-1xx-xx-xx-d-xx-xx-footprint.pdf#page=3) +conn samtec terminal strip pin header +0 +24 +24 +Connector_Samtec_LTMM +Samtec_LTMM-113-02-X-D-SM-LC_2x13_P2.0mm_Header_Vertical_LockingClip +Samtec LTMM Shrouded Terminal Strip, 2.00 mm Pitch, Double Row, Surface Mount, Locking Clips (source: https://suddendocs.samtec.com/prints/ltmm-1xx-xx-xx-d-xx-xx-footprint.pdf#page=3) +conn samtec terminal strip pin header +0 +26 +26 +Connector_Samtec_LTMM +Samtec_LTMM-113-02-X-D-SM_2x13_P2.0mm_Header_Vertical +Samtec LTMM Shrouded Terminal Strip, 2.00 mm Pitch, Double Row, Surface Mount (source: https://suddendocs.samtec.com/prints/ltmm-1xx-xx-xx-d-xx-xx-footprint.pdf#page=3) +conn samtec terminal strip pin header +0 +26 +26 +Connector_Samtec_LTMM +Samtec_LTMM-115-02-X-D-SM-LC_2x15_P2.0mm_Header_Vertical_LockingClip +Samtec LTMM Shrouded Terminal Strip, 2.00 mm Pitch, Double Row, Surface Mount, Locking Clips (source: https://suddendocs.samtec.com/prints/ltmm-1xx-xx-xx-d-xx-xx-footprint.pdf#page=3) +conn samtec terminal strip pin header +0 +30 +30 +Connector_Samtec_LTMM +Samtec_LTMM-115-02-X-D-SM_2x15_P2.0mm_Header_Vertical +Samtec LTMM Shrouded Terminal Strip, 2.00 mm Pitch, Double Row, Surface Mount (source: https://suddendocs.samtec.com/prints/ltmm-1xx-xx-xx-d-xx-xx-footprint.pdf#page=3) +conn samtec terminal strip pin header +0 +30 +30 +Connector_Samtec_LTMM +Samtec_LTMM-117-02-X-D-SM-LC_2x17_P2.0mm_Header_Vertical_LockingClip +Samtec LTMM Shrouded Terminal Strip, 2.00 mm Pitch, Double Row, Surface Mount, Locking Clips (source: https://suddendocs.samtec.com/prints/ltmm-1xx-xx-xx-d-xx-xx-footprint.pdf#page=3) +conn samtec terminal strip pin header +0 +34 +34 +Connector_Samtec_LTMM +Samtec_LTMM-117-02-X-D-SM_2x17_P2.0mm_Header_Vertical +Samtec LTMM Shrouded Terminal Strip, 2.00 mm Pitch, Double Row, Surface Mount (source: https://suddendocs.samtec.com/prints/ltmm-1xx-xx-xx-d-xx-xx-footprint.pdf#page=3) +conn samtec terminal strip pin header +0 +34 +34 +Connector_Samtec_LTMM +Samtec_LTMM-120-02-X-D-SM-LC_2x20_P2.0mm_Header_Vertical_LockingClip +Samtec LTMM Shrouded Terminal Strip, 2.00 mm Pitch, Double Row, Surface Mount, Locking Clips (source: https://suddendocs.samtec.com/prints/ltmm-1xx-xx-xx-d-xx-xx-footprint.pdf#page=3) +conn samtec terminal strip pin header +0 +40 +40 +Connector_Samtec_LTMM +Samtec_LTMM-120-02-X-D-SM_2x20_P2.0mm_Header_Vertical +Samtec LTMM Shrouded Terminal Strip, 2.00 mm Pitch, Double Row, Surface Mount (source: https://suddendocs.samtec.com/prints/ltmm-1xx-xx-xx-d-xx-xx-footprint.pdf#page=3) +conn samtec terminal strip pin header +0 +40 +40 +Connector_Samtec_LTMM +Samtec_LTMM-122-02-X-D-SM-LC_2x22_P2.0mm_Header_Vertical_LockingClip +Samtec LTMM Shrouded Terminal Strip, 2.00 mm Pitch, Double Row, Surface Mount, Locking Clips (source: https://suddendocs.samtec.com/prints/ltmm-1xx-xx-xx-d-xx-xx-footprint.pdf#page=3) +conn samtec terminal strip pin header +0 +44 +44 +Connector_Samtec_LTMM +Samtec_LTMM-122-02-X-D-SM_2x22_P2.0mm_Header_Vertical +Samtec LTMM Shrouded Terminal Strip, 2.00 mm Pitch, Double Row, Surface Mount (source: https://suddendocs.samtec.com/prints/ltmm-1xx-xx-xx-d-xx-xx-footprint.pdf#page=3) +conn samtec terminal strip pin header +0 +44 +44 +Connector_Samtec_LTMM +Samtec_LTMM-125-02-X-D-SM-LC_2x25_P2.0mm_Header_Vertical_LockingClip +Samtec LTMM Shrouded Terminal Strip, 2.00 mm Pitch, Double Row, Surface Mount, Locking Clips (source: https://suddendocs.samtec.com/prints/ltmm-1xx-xx-xx-d-xx-xx-footprint.pdf#page=3) +conn samtec terminal strip pin header +0 +50 +50 +Connector_Samtec_LTMM +Samtec_LTMM-125-02-X-D-SM_2x25_P2.0mm_Header_Vertical +Samtec LTMM Shrouded Terminal Strip, 2.00 mm Pitch, Double Row, Surface Mount (source: https://suddendocs.samtec.com/prints/ltmm-1xx-xx-xx-d-xx-xx-footprint.pdf#page=3) +conn samtec terminal strip pin header +0 +50 +50 +Connector_Samtec_MicroMate +Samtec_T1M-02-X-S-RA_1x02-1MP_P1.0mm_Terminal_Horizontal +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Horizontal (Right Angle) (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +4 +3 +Connector_Samtec_MicroMate +Samtec_T1M-02-X-S-V_1x02-1MP_P1.0mm_Terminal_Vertical +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Vertical (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +4 +3 +Connector_Samtec_MicroMate +Samtec_T1M-02-X-SH-L_1x02-1MP_P1.0mm_Terminal_Horizontal_Latch +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Horizontal, Latch (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +4 +3 +Connector_Samtec_MicroMate +Samtec_T1M-02-X-SV-L_1x02-1MP_P1.0mm_Terminal_Vertical_Latch +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Vertical, Latch (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +4 +3 +Connector_Samtec_MicroMate +Samtec_T1M-03-X-S-RA_1x03-1MP_P1.0mm_Terminal_Horizontal +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Horizontal (Right Angle) (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +5 +4 +Connector_Samtec_MicroMate +Samtec_T1M-03-X-S-V_1x03-1MP_P1.0mm_Terminal_Vertical +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Vertical (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +5 +4 +Connector_Samtec_MicroMate +Samtec_T1M-03-X-SH-L_1x03-1MP_P1.0mm_Terminal_Horizontal_Latch +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Horizontal, Latch (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +5 +4 +Connector_Samtec_MicroMate +Samtec_T1M-03-X-SV-L_1x03-1MP_P1.0mm_Terminal_Vertical_Latch +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Vertical, Latch (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +5 +4 +Connector_Samtec_MicroMate +Samtec_T1M-04-X-S-RA_1x04-1MP_P1.0mm_Terminal_Horizontal +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Horizontal (Right Angle) (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +6 +5 +Connector_Samtec_MicroMate +Samtec_T1M-04-X-S-V_1x04-1MP_P1.0mm_Terminal_Vertical +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Vertical (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +6 +5 +Connector_Samtec_MicroMate +Samtec_T1M-04-X-SH-L_1x04-1MP_P1.0mm_Terminal_Horizontal_Latch +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Horizontal, Latch (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +6 +5 +Connector_Samtec_MicroMate +Samtec_T1M-04-X-SV-L_1x04-1MP_P1.0mm_Terminal_Vertical_Latch +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Vertical, Latch (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +6 +5 +Connector_Samtec_MicroMate +Samtec_T1M-05-X-S-RA_1x05-1MP_P1.0mm_Terminal_Horizontal +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Horizontal (Right Angle) (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +7 +6 +Connector_Samtec_MicroMate +Samtec_T1M-05-X-S-V_1x05-1MP_P1.0mm_Terminal_Vertical +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Vertical (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +7 +6 +Connector_Samtec_MicroMate +Samtec_T1M-05-X-SH-L_1x05-1MP_P1.0mm_Terminal_Horizontal_Latch +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Horizontal, Latch (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +7 +6 +Connector_Samtec_MicroMate +Samtec_T1M-05-X-SV-L_1x05-1MP_P1.0mm_Terminal_Vertical_Latch +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Vertical, Latch (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +7 +6 +Connector_Samtec_MicroMate +Samtec_T1M-06-X-S-RA_1x06-1MP_P1.0mm_Terminal_Horizontal +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Horizontal (Right Angle) (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +8 +7 +Connector_Samtec_MicroMate +Samtec_T1M-06-X-S-V_1x06-1MP_P1.0mm_Terminal_Vertical +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Vertical (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +8 +7 +Connector_Samtec_MicroMate +Samtec_T1M-06-X-SH-L_1x06-1MP_P1.0mm_Terminal_Horizontal_Latch +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Horizontal, Latch (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +8 +7 +Connector_Samtec_MicroMate +Samtec_T1M-06-X-SV-L_1x06-1MP_P1.0mm_Terminal_Vertical_Latch +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Vertical, Latch (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +8 +7 +Connector_Samtec_MicroMate +Samtec_T1M-07-X-S-RA_1x07-1MP_P1.0mm_Terminal_Horizontal +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Horizontal (Right Angle) (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +9 +8 +Connector_Samtec_MicroMate +Samtec_T1M-07-X-S-V_1x07-1MP_P1.0mm_Terminal_Vertical +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Vertical (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +9 +8 +Connector_Samtec_MicroMate +Samtec_T1M-07-X-SH-L_1x07-1MP_P1.0mm_Terminal_Horizontal_Latch +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Horizontal, Latch (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +9 +8 +Connector_Samtec_MicroMate +Samtec_T1M-07-X-SV-L_1x07-1MP_P1.0mm_Terminal_Vertical_Latch +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Vertical, Latch (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +9 +8 +Connector_Samtec_MicroMate +Samtec_T1M-08-X-S-RA_1x08-1MP_P1.0mm_Terminal_Horizontal +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Horizontal (Right Angle) (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +10 +9 +Connector_Samtec_MicroMate +Samtec_T1M-08-X-S-V_1x08-1MP_P1.0mm_Terminal_Vertical +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Vertical (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +10 +9 +Connector_Samtec_MicroMate +Samtec_T1M-08-X-SH-L_1x08-1MP_P1.0mm_Terminal_Horizontal_Latch +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Horizontal, Latch (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +10 +9 +Connector_Samtec_MicroMate +Samtec_T1M-08-X-SV-L_1x08-1MP_P1.0mm_Terminal_Vertical_Latch +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Vertical, Latch (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +10 +9 +Connector_Samtec_MicroMate +Samtec_T1M-09-X-S-RA_1x09-1MP_P1.0mm_Terminal_Horizontal +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Horizontal (Right Angle) (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +11 +10 +Connector_Samtec_MicroMate +Samtec_T1M-09-X-S-V_1x09-1MP_P1.0mm_Terminal_Vertical +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Vertical (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +11 +10 +Connector_Samtec_MicroMate +Samtec_T1M-09-X-SH-L_1x09-1MP_P1.0mm_Terminal_Horizontal_Latch +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Horizontal, Latch (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +11 +10 +Connector_Samtec_MicroMate +Samtec_T1M-09-X-SV-L_1x09-1MP_P1.0mm_Terminal_Vertical_Latch +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Vertical, Latch (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +11 +10 +Connector_Samtec_MicroMate +Samtec_T1M-10-X-S-RA_1x10-1MP_P1.0mm_Terminal_Horizontal +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Horizontal (Right Angle) (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +12 +11 +Connector_Samtec_MicroMate +Samtec_T1M-10-X-S-V_1x10-1MP_P1.0mm_Terminal_Vertical +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Vertical (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +12 +11 +Connector_Samtec_MicroMate +Samtec_T1M-10-X-SH-L_1x10-1MP_P1.0mm_Terminal_Horizontal_Latch +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Horizontal, Latch (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +12 +11 +Connector_Samtec_MicroMate +Samtec_T1M-10-X-SV-L_1x10-1MP_P1.0mm_Terminal_Vertical_Latch +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Vertical, Latch (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +12 +11 +Connector_Samtec_MicroMate +Samtec_T1M-11-X-S-RA_1x11-1MP_P1.0mm_Terminal_Horizontal +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Horizontal (Right Angle) (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +13 +12 +Connector_Samtec_MicroMate +Samtec_T1M-11-X-S-V_1x11-1MP_P1.0mm_Terminal_Vertical +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Vertical (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +13 +12 +Connector_Samtec_MicroMate +Samtec_T1M-11-X-SH-L_1x11-1MP_P1.0mm_Terminal_Horizontal_Latch +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Horizontal, Latch (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +13 +12 +Connector_Samtec_MicroMate +Samtec_T1M-11-X-SV-L_1x11-1MP_P1.0mm_Terminal_Vertical_Latch +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Vertical, Latch (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +13 +12 +Connector_Samtec_MicroMate +Samtec_T1M-12-X-S-RA_1x12-1MP_P1.0mm_Terminal_Horizontal +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Horizontal (Right Angle) (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +14 +13 +Connector_Samtec_MicroMate +Samtec_T1M-12-X-S-V_1x12-1MP_P1.0mm_Terminal_Vertical +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Vertical (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +14 +13 +Connector_Samtec_MicroMate +Samtec_T1M-12-X-SH-L_1x12-1MP_P1.0mm_Terminal_Horizontal_Latch +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Horizontal, Latch (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +14 +13 +Connector_Samtec_MicroMate +Samtec_T1M-12-X-SV-L_1x12-1MP_P1.0mm_Terminal_Vertical_Latch +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Vertical, Latch (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +14 +13 +Connector_Samtec_MicroMate +Samtec_T1M-13-X-S-RA_1x13-1MP_P1.0mm_Terminal_Horizontal +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Horizontal (Right Angle) (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +15 +14 +Connector_Samtec_MicroMate +Samtec_T1M-13-X-S-V_1x13-1MP_P1.0mm_Terminal_Vertical +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Vertical (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +15 +14 +Connector_Samtec_MicroMate +Samtec_T1M-13-X-SH-L_1x13-1MP_P1.0mm_Terminal_Horizontal_Latch +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Horizontal, Latch (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +15 +14 +Connector_Samtec_MicroMate +Samtec_T1M-13-X-SV-L_1x13-1MP_P1.0mm_Terminal_Vertical_Latch +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Vertical, Latch (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +15 +14 +Connector_Samtec_MicroMate +Samtec_T1M-14-X-S-RA_1x14-1MP_P1.0mm_Terminal_Horizontal +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Horizontal (Right Angle) (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +16 +15 +Connector_Samtec_MicroMate +Samtec_T1M-14-X-S-V_1x14-1MP_P1.0mm_Terminal_Vertical +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Vertical (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +16 +15 +Connector_Samtec_MicroMate +Samtec_T1M-14-X-SH-L_1x14-1MP_P1.0mm_Terminal_Horizontal_Latch +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Horizontal, Latch (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +16 +15 +Connector_Samtec_MicroMate +Samtec_T1M-14-X-SV-L_1x14-1MP_P1.0mm_Terminal_Vertical_Latch +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Vertical, Latch (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +16 +15 +Connector_Samtec_MicroMate +Samtec_T1M-15-X-S-RA_1x15-1MP_P1.0mm_Terminal_Horizontal +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Horizontal (Right Angle) (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +17 +16 +Connector_Samtec_MicroMate +Samtec_T1M-15-X-S-V_1x15-1MP_P1.0mm_Terminal_Vertical +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Vertical (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +17 +16 +Connector_Samtec_MicroMate +Samtec_T1M-15-X-SH-L_1x15-1MP_P1.0mm_Terminal_Horizontal_Latch +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Horizontal, Latch (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +17 +16 +Connector_Samtec_MicroMate +Samtec_T1M-15-X-SV-L_1x15-1MP_P1.0mm_Terminal_Vertical_Latch +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Vertical, Latch (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +17 +16 +Connector_Samtec_MicroMate +Samtec_T1M-16-X-S-RA_1x16-1MP_P1.0mm_Terminal_Horizontal +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Horizontal (Right Angle) (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +18 +17 +Connector_Samtec_MicroMate +Samtec_T1M-16-X-S-V_1x16-1MP_P1.0mm_Terminal_Vertical +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Vertical (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +18 +17 +Connector_Samtec_MicroMate +Samtec_T1M-16-X-SH-L_1x16-1MP_P1.0mm_Terminal_Horizontal_Latch +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Horizontal, Latch (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +18 +17 +Connector_Samtec_MicroMate +Samtec_T1M-16-X-SV-L_1x16-1MP_P1.0mm_Terminal_Vertical_Latch +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Vertical, Latch (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +18 +17 +Connector_Samtec_MicroMate +Samtec_T1M-17-X-S-RA_1x17-1MP_P1.0mm_Terminal_Horizontal +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Horizontal (Right Angle) (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +19 +18 +Connector_Samtec_MicroMate +Samtec_T1M-17-X-S-V_1x17-1MP_P1.0mm_Terminal_Vertical +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Vertical (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +19 +18 +Connector_Samtec_MicroMate +Samtec_T1M-17-X-SH-L_1x17-1MP_P1.0mm_Terminal_Horizontal_Latch +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Horizontal, Latch (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +19 +18 +Connector_Samtec_MicroMate +Samtec_T1M-17-X-SV-L_1x17-1MP_P1.0mm_Terminal_Vertical_Latch +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Vertical, Latch (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +19 +18 +Connector_Samtec_MicroMate +Samtec_T1M-18-X-S-RA_1x18-1MP_P1.0mm_Terminal_Horizontal +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Horizontal (Right Angle) (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +20 +19 +Connector_Samtec_MicroMate +Samtec_T1M-18-X-S-V_1x18-1MP_P1.0mm_Terminal_Vertical +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Vertical (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +20 +19 +Connector_Samtec_MicroMate +Samtec_T1M-18-X-SH-L_1x18-1MP_P1.0mm_Terminal_Horizontal_Latch +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Horizontal, Latch (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +20 +19 +Connector_Samtec_MicroMate +Samtec_T1M-18-X-SV-L_1x18-1MP_P1.0mm_Terminal_Vertical_Latch +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Vertical, Latch (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +20 +19 +Connector_Samtec_MicroMate +Samtec_T1M-19-X-S-RA_1x19-1MP_P1.0mm_Terminal_Horizontal +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Horizontal (Right Angle) (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +21 +20 +Connector_Samtec_MicroMate +Samtec_T1M-19-X-S-V_1x19-1MP_P1.0mm_Terminal_Vertical +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Vertical (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +21 +20 +Connector_Samtec_MicroMate +Samtec_T1M-19-X-SH-L_1x19-1MP_P1.0mm_Terminal_Horizontal_Latch +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Horizontal, Latch (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +21 +20 +Connector_Samtec_MicroMate +Samtec_T1M-19-X-SV-L_1x19-1MP_P1.0mm_Terminal_Vertical_Latch +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Vertical, Latch (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +21 +20 +Connector_Samtec_MicroMate +Samtec_T1M-20-X-S-RA_1x20-1MP_P1.0mm_Terminal_Horizontal +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Horizontal (Right Angle) (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +22 +21 +Connector_Samtec_MicroMate +Samtec_T1M-20-X-S-V_1x20-1MP_P1.0mm_Terminal_Vertical +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Vertical (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +22 +21 +Connector_Samtec_MicroMate +Samtec_T1M-20-X-SH-L_1x20-1MP_P1.0mm_Terminal_Horizontal_Latch +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Horizontal, Latch (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +22 +21 +Connector_Samtec_MicroMate +Samtec_T1M-20-X-SV-L_1x20-1MP_P1.0mm_Terminal_Vertical_Latch +Samtec Micro Mate Discrete Wire Terminal Strip, 1.00 mm Pitch, Single Row, Vertical, Latch (source: https://suddendocs.samtec.com/prints/t1m-single-row-footprint.pdf) +conn samtec discrete wire terminal +0 +22 +21 +Connector_Samtec_MicroPower +Samtec_UMPS-02-XX.X-X-V-S-W_1x02-1MP_P2.0mm_Socket_WeldTab +2.00 mm mPOWER Ultra Micro Power Socket (source: https://suddendocs.samtec.com/prints/umps-xx-xx.x-xx-v-x-x-xr-footprint.pdf) +conn samtec ultra-mirco-power socket +0 +10 +3 +Connector_Samtec_MicroPower +Samtec_UMPS-02-XX.X-X-V-S_1x02_P2.0mm_Socket +2.00 mm mPOWER Ultra Micro Power Socket (source: https://suddendocs.samtec.com/prints/umps-xx-xx.x-xx-v-x-x-xr-footprint.pdf) +conn samtec ultra-mirco-power socket +0 +2 +2 +Connector_Samtec_MicroPower +Samtec_UMPS-03-XX.X-X-V-S-W_1x03-1MP_P2.0mm_Socket_WeldTab +2.00 mm mPOWER Ultra Micro Power Socket (source: https://suddendocs.samtec.com/prints/umps-xx-xx.x-xx-v-x-x-xr-footprint.pdf) +conn samtec ultra-mirco-power socket +0 +11 +4 +Connector_Samtec_MicroPower +Samtec_UMPS-03-XX.X-X-V-S_1x03_P2.0mm_Socket +2.00 mm mPOWER Ultra Micro Power Socket (source: https://suddendocs.samtec.com/prints/umps-xx-xx.x-xx-v-x-x-xr-footprint.pdf) +conn samtec ultra-mirco-power socket +0 +3 +3 +Connector_Samtec_MicroPower +Samtec_UMPS-04-XX.X-X-V-S-W_1x04-1MP_P2.0mm_Socket_WeldTab +2.00 mm mPOWER Ultra Micro Power Socket (source: https://suddendocs.samtec.com/prints/umps-xx-xx.x-xx-v-x-x-xr-footprint.pdf) +conn samtec ultra-mirco-power socket +0 +12 +5 +Connector_Samtec_MicroPower +Samtec_UMPS-04-XX.X-X-V-S_1x04_P2.0mm_Socket +2.00 mm mPOWER Ultra Micro Power Socket (source: https://suddendocs.samtec.com/prints/umps-xx-xx.x-xx-v-x-x-xr-footprint.pdf) +conn samtec ultra-mirco-power socket +0 +4 +4 +Connector_Samtec_MicroPower +Samtec_UMPS-05-XX.X-X-V-S-W_1x05-1MP_P2.0mm_Socket_WeldTab +2.00 mm mPOWER Ultra Micro Power Socket (source: https://suddendocs.samtec.com/prints/umps-xx-xx.x-xx-v-x-x-xr-footprint.pdf) +conn samtec ultra-mirco-power socket +0 +13 +6 +Connector_Samtec_MicroPower +Samtec_UMPS-05-XX.X-X-V-S_1x05_P2.0mm_Socket +2.00 mm mPOWER Ultra Micro Power Socket (source: https://suddendocs.samtec.com/prints/umps-xx-xx.x-xx-v-x-x-xr-footprint.pdf) +conn samtec ultra-mirco-power socket +0 +5 +5 +Connector_Samtec_MicroPower +Samtec_UMPS-06-XX.X-X-V-S-W_1x06-1MP_P2.0mm_Socket_WeldTab +2.00 mm mPOWER Ultra Micro Power Socket (source: https://suddendocs.samtec.com/prints/umps-xx-xx.x-xx-v-x-x-xr-footprint.pdf) +conn samtec ultra-mirco-power socket +0 +14 +7 +Connector_Samtec_MicroPower +Samtec_UMPS-06-XX.X-X-V-S_1x06_P2.0mm_Socket +2.00 mm mPOWER Ultra Micro Power Socket (source: https://suddendocs.samtec.com/prints/umps-xx-xx.x-xx-v-x-x-xr-footprint.pdf) +conn samtec ultra-mirco-power socket +0 +6 +6 +Connector_Samtec_MicroPower +Samtec_UMPS-07-XX.X-X-V-S-W_1x07-1MP_P2.0mm_Socket_WeldTab +2.00 mm mPOWER Ultra Micro Power Socket (source: https://suddendocs.samtec.com/prints/umps-xx-xx.x-xx-v-x-x-xr-footprint.pdf) +conn samtec ultra-mirco-power socket +0 +15 +8 +Connector_Samtec_MicroPower +Samtec_UMPS-07-XX.X-X-V-S_1x07_P2.0mm_Socket +2.00 mm mPOWER Ultra Micro Power Socket (source: https://suddendocs.samtec.com/prints/umps-xx-xx.x-xx-v-x-x-xr-footprint.pdf) +conn samtec ultra-mirco-power socket +0 +7 +7 +Connector_Samtec_MicroPower +Samtec_UMPS-08-XX.X-X-V-S-W_1x08-1MP_P2.0mm_Socket_WeldTab +2.00 mm mPOWER Ultra Micro Power Socket (source: https://suddendocs.samtec.com/prints/umps-xx-xx.x-xx-v-x-x-xr-footprint.pdf) +conn samtec ultra-mirco-power socket +0 +16 +9 +Connector_Samtec_MicroPower +Samtec_UMPS-08-XX.X-X-V-S_1x08_P2.0mm_Socket +2.00 mm mPOWER Ultra Micro Power Socket (source: https://suddendocs.samtec.com/prints/umps-xx-xx.x-xx-v-x-x-xr-footprint.pdf) +conn samtec ultra-mirco-power socket +0 +8 +8 +Connector_Samtec_MicroPower +Samtec_UMPS-09-XX.X-X-V-S-W_1x09-1MP_P2.0mm_Socket_WeldTab +2.00 mm mPOWER Ultra Micro Power Socket (source: https://suddendocs.samtec.com/prints/umps-xx-xx.x-xx-v-x-x-xr-footprint.pdf) +conn samtec ultra-mirco-power socket +0 +17 +10 +Connector_Samtec_MicroPower +Samtec_UMPS-09-XX.X-X-V-S_1x09_P2.0mm_Socket +2.00 mm mPOWER Ultra Micro Power Socket (source: https://suddendocs.samtec.com/prints/umps-xx-xx.x-xx-v-x-x-xr-footprint.pdf) +conn samtec ultra-mirco-power socket +0 +9 +9 +Connector_Samtec_MicroPower +Samtec_UMPS-10-XX.X-X-V-S-W_1x10-1MP_P2.0mm_Socket_WeldTab +2.00 mm mPOWER Ultra Micro Power Socket (source: https://suddendocs.samtec.com/prints/umps-xx-xx.x-xx-v-x-x-xr-footprint.pdf) +conn samtec ultra-mirco-power socket +0 +18 +11 +Connector_Samtec_MicroPower +Samtec_UMPS-10-XX.X-X-V-S_1x10_P2.0mm_Socket +2.00 mm mPOWER Ultra Micro Power Socket (source: https://suddendocs.samtec.com/prints/umps-xx-xx.x-xx-v-x-x-xr-footprint.pdf) +conn samtec ultra-mirco-power socket +0 +10 +10 +Connector_Samtec_MicroPower +Samtec_UMPT-02-XX.X-X-V-S-W_1x02-1MP_P2.0mm_Terminal_WeldTab +2.00 mm mPOWER Ultra Micro Power Terminal, Vertical (source: https://suddendocs.samtec.com/prints/umpt-xx-xx.x-xx-v-x-x-x-x-xr-footprint.pdf) +conn samtec ultra-mirco-power terminal +0 +10 +3 +Connector_Samtec_MicroPower +Samtec_UMPT-02-XX.X-X-V-S_1x02_P2.0mm_Terminal +2.00 mm mPOWER Ultra Micro Power Terminal, Vertical (source: https://suddendocs.samtec.com/prints/umpt-xx-xx.x-xx-v-x-x-x-x-xr-footprint.pdf) +conn samtec ultra-mirco-power terminal +0 +2 +2 +Connector_Samtec_MicroPower +Samtec_UMPT-03-XX.X-X-V-S-W_1x03-1MP_P2.0mm_Terminal_WeldTab +2.00 mm mPOWER Ultra Micro Power Terminal, Vertical (source: https://suddendocs.samtec.com/prints/umpt-xx-xx.x-xx-v-x-x-x-x-xr-footprint.pdf) +conn samtec ultra-mirco-power terminal +0 +11 +4 +Connector_Samtec_MicroPower +Samtec_UMPT-03-XX.X-X-V-S_1x03_P2.0mm_Terminal +2.00 mm mPOWER Ultra Micro Power Terminal, Vertical (source: https://suddendocs.samtec.com/prints/umpt-xx-xx.x-xx-v-x-x-x-x-xr-footprint.pdf) +conn samtec ultra-mirco-power terminal +0 +3 +3 +Connector_Samtec_MicroPower +Samtec_UMPT-04-XX.X-X-V-S-W_1x04-1MP_P2.0mm_Terminal_WeldTab +2.00 mm mPOWER Ultra Micro Power Terminal, Vertical (source: https://suddendocs.samtec.com/prints/umpt-xx-xx.x-xx-v-x-x-x-x-xr-footprint.pdf) +conn samtec ultra-mirco-power terminal +0 +12 +5 +Connector_Samtec_MicroPower +Samtec_UMPT-04-XX.X-X-V-S_1x04_P2.0mm_Terminal +2.00 mm mPOWER Ultra Micro Power Terminal, Vertical (source: https://suddendocs.samtec.com/prints/umpt-xx-xx.x-xx-v-x-x-x-x-xr-footprint.pdf) +conn samtec ultra-mirco-power terminal +0 +4 +4 +Connector_Samtec_MicroPower +Samtec_UMPT-05-XX.X-X-V-S-W_1x05-1MP_P2.0mm_Terminal_WeldTab +2.00 mm mPOWER Ultra Micro Power Terminal, Vertical (source: https://suddendocs.samtec.com/prints/umpt-xx-xx.x-xx-v-x-x-x-x-xr-footprint.pdf) +conn samtec ultra-mirco-power terminal +0 +13 +6 +Connector_Samtec_MicroPower +Samtec_UMPT-05-XX.X-X-V-S_1x05_P2.0mm_Terminal +2.00 mm mPOWER Ultra Micro Power Terminal, Vertical (source: https://suddendocs.samtec.com/prints/umpt-xx-xx.x-xx-v-x-x-x-x-xr-footprint.pdf) +conn samtec ultra-mirco-power terminal +0 +5 +5 +Connector_Samtec_MicroPower +Samtec_UMPT-06-XX.X-X-V-S-W_1x06-1MP_P2.0mm_Terminal_WeldTab +2.00 mm mPOWER Ultra Micro Power Terminal, Vertical (source: https://suddendocs.samtec.com/prints/umpt-xx-xx.x-xx-v-x-x-x-x-xr-footprint.pdf) +conn samtec ultra-mirco-power terminal +0 +14 +7 +Connector_Samtec_MicroPower +Samtec_UMPT-06-XX.X-X-V-S_1x06_P2.0mm_Terminal +2.00 mm mPOWER Ultra Micro Power Terminal, Vertical (source: https://suddendocs.samtec.com/prints/umpt-xx-xx.x-xx-v-x-x-x-x-xr-footprint.pdf) +conn samtec ultra-mirco-power terminal +0 +6 +6 +Connector_Samtec_MicroPower +Samtec_UMPT-07-XX.X-X-V-S-W_1x07-1MP_P2.0mm_Terminal_WeldTab +2.00 mm mPOWER Ultra Micro Power Terminal, Vertical (source: https://suddendocs.samtec.com/prints/umpt-xx-xx.x-xx-v-x-x-x-x-xr-footprint.pdf) +conn samtec ultra-mirco-power terminal +0 +15 +8 +Connector_Samtec_MicroPower +Samtec_UMPT-07-XX.X-X-V-S_1x07_P2.0mm_Terminal +2.00 mm mPOWER Ultra Micro Power Terminal, Vertical (source: https://suddendocs.samtec.com/prints/umpt-xx-xx.x-xx-v-x-x-x-x-xr-footprint.pdf) +conn samtec ultra-mirco-power terminal +0 +7 +7 +Connector_Samtec_MicroPower +Samtec_UMPT-08-XX.X-X-V-S-W_1x08-1MP_P2.0mm_Terminal_WeldTab +2.00 mm mPOWER Ultra Micro Power Terminal, Vertical (source: https://suddendocs.samtec.com/prints/umpt-xx-xx.x-xx-v-x-x-x-x-xr-footprint.pdf) +conn samtec ultra-mirco-power terminal +0 +16 +9 +Connector_Samtec_MicroPower +Samtec_UMPT-08-XX.X-X-V-S_1x08_P2.0mm_Terminal +2.00 mm mPOWER Ultra Micro Power Terminal, Vertical (source: https://suddendocs.samtec.com/prints/umpt-xx-xx.x-xx-v-x-x-x-x-xr-footprint.pdf) +conn samtec ultra-mirco-power terminal +0 +8 +8 +Connector_Samtec_MicroPower +Samtec_UMPT-09-XX.X-X-V-S-W_1x09-1MP_P2.0mm_Terminal_WeldTab +2.00 mm mPOWER Ultra Micro Power Terminal, Vertical (source: https://suddendocs.samtec.com/prints/umpt-xx-xx.x-xx-v-x-x-x-x-xr-footprint.pdf) +conn samtec ultra-mirco-power terminal +0 +17 +10 +Connector_Samtec_MicroPower +Samtec_UMPT-09-XX.X-X-V-S_1x09_P2.0mm_Terminal +2.00 mm mPOWER Ultra Micro Power Terminal, Vertical (source: https://suddendocs.samtec.com/prints/umpt-xx-xx.x-xx-v-x-x-x-x-xr-footprint.pdf) +conn samtec ultra-mirco-power terminal +0 +9 +9 +Connector_Samtec_MicroPower +Samtec_UMPT-10-XX.X-X-V-S-W_1x10-1MP_P2.0mm_Terminal_WeldTab +2.00 mm mPOWER Ultra Micro Power Terminal, Vertical (source: https://suddendocs.samtec.com/prints/umpt-xx-xx.x-xx-v-x-x-x-x-xr-footprint.pdf) +conn samtec ultra-mirco-power terminal +0 +18 +11 +Connector_Samtec_MicroPower +Samtec_UMPT-10-XX.X-X-V-S_1x10_P2.0mm_Terminal +2.00 mm mPOWER Ultra Micro Power Terminal, Vertical (source: https://suddendocs.samtec.com/prints/umpt-xx-xx.x-xx-v-x-x-x-x-xr-footprint.pdf) +conn samtec ultra-mirco-power terminal +0 +10 +10 +Connector_Stocko +Stocko_MKS_1651-6-0-202_1x2_P2.50mm_Vertical +Stocko MKS 16xx series connector, (https://www.stocko-contact.com/downloads/steckverbindersystem-raster-2,5-mm.pdf#page=15), generated with kicad-footprint-generator +Stocko RFK MKS 16xx +0 +2 +2 +Connector_Stocko +Stocko_MKS_1652-6-0-202_1x2_P2.50mm_Vertical +Stocko MKS 16xx series connector, (https://www.stocko-contact.com/downloads/steckverbindersystem-raster-2,5-mm.pdf#page=15), generated with kicad-footprint-generator +Stocko RFK MKS 16xx +0 +2 +2 +Connector_Stocko +Stocko_MKS_1653-6-0-303_1x3_P2.50mm_Vertical +Stocko MKS 16xx series connector, (https://www.stocko-contact.com/downloads/steckverbindersystem-raster-2,5-mm.pdf#page=15), generated with kicad-footprint-generator +Stocko RFK MKS 16xx +0 +3 +3 +Connector_Stocko +Stocko_MKS_1654-6-0-404_1x4_P2.50mm_Vertical +Stocko MKS 16xx series connector, (https://www.stocko-contact.com/downloads/steckverbindersystem-raster-2,5-mm.pdf#page=15), generated with kicad-footprint-generator +Stocko RFK MKS 16xx +0 +4 +4 +Connector_Stocko +Stocko_MKS_1655-6-0-505_1x5_P2.50mm_Vertical +Stocko MKS 16xx series connector, (https://www.stocko-contact.com/downloads/steckverbindersystem-raster-2,5-mm.pdf#page=15), generated with kicad-footprint-generator +Stocko RFK MKS 16xx +0 +5 +5 +Connector_Stocko +Stocko_MKS_1656-6-0-606_1x6_P2.50mm_Vertical +Stocko MKS 16xx series connector, (https://www.stocko-contact.com/downloads/steckverbindersystem-raster-2,5-mm.pdf#page=15), generated with kicad-footprint-generator +Stocko RFK MKS 16xx +0 +6 +6 +Connector_Stocko +Stocko_MKS_1657-6-0-707_1x7_P2.50mm_Vertical +Stocko MKS 16xx series connector, (https://www.stocko-contact.com/downloads/steckverbindersystem-raster-2,5-mm.pdf#page=15), generated with kicad-footprint-generator +Stocko RFK MKS 16xx +0 +7 +7 +Connector_Stocko +Stocko_MKS_1658-6-0-808_1x8_P2.50mm_Vertical +Stocko MKS 16xx series connector, (https://www.stocko-contact.com/downloads/steckverbindersystem-raster-2,5-mm.pdf#page=15), generated with kicad-footprint-generator +Stocko RFK MKS 16xx +0 +8 +8 +Connector_Stocko +Stocko_MKS_1659-6-0-909_1x9_P2.50mm_Vertical +Stocko MKS 16xx series connector, (https://www.stocko-contact.com/downloads/steckverbindersystem-raster-2,5-mm.pdf#page=15), generated with kicad-footprint-generator +Stocko RFK MKS 16xx +0 +9 +9 +Connector_Stocko +Stocko_MKS_1660-6-0-1010_1x10_P2.50mm_Vertical +Stocko MKS 16xx series connector, (https://www.stocko-contact.com/downloads/steckverbindersystem-raster-2,5-mm.pdf#page=15), generated with kicad-footprint-generator +Stocko RFK MKS 16xx +0 +10 +10 +Connector_Stocko +Stocko_MKS_1661-6-0-1111_1x11_P2.50mm_Vertical +Stocko MKS 16xx series connector, (https://www.stocko-contact.com/downloads/steckverbindersystem-raster-2,5-mm.pdf#page=15), generated with kicad-footprint-generator +Stocko RFK MKS 16xx +0 +11 +11 +Connector_Stocko +Stocko_MKS_1662-6-0-1212_1x12_P2.50mm_Vertical +Stocko MKS 16xx series connector, (https://www.stocko-contact.com/downloads/steckverbindersystem-raster-2,5-mm.pdf#page=15), generated with kicad-footprint-generator +Stocko RFK MKS 16xx +0 +12 +12 +Connector_Stocko +Stocko_MKS_1663-6-0-1313_1x13_P2.50mm_Vertical +Stocko MKS 16xx series connector, (https://www.stocko-contact.com/downloads/steckverbindersystem-raster-2,5-mm.pdf#page=15), generated with kicad-footprint-generator +Stocko RFK MKS 16xx +0 +13 +13 +Connector_Stocko +Stocko_MKS_1664-6-0-1414_1x14_P2.50mm_Vertical +Stocko MKS 16xx series connector, (https://www.stocko-contact.com/downloads/steckverbindersystem-raster-2,5-mm.pdf#page=15), generated with kicad-footprint-generator +Stocko RFK MKS 16xx +0 +14 +14 +Connector_Stocko +Stocko_MKS_1665-6-0-1515_1x15_P2.50mm_Vertical +Stocko MKS 16xx series connector, (https://www.stocko-contact.com/downloads/steckverbindersystem-raster-2,5-mm.pdf#page=15), generated with kicad-footprint-generator +Stocko RFK MKS 16xx +0 +15 +15 +Connector_Stocko +Stocko_MKS_1666-6-0-1616_1x16_P2.50mm_Vertical +Stocko MKS 16xx series connector, (https://www.stocko-contact.com/downloads/steckverbindersystem-raster-2,5-mm.pdf#page=15), generated with kicad-footprint-generator +Stocko RFK MKS 16xx +0 +16 +16 +Connector_Stocko +Stocko_MKS_1667-6-0-1717_1x17_P2.50mm_Vertical +Stocko MKS 16xx series connector, (https://www.stocko-contact.com/downloads/steckverbindersystem-raster-2,5-mm.pdf#page=15), generated with kicad-footprint-generator +Stocko RFK MKS 16xx +0 +17 +17 +Connector_Stocko +Stocko_MKS_1668-6-0-1818_1x18_P2.50mm_Vertical +Stocko MKS 16xx series connector, (https://www.stocko-contact.com/downloads/steckverbindersystem-raster-2,5-mm.pdf#page=15), generated with kicad-footprint-generator +Stocko RFK MKS 16xx +0 +18 +18 +Connector_Stocko +Stocko_MKS_1669-6-0-1919_1x19_P2.50mm_Vertical +Stocko MKS 16xx series connector, (https://www.stocko-contact.com/downloads/steckverbindersystem-raster-2,5-mm.pdf#page=15), generated with kicad-footprint-generator +Stocko RFK MKS 16xx +0 +19 +19 +Connector_Stocko +Stocko_MKS_1670-6-0-2020_1x20_P2.50mm_Vertical +Stocko MKS 16xx series connector, (https://www.stocko-contact.com/downloads/steckverbindersystem-raster-2,5-mm.pdf#page=15), generated with kicad-footprint-generator +Stocko RFK MKS 16xx +0 +20 +20 +Connector_TE-Connectivity +TE_1-826576-3_1x13_P3.96mm_Vertical +TE, 1-826576-3, 13 Pins (https://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=826576&DocType=Customer+Drawing&DocLang=English), generated with kicad-footprint-generator +connector TE 826576 vertical +0 +13 +13 +Connector_TE-Connectivity +TE_1-826576-5_1x15_P3.96mm_Vertical +TE, 1-826576-5, 15 Pins (https://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=826576&DocType=Customer+Drawing&DocLang=English), generated with kicad-footprint-generator +connector TE 826576 vertical +0 +15 +15 +Connector_TE-Connectivity +TE_1-826576-6_1x16_P3.96mm_Vertical +TE, 1-826576-6, 16 Pins (https://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=826576&DocType=Customer+Drawing&DocLang=English), generated with kicad-footprint-generator +connector TE 826576 vertical +0 +16 +16 +Connector_TE-Connectivity +TE_1-826576-7_1x17_P3.96mm_Vertical +TE, 1-826576-7, 17 Pins (https://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=826576&DocType=Customer+Drawing&DocLang=English), generated with kicad-footprint-generator +connector TE 826576 vertical +0 +17 +17 +Connector_TE-Connectivity +TE_1-826576-8_1x18_P3.96mm_Vertical +TE, 1-826576-8, 18 Pins (https://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=826576&DocType=Customer+Drawing&DocLang=English), generated with kicad-footprint-generator +connector TE 826576 vertical +0 +18 +18 +Connector_TE-Connectivity +TE_2-826576-0_1x20_P3.96mm_Vertical +TE, 2-826576-0, 20 Pins (https://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=826576&DocType=Customer+Drawing&DocLang=English), generated with kicad-footprint-generator +connector TE 826576 vertical +0 +20 +20 +Connector_TE-Connectivity +TE_3-826576-6_1x36_P3.96mm_Vertical +TE, 3-826576-6, 36 Pins (https://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=826576&DocType=Customer+Drawing&DocLang=English), generated with kicad-footprint-generator +connector TE 826576 vertical +0 +36 +36 +Connector_TE-Connectivity +TE_440054-2_1x02_P2.00mm_Vertical +TE Connectivity, HDI, Wire-to-Board, Fully Shrouded, Vertical Header: https://www.te.com/usa-en/product-440054-2.datasheet.pdf +connector header hdr horizontal vertical shrouded fully-shrounded 440054-2 2-440054-2 4-440054-2 6-440054-2 2-440054-6 4-440054-6 6-440054-6 +0 +2 +2 +Connector_TE-Connectivity +TE_440055-2_1x02_P2.00mm_Horizontal +TE Connectivity, HDI, Wire-to-Board, Fully Shrouded, Header: https://www.te.com/usa-en/product-440055-2.datasheet.pdf +connector header hdr horizontal right-angle shrouded fully-shrounded 440055-2 2-440055-2 4-440055-2 6-440055-2 8-440055-2 +0 +2 +2 +Connector_TE-Connectivity +TE_826576-2_1x02_P3.96mm_Vertical +TE, 826576-2, 2 Pins (https://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=826576&DocType=Customer+Drawing&DocLang=English), generated with kicad-footprint-generator +connector TE 826576 vertical +0 +2 +2 +Connector_TE-Connectivity +TE_826576-3_1x03_P3.96mm_Vertical +TE, 826576-3, 3 Pins (https://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=826576&DocType=Customer+Drawing&DocLang=English), generated with kicad-footprint-generator +connector TE 826576 vertical +0 +3 +3 +Connector_TE-Connectivity +TE_826576-5_1x05_P3.96mm_Vertical +TE, 826576-5, 5 Pins (https://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=826576&DocType=Customer+Drawing&DocLang=English), generated with kicad-footprint-generator +connector TE 826576 vertical +0 +5 +5 +Connector_TE-Connectivity +TE_826576-6_1x06_P3.96mm_Vertical +TE, 826576-6, 6 Pins (https://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=826576&DocType=Customer+Drawing&DocLang=English), generated with kicad-footprint-generator +connector TE 826576 vertical +0 +6 +6 +Connector_TE-Connectivity +TE_826576-7_1x07_P3.96mm_Vertical +TE, 826576-7, 7 Pins (https://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=826576&DocType=Customer+Drawing&DocLang=English), generated with kicad-footprint-generator +connector TE 826576 vertical +0 +7 +7 +Connector_TE-Connectivity +TE_826576-8_1x08_P3.96mm_Vertical +TE, 826576-8, 8 Pins (https://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=826576&DocType=Customer+Drawing&DocLang=English), generated with kicad-footprint-generator +connector TE 826576 vertical +0 +8 +8 +Connector_TE-Connectivity +TE_826576-9_1x09_P3.96mm_Vertical +TE, 826576-9, 9 Pins (https://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=826576&DocType=Customer+Drawing&DocLang=English), generated with kicad-footprint-generator +connector TE 826576 vertical +0 +9 +9 +Connector_TE-Connectivity +TE_2834006-1_1x01_P4.0mm_Horizontal +TE Connectivity Buchanan WireMate connector, Poke-In series, 1-way, 4.0mm pitch, AWG18-22 (0.3255-0.823mm2), https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F2834006%7FB6%7Fpdf%7FEnglish%7FENG_CD_2834006_B6.pdf%7F2834006-1 +wire connector +0 +2 +1 +Connector_TE-Connectivity +TE_2834006-2_1x02_P4.0mm_Horizontal +TE Connectivity Buchanan WireMate connector, Poke-In series, 2-way, 4.0mm pitch, AWG18-22 (0.3255-0.823mm2), https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F2834006%7FB6%7Fpdf%7FEnglish%7FENG_CD_2834006_B6.pdf%7F2834006-1 +wire connector +0 +4 +2 +Connector_TE-Connectivity +TE_2834006-3_1x03_P4.0mm_Horizontal +TE Connectivity Buchanan WireMate connector, Poke-In series, 3-way, 4.0mm pitch, AWG18-22 (0.3255-0.823mm2), https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F2834006%7FB6%7Fpdf%7FEnglish%7FENG_CD_2834006_B6.pdf%7F2834006-1 +wire connector +0 +6 +3 +Connector_TE-Connectivity +TE_2834006-4_1x04_P4.0mm_Horizontal +TE Connectivity Buchanan WireMate connector, Poke-In series, 4-way, 4.0mm pitch, AWG18-22 (0.3255-0.823mm2), https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F2834006%7FB6%7Fpdf%7FEnglish%7FENG_CD_2834006_B6.pdf%7F2834006-1 +wire connector +0 +8 +4 +Connector_TE-Connectivity +TE_2834006-5_1x05_P4.0mm_Horizontal +TE Connectivity Buchanan WireMate connector, Poke-In series, 5-way, 4.0mm pitch, AWG18-22 (0.3255-0.823mm2), https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F2834006%7FB6%7Fpdf%7FEnglish%7FENG_CD_2834006_B6.pdf%7F2834006-1 +wire connector +0 +10 +5 +Connector_TE-Connectivity +TE_5767171-1_2x19_P0.635mm_Vertical +PCB Mount Receptacle, Vertical, Board-to-Board, 38 Position, 24.003mm / .64mm [.945in] Centerline, Header Only, Palladium Nickel (https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F5767171%7FB2%7Fpdf%7FEnglish%7FENG_CD_5767171_B2.pdf%7F5767171-1#page=2) +mictor38 receptacle board-to-board +0 +43 +39 +Connector_TE-Connectivity +TE_AMPSEAL_1-776087-x_3Rows_23_P0.4mm_Horizontal +Connector +TE 776087 +0 +23 +23 +Connector_TE-Connectivity +TE_MATE-N-LOK_1-770182-x_3x03_P4.14mm_Vertical +Molex Mini-Universal MATE-N-LOK, old mpn/engineering number: 1-770182-x, 3 Pins per row (http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=82181_SOFTSHELL_HIGH_DENSITY&DocType=CS&DocLang=EN), generated with kicad-footprint-generator +connector TE MATE-N-LOK vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +0 +1 +1 +Connector_TE-Connectivity +TE_MATE-N-LOK_350211-1_1x04_P5.08mm_Vertical +https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F350211%7FU5%7Fpdf%7FEnglish%7FENG_CD_350211_U5.pdf%7F350211-1 +connector TE MATE-N-LOK top entry ATA PATA IDE 5.25 inch floppy drive power +0 +4 +4 +Connector_TE-Connectivity +TE_Micro-MaTch_1-215079-0_2x05_P1.27mm_Vertical +TE-Connectivity Micro-MaTch female-on-board top-entry thru-hole 10 pin connector, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F215079%7FY1%7Fpdf%7FEnglish%7FENG_CD_215079_Y1.pdf%7F215079-4 +connector TE-Connectivity Micro-MaTch Vertical 1-215079-0 8-215079-10 +0 +10 +10 +Connector_TE-Connectivity +TE_Micro-MaTch_1-215079-2_2x06_P1.27mm_Vertical +TE-Connectivity Micro-MaTch female-on-board top-entry thru-hole 12 pin connector, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F215079%7FY1%7Fpdf%7FEnglish%7FENG_CD_215079_Y1.pdf%7F215079-4 +connector TE-Connectivity Micro-MaTch Vertical 1-215079-2 8-215079-12 +0 +12 +12 +Connector_TE-Connectivity +TE_Micro-MaTch_1-215079-4_2x07_P1.27mm_Vertical +TE-Connectivity Micro-MaTch female-on-board top-entry thru-hole 14 pin connector, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F215079%7FY1%7Fpdf%7FEnglish%7FENG_CD_215079_Y1.pdf%7F215079-4 +connector TE-Connectivity Micro-MaTch Vertical 1-215079-4 8-215079-14 +0 +14 +14 +Connector_TE-Connectivity +TE_Micro-MaTch_1-215079-6_2x08_P1.27mm_Vertical +TE-Connectivity Micro-MaTch female-on-board top-entry thru-hole 16 pin connector, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F215079%7FY1%7Fpdf%7FEnglish%7FENG_CD_215079_Y1.pdf%7F215079-4 +connector TE-Connectivity Micro-MaTch Vertical 1-215079-6 8-215079-16 +0 +16 +16 +Connector_TE-Connectivity +TE_Micro-MaTch_1-215079-8_2x09_P1.27mm_Vertical +TE-Connectivity Micro-MaTch female-on-board top-entry thru-hole 18 pin connector, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F215079%7FY1%7Fpdf%7FEnglish%7FENG_CD_215079_Y1.pdf%7F215079-4 +connector TE-Connectivity Micro-MaTch Vertical 1-215079-8 8-215079-18 +0 +18 +18 +Connector_TE-Connectivity +TE_Micro-MaTch_2-215079-0_2x10_P1.27mm_Vertical +TE-Connectivity Micro-MaTch female-on-board top-entry thru-hole 20 pin connector, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F215079%7FY1%7Fpdf%7FEnglish%7FENG_CD_215079_Y1.pdf%7F215079-4 +connector TE-Connectivity Micro-MaTch Vertical 2-215079-0 9-215079-20 +0 +20 +20 +Connector_TE-Connectivity +TE_Micro-MaTch_215079-4_2x02_P1.27mm_Vertical +TE-Connectivity Micro-MaTch female-on-board top-entry thru-hole 4 pin connector, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F215079%7FY1%7Fpdf%7FEnglish%7FENG_CD_215079_Y1.pdf%7F215079-4 +connector TE-Connectivity Micro-MaTch Vertical 215079-4 7-215079-4 +0 +4 +4 +Connector_TE-Connectivity +TE_Micro-MaTch_215079-6_2x03_P1.27mm_Vertical +TE-Connectivity Micro-MaTch female-on-board top-entry thru-hole 6 pin connector, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F215079%7FY1%7Fpdf%7FEnglish%7FENG_CD_215079_Y1.pdf%7F215079-4 +connector TE-Connectivity Micro-MaTch Vertical 215079-6 7-215079-6 +0 +6 +6 +Connector_TE-Connectivity +TE_Micro-MaTch_215079-8_2x04_P1.27mm_Vertical +TE-Connectivity Micro-MaTch female-on-board top-entry thru-hole 8 pin connector, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F215079%7FY1%7Fpdf%7FEnglish%7FENG_CD_215079_Y1.pdf%7F215079-4 +connector TE-Connectivity Micro-MaTch Vertical 215079-8 7-215079-8 +0 +8 +8 +Connector_TE-Connectivity +TE_T4041037031-000_M8_03_Socket_Straight +Shielded M8 socket 3 ways connector panel, straight and rear mount (https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7FT404103010X000%7FA%7Fpdf%7FEnglish%7FENG_CD_T404103010X000_A.pdf%7FT4041037041-000) +three-pin M8 +0 +5 +4 +Connector_TE-Connectivity +TE_T4041037041-000_M8_04_Socket_Straight +Shielded M8 socket 4 ways connector panel, straight and rear mount (https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7FT404103010X000%7FA%7Fpdf%7FEnglish%7FENG_CD_T404103010X000_A.pdf%7FT4041037041-000) +four-pin M8 +0 +6 +5 +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_Molex_48406-0001_Horizontal_Stacked +USB 3.0, type A, right angle, stacked (https://www.molex.com/content/dam/molex/molex-dot-com/products/automated/en-us/salesdrawingpdf/484/48406/484060001_sd.pdf) +USB 3.0 type A right angle stacked dual +0 +22 +19 +Connector_USB +USB3_A_Plug_Wuerth_692112030100_Horizontal +USB 3.0 Type A SMT Plug, Horizontal, https://www.we-online.com/components/products/datasheet/692112030100.pdf +usb A plug horizontal +0 +11 +10 +Connector_USB +USB3_A_Receptacle_Wuerth_692122030100 +USB 3.0, type A, right angle (https://www.we-online.com/katalog/datasheet/692122030100.pdf) +USB 3.0 type A right angle Würth +0 +11 +10 +Connector_USB +USB3_Micro-B_Connfly_DS1104-01 +Micro USB B receptable with flange, bottom-mount, SMD, right-angle (http://en.connfly.com/static/upload/file/pdf/DS1104-01.pdf) +USB 3.0 Micro B SMD right angle +0 +16 +11 +Connector_USB +USB_A_CNCTech_1001-011-01101_Horizontal +USB type A Plug, Horizontal, http://cnctech.us/pdfs/1001-011-01101.pdf +USB-A +0 +6 +5 +Connector_USB +USB_A_CUI_UJ2-ADH-TH_Horizontal_Stacked +USB-A two stacked horizontal receptacle, through-hole (https://www.cuidevices.com/product/resource/uj2-adh-th.pdf) +USB-A CUI stacked horizontal through-hole +0 +12 +9 +Connector_USB +USB_A_Connfly_DS1095 +USB type A receptacle, THT, horizontal, https://en.connfly.com/static/upload/file/DS1095.pdf +Connfly female socket through-hole +0 +6 +5 +Connector_USB +USB_A_Connfly_DS1098_Horizontal +USB type A Plug, Horizontal, https://en.connfly.com/static/upload/file//DS1098.pdf +USB-A +0 +6 +5 +Connector_USB +USB_A_Kycon_KUSBX-AS1N-B_Horizontal +Kycon, USB-A receptacle, through-hole, https://www.kycon.com/Catalog_PDF/KUSBX.pdf' +USB-A receptacle horizontal THT +0 +6 +5 +Connector_USB +USB_A_Molex_48037-2200_Horizontal +USB type A Plug, Horizontal, https://www.molex.com/pdm_docs/sd/480372200_sd.pdf +USB-A +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_Receptacle_GCT_USB1046 +GCT USB1046, USB Type A, https://gct.co/files/drawings/usb1046.pdf +USB SMD Type-A Receptacle Right Angle +0 +8 +5 +Connector_USB +USB_A_Receptacle_XKB_U231-091N-4BLRA00-S +USB 3.0 Type A, right-angle, SMT, https://datasheet.lcsc.com/lcsc/2110100130_XKB-Connectivity-U231-091N-4BLRA00-S_C2880618.pdf +USB A Type-A Receptacle SMD +0 +13 +10 +Connector_USB +USB_A_Stewart_SS-52100-001_Horizontal +USB A connector https://belfuse.com/resources/drawings/stewartconnector/dr-stw-ss-52100-001.pdf +USB_A Female Connector receptacle +0 +6 +5 +Connector_USB +USB_A_TE_292303-7_Horizontal +USB type A, Horizontal, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=292303&DocType=Customer+Drawing&DocLang=English +USB_A Female Connector receptacle +0 +6 +5 +Connector_USB +USB_A_Wuerth_614004134726_Horizontal +USB A connector https://www.we-online.com/catalog/datasheet/614004134726.pdf +USB_A Female Connector receptacle +0 +8 +5 +Connector_USB +USB_A_Wuerth_61400826021_Horizontal_Stacked +Stacked USB A connector http://katalog.we-online.de/em/datasheet/61400826021.pdf +Wuerth stacked USB_A +0 +12 +9 +Connector_USB +USB_B_Amphenol_MUSB-D511_Vertical_Rugged +A,phenol MUSB_D511, USB B female connector, straight, rugged, https://www.amphenolcanada.com/ProductSearch/drawings/AC/MUSBD511XX.pdf +USB_B_MUSB_Straight female connector straight rugged MUSB D511 +0 +6 +5 +Connector_USB +USB_B_Lumberg_2411_02_Horizontal +USB 2.0 receptacle type B, horizontal version, through-hole, https://downloads.lumberg.com/datenblaetter/en/2411_02.pdf +USB B receptacle horizontal through-hole +0 +6 +5 +Connector_USB +USB_B_OST_USB-B1HSxx_Horizontal +USB B receptacle, Horizontal, through-hole, http://www.on-shore.com/wp-content/uploads/2015/09/usb-b1hsxx.pdf +USB-B receptacle horizontal through-hole +0 +6 +5 +Connector_USB +USB_B_TE_5787834_Vertical +http://www.mouser.com/ds/2/418/NG_CD_5787834_A4-669110.pdf +USB_B USB B vertical female connector +0 +6 +5 +Connector_USB +USB_C_Plug_JAE_DX07P024AJ1 +Universal Serial Bus (USB) Shielded I/O Plug, Type C, Right Angle, Surface Mount, https://www.jae.com/en/searchfilter/?topics_keyword=DX07P024AJ1&mainItemSelect=1 +USB Type-C Plug Edge Mount +0 +30 +25 +Connector_USB +USB_C_Plug_Molex_105444 +Universal Serial Bus (USB) Shielded I/O Plug, Type C, Right Angle, Surface Mount, http://www.molex.com/pdm_docs/sd/1054440001_sd.pdf +USB Type-C Plug Edge Mount +0 +24 +23 +Connector_USB +USB_C_Plug_ShenzhenJingTuoJin_918-118A2021Y40002_Vertical +Low-profile vertical USB 2.0 Type C Plug Shenzhen Jing Tuo Jin Electronics Co 918-118A2021Y40002 ( https://datasheet.lcsc.com/lcsc/1912111437_Jing-Extension-of-the-Electronic-Co--918-118A2021Y40002_C399939.pdf ) also compatible with Korean HRO Parts Elec TYPE-C-31-G-06 +type-c usb2 +0 +18 +17 +Connector_USB +USB_C_Receptacle_Amphenol_124019772112A +USB TYPE C Receptacle, USB2.0, Waterproof, Dual Row SMT, IPX8, https://cdn.amphenol-cs.com/media/wysiwyg/files/drawing/c12401977-3.pdf +USB C Type-C Waterproof +0 +22 +17 +Connector_USB +USB_C_Receptacle_Amphenol_12401548E4-2A +USB TYPE C, RA RCPT PCB, Hybrid, https://www.amphenolcanada.com/StockAvailabilityPrice.aspx?From=&PartNum=12401548E4%7e2A +USB C Type-C Receptacle Hybrid +0 +28 +25 +Connector_USB +USB_C_Receptacle_Amphenol_12401548E4-2A_CircularHoles +USB TYPE C, RA RCPT PCB, Hybrid, https://www.amphenolcanada.com/StockAvailabilityPrice.aspx?From=&PartNum=12401548E4%7e2A +USB C Type-C Receptacle Hybrid +0 +28 +25 +Connector_USB +USB_C_Receptacle_Amphenol_12401610E4-2A +USB TYPE C, RA RCPT PCB, SMT, https://www.amphenolcanada.com/StockAvailabilityPrice.aspx?From=&PartNum=12401610E4%7e2A +USB C Type-C Receptacle SMD +0 +28 +25 +Connector_USB +USB_C_Receptacle_Amphenol_12401610E4-2A_CircularHoles +USB TYPE C, RA RCPT PCB, SMT, https://www.amphenolcanada.com/StockAvailabilityPrice.aspx?From=&PartNum=12401610E4%7e2A +USB C Type-C Receptacle SMD +0 +28 +25 +Connector_USB +USB_C_Receptacle_Amphenol_12401948E412A +USB TYPE C, USB 2.0, SMT, https://cdn.amphenol-cs.com/media/wysiwyg/files/drawing/c12401948.pdf +Amphenol +0 +20 +16 +Connector_USB +USB_C_Receptacle_CNCTech_C-ARA1-AK51X +USB Type-C 3.0 Receptacle, 24-pin, right angle (source: https://www.cnctech.us/pdfs/C-ARA1-AK512.pdf) +USB C Type-C Receptacle Hybrid CNCTech C-ARA1-AK51X +0 +32 +25 +Connector_USB +USB_C_Receptacle_G-Switch_GT-USB-7010ASV +USB Type C, right-angle, SMT, https://datasheet.lcsc.com/lcsc/2204071530_G-Switch-GT-USB-7010ASV_C2988369.pdf +USB C Type-C Receptacle SMD +0 +20 +17 +Connector_USB +USB_C_Receptacle_G-Switch_GT-USB-7025 +USB Type C, right-angle, SMT, https://www.lcsc.com/datasheet/lcsc_datasheet_2312191005_G-Switch-GT-USB-7025_C963213.pdf +USB C Type-C Receptacle SMD +0 +22 +18 +Connector_USB +USB_C_Receptacle_G-Switch_GT-USB-7051x +USB Type C, vertical, SMT, https://datasheet.lcsc.com/lcsc/2108072030_G-Switch-GT-USB-7051A_C2843970.pdf +USB C Type-C Receptacle SMD GT-USB-7051A GT-USB-7051B +0 +20 +17 +Connector_USB +USB_C_Receptacle_GCT_USB4085 +USB 2.0 Type C Receptacle, https://gct.co/Files/Drawings/USB4085.pdf +USB Type-C Receptacle Through-hole Right angle +0 +20 +17 +Connector_USB +USB_C_Receptacle_GCT_USB4105-xx-A_16P_TopMnt_Horizontal +USB 2.0 Type C Receptacle, GCT, 16P, top mounted, horizontal, 5A: https://gct.co/files/drawings/usb4105.pdf +USB C Type-C Receptacle SMD USB 2.0 16P 16C USB4105-15-A USB4105-15-A-060 USB4105-15-A-120 USB4105-GF-A USB4105-GF-A-060 USB4105-GF-A-120 +0 +20 +17 +Connector_USB +USB_C_Receptacle_GCT_USB4110 +USB 2.0 Type C Receptacle, GCT, 16P, top mounted, horizontal, 5A, https://gct.co/files/drawings/usb4110.pdf +USB 2.0 C Type-C Receptacle SMD 16P 16C USB4110-GF-A +0 +20 +17 +Connector_USB +USB_C_Receptacle_GCT_USB4115-03-C +USB TYPE C, VERT RCPT PCB, SMT, https://gct.co/files/drawings/usb4115.pdf +USB C Type-C Receptacle SMD +0 +28 +25 +Connector_USB +USB_C_Receptacle_GCT_USB4125-xx-x-0190_6P_TopMnt_Horizontal +USB Type C Receptacle, GCT, power-only, 6P, top mounted, horizontal, 3A, 1.9mm stake: https://gct.co/files/drawings/usb4125.pdf +USB C Type-C receptacle power-only charging-only 6P 6C right angled +0 +10 +7 +Connector_USB +USB_C_Receptacle_GCT_USB4125-xx-x_6P_TopMnt_Horizontal +USB Type C Receptacle, GCT, power-only, 6P, top mounted, horizontal, 3A, 1mm stake: https://gct.co/files/drawings/usb4125.pdf +USB C Type-C receptacle power-only charging-only 6P 6C right angled +0 +10 +7 +Connector_USB +USB_C_Receptacle_GCT_USB4135-GF-A_6P_TopMnt_Horizontal +USB Type C Receptacle, GCT, power-only, 6P, top mounted, horizontal, 3A: https://gct.co/files/drawings/usb4135.pdf +USB C Type-C Receptacle SMD USB Power-only Charging-only 6P 6C USB4135-GF-A +0 +10 +7 +Connector_USB +USB_C_Receptacle_HCTL_HC-TYPE-C-16P-01A +16-pin USB-C receptacle, USB2.0 and PD, 5A VBUS rating, https://datasheet.lcsc.com/lcsc/2211161000_HCTL-HC-TYPE-C-16P-01A_C2894897.pdf +usb usb-c 2.0 pd +0 +20 +17 +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_HRO_TYPE-C-31-M-17 +USB Type-C receptacle for USB 2.0, 6 pin, https://omo-oss-file.thefastfile.com/portal-saas/new2023011311465142457/cms/file/134891b2-9b01-4104-89d3-96207243f692.pdf +usb usb-c 2.0 pd +0 +10 +7 +Connector_USB +USB_C_Receptacle_JAE_DX07S016JA1R1500 +USB TYPE C, USB 2.0, SMT, https://www.jae.com/en/connectors/series/detail/product/id=91780 +USB C Type-C Receptacle SMD USB 2.0 +0 +22 +17 +Connector_USB +USB_C_Receptacle_JAE_DX07S024WJ1R350 +http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ117219.pdf +USB C Type-C Receptacle SMD +0 +30 +25 +Connector_USB +USB_C_Receptacle_JAE_DX07S024WJ3R400 +USB TYPE C, VERT RCPT PCB, SMT, http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ117928.pdf +USB C Type-C Receptacle SMD +0 +28 +25 +Connector_USB +USB_C_Receptacle_Molex_105450-0101 +USB 3.0 3.1 3.2 4.0 Type-C receptable, through-hole mount, SMD, right-angle (https://www.molex.com/pdm_docs/sd/1054500101_sd.pdf) +USB C Type-C USB3 receptacle SMD +0 +28 +25 +Connector_USB +USB_C_Receptacle_Palconn_UTC16-G +http://www.palpilot.com/wp-content/uploads/2017/05/UTC027-GKN-OR-Rev-A.pdf +USB C Type-C Receptacle USB2.0 +0 +20 +17 +Connector_USB +USB_C_Receptacle_XKB_U262-16XN-4BVC11 +USB Type C, right-angle, SMT, https://datasheet.lcsc.com/szlcsc/1811141824_XKB-Enterprise-U262-161N-4BVC11_C319148.pdf +USB C Type-C Receptacle SMD +0 +20 +17 +Connector_USB +USB_Micro-AB_Molex_47590-0001 +Micro USB AB receptacle, 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_10118193-0001LF_Horizontal +USB Micro-B receptacle, horizontal, SMD, 10118193, with flange, https://cdn.amphenol-icc.com/media/wysiwyg/files/drawing/10118193.pdf +USB Micro-B horizontal SMD +0 +11 +6 +Connector_USB +USB_Micro-B_Amphenol_10118193-0002LF_Horizontal +USB Micro-B receptacle, horizontal, SMD, 10118193, without flange, https://cdn.amphenol-icc.com/media/wysiwyg/files/drawing/10118193.pdf +USB Micro-B horizontal SMD +0 +11 +6 +Connector_USB +USB_Micro-B_Amphenol_10118194-0001LF_Horizontal +USB Micro-B receptacle, horizontal, SMD, 10118194, 10118194-0001LF, 10118194-0002LF, 10118194-0101LF, 10118194-1001LF, https://cdn.amphenol-icc.com/media/wysiwyg/files/drawing/10118194.pdf +USB Micro B horizontal SMD +0 +17 +6 +Connector_USB +USB_Micro-B_Amphenol_10118194_Horizontal +USB Micro-B receptacle, horizontal, SMD, 10118194, 10118194-0011LF, 10118194-0012LF, https://cdn.amphenol-icc.com/media/wysiwyg/files/drawing/10118194.pdf +USB Micro B horizontal SMD +0 +17 +6 +Connector_USB +USB_Micro-B_GCT_USB3076-30-A +GCT Micro USB https://gct.co/files/drawings/usb3076.pdf +Micro-USB SMD Typ-B GCT +0 +11 +6 +Connector_USB +USB_Micro-B_Molex-105017-0001 +http://www.molex.com/pdm_docs/sd/1050170001_sd.pdf +Micro-USB SMD Typ-B +0 +13 +6 +Connector_USB +USB_Micro-B_Molex-105133-0001 +Molex Vertical Micro USB Typ-B (http://www.molex.com/pdm_docs/sd/1051330001_sd.pdf) +Micro-USB SMD Typ-B Vertical +0 +8 +6 +Connector_USB +USB_Micro-B_Molex-105133-0031 +Molex Vertical Micro USB Typ-B (http://www.molex.com/pdm_docs/sd/1051330031_sd.pdf) +Micro-USB SMD Typ-B Vertical +0 +8 +6 +Connector_USB +USB_Micro-B_Molex_47346-0001 +Micro USB B receptable with flange, bottom-mount, SMD, right-angle (http://www.molex.com/pdm_docs/sd/473460001_sd.pdf) +Micro B USB SMD +0 +11 +6 +Connector_USB +USB_Micro-B_Technik_TWP-4002D-H3 +Dustproof Micro USB Type B TWP-4002D-H3, https://www.technik.com.hk/images/pdf_product/WP4002D-H3-A_2.0.pdf +USB Micro B horizontal dustproof waterproof IP67 +0 +7 +6 +Connector_USB +USB_Micro-B_Wuerth_614105150721_Vertical +USB Micro-B receptacle, through-hole, vertical, http://katalog.we-online.de/em/datasheet/614105150721.pdf +usb micro receptacle vertical +0 +7 +6 +Connector_USB +USB_Micro-B_Wuerth_614105150721_Vertical_CircularHoles +USB Micro-B receptacle, through-hole, vertical, http://katalog.we-online.de/em/datasheet/614105150721.pdf +usb micro receptacle vertical +0 +7 +6 +Connector_USB +USB_Micro-B_Wuerth_629105150521 +USB Micro-B receptacle, http://www.mouser.com/ds/2/445/629105150521-469306.pdf +usb micro receptacle +0 +9 +6 +Connector_USB +USB_Micro-B_Wuerth_629105150521_CircularHoles +USB Micro-B receptacle, http://www.mouser.com/ds/2/445/629105150521-469306.pdf +usb micro receptacle +0 +9 +6 +Connector_USB +USB_Micro-B_XKB_U254-051T-4BH83-F1S +XKB Connectivity, USB Micro-B, right-angle, SMT, https://datasheet.lcsc.com/lcsc/2206091745_XKB-Connectivity-U254-051T-4BH83-F1S_C397452.pdf +USB Micro-B Receptacle SMD +0 +11 +6 +Connector_USB +USB_Mini-B_AdamTech_MUSB-B5-S-VT-TSMT-1_SMD_Vertical +http://www.adam-tech.com/upload/MUSB-B5-S-VT-TSMT-1.pdf +USB Mini-B +0 +7 +6 +Connector_USB +USB_Mini-B_Lumberg_2486_01_Horizontal +USB Mini-B 5-pin SMD connector, http://downloads.lumberg.com/datenblaetter/en/2486_01.pdf +USB USB_B USB_Mini connector +0 +9 +6 +Connector_USB +USB_Mini-B_Tensility_54-00023_Vertical +http://www.tensility.com/pdffiles/54-00023.pdf +usb mini receptacle vertical +0 +7 +6 +Connector_USB +USB_Mini-B_Tensility_54-00023_Vertical_CircularHoles +http://www.tensility.com/pdffiles/54-00023.pdf +usb mini receptacle vertical +0 +7 +6 +Connector_USB +USB_Mini-B_Wuerth_65100516121_Horizontal +Mini USB 2.0 Type B SMT Horizontal 5 Contacts (https://katalog.we-online.de/em/datasheet/65100516121.pdf) +Mini USB 2.0 Type B +0 +9 +6 +Connector_Video +DVI-D_Molex_74320-4004_Horizontal +DVI-D Dual Link connector, horizontal, 24 pins, Molex P/N 74320-4004, https://www.molex.com/content/dam/molex/molex-dot-com/products/automated/en-us/salesdrawingpdf/743/74320/743204004_sd.pdf?inline +dvi right angle +0 +26 +25 +Connector_Video +DVI-I_Molex_74320-1004_Horizontal +DVI-I Dual Link connector, horizontal, 29 pins, Molex P/N 74320-1004, https://www.molex.com/content/dam/molex/molex-dot-com/products/automated/en-us/salesdrawingpdf/743/74320/743201004_sd.pdf?inline +dvi right angle +0 +32 +30 +Connector_Video +HDMI_A_Amphenol_10029449-x01xLF_Horizontal +HDMI Type A connector, Amphenol 10029449-001TLF 10029449-001RLF 10029449-101TLF 10029449-101RLF, Right Angle(https://cdn.amphenol-icc.com/media/wysiwyg/files/drawing/10029449.pdf) +hdmi right angle +0 +23 +20 +Connector_Video +HDMI_A_Contact_Technology_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_Video +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_Video +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_Video +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_Video +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_Video +HDMI_Micro-D_Molex_46765-0xxx +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_Video +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_Video +HDMI_Micro-D_Molex_46765-1xxx +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_Video +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_Video +HDMI_Micro-D_Molex_46765-2xxx +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_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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 vertical +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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 horizontal +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.10 (https://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=9), 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.10 (https://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=9), 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.10 (https://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=9), 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.10 (https://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=9), 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.10 (https://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=9), 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.10 (https://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=9), 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.10 (https://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=9), 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.10 (https://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=9), 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.10 (https://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=9), 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.10 (https://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=9), 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.10 (https://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=9), 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.10 (https://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=9), 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.10 (https://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=9), 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.10 (https://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=9), 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.10 (https://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=9), 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.10 (https://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=9), 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.10 (https://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=9), 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.10 (https://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=9), 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.50 (https://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=9), 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.50 (https://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=9), 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.50 (https://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=9), 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.50 (https://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=11), 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.50 (https://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=11), 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.50 (https://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=11), 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.50 (https://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=9), 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.50 (https://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=9), 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.50 (https://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=9), 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.50 (https://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=11), 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.50 (https://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=11), 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.50 (https://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=11), 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.50 (https://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=9), 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.50 (https://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=9), 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.50 (https://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=9), 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.50 (https://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=11), 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.50 (https://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=11), 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.50 (https://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=11), 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.50 (https://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=9), 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.50 (https://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=9), 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.50 (https://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=9), 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.50 (https://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=11), 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.50 (https://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=11), 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.50 (https://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=11), 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.50 (https://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=9), 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.50 (https://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=9), 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.50 (https://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=9), 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.50 (https://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=11), 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.50 (https://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=11), 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.50 (https://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=11), 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.50 (https://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=9), 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.50 (https://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=9), 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.50 (https://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=9), 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.50 (https://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=11), 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.50 (https://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=11), 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.50 (https://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=11), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=9), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=9), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=9), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=9), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=9), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=9), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=9), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=9), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=9), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=9), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=9), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=9), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=9), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=9), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=9), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=9), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=9), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=9), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=9), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=9), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=9), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=11), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=11), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=11), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=9), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=9), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=9), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=11), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=11), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=11), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=9), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=9), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=9), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=11), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=11), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=11), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=9), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=9), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=9), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=11), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=11), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=11), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=9), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=9), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=9), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=11), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=11), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=11), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=9), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=9), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=9), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=11), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=11), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=11), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=9), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=9), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=9), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=11), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=11), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=11), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=9), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=9), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=9), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=11), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=11), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=11), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=9), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=9), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=9), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=11), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=11), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=11), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=9), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=9), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=9), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=11), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=11), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=11), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=9), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=9), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=9), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=11), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=11), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=11), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=9), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=9), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=9), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=11), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=11), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=11), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=9), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=9), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=9), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=9), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=9), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=9), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=9), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=9), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=9), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=9), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=9), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=9), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=9), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=9), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=9), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=9), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=9), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=9), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=11), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=11), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=11), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=9), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=9), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=9), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=9), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=9), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=9), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=11), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=11), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=11), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=9), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=9), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=9), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=11), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=11), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=11), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=9), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=9), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=9), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=11), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=11), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=11), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=9), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=9), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=9), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=11), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=11), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=11), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=9), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=9), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=9), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=11), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=11), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=11), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=9), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=9), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=9), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=11), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=11), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=11), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=9), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=9), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=9), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=11), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=11), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=11), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=9), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=9), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=9), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=11), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=11), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=11), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=9), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=9), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=9), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=11), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=11), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=11), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=9), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=9), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=9), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=11), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=11), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=11), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=9), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=9), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=9), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=11), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=11), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=11), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=9), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=9), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=9), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=11), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=11), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=11), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=9), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=9), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=9), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=11), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=11), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=11), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=9), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=9), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=9), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=11), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=11), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=11), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=9), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=9), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=9), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=11), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=11), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=11), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=9), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=9), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=9), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=11), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=11), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=11), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=9), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=9), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=9), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=11), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=11), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=11), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=11), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=11), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=11), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=11), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=11), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=11), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=11), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=11), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=11), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=11), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=11), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=11), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=11), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=11), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=11), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=11), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=11), 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://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=11), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 2sqmm double-strain-relief +0 +6 +6 +Connector_Wire +SolderWire-4sqmm_1x01_D3mm_OD6mm +Soldered wire connection, for a single 4 mm² wire, reinforced insulation, conductor diameter 3mm, outer diameter 6mm, size source Multi-Contact FLEXI-xV 2.5 (https://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=11), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 4sqmm +0 +1 +1 +Connector_Wire +SolderWire-4sqmm_1x01_D3mm_OD6mm_Relief +Soldered wire connection with feed through strain relief, for a single 4 mm² wire, reinforced insulation, conductor diameter 3mm, outer diameter 6mm, size source Multi-Contact FLEXI-xV 2.5 (https://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=11), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 4sqmm strain-relief +0 +1 +1 +Connector_Wire +SolderWire-4sqmm_1x01_D3mm_OD6mm_Relief2x +Soldered wire connection with double feed through strain relief, for a single 4 mm² wire, reinforced insulation, conductor diameter 3mm, outer diameter 6mm, size source Multi-Contact FLEXI-xV 2.5 (https://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=11), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 4sqmm double-strain-relief +0 +1 +1 +Connector_Wire +SolderWire-4sqmm_1x02_P12mm_D3mm_OD6mm +Soldered wire connection, for 2 times 4 mm² wires, reinforced insulation, conductor diameter 3mm, outer diameter 6mm, size source Multi-Contact FLEXI-xV 2.5 (https://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=11), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 4sqmm +0 +2 +2 +Connector_Wire +SolderWire-4sqmm_1x02_P12mm_D3mm_OD6mm_Relief +Soldered wire connection with feed through strain relief, for 2 times 4 mm² wires, reinforced insulation, conductor diameter 3mm, outer diameter 6mm, size source Multi-Contact FLEXI-xV 2.5 (https://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=11), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 4sqmm strain-relief +0 +2 +2 +Connector_Wire +SolderWire-4sqmm_1x02_P12mm_D3mm_OD6mm_Relief2x +Soldered wire connection with double feed through strain relief, for 2 times 4 mm² wires, reinforced insulation, conductor diameter 3mm, outer diameter 6mm, size source Multi-Contact FLEXI-xV 2.5 (https://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=11), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 4sqmm double-strain-relief +0 +2 +2 +Connector_Wire +SolderWire-4sqmm_1x03_P12mm_D3mm_OD6mm +Soldered wire connection, for 3 times 4 mm² wires, reinforced insulation, conductor diameter 3mm, outer diameter 6mm, size source Multi-Contact FLEXI-xV 2.5 (https://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=11), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 4sqmm +0 +3 +3 +Connector_Wire +SolderWire-4sqmm_1x03_P12mm_D3mm_OD6mm_Relief +Soldered wire connection with feed through strain relief, for 3 times 4 mm² wires, reinforced insulation, conductor diameter 3mm, outer diameter 6mm, size source Multi-Contact FLEXI-xV 2.5 (https://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=11), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 4sqmm strain-relief +0 +3 +3 +Connector_Wire +SolderWire-4sqmm_1x03_P12mm_D3mm_OD6mm_Relief2x +Soldered wire connection with double feed through strain relief, for 3 times 4 mm² wires, reinforced insulation, conductor diameter 3mm, outer diameter 6mm, size source Multi-Contact FLEXI-xV 2.5 (https://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=11), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 4sqmm double-strain-relief +0 +3 +3 +Connector_Wire +SolderWire-4sqmm_1x04_P12mm_D3mm_OD6mm +Soldered wire connection, for 4 times 4 mm² wires, reinforced insulation, conductor diameter 3mm, outer diameter 6mm, size source Multi-Contact FLEXI-xV 2.5 (https://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=11), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 4sqmm +0 +4 +4 +Connector_Wire +SolderWire-4sqmm_1x04_P12mm_D3mm_OD6mm_Relief +Soldered wire connection with feed through strain relief, for 4 times 4 mm² wires, reinforced insulation, conductor diameter 3mm, outer diameter 6mm, size source Multi-Contact FLEXI-xV 2.5 (https://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=11), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 4sqmm strain-relief +0 +4 +4 +Connector_Wire +SolderWire-4sqmm_1x04_P12mm_D3mm_OD6mm_Relief2x +Soldered wire connection with double feed through strain relief, for 4 times 4 mm² wires, reinforced insulation, conductor diameter 3mm, outer diameter 6mm, size source Multi-Contact FLEXI-xV 2.5 (https://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=11), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 4sqmm double-strain-relief +0 +4 +4 +Connector_Wire +SolderWire-4sqmm_1x05_P12mm_D3mm_OD6mm +Soldered wire connection, for 5 times 4 mm² wires, reinforced insulation, conductor diameter 3mm, outer diameter 6mm, size source Multi-Contact FLEXI-xV 2.5 (https://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=11), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 4sqmm +0 +5 +5 +Connector_Wire +SolderWire-4sqmm_1x05_P12mm_D3mm_OD6mm_Relief +Soldered wire connection with feed through strain relief, for 5 times 4 mm² wires, reinforced insulation, conductor diameter 3mm, outer diameter 6mm, size source Multi-Contact FLEXI-xV 2.5 (https://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=11), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 4sqmm strain-relief +0 +5 +5 +Connector_Wire +SolderWire-4sqmm_1x05_P12mm_D3mm_OD6mm_Relief2x +Soldered wire connection with double feed through strain relief, for 5 times 4 mm² wires, reinforced insulation, conductor diameter 3mm, outer diameter 6mm, size source Multi-Contact FLEXI-xV 2.5 (https://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=11), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 4sqmm double-strain-relief +0 +5 +5 +Connector_Wire +SolderWire-4sqmm_1x06_P12mm_D3mm_OD6mm +Soldered wire connection, for 6 times 4 mm² wires, reinforced insulation, conductor diameter 3mm, outer diameter 6mm, size source Multi-Contact FLEXI-xV 2.5 (https://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=11), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 4sqmm +0 +6 +6 +Connector_Wire +SolderWire-4sqmm_1x06_P12mm_D3mm_OD6mm_Relief +Soldered wire connection with feed through strain relief, for 6 times 4 mm² wires, reinforced insulation, conductor diameter 3mm, outer diameter 6mm, size source Multi-Contact FLEXI-xV 2.5 (https://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=11), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 4sqmm strain-relief +0 +6 +6 +Connector_Wire +SolderWire-4sqmm_1x06_P12mm_D3mm_OD6mm_Relief2x +Soldered wire connection with double feed through strain relief, for 6 times 4 mm² wires, reinforced insulation, conductor diameter 3mm, outer diameter 6mm, size source Multi-Contact FLEXI-xV 2.5 (https://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=11), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 4sqmm double-strain-relief +0 +6 +6 +Connector_Wire +SolderWire-6sqmm_1x01_D3.5mm_OD7mm +Soldered wire connection, for a single 6 mm² wire, reinforced insulation, conductor diameter 3.5mm, outer diameter 7mm, size source Multi-Contact FLEXI-xV 2.5 (https://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=11), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 6sqmm +0 +1 +1 +Connector_Wire +SolderWire-6sqmm_1x01_D3.5mm_OD7mm_Relief +Soldered wire connection with feed through strain relief, for a single 6 mm² wire, reinforced insulation, conductor diameter 3.5mm, outer diameter 7mm, size source Multi-Contact FLEXI-xV 2.5 (https://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=11), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 6sqmm strain-relief +0 +1 +1 +Connector_Wire +SolderWire-6sqmm_1x01_D3.5mm_OD7mm_Relief2x +Soldered wire connection with double feed through strain relief, for a single 6 mm² wire, reinforced insulation, conductor diameter 3.5mm, outer diameter 7mm, size source Multi-Contact FLEXI-xV 2.5 (https://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=11), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 6sqmm double-strain-relief +0 +1 +1 +Connector_Wire +SolderWire-6sqmm_1x02_P14mm_D3.5mm_OD7mm +Soldered wire connection, for 2 times 6 mm² wires, reinforced insulation, conductor diameter 3.5mm, outer diameter 7mm, size source Multi-Contact FLEXI-xV 2.5 (https://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=11), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 6sqmm +0 +2 +2 +Connector_Wire +SolderWire-6sqmm_1x02_P14mm_D3.5mm_OD7mm_Relief +Soldered wire connection with feed through strain relief, for 2 times 6 mm² wires, reinforced insulation, conductor diameter 3.5mm, outer diameter 7mm, size source Multi-Contact FLEXI-xV 2.5 (https://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=11), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 6sqmm strain-relief +0 +2 +2 +Connector_Wire +SolderWire-6sqmm_1x02_P14mm_D3.5mm_OD7mm_Relief2x +Soldered wire connection with double feed through strain relief, for 2 times 6 mm² wires, reinforced insulation, conductor diameter 3.5mm, outer diameter 7mm, size source Multi-Contact FLEXI-xV 2.5 (https://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=11), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 6sqmm double-strain-relief +0 +2 +2 +Connector_Wire +SolderWire-6sqmm_1x03_P14mm_D3.5mm_OD7mm +Soldered wire connection, for 3 times 6 mm² wires, reinforced insulation, conductor diameter 3.5mm, outer diameter 7mm, size source Multi-Contact FLEXI-xV 2.5 (https://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=11), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 6sqmm +0 +3 +3 +Connector_Wire +SolderWire-6sqmm_1x03_P14mm_D3.5mm_OD7mm_Relief +Soldered wire connection with feed through strain relief, for 3 times 6 mm² wires, reinforced insulation, conductor diameter 3.5mm, outer diameter 7mm, size source Multi-Contact FLEXI-xV 2.5 (https://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=11), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 6sqmm strain-relief +0 +3 +3 +Connector_Wire +SolderWire-6sqmm_1x03_P14mm_D3.5mm_OD7mm_Relief2x +Soldered wire connection with double feed through strain relief, for 3 times 6 mm² wires, reinforced insulation, conductor diameter 3.5mm, outer diameter 7mm, size source Multi-Contact FLEXI-xV 2.5 (https://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=11), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 6sqmm double-strain-relief +0 +3 +3 +Connector_Wire +SolderWire-6sqmm_1x04_P14mm_D3.5mm_OD7mm +Soldered wire connection, for 4 times 6 mm² wires, reinforced insulation, conductor diameter 3.5mm, outer diameter 7mm, size source Multi-Contact FLEXI-xV 2.5 (https://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=11), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 6sqmm +0 +4 +4 +Connector_Wire +SolderWire-6sqmm_1x04_P14mm_D3.5mm_OD7mm_Relief +Soldered wire connection with feed through strain relief, for 4 times 6 mm² wires, reinforced insulation, conductor diameter 3.5mm, outer diameter 7mm, size source Multi-Contact FLEXI-xV 2.5 (https://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=11), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 6sqmm strain-relief +0 +4 +4 +Connector_Wire +SolderWire-6sqmm_1x04_P14mm_D3.5mm_OD7mm_Relief2x +Soldered wire connection with double feed through strain relief, for 4 times 6 mm² wires, reinforced insulation, conductor diameter 3.5mm, outer diameter 7mm, size source Multi-Contact FLEXI-xV 2.5 (https://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=11), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 6sqmm double-strain-relief +0 +4 +4 +Connector_Wire +SolderWire-6sqmm_1x05_P14mm_D3.5mm_OD7mm +Soldered wire connection, for 5 times 6 mm² wires, reinforced insulation, conductor diameter 3.5mm, outer diameter 7mm, size source Multi-Contact FLEXI-xV 2.5 (https://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=11), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 6sqmm +0 +5 +5 +Connector_Wire +SolderWire-6sqmm_1x05_P14mm_D3.5mm_OD7mm_Relief +Soldered wire connection with feed through strain relief, for 5 times 6 mm² wires, reinforced insulation, conductor diameter 3.5mm, outer diameter 7mm, size source Multi-Contact FLEXI-xV 2.5 (https://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=11), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 6sqmm strain-relief +0 +5 +5 +Connector_Wire +SolderWire-6sqmm_1x05_P14mm_D3.5mm_OD7mm_Relief2x +Soldered wire connection with double feed through strain relief, for 5 times 6 mm² wires, reinforced insulation, conductor diameter 3.5mm, outer diameter 7mm, size source Multi-Contact FLEXI-xV 2.5 (https://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=11), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 6sqmm double-strain-relief +0 +5 +5 +Connector_Wire +SolderWire-6sqmm_1x06_P14mm_D3.5mm_OD7mm +Soldered wire connection, for 6 times 6 mm² wires, reinforced insulation, conductor diameter 3.5mm, outer diameter 7mm, size source Multi-Contact FLEXI-xV 2.5 (https://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=11), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 6sqmm +0 +6 +6 +Connector_Wire +SolderWire-6sqmm_1x06_P14mm_D3.5mm_OD7mm_Relief +Soldered wire connection with feed through strain relief, for 6 times 6 mm² wires, reinforced insulation, conductor diameter 3.5mm, outer diameter 7mm, size source Multi-Contact FLEXI-xV 2.5 (https://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=11), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 6sqmm strain-relief +0 +6 +6 +Connector_Wire +SolderWire-6sqmm_1x06_P14mm_D3.5mm_OD7mm_Relief2x +Soldered wire connection with double feed through strain relief, for 6 times 6 mm² wires, reinforced insulation, conductor diameter 3.5mm, outer diameter 7mm, size source Multi-Contact FLEXI-xV 2.5 (https://www.staubli.com/content/dam/ecs/catalogs-brochures/TM/CAB-Main-11014119-en.pdf#page=11), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 6sqmm double-strain-relief +0 +6 +6 +Connector_Wire +SolderWirePad_1x01_SMD_1.5x3mm +Wire Pad, Square, SMD Pad, 1.5mm x 3mm +MeasurementPoint Square SMDPad 1.5mmx3mm +0 +1 +1 +Connector_Wire +SolderWirePad_1x01_SMD_1x2mm +Wire Pad, Square, SMD Pad, 1mm x 2mm +MeasurementPoint Square SMDPad 1mmx2mm +0 +1 +1 +Connector_Wire +SolderWirePad_1x01_SMD_2x4mm +Wire Pad, Square, SMD Pad, 2mm x 4mm +MeasurementPoint Square SMDPad 2mmx4mm +0 +1 +1 +Connector_Wire +SolderWirePad_1x01_SMD_3x6mm +Wire Pad, Square, SMD Pad, 3mm x 6mm +MeasurementPoint Square SMDPad 3mmx6mm +0 +1 +1 +Connector_Wire +SolderWirePad_1x01_SMD_4x8mm +Wire Pad, Square, SMD Pad, 4mm x 8mm +MeasurementPoint Square SMDPad 4mmx8mm +0 +1 +1 +Connector_Wire +SolderWirePad_1x01_SMD_5x10mm +Wire Pad, Square, SMD Pad, 5mm x 10mm +MeasurementPoint Square SMDPad 5mmx10mm +0 +1 +1 +Connector_Wuerth +Wuerth_WR-PHD_613004216921_Large_2x02_P2.54mm_Vertical +Connector Wuerth, WR-PHD 2.54mm Dual Socket Header Bottom Entry Large, Wuerth electronics 613004216921 (https://katalog.we-online.de/em/datasheet/613004216921.pdf), generated with kicad-footprint-generator +Connector Wuerth WR-PHD 2.54mm 613004216921 +0 +4 +4 +Connector_Wuerth +Wuerth_WR-PHD_613006216921_Large_2x03_P2.54mm_Vertical +Connector Wuerth, WR-PHD 2.54mm Dual Socket Header Bottom Entry Large, Wuerth electronics 613006216921 (https://katalog.we-online.de/em/datasheet/613006216921.pdf), generated with kicad-footprint-generator +Connector Wuerth WR-PHD 2.54mm 613006216921 +0 +6 +6 +Connector_Wuerth +Wuerth_WR-PHD_613008216921_Large_2x04_P2.54mm_Vertical +Connector Wuerth, WR-PHD 2.54mm Dual Socket Header Bottom Entry Large, Wuerth electronics 613008216921 (https://katalog.we-online.de/em/datasheet/613008216921.pdf), generated with kicad-footprint-generator +Connector Wuerth WR-PHD 2.54mm 613008216921 +0 +8 +8 +Connector_Wuerth +Wuerth_WR-PHD_613010216921_Large_2x05_P2.54mm_Vertical +Connector Wuerth, WR-PHD 2.54mm Dual Socket Header Bottom Entry Large, Wuerth electronics 613010216921 (https://katalog.we-online.de/em/datasheet/613010216921.pdf), generated with kicad-footprint-generator +Connector Wuerth WR-PHD 2.54mm 613010216921 +0 +10 +10 +Connector_Wuerth +Wuerth_WR-PHD_613012216921_Large_2x06_P2.54mm_Vertical +Connector Wuerth, WR-PHD 2.54mm Dual Socket Header Bottom Entry Large, Wuerth electronics 613012216921 (https://katalog.we-online.de/em/datasheet/613012216921.pdf), generated with kicad-footprint-generator +Connector Wuerth WR-PHD 2.54mm 613012216921 +0 +12 +12 +Connector_Wuerth +Wuerth_WR-PHD_613016216921_Large_2x08_P2.54mm_Vertical +Connector Wuerth, WR-PHD 2.54mm Dual Socket Header Bottom Entry Large, Wuerth electronics 613016216921 (https://katalog.we-online.de/em/datasheet/613016216921.pdf), generated with kicad-footprint-generator +Connector Wuerth WR-PHD 2.54mm 613016216921 +0 +16 +16 +Connector_Wuerth +Wuerth_WR-PHD_613018216921_Large_2x09_P2.54mm_Vertical +Connector Wuerth, WR-PHD 2.54mm Dual Socket Header Bottom Entry Large, Wuerth electronics 613018216921 (https://katalog.we-online.de/em/datasheet/613018216921.pdf), generated with kicad-footprint-generator +Connector Wuerth WR-PHD 2.54mm 613018216921 +0 +18 +18 +Connector_Wuerth +Wuerth_WR-PHD_613020216921_Large_2x10_P2.54mm_Vertical +Connector Wuerth, WR-PHD 2.54mm Dual Socket Header Bottom Entry Large, Wuerth electronics 613020216921 (https://katalog.we-online.de/em/datasheet/613020216921.pdf), generated with kicad-footprint-generator +Connector Wuerth WR-PHD 2.54mm 613020216921 +0 +20 +20 +Connector_Wuerth +Wuerth_WR-PHD_613022216921_Large_2x11_P2.54mm_Vertical +Connector Wuerth, WR-PHD 2.54mm Dual Socket Header Bottom Entry Large, Wuerth electronics 613022216921 (https://katalog.we-online.de/em/datasheet/613022216921.pdf), generated with kicad-footprint-generator +Connector Wuerth WR-PHD 2.54mm 613022216921 +0 +22 +22 +Connector_Wuerth +Wuerth_WR-PHD_613024216921_Large_2x12_P2.54mm_Vertical +Connector Wuerth, WR-PHD 2.54mm Dual Socket Header Bottom Entry Large, Wuerth electronics 613024216921 (https://katalog.we-online.de/em/datasheet/613024216921.pdf), generated with kicad-footprint-generator +Connector Wuerth WR-PHD 2.54mm 613024216921 +0 +24 +24 +Connector_Wuerth +Wuerth_WR-PHD_613026216921_Large_2x13_P2.54mm_Vertical +Connector Wuerth, WR-PHD 2.54mm Dual Socket Header Bottom Entry Large, Wuerth electronics 613026216921 (https://katalog.we-online.de/em/datasheet/613026216921.pdf), generated with kicad-footprint-generator +Connector Wuerth WR-PHD 2.54mm 613026216921 +0 +26 +26 +Connector_Wuerth +Wuerth_WR-PHD_613032216921_Large_2x16_P2.54mm_Vertical +Connector Wuerth, WR-PHD 2.54mm Dual Socket Header Bottom Entry Large, Wuerth electronics 613032216921 (https://katalog.we-online.de/em/datasheet/613032216921.pdf), generated with kicad-footprint-generator +Connector Wuerth WR-PHD 2.54mm 613032216921 +0 +32 +32 +Connector_Wuerth +Wuerth_WR-PHD_613034216921_Large_2x17_P2.54mm_Vertical +Connector Wuerth, WR-PHD 2.54mm Dual Socket Header Bottom Entry Large, Wuerth electronics 613034216921 (https://katalog.we-online.de/em/datasheet/613034216921.pdf), generated with kicad-footprint-generator +Connector Wuerth WR-PHD 2.54mm 613034216921 +0 +34 +34 +Connector_Wuerth +Wuerth_WR-PHD_610004243021_SMD_2x02_P2.54mm_Vertical +Connector Wuerth, WR-PHD 2.54mm Dual Socket Header Bottom Entry SMD, Wuerth electronics 610004243021 (https://katalog.we-online.de/em/datasheet/610004243021.pdf), generated with kicad-footprint-generator +Connector Wuerth WR-PHD 2.54mm 610004243021 +0 +4 +4 +Connector_Wuerth +Wuerth_WR-PHD_610006243021_SMD_2x03_P2.54mm_Vertical +Connector Wuerth, WR-PHD 2.54mm Dual Socket Header Bottom Entry SMD, Wuerth electronics 610006243021 (https://katalog.we-online.de/em/datasheet/610006243021.pdf), generated with kicad-footprint-generator +Connector Wuerth WR-PHD 2.54mm 610006243021 +0 +6 +6 +Connector_Wuerth +Wuerth_WR-PHD_610008243021_SMD_2x04_P2.54mm_Vertical +Connector Wuerth, WR-PHD 2.54mm Dual Socket Header Bottom Entry SMD, Wuerth electronics 610008243021 (https://katalog.we-online.de/em/datasheet/610008243021.pdf), generated with kicad-footprint-generator +Connector Wuerth WR-PHD 2.54mm 610008243021 +0 +8 +8 +Connector_Wuerth +Wuerth_WR-PHD_610010243021_SMD_2x05_P2.54mm_Vertical +Connector Wuerth, WR-PHD 2.54mm Dual Socket Header Bottom Entry SMD, Wuerth electronics 610010243021 (https://katalog.we-online.de/em/datasheet/610010243021.pdf), generated with kicad-footprint-generator +Connector Wuerth WR-PHD 2.54mm 610010243021 +0 +10 +10 +Connector_Wuerth +Wuerth_WR-PHD_610012243021_SMD_2x06_P2.54mm_Vertical +Connector Wuerth, WR-PHD 2.54mm Dual Socket Header Bottom Entry SMD, Wuerth electronics 610012243021 (https://katalog.we-online.de/em/datasheet/610012243021.pdf), generated with kicad-footprint-generator +Connector Wuerth WR-PHD 2.54mm 610012243021 +0 +12 +12 +Connector_Wuerth +Wuerth_WR-PHD_610016243021_SMD_2x08_P2.54mm_Vertical +Connector Wuerth, WR-PHD 2.54mm Dual Socket Header Bottom Entry SMD, Wuerth electronics 610016243021 (https://katalog.we-online.de/em/datasheet/610016243021.pdf), generated with kicad-footprint-generator +Connector Wuerth WR-PHD 2.54mm 610016243021 +0 +16 +16 +Connector_Wuerth +Wuerth_WR-PHD_610018243021_SMD_2x09_P2.54mm_Vertical +Connector Wuerth, WR-PHD 2.54mm Dual Socket Header Bottom Entry SMD, Wuerth electronics 610018243021 (https://katalog.we-online.de/em/datasheet/610018243021.pdf), generated with kicad-footprint-generator +Connector Wuerth WR-PHD 2.54mm 610018243021 +0 +18 +18 +Connector_Wuerth +Wuerth_WR-PHD_610020243021_SMD_2x10_P2.54mm_Vertical +Connector Wuerth, WR-PHD 2.54mm Dual Socket Header Bottom Entry SMD, Wuerth electronics 610020243021 (https://katalog.we-online.de/em/datasheet/610020243021.pdf), generated with kicad-footprint-generator +Connector Wuerth WR-PHD 2.54mm 610020243021 +0 +20 +20 +Connector_Wuerth +Wuerth_WR-PHD_610022243021_SMD_2x11_P2.54mm_Vertical +Connector Wuerth, WR-PHD 2.54mm Dual Socket Header Bottom Entry SMD, Wuerth electronics 610022243021 (https://katalog.we-online.de/em/datasheet/610022243021.pdf), generated with kicad-footprint-generator +Connector Wuerth WR-PHD 2.54mm 610022243021 +0 +22 +22 +Connector_Wuerth +Wuerth_WR-PHD_610024243021_SMD_2x12_P2.54mm_Vertical +Connector Wuerth, WR-PHD 2.54mm Dual Socket Header Bottom Entry SMD, Wuerth electronics 610024243021 (https://katalog.we-online.de/em/datasheet/610024243021.pdf), generated with kicad-footprint-generator +Connector Wuerth WR-PHD 2.54mm 610024243021 +0 +24 +24 +Connector_Wuerth +Wuerth_WR-PHD_610026243021_SMD_2x13_P2.54mm_Vertical +Connector Wuerth, WR-PHD 2.54mm Dual Socket Header Bottom Entry SMD, Wuerth electronics 610026243021 (https://katalog.we-online.de/em/datasheet/610026243021.pdf), generated with kicad-footprint-generator +Connector Wuerth WR-PHD 2.54mm 610026243021 +0 +26 +26 +Connector_Wuerth +Wuerth_WR-PHD_610032243021_SMD_2x16_P2.54mm_Vertical +Connector Wuerth, WR-PHD 2.54mm Dual Socket Header Bottom Entry SMD, Wuerth electronics 610032243021 (https://katalog.we-online.de/em/datasheet/610032243021.pdf), generated with kicad-footprint-generator +Connector Wuerth WR-PHD 2.54mm 610032243021 +0 +32 +32 +Connector_Wuerth +Wuerth_WR-PHD_610034243021_SMD_2x17_P2.54mm_Vertical +Connector Wuerth, WR-PHD 2.54mm Dual Socket Header Bottom Entry SMD, Wuerth electronics 610034243021 (https://katalog.we-online.de/em/datasheet/610034243021.pdf), generated with kicad-footprint-generator +Connector Wuerth WR-PHD 2.54mm 610034243021 +0 +34 +34 +Connector_Wuerth +Wuerth_WR-PHD_61300425721_Standard_2x02_P2.54mm_Vertical +Connector Wuerth, WR-PHD 2.54mm Dual Socket Header Bottom Entry Standard, Wuerth electronics 61300425721 (https://katalog.we-online.de/em/datasheet/61300425721.pdf), generated with kicad-footprint-generator +Connector Wuerth WR-PHD 2.54mm 61300425721 +0 +4 +4 +Connector_Wuerth +Wuerth_WR-PHD_61300625721_Standard_2x03_P2.54mm_Vertical +Connector Wuerth, WR-PHD 2.54mm Dual Socket Header Bottom Entry Standard, Wuerth electronics 61300625721 (https://katalog.we-online.de/em/datasheet/61300625721.pdf), generated with kicad-footprint-generator +Connector Wuerth WR-PHD 2.54mm 61300625721 +0 +6 +6 +Connector_Wuerth +Wuerth_WR-PHD_61300825721_Standard_2x04_P2.54mm_Vertical +Connector Wuerth, WR-PHD 2.54mm Dual Socket Header Bottom Entry Standard, Wuerth electronics 61300825721 (https://katalog.we-online.de/em/datasheet/61300825721.pdf), generated with kicad-footprint-generator +Connector Wuerth WR-PHD 2.54mm 61300825721 +0 +8 +8 +Connector_Wuerth +Wuerth_WR-PHD_61301025721_Standard_2x05_P2.54mm_Vertical +Connector Wuerth, WR-PHD 2.54mm Dual Socket Header Bottom Entry Standard, Wuerth electronics 61301025721 (https://katalog.we-online.de/em/datasheet/61301025721.pdf), generated with kicad-footprint-generator +Connector Wuerth WR-PHD 2.54mm 61301025721 +0 +10 +10 +Connector_Wuerth +Wuerth_WR-PHD_61301225721_Standard_2x06_P2.54mm_Vertical +Connector Wuerth, WR-PHD 2.54mm Dual Socket Header Bottom Entry Standard, Wuerth electronics 61301225721 (https://katalog.we-online.de/em/datasheet/61301225721.pdf), generated with kicad-footprint-generator +Connector Wuerth WR-PHD 2.54mm 61301225721 +0 +12 +12 +Connector_Wuerth +Wuerth_WR-PHD_61301625721_Standard_2x08_P2.54mm_Vertical +Connector Wuerth, WR-PHD 2.54mm Dual Socket Header Bottom Entry Standard, Wuerth electronics 61301625721 (https://katalog.we-online.de/em/datasheet/61301625721.pdf), generated with kicad-footprint-generator +Connector Wuerth WR-PHD 2.54mm 61301625721 +0 +16 +16 +Connector_Wuerth +Wuerth_WR-PHD_61302025721_Standard_2x10_P2.54mm_Vertical +Connector Wuerth, WR-PHD 2.54mm Dual Socket Header Bottom Entry Standard, Wuerth electronics 61302025721 (https://katalog.we-online.de/em/datasheet/61302025721.pdf), generated with kicad-footprint-generator +Connector Wuerth WR-PHD 2.54mm 61302025721 +0 +20 +20 +Connector_Wuerth +Wuerth_WR-PHD_61302425721_Standard_2x12_P2.54mm_Vertical +Connector Wuerth, WR-PHD 2.54mm Dual Socket Header Bottom Entry Standard, Wuerth electronics 61302425721 (https://katalog.we-online.de/em/datasheet/61302425721.pdf), generated with kicad-footprint-generator +Connector Wuerth WR-PHD 2.54mm 61302425721 +0 +24 +24 +Connector_Wuerth +Wuerth_WR-PHD_61302625721_Standard_2x13_P2.54mm_Vertical +Connector Wuerth, WR-PHD 2.54mm Dual Socket Header Bottom Entry Standard, Wuerth electronics 61302625721 (https://katalog.we-online.de/em/datasheet/61302625721.pdf), generated with kicad-footprint-generator +Connector Wuerth WR-PHD 2.54mm 61302625721 +0 +26 +26 +Connector_Wuerth +Wuerth_WR-PHD_61303225721_Standard_2x16_P2.54mm_Vertical +Connector Wuerth, WR-PHD 2.54mm Dual Socket Header Bottom Entry Standard, Wuerth electronics 61303225721 (https://katalog.we-online.de/em/datasheet/61303225721.pdf), generated with kicad-footprint-generator +Connector Wuerth WR-PHD 2.54mm 61303225721 +0 +32 +32 +Connector_Wuerth +Wuerth_WR-PHD_61303425721_Standard_2x17_P2.54mm_Vertical +Connector Wuerth, WR-PHD 2.54mm Dual Socket Header Bottom Entry Standard, Wuerth electronics 61303425721 (https://katalog.we-online.de/em/datasheet/61303425721.pdf), generated with kicad-footprint-generator +Connector Wuerth WR-PHD 2.54mm 61303425721 +0 +34 +34 +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 +Connector_Zhaoxing +Zhaoxing_VH_ZX-VH3.96-2PLT_1x02-1MP_P3.96mm_Vertical +Zhaoxing VH series connector, ZX-VH3.96-2PLT (https://www.lcsc.com/datasheet/lcsc_datasheet_2306191414_Megastar-ZX-VH3-96-4PLT_C7429652.pdf), generated with kicad-footprint-generator +connector Zhaoxing VH vertical +0 +4 +3 +Connector_Zhaoxing +Zhaoxing_VH_ZX-VH3.96-3PLT_1x03-1MP_P3.96mm_Vertical +Zhaoxing VH series connector, ZX-VH3.96-3PLT (https://www.lcsc.com/datasheet/lcsc_datasheet_2306191414_Megastar-ZX-VH3-96-4PLT_C7429652.pdf), generated with kicad-footprint-generator +connector Zhaoxing VH vertical +0 +5 +4 +Connector_Zhaoxing +Zhaoxing_VH_ZX-VH3.96-4PLT_1x04-1MP_P3.96mm_Vertical +Zhaoxing VH series connector, ZX-VH3.96-4PLT (https://www.lcsc.com/datasheet/lcsc_datasheet_2306191414_Megastar-ZX-VH3-96-4PLT_C7429652.pdf), generated with kicad-footprint-generator +connector Zhaoxing VH vertical +0 +6 +5 +Connector_Zhaoxing +Zhaoxing_VH_ZX-VH3.96-5PLT_1x05-1MP_P3.96mm_Vertical +Zhaoxing VH series connector, ZX-VH3.96-5PLT (https://www.lcsc.com/datasheet/lcsc_datasheet_2306191414_Megastar-ZX-VH3-96-4PLT_C7429652.pdf), generated with kicad-footprint-generator +connector Zhaoxing VH vertical +0 +7 +6 +Connector_Zhaoxing +Zhaoxing_VH_ZX-VH3.96-6PLT_1x06-1MP_P3.96mm_Vertical +Zhaoxing VH series connector, ZX-VH3.96-6PLT (https://www.lcsc.com/datasheet/lcsc_datasheet_2306191414_Megastar-ZX-VH3-96-4PLT_C7429652.pdf), generated with kicad-footprint-generator +connector Zhaoxing VH vertical +0 +8 +7 +Connector_Zhaoxing +Zhaoxing_VH_ZX-VH3.96-7PLT_1x07-1MP_P3.96mm_Vertical +Zhaoxing VH series connector, ZX-VH3.96-7PLT (https://www.lcsc.com/datasheet/lcsc_datasheet_2306191414_Megastar-ZX-VH3-96-4PLT_C7429652.pdf), generated with kicad-footprint-generator +connector Zhaoxing VH vertical +0 +9 +8 +Connector_Zhaoxing +Zhaoxing_VH_ZX-VH3.96-8PLT_1x08-1MP_P3.96mm_Vertical +Zhaoxing VH series connector, ZX-VH3.96-8PLT (https://www.lcsc.com/datasheet/lcsc_datasheet_2306191414_Megastar-ZX-VH3-96-4PLT_C7429652.pdf), generated with kicad-footprint-generator +connector Zhaoxing VH vertical +0 +10 +9 +Connector_Zhaoxing +Zhaoxing_VH_ZX-VH3.96-9PLT_1x09-1MP_P3.96mm_Vertical +Zhaoxing VH series connector, ZX-VH3.96-9PLT (https://www.lcsc.com/datasheet/lcsc_datasheet_2306191414_Megastar-ZX-VH3-96-4PLT_C7429652.pdf), generated with kicad-footprint-generator +connector Zhaoxing VH vertical +0 +11 +10 +Connector_Zhaoxing +Zhaoxing_VH_ZX-VH3.96-10PLT_1x10-1MP_P3.96mm_Vertical +Zhaoxing VH series connector, ZX-VH3.96-10PLT (https://www.lcsc.com/datasheet/lcsc_datasheet_2306191414_Megastar-ZX-VH3-96-4PLT_C7429652.pdf), generated with kicad-footprint-generator +connector Zhaoxing VH vertical +0 +12 +11 +Connectors +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 +Connectors +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 +Connectors +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 +Connectors +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 +Connectors +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 +Connectors +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 +Connectors +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 +Connectors +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 +Connectors +TestPoint_2Pads_Pitch2.54mm_Drill0.8mm +Test point with 2 pins, pitch 2.54mm, drill diameter 0.8mm +CONN DEV +0 +2 +2 +Connectors +TestPoint_Pad_1.5x1.5mm +SMD rectangular pad as test Point, square 1.5mm side length +test point SMD pad rectangle square +0 +2 +2 +Connectors +USB_C_16P_HRO + + +0 +3 +3 +Connectors +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 +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_Hi-Link_HLK-2Mxx +ACDC-Converter, 2W, Hi-Link, HLK-2Mxx, THT, https://h.hlktech.com/download/ACDC%E7%94%B5%E6%BA%90%E6%A8%A1%E5%9D%972W%E7%B3%BB%E5%88%97/1/%E6%B5%B7%E5%87%8C%E7%A7%912W%E7%B3%BB%E5%88%97%E7%94%B5%E6%BA%90%E6%A8%A1%E5%9D%97%E8%AF%B4%E6%98%8E%E4%B9%A6V2.6.pdf, generated with kicad-footprint-generator StandardBox_generator.py +ACDC-Converter 2W THT Hi-Link board mount module +0 +4 +4 +Converter_ACDC +Converter_ACDC_Hi-Link_HLK-5Mxx +ACDC-Converter, 5W, Hi-Link, HLK-5Mxx, THT, https://h.hlktech.com/download/ACDC%E7%94%B5%E6%BA%90%E6%A8%A1%E5%9D%975W%E7%B3%BB%E5%88%97/1/%E6%B5%B7%E5%87%8C%E7%A7%915W%E7%B3%BB%E5%88%97%E7%94%B5%E6%BA%90%E6%A8%A1%E5%9D%97%E8%A7%84%E6%A0%BC%E4%B9%A6V2.8.pdf, generated with kicad-footprint-generator StandardBox_generator.py +ACDC-Converter 5W THT Hi-Link board mount module +0 +4 +4 +Converter_ACDC +Converter_ACDC_Hi-Link_HLK-10Mxx +ACDC-Converter, 10W, Hi-Link, HLK-10Mxx, THT, https://h.hlktech.com/download/ACDC%E7%94%B5%E6%BA%90%E6%A8%A1%E5%9D%9710W%E7%B3%BB%E5%88%97/1/%E6%B5%B7%E5%87%8C%E7%A7%9110W%E7%B3%BB%E5%88%97%E7%94%B5%E6%BA%90%E6%A8%A1%E5%9D%97%E8%A7%84%E6%A0%BC%E4%B9%A6V1.8.pdf, generated with kicad-footprint-generator StandardBox_generator.py +ACDC-Converter 10W THT Hi-Link board mount module +0 +4 +4 +Converter_ACDC +Converter_ACDC_Hi-Link_HLK-12MxxA +ACDC-Converter, 12W, Hi-Link, HLK-12MxxA, THT, https://h.hlktech.com/download/ACDC%E7%94%B5%E6%BA%90%E6%A8%A1%E5%9D%9712W%E7%B3%BB%E5%88%97/1/12W%E7%B3%BB%E5%88%97%E8%A7%84%E6%A0%BC%E4%B9%A6.pdf, generated with kicad-footprint-generator StandardBox_generator.py +ACDC-Converter 12W THT Hi-Link board mount module +0 +4 +4 +Converter_ACDC +Converter_ACDC_Hi-Link_HLK-20Mxx +ACDC-Converter, 20W, Hi-Link, HLK-20Mxx, THT, https://h.hlktech.com/download/ACDC%E7%94%B5%E6%BA%90%E6%A8%A1%E5%9D%9720W%E7%B3%BB%E5%88%97/1/%E6%B5%B7%E5%87%8C%E7%A7%9120W%E7%B3%BB%E5%88%97%E7%94%B5%E6%BA%90%E6%A8%A1%E5%9D%97%E8%A7%84%E6%A0%BC%E4%B9%A6V1.6.pdf, generated with kicad-footprint-generator StandardBox_generator.py +ACDC-Converter 20W THT Hi-Link board mount module +0 +4 +4 +Converter_ACDC +Converter_ACDC_Hi-Link_HLK-30Mxx +ACDC-Converter, 30W, Hi-Link, HLK-30Mxx, HLK-30MxxC, THT, https://h.hlktech.com/download/ACDC%E7%94%B5%E6%BA%90%E6%A8%A1%E5%9D%9730W%E7%B3%BB%E5%88%97/1/%E6%B5%B7%E5%87%8C%E7%A7%9130W%E7%B3%BB%E5%88%97%E7%94%B5%E6%BA%90%E6%A8%A1%E5%9D%97%E8%A7%84%E6%A0%BC%E4%B9%A6V1.6.pdf, generated with kicad-footprint-generator StandardBox_generator.py +ACDC-Converter 30W THT Hi-Link board mount module +0 +4 +4 +Converter_ACDC +Converter_ACDC_Hi-Link_HLK-PMxx +ACDC-Converter, 3W, Hi-Link, HLK-PMxx, THT, https://h.hlktech.com/download/ACDC%E7%94%B5%E6%BA%90%E6%A8%A1%E5%9D%973W%E7%B3%BB%E5%88%97/1/%E6%B5%B7%E5%87%8C%E7%A7%913W%E7%B3%BB%E5%88%97%E7%94%B5%E6%BA%90%E6%A8%A1%E5%9D%97%E8%A7%84%E6%A0%BC%E4%B9%A6V2.8.pdf, generated with kicad-footprint-generator StandardBox_generator.py +ACDC-Converter 3W THT Hi-Link 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_MeanWell_MFM-10-xx_THT +AC/DC board mount open frame power converter, input 80 ~ 264 VAC, 10W output, https://www.meanwellusa.com/upload/pdf/MFM-10/MFM-10-spec.pdf +AC/DC power converter +0 +4 +4 +Converter_ACDC +Converter_ACDC_MeanWell_MFM-15-xx_THT +AC/DC board mount open frame power converter, input 80 ~ 264 VAC, 15W output, https://www.meanwell.com/Upload/PDF/MFM-15/MFM-15-SPEC.PDF +AC/DC power converter +0 +4 +4 +Converter_ACDC +Converter_ACDC_Murata_BAC05SxxDC_THT +ACDC-Converter, Murata, 5W, ClassB, https://www.murata.com/products/productdata/8809982558238/KAC-BAC05.pdf +switching power supply tht +0 +5 +5 +Converter_ACDC +Converter_ACDC_RECOM_RAC01-xxSGB_THT +https://www.recom-power.com/pdf/Powerline-AC-DC/RAC01-GB.pdf +recom power ac dc rac01xxgb rac01-05sgb rac01-12sgb +0 +4 +4 +Converter_ACDC +Converter_ACDC_RECOM_RAC04-xxSGx_THT +https://www.recom-power.com/pdf/Powerline-AC-DC/RAC04-GA.pdf +recom power ac dc +0 +5 +5 +Converter_ACDC +Converter_ACDC_RECOM_RAC05-xxSK_THT +https://www.recom-power.com/pdf/Powerline-AC-DC/RAC05-K.pdf +recom power ac dc +0 +5 +5 +Converter_ACDC +Converter_ACDC_Recom_RAC20-xxDK_THT +Recom RAC20-xxDK https://recom-power.com/pdf/Powerline_AC-DC/RAC20-K.pdf#page=6 Rev. 6/2020 +Recom RAC20-xxDK +0 +5 +5 +Converter_ACDC +Converter_ACDC_Recom_RAC20-xxSK_THT +Recom RAC20-xxSK https://recom-power.com/pdf/Powerline_AC-DC/RAC20-K.pdf#page=6 Rev. 6/2020 +Recom RAC20-xxSK +0 +4 +4 +Converter_ACDC +Converter_ACDC_TRACO_TMF_051xx_THT +ACDC-Converter, TRACO, TMF 051xx, 5W, Rev. August 26. 2024, https://www.tracopower.com/products/tmf05.pdf, generated with kicad-footprint-generator StandardBox_generator.py +ACDC-Converter TRACO TMF05 THT 5W +0 +4 +4 +Converter_ACDC +Converter_ACDC_TRACO_TMF_101xx_THT +ACDC-Converter, TRACO, TMF 101xx, 10W, Rev. August 27. 2024, https://www.tracopower.com/products/tmf10.pdf, generated with kicad-footprint-generator StandardBox_generator.py +ACDC-Converter TRACO TMF10 THT 10W +0 +4 +4 +Converter_ACDC +Converter_ACDC_TRACO_TMF_201xx_THT +ACDC-Converter, TRACO, TMF 201xx, 20W, Rev. August 28. 2024, https://www.tracopower.com/products/tmf20.pdf, generated with kicad-footprint-generator StandardBox_generator.py +ACDC-Converter TRACO TMF20 THT 20W +0 +4 +4 +Converter_ACDC +Converter_ACDC_TRACO_TMF_301xx_THT +ACDC-Converter, TRACO, TMF 301xx, 30W, Rev. October 10. 2024, https://www.tracopower.com/products/tmf30.pdf, generated with kicad-footprint-generator StandardBox_generator.py +ACDC-Converter TRACO TMF30 THT 30W +0 +4 +4 +Converter_ACDC +Converter_ACDC_TRACO_TMG_071xx_THT +ACDC-Converter, TRACO, TMG 071xx, 7W, Rev. March 24. 2025, https://www.tracopower.com/products/tmg07.pdf, generated with kicad-footprint-generator StandardBox_generator.py +ACDC-Converter TRACO TMG07 THT 1.08"x1.08" 7W +0 +4 +4 +Converter_ACDC +Converter_ACDC_TRACO_TMG_151xx_THT +ACDC-Converter, TRACO, TMG 151xx, 15W, Rev. March 26. 2025, https://www.tracopower.com/products/tmg15.pdf, generated with kicad-footprint-generator StandardBox_generator.py +ACDC-Converter TRACO TMG15 THT 1.62"x1.07" 15W +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_TRACO_TMPW5-1xx_THT +ACDC-Converter, TRACO, TMPW5-xxx, 5W, Rev. March 19. 2025, https://www.tracopower.com/products/tmpw5.pdf, generated with kicad-footprint-generator StandardBox_generator.py +ACDC-Converter TRACO TMPW5 THT 1.46"x1.08" +0 +5 +5 +Converter_ACDC +Converter_ACDC_TRACO_TMPW10_1xx_THT +ACDC-Converter, TRACO, TMPW 10, 10W, Rev. March 17. 2025, https://www.tracopower.com/products/tmpw10.pdf, generated with kicad-footprint-generator StandardBox_generator.py +ACDC-Converter TRACO TMPW10 THT 1.46"x1.08" +0 +5 +5 +Converter_ACDC +Converter_ACDC_TRACO_TMPW25_1xx_THT +ACDC-Converter, TRACO, TMPW 25, 25W, Rev. June 16. 2025, https://www.tracopower.com/products/tmpw25.pdf, generated with kicad-footprint-generator StandardBox_generator.py +ACDC-Converter TRACO TMPW25 THT 2.07"x1.08" 25W +0 +4 +4 +Converter_ACDC +Converter_ACDC_TRACO_TPP-15-1xx-D_THT +ACDC-Converter, 15W, TRACO TPP 15-D, 42 x 28.9 x 21.5mm, https://www.tracopower.com/sites/default/files/products/datasheets/tpp15_d_datasheet.pdf +ACDC-Converter TRACO TPP +0 +5 +5 +Converter_ACDC +Converter_ACDC_Vigortronix_VTX-214-010-1xx_THT +ACDC converter, Vigortronix, VTX-214-010-1xx, 10W, input 90-265VAC, output 3.3-48V, body size 36x56x25.5mm, https://www.vigortronix.com/wp-content/uploads/2022/01/VTX-214-010-1-Series-D0034-1.pdf, generated with kicad-footprint-generator StandardBox_generator.py +switching regulator filter +0 +4 +4 +Converter_ACDC +Converter_ACDC_Vigortronix_VTX-214-010-2xx_THT +Miniature ACDC converter, Vigortronix, VTX-214-010-2xx, 10W, input 90-265VAC, output 3.3-48V, body size 30x45.5x24mm, https://www.vigortronix.com/wp-content/uploads/2024/03/VTX-214-010-2xx-10W-Mini-AC-DC-Converter-Range-D0066.pdf, generated with kicad-footprint-generator StandardBox_generator.py +switching regulator filter +0 +4 +4 +Converter_ACDC +Converter_ACDC_Vigortronix_VTX-214-015-1xx_THT +Miniature ACDC converter, Vigortronix, VTX-214-015-1xx, 15W, output 3.3-48V, body size 45x55x21mm, https://www.vigortronix.com/wp-content/uploads/2022/01/VTX-214-015-1-Series-D0035.pdf, generated with kicad-footprint-generator StandardBox_generator.py +switching regulator filter +0 +5 +5 +Converter_ACDC +Converter_ACDC_ZETTLER_ZPI03Sxx00WC_THT +PCB mounted switching power module, AC input voltage range: 90VAC-264VAC, Class II Construction, https://www.zettlermagnetics.com/pdfs/ZPI03SXX00WC.pdf +ACDC-Converter 3W ZETTLER ZPI +0 +4 +4 +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_Hamamatsu_C11204-1_THT +Hamamatsu C11204-01 bias power supply module, body 19.4x17mm, height 4.7mm, https://www.hamamatsu.com/content/dam/hamamatsu-photonics/sites/documents/99_SALES_LIBRARY/ssd/c11204-01_kacc1203e.pdf +MPPC SiPM bias-supply +0 +16 +16 +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_MeanWell_NSD10_THT +MeanWell NSD10, https://www.meanwell.com/webapp/product/search.aspx?prod=NSD10-D, generated with kicad-footprint-generator StandardBox_generator.py +MeanWell NSD NSD10 +0 +6 +6 +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_MYRxP +Murata MYRxP PicoBK DC/DC converter with inductor, 2x2.5mm, height 1.04mm. https://www.murata.com/en-global/products/power/nonisolated-dc-dc-converter/overview/lineup/picobk +PicoBK DC/DC MYRBP MYRGP MYRLP +0 +19 +9 +Converter_DCDC +Converter_DCDC_Murata_NCS1SxxxxSC_THT +Murata NCS1SxxxxSC, https://power.murata.com/data/power/ncl/kdc_ncs1.pdf, generated with kicad-footprint-generator StandardBox_generator.py +Murata NCS1SxxxxSC +0 +5 +5 +Converter_DCDC +Converter_DCDC_Murata_NMAxxxxDC_THT +Isolated 1W DCDC-Converter, http://power.murata.com/data/power/ncl/kdc_nma.pdf +Isolated 1W DCDC-Converter +0 +6 +6 +Converter_DCDC +Converter_DCDC_Murata_NMAxxxxSC_THT +Murata NMAxxxxSC footprint based on SIP7, http://power.murata.com/data/power/ncl/kdc_nma.pdf +Murata NMAxxxxSC DCDC-Converter +0 +5 +5 +Converter_DCDC +Converter_DCDC_Murata_NXExSxxxxMC_SMD +Isolated 1W or 2W Single Output SM DC/DC Converters https://www.murata.com/products/productdata/8807031865374/kdc-nxe1.pdf#page=8 https://www.murata.com/products/productdata/8807031898142/kdc-nxe2.pdf#page=9 +Isolated 1W or 2W Single Output SM DC/DC Converters +0 +5 +5 +Converter_DCDC +Converter_DCDC_Murata_OKI-78SR_Horizontal +https://power.murata.com/data/power/oki-78sr.pdf +78sr3.3 78sr5 78sr9 78sr12 78srXX +0 +3 +3 +Converter_DCDC +Converter_DCDC_Murata_OKI-78SR_Vertical +https://power.murata.com/data/power/oki-78sr.pdf +78sr3.3 78sr5 78sr9 78sr12 78srXX +0 +3 +3 +Converter_DCDC +Converter_DCDC_RECOM_R-78B-2.0_THT +DCDC-Converter, RECOM, RECOM_R-78B-2.0, SIP-3, pitch 2.54mm, package size 11.5x8.5x17.5mm^3, https://www.recom-power.com/pdf/Innoline/R-78Bxx-2.0.pdf +dc-dc recom buck sip-3 pitch 2.54mm +0 +3 +3 +Converter_DCDC +Converter_DCDC_RECOM_R-78E-0.5_THT +DCDC-Converter, RECOM, RECOM_R-78E-0.5, SIP-3, pitch 2.54mm, package size 11.6x8.5x10.4mm^3, https://www.recom-power.com/pdf/Innoline/R-78Exx-0.5.pdf +dc-dc recom buck sip-3 pitch 2.54mm +0 +3 +3 +Converter_DCDC +Converter_DCDC_RECOM_R-78HB-0.5L_THT +DCDC-Converter, RECOM, RECOM_R-78HB-0.5L, SIP-3, Horizontally Mounted, pitch 2.54mm, package size 11.5x8.5x17.5mm^3, https://www.recom-power.com/pdf/Innoline/R-78HBxx-0.5_L.pdf +dc-dc recom buck sip-3 pitch 2.54mm +0 +3 +3 +Converter_DCDC +Converter_DCDC_RECOM_R-78HB-0.5_THT +DCDC-Converter, RECOM, RECOM_R-78HB-0.5, SIP-3, pitch 2.54mm, package size 11.5x8.5x17.5mm^3, https://www.recom-power.com/pdf/Innoline/R-78HBxx-0.5_L.pdf +dc-dc recom buck sip-3 pitch 2.54mm +0 +3 +3 +Converter_DCDC +Converter_DCDC_RECOM_R-78S-0.1_THT +DCDC-Converter, RECOM, RECOM_R-78S-0.1, SIP-4, pitch 2.54mm, package size 11.6x8.5x10.4mm^3, https://www.recom-power.com/pdf/Innoline/R-78Sxx-0.1.pdf +dc-dc recom buck sip-4 pitch 2.54mm +0 +4 +4 +Converter_DCDC +Converter_DCDC_RECOM_R5xxxDA_THT +DCDC-Converter, RECOM, RECOM_R5xxxDA, SIP-12, Horizontally Mounted, pitch 2.54mm, package size 32.2x9.1x15mm^3, https://www.recom-power.com/pdf/Innoline/R-5xxxPA_DA.pdf +dc-dc recom buck sip-12 pitch 2.54mm +0 +12 +12 +Converter_DCDC +Converter_DCDC_RECOM_R5xxxPA_THT +DCDC-Converter, RECOM, RECOM_R5xxxPA, SIP-12, pitch 2.54mm, package size 32.2x9.1x15mm^3, https://www.recom-power.com/pdf/Innoline/R-5xxxPA_DA.pdf +dc-dc recom buck sip-12 pitch 2.54mm +0 +12 +12 +Converter_DCDC +Converter_DCDC_RECOM_RCD-24_THT +Constant current LED Driver DC/DC Converter, https://g.recomcdn.com/media/Datasheet/pdf/.fYUQjOlW/.t2a80a771bdbb0ef300f7/Datasheet-93/RCD-24.pdf +Led Driver DC-DC +0 +6 +6 +Converter_DCDC +Converter_DCDC_RECOM_RPA60-xxxxSFW +RPA60-FW 60W Isolated DC to DC Converters +DCDC Regulator Single +0 +6 +6 +Converter_DCDC +Converter_DCDC_RECOM_RPMx.x-x.0 +https://www.recom-power.com/pdf/Innoline/RPM-6.0.pdf +dc-dc recom buck lga-25 pitch 2.29mm +0 +25 +25 +Converter_DCDC +Converter_DCDC_Silvertel_Ag54xx +DCDC-Converter, 30W POE, Silvertel, pitch 2.54mm, package size 62x19.5x14mm, https://silvertel.com/images/datasheets/Ag5400-datasheet-high%20Efficiency-30W-Power-Over-Ethernet-Plus-Module-PoE+PD.pdf +DCDC-Converter Silvertel Ag5405 Ag5412 Ag5424 single output POE +0 +10 +10 +Converter_DCDC +Converter_DCDC_Silvertel_Ag99xxLP_THT +Converter, DCDC, Silvertel Ag9900 PoE, 1500VDC isolation, Vin 36V - 75V, 4.9W - 10W output, https://silvertel.com/images/datasheets/Ag9900M-datasheet-ultra-miniature-isolated-Power-over-Ethernet-POE-module.pdf +DCDC converter IEEE 802.3af +0 +8 +8 +Converter_DCDC +Converter_DCDC_Silvertel_Ag5810 +DCDC-Converter, 60W POE, Silvertel, pitch 2.54mm, package size 69.98x30x15.64mm, https://silvertel.com/images/datasheets/Ag5810-datasheet-IEEE802_3bt-Power-over-Ethernet-4-pair-PD.pdf +DCDC-Converter Silvertel Ag5810 single output POE +0 +163 +13 +Converter_DCDC +Converter_DCDC_TRACO_TBA1-xxxxE_Dual_THT +DCDC-Converter, TRACO, TBA1-xxxxE, Dual, 1W, Rev. October 31. 2023, https://www.tracopower.com/products/tba1e.pdf, generated with kicad-footprint-generator StandardBox_generator.py +DCDC-Converter TRACO TBA1E THT SIP-7 1W +0 +5 +5 +Converter_DCDC +Converter_DCDC_TRACO_TBA1-xxxxE_Single_THT +DCDC-Converter, TRACO, TBA1-xxxxE, Single, 1W, Rev. October 31. 2023, https://www.tracopower.com/products/tba1e.pdf, generated with kicad-footprint-generator StandardBox_generator.py +DCDC-Converter TRACO TBA1E THT SIP-7 1W +0 +4 +4 +Converter_DCDC +Converter_DCDC_TRACO_TBA1-xxxx_THT +DCDC-Converter, TRACO, TBA1-xxxx, 1W, Rev. May 21. 2025, https://www.tracopower.com/products/tba1.pdf, generated with kicad-footprint-generator StandardBox_generator.py +DCDC-Converter TRACO TBA1 THT SIP-4 1W +0 +4 +4 +Converter_DCDC +Converter_DCDC_TRACO_TBA2-xxxx_Dual_THT +DCDC-Converter, TRACO, TBA2-xxxx, Dual, 2W, Rev. October 18. 2023, https://www.tracopower.com/products/tba2.pdf, generated with kicad-footprint-generator StandardBox_generator.py +DCDC-Converter TRACO TBA2 THT SIP-7 2W +0 +5 +5 +Converter_DCDC +Converter_DCDC_TRACO_TBA2-xxxx_Single_THT +DCDC-Converter, TRACO, TBA2-xxxx, Single, 2W, Rev. October 18. 2023, https://www.tracopower.com/products/tba2.pdf, generated with kicad-footprint-generator StandardBox_generator.py +DCDC-Converter TRACO TBA2 THT SIP-7 2W +0 +4 +4 +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_TDU1-xxxx_THT +DCDC-Converter, TRACO, TDU1-xxxx, 1W, Rev. October 24. 2023, https://www.tracopower.com/products/tdu1.pdf, generated with kicad-footprint-generator StandardBox_generator.py +DCDC-Converter TRACO TDU1 THT DIP-8 1W +0 +4 +4 +Converter_DCDC +Converter_DCDC_TRACO_TEA1-xxxxE_THT +DCDC-Converter, TRACO, TEA1-xxxxE, 1W, Rev. October 31. 2023, https://www.tracopower.com/products/tea1e.pdf, generated with kicad-footprint-generator StandardBox_generator.py +DCDC-Converter TRACO TEA1E THT SIP-7 1W +0 +4 +4 +Converter_DCDC +Converter_DCDC_TRACO_TEA1-xxxxHI_THT +DCDC-Converter, TRACO, TEA1-xxxxHI, 1W, Rev. October 31. 2023, https://www.tracopower.com/products/tea1hi.pdf, generated with kicad-footprint-generator StandardBox_generator.py +DCDC-Converter TRACO TEA1HI THT SIP-7 1W +0 +4 +4 +Converter_DCDC +Converter_DCDC_TRACO_TEA1-xxxx_THT +DCDC-Converter, TRACO, TEA1-xxxx, 1W, Rev. October 19. 2023, https://www.tracopower.com/products/tea1.pdf, generated with kicad-footprint-generator StandardBox_generator.py +DCDC-Converter TRACO TEA1 THT SIP-4 1W +0 +4 +4 +Converter_DCDC +Converter_DCDC_TRACO_TEC2-12xxWI_24xxWI_48xxWI_THT +DCDC-Converter, TRACO, TEC 2-12xxWI, TEC 2-24xxWI, TEC 2-48xxWI, 2W, Rev. May 7. 2025, https://www.tracopower.com/products/tec2wi.pdf, generated with kicad-footprint-generator StandardBox_generator.py +DCDC-Converter TRACO TEC2WI THT SIP-8 2W TMR2 +0 +7 +7 +Converter_DCDC +Converter_DCDC_TRACO_TEC3-24xxUI_THT +DCDC-Converter, TRACO, TEC3-24xxUI, 3W, Rev. July 31. 2024, https://www.tracopower.com/products/tec3ui.pdf, generated with kicad-footprint-generator StandardBox_generator.py +DCDC-Converter TRACO TEC3UI THT SIP-8 3W +0 +7 +7 +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-110xxWIRH_THT +DCDC-Converter, TRACO, TEN 10-110xxWIRH, 10W, Rev. December 16. 2024, https://www.tracopower.com/products/ten10wirh.pdf, generated with kicad-footprint-generator StandardBox_generator.py +DCDC-Converter TRACO TEN10WIRH THT DIP-24 TEN3WIRH TEN6WIRH +0 +9 +9 +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-110xxWIRH_THT +DCDC-Converter, TRACO, TEN 20-110xxWIRH, 20W, Rev. August 22. 2024, https://www.tracopower.com/products/ten20wirh.pdf, generated with kicad-footprint-generator StandardBox_generator.py +DCDC-Converter TRACO TEN20WIRH THT 1"x1.6" 20W +0 +6 +6 +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_TEN30-xxxxUIR_THT +DCDC-Converter, TRACO, TEN 30-xxxxUIR, 30W, Rev. August 6. 2025, https://www.tracopower.com/products/ten30uir.pdf, generated with kicad-footprint-generator StandardBox_generator.py +DCDC-Converter TRACO TEN30UIR THT 2"x1" 30W +0 +7 +7 +Converter_DCDC +Converter_DCDC_TRACO_TEN40-110xxWIRH_THT +DCDC-Converter, TRACO, TEN 40-110xxWIRH, 40W, Rev. October 2. 2024, https://www.tracopower.com/products/ten40wirh.pdf, generated with kicad-footprint-generator StandardBox_generator.py +DCDC-Converter TRACO TEN40WIRH THT 2"x1" 40W +0 +6 +6 +Converter_DCDC +Converter_DCDC_TRACO_TES1-051x_121x_241x_Single_SMD +DCDC-Converter, TRACO, TES1-051x, TES1-121x, TES1-241x, Single, 1W, Rev. July 1. 2025, https://www.tracopower.com/products/tes1.pdf, generated with kicad-footprint-generator StandardBox_generator.py +DCDC-Converter TRACO TES1 SMD SMD8 1W +0 +5 +5 +Converter_DCDC +Converter_DCDC_TRACO_TES1-052x_122x_242x_Dual_SMD +DCDC-Converter, TRACO, TES1-052x, TES1-122x, TES1-242x, Dual, 1W, Rev. July 1. 2025, https://www.tracopower.com/products/tes1.pdf, generated with kicad-footprint-generator StandardBox_generator.py +DCDC-Converter TRACO TES1 SMD SMD10 1W +0 +6 +6 +Converter_DCDC +Converter_DCDC_TRACO_THB10-xxxx_Dual_THT +DCDC-Converter, TRACO, THB10-xxxx, Dual, 10W, Rev. March 12. 2025, https://www.tracopower.com/products/thb10.pdf, generated with kicad-footprint-generator StandardBox_generator.py +DCDC-Converter TRACO THB10 THT 2"x1" 10W TRI15 TRI20 +0 +5 +5 +Converter_DCDC +Converter_DCDC_TRACO_THB10-xxxx_Single_THT +DCDC-Converter, TRACO, THB10-xxxx, Single, 10W, Rev. March 12. 2025, https://www.tracopower.com/products/thb10.pdf, generated with kicad-footprint-generator StandardBox_generator.py +DCDC-Converter TRACO THB10 THT 2"x1" 10W TRI15 TRI20 +0 +4 +4 +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_THL30-xxxxWI_THT +DCDC-Converter, TRACO, THL 30-xxxxWI, 30W, Rev. September 11. 2025, https://www.tracopower.com/products/thl30wi.pdf, generated with kicad-footprint-generator StandardBox_generator.py +DCDC-Converter TRACO THL30WI THT 1"x1" 30W +0 +6 +6 +Converter_DCDC +Converter_DCDC_TRACO_THL40-xxxxWI_THT +DCDC-Converter, TRACO, THL 40-xxxxWI, 40W, Rev. July 31. 2025, https://www.tracopower.com/products/thl40wi.pdf, generated with kicad-footprint-generator StandardBox_generator.py +DCDC-Converter TRACO THL40WI THT 1"x1" 40W +0 +6 +6 +Converter_DCDC +Converter_DCDC_TRACO_THN10-xxxxUIR_THT +DCDC-Converter, TRACO, THN 10-xxxxUIR, 10W, Rev. July 3. 2025, https://www.tracopower.com/products/thn10uir.pdf, generated with kicad-footprint-generator StandardBox_generator.py +DCDC-Converter TRACO THN10UIR THT 1"x1" 10W +0 +7 +7 +Converter_DCDC +Converter_DCDC_TRACO_THN30-xxxx_THT +DCDC-Converter TRACO THN 10 to 30W, Single or dual Output, (https://www.tracopower.com/sites/default/files/products/datasheets/thn30_datasheet.pdf) +DCDC-Converter TRACO THN30 Generic +0 +6 +6 +Converter_DCDC +Converter_DCDC_TRACO_THR40-72xxWI_THT +DCDC-Converter, TRACO, THR40-72xxWI, THR40-72xxxWI, 40W, Rev. November 4. 2024, https://www.tracopower.com/products/thr40wi.pdf, generated with kicad-footprint-generator StandardBox_generator.py +DCDC-Converter TRACO THR40WI THT 2"x1" 40W +0 +6 +6 +Converter_DCDC +Converter_DCDC_TRACO_TMA-05xxD_12xxD_Dual_THT +DCDC-Converter, TRACO, TMA-05xxD, TMA-12xxD, Dual, 1W, Rev. November 10. 2023, https://www.tracopower.com/products/tma.pdf, generated with kicad-footprint-generator StandardBox_generator.py +DCDC-Converter TRACO TMA THT SIP-7 1W +0 +5 +5 +Converter_DCDC +Converter_DCDC_TRACO_TMA-05xxS_12xxS_Single_THT +DCDC-Converter, TRACO, TMA-05xxS, TMA-12xxS, Single, 1W, Rev. November 10. 2023, https://www.tracopower.com/products/tma.pdf, generated with kicad-footprint-generator StandardBox_generator.py +DCDC-Converter TRACO TMA THT SIP-7 1W +0 +4 +4 +Converter_DCDC +Converter_DCDC_TRACO_TMA-15xxD_24xxD_Dual_THT +DCDC-Converter, TRACO, TMA-15xxD, TMA-25xxD, Dual, 1W, Rev. November 10. 2023, https://www.tracopower.com/products/tma.pdf, generated with kicad-footprint-generator StandardBox_generator.py +DCDC-Converter TRACO TMA THT SIP-7 1W +0 +5 +5 +Converter_DCDC +Converter_DCDC_TRACO_TMA-15xxS_24xxS_Single_THT +DCDC-Converter, TRACO, TMA-15xxS, TMA-24xxS, Single, 1W, Rev. November 10. 2023, https://www.tracopower.com/products/tma.pdf, generated with kicad-footprint-generator StandardBox_generator.py +DCDC-Converter TRACO TMA THT SIP-7 1W +0 +4 +4 +Converter_DCDC +Converter_DCDC_TRACO_TME_03xxS_05xxS_12xxS_Single_THT +DCDC-Converter, TRACO, TME-03xxS, TME-05xxS, TME-12xxS, 1W, Rev. September 26. 2023, https://www.tracopower.com/products/tme.pdf, generated with kicad-footprint-generator StandardBox_generator.py +DCDC-Converter TRACO TME THT SIP-7 1W +0 +4 +4 +Converter_DCDC +Converter_DCDC_TRACO_TME_24xxS_Single_THT +DCDC-Converter, TRACO, TME-24xxS, 1W, Rev. September 26. 2023, https://www.tracopower.com/products/tme.pdf, generated with kicad-footprint-generator StandardBox_generator.py +DCDC-Converter TRACO TME THT SIP-7 1W +0 +4 +4 +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_TMR4-xxxxWI_THT +DCDC-Converter, TRACO, TMR4-xxxxWI, 4W, Rev. December 06. 2023, https://www.tracopower.com/products/tmr4wi.pdf, generated with kicad-footprint-generator StandardBox_generator.py +DCDC-Converter TRACO TMR4WI THT SIP-8 4W +0 +7 +7 +Converter_DCDC +Converter_DCDC_TRACO_TMR10-24xxWIR_48xxWIR_72xxWIR_THT +DCDC-Converter, TRACO, TMR 10-24xxWIR, TMR 10-48xxWIR, TMR 10-72xxWIR, 10W, Rev. April 29. 2025, https://www.tracopower.com/products/tmr10wir.pdf, generated with kicad-footprint-generator StandardBox_generator.py +DCDC-Converter TRACO TMR10WIR THT SIP-8 10W +0 +8 +8 +Converter_DCDC +Converter_DCDC_TRACO_TMU3-05xx_12xx_THT +DCDC-Converter, TRACO, TMU3-05xx, TMU3-12xx, 3W, Rev. November 10. 2023, https://www.tracopower.com/products/tmu3.pdf, generated with kicad-footprint-generator StandardBox_generator.py +DCDC-Converter TRACO TMU3 THT SIP-4 3W +0 +4 +4 +Converter_DCDC +Converter_DCDC_TRACO_TMU3-24xx_THT +DCDC-Converter, TRACO, TMU3-24xx, 3W, Rev. November 10. 2023, https://www.tracopower.com/products/tmu3.pdf, generated with kicad-footprint-generator StandardBox_generator.py +DCDC-Converter TRACO TMU3 THT SIP-4 3W +0 +4 +4 +Converter_DCDC +Converter_DCDC_TRACO_TOS06-05SIL_THT +DCDC-Converter, TRACO, TOS06-05SIL, 6A, Rev. March 20. 2024, https://www.tracopower.com/products/tos06sil.pdf, generated with kicad-footprint-generator StandardBox_generator.py +DCDC-Converter POL TRACO TOS06SIL 2.54MM THT SIP-9 6A +0 +5 +5 +Converter_DCDC +Converter_DCDC_TRACO_TOS06-12SIL_THT +DCDC-Converter, TRACO, TOS06-12SIL, 6A, Rev. March 20. 2024, https://www.tracopower.com/products/tos06sil.pdf, generated with kicad-footprint-generator StandardBox_generator.py +DCDC-Converter POL TRACO TOS06SIL 2.54MM THT SIP-9 6A +0 +5 +5 +Converter_DCDC +Converter_DCDC_TRACO_TRA3-xxxx_THT +DCDC-Converter, TRACO, TRA3-xxxx, 3W, Rev. February 4. 2025, https://www.tracopower.com/products/tra3.pdf, generated with kicad-footprint-generator StandardBox_generator.py +DCDC-Converter TRACO TRA3 THT SIP-7 3W +0 +4 +4 +Converter_DCDC +Converter_DCDC_TRACO_TRI1-xxxx_THT +DCDC-Converter, TRACO, TRI1-xxxx, 1W, Rev. November 13. 2023, https://www.tracopower.com/products/tri1.pdf, generated with kicad-footprint-generator StandardBox_generator.py +DCDC-Converter TRACO TRI1 THT SIP-7 1W +0 +4 +4 +Converter_DCDC +Converter_DCDC_TRACO_TRI10_Dual_THT +DCDC-Converter, TRACO, TRI 10, Dual, 10W, Rev. March 11. 2025, https://www.tracopower.com/products/tri10.pdf, generated with kicad-footprint-generator StandardBox_generator.py +DCDC-Converter TRACO TRI10 THT DIP-24 +0 +6 +6 +Converter_DCDC +Converter_DCDC_TRACO_TRI10_Single_THT +DCDC-Converter, TRACO, TRI 10, Single, 10W, Rev. March 11. 2025, https://www.tracopower.com/products/tri10.pdf, generated with kicad-footprint-generator StandardBox_generator.py +DCDC-Converter TRACO TRI10 THT DIP-24 +0 +5 +5 +Converter_DCDC +Converter_DCDC_TRACO_TRN3-xx1x_Single_THT +DCDC-Converter, TRACO, TRN3-xx1x, 3W, Rev. February 3. 2025, https://www.tracopower.com/products/trn3.pdf, generated with kicad-footprint-generator StandardBox_generator.py +DCDC-Converter TRACO TRN3 THT SIP-5 3W +0 +4 +4 +Converter_DCDC +Converter_DCDC_TRACO_TRN3-xx2x_Dual_THT +DCDC-Converter, TRACO, TRN3-xx2x, 3W, Rev. February 3. 2025, https://www.tracopower.com/products/trn3.pdf, generated with kicad-footprint-generator StandardBox_generator.py +DCDC-Converter TRACO TRN3 THT SIP-5 3W +0 +5 +5 +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_TRACO_TSR0.5-24xx_TSR0.5-24xxx_THT +DCDC-Converter, TRACO, TSR0.5-24xx, TSR0.5-24xxx, 0.5A, Rev. February 11. 2025, https://www.tracopower.com/products/tsr0.5.pdf, generated with kicad-footprint-generator StandardBox_generator.py +DCDC-Converter SWITCHING-REGULATOR STEP-DOWN TRACO TSR0.5 2.54MM THT SIP-3 0.5A +0 +3 +3 +Converter_DCDC +Converter_DCDC_TRACO_TSR0.6-48xxWI_TSR0.6-48xxxWI_THT +DCDC-Converter, TRACO, TSR0.6-48xxWI, TSR0.6-48xxxWI, 0.6A, Rev. October 29. 2024, https://www.tracopower.com/products/tsr0.6wi.pdf, generated with kicad-footprint-generator StandardBox_generator.py +DCDC-Converter SWITCHING-REGULATOR STEP-DOWN TRACO TSR0.6WI 2.54MM THT SIP-3 0.6A +0 +3 +3 +Converter_DCDC +Converter_DCDC_TRACO_TSR1-xxxxE_THT +DCDC-Converter, TRACO, TSR1-xxxxE, 1A, Rev. October 31. 2023, https://www.tracopower.com/products/tsr1e.pdf, generated with kicad-footprint-generator StandardBox_generator.py +DCDC-Converter SWITCHING-REGULATOR STEP-DOWN TRACO TSR1E 2.54MM THT SIP-3 1A +0 +3 +3 +Converter_DCDC +Converter_DCDC_TRACO_TSR1.5-24xxE_24120E_THT +DCDC-Converter, TRACO, TSR1.5-24xxE, TSR1.5-24120E, 1.5A, Rev. April 2. 2025, https://www.tracopower.com/products/tsr1.5e.pdf, generated with kicad-footprint-generator StandardBox_generator.py +DCDC-Converter SWITCHING-REGULATOR STEP-DOWN TRACO TSR1.5E 2.54MM THT SIP-3 1.5A +0 +3 +3 +Converter_DCDC +Converter_DCDC_TRACO_TSR2-24xxN_TSR2-24xxxN_THT +DCDC-Converter, TRACO, TSR2-24xxN, TSR2-24xxxN, 2A, Rev. December 19. 2024, https://www.tracopower.com/products/tsr2n.pdf, generated with kicad-footprint-generator StandardBox_generator.py +DCDC-Converter SWITCHING-REGULATOR STEP-DOWN TRACO TSR2N 2.54MM THT SIP-3 2A TSR3N +0 +3 +3 +Converter_DCDC +Converter_DCDC_TRACO_TSR2-xxxx_THT +DCDC-Converter, TRACO, TSR2-xxxx, 2A, Rev. January 20. 2025, https://www.tracopower.com/products/tsr2.pdf, generated with kicad-footprint-generator StandardBox_generator.py +DCDC-Converter SWITCHING-REGULATOR STEP-DOWN TRACO TSR2 2.54MM THT SIP-3 2A +0 +3 +3 +Converter_DCDC +Converter_DCDC_XP_POWER-IA48xxD_THT +DCDC-Converter, XP Power, IA series, 48V input, 1000V isolation, SIP-7, https://web.archive.org/web/20190130132700/https://www.xppower.com/portals/0/pdfs/SF_IA.pdf, generated with kicad-footprint-generator StandardBox_generator.py +THT +0 +6 +6 +Converter_DCDC +Converter_DCDC_XP_POWER-IA48xxS_THT +DCDC-Converter, XP Power, IA series, 48V input, 1000V isolation, SIP-7, https://web.archive.org/web/20190130132700/https://www.xppower.com/portals/0/pdfs/SF_IA.pdf, generated with kicad-footprint-generator StandardBox_generator.py +THT +0 +5 +5 +Converter_DCDC +Converter_DCDC_XP_POWER-IAxxxxD_THT +DCDC-Converter, XP Power, IA series, 3.3-24V inputs, 1000V isolation, SIP-7, https://www.xppower.com/portals/0/pdfs/SF_IA.pdf, generated with kicad-footprint-generator StandardBox_generator.py +THT +0 +6 +6 +Converter_DCDC +Converter_DCDC_XP_POWER-IAxxxxS_THT +DCDC-Converter, XP Power, IA series, 3.3-24V inputs, 1000V isolation, SIP-7, https://www.xppower.com/portals/0/pdfs/SF_IA.pdf, generated with kicad-footprint-generator StandardBox_generator.py +THT +0 +5 +5 +Converter_DCDC +Converter_DCDC_XP_POWER-IHxxxxDH_THT +DCDC-Converter, XP Power, IH series, 2W, ≥3000V isolation, DIP-14, https://www.xppower.com/portals/0/pdfs/SF_IH.pdf, generated with kicad-footprint-generator StandardBox_generator.py +THT +0 +6 +6 +Converter_DCDC +Converter_DCDC_XP_POWER-IHxxxxD_THT +DCDC-Converter, XP Power, IH series, 2W, 1000V isolation, DIP-14, https://www.xppower.com/portals/0/pdfs/SF_IH.pdf, generated with kicad-footprint-generator StandardBox_generator.py +THT +0 +6 +6 +Converter_DCDC +Converter_DCDC_XP_POWER-IHxxxxSH_THT +DCDC-Converter, XP Power, IH series, 2W, ≥3000V isolation, SIP-7, https://www.xppower.com/portals/0/pdfs/SF_IH.pdf, generated with kicad-footprint-generator StandardBox_generator.py +THT +0 +5 +5 +Converter_DCDC +Converter_DCDC_XP_POWER-IHxxxxS_THT +DCDC-Converter, XP Power, IH series, 2W, 1000V isolation, SIP-7, https://www.xppower.com/portals/0/pdfs/SF_IH.pdf, generated with kicad-footprint-generator StandardBox_generator.py +THT +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 +DCDC-Converter, XP Power, ITQ series, 6W, 1500V isolation, SIP-8, https://www.xppower.com/portals/0/pdfs/SF_ITQ.pdf, generated with kicad-footprint-generator StandardBox_generator.py +THT +0 +6 +6 +Converter_DCDC +Converter_DCDC_XP_POWER-ITXxxxxSA_THT +DCDC-Converter, XP Power, ITX series, single-output, 6W, 1500V isolation, SIP-8, https://www.xppower.com/portals/0/pdfs/SF_ITX.pdf, generated with kicad-footprint-generator StandardBox_generator.py +THT +0 +5 +5 +Converter_DCDC +Converter_DCDC_XP_POWER-ITxxxxxS_THT +DCDC-Converter, XP Power, IT series, 3W, 1500V isolation, SIP-9, https://www.xppower.com/portals/0/pdfs/SF_IT.pdf, generated with kicad-footprint-generator StandardBox_generator.py +THT +0 +7 +7 +Converter_DCDC +Converter_DCDC_XP_POWER_JTDxxxxxxx_THT +XP Power JTD Series DC-DC Converter +DCDC Isolated +0 +6 +6 +Converter_DCDC +Converter_DCDC_XP_POWER_JTExxxxDxx_THT +DCDC-Converter, XP POWER, Type JTE06 Series, Dual Output +DCDC-Converter XP_POWER JTE06 Dual +0 +8 +8 +Converter_DCDC +Converter_DCDC_muRata_MEJ1DxxxxSC_THT +muRata MEJ1DxxxxSC, 19.5x9.8x12.5mm, 5.2kVDC Isolated, 1W, dual output, SIP package style, https://power.murata.com/data/power/ncl/kdc_mej1.pdf +muRata MEJ1D DCDC-Converter +0 +5 +5 +Converter_DCDC +Converter_DCDC_muRata_MEJ1SxxxxSC_THT +muRata MEJ1SxxxxSC, 19.5x9.8x12.5mm, 5.2kVDC Isolated, 1W, single output, SIP package style, https://power.murata.com/data/power/ncl/kdc_mej1.pdf +muRata MEJ1S DCDC-Converter +0 +4 +4 +Crystal +Crystal_AT310_D3.0mm_L10.0mm_Horizontal +AT310, Crystal, with length tolerance, length 10.5mm, width 3.0mm, THT, https://www.cinetech.com.tw/upload/2011/04/20110401165201.pdf + +0 +2 +2 +Crystal +Crystal_AT310_D3.0mm_L10.0mm_Horizontal_1EP_style1 +AT310, Crystal, with length tolerance, length 10.5mm, width 3.0mm, THT, https://www.cinetech.com.tw/upload/2011/04/20110401165201.pdf + +0 +3 +3 +Crystal +Crystal_AT310_D3.0mm_L10.0mm_Horizontal_1EP_style2 +AT310, Crystal, with length tolerance, length 10.5mm, width 3.0mm, THT, https://www.cinetech.com.tw/upload/2011/04/20110401165201.pdf + +0 +5 +3 +Crystal +Crystal_AT310_D3.0mm_L10.0mm_Vertical +AT310, Crystal, with length tolerance, length 10.5mm, width 3mm, https://www.cinetech.com.tw/upload/2011/04/20110401165201.pdf + +0 +2 +2 +Crystal +Crystal_C26-LF_D2.1mm_L6.5mm_Horizontal +C26-LF, Crystal, length 6.5mm, width 2.1mm, THT + +0 +2 +2 +Crystal +Crystal_C26-LF_D2.1mm_L6.5mm_Horizontal_1EP_style1 +C26-LF, Crystal, length 6.5mm, width 2.1mm, THT + +0 +3 +3 +Crystal +Crystal_C26-LF_D2.1mm_L6.5mm_Horizontal_1EP_style2 +C26-LF, Crystal, length 6.5mm, width 2.1mm, THT + +0 +5 +3 +Crystal +Crystal_C26-LF_D2.1mm_L6.5mm_Vertical +C26-LF, Crystal, length 6.5mm, width 2.06mm + +0 +2 +2 +Crystal +Crystal_C38-LF_D3.0mm_L8.0mm_Horizontal +C38-LF, Crystal, length 8.0mm, width 3.0mm, THT + +0 +2 +2 +Crystal +Crystal_C38-LF_D3.0mm_L8.0mm_Horizontal_1EP_style1 +C38-LF, Crystal, length 8.0mm, width 3.0mm, THT + +0 +3 +3 +Crystal +Crystal_C38-LF_D3.0mm_L8.0mm_Horizontal_1EP_style2 +C38-LF, Crystal, length 8.0mm, width 3.0mm, THT + +0 +5 +3 +Crystal +Crystal_C38-LF_D3.0mm_L8.0mm_Vertical +C38-LF, Crystal, length 8.0mm, width 3mm + +0 +2 +2 +Crystal +Crystal_DS10_D1.0mm_L4.3mm_Horizontal +DS10, Crystal, length 4.3mm, width 1.0mm, THT, https://www.microcrystal.com/fileadmin/Media/Products/32kHz/Datasheet/DS-Series.pdf + +0 +2 +2 +Crystal +Crystal_DS10_D1.0mm_L4.3mm_Horizontal_1EP_style1 +DS10, Crystal, length 4.3mm, width 1.0mm, THT, https://www.microcrystal.com/fileadmin/Media/Products/32kHz/Datasheet/DS-Series.pdf + +0 +3 +3 +Crystal +Crystal_DS10_D1.0mm_L4.3mm_Horizontal_1EP_style2 +DS10, Crystal, length 4.3mm, width 1.0mm, THT, https://www.microcrystal.com/fileadmin/Media/Products/32kHz/Datasheet/DS-Series.pdf + +0 +5 +3 +Crystal +Crystal_DS10_D1.0mm_L4.3mm_Vertical +DS10, Crystal, length 4.3mm, width 1mm, https://www.microcrystal.com/fileadmin/Media/Products/32kHz/Datasheet/DS-Series.pdf + +0 +2 +2 +Crystal +Crystal_DS15_D1.5mm_L5.0mm_Horizontal +DS15, Crystal, length 5.0mm, width 1.5mm, THT, https://www.microcrystal.com/fileadmin/Media/Products/32kHz/Datasheet/DS-Series.pdf + +0 +2 +2 +Crystal +Crystal_DS15_D1.5mm_L5.0mm_Horizontal_1EP_style1 +DS15, Crystal, length 5.0mm, width 1.5mm, THT, https://www.microcrystal.com/fileadmin/Media/Products/32kHz/Datasheet/DS-Series.pdf + +0 +3 +3 +Crystal +Crystal_DS15_D1.5mm_L5.0mm_Horizontal_1EP_style2 +DS15, Crystal, length 5.0mm, width 1.5mm, THT, https://www.microcrystal.com/fileadmin/Media/Products/32kHz/Datasheet/DS-Series.pdf + +0 +5 +3 +Crystal +Crystal_DS15_D1.5mm_L5.0mm_Vertical +DS15, Crystal DS15, length 5.0mm, width 1.5mm, https://www.microcrystal.com/fileadmin/Media/Products/32kHz/Datasheet/DS-Series.pdf + +0 +2 +2 +Crystal +Crystal_DS26_D2.0mm_L6.0mm_Horizontal +DS26, Crystal, length 6.0mm, width 2.0mm, THT, https://www.microcrystal.com/fileadmin/Media/Products/32kHz/Datasheet/DS-Series.pdf + +0 +2 +2 +Crystal +Crystal_DS26_D2.0mm_L6.0mm_Horizontal_1EP_style1 +DS26, Crystal, length 6.0mm, width 2.0mm, THT, https://www.microcrystal.com/fileadmin/Media/Products/32kHz/Datasheet/DS-Series.pdf + +0 +3 +3 +Crystal +Crystal_DS26_D2.0mm_L6.0mm_Horizontal_1EP_style2 +DS26, Crystal, length 6.0mm, width 2.0mm, THT, https://www.microcrystal.com/fileadmin/Media/Products/32kHz/Datasheet/DS-Series.pdf + +0 +5 +3 +Crystal +Crystal_DS26_D2.0mm_L6.0mm_Vertical +DS26, Crystal, length 6.0mm, width 2mm, https://www.microcrystal.com/fileadmin/Media/Products/32kHz/Datasheet/DS-Series.pdf + +0 +2 +2 +Crystal +Crystal_HC18-U_Horizontal +HC18/U, Crystal, length 13.0mm, width 10.9mm, THT, http://5hertz.com/pdfs/04404_D.pdf + +0 +2 +2 +Crystal +Crystal_HC18-U_Horizontal_1EP_style1 +HC18/U, Crystal HC-18/U, length 13.0mm, width 10.9mm, THT, http://5hertz.com/pdfs/04404_D.pdf + +0 +3 +3 +Crystal +Crystal_HC18-U_Horizontal_1EP_style2 +HC18/U, Crystal, length 13.0mm, width 10.9mm, THT, http://5hertz.com/pdfs/04404_D.pdf + +0 +5 +3 +Crystal +Crystal_HC18-U_Vertical +HC-18/U, Crystal, http://5hertz.com/pdfs/04404_D.pdf + +0 +2 +2 +Crystal +Crystal_HC33-U_Horizontal +HC-33/U, Crystal, length 19.7mm, width 19.2mm, THT, http://pdi.bentech-taiwan.com/PDI/GEN20SPEV20HC3320U.pdf + +0 +2 +2 +Crystal +Crystal_HC33-U_Horizontal_1EP_style1 +HC-33/U, Crystal, length 19.7mm, width 19.2mm, THT, http://pdi.bentech-taiwan.com/PDI/GEN20SPEV20HC3320U.pdf + +0 +3 +3 +Crystal +Crystal_HC33-U_Horizontal_1EP_style2 +HC-33/U, Crystal, length 19.7mm, width 19.2mm, THT, http://pdi.bentech-taiwan.com/PDI/GEN20SPEV20HC3320U.pdf + +0 +5 +3 +Crystal +Crystal_HC33-U_Vertical +HC-33/U, Crystal, http://pdi.bentech-taiwan.com/PDI/GEN20SPEV20HC3320U.pdf + +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 +HC-49-4H, Crystal, http://5hertz.com/pdfs/04404_D.pdf + +0 +2 +2 +Crystal +Crystal_HC49-U-3Pin_Vertical +HC-49/U, Crystal, 3-pinversion, http://www.raltron.com/products/pdfspecs/crystal_hc_49_45_51.pdf + +0 +3 +3 +Crystal +Crystal_HC49-U_Horizontal +HC-49/U, Crystal, length 13.0mm, width 10.9mm, THT, http://5hertz.com/pdfs/04404_D.pdf + +0 +2 +2 +Crystal +Crystal_HC49-U_Horizontal_1EP_style1 +HC-49/U, Crystal, length 13.0mm, width 10.9mm, THT, http://5hertz.com/pdfs/04404_D.pdf + +0 +3 +3 +Crystal +Crystal_HC49-U_Horizontal_1EP_style2 +HC-49/U, Crystal, length 13.0mm, width 10.9mm, THT, http://5hertz.com/pdfs/04404_D.pdf + +0 +5 +3 +Crystal +Crystal_HC49-U_Vertical +HC-49/U, Crystal, http://5hertz.com/pdfs/04404_D.pdf + +0 +2 +2 +Crystal +Crystal_HC50_Horizontal +HC-50, Crystal, length 13.4mm, width 11.1mm, THT, http://www.crovencrystals.com/croven_pdf/HC-50_Crystal_Holder_Rev_00.pdf + +0 +2 +2 +Crystal +Crystal_HC50_Horizontal_1EP_style1 +HC-50, Crystal, length 13.4mm, width 11.1mm, THT, http://www.crovencrystals.com/croven_pdf/HC-50_Crystal_Holder_Rev_00.pdf + +0 +3 +3 +Crystal +Crystal_HC50_Horizontal_1EP_style2 +HC-50, Crystal, length 13.4mm, width 11.1mm, THT, http://www.crovencrystals.com/croven_pdf/HC-50_Crystal_Holder_Rev_00.pdf + +0 +5 +3 +Crystal +Crystal_HC50_Vertical +HC-50, Crystal, http://www.crovencrystals.com/croven_pdf/HC-50_Crystal_Holder_Rev_00.pdf + +0 +2 +2 +Crystal +Crystal_HC51-U_Vertical +HC-51/U, Crystal, http://www.crovencrystals.com/croven_pdf/HC-51_Crystal_Holder_Rev_00.pdf + +0 +2 +2 +Crystal +Crystal_HC51_Horizontal +HC-51, Crystal, length 19.7mm, width 19.3mm, THT, http://www.crovencrystals.com/croven_pdf/HC-51_Crystal_Holder_Rev_00.pdf + +0 +2 +2 +Crystal +Crystal_HC51_Horizontal_1EP_style1 +HC-51, Crystal, length 19.7mm, width 19.3mm, THT, http://www.crovencrystals.com/croven_pdf/HC-51_Crystal_Holder_Rev_00.pdf + +0 +3 +3 +Crystal +Crystal_HC51_Horizontal_1EP_style2 +HC-51, Crystal, length 19.7mm, width 19.3mm, THT, http://www.crovencrystals.com/croven_pdf/HC-51_Crystal_Holder_Rev_00.pdf + +0 +5 +3 +Crystal +Crystal_HC52-6mm_Horizontal +HC-51/6mm, Crystal, length 6.0mm, width 8.0mm, THT, http://www.kvg-gmbh.de/assets/uploads/files/product_pdfs/XS71xx.pdf + +0 +2 +2 +Crystal +Crystal_HC52-6mm_Horizontal_1EP_style1 +HC-51/6mm, Crystal, length 6.0mm, width 8.0mm, THT, http://www.kvg-gmbh.de/assets/uploads/files/product_pdfs/XS71xx.pdf + +0 +3 +3 +Crystal +Crystal_HC52-6mm_Horizontal_1EP_style2 +HC-51/6mm, Crystal, length 6.0mm, width 8.0mm, THT, http://www.kvg-gmbh.de/assets/uploads/files/product_pdfs/XS71xx.pdf + +0 +5 +3 +Crystal +Crystal_HC52-6mm_Vertical +HC-52/6mm, Crystal, http://www.kvg-gmbh.de/assets/uploads/files/product_pdfs/XS71xx.pdf + +0 +2 +2 +Crystal +Crystal_HC52-8mm_Horizontal +HC-51/8mm, Crystal, length 8.0mm, width 8.0mm, THT, http://www.kvg-gmbh.de/assets/uploads/files/product_pdfs/XS71xx.pdf + +0 +2 +2 +Crystal +Crystal_HC52-8mm_Horizontal_1EP_style1 +HC-51/8mm, Crystal, length 8.0mm, width 8.0mm, THT, http://www.kvg-gmbh.de/assets/uploads/files/product_pdfs/XS71xx.pdf + +0 +3 +3 +Crystal +Crystal_HC52-8mm_Horizontal_1EP_style2 +HC-51/8mm, Crystal, length 8.0mm, width 8.0mm, THT, http://www.kvg-gmbh.de/assets/uploads/files/product_pdfs/XS71xx.pdf + +0 +5 +3 +Crystal +Crystal_HC52-8mm_Vertical +HC-52/8mm, Crystal, http://www.kvg-gmbh.de/assets/uploads/files/product_pdfs/XS71xx.pdf + +0 +2 +2 +Crystal +Crystal_HC52-U-3Pin_Vertical +HC-52/U, Crystal, http://www.kvg-gmbh.de/assets/uploads/files/product_pdfs/XS71xx.pdf + +0 +3 +3 +Crystal +Crystal_HC52-U_Horizontal +HC-51/U, Crystal, length 8.8mm, width 8.0mm, THT, http://www.kvg-gmbh.de/assets/uploads/files/product_pdfs/XS71xx.pdf + +0 +2 +2 +Crystal +Crystal_HC52-U_Horizontal_1EP_style1 +HC-51/U, Crystal, length 8.8mm, width 8.0mm, THT, http://www.kvg-gmbh.de/assets/uploads/files/product_pdfs/XS71xx.pdf + +0 +3 +3 +Crystal +Crystal_HC52-U_Horizontal_1EP_style2 +HC-51/U, Crystal, length 8.8mm, width 8.0mm, THT, http://www.kvg-gmbh.de/assets/uploads/files/product_pdfs/XS71xx.pdf + +0 +5 +3 +Crystal +Crystal_HC52-U_Vertical +HC-52/U, Crystal, http://www.kvg-gmbh.de/assets/uploads/files/product_pdfs/XS71xx.pdf + +0 +2 +2 +Crystal +Crystal_Round_D1.0mm_Vertical +DS10, Crystal, length 4.45mm, width 1mm, https://www.microcrystal.com/fileadmin/Media/Products/32kHz/Datasheet/DS-Series.pdf + +0 +2 +2 +Crystal +Crystal_Round_D1.5mm_Vertical +DS15, Crystal, length 5mm, width 1.5mm, https://www.microcrystal.com/fileadmin/Media/Products/32kHz/Datasheet/DS-Series.pdf + +0 +2 +2 +Crystal +Crystal_Round_D2.0mm_Vertical +DS26, Crystal, length 6mm, width 2mm, https://www.microcrystal.com/fileadmin/Media/Products/32kHz/Datasheet/DS-Series.pdf + +0 +2 +2 +Crystal +Crystal_Round_D3.0mm_Vertical +C38-LF, Crystal, length 8mm, width 3mm + +0 +2 +2 +Crystal +Crystal_SMD_0603-2Pin_6.0x3.5mm +SMD0603/2, Crystal, 6.0x3.5mm package, SMD, generated with kicad-footprint-generator make_crystal.py, http://www.petermann-technik.de/fileadmin/petermann/pdf/SMD0603-2.pdf + +0 +2 +2 +Crystal +Crystal_SMD_0603-2Pin_6.0x3.5mm_HandSoldering +SMD0603/2, Crystal, 6.0x3.5mm package, SMD, hand-soldering, generated with kicad-footprint-generator make_crystal.py, http://www.petermann-technik.de/fileadmin/petermann/pdf/SMD0603-2.pdf + +0 +2 +2 +Crystal +Crystal_SMD_0603-4Pin_6.0x3.5mm +SMD0603/4, Crystal, 6.0x3.5mm package, SMD, generated with kicad-footprint-generator make_crystal.py, http://www.petermann-technik.de/fileadmin/petermann/pdf/SMD0603-4.pdf + +0 +4 +4 +Crystal +Crystal_SMD_0603-4Pin_6.0x3.5mm_HandSoldering +SMD0603/4, Crystal, 6.0x3.5mm package, SMD, hand-soldering, generated with kicad-footprint-generator make_crystal.py, http://www.petermann-technik.de/fileadmin/petermann/pdf/SMD0603-4.pdf + +0 +4 +4 +Crystal +Crystal_SMD_1210-4Pin_1.2x1.0mm +SMD Crystal SERIES SMD1210/4 https://ecsxtal.com/store/pdf/ECX-1048.pdf, 1.2x1.0mm^2 package +SMT +0 +4 +4 +Crystal +Crystal_SMD_1210-4Pin_1.2x1.0mm_RotB +SMD1210/4, Crystal, 1.2x1.0mm package, SMD, generated with kicad-footprint-generator make_crystal.py, https://ecsxtal.com/store/pdf/ECX-1048.pdf + +0 +4 +4 +Crystal +Crystal_SMD_2012-2Pin_2.0x1.2mm +2012/2, Crystal, 2.0x1.2mm package, SMD, generated with kicad-footprint-generator make_crystal.py, http://txccrystal.com/images/pdf/9ht11.pdf + +0 +2 +2 +Crystal +Crystal_SMD_2012-2Pin_2.0x1.2mm_HandSoldering +2012/2, Crystal, 2.0x1.2mm package, SMD, hand-soldering, generated with kicad-footprint-generator make_crystal.py, http://txccrystal.com/images/pdf/9ht11.pdf + +0 +2 +2 +Crystal +Crystal_SMD_2016-4Pin_2.0x1.6mm +SMD2016/4, Crystal, 2.0x1.6mm package, SMD, generated with kicad-footprint-generator make_crystal.py, http://www.q-crystal.com/upload/5/2015552223166229.pdf + +0 +4 +4 +Crystal +Crystal_SMD_2520-4Pin_2.5x2.0mm +SMD2520/4, Crystal, 2.5x2.0mm package, SMD, generated with kicad-footprint-generator make_crystal.py, http://www.newxtal.com/UploadFiles/Images/2012-11-12-09-29-09-776.pdf + +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 +SMD3225/4, Crystal, 3.2x2.5mm package, SMD, generated with kicad-footprint-generator make_crystal.py, http://www.txccrystal.com/images/pdf/7m-accuracy.pdf + +0 +4 +4 +Crystal +Crystal_SMD_3225-4Pin_3.2x2.5mm_HandSoldering +SMD3225/4, Crystal, 3.2x2.5mm package, SMD, hand-soldering, generated with kicad-footprint-generator make_crystal.py, http://www.txccrystal.com/images/pdf/7m-accuracy.pdf + +0 +4 +4 +Crystal +Crystal_SMD_5032-2Pin_5.0x3.2mm +SMD2520/2, Crystal, 5.0x3.2mm package, SMD, generated with kicad-footprint-generator make_crystal.py, http://www.icbase.com/File/PDF/HKC/HKC00061008.pdf + +0 +2 +2 +Crystal +Crystal_SMD_5032-2Pin_5.0x3.2mm_HandSoldering +SMD2520/2, Crystal, 5.0x3.2mm package, SMD, hand-soldering, generated with kicad-footprint-generator make_crystal.py, http://www.icbase.com/File/PDF/HKC/HKC00061008.pdf + +0 +2 +2 +Crystal +Crystal_SMD_5032-4Pin_5.0x3.2mm +SMD2520/4, Crystal, 5.0x3.2mm package, SMD, generated with kicad-footprint-generator make_crystal.py, http://www.icbase.com/File/PDF/HKC/HKC00061008.pdf + +0 +4 +4 +Crystal +Crystal_SMD_7050-2Pin_7.0x5.0mm +SMD7050/4, Crystal, 7.0x5.0mm package, SMD, generated with kicad-footprint-generator make_crystal.py, https://www.foxonline.com/pdfs/FQ7050.pdf + +0 +2 +2 +Crystal +Crystal_SMD_7050-2Pin_7.0x5.0mm_HandSoldering +SMD7050/4, Crystal, 7.0x5.0mm package, SMD, hand-soldering, generated with kicad-footprint-generator make_crystal.py, https://www.foxonline.com/pdfs/FQ7050.pdf + +0 +2 +2 +Crystal +Crystal_SMD_7050-4Pin_7.0x5.0mm +SMD7050/4, Crystal, 7.0x5.0mm package, SMD, generated with kicad-footprint-generator make_crystal.py, https://www.foxonline.com/pdfs/FQ7050.pdf + +0 +4 +4 +Crystal +Crystal_SMD_Abracon_ABM3-2Pin_5.0x3.2mm +Abracon ABM3, Miniature Ceramic Crystal, 5.0x3.2mm package, SMD, generated with kicad-footprint-generator make_crystal.py, http://www.abracon.com/Resonators/abm3.pdf + +0 +2 +2 +Crystal +Crystal_SMD_Abracon_ABM3-2Pin_5.0x3.2mm_HandSoldering +Abracon ABM3, Miniature Ceramic Crystal, 5.0x3.2mm package, SMD, hand-soldering, generated with kicad-footprint-generator make_crystal.py, http://www.abracon.com/Resonators/abm3.pdf + +0 +2 +2 +Crystal +Crystal_SMD_Abracon_ABM3B-4Pin_5.0x3.2mm +Abracon ABM3B, Miniature Ceramic Crystal, 5.0x3.2mm package, SMD, generated with kicad-footprint-generator make_crystal.py, http://www.abracon.com/Resonators/abm3b.pdf + +0 +4 +4 +Crystal +Crystal_SMD_Abracon_ABM3C-4Pin_5.0x3.2mm +Abracon ABM3C, Miniature Ceramic Crystal, 5.0x3.2mm package, SMD, generated with kicad-footprint-generator make_crystal.py, http://www.abracon.com/Resonators/abm3c.pdf + +0 +4 +4 +Crystal +Crystal_SMD_Abracon_ABM7-2Pin_6.0x3.5mm +SMD Crystal Abracon ABM7, https://abracon.com/Resonators/abm7.pdf +SMD SMT crystal +0 +2 +2 +Crystal +Crystal_SMD_Abracon_ABM8AIG-4Pin_3.2x2.5mm +Abracon Miniature Ceramic Smd Crystal ABM8AIG https://abracon.com/AIGcrystals/ABM8AIG.pdf, 3.2x2.5mm^2 package +SMD SMT crystal +0 +4 +4 +Crystal +Crystal_SMD_Abracon_ABM8G-4Pin_3.2x2.5mm +Abracon ABM8G, Miniature Ceramic Crystal, 3.2x2.5mm package, SMD, generated with kicad-footprint-generator make_crystal.py, http://www.abracon.com/Resonators/ABM8G.pdf + +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_Citizen_CS325S-4Pin_3.2x2.5mm +Citizen CS325S, Ultra-lightweight microminiature AT Crystal units, 3.2x2.5mm package, SMD, generated with kicad-footprint-generator make_crystal.py, https://cfd.citizen.co.jp/cms/cfd/pdf/english/CS325S_E.pdf + +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 +EuroQuartz EQ161, Crystal, 3.2x1.5mm package, SMD, generated with kicad-footprint-generator make_crystal.py, http://cdn-reichelt.de/documents/datenblatt/B400/PG32768C.pdf + +0 +2 +2 +Crystal +Crystal_SMD_EuroQuartz_EQ161-2Pin_3.2x1.5mm_HandSoldering +EuroQuartz EQ161, Crystal, 3.2x1.5mm package, SMD, hand-soldering, generated with kicad-footprint-generator make_crystal.py, http://cdn-reichelt.de/documents/datenblatt/B400/PG32768C.pdf + +0 +2 +2 +Crystal +Crystal_SMD_EuroQuartz_MJ-4Pin_5.0x3.2mm +EuroQuartz MJ, Crystal, 5.0x3.2mm package, SMD, generated with kicad-footprint-generator make_crystal.py, http://cdn-reichelt.de/documents/datenblatt/B400/MJ.pdf + +0 +4 +4 +Crystal +Crystal_SMD_EuroQuartz_MJ-4Pin_5.0x3.2mm_HandSoldering +EuroQuartz MJ, Crystal, 5.0x3.2mm package, SMD, hand-soldering, generated with kicad-footprint-generator make_crystal.py, http://cdn-reichelt.de/documents/datenblatt/B400/MJ.pdf + +0 +4 +4 +Crystal +Crystal_SMD_EuroQuartz_MQ-4Pin_7.0x5.0mm +EuroQuartz MQ, Crystal, 7.0x5.0mm package, SMD, generated with kicad-footprint-generator make_crystal.py, http://cdn-reichelt.de/documents/datenblatt/B400/MQ.pdf + +0 +4 +4 +Crystal +Crystal_SMD_EuroQuartz_MQ-4Pin_7.0x5.0mm_HandSoldering +EuroQuartz MQ, Crystal, 7.0x5.0mm package, SMD, hand-soldering, generated with kicad-footprint-generator make_crystal.py, http://cdn-reichelt.de/documents/datenblatt/B400/MQ.pdf + +0 +4 +4 +Crystal +Crystal_SMD_EuroQuartz_MQ2-2Pin_7.0x5.0mm +EuroQuartz MQ2, Crystal, 7.0x5.0mm package, SMD, generated with kicad-footprint-generator make_crystal.py, http://cdn-reichelt.de/documents/datenblatt/B400/MQ.pdf + +0 +2 +2 +Crystal +Crystal_SMD_EuroQuartz_MQ2-2Pin_7.0x5.0mm_HandSoldering +EuroQuartz MQ2, Crystal, 7.0x5.0mm package, SMD, hand-soldering, generated with kicad-footprint-generator make_crystal.py, http://cdn-reichelt.de/documents/datenblatt/B400/MQ.pdf + +0 +2 +2 +Crystal +Crystal_SMD_EuroQuartz_MT-4Pin_3.2x2.5mm +EuroQuartz MT, Crystal, 3.2x2.5mm package, SMD, generated with kicad-footprint-generator make_crystal.py, http://cdn-reichelt.de/documents/datenblatt/B400/MT.pdf + +0 +4 +4 +Crystal +Crystal_SMD_EuroQuartz_MT-4Pin_3.2x2.5mm_HandSoldering +EuroQuartz MT, Crystal, 3.2x2.5mm package, SMD, hand-soldering, generated with kicad-footprint-generator make_crystal.py, http://cdn-reichelt.de/documents/datenblatt/B400/MT.pdf + +0 +4 +4 +Crystal +Crystal_SMD_EuroQuartz_X22-4Pin_2.5x2.0mm +EuroQuartz X22, Crystal, 2.5x2.0mm package, SMD, generated with kicad-footprint-generator make_crystal.py, http://cdn-reichelt.de/documents/datenblatt/B400/DS_X22.pdf + +0 +4 +4 +Crystal +Crystal_SMD_EuroQuartz_X22-4Pin_2.5x2.0mm_HandSoldering +EuroQuartz X22, Crystal, 2.5x2.0mm package, SMD, hand-soldering, generated with kicad-footprint-generator make_crystal.py, http://cdn-reichelt.de/documents/datenblatt/B400/DS_X22.pdf + +0 +4 +4 +Crystal +Crystal_SMD_FOX_FE-2Pin_7.5x5.0mm +Fox FE, crystal Ceramic Resin Sealed, 7.5x5.0mm package, SMD, generated with kicad-footprint-generator make_crystal.py, http://www.foxonline.com/pdfs/fe.pdf + +0 +2 +2 +Crystal +Crystal_SMD_FOX_FE-2Pin_7.5x5.0mm_HandSoldering +Fox FE, crystal Ceramic Resin Sealed, 7.5x5.0mm package, SMD, hand-soldering, generated with kicad-footprint-generator make_crystal.py, http://www.foxonline.com/pdfs/fe.pdf + +0 +2 +2 +Crystal +Crystal_SMD_FOX_FQ7050-2Pin_7.0x5.0mm +Fox FQ7050, Crystal SMD7050/4, 7.0x5.0mm package, SMD, generated with kicad-footprint-generator make_crystal.py, https://www.foxonline.com/pdfs/FQ7050.pdf + +0 +2 +2 +Crystal +Crystal_SMD_FOX_FQ7050-2Pin_7.0x5.0mm_HandSoldering +Fox FQ7050, Crystal SMD7050/4, 7.0x5.0mm package, SMD, hand-soldering, generated with kicad-footprint-generator make_crystal.py, https://www.foxonline.com/pdfs/FQ7050.pdf + +0 +2 +2 +Crystal +Crystal_SMD_FOX_FQ7050-4Pin_7.0x5.0mm +Fox FQ7050, Crystal SMD7050/4, 7.0x5.0mm package, SMD, generated with kicad-footprint-generator make_crystal.py, https://www.foxonline.com/pdfs/FQ7050.pdf + +0 +4 +4 +Crystal +Crystal_SMD_FrontierElectronics_FM206 +Fronter Electronics FM206, Watch Crystal 6.0mm length 1.9mm diameter, length 6.0mm, width 1.9mm, SMD, http://www.chinafronter.com/wp-content/uploads/2013/12/FM206.pdf + +0 +3 +3 +Crystal +Crystal_SMD_G8-2Pin_3.2x1.5mm +Diodes Inc. G8, Crystal, 3.2x1.5mm package, SMD, generated with kicad-footprint-generator make_crystal.py, https://www.diodes.com/datasheet/download/g8.pdf + +0 +2 +2 +Crystal +Crystal_SMD_G8-2Pin_3.2x1.5mm_HandSoldering +Diodes Inc. G8, Crystal, 3.2x1.5mm package, SMD, hand-soldering, generated with kicad-footprint-generator make_crystal.py, https://www.diodes.com/datasheet/download/g8.pdf + +0 +2 +2 +Crystal +Crystal_SMD_HC49-SD +HC-49-SD, Crystal, 11.4x4.7mm package, SMD, generated with kicad-footprint-generator make_crystal.py, http://cdn-reichelt.de/documents/datenblatt/B400/xxx-HC49-SMD.pdf + +0 +2 +2 +Crystal +Crystal_SMD_HC49-SD_HandSoldering +HC-49-SD, Crystal, 11.4x4.7mm package, SMD, hand-soldering, generated with kicad-footprint-generator make_crystal.py, http://cdn-reichelt.de/documents/datenblatt/B400/xxx-HC49-SMD.pdf + +0 +2 +2 +Crystal +Crystal_SMD_MicroCrystal_CC1V-T1A-2Pin_8.0x3.7mm +MicroCrystal CC1V-T1A, Crystal, 8.0x3.7mm package, SMD, generated with kicad-footprint-generator make_crystal.py, http://www.microcrystal.com/images/_Product-Documentation/01_TF_ceramic_Packages/01_Datasheet/CC1V-T1A.pdf + +0 +2 +2 +Crystal +Crystal_SMD_MicroCrystal_CC1V-T1A-2Pin_8.0x3.7mm_HandSoldering +MicroCrystal CC1V-T1A, Crystal, 8.0x3.7mm package, SMD, hand-soldering, generated with kicad-footprint-generator make_crystal.py, http://www.microcrystal.com/images/_Product-Documentation/01_TF_ceramic_Packages/01_Datasheet/CC1V-T1A.pdf + +0 +2 +2 +Crystal +Crystal_SMD_MicroCrystal_CC4V-T1A-2Pin_5.0x1.9mm +MicroCrystal CC4V-T1A, Crystal, 5.0x1.9mm package, SMD, generated with kicad-footprint-generator make_crystal.py, http://cdn-reichelt.de/documents/datenblatt/B400/CC4V-T1A.pdf + +0 +2 +2 +Crystal +Crystal_SMD_MicroCrystal_CC4V-T1A-2Pin_5.0x1.9mm_HandSoldering +MicroCrystal CC4V-T1A, Crystal, 5.0x1.9mm package, SMD, hand-soldering, generated with kicad-footprint-generator make_crystal.py, http://cdn-reichelt.de/documents/datenblatt/B400/CC4V-T1A.pdf + +0 +2 +2 +Crystal +Crystal_SMD_MicroCrystal_CC5V-T1A-2Pin_4.1x1.5mm +MicroCrystal CC5V-T1A, Crystal, 4.1x1.5mm package, SMD, generated with kicad-footprint-generator make_crystal.py, http://cdn-reichelt.de/documents/datenblatt/B400/CC5V-T1A.pdf + +0 +2 +2 +Crystal +Crystal_SMD_MicroCrystal_CC5V-T1A-2Pin_4.1x1.5mm_HandSoldering +MicroCrystal CC5V-T1A, Crystal, 4.1x1.5mm package, SMD, hand-soldering, generated with kicad-footprint-generator make_crystal.py, http://cdn-reichelt.de/documents/datenblatt/B400/CC5V-T1A.pdf + +0 +2 +2 +Crystal +Crystal_SMD_MicroCrystal_CC7V-T1A-2Pin_3.2x1.5mm +MicroCrystal CC7V-T1A/CM7V-T1A, Crystal, 3.2x1.5mm package, SMD, generated with kicad-footprint-generator make_crystal.py, http://www.microcrystal.com/images/_Product-Documentation/01_TF_ceramic_Packages/01_Datasheet/CC1V-T1A.pdf + +0 +2 +2 +Crystal +Crystal_SMD_MicroCrystal_CC7V-T1A-2Pin_3.2x1.5mm_HandSoldering +MicroCrystal CC7V-T1A/CM7V-T1A, Crystal, 3.2x1.5mm package, SMD, hand-soldering, generated with kicad-footprint-generator make_crystal.py, http://www.microcrystal.com/images/_Product-Documentation/01_TF_ceramic_Packages/01_Datasheet/CC1V-T1A.pdf + +0 +2 +2 +Crystal +Crystal_SMD_MicroCrystal_CC8V-T1A-2Pin_2.0x1.2mm +MicroCrystal CC8V-T1A/CM8V-T1A, Crystal, 2.0x1.2mm package, SMD, generated with kicad-footprint-generator make_crystal.py, http://www.microcrystal.com/images/_Product-Documentation/01_TF_ceramic_Packages/01_Datasheet/CC8V-T1A.pdf + +0 +2 +2 +Crystal +Crystal_SMD_MicroCrystal_CC8V-T1A-2Pin_2.0x1.2mm_HandSoldering +MicroCrystal CC8V-T1A/CM8V-T1A, Crystal, 2.0x1.2mm package, SMD, hand-soldering, generated with kicad-footprint-generator make_crystal.py, http://www.microcrystal.com/images/_Product-Documentation/01_TF_ceramic_Packages/01_Datasheet/CC8V-T1A.pdf + +0 +2 +2 +Crystal +Crystal_SMD_MicroCrystal_CM9V-T1A-2Pin_1.6x1.0mm +MicroCrystal CM9V-T1A, Crystal, 1.6x1.0mm package, SMD, generated with kicad-footprint-generator make_crystal.py, http://www.microcrystal.com/images/_Product-Documentation/01_TF_ceramic_Packages/01_Datasheet/CM9V-T1A.pdf + +0 +2 +2 +Crystal +Crystal_SMD_MicroCrystal_CM9V-T1A-2Pin_1.6x1.0mm_HandSoldering +MicroCrystal CM9V-T1A, Crystal, 1.6x1.0mm package, SMD, hand-soldering, generated with kicad-footprint-generator make_crystal.py, http://www.microcrystal.com/images/_Product-Documentation/01_TF_ceramic_Packages/01_Datasheet/CM9V-T1A.pdf + +0 +2 +2 +Crystal +Crystal_SMD_MicroCrystal_MS1V-T1K +MicroCrystal MS1V-T1K, Watch Crystal 6.1mm length 2.0mm diameter, length 6.1mm, width 2.0mm, SMD, https://www.microcrystal.com/fileadmin/Media/Products/32kHz/Datasheet/MS1V-T1K.pdf + +0 +3 +3 +Crystal +Crystal_SMD_MicroCrystal_MS3V-T1R +MicroCrystal MS3V-T1R, Watch Crystal 5.2mm length 1.4mm diameter, length 5.2mm, width 1.4mm, SMD, http://www.microcrystal.com/images/_Product-Documentation/03_TF_metal_Packages/01_Datasheet/MS3V-T1R.pdf + +0 +3 +3 +Crystal +Crystal_SMD_Qantek_QC5CB-2Pin_5x3.2mm +SMD Crystal Qantek QC5CB, https://www.qantek.com/tl_files/products/crystals/QC5CB.pdf +SMD SMT crystal +0 +2 +2 +Crystal +Crystal_SMD_SeikoEpson_FA128-4Pin_2.0x1.6mm +crystal Epson Toyocom FA-128 (https://support.epson.biz/td/api/doc_check.php?dl=brief_FA-128&lang=en), 2x1.6mm^2 package +SMD SMT crystal +0 +4 +4 +Crystal +Crystal_SMD_SeikoEpson_FA238-4Pin_3.2x2.5mm +Epson Toyocom FA-238, crystal, 3.2x2.5mm package, SMD, generated with kicad-footprint-generator make_crystal.py, http://www.mouser.com/ds/2/137/1721499-465440.pdf + +0 +4 +4 +Crystal +Crystal_SMD_SeikoEpson_FA238-4Pin_3.2x2.5mm_HandSoldering +Epson Toyocom FA-238, crystal, 3.2x2.5mm package, SMD, hand-soldering, generated with kicad-footprint-generator make_crystal.py, http://www.mouser.com/ds/2/137/1721499-465440.pdf + +0 +4 +4 +Crystal +Crystal_SMD_SeikoEpson_FA238V-4Pin_3.2x2.5mm +Epson Toyocom FA-238, crystal, 3.2x2.5mm package, SMD, generated with kicad-footprint-generator make_crystal.py, http://www.mouser.com/ds/2/137/1721499-465440.pdf + +0 +4 +4 +Crystal +Crystal_SMD_SeikoEpson_FA238V-4Pin_3.2x2.5mm_HandSoldering +Epson Toyocom FA-238, crystal, 3.2x2.5mm package, SMD, hand-soldering, generated with kicad-footprint-generator make_crystal.py, http://www.mouser.com/ds/2/137/1721499-465440.pdf + +0 +4 +4 +Crystal +Crystal_SMD_SeikoEpson_MA406-4Pin_11.7x4.0mm +Seiko Epson MA-406, Crystal, 11.7x4.0mm package, SMD, generated with kicad-footprint-generator make_crystal.py, http://media.digikey.com/pdf/Data%20Sheets/Epson%20PDFs/MA-505,506.pdf + +0 +4 +4 +Crystal +Crystal_SMD_SeikoEpson_MA406-4Pin_11.7x4.0mm_HandSoldering +Seiko Epson MA-406, Crystal, 11.7x4.0mm package, SMD, hand-soldering, generated with kicad-footprint-generator make_crystal.py, http://media.digikey.com/pdf/Data%20Sheets/Epson%20PDFs/MA-505,506.pdf + +0 +4 +4 +Crystal +Crystal_SMD_SeikoEpson_MA505-2Pin_12.7x5.1mm +Seiko Epson MC-505, Crystal, 12.7x5.1mm package, SMD, generated with kicad-footprint-generator make_crystal.py, http://media.digikey.com/pdf/Data%20Sheets/Epson%20PDFs/MA-505,506.pdf + +0 +2 +2 +Crystal +Crystal_SMD_SeikoEpson_MA505-2Pin_12.7x5.1mm_HandSoldering +Seiko Epson MC-505, Crystal, 12.7x5.1mm package, SMD, hand-soldering, generated with kicad-footprint-generator make_crystal.py, http://media.digikey.com/pdf/Data%20Sheets/Epson%20PDFs/MA-505,506.pdf + +0 +2 +2 +Crystal +Crystal_SMD_SeikoEpson_MA506-4Pin_12.7x5.1mm +Seiko Epson MC-506, Crystal, 12.7x5.1mm package, SMD, generated with kicad-footprint-generator make_crystal.py, http://media.digikey.com/pdf/Data%20Sheets/Epson%20PDFs/MA-505,506.pdf + +0 +4 +4 +Crystal +Crystal_SMD_SeikoEpson_MA506-4Pin_12.7x5.1mm_HandSoldering +Seiko Epson MC-506, Crystal, 12.7x5.1mm package, SMD, hand-soldering, generated with kicad-footprint-generator make_crystal.py, http://media.digikey.com/pdf/Data%20Sheets/Epson%20PDFs/MA-505,506.pdf + +0 +4 +4 +Crystal +Crystal_SMD_SeikoEpson_MC146-4Pin_6.7x1.5mm +Seiko Epson MC-146, Crystal, 6.7x1.5mm package, SMD, generated with kicad-footprint-generator make_crystal.py, https://support.epson.biz/td/api/doc_check.php?dl=brief_MC-156_en.pdf + +0 +4 +4 +Crystal +Crystal_SMD_SeikoEpson_MC146-4Pin_6.7x1.5mm_HandSoldering +Seiko Epson MC-146, Crystal, 6.7x1.5mm package, SMD, hand-soldering, generated with kicad-footprint-generator make_crystal.py, https://support.epson.biz/td/api/doc_check.php?dl=brief_MC-156_en.pdf + +0 +4 +4 +Crystal +Crystal_SMD_SeikoEpson_MC156-4Pin_7.1x2.5mm +Seiko Epson MC-156, Crystal, 7.1x2.5mm package, SMD, generated with kicad-footprint-generator make_crystal.py, https://support.epson.biz/td/api/doc_check.php?dl=brief_MC-156_en.pdf + +0 +4 +4 +Crystal +Crystal_SMD_SeikoEpson_MC156-4Pin_7.1x2.5mm_HandSoldering +Seiko Epson MC-156, Crystal, 7.1x2.5mm package, SMD, hand-soldering, generated with kicad-footprint-generator make_crystal.py, https://support.epson.biz/td/api/doc_check.php?dl=brief_MC-156_en.pdf + +0 +4 +4 +Crystal +Crystal_SMD_SeikoEpson_MC306-4Pin_8.0x3.2mm +Seiko Epson MC-306, Crystal, 8.0x3.2mm package, SMD, generated with kicad-footprint-generator make_crystal.py, https://support.epson.biz/td/api/doc_check.php?dl=brief_MC-306_en.pdf + +0 +4 +4 +Crystal +Crystal_SMD_SeikoEpson_MC306-4Pin_8.0x3.2mm_HandSoldering +Seiko Epson MC-306, Crystal, 8.0x3.2mm package, SMD, hand-soldering, generated with kicad-footprint-generator make_crystal.py, https://support.epson.biz/td/api/doc_check.php?dl=brief_MC-306_en.pdf + +0 +4 +4 +Crystal +Crystal_SMD_SeikoEpson_MC405-2Pin_9.6x4.1mm +Seiko Epson MC-405, Crystal Seiko Epson MC-405, 9.6x4.1mm package, SMD, generated with kicad-footprint-generator make_crystal.py, https://support.epson.biz/td/api/doc_check.php?dl=brief_MC-405_en.pdf + +0 +2 +2 +Crystal +Crystal_SMD_SeikoEpson_MC405-2Pin_9.6x4.1mm_HandSoldering +Seiko Epson MC-405, Crystal Seiko Epson MC-405, 9.6x4.1mm package, SMD, hand-soldering, generated with kicad-footprint-generator make_crystal.py, https://support.epson.biz/td/api/doc_check.php?dl=brief_MC-405_en.pdf + +0 +2 +2 +Crystal +Crystal_SMD_SeikoEpson_MC406-4Pin_9.6x4.1mm +Seiko Epson MC-406, crystal, 9.6x4.1mm package, SMD, generated with kicad-footprint-generator make_crystal.py, https://support.epson.biz/td/api/doc_check.php?dl=brief_MC-406_en.pdf + +0 +4 +4 +Crystal +Crystal_SMD_SeikoEpson_MC406-4Pin_9.6x4.1mm_HandSoldering +Seiko Epson MC-406, crystal, 9.6x4.1mm package, SMD, hand-soldering, generated with kicad-footprint-generator make_crystal.py, https://support.epson.biz/td/api/doc_check.php?dl=brief_MC-406_en.pdf + +0 +4 +4 +Crystal +Crystal_SMD_SeikoEpson_TSX3225-4Pin_3.2x2.5mm +Epson Toyocom TSX-3225, crystal, 3.2x2.5mm package, SMD, generated with kicad-footprint-generator make_crystal.py, http://www.mouser.com/ds/2/137/1721499-465440.pdf + +0 +4 +4 +Crystal +Crystal_SMD_SeikoEpson_TSX3225-4Pin_3.2x2.5mm_HandSoldering +Epson Toyocom TSX-3225, crystal, 3.2x2.5mm package, SMD, hand-soldering, generated with kicad-footprint-generator make_crystal.py, http://www.mouser.com/ds/2/137/1721499-465440.pdf + +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 +TXC 7M, Crystal, 3.2x2.5mm package, SMD, generated with kicad-footprint-generator make_crystal.py, http://www.txccrystal.com/images/pdf/7m-accuracy.pdf + +0 +4 +4 +Crystal +Crystal_SMD_TXC_7M-4Pin_3.2x2.5mm_HandSoldering +TXC 7M, Crystal, 3.2x2.5mm package, SMD, hand-soldering, generated with kicad-footprint-generator make_crystal.py, http://www.txccrystal.com/images/pdf/7m-accuracy.pdf + +0 +4 +4 +Crystal +Crystal_SMD_TXC_9HT11-2Pin_2.0x1.2mm +TXC 9HT11, Crystal, 2.0x1.2mm package, SMD, generated with kicad-footprint-generator make_crystal.py, http://txccrystal.com/images/pdf/9ht11.pdf + +0 +2 +2 +Crystal +Crystal_SMD_TXC_9HT11-2Pin_2.0x1.2mm_HandSoldering +TXC 9HT11, Crystal, 2.0x1.2mm package, SMD, hand-soldering, generated with kicad-footprint-generator make_crystal.py, http://txccrystal.com/images/pdf/9ht11.pdf + +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 Resonator/Filter, length 3.0mm, width 6.0mm, 2 pins +ceramic +0 +2 +2 +Crystal +Resonator-2Pin_W7.0mm_H2.5mm +Ceramic Resonator/Filter, length 2.5mm, width 7.0mm, 2 pins +ceramic +0 +2 +2 +Crystal +Resonator-2Pin_W8.0mm_H3.5mm +Ceramic Resonator/Filter, length 3.5mm, width 8.0mm, 2 pins +ceramic +0 +2 +2 +Crystal +Resonator-2Pin_W10.0mm_H5.0mm +RedFrequency MG/MT/MX, Ceramic Resonator/Filter, length 5.0mm, width 10.0mm, 2 pins, http://www.red-frequency.com/download/datenblatt/redfrequency-datenblatt-ir-zta.pdf + +0 +2 +2 +Crystal +Resonator-3Pin_W6.0mm_H3.0mm +Ceramic Resonator/Filter, length 3.0mm, width 6.0mm, 3 pins +ceramic +0 +3 +3 +Crystal +Resonator-3Pin_W7.0mm_H2.5mm +Ceramic Resonator/Filter, length 2.5mm, width 7.0mm, 3 pins +ceramic +0 +3 +3 +Crystal +Resonator-3Pin_W8.0mm_H3.5mm +Ceramic Resonator/Filter, length 3.5mm, width 8.0mm, 3 pins +ceramic +0 +3 +3 +Crystal +Resonator-3Pin_W10.0mm_H5.0mm +RedFrequency MG/MT/MX, Ceramic Resonator/Filter, 3-pin, length 5.0mm, width 10.0mm, 3 pins, http://www.red-frequency.com/download/datenblatt/redfrequency-datenblatt-ir-zta.pdf +ceramic +0 +3 +3 +Crystal +Resonator_Murata_CSTLSxxxG-3Pin_W8.0mm_H3.0mm +Murata CSTLSxxxG, Ceramic Resonator/Filter, length 3.0mm, width 8.0mm, 3 pins, http://www.murata.com/~/media/webrenewal/support/library/catalog/products/timingdevice/ceralock/p17e.ashx +ceramic +0 +3 +3 +Crystal +Resonator_Murata_CSTLSxxxX-3Pin_W5.5mm_H3.0mm +Murata CSTLSxxxX, Ceramic Resonator/Filter, length 3.0mm, width 5.5mm, 3 pins, http://www.murata.com/~/media/webrenewal/support/library/catalog/products/timingdevice/ceralock/p17e.ashx +ceramic +0 +3 +3 +Crystal +Resonator_Murata_DSN6-3Pin_W7.0mm_H2.5mm +Murata DSN6, Ceramic Resonator/Filter, length 2.5mm, width 7.0mm, 3 pins, http://cdn-reichelt.de/documents/datenblatt/B400/DSN6NC51H.pdf +ceramic +0 +3 +3 +Crystal +Resonator_Murata_DSS6-3Pin_W7.0mm_H2.5mm +Murata DSS6, Ceramic Resonator/Filter, length 2.5mm, width 7.0mm, 3 pins, http://cdn-reichelt.de/documents/datenblatt/B400/DSN6NC51H.pdf +ceramic +0 +3 +3 +Crystal +Resonator_SMD-3Pin_7.2x3.0mm +Murata CSTCC8M00G53-R0, Resonator/Filter, 8MHz, 7.2x3.0mm package, SMD, generated with kicad-footprint-generator make_crystal.py, http://www.farnell.com/datasheets/19296.pdf?_ga=1.247244932.122297557.1475167906 +ceramic +0 +3 +3 +Crystal +Resonator_SMD-3Pin_7.2x3.0mm_HandSoldering +Murata CSTCC8M00G53-R0, Resonator/Filter, 8MHz, 7.2x3.0mm package, SMD, hand-soldering, generated with kicad-footprint-generator make_crystal.py, http://www.farnell.com/datasheets/19296.pdf?_ga=1.247244932.122297557.1475167906 +ceramic +0 +3 +3 +Crystal +Resonator_SMD_Murata_CDSCB-2Pin_4.5x2.0mm +Murata CDSCB, Resonator/Filter, 4.5x2.0mm package, SMD, generated with kicad-footprint-generator make_crystal.py, http://cdn-reichelt.de/documents/datenblatt/B400/SFECV-107.pdf +ceramic +0 +2 +2 +Crystal +Resonator_SMD_Murata_CDSCB-2Pin_4.5x2.0mm_HandSoldering +Murata CDSCB, Resonator/Filter, 4.5x2.0mm package, SMD, hand-soldering, generated with kicad-footprint-generator make_crystal.py, http://cdn-reichelt.de/documents/datenblatt/B400/SFECV-107.pdf +ceramic +0 +2 +2 +Crystal +Resonator_SMD_Murata_CSTCR_4.5x2x1.15mm +Piezoelectric Ceramic Resonator, 4.5mm x 2mm x 1.15mm, https://www.murata.com/products/productdata/8801051639838/SPEC-CSTCR4M00G53-R0.pdf?1517839209000 +Crystal Oscillator +0 +9 +3 +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 +Murata SFECV, Resonator/Filter, 6.9x2.9mm package, SMD, generated with kicad-footprint-generator make_crystal.py, http://cdn-reichelt.de/documents/datenblatt/B400/SFECV-107.pdf +ceramic +0 +3 +3 +Crystal +Resonator_SMD_Murata_SFECV-3Pin_6.9x2.9mm_HandSoldering +Murata SFECV, Resonator/Filter, 6.9x2.9mm package, SMD, hand-soldering, generated with kicad-footprint-generator make_crystal.py, http://cdn-reichelt.de/documents/datenblatt/B400/SFECV-107.pdf +ceramic +0 +3 +3 +Crystal +Resonator_SMD_Murata_SFSKA-3Pin_7.9x3.8mm +Murata SFSKA, Resonator/Filter, 7.9x3.8mm package, SMD, generated with kicad-footprint-generator make_crystal.py, http://cdn-reichelt.de/documents/datenblatt/B400/SFECV-107.pdf +ceramic +0 +3 +3 +Crystal +Resonator_SMD_Murata_SFSKA-3Pin_7.9x3.8mm_HandSoldering +Murata SFSKA, Resonator/Filter, 7.9x3.8mm package, SMD, hand-soldering, generated with kicad-footprint-generator make_crystal.py, http://cdn-reichelt.de/documents/datenblatt/B400/SFECV-107.pdf +ceramic +0 +3 +3 +Crystal +Resonator_SMD_Murata_TPSKA-3Pin_7.9x3.8mm +Murata TPSKA, Resonator/Filter, 7.9x3.8mm package, SMD, generated with kicad-footprint-generator make_crystal.py, http://cdn-reichelt.de/documents/datenblatt/B400/SFECV-107.pdf +ceramic +0 +3 +3 +Crystal +Resonator_SMD_Murata_TPSKA-3Pin_7.9x3.8mm_HandSoldering +Murata TPSKA, Resonator/Filter, 7.9x3.8mm package, SMD, hand-soldering, generated with kicad-footprint-generator make_crystal.py, http://cdn-reichelt.de/documents/datenblatt/B400/SFECV-107.pdf +ceramic +0 +3 +3 +Diode_SMD +D_0201_0603Metric +Diode SMD 0201 (0603 Metric), square (rectangular) end terminal, IPC-7351 nominal, (Body size source: https://www.vishay.com/docs/20052/crcw0201e3.pdf), generated with kicad-footprint-generator +diode +0 +4 +2 +Diode_SMD +D_0201_0603Metric_Pad0.64x0.40mm_HandSolder +Diode SMD 0201 (0603 Metric), square (rectangular) end terminal, IPC-7351 nominal, (Body size source: https://www.vishay.com/docs/20052/crcw0201e3.pdf), generated with kicad-footprint-generator +diode handsolder +0 +4 +2 +Diode_SMD +D_0402_1005Metric +Diode SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +diode +0 +2 +2 +Diode_SMD +D_0402_1005Metric_Pad0.77x0.64mm_HandSolder +Diode SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +diode handsolder +0 +2 +2 +Diode_SMD +D_0603_1608Metric +Diode SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC-7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +diode +0 +2 +2 +Diode_SMD +D_0603_1608Metric_Pad1.05x0.95mm_HandSolder +Diode SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC-7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +diode handsolder +0 +2 +2 +Diode_SMD +D_0805_2012Metric +Diode SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC-7351 nominal, (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator +diode +0 +2 +2 +Diode_SMD +D_0805_2012Metric_Pad1.15x1.40mm_HandSolder +Diode SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC-7351 nominal, (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator +diode handsolder +0 +2 +2 +Diode_SMD +D_01005_0402Metric +Diode SMD 01005 (0402 Metric), square (rectangular) end terminal, IPC-7351 nominal, (Body size source: http://www.vishay.com/docs/20056/crcw01005e3.pdf), generated with kicad-footprint-generator +diode +0 +4 +2 +Diode_SMD +D_01005_0402Metric_Pad0.57x0.30mm_HandSolder +Diode SMD 01005 (0402 Metric), square (rectangular) end terminal, IPC-7351 nominal, (Body size source: http://www.vishay.com/docs/20056/crcw01005e3.pdf), generated with kicad-footprint-generator +diode handsolder +0 +4 +2 +Diode_SMD +D_1206_3216Metric +Diode SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC-7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +diode +0 +2 +2 +Diode_SMD +D_1206_3216Metric_Pad1.42x1.75mm_HandSolder +Diode SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC-7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +diode handsolder +0 +2 +2 +Diode_SMD +D_1210_3225Metric +Diode SMD 1210 (3225 Metric), square (rectangular) end terminal, IPC-7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +diode +0 +2 +2 +Diode_SMD +D_1210_3225Metric_Pad1.42x2.65mm_HandSolder +Diode SMD 1210 (3225 Metric), square (rectangular) end terminal, IPC-7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +diode handsolder +0 +2 +2 +Diode_SMD +D_1812_4532Metric +Diode SMD 1812 (4532 Metric), square (rectangular) end terminal, IPC-7351 nominal, (Body size source: https://www.nikhef.nl/pub/departments/mt/projects/detectorR_D/dtddice/ERJ2G.pdf), generated with kicad-footprint-generator +diode +0 +2 +2 +Diode_SMD +D_1812_4532Metric_Pad1.30x3.40mm_HandSolder +Diode SMD 1812 (4532 Metric), square (rectangular) end terminal, IPC-7351 nominal, (Body size source: https://www.nikhef.nl/pub/departments/mt/projects/detectorR_D/dtddice/ERJ2G.pdf), generated with kicad-footprint-generator +diode handsolder +0 +2 +2 +Diode_SMD +D_2010_5025Metric +Diode SMD 2010 (5025 Metric), square (rectangular) end terminal, IPC-7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +diode +0 +2 +2 +Diode_SMD +D_2010_5025Metric_Pad1.52x2.65mm_HandSolder +Diode SMD 2010 (5025 Metric), square (rectangular) end terminal, IPC-7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +diode handsolder +0 +2 +2 +Diode_SMD +D_2114_3652Metric +Diode SMD 2114 (3652 Metric), square (rectangular) end terminal, IPC-7351 nominal, (Body size from: http://datasheets.avx.com/schottky.pdf), generated with kicad-footprint-generator +diode +0 +2 +2 +Diode_SMD +D_2114_3652Metric_Pad1.85x3.75mm_HandSolder +Diode SMD 2114 (3652 Metric), square (rectangular) end terminal, IPC-7351 nominal, (Body size from: http://datasheets.avx.com/schottky.pdf), generated with kicad-footprint-generator +diode handsolder +0 +2 +2 +Diode_SMD +D_2512_6332Metric +Diode SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC-7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +diode +0 +2 +2 +Diode_SMD +D_2512_6332Metric_Pad1.52x3.35mm_HandSolder +Diode SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC-7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +diode handsolder +0 +2 +2 +Diode_SMD +D_3220_8050Metric +Diode SMD 3220 (8050 Metric), square (rectangular) end terminal, IPC-7351 nominal, (Body size from: http://datasheets.avx.com/schottky.pdf), generated with kicad-footprint-generator +diode +0 +2 +2 +Diode_SMD +D_3220_8050Metric_Pad2.65x5.15mm_HandSolder +Diode SMD 3220 (8050 Metric), square (rectangular) end terminal, IPC-7351 nominal, (Body size from: http://datasheets.avx.com/schottky.pdf), generated with kicad-footprint-generator +diode handsolder +0 +2 +2 +Diode_SMD +D_MELF +Diode, MELF,, +Diode MELF +0 +2 +2 +Diode_SMD +D_MELF-RM10_Universal_Handsoldering +Diode, Universal, MELF, RM10, Handsoldering, SMD, Thruhole, +Diode Universal MELF RM10 Handsoldering SMD Thruhole +0 +2 +2 +Diode_SMD +D_MELF_Handsoldering +Diode MELF Handsoldering +Diode MELF Handsoldering +0 +2 +2 +Diode_SMD +D_MicroMELF +Diode, MicroMELF, Reflow Soldering, http://www.vishay.com/docs/85597/bzm55.pdf +MicroMELF Diode +0 +2 +2 +Diode_SMD +D_MicroMELF_Handsoldering +Diode, MicroMELF, Hand Soldering, http://www.vishay.com/docs/85597/bzm55.pdf +MicroMELF Diode +0 +2 +2 +Diode_SMD +D_MicroSMP_AK +Diode MicroSMP (DO-219AD), large-pad cathode, https://www.vishay.com/docs/89020/mss1p3l.pdf +Diode MicroSMP (DO-219AD) +0 +2 +2 +Diode_SMD +D_MicroSMP_KA +Diode MicroSMP (DO-219AD), large-pad anode, https://www.vishay.com/docs/89457/msmp6a.pdf +Diode MicroSMP (DO-219AD) +0 +2 +2 +Diode_SMD +D_MiniMELF +Diode Mini-MELF (SOD-80) +Diode Mini-MELF (SOD-80) +0 +2 +2 +Diode_SMD +D_MiniMELF_Handsoldering +Diode Mini-MELF (SOD-80) Handsoldering +Diode Mini-MELF (SOD-80) Handsoldering +0 +2 +2 +Diode_SMD +D_PowerDI-5 +PowerDI,Diode,Vishay,https://www.diodes.com/assets/Package-Files/PowerDI5.pdf +PowerDI diode vishay +0 +3 +2 +Diode_SMD +D_PowerDI-123 +http://www.diodes.com/_files/datasheets/ds30497.pdf +PowerDI diode vishay +0 +2 +2 +Diode_SMD +D_Powermite2_AK +Microsemi Powermite 2 SMD power package (https://www.microsemi.com/packaging-information/partpackage/details?pid=5341) +PowerMite2 +0 +2 +2 +Diode_SMD +D_Powermite2_KA +Microsemi Powermite 2 SMD power package (https://www.microsemi.com/packaging-information/partpackage/details?pid=5341) +PowerMite2 +0 +2 +2 +Diode_SMD +D_Powermite3 +Microsemi Powermite 3 SMD power package (https://www.microsemi.com/packaging-information/partpackage/details?pid=5340) +PowerMite3 +0 +3 +3 +Diode_SMD +D_Powermite_AK +Microsemi Powermite SMD power package (https://www.microsemi.com/packaging-information/partpackage/details?pid=5339, https://www.onsemi.com/pub/Collateral/457-04.PDF) +Powermite +0 +2 +2 +Diode_SMD +D_Powermite_KA +Microsemi Powermite SMD power package (https://www.microsemi.com/packaging-information/partpackage/details?pid=5339, https://www.onsemi.com/pub/Collateral/457-04.PDF) +Powermite +0 +2 +2 +Diode_SMD +D_QFN_3.3x3.3mm_P0.65mm +QFN, diode, 3.3x3.3x1mm (https://www.wolfspeed.com/media/downloads/846/C3D1P7060Q.pdf) +diode qfn 3.3 +0 +3 +2 +Diode_SMD +D_SC-80 +JEITA SC-80 +SC-80 +0 +2 +2 +Diode_SMD +D_SC-80_HandSoldering +JEITA SC-80 +SC-80 +0 +2 +2 +Diode_SMD +D_SMA +Diode SMA (DO-214AC) +Diode SMA (DO-214AC) +0 +2 +2 +Diode_SMD +D_SMA-SMB_Universal_Handsoldering +Diode, Universal, SMA (DO-214AC) or SMB (DO-214AA), Handsoldering, +Diode Universal SMA (DO-214AC) SMB (DO-214AA) Handsoldering +0 +2 +2 +Diode_SMD +D_SMA_Handsoldering +Diode SMA (DO-214AC) Handsoldering +Diode SMA (DO-214AC) Handsoldering +0 +2 +2 +Diode_SMD +D_SMB +Diode SMB (DO-214AA) +Diode SMB (DO-214AA) +0 +2 +2 +Diode_SMD +D_SMB-SMC_Universal_Handsoldering +Diode, Universal, SMB(DO-214AA) or SMC (DO-214AB), Handsoldering, +Diode Universal SMB(DO-214AA) SMC (DO-214AB) Handsoldering +0 +2 +2 +Diode_SMD +D_SMB_Handsoldering +Diode SMB (DO-214AA) Handsoldering +Diode SMB (DO-214AA) Handsoldering +0 +2 +2 +Diode_SMD +D_SMB_Modified +Diode SMB (DO-214AA) Modified (http://www.littelfuse.com/~/media/electronics/datasheets/sidactors/littelfuse_sidactor_battrax_positive_negative_modified_do_214_datasheet.pdf.pdf) +Diode SMB (DO-214AA) +0 +3 +3 +Diode_SMD +D_SMC +Diode SMC (DO-214AB) +Diode SMC (DO-214AB) +0 +2 +2 +Diode_SMD +D_SMC-RM10_Universal_Handsoldering +Diode, Universal, SMC (DO-214AB), RM10, Handsoldering, SMD, Thruhole +Diode Universal SMC (DO-214AB) RM10 Handsoldering SMD Thruhole +0 +2 +2 +Diode_SMD +D_SMC_Handsoldering +Diode SMC (DO-214AB) Handsoldering +Diode SMC (DO-214AB) Handsoldering +0 +2 +2 +Diode_SMD +D_SMF +Diode SMF (DO-219AB), http://www.vishay.com/docs/95572/smf_do-219ab.pdf +Diode SMF (DO-214AB) +0 +2 +2 +Diode_SMD +D_SMP_DO-220AA +SMP DO-220AA (https://www.vishay.com/docs/89016/esh2pb.pdf) +SMP DO-220AA +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-882 +SOD-882, DFN1006-2, body 1.0 x 0.6 x 0.48mm, pitch 0.65mm, https://assets.nexperia.com/documents/package-information/SOD882.pdf +Diode SOD882 DFN1006-2 +0 +4 +2 +Diode_SMD +D_SOD-882D +SOD-882D, DFN1006D-2, body 1.0 x 0.6 x 0.4mm, pitch 0.65mm, https://assets.nexperia.com/documents/package-information/SOD882D.pdf +Diode SOD882D DFN1006D-2 +0 +4 +2 +Diode_SMD +D_SOD-923 +https://www.onsemi.com/pub/Collateral/ESD9B-D.PDF#page=4 +Diode SOD923 +0 +2 +2 +Diode_SMD +D_TUMD2 +ROHM - TUMD2 +TUMD2 +0 +2 +2 +Diode_SMD +Diode_Bridge_Bourns_CD-DF4xxS +8.1x10.5mm, 4A, single phase bridge rectifier, https://www.bourns.com/docs/Product-Datasheets/CD-DF4xxSL.pdf +Surface Mount Bridge Rectifier Diode +0 +4 +4 +Diode_SMD +Diode_Bridge_Diotec_ABS +SMD diode bridge ABS (Diotec), see https://diotec.com/tl_files/diotec/files/pdf/datasheets/abs2.pdf +ABS MBLS +0 +4 +4 +Diode_SMD +Diode_Bridge_Diotec_MicroDil_3.0x3.0x1.8mm +SMD package Diotec Diotec MicroDil, body 3.0x3.0x1.8mm (e.g. diode bridge), see https://diotec.com/tl_files/diotec/files/pdf/datasheets/mys40.pdf +Diotec MicroDil diode bridge +0 +4 +4 +Diode_SMD +Diode_Bridge_Diotec_SO-DIL-Slim +SMD diode bridge Diotec SO-DIL Slim, see https://diotec.com/tl_files/diotec/files/pdf/datasheets/b40fs.pdf +DFS SO-DIL Slim +0 +4 +4 +Diode_SMD +Diode_Bridge_OnSemi_SDIP-4L +SMD diode bridge OnSemi SDIP-4L, see https://www.onsemi.com/pdf/datasheet/df10s1-d.pdf +OnSemi Diode Bridge SDIP-4L +0 +4 +4 +Diode_SMD +Diode_Bridge_Vishay_DFS +SMD diode bridge DFS, see http://www.vishay.com/docs/88854/padlayouts.pdf +DFS +0 +4 +4 +Diode_SMD +Diode_Bridge_Vishay_DFSFlat +SMD diode bridge Low Profile DFS "Flat", see http://www.vishay.com/docs/88874/dfl15005.pdf +DFS +0 +4 +4 +Diode_SMD +Diode_Bridge_Vishay_MBLS +SMD diode bridge MBLS, see http://www.vishay.com/docs/89959/mbl104s.pdf http://www.vishay.com/docs/88854/padlayouts.pdf +DFS +0 +4 +4 +Diode_SMD +Infineon_SG-WLL-2-3_0.58x0.28_P0.36mm +Infineon SG-WLL-2-3, 0.58x0.28x0.15mm, https://www.infineon.com/dgdl/Infineon-SG-WLL-2-3_SPO_PDF-Package-v02_00-EN.pdf?fileId=5546d46271bf4f9201723159ce71239d +Infineon WLL +0 +4 +2 +Diode_SMD +Littelfuse_PolyZen-LS +http://m.littelfuse.com/~/media/electronics/datasheets/polyzen_devices/littelfuse_polyzen_standard_polyzen_catalog_datasheet.pdf.pdf +Diode Polymer Protected Zener Diode Littelfuse LS +0 +3 +3 +Diode_SMD +Nexperia_CFP3_SOD-123W +Nexperia CFP3 (SOD-123W), https://assets.nexperia.com/documents/outline-drawing/SOD123W.pdf +CFP3 SOD-123W +0 +2 +2 +Diode_SMD +Nexperia_DSN0603-2_0.6x0.3mm_P0.4mm +SOD962-2 silicon, leadless ultra small package; 2 terminals; 0.4 mm pitch; 0.6 mm x 0.3 mm x 0.3 mm body (https://assets.nexperia.com/documents/package-information/SOD962-2.pdf https://www.nexperia.com/packages/SOD962-2.html) +TVS protection diodes +0 +2 +2 +Diode_SMD +Nexperia_DSN1608-2_1.6x0.8mm +Diode SMD DSN1608, 1.6 x 0.8 x 0.29 mm, https://assets.nexperia.com/documents/package-information/SOD964.pdf +diode SOD964 SOD-964 +0 +2 +2 +Diode_SMD +ST_D_SMC +STMicroelectronics SMC (JEDEC DO-214-D, variant AB), https://www.st.com/resource/en/datasheet/sm15t36a.pdf#page=7 +Diode DO-214AB +0 +2 +2 +Diode_SMD +ST_QFN-2L_1.6x1.0mm +Unidirectional high power transient voltage suppressor (https://www.st.com/resource/en/datasheet/esda7p120-1u1m.pdf) +QFN-2L Diode +0 +2 +2 +Diode_SMD +Vishay_SMPA +Diode SMPA (DO-221BC), https://www.vishay.com/docs/87659/v8pa10.pdf +Diode SMPA (DO-221BC) +0 +2 +2 +Diode_THT +D_5KPW_P7.62mm_Vertical_AnodeUp +Diode, 5KPW series, Axial, Vertical, pin pitch=7.62mm, length*diameter=9*8mm^2, http://www.diodes.com/_files/packages/8686949.gif +Diode 5KPW series Axial Vertical pin pitch 7.62mm length 9mm diameter 8mm +0 +2 +2 +Diode_THT +D_5KPW_P7.62mm_Vertical_KathodeUp +Diode, 5KPW series, Axial, Vertical, pin pitch=7.62mm, length*diameter=9*8mm^2, http://www.diodes.com/_files/packages/8686949.gif +Diode 5KPW series Axial Vertical pin pitch 7.62mm length 9mm diameter 8mm +0 +2 +2 +Diode_THT +D_5KPW_P12.70mm_Horizontal +Diode, 5KPW series, Axial, Horizontal, pin pitch=12.7mm, length*diameter=9*8mm^2, http://www.diodes.com/_files/packages/8686949.gif +Diode 5KPW series Axial Horizontal pin pitch 12.7mm length 9mm diameter 8mm +0 +2 +2 +Diode_THT +D_5KP_P7.62mm_Vertical_AnodeUp +Diode, 5KP series, Axial, Vertical, pin pitch=7.62mm, length*diameter=7.62*9.53mm^2, http://www.diodes.com/_files/packages/8686949.gif +Diode 5KP series Axial Vertical pin pitch 7.62mm length 7.62mm diameter 9.53mm +0 +2 +2 +Diode_THT +D_5KP_P7.62mm_Vertical_KathodeUp +Diode, 5KP series, Axial, Vertical, pin pitch=7.62mm, length*diameter=7.62*9.53mm^2, http://www.diodes.com/_files/packages/8686949.gif +Diode 5KP series Axial Vertical pin pitch 7.62mm length 7.62mm diameter 9.53mm +0 +2 +2 +Diode_THT +D_5KP_P10.16mm_Horizontal +Diode, 5KP series, Axial, Horizontal, pin pitch=10.16mm, length*diameter=7.62*9.53mm^2, http://www.diodes.com/_files/packages/8686949.gif +Diode 5KP series Axial Horizontal pin pitch 10.16mm length 7.62mm diameter 9.53mm +0 +2 +2 +Diode_THT +D_5KP_P12.70mm_Horizontal +Diode, 5KP series, Axial, Horizontal, pin pitch=12.7mm, length*diameter=7.62*9.53mm^2, http://www.diodes.com/_files/packages/8686949.gif +Diode 5KP series Axial Horizontal pin pitch 12.7mm length 7.62mm diameter 9.53mm +0 +2 +2 +Diode_THT +D_5W_P5.08mm_Vertical_AnodeUp +Diode, 5W series, Axial, Vertical, pin pitch=5.08mm, length*diameter=8.9*3.7mm^2, http://www.diodes.com/_files/packages/8686949.gif +Diode 5W series Axial Vertical pin pitch 5.08mm length 8.9mm diameter 3.7mm +0 +2 +2 +Diode_THT +D_5W_P5.08mm_Vertical_KathodeUp +Diode, 5W series, Axial, Vertical, pin pitch=5.08mm, length*diameter=8.9*3.7mm^2, http://www.diodes.com/_files/packages/8686949.gif +Diode 5W series Axial Vertical pin pitch 5.08mm length 8.9mm diameter 3.7mm +0 +2 +2 +Diode_THT +D_5W_P10.16mm_Horizontal +Diode, 5W series, Axial, Horizontal, pin pitch=10.16mm, length*diameter=8.9*3.7mm^2, http://www.diodes.com/_files/packages/8686949.gif +Diode 5W series Axial Horizontal pin pitch 10.16mm length 8.9mm diameter 3.7mm +0 +2 +2 +Diode_THT +D_5W_P12.70mm_Horizontal +Diode, 5W series, Axial, Horizontal, pin pitch=12.7mm, length*diameter=8.9*3.7mm^2, http://www.diodes.com/_files/packages/8686949.gif +Diode 5W series Axial Horizontal pin pitch 12.7mm length 8.9mm diameter 3.7mm +0 +2 +2 +Diode_THT +D_A-405_P2.54mm_Vertical_AnodeUp +Diode, A-405 series, Axial, Vertical, pin pitch=2.54mm, length*diameter=5.2*2.7mm^2, http://www.diodes.com/_files/packages/A-405.pdf +Diode A-405 series Axial Vertical pin pitch 2.54mm length 5.2mm diameter 2.7mm +0 +2 +2 +Diode_THT +D_A-405_P2.54mm_Vertical_KathodeUp +Diode, A-405 series, Axial, Vertical, pin pitch=2.54mm, length*diameter=5.2*2.7mm^2, http://www.diodes.com/_files/packages/A-405.pdf +Diode A-405 series Axial Vertical pin pitch 2.54mm length 5.2mm diameter 2.7mm +0 +2 +2 +Diode_THT +D_A-405_P5.08mm_Vertical_AnodeUp +Diode, A-405 series, Axial, Vertical, pin pitch=5.08mm, length*diameter=5.2*2.7mm^2, http://www.diodes.com/_files/packages/A-405.pdf +Diode A-405 series Axial Vertical pin pitch 5.08mm length 5.2mm diameter 2.7mm +0 +2 +2 +Diode_THT +D_A-405_P5.08mm_Vertical_KathodeUp +Diode, A-405 series, Axial, Vertical, pin pitch=5.08mm, length*diameter=5.2*2.7mm^2, http://www.diodes.com/_files/packages/A-405.pdf +Diode A-405 series Axial Vertical pin pitch 5.08mm length 5.2mm diameter 2.7mm +0 +2 +2 +Diode_THT +D_A-405_P7.62mm_Horizontal +Diode, A-405 series, Axial, Horizontal, pin pitch=7.62mm, length*diameter=5.2*2.7mm^2, http://www.diodes.com/_files/packages/A-405.pdf +Diode A-405 series Axial Horizontal pin pitch 7.62mm length 5.2mm diameter 2.7mm +0 +2 +2 +Diode_THT +D_A-405_P10.16mm_Horizontal +Diode, A-405 series, Axial, Horizontal, pin pitch=10.16mm, length*diameter=5.2*2.7mm^2, http://www.diodes.com/_files/packages/A-405.pdf +Diode A-405 series Axial Horizontal pin pitch 10.16mm length 5.2mm diameter 2.7mm +0 +2 +2 +Diode_THT +D_A-405_P12.70mm_Horizontal +Diode, A-405 series, Axial, Horizontal, pin pitch=12.7mm, length*diameter=5.2*2.7mm^2, http://www.diodes.com/_files/packages/A-405.pdf +Diode A-405 series Axial Horizontal pin pitch 12.7mm length 5.2mm diameter 2.7mm +0 +2 +2 +Diode_THT +D_DO-15_P2.54mm_Vertical_AnodeUp +Diode, DO-15 series, Axial, Vertical, pin pitch=2.54mm, length*diameter=7.6*3.6mm^2, http://www.diodes.com/_files/packages/DO-15.pdf +Diode DO-15 series Axial Vertical pin pitch 2.54mm length 7.6mm diameter 3.6mm +0 +2 +2 +Diode_THT +D_DO-15_P2.54mm_Vertical_KathodeUp +Diode, DO-15 series, Axial, Vertical, pin pitch=2.54mm, length*diameter=7.6*3.6mm^2, http://www.diodes.com/_files/packages/DO-15.pdf +Diode DO-15 series Axial Vertical pin pitch 2.54mm length 7.6mm diameter 3.6mm +0 +2 +2 +Diode_THT +D_DO-15_P3.81mm_Vertical_AnodeUp +Diode, DO-15 series, Axial, Vertical, pin pitch=3.81mm, length*diameter=7.6*3.6mm^2, http://www.diodes.com/_files/packages/DO-15.pdf +Diode DO-15 series Axial Vertical pin pitch 3.81mm length 7.6mm diameter 3.6mm +0 +2 +2 +Diode_THT +D_DO-15_P3.81mm_Vertical_KathodeUp +Diode, DO-15 series, Axial, Vertical, pin pitch=3.81mm, length*diameter=7.6*3.6mm^2, http://www.diodes.com/_files/packages/DO-15.pdf +Diode DO-15 series Axial Vertical pin pitch 3.81mm length 7.6mm diameter 3.6mm +0 +2 +2 +Diode_THT +D_DO-15_P5.08mm_Vertical_AnodeUp +Diode, DO-15 series, Axial, Vertical, pin pitch=5.08mm, length*diameter=7.6*3.6mm^2, http://www.diodes.com/_files/packages/DO-15.pdf +Diode DO-15 series Axial Vertical pin pitch 5.08mm length 7.6mm diameter 3.6mm +0 +2 +2 +Diode_THT +D_DO-15_P5.08mm_Vertical_KathodeUp +Diode, DO-15 series, Axial, Vertical, pin pitch=5.08mm, length*diameter=7.6*3.6mm^2, http://www.diodes.com/_files/packages/DO-15.pdf +Diode DO-15 series Axial Vertical pin pitch 5.08mm length 7.6mm diameter 3.6mm +0 +2 +2 +Diode_THT +D_DO-15_P10.16mm_Horizontal +Diode, DO-15 series, Axial, Horizontal, pin pitch=10.16mm, length*diameter=7.6*3.6mm^2, http://www.diodes.com/_files/packages/DO-15.pdf +Diode DO-15 series Axial Horizontal pin pitch 10.16mm length 7.6mm diameter 3.6mm +0 +2 +2 +Diode_THT +D_DO-15_P12.70mm_Horizontal +Diode, DO-15 series, Axial, Horizontal, pin pitch=12.7mm, length*diameter=7.6*3.6mm^2, http://www.diodes.com/_files/packages/DO-15.pdf +Diode DO-15 series Axial Horizontal pin pitch 12.7mm length 7.6mm diameter 3.6mm +0 +2 +2 +Diode_THT +D_DO-15_P15.24mm_Horizontal +Diode, DO-15 series, Axial, Horizontal, pin pitch=15.24mm, length*diameter=7.6*3.6mm^2, http://www.diodes.com/_files/packages/DO-15.pdf +Diode DO-15 series Axial Horizontal pin pitch 15.24mm length 7.6mm diameter 3.6mm +0 +2 +2 +Diode_THT +D_DO-27_P5.08mm_Vertical_AnodeUp +Diode, DO-27 series, Axial, Vertical, pin pitch=5.08mm, length*diameter=9.52*5.33mm^2, http://www.slottechforum.com/slotinfo/Techstuff/CD2%20Diodes%20and%20Transistors/Cases/Diode%20DO-27.jpg +Diode DO-27 series Axial Vertical pin pitch 5.08mm length 9.52mm diameter 5.33mm +0 +2 +2 +Diode_THT +D_DO-27_P5.08mm_Vertical_KathodeUp +Diode, DO-27 series, Axial, Vertical, pin pitch=5.08mm, length*diameter=9.52*5.33mm^2, http://www.slottechforum.com/slotinfo/Techstuff/CD2%20Diodes%20and%20Transistors/Cases/Diode%20DO-27.jpg +Diode DO-27 series Axial Vertical pin pitch 5.08mm length 9.52mm diameter 5.33mm +0 +2 +2 +Diode_THT +D_DO-27_P12.70mm_Horizontal +Diode, DO-27 series, Axial, Horizontal, pin pitch=12.7mm, length*diameter=9.52*5.33mm^2, http://www.slottechforum.com/slotinfo/Techstuff/CD2%20Diodes%20and%20Transistors/Cases/Diode%20DO-27.jpg +Diode DO-27 series Axial Horizontal pin pitch 12.7mm length 9.52mm diameter 5.33mm +0 +2 +2 +Diode_THT +D_DO-27_P15.24mm_Horizontal +Diode, DO-27 series, Axial, Horizontal, pin pitch=15.24mm, length*diameter=9.52*5.33mm^2, http://www.slottechforum.com/slotinfo/Techstuff/CD2%20Diodes%20and%20Transistors/Cases/Diode%20DO-27.jpg +Diode DO-27 series Axial Horizontal pin pitch 15.24mm length 9.52mm diameter 5.33mm +0 +2 +2 +Diode_THT +D_DO-34_SOD68_P2.54mm_Vertical_AnodeUp +Diode, DO-34_SOD68 series, Axial, Vertical, pin pitch=2.54mm, length*diameter=3.04*1.6mm^2, https://www.nxp.com/docs/en/data-sheet/KTY83_SER.pdf +Diode DO-34_SOD68 series Axial Vertical pin pitch 2.54mm length 3.04mm diameter 1.6mm +0 +2 +2 +Diode_THT +D_DO-34_SOD68_P2.54mm_Vertical_KathodeUp +Diode, DO-34_SOD68 series, Axial, Vertical, pin pitch=2.54mm, length*diameter=3.04*1.6mm^2, https://www.nxp.com/docs/en/data-sheet/KTY83_SER.pdf +Diode DO-34_SOD68 series Axial Vertical pin pitch 2.54mm length 3.04mm diameter 1.6mm +0 +2 +2 +Diode_THT +D_DO-34_SOD68_P5.08mm_Vertical_AnodeUp +Diode, DO-34_SOD68 series, Axial, Vertical, pin pitch=5.08mm, length*diameter=3.04*1.6mm^2, https://www.nxp.com/docs/en/data-sheet/KTY83_SER.pdf +Diode DO-34_SOD68 series Axial Vertical pin pitch 5.08mm length 3.04mm diameter 1.6mm +0 +2 +2 +Diode_THT +D_DO-34_SOD68_P5.08mm_Vertical_KathodeUp +Diode, DO-34_SOD68 series, Axial, Vertical, pin pitch=5.08mm, length*diameter=3.04*1.6mm^2, https://www.nxp.com/docs/en/data-sheet/KTY83_SER.pdf +Diode DO-34_SOD68 series Axial Vertical pin pitch 5.08mm length 3.04mm diameter 1.6mm +0 +2 +2 +Diode_THT +D_DO-34_SOD68_P7.62mm_Horizontal +Diode, DO-34_SOD68 series, Axial, Horizontal, pin pitch=7.62mm, length*diameter=3.04*1.6mm^2, https://www.nxp.com/docs/en/data-sheet/KTY83_SER.pdf +Diode DO-34_SOD68 series Axial Horizontal pin pitch 7.62mm length 3.04mm diameter 1.6mm +0 +2 +2 +Diode_THT +D_DO-34_SOD68_P10.16mm_Horizontal +Diode, DO-34_SOD68 series, Axial, Horizontal, pin pitch=10.16mm, length*diameter=3.04*1.6mm^2, https://www.nxp.com/docs/en/data-sheet/KTY83_SER.pdf +Diode DO-34_SOD68 series Axial Horizontal pin pitch 10.16mm length 3.04mm diameter 1.6mm +0 +2 +2 +Diode_THT +D_DO-34_SOD68_P12.70mm_Horizontal +Diode, DO-34_SOD68 series, Axial, Horizontal, pin pitch=12.7mm, length*diameter=3.04*1.6mm^2, https://www.nxp.com/docs/en/data-sheet/KTY83_SER.pdf +Diode DO-34_SOD68 series Axial Horizontal pin pitch 12.7mm length 3.04mm diameter 1.6mm +0 +2 +2 +Diode_THT +D_DO-35_SOD27_P2.54mm_Vertical_AnodeUp +Diode, DO-35_SOD27 series, Axial, Vertical, pin pitch=2.54mm, length*diameter=4*2mm^2, http://www.diodes.com/_files/packages/DO-35.pdf +Diode DO-35_SOD27 series Axial Vertical pin pitch 2.54mm length 4mm diameter 2mm +0 +2 +2 +Diode_THT +D_DO-35_SOD27_P2.54mm_Vertical_KathodeUp +Diode, DO-35_SOD27 series, Axial, Vertical, pin pitch=2.54mm, length*diameter=4*2mm^2, http://www.diodes.com/_files/packages/DO-35.pdf +Diode DO-35_SOD27 series Axial Vertical pin pitch 2.54mm length 4mm diameter 2mm +0 +2 +2 +Diode_THT +D_DO-35_SOD27_P3.81mm_Vertical_AnodeUp +Diode, DO-35_SOD27 series, Axial, Vertical, pin pitch=3.81mm, length*diameter=4*2mm^2, http://www.diodes.com/_files/packages/DO-35.pdf +Diode DO-35_SOD27 series Axial Vertical pin pitch 3.81mm length 4mm diameter 2mm +0 +2 +2 +Diode_THT +D_DO-35_SOD27_P3.81mm_Vertical_KathodeUp +Diode, DO-35_SOD27 series, Axial, Vertical, pin pitch=3.81mm, length*diameter=4*2mm^2, http://www.diodes.com/_files/packages/DO-35.pdf +Diode DO-35_SOD27 series Axial Vertical pin pitch 3.81mm length 4mm diameter 2mm +0 +2 +2 +Diode_THT +D_DO-35_SOD27_P5.08mm_Vertical_AnodeUp +Diode, DO-35_SOD27 series, Axial, Vertical, pin pitch=5.08mm, length*diameter=4*2mm^2, http://www.diodes.com/_files/packages/DO-35.pdf +Diode DO-35_SOD27 series Axial Vertical pin pitch 5.08mm length 4mm diameter 2mm +0 +2 +2 +Diode_THT +D_DO-35_SOD27_P5.08mm_Vertical_KathodeUp +Diode, DO-35_SOD27 series, Axial, Vertical, pin pitch=5.08mm, length*diameter=4*2mm^2, http://www.diodes.com/_files/packages/DO-35.pdf +Diode DO-35_SOD27 series Axial Vertical pin pitch 5.08mm length 4mm diameter 2mm +0 +2 +2 +Diode_THT +D_DO-35_SOD27_P7.62mm_Horizontal +Diode, DO-35_SOD27 series, Axial, Horizontal, pin pitch=7.62mm, length*diameter=4*2mm^2, http://www.diodes.com/_files/packages/DO-35.pdf +Diode DO-35_SOD27 series Axial Horizontal pin pitch 7.62mm length 4mm diameter 2mm +0 +2 +2 +Diode_THT +D_DO-35_SOD27_P10.16mm_Horizontal +Diode, DO-35_SOD27 series, Axial, Horizontal, pin pitch=10.16mm, length*diameter=4*2mm^2, http://www.diodes.com/_files/packages/DO-35.pdf +Diode DO-35_SOD27 series Axial Horizontal pin pitch 10.16mm length 4mm diameter 2mm +0 +2 +2 +Diode_THT +D_DO-35_SOD27_P12.70mm_Horizontal +Diode, DO-35_SOD27 series, Axial, Horizontal, pin pitch=12.7mm, length*diameter=4*2mm^2, http://www.diodes.com/_files/packages/DO-35.pdf +Diode DO-35_SOD27 series Axial Horizontal pin pitch 12.7mm length 4mm diameter 2mm +0 +2 +2 +Diode_THT +D_DO-41_SOD81_P2.54mm_Vertical_AnodeUp +Diode, DO-41_SOD81 series, Axial, Vertical, pin pitch=2.54mm, length*diameter=5.2*2.7mm^2, https://www.diodes.com/assets/Package-Files/DO-41-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, https://www.diodes.com/assets/Package-Files/DO-41-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, https://www.diodes.com/assets/Package-Files/DO-41-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, https://www.diodes.com/assets/Package-Files/DO-41-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, https://www.diodes.com/assets/Package-Files/DO-41-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, https://www.diodes.com/assets/Package-Files/DO-41-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, https://www.diodes.com/assets/Package-Files/DO-41-Plastic.pdf +Diode DO-41_SOD81 series Axial Horizontal pin pitch 12.7mm length 5.2mm diameter 2.7mm +0 +2 +2 +Diode_THT +D_DO-201AD_P3.81mm_Vertical_AnodeUp +Diode, DO-201AD series, Axial, Vertical, pin pitch=3.81mm, length*diameter=9.5*5.2mm^2, http://www.diodes.com/_files/packages/DO-201AD.pdf +Diode DO-201AD series Axial Vertical pin pitch 3.81mm length 9.5mm diameter 5.2mm +0 +2 +2 +Diode_THT +D_DO-201AD_P3.81mm_Vertical_KathodeUp +Diode, DO-201AD series, Axial, Vertical, pin pitch=3.81mm, length*diameter=9.5*5.2mm^2, http://www.diodes.com/_files/packages/DO-201AD.pdf +Diode DO-201AD series Axial Vertical pin pitch 3.81mm length 9.5mm diameter 5.2mm +0 +2 +2 +Diode_THT +D_DO-201AD_P5.08mm_Vertical_AnodeUp +Diode, DO-201AD series, Axial, Vertical, pin pitch=5.08mm, length*diameter=9.5*5.2mm^2, http://www.diodes.com/_files/packages/DO-201AD.pdf +Diode DO-201AD series Axial Vertical pin pitch 5.08mm length 9.5mm diameter 5.2mm +0 +2 +2 +Diode_THT +D_DO-201AD_P5.08mm_Vertical_KathodeUp +Diode, DO-201AD series, Axial, Vertical, pin pitch=5.08mm, length*diameter=9.5*5.2mm^2, http://www.diodes.com/_files/packages/DO-201AD.pdf +Diode DO-201AD series Axial Vertical pin pitch 5.08mm length 9.5mm diameter 5.2mm +0 +2 +2 +Diode_THT +D_DO-201AD_P12.70mm_Horizontal +Diode, DO-201AD series, Axial, Horizontal, pin pitch=12.7mm, length*diameter=9.5*5.2mm^2, http://www.diodes.com/_files/packages/DO-201AD.pdf +Diode DO-201AD series Axial Horizontal pin pitch 12.7mm length 9.5mm diameter 5.2mm +0 +2 +2 +Diode_THT +D_DO-201AD_P15.24mm_Horizontal +Diode, DO-201AD series, Axial, Horizontal, pin pitch=15.24mm, length*diameter=9.5*5.2mm^2, http://www.diodes.com/_files/packages/DO-201AD.pdf +Diode DO-201AD series Axial Horizontal pin pitch 15.24mm length 9.5mm diameter 5.2mm +0 +2 +2 +Diode_THT +D_DO-201AE_P3.81mm_Vertical_AnodeUp +Diode, DO-201AE series, Axial, Vertical, pin pitch=3.81mm, length*diameter=9*5.3mm^2, http://www.farnell.com/datasheets/529758.pdf +Diode DO-201AE series Axial Vertical pin pitch 3.81mm length 9mm diameter 5.3mm +0 +2 +2 +Diode_THT +D_DO-201AE_P3.81mm_Vertical_KathodeUp +Diode, DO-201AE series, Axial, Vertical, pin pitch=3.81mm, length*diameter=9*5.3mm^2, http://www.farnell.com/datasheets/529758.pdf +Diode DO-201AE series Axial Vertical pin pitch 3.81mm length 9mm diameter 5.3mm +0 +2 +2 +Diode_THT +D_DO-201AE_P5.08mm_Vertical_AnodeUp +Diode, DO-201AE series, Axial, Vertical, pin pitch=5.08mm, length*diameter=9*5.3mm^2, http://www.farnell.com/datasheets/529758.pdf +Diode DO-201AE series Axial Vertical pin pitch 5.08mm length 9mm diameter 5.3mm +0 +2 +2 +Diode_THT +D_DO-201AE_P5.08mm_Vertical_KathodeUp +Diode, DO-201AE series, Axial, Vertical, pin pitch=5.08mm, length*diameter=9*5.3mm^2, http://www.farnell.com/datasheets/529758.pdf +Diode DO-201AE series Axial Vertical pin pitch 5.08mm length 9mm diameter 5.3mm +0 +2 +2 +Diode_THT +D_DO-201AE_P12.70mm_Horizontal +Diode, DO-201AE series, Axial, Horizontal, pin pitch=12.7mm, length*diameter=9*5.3mm^2, http://www.farnell.com/datasheets/529758.pdf +Diode DO-201AE series Axial Horizontal pin pitch 12.7mm length 9mm diameter 5.3mm +0 +2 +2 +Diode_THT +D_DO-201AE_P15.24mm_Horizontal +Diode, DO-201AE series, Axial, Horizontal, pin pitch=15.24mm, length*diameter=9*5.3mm^2, http://www.farnell.com/datasheets/529758.pdf +Diode DO-201AE series Axial Horizontal pin pitch 15.24mm length 9mm diameter 5.3mm +0 +2 +2 +Diode_THT +D_DO-201_P3.81mm_Vertical_AnodeUp +Diode, DO-201 series, Axial, Vertical, pin pitch=3.81mm, length*diameter=9.53*5.21mm^2, http://www.diodes.com/_files/packages/DO-201.pdf +Diode DO-201 series Axial Vertical pin pitch 3.81mm length 9.53mm diameter 5.21mm +0 +2 +2 +Diode_THT +D_DO-201_P3.81mm_Vertical_KathodeUp +Diode, DO-201 series, Axial, Vertical, pin pitch=3.81mm, length*diameter=9.53*5.21mm^2, http://www.diodes.com/_files/packages/DO-201.pdf +Diode DO-201 series Axial Vertical pin pitch 3.81mm length 9.53mm diameter 5.21mm +0 +2 +2 +Diode_THT +D_DO-201_P5.08mm_Vertical_AnodeUp +Diode, DO-201 series, Axial, Vertical, pin pitch=5.08mm, length*diameter=9.53*5.21mm^2, http://www.diodes.com/_files/packages/DO-201.pdf +Diode DO-201 series Axial Vertical pin pitch 5.08mm length 9.53mm diameter 5.21mm +0 +2 +2 +Diode_THT +D_DO-201_P5.08mm_Vertical_KathodeUp +Diode, DO-201 series, Axial, Vertical, pin pitch=5.08mm, length*diameter=9.53*5.21mm^2, http://www.diodes.com/_files/packages/DO-201.pdf +Diode DO-201 series Axial Vertical pin pitch 5.08mm length 9.53mm diameter 5.21mm +0 +2 +2 +Diode_THT +D_DO-201_P12.70mm_Horizontal +Diode, DO-201 series, Axial, Horizontal, pin pitch=12.7mm, length*diameter=9.53*5.21mm^2, http://www.diodes.com/_files/packages/DO-201.pdf +Diode DO-201 series Axial Horizontal pin pitch 12.7mm length 9.53mm diameter 5.21mm +0 +2 +2 +Diode_THT +D_DO-201_P15.24mm_Horizontal +Diode, DO-201 series, Axial, Horizontal, pin pitch=15.24mm, length*diameter=9.53*5.21mm^2, http://www.diodes.com/_files/packages/DO-201.pdf +Diode DO-201 series Axial Horizontal pin pitch 15.24mm length 9.53mm diameter 5.21mm +0 +2 +2 +Diode_THT +D_DO-247_Horizontal_TabDown +Diode, DO-247 series, Horizontal, TabDown, P 10.9mm +diode rectifier +0 +2 +2 +Diode_THT +D_DO-247_Horizontal_TabUp +Diode, DO-247 series, Horizontal, TabUp, P 10.9mm +diode rectifier +0 +2 +2 +Diode_THT +D_DO-247_Vertical +Diode, DO-247 series, Vertical, P 10.9mm +diode rectifier +0 +2 +2 +Diode_THT +D_P600_R-6_P7.62mm_Vertical_AnodeUp +Diode, P600_R-6 series, Axial, Vertical, pin pitch=7.62mm, length*diameter=9.1*9.1mm^2, http://www.vishay.com/docs/88692/p600a.pdf, http://www.diodes.com/_files/packages/R-6.pdf +Diode P600_R-6 series Axial Vertical pin pitch 7.62mm length 9.1mm diameter 9.1mm +0 +2 +2 +Diode_THT +D_P600_R-6_P7.62mm_Vertical_KathodeUp +Diode, P600_R-6 series, Axial, Vertical, pin pitch=7.62mm, length*diameter=9.1*9.1mm^2, http://www.vishay.com/docs/88692/p600a.pdf, http://www.diodes.com/_files/packages/R-6.pdf +Diode P600_R-6 series Axial Vertical pin pitch 7.62mm length 9.1mm diameter 9.1mm +0 +2 +2 +Diode_THT +D_P600_R-6_P12.70mm_Horizontal +Diode, P600_R-6 series, Axial, Horizontal, pin pitch=12.7mm, length*diameter=9.1*9.1mm^2, http://www.vishay.com/docs/88692/p600a.pdf, http://www.diodes.com/_files/packages/R-6.pdf +Diode P600_R-6 series Axial Horizontal pin pitch 12.7mm length 9.1mm diameter 9.1mm +0 +2 +2 +Diode_THT +D_P600_R-6_P20.00mm_Horizontal +Diode, P600_R-6 series, Axial, Horizontal, pin pitch=20mm, length*diameter=9.1*9.1mm^2, http://www.vishay.com/docs/88692/p600a.pdf, http://www.diodes.com/_files/packages/R-6.pdf +Diode P600_R-6 series Axial Horizontal pin pitch 20mm length 9.1mm diameter 9.1mm +0 +2 +2 +Diode_THT +D_T-1_P2.54mm_Vertical_AnodeUp +Diode, T-1 series, Axial, Vertical, pin pitch=2.54mm, length*diameter=3.2*2.6mm^2, http://www.diodes.com/_files/packages/T-1.pdf +Diode T-1 series Axial Vertical pin pitch 2.54mm length 3.2mm diameter 2.6mm +0 +2 +2 +Diode_THT +D_T-1_P2.54mm_Vertical_KathodeUp +Diode, T-1 series, Axial, Vertical, pin pitch=2.54mm, length*diameter=3.2*2.6mm^2, http://www.diodes.com/_files/packages/T-1.pdf +Diode T-1 series Axial Vertical pin pitch 2.54mm length 3.2mm diameter 2.6mm +0 +2 +2 +Diode_THT +D_T-1_P5.08mm_Horizontal +Diode, T-1 series, Axial, Horizontal, pin pitch=5.08mm, length*diameter=3.2*2.6mm^2, http://www.diodes.com/_files/packages/T-1.pdf +Diode T-1 series Axial Horizontal pin pitch 5.08mm length 3.2mm diameter 2.6mm +0 +2 +2 +Diode_THT +D_T-1_P10.16mm_Horizontal +Diode, T-1 series, Axial, Horizontal, pin pitch=10.16mm, length*diameter=3.2*2.6mm^2, http://www.diodes.com/_files/packages/T-1.pdf +Diode T-1 series Axial Horizontal pin pitch 10.16mm length 3.2mm diameter 2.6mm +0 +2 +2 +Diode_THT +D_T-1_P12.70mm_Horizontal +Diode, T-1 series, Axial, Horizontal, pin pitch=12.7mm, length*diameter=3.2*2.6mm^2, http://www.diodes.com/_files/packages/T-1.pdf +Diode T-1 series Axial Horizontal pin pitch 12.7mm length 3.2mm diameter 2.6mm +0 +2 +2 +Diode_THT +Diode_Bridge_15.1x15.1x6.3mm_P10.9mm +Single phase bridge rectifier case 15.1x15.1mm, pitch 10.9mm, see https://diotec.com/tl_files/diotec/files/pdf/datasheets/pb1000.pdf +Diode Bridge PB10xxS +0 +4 +4 +Diode_THT +Diode_Bridge_15.2x15.2x6.3mm_P10.9mm +Single phase bridge rectifier case 15.2x15.2mm, pitch 10.9mm, see https://diotec.com/tl_files/diotec/files/pdf/datasheets/kbpc600.pdf +Diode Bridge KBPC6xx +0 +4 +4 +Diode_THT +Diode_Bridge_15.7x15.7x6.3mm_P10.8mm +Single phase bridge rectifier case 15.7x15.7 +Diode Bridge +0 +4 +4 +Diode_THT +Diode_Bridge_16.7x16.7x6.3mm_P10.8mm +Single phase bridge rectifier case 16.7x16.7 +Diode Bridge +0 +4 +4 +Diode_THT +Diode_Bridge_19.0x3.5x10.0mm_P5.0mm +Vishay GBU rectifier package, 5.08mm pitch, see http://www.vishay.com/docs/88606/g3sba20.pdf +Vishay GBU rectifier diode bridge +0 +4 +4 +Diode_THT +Diode_Bridge_19.0x19.0x6.8mm_P12.7mm +Single phase bridge rectifier case 19x19mm, pitch 12.7mm, see https://diotec.com/tl_files/diotec/files/pdf/datasheets/pb1000.pdf +Diode Bridge PB10xx +0 +4 +4 +Diode_THT +Diode_Bridge_28.6x28.6x7.3mm_P18.0mm_P11.6mm +Single phase bridge rectifier case 28.6x28.6mm, pitch 18.0mm & 11.6mm, see https://diotec.com/tl_files/diotec/files/pdf/datasheets/kbpc1500fw.pdf +Diode Bridge KBPCxxxxWP +0 +4 +4 +Diode_THT +Diode_Bridge_32.0x5.6x17.0mm_P10.0mm_P7.5mm +Diotec 32x5.6x17mm rectifier package, 7.5mm/10mm pitch, see https://diotec.com/tl_files/diotec/files/pdf/datasheets/b40c3700.pdf +Diotec rectifier diode bridge +0 +4 +4 +Diode_THT +Diode_Bridge_Comchip_SCVB-L +Three phase, Bridge, Rectifier, https://www.comchiptech.com/admin/files/product/SC35VB80S-G%20Thru506369.%20SC35VB160S-G%20RevB.pdf +diode module +0 +5 +5 +Diode_THT +Diode_Bridge_DIGITRON_KBPC_T +Single phase, Bridge rectifier, 28.614x28.614mm, case KBPC_T(FP), https://www.digitroncorp.com/Digitron/media/Files/Datasheets/KBPC15005-SERIES.pdf +diode module +0 +4 +4 +Diode_THT +Diode_Bridge_DIP-4_W5.08mm_P2.54mm +4-lead dip package for diode bridges, row spacing 5.08mm, pin-spacing 2.54mm, see http://www.vishay.com/docs/88898/b2m.pdf +DIL DIP PDIP 5.08mm 2.54 +0 +4 +4 +Diode_THT +Diode_Bridge_DIP-4_W7.62mm_P5.08mm +4-lead dip package for diode bridges, row spacing 7.62 mm (300 mils), see http://cdn-reichelt.de/documents/datenblatt/A400/HDBL101G_20SERIES-TSC.pdf +DIL DIP PDIP 5.08mm 7.62mm 300mil +0 +4 +4 +Diode_THT +Diode_Bridge_GeneSiC_KBPC_T +Single phase, Bridge rectifier, 28.55x28.55mm, case KBPC_T(FP), https://www.diodemodule.com/bridge-rectifier/kbpc/kbpc1501t.pdf +diode module +0 +4 +4 +Diode_THT +Diode_Bridge_GeneSiC_KBPC_W +Single phase, Bridge Rectifier, 28.55x28.55mm, case KBPC_W(WP), https://www.diodemodule.com/bridge-rectifier/kbpc/kbpc15005w.pdf +diode module +0 +4 +4 +Diode_THT +Diode_Bridge_IXYS_GUFP +Three phase, Bridge, Rectifier +diode module +0 +5 +5 +Diode_THT +Diode_Bridge_Round_D8.9mm +4-lead round diode bridge package, diameter 8.9mm, pin pitch 5.08mm, see http://cdn-reichelt.de/documents/datenblatt/A400/W005M-W10M_SEP.PDF +diode bridge 8.9mm 8.85mm WOB pitch 5.08mm +0 +4 +4 +Diode_THT +Diode_Bridge_Round_D9.0mm +4-lead round diode bridge package, diameter 9.0mm, pin pitch 5.0mm, see https://diotec.com/tl_files/diotec/files/pdf/datasheets/b40r.pdf +diode bridge 9.0mm 8.85mm WOB pitch 5.0mm +0 +4 +4 +Diode_THT +Diode_Bridge_Round_D9.8mm +4-lead round diode bridge package, diameter 9.8mm, pin pitch 5.08mm, see http://www.vishay.com/docs/88769/woo5g.pdf +diode bridge 9.8mm WOG pitch 5.08mm +0 +4 +4 +Diode_THT +Diode_Bridge_Vishay_GBL +Vishay GBL rectifier package, 5.08mm pitch, see http://www.vishay.com/docs/88609/gbl005.pdf +Vishay GBL rectifier diode bridge +0 +4 +4 +Diode_THT +Diode_Bridge_Vishay_GBU +Vishay GBU rectifier package, 5.08mm pitch, see http://www.vishay.com/docs/88606/g3sba20.pdf +Vishay GBU rectifier diode bridge +0 +4 +4 +Diode_THT +Diode_Bridge_Vishay_KBL +Vishay KBL rectifier package, 5.08mm pitch, see http://www.vishay.com/docs/88655/kbl005.pdf +Vishay KBL rectifier diode bridge +0 +4 +4 +Diode_THT +Diode_Bridge_Vishay_KBPC1 +Single phase bridge rectifier case KBPC1, see http://www.vishay.com/docs/93585/vs-kbpc1series.pdf +Diode Bridge +0 +4 +4 +Diode_THT +Diode_Bridge_Vishay_KBPC6 +Single phase bridge rectifier case KBPC6, see http://www.vishay.com/docs/93585/vs-kbpc1series.pdf +Diode Bridge +0 +4 +4 +Diode_THT +Diode_Bridge_Vishay_KBPM +Vishay KBM rectifier package, 3.95mm pitch (http://www.farnell.com/datasheets/2238158.pdf, http://www.cdil.com/s/kbp2005_.pdf) +Vishay KBM rectifier diode bridge +0 +4 +4 +Diode_THT +Diode_Bridge_Vishay_KBU +Vishay KBU rectifier package, 5.08mm pitch, see http://www.vishay.com/docs/88656/kbu4.pdf +Vishay KBU rectifier diode bridge +0 +4 +4 +Display +AG12864E +STN/FSTN LCD 128x64 dot https://www.digchip.com/datasheets/parts/datasheet/1121/AG-12864E-pdf.php +AG12864E Graphics Display 128x64 Ampire +0 +24 +20 +Display +Adafruit_SSD1306 +Adafruit SSD1306 OLED 1.3 inch 128x64 I2C & SPI https://learn.adafruit.com/monochrome-oled-breakouts/downloads +Adafruit SSD1306 OLED 1.3 inch 128x64 I2C & SPI +0 +8 +8 +Display +Adafruit_SSD1306_No_Mounting_Holes +Adafruit SSD1306 OLED 1.3 inch 128x64 I2C & SPI https://learn.adafruit.com/monochrome-oled-breakouts/downloads +Adafruit SSD1306 OLED 1.3 inch 128x64 I2C & SPI +0 +8 +8 +Display +CR2013-MI2120 +CR2013-MI2120 ILI9341 LCD Breakout http://pan.baidu.com/s/11Y990 +CR2013-MI2120 ILI9341 LCD Breakout +0 +18 +14 +Display +DL1416 +.160", 4-Digit 16-Segment plus decimal alphanumeric intelligent display with Memory/Decoder/Driver https://partstack.com/resources/pdf/images/VipMasterIC/IC/INFN/INFNS19899/INFNS19899-1.pdf +display 16-segment alphanumeric +0 +20 +20 +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 +ER-OLED0.42-1W_Folded +72x40 white graphic OLED display 0.42 inch, SSD1306B controller, I2C and SPI, folded back https://www.buydisplay.com/download/manual/ER-OLED0.42-1_Datasheet.pdf +SSD1306 OLED display 0.42 inch +0 +16 +16 +Display +ERM19264 +STN/FSTN LCD 192x64 dot https://www.buydisplay.com/download/manual/ERM19264-1_Series_Datasheet.pdf +ERM19264 Graphics Display 192x64 +0 +20 +20 +Display +HDSM-441B_HDSM-443B +2 Digit 7 segemnt blue LED, right hand decimal, https://docs.broadcom.com/docs/AV02-1589EN +2 Digit 7 segment blue LED +0 +10 +10 +Display +HDSM-541B_HDSM-543B +2 digit 7 segement blue LED with right hand decimal, https://docs.broadcom.com/docs/AV02-1588EN +2 digit 7 segement blue LED with right hand decimal +0 +10 +10 +Display +HDSP-48xx +10-Element Bar Graph Array https://docs.broadcom.com/docs/AV02-1798EN +10-Element Bar Graph Array +0 +20 +20 +Display +HDSP-4830 +10-Element Red Bar Graph Array https://docs.broadcom.com/docs/AV02-1798EN +10-Element Red Bar Graph Array +0 +20 +20 +Display +HDSP-4832 +10-Element Red Yellow Green Bar Graph Array https://docs.broadcom.com/docs/AV02-1798EN +10-Element Red Yellow Green Bar Graph Array +0 +20 +20 +Display +HDSP-4836 +10-Element Red Yellow Green Bar Graph Array https://docs.broadcom.com/docs/AV02-1798EN +10-Element Red Yellow Green Bar Graph Array +0 +20 +20 +Display +HDSP-4840 +10-Element Yellow Bar Graph Array https://docs.broadcom.com/docs/AV02-1798EN +10-Element Yellow Bar Graph Array +0 +20 +20 +Display +HDSP-4850 +10-Element Green Bar Graph Array https://docs.broadcom.com/docs/AV02-1798EN +10-Element Green Bar Graph Array +0 +20 +20 +Display +HLCP-J100 +10-Element Red Bar Graph Array https://docs.broadcom.com/docs/AV02-1798EN +10-Element Red Bar Graph Array +0 +20 +20 +Display +HY1602E +http://www.icbank.com/data/ICBShop/board/HY1602E.pdf +LCD 16x2 Alphanumeric 16pin +0 +20 +16 +Display +LCD-016N002L +16 x 2 Character LCD, http://www.vishay.com/product?docid=37299 +LCD-016N002L 16 x 2 Character LCD +0 +24 +20 +Display +LM16255 +LCD LM16255 16x2 character http://www.datasheetlib.com/datasheet/259542/lm16255_sharp-electronics.html +LCD 12x2 +0 +14 +14 +Display +NHD-0420H1Z +NHD-0420H1Z LCD http://www.newhavendisplay.com/specs/NHD-0420H1Z-FSW-GBW-33V3.pdf +NHD-0420H1Z LCD +0 +16 +16 +Display +NHD-C0220BiZ +NHD-C0220BiZ LCD http://www.newhavendisplay.com/specs/NHD-C0220BiZ-FSW-FBW-3V3M.pdf +NHD-C0220BiZ LCD +0 +10 +10 +Display +NHD-C0220BiZ-FSRGB +NHD-C0220BiZ-FSRGB LCD https://newhavendisplay.com/content/specs/NHD-C0220BiZ-FSRGB-FBW-3VM.pdf +NHD-C0220BiZ-FSRGB 2 x 20 character LCD RGB backlight +0 +12 +12 +Display +NHD-C12832A1Z-FSRGB +128x32 LCD with RGB backlight https://www.newhavendisplay.com/specs/NHD-C12832A1Z-FSRGB-FBW-3V.pdf +lcd rgb st7565 +0 +21 +21 +Display +OLED-128O064D +128x64 OLED display +display oled +0 +30 +30 +Display +RC1602A +http://www.raystar-optronics.com/down.php?ProID=18 +LCD 16x2 Alphanumeric 16pin +0 +22 +18 +Display +WC1602A +LCD 16x2 http://www.wincomlcd.com/pdf/WC1602A-SFYLYHTC06.pdf +LCD 16x2 Alphanumeric 16pin +0 +20 +16 +Display_7Segment +7SEGMENT-LED__HDSM531_HDSM533_SMD +7-Segment Display, HDSM53x, https://docs.broadcom.com/docs/AV02-0713EN +7segment LED HDSM531 HDSM533 +0 +10 +10 +Display_7Segment +7SegmentLED_LTS6760_LTS6780 +7-Segment Display, LTS67x0, http://optoelectronics.liteon.com/upload/download/DS30-2001-355/S6760jd.pdf +7Segment LED LTS6760 LTS6780 +0 +10 +10 +Display_7Segment +AD-121F2 +Single Digit 7-segment RGB LED Display, 1-inch digit height, common anode, http://usasyck.com/products/AD-121F2_cat_e.pdf +RGB LED digit +0 +22 +22 +Display_7Segment +AFF_2x7SEG-DIGIT_10mm +Afficheur 7 segments 10mm DIGIT +AFFICHEUR +0 +16 +16 +Display_7Segment +CA56-12CGKWA +4 digit 7 segment green LED, http://www.kingbright.com/attachments/file/psearch/000/00/00/CA56-12CGKWA(Ver.9A).pdf +4 digit 7 segment green LED +0 +12 +12 +Display_7Segment +CA56-12EWA +4 digit 7 segment green LED, http://www.kingbrightusa.com/images/catalog/SPEC/CA56-12EWA.pdf +4 digit 7 segment green LED +0 +12 +12 +Display_7Segment +CA56-12SEKWA +4 digit 7 segment green LED, http://www.kingbright.com/attachments/file/psearch/000/00/00/CA56-12SEKWA(Ver.7A).pdf +4 digit 7 segment green LED +0 +12 +12 +Display_7Segment +CA56-12SRWA +4 digit 7 segment green LED, http://www.kingbrightusa.com/images/catalog/SPEC/CA56-12SRWA.pdf +4 digit 7 segment green LED +0 +12 +12 +Display_7Segment +CA56-12SURKWA +4 digit 7 segment green LED, http://www.kingbright.com/attachments/file/psearch/000/00/00/CA56-12SURKWA(Ver.8A).pdf +4 digit 7 segment green LED +0 +12 +12 +Display_7Segment +CA56-12SYKWA +4 digit 7 segment green LED, http://www.kingbright.com/attachments/file/psearch/000/00/00/CA56-12SYKWA(Ver.6A).pdf +4 digit 7 segment green LED +0 +12 +12 +Display_7Segment +CC56-12GWA +4 digit 7 segment green LED, http://www.kingbrightusa.com/images/catalog/SPEC/CA56-11GWA.pdf +4 digit 7 segment green LED +0 +12 +12 +Display_7Segment +CC56-12YWA +4 digit 7 segment green LED, http://www.kingbrightusa.com/images/catalog/SPEC/CC56-12YWA.pdf +4 digit 7 segment green LED +0 +12 +12 +Display_7Segment +D1X8K +https://ia800903.us.archive.org/24/items/CTKD1x8K/Cromatek%20D168K.pdf +Single digit 7 segment ultra bright red +0 +10 +10 +Display_7Segment +DA04-11CGKWA +http://www.kingbright.com/attachments/file/psearch/000/00/00/DA04-11CGKWA(Ver.6A).pdf +Dubble digit green 7 segment LED display +0 +16 +16 +Display_7Segment +DA04-11SEKWA +http://www.kingbright.com/attachments/file/psearch/000/00/00/DA04-11SEKWA(Ver.9A).pdf +Dubble digit super bright orange 7 segment LED display +0 +16 +16 +Display_7Segment +DA04-11SURKWA +http://www.kingbright.com/attachments/file/psearch/000/00/00/DA04-11SURKWA(Ver.10A).pdf +Dubble digit hyper red 7 segment LED display +0 +16 +16 +Display_7Segment +DA04-11SYKWA +http://www.kingbright.com/attachments/file/psearch/000/00/00/DA04-11SYKWA(Ver.6A).pdf +Dubble digit super bright yellow 7 segment LED display +0 +16 +16 +Display_7Segment +DA56-11CGKWA +http://www.kingbright.com/attachments/file/psearch/000/00/00/DA56-11CGKWA(Ver.16A).pdf +Double digit seven segment green LED display +0 +18 +18 +Display_7Segment +DA56-11SEKWA +http://www.kingbright.com/attachments/file/psearch/000/00/00/DA56-11SEKWA(Ver.9A).pdf +Double digit seven segment super bright orange LED display +0 +18 +18 +Display_7Segment +DA56-11SURKWA +http://www.kingbright.com/attachments/file/psearch/000/00/00/DA56-11SURKWA(Ver.11A).pdf +Double digit seven segment hyper red LED display +0 +18 +18 +Display_7Segment +DA56-11SYKWA +http://www.kingbright.com/attachments/file/psearch/000/00/00/DA56-11SYKWA(Ver.11A).pdf +Double digit seven segment super bright yellow LED display +0 +18 +18 +Display_7Segment +DE113-XX-XX +http://www.display-elektronik.de/filter/DE113-RS-20_635.pdf +3 1/5 digit LOW BAT + 7-Segment LCD +0 +40 +40 +Display_7Segment +DE114-RS-20 +http://www.display-elektronik.de/filter/DE113-RS-20_635.pdf +3 1/5 digit reflective LCD LOW-BAT + 7-Segment +0 +40 +40 +Display_7Segment +DE119-XX-XX +https://www.display-elektronik.de/filter/DE119-RS-20_635.pdf +4 digit 7 segment LCD +0 +40 +40 +Display_7Segment +DE122-XX-XX +http://www.display-elektronik.de/filter/DE122-RS-20_635.pdf +6 digit 7 segment LCD +0 +50 +50 +Display_7Segment +DE152-XX-XX +https://tft-module.de/filter/DE152-RS-20_75.pdf +4 digit 7 segment LCD +0 +40 +40 +Display_7Segment +DE170-XX-XX +http://www.display-elektronik.de/filter/DE170-RS-20_75.pdf +3 1/5 digit reflective arrow bat + 7 segment LCD +0 +40 +40 +Display_7Segment +ELD_426XXXX +http://www.everlight.com/file/ProductFile/D426SYGWA-S530-E2.pdf +Double digit 7 segment brilliant yellow green LED +0 +10 +10 +Display_7Segment +HDSP-7401 +One digit 7 segment yellow, https://docs.broadcom.com/docs/AV02-2553EN +One digit 7 segment yellow +0 +10 +10 +Display_7Segment +HDSP-7507 ++-1 overflow 7 segment high efficiency red, https://docs.broadcom.com/docs/AV02-2553EN ++-1 overflow 7 segment high efficiency red +0 +10 +10 +Display_7Segment +HDSP-7801 +One digit 7 segment green, https://docs.broadcom.com/docs/AV02-2553EN +One digit 7 segment green +0 +10 +10 +Display_7Segment +HDSP-7807 ++-1 overflow 7 segment green, https://docs.broadcom.com/docs/AV02-2553EN ++-1 overflow 7 segment green +0 +10 +10 +Display_7Segment +HDSP-A151 +One digit 7 segment red, https://docs.broadcom.com/docs/AV02-2553EN +One digit 7 segment high efficiency red +0 +10 +10 +Display_7Segment +HDSP-A401 +One digit 7 segment orange, common anode, https://docs.broadcom.com/docs/AV02-2553EN +One digit 7 segment orange common anode +0 +10 +10 +Display_7Segment +KCSC02-105 +http://www.kingbright.com/attachments/file/psearch/000/00/00/KCSC02-105(Ver.9A).pdf +Single digit 7 segement hyper red LED +0 +10 +10 +Display_7Segment +KCSC02-106 +http://www.kingbright.com/attachments/file/psearch/000/00/00/KCSC02-106(Ver.10A).pdf +Single digit 7 segement super bright orange LED +0 +10 +10 +Display_7Segment +KCSC02-107 +http://www.kingbright.com/attachments/file/psearch/000/00/00/KCSC02-107(Ver.9A).pdf +Single digit 7 segement super bright yellow LED +0 +10 +10 +Display_7Segment +KCSC02-123 +http://www.kingbright.com/attachments/file/psearch/000/00/00/KCSC02-123(Ver.10A).pdf +Single digit 7 segement super bright yellow LED +0 +10 +10 +Display_7Segment +KCSC02-136 +http://www.kingbright.com/attachments/file/psearch/000/00/00/KCSC02-136(Ver.6B).pdf +Single digit 7 segement super bright yellow LED +0 +10 +10 +Display_7Segment +LTC-4627Jx +http://optoelectronics.liteon.com/upload/download/DS30-2001-393/C4627JG.pdf +4 digit 7 segment LED +0 +14 +14 +Display_7Segment +MAN71A +https://www.digchip.com/datasheets/parts/datasheet/161/MAN3640A-pdf.php +One digit 7 segment red LED with right dot +0 +14 +14 +Display_7Segment +MAN72A +https://www.digchip.com/datasheets/parts/datasheet/161/MAN3640A-pdf.php +One digit 7 segment red LED with left dot +0 +14 +14 +Display_7Segment +MAN73A +https://www.digchip.com/datasheets/parts/datasheet/161/MAN3640A-pdf.php +Overflow +- 1 red LED +0 +14 +14 +Display_7Segment +MAN3410A +https://www.digchip.com/datasheets/parts/datasheet/161/MAN3640A-pdf.php +One digit 7 segment green LED with dot +0 +14 +14 +Display_7Segment +MAN3420A +https://www.digchip.com/datasheets/parts/datasheet/161/MAN3640A-pdf.php +One digit 7 segment green LED with left dot +0 +14 +14 +Display_7Segment +MAN3610A +https://www.digchip.com/datasheets/parts/datasheet/161/MAN3640A-pdf.php +One digit 7 segment orange LED with right dot +0 +14 +14 +Display_7Segment +MAN3620A +https://www.digchip.com/datasheets/parts/datasheet/161/MAN3640A-pdf.php +One digit 7 segment orange LED with left dot +0 +14 +14 +Display_7Segment +MAN3630A +https://www.digchip.com/datasheets/parts/datasheet/161/MAN3640A-pdf.php +Overflow +- 1 orange LED +0 +14 +14 +Display_7Segment +MAN3810A +https://www.digchip.com/datasheets/parts/datasheet/161/MAN3640A-pdf.php +One digit 7 segment yellow LED with right dot +0 +14 +14 +Display_7Segment +MAN3820A +https://www.digchip.com/datasheets/parts/datasheet/161/MAN3640A-pdf.php +One digit 7 segment yellow LED with left dot +0 +14 +14 +Display_7Segment +SA15-11xxx +http://www.kingbrightusa.com/images/catalog/SPEC/SA15-11SRWA.pdf +SA15-11xxx single digit 7 segment display 38.1mm 1.5inch +0 +10 +10 +Display_7Segment +SBC18-11SURKCGKWA +http://www.kingbright.com/attachments/file/psearch/000/00/00/SBC18-11SURKCGKWA(Ver.6A).pdf +single digit 7 segemnt red/green LED +0 +10 +10 +Display_7Segment +Sx39-1xxxxx +Single digit 7 segment LED display in red, yellow or green colour http://www.kingbrightusa.com/images/catalog/SPEC/sa39-11ewa.pdf +One digit LED 7 segment SA39-11 SC39-11 SA39-12 SC39-12 +0 +10 +10 +Electromechanical +BAT_1042P + + +0 +2 +2 +Electromechanical +BAT_1048 + + +0 +4 +4 +Electromechanical +Buzzer_12x9.5RM7.6 +Generic Buzzer, D12mm height 9.5mm with RM7.6mm +buzzer +0 +2 +2 +Electromechanical +SW_JS202011SCQN + + +0 +6 +6 +Electromechanical +SW_PUSH_6mm + + +0 +2 +2 +Electromechanical +SW_PUSH_6mm_H4.3mm +tactile push button, 6x6mm e.g. PHAP33xx series, height=4.3mm +tact sw push 6mm +0 +4 +2 +Electromechanical +SW_PUSH_6mm_H13mm +tactile push button, 6x6mm e.g. PHAP33xx series, height=13mm +tact sw push 6mm +0 +4 +2 +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 +Fiducial, circular marking, 0.5mm bare copper, 1.5mm soldermask opening +fiducial +0 +1 +0 +Fiducial +Fiducial_0.5mm_Mask1mm +Fiducial, circular marking, 0.5mm bare copper, 1mm soldermask opening (Level C) +fiducial +0 +1 +0 +Fiducial +Fiducial_0.5mm_Mask2mm +Fiducial, circular marking, 0.5mm bare copper, 2mm soldermask opening +fiducial +0 +1 +0 +Fiducial +Fiducial_0.75mm_Mask1.5mm +Fiducial, circular marking, 0.75mm bare copper, 1.5mm soldermask opening (Level B) +fiducial +0 +1 +0 +Fiducial +Fiducial_0.75mm_Mask2.25mm +Fiducial, circular marking, 0.75mm bare copper, 2.25mm soldermask opening +fiducial +0 +1 +0 +Fiducial +Fiducial_1.5mm_Mask3mm +Fiducial, circular marking, 1.5mm bare copper, 3mm soldermask opening +fiducial +0 +1 +0 +Fiducial +Fiducial_1.5mm_Mask4.5mm +Fiducial, circular marking, 1.5mm bare copper, 4.5mm soldermask opening +fiducial +0 +1 +0 +Fiducial +Fiducial_1mm_Mask2mm +Fiducial, circular marking, 1mm bare copper, 2mm soldermask opening (Level A) +fiducial +0 +1 +0 +Fiducial +Fiducial_1mm_Mask3mm +Fiducial, circular marking, 1mm bare copper, 3mm soldermask opening (recommended) +fiducial +0 +1 +0 +Fiducial +Fiducial_Cross_0.5mm_Mask2mm +Circular Fiducial, Cross variant, 0.5mm bare copper, 2mm soldermask opening +fiducial +0 +1 +0 +Fiducial +Fiducial_Cross_1.5mm_Mask2mm +Fiducial, cross variant, 1.5mm bare copper, 2mm soldermask opening +fiducial +0 +2 +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_KEMET_PZB300_24.0x12.5mm_P10.0mm +EMI suppression capacitor PZB300 series, length 24.0 mm, width 12.5 mm, drill hole 1.00mm ( https://content.kemet.com/datasheets/KEM_F3019_PZB300X2_2XY2_275.pdf ) +suppressor filter cap +0 +3 +3 +Filter +Filter_Mini-Circuits_FV1206 +Mini-Circuits Filter SMD 1206 https://ww2.minicircuits.com/case_style/FV1206.pdf +Mini-Circuits Filter SMD 1206 +0 +6 +4 +Filter +Filter_Mini-Circuits_FV1206-1 +Mini-Circuits Filter SMD 1206 https://ww2.minicircuits.com/case_style/FV1206-1.pdf +Mini-Circuits Filter SMD 1206 +0 +6 +6 +Filter +Filter_Mini-Circuits_FV1206-4 +Mini-Circuits Filter SMD 1206 https://ww2.minicircuits.com/case_style/FV1206-4.pdf +Mini-Circuits Filter SMD 1206 +0 +8 +4 +Filter +Filter_Mini-Circuits_FV1206-5 +Mini-Circuits Filter SMD 1206 https://ww2.minicircuits.com/case_style/FV1206-5.pdf +Mini-Circuits Filter SMD 1206 +0 +8 +4 +Filter +Filter_Mini-Circuits_FV1206-6 +Mini-Circuits Filter SMD 1206 https://ww2.minicircuits.com/case_style/FV1206-6.pdf +Mini-Circuits Filter SMD 1206 +0 +14 +8 +Filter +Filter_Mini-Circuits_FV1206-7 +Mini-Circuits Filter SMD 1206 https://ww2.minicircuits.com/case_style/FV1206-7.pdf +Mini-Circuits Filter SMD 1206 +0 +5 +3 +Filter +Filter_Murata_BNX025 +https://www.murata.com/en-us/products/productdata/8796778004510/QNFH9101.pdf?1496719830000 +EMI Filter +0 +6 +4 +Filter +Filter_Murata_BNX025_ThermalVias +https://www.murata.com/en-us/products/productdata/8796778004510/QNFH9101.pdf?1496719830000 +EMI Filter +0 +19 +4 +Filter +Filter_Murata_SFECF-6 +SMD Type 10.7MHz Ceramic Filter https://www.murata.com/en-us/products/filter/cerafil/sfecf +10.7MHz smd ceramic +0 +6 +6 +Filter +Filter_Murata_SFECF-6_HandSoldering +SMD Type 10.7MHz Ceramic Filter https://www.murata.com/en-us/products/filter/cerafil/sfecf +10.7MHz smd ceramic +0 +6 +6 +Filter +Filter_SAW-6_3.8x3.8mm +6-pin 3.8 x 3.8mm SAW filter package, https://www.golledge.com/media/3785/mp08167.pdf +SAW filter 6-pin +0 +6 +6 +Filter +Filter_SAW-8_3.8x3.8mm +8-pin 3.8x3.8mm SAW filter, https://www.golledge.com/media/1831/ma05497.pdf +SAW filter 8-pin +0 +8 +8 +Filter +Filter_SAW_Epcos_DCC6C_3x3mm +EPCOS/TDK Electronics/Qualcomm DCC6c SAW filter package based on EPCOS app note 93 (https://www.catagle.com/45-2/PDF_AN93.htm) +SAW filter 6-pin +0 +6 +6 +Filter +Filter_Schaffner_FN405 +Compact PCB mounting EMI filter (https://www.schaffner.com/product/FN405/Schaffner_datasheet_FN405.pdf) +EMI filter +0 +5 +5 +Filter +Filter_Schaffner_FN406 +Ultra Compact EMC Filter (https://www.schaffner.com/product/FN406/Schaffner_datasheet_FN406.pdf) +emi filter +0 +5 +5 +Fuse +FuseHolder_Blade_ATO_Littelfuse_FLR_178.6165 +Littelfuse fuse holder for ATO/FKS blade fuses, 80V, vertical, 20 x 6mm, PCB thickness up to 1.5mm, http://www.littelfuse.com/~/media/commercial-vehicle/datasheets/automotive-fuse-holders/ato/littelfuse-fuse-holder-ato-flr-pcb-datasheet.pdf +ATO FKS blade fuse holder +0 +8 +2 +Fuse +Fuse_0402_1005Metric +Fuse SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +fuse +0 +2 +2 +Fuse +Fuse_0402_1005Metric_Pad0.77x0.64mm_HandSolder +Fuse SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +fuse handsolder +0 +2 +2 +Fuse +Fuse_0603_1608Metric +Fuse SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC-7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +fuse +0 +2 +2 +Fuse +Fuse_0603_1608Metric_Pad1.05x0.95mm_HandSolder +Fuse SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +fuse handsolder +0 +2 +2 +Fuse +Fuse_0805_2012Metric +Fuse SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC-7351 nominal, (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator +fuse +0 +2 +2 +Fuse +Fuse_0805_2012Metric_Pad1.15x1.40mm_HandSolder +Fuse SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator +fuse handsolder +0 +2 +2 +Fuse +Fuse_1206_3216Metric +Fuse SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC-7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +fuse +0 +2 +2 +Fuse +Fuse_1206_3216Metric_Pad1.42x1.75mm_HandSolder +Fuse SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +fuse handsolder +0 +2 +2 +Fuse +Fuse_1210_3225Metric +Fuse SMD 1210 (3225 Metric), square (rectangular) end terminal, IPC-7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +fuse +0 +2 +2 +Fuse +Fuse_1210_3225Metric_Pad1.42x2.65mm_HandSolder +Fuse SMD 1210 (3225 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +fuse handsolder +0 +2 +2 +Fuse +Fuse_1812_4532Metric +Fuse SMD 1812 (4532 Metric), square (rectangular) end terminal, IPC-7351 nominal, (Body size source: https://www.nikhef.nl/pub/departments/mt/projects/detectorR_D/dtddice/ERJ2G.pdf), generated with kicad-footprint-generator +fuse +0 +2 +2 +Fuse +Fuse_1812_4532Metric_Pad1.30x3.40mm_HandSolder +Fuse SMD 1812 (4532 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: https://www.nikhef.nl/pub/departments/mt/projects/detectorR_D/dtddice/ERJ2G.pdf), generated with kicad-footprint-generator +fuse handsolder +0 +2 +2 +Fuse +Fuse_2010_5025Metric +Fuse SMD 2010 (5025 Metric), square (rectangular) end terminal, IPC-7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +fuse +0 +2 +2 +Fuse +Fuse_2010_5025Metric_Pad1.52x2.65mm_HandSolder +Fuse SMD 2010 (5025 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +fuse handsolder +0 +2 +2 +Fuse +Fuse_2512_6332Metric +Fuse SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC-7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +fuse +0 +2 +2 +Fuse +Fuse_2512_6332Metric_Pad1.52x3.35mm_HandSolder +Fuse SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +fuse handsolder +0 +2 +2 +Fuse +Fuse_2920_7451Metric +Fuse SMD 2920 (7451 Metric), square (rectangular) end terminal, IPC-7351 nominal, (Body size from: http://www.megastar.com/products/fusetronic/polyswitch/PDF/smd2920.pdf), generated with kicad-footprint-generator +fuse +0 +2 +2 +Fuse +Fuse_2920_7451Metric_Pad2.10x5.45mm_HandSolder +Fuse SMD 2920 (7451 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size from: http://www.megastar.com/products/fusetronic/polyswitch/PDF/smd2920.pdf), generated with kicad-footprint-generator +fuse handsolder +0 +2 +2 +Fuse +Fuse_BelFuse_0ZRE0005FF_L8.3mm_W3.8mm +Fuse 0ZRE0005FF, BelFuse, Radial Leaded PTC, https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf +0ZRE BelFuse radial PTC +0 +2 +2 +Fuse +Fuse_BelFuse_0ZRE0008FF_L8.3mm_W3.8mm +Fuse 0ZRE0008FF, BelFuse, Radial Leaded PTC,https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf +0ZRE BelFuse radial PTC +0 +2 +2 +Fuse +Fuse_BelFuse_0ZRE0012FF_L8.3mm_W3.8mm +Fuse 0ZRE0012FF, BelFuse, Radial Leaded PTC,https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf +0ZRE BelFuse radial PTC +0 +2 +2 +Fuse +Fuse_BelFuse_0ZRE0016FF_L9.9mm_W3.8mm +Fuse 0ZRE0016FF, BelFuse, Radial Leaded PTC,https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf +0ZRE BelFuse radial PTC +0 +2 +2 +Fuse +Fuse_BelFuse_0ZRE0025FF_L9.6mm_W3.8mm +Fuse 0ZRE0025FF, BelFuse, Radial Leaded PTC,https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf +0ZRE BelFuse radial PTC +0 +2 +2 +Fuse +Fuse_BelFuse_0ZRE0033FF_L11.4mm_W3.8mm +Fuse 0ZRE0033FF, BelFuse, Radial Leaded PTC,https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf +0ZRE BelFuse radial PTC +0 +2 +2 +Fuse +Fuse_BelFuse_0ZRE0040FF_L11.5mm_W3.8mm +Fuse 0ZRE0040FF, BelFuse, Radial Leaded PTC,https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf +0ZRE BelFuse radial PTC +0 +2 +2 +Fuse +Fuse_BelFuse_0ZRE0055FF_L14.0mm_W4.1mm +Fuse 0ZRE0055FF, BelFuse, Radial Leaded PTC,https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf +0ZRE BelFuse radial PTC +0 +2 +2 +Fuse +Fuse_BelFuse_0ZRE0075FF_L11.5mm_W4.8mm +Fuse 0ZRE0075FF, BelFuse, Radial Leaded PTC,https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf +0ZRE BelFuse radial PTC +0 +2 +2 +Fuse +Fuse_BelFuse_0ZRE0100FF_L18.7mm_W5.1mm +Fuse 0ZRE0100FF, BelFuse, Radial Leaded PTC,https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf +0ZRE BelFuse radial PTC +0 +2 +2 +Fuse +Fuse_BelFuse_0ZRE0125FF_L21.2mm_W5.3mm +Fuse 0ZRE0125FF, BelFuse, Radial Leaded PTC,https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf +0ZRE BelFuse radial PTC +0 +2 +2 +Fuse +Fuse_BelFuse_0ZRE0150FF_L23.4mm_W5.3mm +Fuse 0ZRE0150FF, BelFuse, Radial Leaded PTC,https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf +0ZRE BelFuse radial PTC +0 +2 +2 +Fuse +Fuse_BelFuse_0ZRE0200FF_L24.9mm_W6.1mm +Fuse 0ZRE0200FF, BelFuse, Radial Leaded PTC,https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf +0ZRE BelFuse radial PTC +0 +2 +2 +Fuse +Fuse_Blade_ATO_directSolder +car blade fuse direct solder +car blade fuse +0 +2 +2 +Fuse +Fuse_Blade_Mini_directSolder +car blade fuse mini, direct solder +car blade fuse mini +0 +2 +2 +Fuse +Fuse_Bourns_MF-RG300 +PTC Resettable Fuse, Ihold = 3.0A, Itrip=5.1A, http://www.bourns.com/docs/Product-Datasheets/mfrg.pdf +ptc resettable fuse polyfuse THT +0 +2 +2 +Fuse +Fuse_Bourns_MF-RG400 +PTC Resettable Fuse, Ihold = 4.0A, Itrip=6.8A, http://www.bourns.com/docs/Product-Datasheets/mfrg.pdf +ptc resettable fuse polyfuse THT +0 +2 +2 +Fuse +Fuse_Bourns_MF-RG500 +PTC Resettable Fuse, Ihold = 5.0A, Itrip=8.5A, http://www.bourns.com/docs/Product-Datasheets/mfrg.pdf +ptc resettable fuse polyfuse THT +0 +2 +2 +Fuse +Fuse_Bourns_MF-RG600 +PTC Resettable Fuse, Ihold = 6.0A, Itrip=10.2A, http://www.bourns.com/docs/Product-Datasheets/mfrg.pdf +ptc resettable fuse polyfuse THT +0 +2 +2 +Fuse +Fuse_Bourns_MF-RG650 +PTC Resettable Fuse, Ihold = 6.5A, Itrip=11.1A, http://www.bourns.com/docs/Product-Datasheets/mfrg.pdf +ptc resettable fuse polyfuse THT +0 +2 +2 +Fuse +Fuse_Bourns_MF-RG700 +PTC Resettable Fuse, Ihold = 7.0A, Itrip=11.9A, http://www.bourns.com/docs/Product-Datasheets/mfrg.pdf +ptc resettable fuse polyfuse THT +0 +2 +2 +Fuse +Fuse_Bourns_MF-RG800 +PTC Resettable Fuse, Ihold = 8.0A, Itrip=13.6A, http://www.bourns.com/docs/Product-Datasheets/mfrg.pdf +ptc resettable fuse polyfuse THT +0 +2 +2 +Fuse +Fuse_Bourns_MF-RG900 +PTC Resettable Fuse, Ihold = 9.0A, Itrip=15.3A, http://www.bourns.com/docs/Product-Datasheets/mfrg.pdf +ptc resettable fuse polyfuse THT +0 +2 +2 +Fuse +Fuse_Bourns_MF-RG1000 +PTC Resettable Fuse, Ihold = 10.0A, Itrip=17.0A, http://www.bourns.com/docs/Product-Datasheets/mfrg.pdf +ptc resettable fuse polyfuse THT +0 +2 +2 +Fuse +Fuse_Bourns_MF-RG1100 +PTC Resettable Fuse, Ihold = 11.0A, Itrip=18.7A, http://www.bourns.com/docs/Product-Datasheets/mfrg.pdf +ptc resettable fuse polyfuse THT +0 +2 +2 +Fuse +Fuse_Bourns_MF-RHT050 +PTC Resettable Fuse, Ihold = 0.5A, Itrip=0.92A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf +ptc resettable fuse polyfuse THT +0 +2 +2 +Fuse +Fuse_Bourns_MF-RHT070 +PTC Resettable Fuse, Ihold = 0.7A, Itrip=1.4A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf +ptc resettable fuse polyfuse THT +0 +2 +2 +Fuse +Fuse_Bourns_MF-RHT100 +PTC Resettable Fuse, Ihold = 1.0A, Itrip=1.8A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf +ptc resettable fuse polyfuse THT +0 +2 +2 +Fuse +Fuse_Bourns_MF-RHT200 +PTC Resettable Fuse, Ihold = 2.0A, Itrip=3.8A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf +ptc resettable fuse polyfuse THT +0 +2 +2 +Fuse +Fuse_Bourns_MF-RHT300 +PTC Resettable Fuse, Ihold = 3.0A, Itrip=6.0A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf +ptc resettable fuse polyfuse THT +0 +2 +2 +Fuse +Fuse_Bourns_MF-RHT400 +PTC Resettable Fuse, Ihold = 4.0A, Itrip=7.5A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf +ptc resettable fuse polyfuse THT +0 +2 +2 +Fuse +Fuse_Bourns_MF-RHT500 +PTC Resettable Fuse, Ihold = 5.0A, Itrip=9.0A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf +ptc resettable fuse polyfuse THT +0 +2 +2 +Fuse +Fuse_Bourns_MF-RHT550 +PTC Resettable Fuse, Ihold = 5.5A, Itrip=10.0A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf +ptc resettable fuse polyfuse THT +0 +2 +2 +Fuse +Fuse_Bourns_MF-RHT600 +PTC Resettable Fuse, Ihold = 6.0A, Itrip=10.8A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf +ptc resettable fuse polyfuse THT +0 +2 +2 +Fuse +Fuse_Bourns_MF-RHT650 +PTC Resettable Fuse, Ihold = 6.5A, Itrip=12.0A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf +ptc resettable fuse polyfuse THT +0 +2 +2 +Fuse +Fuse_Bourns_MF-RHT700 +PTC Resettable Fuse, Ihold = 7.0A, Itrip=13.0A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf +ptc resettable fuse polyfuse THT +0 +2 +2 +Fuse +Fuse_Bourns_MF-RHT750 +PTC Resettable Fuse, Ihold = 7.5A, Itrip=13.1A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf +ptc resettable fuse polyfuse THT +0 +2 +2 +Fuse +Fuse_Bourns_MF-RHT800 +PTC Resettable Fuse, Ihold = 8.0A, Itrip=15.0A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf +ptc resettable fuse polyfuse THT +0 +2 +2 +Fuse +Fuse_Bourns_MF-RHT900 +PTC Resettable Fuse, Ihold = 9.0A, Itrip=16.5A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf +ptc resettable fuse polyfuse THT +0 +2 +2 +Fuse +Fuse_Bourns_MF-RHT1000 +PTC Resettable Fuse, Ihold = 10.0A, Itrip=18.5A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf +ptc resettable fuse polyfuse THT +0 +2 +2 +Fuse +Fuse_Bourns_MF-RHT1100 +PTC Resettable Fuse, Ihold = 11.0A, Itrip=20.0A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf +ptc resettable fuse polyfuse THT +0 +2 +2 +Fuse +Fuse_Bourns_MF-RHT1300 +PTC Resettable Fuse, Ihold = 13.0A, Itrip=24.0A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf +ptc resettable fuse polyfuse THT +0 +2 +2 +Fuse +Fuse_Bourns_MF-SM_7.98x5.44mm +https://www.bourns.com/docs/Product-Datasheets/mfsm.pdf +bourns ptc resettable fuse polyfuse MF-SM MF-SMHT +0 +2 +2 +Fuse +Fuse_Bourns_MF-SM_9.5x6.71mm +https://www.bourns.com/docs/Product-Datasheets/mfsm.pdf +bourns ptc resettable fuse polyfuse MF-SM MF-SMHT +0 +2 +2 +Fuse +Fuse_Bourns_TBU-CA +Bourns TBU-CA Fuse, 2 Pin (https://www.bourns.com/data/global/pdfs/TBU-CA.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +Bourns Fuse NoLead +0 +3 +3 +Fuse +Fuse_Littelfuse-LVR100 +Littelfuse, resettable fuse, PTC, polyswitch LVR100, Ih 1A http://www.littelfuse.com/~/media/electronics/datasheets/resettable_ptcs/littelfuse_ptc_lvr_catalog_datasheet.pdf.pdf +LVR100 PTC resettable polyswitch +0 +2 +2 +Fuse +Fuse_Littelfuse-LVR125 +Littelfuse, resettable fuse, PTC, polyswitch LVR125, Ih 1.25A, http://www.littelfuse.com/~/media/electronics/datasheets/resettable_ptcs/littelfuse_ptc_lvr_catalog_datasheet.pdf.pdf +LVR125 PTC resettable polyswitch +0 +2 +2 +Fuse +Fuse_Littelfuse-LVR200 +Littelfuse, resettable fuse, PTC, polyswitch LVR200, Ih 2A, http://www.littelfuse.com/~/media/electronics/datasheets/resettable_ptcs/littelfuse_ptc_lvr_catalog_datasheet.pdf.pdf +LVR200 PTC resettable polyswitch +0 +2 +2 +Fuse +Fuse_Littelfuse-NANO2-451_453 +Littelfuse NANO2 https://www.littelfuse.com/~/media/electronics/datasheets/fuses/littelfuse_fuse_451_453_datasheet.pdf.pdf +Fuse Nano2 +0 +2 +2 +Fuse +Fuse_Littelfuse-NANO2-462 +Littelfuse NANO2, 250VAC/VDC, 350VAC/VDC, 10.5 x 4.5 x 4.5mm, https://www.littelfuse.com/media?resourcetype=datasheets&itemid=6201db33-6e55-43f2-b41f-15e38bdd2c99&filename=littelfuse-fuse-462-datasheet +Fuse Nano2 462 +0 +2 +2 +Fuse +Fuse_Littelfuse-NANO2-885 +Littelfuse NANO2, 350VAC, 450/500VDC, 10.86 x 4.78 x 4.78mm, https://www.littelfuse.com/media?resourcetype=datasheets&itemid=888f12ed-ed3b-4b45-b910-06af8854ad76&filename=littelfuse-fuse-885-datasheet +Fuse Nano2 885 +0 +2 +2 +Fuse +Fuse_Littelfuse_372_D8.50mm +Fuse, Littelfuse, 372, 8.5x8mm, https://www.littelfuse.com/~/media/electronics/datasheets/fuses/littelfuse_fuse_372_datasheet.pdf.pdf +fuse tht radial +0 +2 +2 +Fuse +Fuse_Littelfuse_395Series +Fuse, TE5, Littelfuse/Wickmann, No. 460, No560, +Fuse TE5 Littelfuse/Wickmann No. 460 No560 +0 +2 +2 +Fuse +Fuse_Schurter_UMT250 +Surface Mount Fuse, 3 x 10.1 mm, Time-Lag T, 250 VAC, 125 VDC (https://us.schurter.com/bundles/snceschurter/epim/_ProdPool_/newDS/en/typ_UMT_250.pdf) +Schurter fuse smd +0 +2 +2 +Fuse +Fuse_Schurter_UMZ250 +Surface Mount Fuse with Clip, 4.2 x 11.1 mm, Time-Lag T, 250 VAC, 125 VDC (https://us.schurter.com/bundles/snceschurter/epim/_ProdPool_/newDS/en/typ_UMZ_250.pdf) +fuse smd mount holder +0 +2 +2 +Fuse +Fuse_SunFuse-6HP +SunFuse Ceramic Slow Blow Fuse 6H_6HP.PDF +UL/CSA 6x32mm Ceramic Slow Blow Fuse +0 +2 +2 +Fuse +Fuseholder_Blade_ATO_Littelfuse_Pudenz_2_Pin +Fuseholder ATO Blade littelfuse Pudenz 2 Pin +Fuseholder ATO Blade littelfuse Pudenz 2 Pin +0 +2 +2 +Fuse +Fuseholder_Blade_Mini_Keystone_3568 +fuse holder, car blade fuse mini, http://www.keyelco.com/product-pdf.cfm?p=306 +car blade fuse mini +0 +4 +2 +Fuse +Fuseholder_Clip-5x20mm_Bel_FC-203-22_Lateral_P17.80x5.00mm_D1.17mm_Horizontal +Fuseholder Clips, 5x20mm Cylinder Fuse, Pins Lateral, Horizontal, Bel FC-203-22, https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0672-fuse-clips-series.pdf +fuse clip open +0 +4 +2 +Fuse +Fuseholder_Clip-5x20mm_Eaton_1A5601-01_Inline_P20.80x6.76mm_D1.70mm_Horizontal +Fuseholder Clips, 5x20mm Cylinder Fuse, Pins Inline, Horizontal, Eaton 1A5601-01, https://www.eaton.com/content/dam/eaton/products/electronic-components/resources/data-sheet/eaton-1axxxx-pcb-fuse-clips-atc-atm-blade-data-sheet.pdf +fuse clip open +0 +4 +2 +Fuse +Fuseholder_Clip-5x20mm_Keystone_3512P_Inline_P23.62x7.27mm_D1.02x2.41x1.02x1.57mm_Horizontal +Fuseholder Clips, 5x20mm Cylinder Fuse, Pins Inline, Horizontal, Keystone 3512P, http://www.keyelco.com/product-pdf.cfm?p=1386 +fuse clip open +0 +4 +2 +Fuse +Fuseholder_Clip-5x20mm_Keystone_3512_Inline_P23.62x7.27mm_D1.02x1.57mm_Horizontal +Fuseholder Clips, 5x20mm Cylinder Fuse, Pins Inline, Horizontal, Keystone 3512, http://www.keyelco.com/product-pdf.cfm?p=356 +fuse clip open +0 +4 +2 +Fuse +Fuseholder_Clip-5x20mm_Keystone_3517_Inline_P23.11x6.76mm_D1.70mm_Horizontal +Fuseholder Clips, 5x20mm Cylinder Fuse, Pins Inline, Horizontal, Keystone 3517, http://www.keyelco.com/product-pdf.cfm?p=354 +fuse clip open +0 +4 +2 +Fuse +Fuseholder_Clip-5x20mm_Keystone_3518P_Inline_P23.11x6.76mm_D2.44x1.70mm_Horizontal +Fuseholder Clips, 5x20mm Cylinder Fuse, Pins Inline, Horizontal, Keystone 3518P, http://www.keyelco.com/product-pdf.cfm?p=1387 +fuse clip open +0 +4 +2 +Fuse +Fuseholder_Clip-5x20mm_Littelfuse_100_Inline_P20.50x4.60mm_D1.30mm_Horizontal +Fuseholder Clips, 5x20mm Cylinder Fuse, Pins Inline, Horizontal, Littelfuse 100, https://m.littelfuse.com/~/media/electronics/datasheets/fuse_clips/littelfuse_fuse_clip_100_445_030_520_datasheet.pdf.pdf +fuse clip open +0 +4 +2 +Fuse +Fuseholder_Clip-5x20mm_Littelfuse_111_Inline_P20.00x5.00mm_D1.05mm_Horizontal +Fuseholder Clips, 5x20mm Cylinder Fuse, Pins Inline, Horizontal, Littelfuse 111, https://m.littelfuse.com/~/media/electronics/datasheets/fuse_clips/littelfuse_fuse_clip_111_519_datasheet.pdf.pdf +fuse clip open +0 +4 +2 +Fuse +Fuseholder_Clip-5x20mm_Littelfuse_111_Lateral_P18.80x5.00mm_D1.17mm_Horizontal +Fuseholder Clips, 5x20mm Cylinder Fuse, Pins Inline, Horizontal, Littelfuse 111 (501 and 506), https://m.littelfuse.com/~/media/electronics/datasheets/fuse_clips/littelfuse_fuse_clip_111_datasheet.pdf.pdf +fuse clip open +0 +4 +2 +Fuse +Fuseholder_Clip-5x20mm_Littelfuse_445-030_Inline_P20.50x5.20mm_D1.30mm_Horizontal +Fuseholder Clips, 5x20mm Cylinder Fuse, Pins Inline, Horizontal, Littelfuse 445/030, https://m.littelfuse.com/~/media/electronics/datasheets/fuse_clips/littelfuse_fuse_clip_100_445_030_520_datasheet.pdf.pdf +fuse clip open +0 +4 +2 +Fuse +Fuseholder_Clip-5x20mm_Littelfuse_519_Inline_P20.60x5.00mm_D1.00mm_Horizontal +Fuseholder Clips, 5x20mm Cylinder Fuse, Pins Inline, Horizontal, Littelfuse 519, https://m.littelfuse.com/~/media/electronics/datasheets/fuse_clips/littelfuse_fuse_clip_111_519_datasheet.pdf.pdf +fuse clip open +0 +4 +2 +Fuse +Fuseholder_Clip-5x20mm_Littelfuse_520_Inline_P20.50x5.80mm_D1.30mm_Horizontal +Fuseholder Clips, 5x20mm Cylinder Fuse, Pins Inline, Horizontal, Littelfuse 520, https://m.littelfuse.com/~/media/electronics/datasheets/fuse_clips/littelfuse_fuse_clip_100_445_030_520_datasheet.pdf.pdf +fuse clip open +0 +4 +2 +Fuse +Fuseholder_Clip-5x20mm_Littelfuse_521_Lateral_P17.00x5.00mm_D1.30mm_Horizontal +Fuseholder Clips, 5x20mm Cylinder Fuse, Pins Inline, Horizontal, Littelfuse 521, https://www.littelfuse.com/~/media/electronics/datasheets/fuse_clips/littelfuse_fuse_clip_520_521_102071_datasheet.pdf.pdf +fuse clip open +0 +4 +2 +Fuse +Fuseholder_Clip-5x20mm_Schurter_CQM_Inline_P20.60x5.00mm_D1.00mm_Horizontal +Fuseholder Clips, 5x20mm Cylinder Fuse, Pins Inline, Horizontal, Schurter CQM (0752), https://www.schurter.com/en/datasheet/typ_CQM.pdf +fuse clip open +0 +4 +2 +Fuse +Fuseholder_Clip-5x20mm_Schurter_OG_Lateral_P15.00x5.00mm_D1.3mm_Horizontal +Fuseholder Clips, 5x20mm Cylinder Fuse, Pins Inline, Horizontal, Schurter OG, https://ch.schurter.com/en/datasheet/typ_OG__Clip__5x20.pdf +fuse clip open +0 +4 +2 +Fuse +Fuseholder_Clip-6.3x32mm_Littelfuse_102_122_Inline_P34.21x7.62mm_D1.98mm_Horizontal +Fuseholder Clips, 6.3x32mm Cylinder Fuse, Pins Inline, Horizontal, Littelfuse 102/122 Straight Leads, https://www.littelfuse.com/~/media/electronics/datasheets/fuse_clips/littelfuse_fuse_clip_102_122_datasheet.pdf.pdf +fuse clip open +0 +4 +2 +Fuse +Fuseholder_Clip-6.3x32mm_Littelfuse_102_Inline_P34.21x7.62mm_D2.54mm_Horizontal +Fuseholder Clips, 6.3x32mm Cylinder Fuse, Pins Inline, Horizontal, Littelfuse 102 Bowed Leads, https://www.littelfuse.com/~/media/electronics/datasheets/fuse_clips/littelfuse_fuse_clip_102_122_datasheet.pdf.pdf +fuse clip open +0 +4 +2 +Fuse +Fuseholder_Clip-6.3x32mm_Littelfuse_122_Inline_P34.21x7.62mm_D2.54mm_Horizontal +Fuseholder Clips, 6.3x32mm Cylinder Fuse, Pins Inline, Horizontal, Littelfuse 122 Bowed Leads, https://www.littelfuse.com/~/media/electronics/datasheets/fuse_clips/littelfuse_fuse_clip_102_122_datasheet.pdf.pdf +fuse clip open +0 +4 +2 +Fuse +Fuseholder_Clip-6.3x32mm_Littelfuse_102071_Inline_P34.70x7.60mm_D2.00mm_Horizontal +Fuseholder Clips, 6.3x32mm Cylinder Fuse, Pins Inline, Horizontal, Littelfuse 102071, https://www.littelfuse.com/~/media/electronics/datasheets/fuse_clips/littelfuse_fuse_clip_520_521_102071_datasheet.pdf.pdf +fuse clip open +0 +4 +2 +Fuse +Fuseholder_Cylinder-5x20mm_Bulgin_FX0456_Vertical_Closed +Fuseholder, 5x20, closed, vertical, Bulgin, FX0456, https://www.bulgin.com/products/pub/media/bulgin/data/Fuseholders.pdf +Fuseholder 5x20 closed vertical Bulgin FX0456 Sicherungshalter +0 +2 +2 +Fuse +Fuseholder_Cylinder-5x20mm_Bulgin_FX0457_Horizontal_Closed +Fuseholder, 5x20, closed, horizontal, Bulgin, FX0457, Sicherungshalter, +Fuseholder 5x20 closed horizontal Bulgin FX0457 Sicherungshalter +0 +2 +2 +Fuse +Fuseholder_Cylinder-5x20mm_EATON_H15-V-1_Vertical_Closed +PCB fuse holders for 5 mm x 20 mm fuses; 250V; 10A (http://www.cooperindustries.com/content/dam/public/bussmann/Electronics/Resources/product-datasheets/bus-elx-ds-4426-h15.pdf) +fuse holder vertical 5x20mm +0 +2 +2 +Fuse +Fuseholder_Cylinder-5x20mm_EATON_HBV_Vertical_Closed +5 mm x 20 mm fuse holders; Vertical w/ Stability Pins; 250V; 6.3-16A (http://www.cooperindustries.com/content/dam/public/bussmann/Electronics/Resources/product-datasheets/Bus_Elx_DS_2118_HB_PCB_Series.pdf) +fuse holder vertical 5x20mm +0 +2 +2 +Fuse +Fuseholder_Cylinder-5x20mm_EATON_HBW_Vertical_Closed +5 mm x 20 mm fuse holders; Vertical w/o Stability Pins; 250V; 6.3-16A (http://www.cooperindustries.com/content/dam/public/bussmann/Electronics/Resources/product-datasheets/Bus_Elx_DS_2118_HB_PCB_Series.pdf) +fuse holder vertical 5x20mm +0 +2 +2 +Fuse +Fuseholder_Cylinder-5x20mm_Schurter_0031_8201_Horizontal_Open +Fuseholder horizontal open, 5x20mm, 500V, 16A, Schurter 0031.8201, https://us.schurter.com/bundles/snceschurter/epim/_ProdPool_/newDS/en/typ_OGN.pdf +Fuseholder horizontal open 5x20 Schurter 0031.8201 +0 +2 +2 +Fuse +Fuseholder_Cylinder-5x20mm_Schurter_FAB_0031-355x_Horizontal_Closed +Fuseholder 5x20mm horizontal Shurter model FAB, Suitable for order numbers 0031.3551 and 0031.3558 (https://www.schurter.com/bundles/snceschurter/epim/_ProdPool_/newDS/en/typ_FAB.pdf) +Fuseholder 5x20mm closed horizontal +0 +2 +2 +Fuse +Fuseholder_Cylinder-5x20mm_Schurter_FPG4_Vertical_Closed +Shock-Safe Fuseholder, 5 x 20 mm, Slotted Cap/Fingergrip, vertical, IEC 60335-1; 250VAC/10A VDE; 500V/16A UL/CSA (https://us.schurter.com/bundles/snceschurter/epim/_ProdPool_/newDS/en/typ_FPG4.pdf) +fuse holder vertical 5x20mm +0 +4 +2 +Fuse +Fuseholder_Cylinder-5x20mm_Schurter_FUP_0031.2510_Horizontal_Closed +Shock-Safe closed Fuseholder, Schurter FUP Series, 5.0 x 20mm, Slotted Cap, horizontal, 500 VAC 4W/16A (VDE), 600V 30A (UL/CSA), order numbers: 0031.2510 (0031.2500 + 0031.2323), http://www.schurter.ch/bundles/snceschurter/epim/_ProdPool_/newDS/en/typ_FUP.pdf +Fuseholder 5x20mm horizontal closed +0 +3 +2 +Fuse +Fuseholder_Cylinder-5x20mm_Schurter_OGN-SMD_Horizontal_Open +Fuseholder horizontal open, 5x20mm, 500V, 16A (https://us.schurter.com/bundles/snceschurter/epim/_ProdPool_/newDS/en/typ_OGN-SMD.pdf) +Fuseholder horizontal open 5x20 Schurter 0031.8221 +0 +2 +2 +Fuse +Fuseholder_Cylinder-5x20mm_Stelvio-Kontek_PTF78_Horizontal_Open +https://www.tme.eu/en/Document/3b48dbe2b9714a62652c97b08fcd464b/PTF78.pdf +Fuseholder horizontal open 5x20 Stelvio-Kontek PTF/78 +0 +2 +2 +Fuse +Fuseholder_Cylinder-5x20mm_Wuerth_696103101002-SMD_Horizontal_Open +Fuseholder horizontal open 5x20mm 250V 10A Würth 696103101002 +Fuseholder horizontal open 5x20mm 250V 10A +0 +2 +2 +Fuse +Fuseholder_Cylinder-6.3x32mm_Schurter_0031-8002_Horizontal_Open +Fuseholder, horizontal, open, 6.3x32, Schurter, 0031.8002, https://www.schurter.com/en/datasheet/typ_OG__Holder__6.3x32.pdf +Fuseholder horizontal open 6.3x32 Schurter 0031.8002 +0 +2 +2 +Fuse +Fuseholder_Cylinder-6.3x32mm_Schurter_FUP_0031.2520_Horizontal_Closed +Shock-Safe closed Fuseholder, Schurter FUP Series, 6.3 x 32 mm, Slotted Cap, horizontal, 500 VAC 4W/16A (VDE), 600V 30A (UL/CSA), order numbers: 0031.2520 (0031.2500 + 0031.2321), http://www.schurter.ch/bundles/snceschurter/epim/_ProdPool_/newDS/en/typ_FUP.pdf +Fuseholder 6.3x32mm horizontal closed +0 +3 +2 +Fuse +Fuseholder_Keystone_3555-2 +Maxi APX ATX Automotive Blade Fuse Clip Holder https://www.keyelco.com/userAssets/file/M65p40.pdf +Maxi APX ATX Automotive Blade Fuse Clip Holder +0 +4 +2 +Fuse +Fuseholder_Littelfuse_100_series_5x20mm +Littelfuse clips, https://www.littelfuse.com/~/media/electronics/datasheets/fuse_clips/littelfuse_fuse_clip_100_445_030_520_datasheet.pdf.pdf +Fuseholder clips +0 +4 +2 +Fuse +Fuseholder_Littelfuse_100_series_5x25mm +Littelfuse clips, https://www.littelfuse.com/~/media/electronics/datasheets/fuse_clips/littelfuse_fuse_clip_100_445_030_520_datasheet.pdf.pdf +Fuseholder clips +0 +4 +2 +Fuse +Fuseholder_Littelfuse_100_series_5x30mm +Littelfuse clips, https://www.littelfuse.com/~/media/electronics/datasheets/fuse_clips/littelfuse_fuse_clip_100_445_030_520_datasheet.pdf.pdf +Fuseholder clips +0 +4 +2 +Fuse +Fuseholder_Littelfuse_445_030_series_5x20mm +Littelfuse clips, https://www.littelfuse.com/~/media/electronics/datasheets/fuse_clips/littelfuse_fuse_clip_100_445_030_520_datasheet.pdf.pdf +Fuseholder clips +0 +4 +2 +Fuse +Fuseholder_Littelfuse_445_030_series_5x25mm +Littelfuse clips, https://www.littelfuse.com/~/media/electronics/datasheets/fuse_clips/littelfuse_fuse_clip_100_445_030_520_datasheet.pdf.pdf +Fuseholder clips +0 +4 +2 +Fuse +Fuseholder_Littelfuse_445_030_series_5x30mm +Littelfuse clips, https://www.littelfuse.com/~/media/electronics/datasheets/fuse_clips/littelfuse_fuse_clip_100_445_030_520_datasheet.pdf.pdf +Fuseholder clips +0 +4 +2 +Fuse +Fuseholder_Littelfuse_Nano2_154x +Littelfuse NANO2 holder, https://www.littelfuse.com/~/media/electronics/datasheets/fuses/littelfuse_fuse_154_154t_154l_154tl_datasheet.pdf.pdf +SMD Nano2 holder +0 +2 +2 +Fuse +Fuseholder_Littelfuse_Nano2_157x +Littelfuse NANO2 holder, https://www.littelfuse.com/~/media/electronics/datasheets/fuses/littelfuse_fuse_157_datasheet.pdf.pdf +SMD Nano2 holder +0 +2 +2 +Fuse +Fuseholder_TR5_Littelfuse_No560_No460 +Fuse, Fuseholder, TR5, Littelfuse/Wickmann, No. 460, No560, https://www.littelfuse.com/~/media/electronics/datasheets/fuse_holders/littelfuse_fuse_holder_559_560_datasheet.pdf.pdf +Fuse Fuseholder TR5 Littelfuse/Wickmann No. 460 No560 +0 +2 +2 +Fuse +GDT_Bourns_2038 +Gas Discharge Tube, 3-electrode GDT, SMD, 2038 series, https://www.bourns.com/data/global/pdfs/2038-xx-sm.pdf +GDT gas discharge tube +0 +3 +3 +Fuse +GDT_Yageo_3RxxxxL-6 +Gas discharge tube, 3-electrode, THT, 8.5x6.0mm, https://www.yageo.com/upload/media/product/app/datasheet/cpc/gdt/3r-6.pdf +GDT +0 +3 +3 +Fuse +GDT_Yageo_3RxxxxM-6 +Gas discharge tube, 3-electrode, SMD, 8.5x6.0mm, https://www.yageo.com/upload/media/product/app/datasheet/cpc/gdt/3r-6.pdf +GDT 3R-6 +0 +3 +3 +Generic_LCD-16X2 +MODULE_LCD-16X2 + + +0 +16 +16 +Generic_LCD-16X2 +WC1602A +LCD 16x2 http://www.wincomlcd.com/pdf/WC1602A-SFYLYHTC06.pdf +LCD 16x2 Alphanumeric 16pin +0 +20 +16 +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_Extruded_531002B00000G_34.9x12.7mm_H25.4mm +Extruded 5310, dual radial board level heatsink, TO‐202, TO‐220, 25.4mm height, no pins, https://info.boydcorp.com/hubfs/Thermal/Air-Cooling/Boyd-Board-Level-Cooling-Extruded-5310.pdf +heatsink +0 +0 +0 +Heatsink +Heatsink_AAVID_Extruded_531002B02100G_34.9x12.7mm_H25.4mm +Extruded 5310, dual radial board level heatsink, TO‐202, TO‐220, 25.4mm height, 2.46mm dia. pins, https://info.boydcorp.com/hubfs/Thermal/Air-Cooling/Boyd-Board-Level-Cooling-Extruded-5310.pdf +heatsink +0 +2 +1 +Heatsink +Heatsink_AAVID_Extruded_531002B02500G_34.9x12.7mm_H25.4mm +Extruded 5310, dual radial board level heatsink, TO‐220, 25.4mm height, 2.37mm dia. pins, https://info.boydcorp.com/hubfs/Thermal/Air-Cooling/Boyd-Board-Level-Cooling-Extruded-5310.pdf +heatsink +0 +2 +1 +Heatsink +Heatsink_AAVID_Extruded_531102B00000G_34.9x12.7mm_H38.1mm +Extruded 5310, dual radial board level heatsink, TO‐202, TO‐220, 38.1mm height, no pins, https://info.boydcorp.com/hubfs/Thermal/Air-Cooling/Boyd-Board-Level-Cooling-Extruded-5310.pdf +heatsink +0 +0 +0 +Heatsink +Heatsink_AAVID_Extruded_531102B02100G_34.9x12.7mm_H38.1mm +Extruded 5310, dual radial board level heatsink, TO‐220, 38.1mm height, 2.46mm dia. pins, https://info.boydcorp.com/hubfs/Thermal/Air-Cooling/Boyd-Board-Level-Cooling-Extruded-5310.pdf +heatsink +0 +2 +1 +Heatsink +Heatsink_AAVID_Extruded_531102B02500G_34.9x12.7mm_H38.1mm +Extruded 5310, dual radial board level heatsink, TO‐220, 38.1mm height, 2.37mm dia. pins, https://info.boydcorp.com/hubfs/Thermal/Air-Cooling/Boyd-Board-Level-Cooling-Extruded-5310.pdf +heatsink +0 +2 +1 +Heatsink +Heatsink_AAVID_Extruded_531102V02500G_34.9x12.7mm_H38.1mm +Extruded 5310, dual radial board level heatsink, TO‐220, 38.1mm height, 2.37mm dia. pins, AavSHIELD3 finish, https://info.boydcorp.com/hubfs/Thermal/Air-Cooling/Boyd-Board-Level-Cooling-Extruded-5310.pdf +heatsink +0 +2 +1 +Heatsink +Heatsink_AAVID_Extruded_531202B00000G_34.9x12.7mm_H50.8mm +Extruded 5310, dual radial board level heatsink, TO‐202, TO‐220, 50.8mm height, no pins, https://info.boydcorp.com/hubfs/Thermal/Air-Cooling/Boyd-Board-Level-Cooling-Extruded-5310.pdf +heatsink +0 +0 +0 +Heatsink +Heatsink_AAVID_Extruded_531202B02100G_34.9x12.7mm_H50.8mm +Extruded 5310, dual radial board level heatsink, TO‐202, TO‐220, 50.8mm height, 2.46mm dia. pins, https://info.boydcorp.com/hubfs/Thermal/Air-Cooling/Boyd-Board-Level-Cooling-Extruded-5310.pdf +heatsink +0 +2 +1 +Heatsink +Heatsink_AAVID_Extruded_531202B02500G_34.9x12.7mm_H50.8mm +Extruded 5310, dual radial board level heatsink, TO‐202, TO‐220, 50.8mm height, 2.37mm dia. pins, https://info.boydcorp.com/hubfs/Thermal/Air-Cooling/Boyd-Board-Level-Cooling-Extruded-5310.pdf +heatsink +0 +2 +1 +Heatsink +Heatsink_AAVID_Extruded_531302B02500G_34.9x12.7mm_H63.5mm +Extruded 5310, dual radial board level heatsink, TO‐202, TO‐220, 63.5mm height, 2.37mm dia. pins, https://info.boydcorp.com/hubfs/Thermal/Air-Cooling/Boyd-Board-Level-Cooling-Extruded-5310.pdf +heatsink +0 +2 +1 +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-130_30x12mm_2xFixation2.5mm +Heatsink, StoneCold HS, https://www.tme.eu/Document/da20d9b42617e16f6777c881dc9e3434/hs-130.pdf +heatsink +0 +2 +1 +Heatsink +Heatsink_Stonecold_HS-132_32x14mm_2xFixation1.5mm +Heatsink, StoneCold HS +heatsink +0 +2 +1 +Heatsink +Heatsink_Stonecold_HS-S01_13.21x6.35mm +Heatsink, Stonecold, HS, https://www.tme.eu/Document/f7f93f538b934e0b08e09747396fb95f/hs-s.pdf +heatsink +0 +0 +0 +Heatsink +Heatsink_Stonecold_HS-S02_13.21x9.53mm +Heatsink, Stonecold, HS, https://www.tme.eu/Document/f7f93f538b934e0b08e09747396fb95f/hs-s.pdf +heatsink +0 +0 +0 +Heatsink +Heatsink_Stonecold_HS-S03_13.21x12.7mm +Heatsink, Stonecold, HS, https://www.tme.eu/Document/f7f93f538b934e0b08e09747396fb95f/hs-s.pdf +heatsink +0 +0 +0 +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_APV_ANR3010 +Inductor, APV, ANR3010, 3.0x3.0x1.0mm, (http://en.apvind.com/public/upload/20240407/3375c395e460caa8519b4d637d9113ce.pdf), generated with kicad-footprint-generator gen_inductor.py +wirewound power shielded +0 +2 +2 +Inductor_SMD +L_APV_ANR3012 +Inductor, APV, ANR3012, 3.0x3.0x1.2mm, (http://en.apvind.com/public/upload/20240407/3375c395e460caa8519b4d637d9113ce.pdf), generated with kicad-footprint-generator gen_inductor.py +wirewound power shielded +0 +2 +2 +Inductor_SMD +L_APV_ANR3015 +Inductor, APV, ANR3015, 3.0x3.0x1.5mm, (http://en.apvind.com/public/upload/20240407/3375c395e460caa8519b4d637d9113ce.pdf), generated with kicad-footprint-generator gen_inductor.py +wirewound power shielded +0 +2 +2 +Inductor_SMD +L_APV_ANR4010 +Inductor, APV, ANR4010, 4.0x4.0x1.0mm, (http://en.apvind.com/public/upload/20240407/3375c395e460caa8519b4d637d9113ce.pdf), generated with kicad-footprint-generator gen_inductor.py +wirewound power shielded +0 +2 +2 +Inductor_SMD +L_APV_ANR4012 +Inductor, APV, ANR4012, 4.0x4.0x1.2mm, (http://en.apvind.com/public/upload/20240407/3375c395e460caa8519b4d637d9113ce.pdf), generated with kicad-footprint-generator gen_inductor.py +wirewound power shielded +0 +2 +2 +Inductor_SMD +L_APV_ANR4018 +Inductor, APV, ANR4018, 4.0x4.0x1.8mm, (http://en.apvind.com/public/upload/20240407/3375c395e460caa8519b4d637d9113ce.pdf), generated with kicad-footprint-generator gen_inductor.py +wirewound power shielded +0 +2 +2 +Inductor_SMD +L_APV_ANR4020 +Inductor, APV, ANR4020, 4.0x4.0x2.0mm, (http://en.apvind.com/public/upload/20240407/3375c395e460caa8519b4d637d9113ce.pdf), generated with kicad-footprint-generator gen_inductor.py +wirewound power shielded +0 +2 +2 +Inductor_SMD +L_APV_ANR4026 +Inductor, APV, ANR4026, 4.0x4.0x2.6mm, (http://en.apvind.com/public/upload/20240407/3375c395e460caa8519b4d637d9113ce.pdf), generated with kicad-footprint-generator gen_inductor.py +wirewound power shielded +0 +2 +2 +Inductor_SMD +L_APV_ANR4030 +Inductor, APV, ANR4030, 4.0x4.0x3.0mm, (http://en.apvind.com/public/upload/20240407/3375c395e460caa8519b4d637d9113ce.pdf), generated with kicad-footprint-generator gen_inductor.py +wirewound power shielded +0 +2 +2 +Inductor_SMD +L_APV_ANR5012 +Inductor, APV, ANR5012, 5.0x5.0x1.2mm, (http://en.apvind.com/public/upload/20240407/3375c395e460caa8519b4d637d9113ce.pdf), generated with kicad-footprint-generator gen_inductor.py +wirewound power shielded +0 +2 +2 +Inductor_SMD +L_APV_ANR5020 +Inductor, APV, ANR5020, 5.0x5.0x2.0mm, (http://en.apvind.com/public/upload/20240407/3375c395e460caa8519b4d637d9113ce.pdf), generated with kicad-footprint-generator gen_inductor.py +wirewound power shielded +0 +2 +2 +Inductor_SMD +L_APV_ANR5040 +Inductor, APV, ANR5040, 5.0x5.0x4.0mm, (http://en.apvind.com/public/upload/20240407/3375c395e460caa8519b4d637d9113ce.pdf), generated with kicad-footprint-generator gen_inductor.py +wirewound power shielded +0 +2 +2 +Inductor_SMD +L_APV_ANR5045 +Inductor, APV, ANR5045, 5.0x5.0x4.5mm, (http://en.apvind.com/public/upload/20240407/3375c395e460caa8519b4d637d9113ce.pdf), generated with kicad-footprint-generator gen_inductor.py +wirewound power shielded +0 +2 +2 +Inductor_SMD +L_APV_ANR6020 +Inductor, APV, ANR6020, 6.0x6.0x2.0mm, (http://en.apvind.com/public/upload/20240407/3375c395e460caa8519b4d637d9113ce.pdf), generated with kicad-footprint-generator gen_inductor.py +wirewound power shielded +0 +2 +2 +Inductor_SMD +L_APV_ANR6028 +Inductor, APV, ANR6028, 6.0x6.0x2.8mm, (http://en.apvind.com/public/upload/20240407/3375c395e460caa8519b4d637d9113ce.pdf), generated with kicad-footprint-generator gen_inductor.py +wirewound power shielded +0 +2 +2 +Inductor_SMD +L_APV_ANR6045 +Inductor, APV, ANR6045, 6.0x6.0x4.5mm, (http://en.apvind.com/public/upload/20240407/3375c395e460caa8519b4d637d9113ce.pdf), generated with kicad-footprint-generator gen_inductor.py +wirewound power shielded +0 +2 +2 +Inductor_SMD +L_APV_ANR8040 +Inductor, APV, ANR8040, 8.0x8.0x4.2mm, (http://en.apvind.com/public/upload/20240407/3375c395e460caa8519b4d637d9113ce.pdf), generated with kicad-footprint-generator gen_inductor.py +wirewound power shielded +0 +2 +2 +Inductor_SMD +L_APV_ANR8065 +Inductor, APV, ANR8065, 8.0x8.0x6.5mm, (http://en.apvind.com/public/upload/20240407/3375c395e460caa8519b4d637d9113ce.pdf), generated with kicad-footprint-generator gen_inductor.py +wirewound power shielded +0 +2 +2 +Inductor_SMD +L_APV_ANR252010 +Inductor, APV, ANR252010, 2.5x2.0x1.0mm, (http://en.apvind.com/public/upload/20240407/3375c395e460caa8519b4d637d9113ce.pdf), generated with kicad-footprint-generator gen_inductor.py +wirewound power shielded +0 +2 +2 +Inductor_SMD +L_APV_ANR252012 +Inductor, APV, ANR252012, 2.5x2.0x1.2mm, (http://en.apvind.com/public/upload/20240407/3375c395e460caa8519b4d637d9113ce.pdf), generated with kicad-footprint-generator gen_inductor.py +wirewound power shielded +0 +2 +2 +Inductor_SMD +L_APV_APH0412 +Inductor, APV, APH0412, 4.2x4.2x1.0mm, (http://en.apvind.com/public/upload/20240408/996aafa961154ed753e4983e7eb80fa7.pdf), generated with kicad-footprint-generator gen_inductor.py +molded power shielded +0 +2 +2 +Inductor_SMD +L_APV_APH0420 +Inductor, APV, APH0420, 4.2x4.2x1.8mm, (http://en.apvind.com/public/upload/20240408/996aafa961154ed753e4983e7eb80fa7.pdf), generated with kicad-footprint-generator gen_inductor.py +molded power shielded +0 +2 +2 +Inductor_SMD +L_APV_APH0518 +Inductor, APV, APH0518, 5.2x5.2x1.6mm, (http://en.apvind.com/public/upload/20240408/996aafa961154ed753e4983e7eb80fa7.pdf), generated with kicad-footprint-generator gen_inductor.py +molded power shielded +0 +2 +2 +Inductor_SMD +L_APV_APH0530 +Inductor, APV, APH0530, 5.2x5.2x2.8mm, (http://en.apvind.com/public/upload/20240408/996aafa961154ed753e4983e7eb80fa7.pdf), generated with kicad-footprint-generator gen_inductor.py +molded power shielded +0 +2 +2 +Inductor_SMD +L_APV_APH0615 +Inductor, APV, APH0615, 6.8x6.6x1.3mm, (http://en.apvind.com/public/upload/20240408/996aafa961154ed753e4983e7eb80fa7.pdf), generated with kicad-footprint-generator gen_inductor.py +molded power shielded +0 +2 +2 +Inductor_SMD +L_APV_APH0618 +Inductor, APV, APH0618, 6.8x6.6x1.6mm, (http://en.apvind.com/public/upload/20240408/996aafa961154ed753e4983e7eb80fa7.pdf), generated with kicad-footprint-generator gen_inductor.py +molded power shielded +0 +2 +2 +Inductor_SMD +L_APV_APH0620 +Inductor, APV, APH0620, 6.8x6.6x1.8mm, (http://en.apvind.com/public/upload/20240408/996aafa961154ed753e4983e7eb80fa7.pdf), generated with kicad-footprint-generator gen_inductor.py +molded power shielded +0 +2 +2 +Inductor_SMD +L_APV_APH0624 +Inductor, APV, APH0624, 6.8x6.6x2.2mm, (http://en.apvind.com/public/upload/20240408/996aafa961154ed753e4983e7eb80fa7.pdf), generated with kicad-footprint-generator gen_inductor.py +molded power shielded +0 +2 +2 +Inductor_SMD +L_APV_APH0630 +Inductor, APV, APH0630, 6.8x6.6x2.8mm, (http://en.apvind.com/public/upload/20240408/996aafa961154ed753e4983e7eb80fa7.pdf), generated with kicad-footprint-generator gen_inductor.py +molded power shielded +0 +2 +2 +Inductor_SMD +L_APV_APH0640 +Inductor, APV, APH0640, 6.8x6.6x3.8mm, (http://en.apvind.com/public/upload/20240408/996aafa961154ed753e4983e7eb80fa7.pdf), generated with kicad-footprint-generator gen_inductor.py +molded power shielded +0 +2 +2 +Inductor_SMD +L_APV_APH0650 +Inductor, APV, APH0650, 6.8x6.6x4.8mm, (http://en.apvind.com/public/upload/20240408/996aafa961154ed753e4983e7eb80fa7.pdf), generated with kicad-footprint-generator gen_inductor.py +molded power shielded +0 +2 +2 +Inductor_SMD +L_APV_APH0840 +Inductor, APV, APH0840, 8.6x8.0x3.8mm, (http://en.apvind.com/public/upload/20240408/996aafa961154ed753e4983e7eb80fa7.pdf), generated with kicad-footprint-generator gen_inductor.py +molded power shielded +0 +2 +2 +Inductor_SMD +L_APV_APH0850 +Inductor, APV, APH0850, 8.6x8.0x4.8mm, (http://en.apvind.com/public/upload/20240408/996aafa961154ed753e4983e7eb80fa7.pdf), generated with kicad-footprint-generator gen_inductor.py +molded power shielded +0 +2 +2 +Inductor_SMD +L_APV_APH1030 +Inductor, APV, APH1030, 10.8x10.0x2.8mm, (http://en.apvind.com/public/upload/20240408/996aafa961154ed753e4983e7eb80fa7.pdf), generated with kicad-footprint-generator gen_inductor.py +molded power shielded +0 +2 +2 +Inductor_SMD +L_APV_APH1040 +Inductor, APV, APH1040, 10.8x10.0x3.8mm, (http://en.apvind.com/public/upload/20240408/996aafa961154ed753e4983e7eb80fa7.pdf), generated with kicad-footprint-generator gen_inductor.py +molded power shielded +0 +2 +2 +Inductor_SMD +L_APV_APH1050 +Inductor, APV, APH1050, 10.8x10.0x4.8mm, (http://en.apvind.com/public/upload/20240408/996aafa961154ed753e4983e7eb80fa7.pdf), generated with kicad-footprint-generator gen_inductor.py +molded power shielded +0 +2 +2 +Inductor_SMD +L_APV_APH1240 +Inductor, APV, APH1240, 13.25x12.8x3.8mm, (http://en.apvind.com/public/upload/20240408/996aafa961154ed753e4983e7eb80fa7.pdf), generated with kicad-footprint-generator gen_inductor.py +molded power shielded +0 +2 +2 +Inductor_SMD +L_APV_APH1250 +Inductor, APV, APH1250, 13.25x12.8x4.8mm, (http://en.apvind.com/public/upload/20240408/996aafa961154ed753e4983e7eb80fa7.pdf), generated with kicad-footprint-generator gen_inductor.py +molded power shielded +0 +2 +2 +Inductor_SMD +L_APV_APH1260 +Inductor, APV, APH1260, 13.25x12.8x5.8mm, (http://en.apvind.com/public/upload/20240408/996aafa961154ed753e4983e7eb80fa7.pdf), generated with kicad-footprint-generator gen_inductor.py +molded power shielded +0 +2 +2 +Inductor_SMD +L_APV_APH1265 +Inductor, APV, APH1265, 13.25x12.8x6.5mm, (http://en.apvind.com/public/upload/20240408/996aafa961154ed753e4983e7eb80fa7.pdf), generated with kicad-footprint-generator gen_inductor.py +molded power shielded +0 +2 +2 +Inductor_SMD +L_APV_APH1770 +Inductor, APV, APH1770, 17.45x17.15x6.7mm, (http://en.apvind.com/public/upload/20240408/996aafa961154ed753e4983e7eb80fa7.pdf), generated with kicad-footprint-generator gen_inductor.py +molded power shielded +0 +2 +2 +Inductor_SMD +L_APV_APH2213 +Inductor, APV, APH2213, 23.3x22.0x12.6mm, (http://en.apvind.com/public/upload/20240408/996aafa961154ed753e4983e7eb80fa7.pdf), generated with kicad-footprint-generator gen_inductor.py +molded power shielded +0 +2 +2 +Inductor_SMD +L_AVX_LMLP07A7 +Inductor, AVX, LMLP07A7, LMLP series, Style D, 7.3x6.6x3.0mm, (https://datasheets.avx.com/LMLPD.pdf), generated with kicad-footprint-generator gen_inductor.py +AVX-Kyocera power shielded low-profile +0 +2 +2 +Inductor_SMD +L_Abracon_ASPI-0425 +Inductor, Abracon, ASPI-0425, 4.0x4.0x2.5mm, (https://abracon.com/Magnetics/new/ASPI-0425.pdf), generated with kicad-footprint-generator gen_inductor.py +power shielded low-profile +0 +2 +2 +Inductor_SMD +L_Abracon_ASPI-0630LR +smd shielded power inductor https://abracon.com/Magnetics/power/ASPI-0630LR.pdf +inductor abracon smd shielded +0 +2 +2 +Inductor_SMD +L_Abracon_ASPI-3012S +smd shielded power inductor http://www.abracon.com/Magnetics/power/ASPI-3012S.pdf +inductor abracon smd shielded +0 +2 +2 +Inductor_SMD +L_Abracon_ASPI-4030S +smd shielded power inductor 4x4x3mm, Abracon ASPI-4030S, https://abracon.com/Magnetics/power/ASPI-4030S.pdf +inductor abracon smd shielded +0 +2 +2 +Inductor_SMD +L_Abracon_ASPIAIG-F4020 +Inductor, Abracon, ASPIAIG-F4020, 4.4x4.4x1.9mm, (https://abracon.com/Magnetics/power/ASPIAIG-F4020.pdf), generated with kicad-footprint-generator gen_inductor.py +power 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_SDR0604 +SMD Power Inductor, https://www.bourns.com/pdfs/SDR0604.pdf +SMD Power Inductor SDR0604 +0 +2 +2 +Inductor_SMD +L_Bourns_SDR1806 +https://www.bourns.com/docs/Product-Datasheets/SDR1806.pdf +Bourns SDR1806 +0 +2 +2 +Inductor_SMD +L_Bourns_SRF1260 +Inductor, Bourns, SRF1260, 12.5mmx12.5mm (Script generated with StandardBox.py) (https://www.bourns.com/docs/Product-Datasheets/SRF1260.pdf) +Inductor Bourns_SRF1260 +0 +4 +4 +Inductor_SMD +L_Bourns_SRN6045TA +http://www.bourns.com/docs/product-datasheets/srn6045ta.pdf +Semi-shielded Power Inductor +0 +2 +2 +Inductor_SMD +L_Bourns_SRN8040TA +https://www.bourns.com/docs/product-datasheets/srn8040ta.pdf +Inductor +0 +2 +2 +Inductor_SMD +L_Bourns_SRP1038C_10.0x10.0mm +Bourns SRP1038C series SMD inductor http://www.bourns.com/docs/Product-Datasheets/SRP1038C.pdf +Bourns SRP1038C SMD inductor +0 +2 +2 +Inductor_SMD +L_Bourns_SRP1050WA +Inductor, Bourns, SRP1050WA, 11.0x10.0x5.1mm, (https://www.bourns.com/docs/product-datasheets/SRP1050WA.pdf), generated with kicad-footprint-generator gen_inductor.py +power shielded +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.7x5.2x2.8mm, (https://www.bourns.com/data/global/pdfs/SRP5030T.pdf), generated with kicad-footprint-generator gen_inductor.py +power shielded +0 +2 +2 +Inductor_SMD +L_Bourns_SRP6060FA +Inductor, Bourns, SRP6060FA, 6.4x6.6x5.8mm, (https://www.bourns.com/docs/Product-Datasheets/SRP6060FA.pdf), generated with kicad-footprint-generator gen_inductor.py +power shielded +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_Bourns_SRU5016_5.2x5.2mm +Bourns SRU5016 series shielded SMD power inductor, 1.6mm height https://www.bourns.com/docs/product-datasheets/sru5016.pdf +Bourns SRU5016 SMD inductor +0 +4 +3 +Inductor_SMD +L_Cenker_CKCS3012 +Inductor, Cenker, CKCS3012, 3.0x3.0x1.3mm, (https://www.ckcoil.com/file/upload/spae532/2023-07/11/202307110955366446.pdf), generated with kicad-footprint-generator gen_inductor.py +ckcs +0 +2 +2 +Inductor_SMD +L_Cenker_CKCS3015 +Inductor, Cenker, CKCS3015, 3.0x3.0x1.7mm, (https://www.ckcoil.com/file/upload/spae532/2023-07/11/202307110955366446.pdf), generated with kicad-footprint-generator gen_inductor.py +ckcs +0 +2 +2 +Inductor_SMD +L_Cenker_CKCS4018 +Inductor, Cenker, CKCS4018, 4.0x4.0x1.8mm, (https://www.ckcoil.com/file/upload/spae532/2023-07/11/202307110955366446.pdf), generated with kicad-footprint-generator gen_inductor.py +ckcs +0 +2 +2 +Inductor_SMD +L_Cenker_CKCS4020 +Inductor, Cenker, CKCS4020, 4.0x4.0x2.0mm, (https://www.ckcoil.com/file/upload/spae532/2023-07/11/202307110955366446.pdf), generated with kicad-footprint-generator gen_inductor.py +ckcs +0 +2 +2 +Inductor_SMD +L_Cenker_CKCS4030 +Inductor, Cenker, CKCS4030, 4.0x4.0x3.0mm, (https://www.ckcoil.com/file/upload/spae532/2023-07/11/202307110955366446.pdf), generated with kicad-footprint-generator gen_inductor.py +ckcs +0 +2 +2 +Inductor_SMD +L_Cenker_CKCS5020 +Inductor, Cenker, CKCS5020, 5.0x5.0x2.1mm, (https://www.ckcoil.com/file/upload/spae532/2023-07/11/202307110955366446.pdf), generated with kicad-footprint-generator gen_inductor.py +ckcs +0 +2 +2 +Inductor_SMD +L_Cenker_CKCS5040 +Inductor, Cenker, CKCS5040, 5.0x5.0x4.0mm, (https://www.ckcoil.com/file/upload/spae532/2023-07/11/202307110955366446.pdf), generated with kicad-footprint-generator gen_inductor.py +ckcs +0 +2 +2 +Inductor_SMD +L_Cenker_CKCS6020 +Inductor, Cenker, CKCS6020, 6.0x6.0x2.1mm, (https://www.ckcoil.com/file/upload/spae532/2023-07/11/202307110955366446.pdf), generated with kicad-footprint-generator gen_inductor.py +ckcs +0 +2 +2 +Inductor_SMD +L_Cenker_CKCS6028 +Inductor, Cenker, CKCS6028, 6.0x6.0x3.0mm, (https://www.ckcoil.com/file/upload/spae532/2023-07/11/202307110955366446.pdf), generated with kicad-footprint-generator gen_inductor.py +ckcs +0 +2 +2 +Inductor_SMD +L_Cenker_CKCS6045 +Inductor, Cenker, CKCS6045, 6.0x6.0x4.7mm, (https://www.ckcoil.com/file/upload/spae532/2023-07/11/202307110955366446.pdf), generated with kicad-footprint-generator gen_inductor.py +ckcs +0 +2 +2 +Inductor_SMD +L_Cenker_CKCS8040 +Inductor, Cenker, CKCS8040, 8.0x8.0x4.2mm, (https://www.ckcoil.com/file/upload/spae532/2023-07/11/202307110955366446.pdf), generated with kicad-footprint-generator gen_inductor.py +ckcs +0 +2 +2 +Inductor_SMD +L_Cenker_CKCS8060 +Inductor, Cenker, CKCS8060, 8.0x8.0x6.2mm, (https://www.ckcoil.com/file/upload/spae532/2023-07/11/202307110955366446.pdf), generated with kicad-footprint-generator gen_inductor.py +ckcs +0 +2 +2 +Inductor_SMD +L_Cenker_CKCS8080 +Inductor, Cenker, CKCS8080, 8.0x8.0x8.0mm, (https://www.ckcoil.com/file/upload/spae532/2023-07/11/202307110955366446.pdf), generated with kicad-footprint-generator gen_inductor.py +ckcs +0 +2 +2 +Inductor_SMD +L_Cenker_CKCS201610 +Inductor, Cenker, CKCS201610, 2.0x1.6x1.05mm, (https://www.ckcoil.com/file/upload/spae532/2023-07/11/202307110955366446.pdf), generated with kicad-footprint-generator gen_inductor.py +ckcs +0 +2 +2 +Inductor_SMD +L_Cenker_CKCS252010 +Inductor, Cenker, CKCS252010, 2.5x2.0x1.05mm, (https://www.ckcoil.com/file/upload/spae532/2023-07/11/202307110955366446.pdf), generated with kicad-footprint-generator gen_inductor.py +ckcs +0 +2 +2 +Inductor_SMD +L_Cenker_CKCS252012 +Inductor, Cenker, CKCS252012, 2.5x2.0x1.25mm, (https://www.ckcoil.com/file/upload/spae532/2023-07/11/202307110955366446.pdf), generated with kicad-footprint-generator gen_inductor.py +ckcs +0 +2 +2 +Inductor_SMD +L_Changjiang_FNR3010S +Inductor, Changjiang, FNR3010S, 3.0x3.0x1.0mm, (https://datasheet.lcsc.com/lcsc/1806131217_cjiang-Changjiang-Microelectronics-Tech-FNR5040S3R3NT_C167960.pdf), generated with kicad-footprint-generator gen_inductor.py +wirewound power shielded +0 +2 +2 +Inductor_SMD +L_Changjiang_FNR3012S +Inductor, Changjiang, FNR3012S, 3.0x3.0x1.2mm, (https://datasheet.lcsc.com/lcsc/1806131217_cjiang-Changjiang-Microelectronics-Tech-FNR5040S3R3NT_C167960.pdf), generated with kicad-footprint-generator gen_inductor.py +wirewound power shielded +0 +2 +2 +Inductor_SMD +L_Changjiang_FNR3015S +Inductor, Changjiang, FNR3015S, 3.0x3.0x1.5mm, (https://datasheet.lcsc.com/lcsc/1806131217_cjiang-Changjiang-Microelectronics-Tech-FNR5040S3R3NT_C167960.pdf), generated with kicad-footprint-generator gen_inductor.py +wirewound power shielded +0 +2 +2 +Inductor_SMD +L_Changjiang_FNR3021S +Inductor, Changjiang, FNR3021S, 3.0x3.0x2.35mm, (https://datasheet.lcsc.com/lcsc/1806131217_cjiang-Changjiang-Microelectronics-Tech-FNR5040S3R3NT_C167960.pdf), generated with kicad-footprint-generator gen_inductor.py +wirewound power shielded +0 +2 +2 +Inductor_SMD +L_Changjiang_FNR4010S +Inductor, Changjiang, FNR4010S, 4.0x4.0x1.0mm, (https://datasheet.lcsc.com/lcsc/1806131217_cjiang-Changjiang-Microelectronics-Tech-FNR5040S3R3NT_C167960.pdf), generated with kicad-footprint-generator gen_inductor.py +wirewound power shielded +0 +2 +2 +Inductor_SMD +L_Changjiang_FNR4012S +Inductor, Changjiang, FNR4012S, 4.0x4.0x1.2mm, (https://datasheet.lcsc.com/lcsc/1806131217_cjiang-Changjiang-Microelectronics-Tech-FNR5040S3R3NT_C167960.pdf), generated with kicad-footprint-generator gen_inductor.py +wirewound power shielded +0 +2 +2 +Inductor_SMD +L_Changjiang_FNR4015S +Inductor, Changjiang, FNR4015S, 4.0x4.0x1.65mm, (https://datasheet.lcsc.com/lcsc/1806131217_cjiang-Changjiang-Microelectronics-Tech-FNR5040S3R3NT_C167960.pdf), generated with kicad-footprint-generator gen_inductor.py +wirewound power shielded +0 +2 +2 +Inductor_SMD +L_Changjiang_FNR4018S +Inductor, Changjiang, FNR4018S, 4.0x4.0x1.8mm, (https://datasheet.lcsc.com/lcsc/1806131217_cjiang-Changjiang-Microelectronics-Tech-FNR5040S3R3NT_C167960.pdf), generated with kicad-footprint-generator gen_inductor.py +wirewound power shielded +0 +2 +2 +Inductor_SMD +L_Changjiang_FNR4020S +Inductor, Changjiang, FNR4020S, 4.0x4.0x2.0mm, (https://datasheet.lcsc.com/lcsc/1806131217_cjiang-Changjiang-Microelectronics-Tech-FNR5040S3R3NT_C167960.pdf), generated with kicad-footprint-generator gen_inductor.py +wirewound power shielded +0 +2 +2 +Inductor_SMD +L_Changjiang_FNR4026S +Inductor, Changjiang, FNR4026S, 4.0x4.0x2.6mm, (https://datasheet.lcsc.com/lcsc/1806131217_cjiang-Changjiang-Microelectronics-Tech-FNR5040S3R3NT_C167960.pdf), generated with kicad-footprint-generator gen_inductor.py +wirewound power shielded +0 +2 +2 +Inductor_SMD +L_Changjiang_FNR4030S +Inductor, Changjiang, FNR4030S, 4.0x4.0x3.0mm, (https://datasheet.lcsc.com/lcsc/1806131217_cjiang-Changjiang-Microelectronics-Tech-FNR5040S3R3NT_C167960.pdf), generated with kicad-footprint-generator gen_inductor.py +wirewound power shielded +0 +2 +2 +Inductor_SMD +L_Changjiang_FNR5012S +Inductor, Changjiang, FNR5012S, 5.0x5.0x1.2mm, (https://datasheet.lcsc.com/lcsc/1806131217_cjiang-Changjiang-Microelectronics-Tech-FNR5040S3R3NT_C167960.pdf), generated with kicad-footprint-generator gen_inductor.py +wirewound power shielded +0 +2 +2 +Inductor_SMD +L_Changjiang_FNR5015S +Inductor, Changjiang, FNR5015S, 5.0x5.0x1.5mm, (https://datasheet.lcsc.com/lcsc/1806131217_cjiang-Changjiang-Microelectronics-Tech-FNR5040S3R3NT_C167960.pdf), generated with kicad-footprint-generator gen_inductor.py +wirewound power shielded +0 +2 +2 +Inductor_SMD +L_Changjiang_FNR5020S +Inductor, Changjiang, FNR5020S, 5.0x5.0x2.0mm, (https://datasheet.lcsc.com/lcsc/1806131217_cjiang-Changjiang-Microelectronics-Tech-FNR5040S3R3NT_C167960.pdf), generated with kicad-footprint-generator gen_inductor.py +wirewound power shielded +0 +2 +2 +Inductor_SMD +L_Changjiang_FNR5030S +Inductor, Changjiang, FNR5030S, 5.0x5.0x3.0mm, (https://datasheet.lcsc.com/lcsc/1806131217_cjiang-Changjiang-Microelectronics-Tech-FNR5040S3R3NT_C167960.pdf), generated with kicad-footprint-generator gen_inductor.py +wirewound power shielded +0 +2 +2 +Inductor_SMD +L_Changjiang_FNR5040S +Inductor, Changjiang, FNR5040S, 5.0x5.0x4.0mm, (https://datasheet.lcsc.com/lcsc/1806131217_cjiang-Changjiang-Microelectronics-Tech-FNR5040S3R3NT_C167960.pdf), generated with kicad-footprint-generator gen_inductor.py +wirewound power shielded +0 +2 +2 +Inductor_SMD +L_Changjiang_FNR5045S +Inductor, Changjiang, FNR5045S, 5.0x5.0x4.5mm, (https://datasheet.lcsc.com/lcsc/1806131217_cjiang-Changjiang-Microelectronics-Tech-FNR5040S3R3NT_C167960.pdf), generated with kicad-footprint-generator gen_inductor.py +wirewound power shielded +0 +2 +2 +Inductor_SMD +L_Changjiang_FNR6020S +Inductor, Changjiang, FNR6020S, 6.0x6.0x2.0mm, (https://datasheet.lcsc.com/lcsc/1806131217_cjiang-Changjiang-Microelectronics-Tech-FNR5040S3R3NT_C167960.pdf), generated with kicad-footprint-generator gen_inductor.py +wirewound power shielded +0 +2 +2 +Inductor_SMD +L_Changjiang_FNR6028S +Inductor, Changjiang, FNR6028S, 6.0x6.0x2.8mm, (https://datasheet.lcsc.com/lcsc/1806131217_cjiang-Changjiang-Microelectronics-Tech-FNR5040S3R3NT_C167960.pdf), generated with kicad-footprint-generator gen_inductor.py +wirewound power shielded +0 +2 +2 +Inductor_SMD +L_Changjiang_FNR6040S +Inductor, Changjiang, FNR6040S, 6.0x6.0x4.0mm, (https://datasheet.lcsc.com/lcsc/1806131217_cjiang-Changjiang-Microelectronics-Tech-FNR5040S3R3NT_C167960.pdf), generated with kicad-footprint-generator gen_inductor.py +wirewound power shielded +0 +2 +2 +Inductor_SMD +L_Changjiang_FNR6045S +Inductor, Changjiang, FNR6045S, 6.0x6.0x4.5mm, (https://datasheet.lcsc.com/lcsc/1806131217_cjiang-Changjiang-Microelectronics-Tech-FNR5040S3R3NT_C167960.pdf), generated with kicad-footprint-generator gen_inductor.py +wirewound power shielded +0 +2 +2 +Inductor_SMD +L_Changjiang_FNR8040S +Inductor, Changjiang, FNR8040S, 8.0x8.0x4.0mm, (https://datasheet.lcsc.com/lcsc/1806131217_cjiang-Changjiang-Microelectronics-Tech-FNR5040S3R3NT_C167960.pdf), generated with kicad-footprint-generator gen_inductor.py +wirewound power shielded +0 +2 +2 +Inductor_SMD +L_Changjiang_FNR8050S +Inductor, Changjiang, FNR8050S, 8.0x8.0x5.0mm, (https://datasheet.lcsc.com/lcsc/1806131217_cjiang-Changjiang-Microelectronics-Tech-FNR5040S3R3NT_C167960.pdf), generated with kicad-footprint-generator gen_inductor.py +wirewound power shielded +0 +2 +2 +Inductor_SMD +L_Changjiang_FNR8065S +Inductor, Changjiang, FNR8065S, 8.0x8.0x6.5mm, (https://datasheet.lcsc.com/lcsc/1806131217_cjiang-Changjiang-Microelectronics-Tech-FNR5040S3R3NT_C167960.pdf), generated with kicad-footprint-generator gen_inductor.py +wirewound power shielded +0 +2 +2 +Inductor_SMD +L_Changjiang_FNR252010S +Inductor, Changjiang, FNR252010S, 2.5x2.0x1.0mm, (https://datasheet.lcsc.com/lcsc/1806131217_cjiang-Changjiang-Microelectronics-Tech-FNR5040S3R3NT_C167960.pdf), generated with kicad-footprint-generator gen_inductor.py +wirewound power shielded +0 +2 +2 +Inductor_SMD +L_Changjiang_FNR252012S +Inductor, Changjiang, FNR252012S, 2.5x2.0x1.2mm, (https://datasheet.lcsc.com/lcsc/1806131217_cjiang-Changjiang-Microelectronics-Tech-FNR5040S3R3NT_C167960.pdf), generated with kicad-footprint-generator gen_inductor.py +wirewound power shielded +0 +2 +2 +Inductor_SMD +L_Changjiang_FTC100765D +Inductor, Changjiang, FTC100765D, 1.0x0.7x0.65mm, (http://www.cjiang.com.cn/Pr_download_id_1117.html), generated with kicad-footprint-generator gen_inductor.py +cjiang ftc molded power shielded +0 +2 +2 +Inductor_SMD +L_Changjiang_FTC121065S +Inductor, Changjiang, FTC121065S, 1.2x1.0x0.65mm, (http://www.cjiang.com.cn/Pr_download_id_1117.html), generated with kicad-footprint-generator gen_inductor.py +cjiang ftc molded power shielded +0 +2 +2 +Inductor_SMD +L_Changjiang_FTC141207S +Inductor, Changjiang, FTC141207S, 1.4x1.2x0.7mm, (http://www.cjiang.com.cn/Pr_download_id_1117.html), generated with kicad-footprint-generator gen_inductor.py +cjiang ftc molded power shielded +0 +2 +2 +Inductor_SMD +L_Changjiang_FTC141208S +Inductor, Changjiang, FTC141208S, 1.4x1.2x0.8mm, (http://www.cjiang.com.cn/Pr_download_id_1117.html), generated with kicad-footprint-generator gen_inductor.py +cjiang ftc molded power shielded +0 +2 +2 +Inductor_SMD +L_Changjiang_FTC141265S +Inductor, Changjiang, FTC141265S, 1.4x1.2x0.65mm, (http://www.cjiang.com.cn/Pr_download_id_1117.html), generated with kicad-footprint-generator gen_inductor.py +cjiang ftc molded power shielded +0 +2 +2 +Inductor_SMD +L_Changjiang_FTC160808S +Inductor, Changjiang, FTC160808S, 1.6x0.8x0.8mm, (http://www.cjiang.com.cn/Pr_download_id_1117.html), generated with kicad-footprint-generator gen_inductor.py +cjiang ftc molded power shielded +0 +2 +2 +Inductor_SMD +L_Changjiang_FTC160865S +Inductor, Changjiang, FTC160865S, 1.6x0.8x0.65mm, (http://www.cjiang.com.cn/Pr_download_id_1117.html), generated with kicad-footprint-generator gen_inductor.py +cjiang ftc molded power shielded +0 +2 +2 +Inductor_SMD +L_Changjiang_FTC201208S +Inductor, Changjiang, FTC201208S, 2.0x1.2x0.8mm, (http://www.cjiang.com.cn/Pr_download_id_1117.html), generated with kicad-footprint-generator gen_inductor.py +cjiang ftc molded power shielded +0 +2 +2 +Inductor_SMD +L_Changjiang_FTC201210S +Inductor, Changjiang, FTC201210S, 2.0x1.2x1.0mm, (http://www.cjiang.com.cn/Pr_download_id_1117.html), generated with kicad-footprint-generator gen_inductor.py +cjiang ftc molded power shielded +0 +2 +2 +Inductor_SMD +L_Changjiang_FTC201212S +Inductor, Changjiang, FTC201212S, 2.0x1.2x1.2mm, (http://www.cjiang.com.cn/Pr_download_id_1117.html), generated with kicad-footprint-generator gen_inductor.py +cjiang ftc molded power shielded +0 +2 +2 +Inductor_SMD +L_Changjiang_FTC201265S +Inductor, Changjiang, FTC201265S, 2.0x1.2x0.65mm, (http://www.cjiang.com.cn/Pr_download_id_1117.html), generated with kicad-footprint-generator gen_inductor.py +cjiang ftc molded power shielded +0 +2 +2 +Inductor_SMD +L_Changjiang_FTC201607S +Inductor, Changjiang, FTC201607S, 2.0x1.6x0.7mm, (http://www.cjiang.com.cn/Pr_download_id_1117.html), generated with kicad-footprint-generator gen_inductor.py +cjiang ftc molded power shielded +0 +2 +2 +Inductor_SMD +L_Changjiang_FTC201608S +Inductor, Changjiang, FTC201608S, 2.0x1.6x0.8mm, (http://www.cjiang.com.cn/Pr_download_id_1117.html), generated with kicad-footprint-generator gen_inductor.py +cjiang ftc molded power shielded +0 +2 +2 +Inductor_SMD +L_Changjiang_FTC201610D +Inductor, Changjiang, FTC201610D, 2.0x1.6x1.0mm, (http://www.cjiang.com.cn/Pr_download_id_1117.html), generated with kicad-footprint-generator gen_inductor.py +cjiang ftc molded power shielded +0 +2 +2 +Inductor_SMD +L_Changjiang_FTC201610S +Inductor, Changjiang, FTC201610S, 2.0x1.6x1.0mm, (http://www.cjiang.com.cn/Pr_download_id_1117.html), generated with kicad-footprint-generator gen_inductor.py +cjiang ftc molded power shielded +0 +2 +2 +Inductor_SMD +L_Changjiang_FTC201612S +Inductor, Changjiang, FTC201612S, 2.0x1.6x1.2mm, (http://www.cjiang.com.cn/Pr_download_id_1117.html), generated with kicad-footprint-generator gen_inductor.py +cjiang ftc molded power shielded +0 +2 +2 +Inductor_SMD +L_Changjiang_FTC201655S +Inductor, Changjiang, FTC201655S, 2.0x1.6x0.55mm, (http://www.cjiang.com.cn/Pr_download_id_1117.html), generated with kicad-footprint-generator gen_inductor.py +cjiang ftc molded power shielded +0 +2 +2 +Inductor_SMD +L_Changjiang_FTC201665S +Inductor, Changjiang, FTC201665S, 2.0x1.6x0.65mm, (http://www.cjiang.com.cn/Pr_download_id_1117.html), generated with kicad-footprint-generator gen_inductor.py +cjiang ftc molded power shielded +0 +2 +2 +Inductor_SMD +L_Changjiang_FTC252008S +Inductor, Changjiang, FTC252008S, 2.5x2.0x0.8mm, (http://www.cjiang.com.cn/Pr_download_id_1117.html), generated with kicad-footprint-generator gen_inductor.py +cjiang ftc molded power shielded +0 +2 +2 +Inductor_SMD +L_Changjiang_FTC252010S +Inductor, Changjiang, FTC252010S, 2.5x2.0x1.0mm, (http://www.cjiang.com.cn/Pr_download_id_1117.html), generated with kicad-footprint-generator gen_inductor.py +cjiang ftc molded power shielded +0 +2 +2 +Inductor_SMD +L_Changjiang_FTC252012S +Inductor, Changjiang, FTC252012S, 2.5x2.0x1.2mm, (http://www.cjiang.com.cn/Pr_download_id_1117.html), generated with kicad-footprint-generator gen_inductor.py +cjiang ftc molded power shielded +0 +2 +2 +Inductor_SMD +L_Changjiang_FTC252075S +Inductor, Changjiang, FTC252075S, 2.5x2.0x0.75mm, (http://www.cjiang.com.cn/Pr_download_id_1117.html), generated with kicad-footprint-generator gen_inductor.py +cjiang ftc molded power shielded +0 +2 +2 +Inductor_SMD +L_Changjiang_FTC303010D +Inductor, Changjiang, FTC303010D, 3.0x3.0x1.0mm, (http://www.cjiang.com.cn/Pr_download_id_1117.html), generated with kicad-footprint-generator gen_inductor.py +cjiang ftc molded power shielded +0 +2 +2 +Inductor_SMD +L_Changjiang_FTC303012D +Inductor, Changjiang, FTC303012D, 3.0x3.0x1.2mm, (http://www.cjiang.com.cn/Pr_download_id_1117.html), generated with kicad-footprint-generator gen_inductor.py +cjiang ftc molded power shielded +0 +2 +2 +Inductor_SMD +L_Changjiang_FTC303015D +Inductor, Changjiang, FTC303015D, 3.0x3.0x1.5mm, (http://www.cjiang.com.cn/Pr_download_id_1117.html), generated with kicad-footprint-generator gen_inductor.py +cjiang ftc molded power shielded +0 +2 +2 +Inductor_SMD +L_Changjiang_FTC303018D +Inductor, Changjiang, FTC303018D, 3.0x3.0x1.8mm, (http://www.cjiang.com.cn/Pr_download_id_1117.html), generated with kicad-footprint-generator gen_inductor.py +cjiang ftc molded power shielded +0 +2 +2 +Inductor_SMD +L_Changjiang_FTC303020D +Inductor, Changjiang, FTC303020D, 3.0x3.0x2.0mm, (http://www.cjiang.com.cn/Pr_download_id_1117.html), generated with kicad-footprint-generator gen_inductor.py +cjiang ftc molded power shielded +0 +2 +2 +Inductor_SMD +L_Changjiang_FTC322510S +Inductor, Changjiang, FTC322510S, 3.2x2.5x1.0mm, (http://www.cjiang.com.cn/Pr_download_id_1117.html), generated with kicad-footprint-generator gen_inductor.py +cjiang ftc molded power shielded +0 +2 +2 +Inductor_SMD +L_Changjiang_FTC322512S +Inductor, Changjiang, FTC322512S, 3.2x2.5x1.2mm, (http://www.cjiang.com.cn/Pr_download_id_1117.html), generated with kicad-footprint-generator gen_inductor.py +cjiang ftc molded power shielded +0 +2 +2 +Inductor_SMD +L_Changjiang_FTC322520S +Inductor, Changjiang, FTC322520S, 3.2x2.5x2.0mm, (http://www.cjiang.com.cn/Pr_download_id_1117.html), generated with kicad-footprint-generator gen_inductor.py +cjiang ftc molded power shielded +0 +2 +2 +Inductor_SMD +L_Changjiang_FTC404010S +Inductor, Changjiang, FTC404010S, 4.1x4.1x1.0mm, (http://www.cjiang.com.cn/Pr_download_id_1117.html), generated with kicad-footprint-generator gen_inductor.py +cjiang ftc molded power shielded +0 +2 +2 +Inductor_SMD +L_Changjiang_FTC404012S +Inductor, Changjiang, FTC404012S, 4.1x4.1x1.2mm, (http://www.cjiang.com.cn/Pr_download_id_1117.html), generated with kicad-footprint-generator gen_inductor.py +cjiang ftc molded power shielded +0 +2 +2 +Inductor_SMD +L_Changjiang_FTC404020S +Inductor, Changjiang, FTC404020S, 4.1x4.1x2.0mm, (http://www.cjiang.com.cn/Pr_download_id_1117.html), generated with kicad-footprint-generator gen_inductor.py +cjiang ftc molded power shielded +0 +2 +2 +Inductor_SMD +L_Changjiang_FTC404030S +Inductor, Changjiang, FTC404030S, 4.1x4.1x3.0mm, (http://www.cjiang.com.cn/Pr_download_id_1117.html), generated with kicad-footprint-generator gen_inductor.py +cjiang ftc molded power shielded +0 +2 +2 +Inductor_SMD +L_Changjiang_FXL0412 +Inductor, Changjiang, FXL0412, 3.85x4.2x1.0mm, (https://www.lcsc.com/datasheet/lcsc_datasheet_2404260921_cjiang--Changjiang-Microelectronics-Tech-FXL0420-2R2-M_C167206.pdf), generated with kicad-footprint-generator gen_inductor.py +power shielded cjiang fxl +0 +2 +2 +Inductor_SMD +L_Changjiang_FXL0420 +Inductor, Changjiang, FXL0420, 3.85x4.2x1.8mm, (https://www.lcsc.com/datasheet/lcsc_datasheet_2404260921_cjiang--Changjiang-Microelectronics-Tech-FXL0420-2R2-M_C167206.pdf), generated with kicad-footprint-generator gen_inductor.py +power shielded cjiang fxl +0 +2 +2 +Inductor_SMD +L_Changjiang_FXL0518 +Inductor, Changjiang, FXL0518, 4.85x5.2x1.6mm, (https://www.lcsc.com/datasheet/lcsc_datasheet_2404260921_cjiang--Changjiang-Microelectronics-Tech-FXL0420-2R2-M_C167206.pdf), generated with kicad-footprint-generator gen_inductor.py +power shielded cjiang fxl +0 +2 +2 +Inductor_SMD +L_Changjiang_FXL0530 +Inductor, Changjiang, FXL0530, 4.85x5.2x2.8mm, (https://www.lcsc.com/datasheet/lcsc_datasheet_2404260921_cjiang--Changjiang-Microelectronics-Tech-FXL0420-2R2-M_C167206.pdf), generated with kicad-footprint-generator gen_inductor.py +power shielded cjiang fxl +0 +2 +2 +Inductor_SMD +L_Changjiang_FXL0615 +Inductor, Changjiang, FXL0615, 6.45x6.6x1.3mm, (https://www.lcsc.com/datasheet/lcsc_datasheet_2404260921_cjiang--Changjiang-Microelectronics-Tech-FXL0420-2R2-M_C167206.pdf), generated with kicad-footprint-generator gen_inductor.py +power shielded cjiang fxl +0 +2 +2 +Inductor_SMD +L_Changjiang_FXL0618 +Inductor, Changjiang, FXL0618, 6.45x6.6x1.6mm, (https://www.lcsc.com/datasheet/lcsc_datasheet_2404260921_cjiang--Changjiang-Microelectronics-Tech-FXL0420-2R2-M_C167206.pdf), generated with kicad-footprint-generator gen_inductor.py +power shielded cjiang fxl +0 +2 +2 +Inductor_SMD +L_Changjiang_FXL0624 +Inductor, Changjiang, FXL0624, 6.45x6.6x2.2mm, (https://www.lcsc.com/datasheet/lcsc_datasheet_2404260921_cjiang--Changjiang-Microelectronics-Tech-FXL0420-2R2-M_C167206.pdf), generated with kicad-footprint-generator gen_inductor.py +power shielded cjiang fxl +0 +2 +2 +Inductor_SMD +L_Changjiang_FXL0630 +Inductor, Changjiang, FXL0630, 6.45x6.6x2.8mm, (https://www.lcsc.com/datasheet/lcsc_datasheet_2404260921_cjiang--Changjiang-Microelectronics-Tech-FXL0420-2R2-M_C167206.pdf), generated with kicad-footprint-generator gen_inductor.py +power shielded cjiang fxl +0 +2 +2 +Inductor_SMD +L_Changjiang_FXL0640 +Inductor, Changjiang, FXL0640, 6.45x6.6x3.8mm, (https://www.lcsc.com/datasheet/lcsc_datasheet_2404260921_cjiang--Changjiang-Microelectronics-Tech-FXL0420-2R2-M_C167206.pdf), generated with kicad-footprint-generator gen_inductor.py +power shielded cjiang fxl +0 +2 +2 +Inductor_SMD +L_Changjiang_FXL0650 +Inductor, Changjiang, FXL0650, 6.45x6.6x4.8mm, (https://www.lcsc.com/datasheet/lcsc_datasheet_2404260921_cjiang--Changjiang-Microelectronics-Tech-FXL0420-2R2-M_C167206.pdf), generated with kicad-footprint-generator gen_inductor.py +power shielded cjiang fxl +0 +2 +2 +Inductor_SMD +L_Changjiang_FXL0840 +Inductor, Changjiang, FXL0840, 8.25x8.2x3.8mm, (https://www.lcsc.com/datasheet/lcsc_datasheet_2404260921_cjiang--Changjiang-Microelectronics-Tech-FXL0420-2R2-M_C167206.pdf), generated with kicad-footprint-generator gen_inductor.py +power shielded cjiang fxl +0 +2 +2 +Inductor_SMD +L_Changjiang_FXL1030 +Inductor, Changjiang, FXL1030, 10.95x10.0x2.8mm, (https://www.lcsc.com/datasheet/lcsc_datasheet_2404260921_cjiang--Changjiang-Microelectronics-Tech-FXL0420-2R2-M_C167206.pdf), generated with kicad-footprint-generator gen_inductor.py +power shielded cjiang fxl +0 +2 +2 +Inductor_SMD +L_Changjiang_FXL1040 +Inductor, Changjiang, FXL1040, 10.95x10.0x3.8mm, (https://www.lcsc.com/datasheet/lcsc_datasheet_2404260921_cjiang--Changjiang-Microelectronics-Tech-FXL0420-2R2-M_C167206.pdf), generated with kicad-footprint-generator gen_inductor.py +power shielded cjiang fxl +0 +2 +2 +Inductor_SMD +L_Changjiang_FXL1050 +Inductor, Changjiang, FXL1050, 10.95x10.0x4.8mm, (https://www.lcsc.com/datasheet/lcsc_datasheet_2404260921_cjiang--Changjiang-Microelectronics-Tech-FXL0420-2R2-M_C167206.pdf), generated with kicad-footprint-generator gen_inductor.py +power shielded cjiang fxl +0 +2 +2 +Inductor_SMD +L_Changjiang_FXL1340 +Inductor, Changjiang, FXL1340, 12.9x12.8x4.0mm, (https://www.lcsc.com/datasheet/lcsc_datasheet_2404260921_cjiang--Changjiang-Microelectronics-Tech-FXL0420-2R2-M_C167206.pdf), generated with kicad-footprint-generator gen_inductor.py +power shielded cjiang fxl +0 +2 +2 +Inductor_SMD +L_Changjiang_FXL1350 +Inductor, Changjiang, FXL1350, 12.9x12.6x4.8mm, (https://www.lcsc.com/datasheet/lcsc_datasheet_2404260921_cjiang--Changjiang-Microelectronics-Tech-FXL0420-2R2-M_C167206.pdf), generated with kicad-footprint-generator gen_inductor.py +power shielded cjiang fxl +0 +2 +2 +Inductor_SMD +L_Changjiang_FXL1360 +Inductor, Changjiang, FXL1360, 12.9x12.6x5.8mm, (https://www.lcsc.com/datasheet/lcsc_datasheet_2404260921_cjiang--Changjiang-Microelectronics-Tech-FXL0420-2R2-M_C167206.pdf), generated with kicad-footprint-generator gen_inductor.py +power shielded cjiang fxl +0 +2 +2 +Inductor_SMD +L_Changjiang_FXL1365 +Inductor, Changjiang, FXL1365, 12.9x12.6x6.5mm, (https://www.lcsc.com/datasheet/lcsc_datasheet_2404260921_cjiang--Changjiang-Microelectronics-Tech-FXL0420-2R2-M_C167206.pdf), generated with kicad-footprint-generator gen_inductor.py +power shielded cjiang fxl +0 +2 +2 +Inductor_SMD +L_Changjiang_FXL1770 +Inductor, Changjiang, FXL1770, 16.6x17.15x7.0mm, (https://www.lcsc.com/datasheet/lcsc_datasheet_2404260921_cjiang--Changjiang-Microelectronics-Tech-FXL0420-2R2-M_C167206.pdf), generated with kicad-footprint-generator gen_inductor.py +power shielded cjiang fxl +0 +2 +2 +Inductor_SMD +L_Changjiang_FXL2213 +Inductor, Changjiang, FXL2213, 22.95x22.0x12.6mm, (https://www.lcsc.com/datasheet/lcsc_datasheet_2404260921_cjiang--Changjiang-Microelectronics-Tech-FXL0420-2R2-M_C167206.pdf), generated with kicad-footprint-generator gen_inductor.py +power shielded cjiang fxl +0 +2 +2 +Inductor_SMD +L_Chilisin_BMRA00040415 +Inductor, Chilisin, BMRA00040415, 4.6x4.1x1.5mm, (https://www.chilisin.com/upload/media/product/power/file/BMRx_Series.pdf), generated with kicad-footprint-generator gen_inductor.py +bmrx mchi +0 +2 +2 +Inductor_SMD +L_Chilisin_BMRA00040420 +Inductor, Chilisin, BMRA00040420, 4.6x4.1x2.0mm, (https://www.chilisin.com/upload/media/product/power/file/BMRx_Series.pdf), generated with kicad-footprint-generator gen_inductor.py +bmrx mchi +0 +2 +2 +Inductor_SMD +L_Chilisin_BMRA00050520 +Inductor, Chilisin, BMRA00050520, 5.7x5.4x1.8mm, (https://www.chilisin.com/upload/media/product/power/file/BMRx_Series.pdf), generated with kicad-footprint-generator gen_inductor.py +bmrx mchi +0 +2 +2 +Inductor_SMD +L_Chilisin_BMRA00050530 +Inductor, Chilisin, BMRA00050530, 5.7x5.4x3.0mm, (https://www.chilisin.com/upload/media/product/power/file/BMRx_Series.pdf), generated with kicad-footprint-generator gen_inductor.py +bmrx mchi +0 +2 +2 +Inductor_SMD +L_Chilisin_BMRB00050512 +Inductor, Chilisin, BMRB00050512, 5.7x5.4x1.2mm, (https://www.chilisin.com/upload/media/product/power/file/BMRx_Series.pdf), generated with kicad-footprint-generator gen_inductor.py +bmrx mchi +0 +2 +2 +Inductor_SMD +L_Chilisin_BMRB00050518 +Inductor, Chilisin, BMRB00050518, 5.7x5.4x1.8mm, (https://www.chilisin.com/upload/media/product/power/file/BMRx_Series.pdf), generated with kicad-footprint-generator gen_inductor.py +bmrx mchi +0 +2 +2 +Inductor_SMD +L_Chilisin_BMRB00050518-B +Inductor, Chilisin, BMRB00050518-B, 5.4x5.2x1.6mm, (https://www.chilisin.com/upload/media/product/power/file/BMRx_Series.pdf), generated with kicad-footprint-generator gen_inductor.py +bmrx mchi +0 +2 +2 +Inductor_SMD +L_Chilisin_BMRB00060612 +Inductor, Chilisin, BMRB00060612, 7.3x6.6x1.2mm, (https://www.chilisin.com/upload/media/product/power/file/BMRx_Series.pdf), generated with kicad-footprint-generator gen_inductor.py +bmrx mchi +0 +2 +2 +Inductor_SMD +L_Chilisin_BMRB00060618 +Inductor, Chilisin, BMRB00060618, 7.3x6.6x1.6mm, (https://www.chilisin.com/upload/media/product/power/file/BMRx_Series.pdf), generated with kicad-footprint-generator gen_inductor.py +bmrx mchi +0 +2 +2 +Inductor_SMD +L_Chilisin_BMRB00060624 +Inductor, Chilisin, BMRB00060624, 7.3x6.6x2.4mm, (https://www.chilisin.com/upload/media/product/power/file/BMRx_Series.pdf), generated with kicad-footprint-generator gen_inductor.py +bmrx mchi +0 +2 +2 +Inductor_SMD +L_Chilisin_BMRB00060650 +Inductor, Chilisin, BMRB00060650, 7.3x6.6x5.0mm, (https://www.chilisin.com/upload/media/product/power/file/BMRx_Series.pdf), generated with kicad-footprint-generator gen_inductor.py +bmrx mchi +0 +2 +2 +Inductor_SMD +L_Chilisin_BMRF00101040 +Inductor, Chilisin, BMRF00101040, 11.6x10.1x4.0mm, (https://www.chilisin.com/upload/media/product/power/file/BMRx_Series.pdf), generated with kicad-footprint-generator gen_inductor.py +bmrx mchi +0 +2 +2 +Inductor_SMD +L_Chilisin_BMRF00131350 +Inductor, Chilisin, BMRF00131350, 13.8x12.6x5.0mm, (https://www.chilisin.com/upload/media/product/power/file/BMRx_Series.pdf), generated with kicad-footprint-generator gen_inductor.py +bmrx mchi +0 +2 +2 +Inductor_SMD +L_Chilisin_BMRF00131360 +Inductor, Chilisin, BMRF00131360, 13.8x12.6x5.8mm, (https://www.chilisin.com/upload/media/product/power/file/BMRx_Series.pdf), generated with kicad-footprint-generator gen_inductor.py +bmrx mchi +0 +2 +2 +Inductor_SMD +L_Chilisin_BMRF00171770 +Inductor, Chilisin, BMRF00171770, 17.15x17.15x6.8mm, (https://www.chilisin.com/upload/media/product/power/file/BMRx_Series.pdf), generated with kicad-footprint-generator gen_inductor.py +bmrx mchi +0 +2 +2 +Inductor_SMD +L_Chilisin_BMRG00101030 +Inductor, Chilisin, BMRG00101030, 11.6x10.1x3.0mm, (https://www.chilisin.com/upload/media/product/power/file/BMRx_Series.pdf), generated with kicad-footprint-generator gen_inductor.py +bmrx mchi +0 +2 +2 +Inductor_SMD +L_Chilisin_BMRG00131360 +Inductor, Chilisin, BMRG00131360, 13.8x12.6x6.0mm, (https://www.chilisin.com/upload/media/product/power/file/BMRx_Series.pdf), generated with kicad-footprint-generator gen_inductor.py +bmrx mchi +0 +2 +2 +Inductor_SMD +L_Chilisin_BMRx00040412 +Inductor, Chilisin, BMRx00040412, 4.6x4.1x1.2mm, (https://www.chilisin.com/upload/media/product/power/file/BMRx_Series.pdf), generated with kicad-footprint-generator gen_inductor.py +bmrx mchi +0 +2 +2 +Inductor_SMD +L_Chilisin_BMRx00050512-B +Inductor, Chilisin, BMRx00050512-B, 5.4x5.2x1.2mm, (https://www.chilisin.com/upload/media/product/power/file/BMRx_Series.pdf), generated with kicad-footprint-generator gen_inductor.py +bmrx mchi +0 +2 +2 +Inductor_SMD +L_Chilisin_BMRx00050515 +Inductor, Chilisin, BMRx00050515, 5.7x5.4x1.5mm, (https://www.chilisin.com/upload/media/product/power/file/BMRx_Series.pdf), generated with kicad-footprint-generator gen_inductor.py +bmrx mchi +0 +2 +2 +Inductor_SMD +L_Chilisin_BMRx00060615 +Inductor, Chilisin, BMRx00060615, 7.3x6.6x1.3mm, (https://www.chilisin.com/upload/media/product/power/file/BMRx_Series.pdf), generated with kicad-footprint-generator gen_inductor.py +bmrx mchi +0 +2 +2 +Inductor_SMD +L_Chilisin_BMRx00060630 +Inductor, Chilisin, BMRx00060630, 7.3x6.6x3.0mm, (https://www.chilisin.com/upload/media/product/power/file/BMRx_Series.pdf), generated with kicad-footprint-generator gen_inductor.py +bmrx mchi +0 +2 +2 +Inductor_SMD +L_Coilcraft_0403HQ_1008Metric +Inductor, Coilcraft, 0403HQ_1008Metric, 1.19x0.86x0.71mm, (https://www.coilcraft.com/getmedia/69c5aa91-3ca0-4922-874d-581cd4e27e62/0403hq.pdf), generated with kicad-footprint-generator gen_inductor.py +hq +0 +2 +2 +Inductor_SMD +L_Coilcraft_0604HQ_1610Metric +Inductor, Coilcraft, 0604HQ_1610Metric, 1.85x1.37x1.19mm, (https://www.coilcraft.com/getmedia/0719743d-cfb7-4d4d-9e58-bb01a615ada6/0604hq.pdf), generated with kicad-footprint-generator gen_inductor.py +hq +0 +2 +2 +Inductor_SMD +L_Coilcraft_0805HQ_2012Metric +Inductor, Coilcraft, 0805HQ_2012Metric, 2.29x1.73x1.52mm, (https://www.coilcraft.com/getmedia/d1c77d59-e9b0-44a7-81e0-f46e468b0410/0805hq.pdf), generated with kicad-footprint-generator gen_inductor.py +hq +0 +2 +2 +Inductor_SMD +L_Coilcraft_1008HQ_2520Metric +Inductor, Coilcraft, 1008HQ_2520Metric, 2.92x2.79x2.03mm, (https://www.coilcraft.com/getmedia/d309e334-bba7-474c-baad-e9acd748f87a/1008hq.pdf), generated with kicad-footprint-generator gen_inductor.py +hq +0 +2 +2 +Inductor_SMD +L_Coilcraft_1008HQ_2520Metric_LowProfile +Inductor, Coilcraft, 1008HQ_2520Metric_LowProfile, 2.92x2.79x1.27mm, (https://www.coilcraft.com/getmedia/d309e334-bba7-474c-baad-e9acd748f87a/1008hq.pdf), generated with kicad-footprint-generator gen_inductor.py +hq +0 +2 +2 +Inductor_SMD +L_Coilcraft_1515SQ-47N +Inductor, Coilcraft, 1515SQ-47N, 4.06x3.56x3.73mm, (https://www.coilcraft.com/getmedia/a4eed406-a97e-4630-9d8e-771bb470867f/1515sq.pdf), generated with kicad-footprint-generator gen_inductor.py +sq +0 +2 +2 +Inductor_SMD +L_Coilcraft_1515SQ-68N +Inductor, Coilcraft, 1515SQ-68N, 5.33x3.56x3.73mm, (https://www.coilcraft.com/getmedia/a4eed406-a97e-4630-9d8e-771bb470867f/1515sq.pdf), generated with kicad-footprint-generator gen_inductor.py +sq +0 +2 +2 +Inductor_SMD +L_Coilcraft_1515SQ-82N +Inductor, Coilcraft, 1515SQ-82N, 5.84x3.56x3.73mm, (https://www.coilcraft.com/getmedia/a4eed406-a97e-4630-9d8e-771bb470867f/1515sq.pdf), generated with kicad-footprint-generator gen_inductor.py +sq +0 +2 +2 +Inductor_SMD +L_Coilcraft_2222SQ-90N +Inductor, Coilcraft, 2222SQ-90N, 5.21x5.46x5.69mm, (https://www.coilcraft.com/getmedia/a4eed406-a97e-4630-9d8e-771bb470867f/1515sq.pdf), generated with kicad-footprint-generator gen_inductor.py +sq +0 +2 +2 +Inductor_SMD +L_Coilcraft_2222SQ-111 +Inductor, Coilcraft, 2222SQ-111, 6.35x5.59x5.69mm, (https://www.coilcraft.com/getmedia/a4eed406-a97e-4630-9d8e-771bb470867f/1515sq.pdf), generated with kicad-footprint-generator gen_inductor.py +sq +0 +2 +2 +Inductor_SMD +L_Coilcraft_2222SQ-131 +Inductor, Coilcraft, 2222SQ-131, 6.73x5.59x5.69mm, (https://www.coilcraft.com/getmedia/a4eed406-a97e-4630-9d8e-771bb470867f/1515sq.pdf), generated with kicad-footprint-generator gen_inductor.py +sq +0 +2 +2 +Inductor_SMD +L_Coilcraft_2222SQ-161 +Inductor, Coilcraft, 2222SQ-161, 7.37x5.59x5.69mm, (https://www.coilcraft.com/getmedia/a4eed406-a97e-4630-9d8e-771bb470867f/1515sq.pdf), generated with kicad-footprint-generator gen_inductor.py +sq +0 +2 +2 +Inductor_SMD +L_Coilcraft_2222SQ-181 +Inductor, Coilcraft, 2222SQ-181, 8.13x5.59x5.69mm, (https://www.coilcraft.com/getmedia/a4eed406-a97e-4630-9d8e-771bb470867f/1515sq.pdf), generated with kicad-footprint-generator gen_inductor.py +sq +0 +2 +2 +Inductor_SMD +L_Coilcraft_2222SQ-221 +Inductor, Coilcraft, 2222SQ-221, 9.91x5.59x5.69mm, (https://www.coilcraft.com/getmedia/a4eed406-a97e-4630-9d8e-771bb470867f/1515sq.pdf), generated with kicad-footprint-generator gen_inductor.py +sq +0 +2 +2 +Inductor_SMD +L_Coilcraft_2222SQ-271 +Inductor, Coilcraft, 2222SQ-271, 11.68x5.59x5.69mm, (https://www.coilcraft.com/getmedia/a4eed406-a97e-4630-9d8e-771bb470867f/1515sq.pdf), generated with kicad-footprint-generator gen_inductor.py +sq +0 +2 +2 +Inductor_SMD +L_Coilcraft_2222SQ-301 +Inductor, Coilcraft, 2222SQ-301, 11.94x5.72x5.69mm, (https://www.coilcraft.com/getmedia/a4eed406-a97e-4630-9d8e-771bb470867f/1515sq.pdf), generated with kicad-footprint-generator gen_inductor.py +sq +0 +2 +2 +Inductor_SMD +L_Coilcraft_2929SQ-331 +Inductor, Coilcraft, 2929SQ-331, 10.29x7.49x7.24mm, (https://www.coilcraft.com/getmedia/a4eed406-a97e-4630-9d8e-771bb470867f/1515sq.pdf), generated with kicad-footprint-generator gen_inductor.py +sq +0 +2 +2 +Inductor_SMD +L_Coilcraft_2929SQ-361 +Inductor, Coilcraft, 2929SQ-361, 11.3x7.49x7.24mm, (https://www.coilcraft.com/getmedia/a4eed406-a97e-4630-9d8e-771bb470867f/1515sq.pdf), generated with kicad-footprint-generator gen_inductor.py +sq +0 +2 +2 +Inductor_SMD +L_Coilcraft_2929SQ-391 +Inductor, Coilcraft, 2929SQ-391, 12.32x7.49x7.24mm, (https://www.coilcraft.com/getmedia/a4eed406-a97e-4630-9d8e-771bb470867f/1515sq.pdf), generated with kicad-footprint-generator gen_inductor.py +sq +0 +2 +2 +Inductor_SMD +L_Coilcraft_2929SQ-431 +Inductor, Coilcraft, 2929SQ-431, 13.21x7.49x7.24mm, (https://www.coilcraft.com/getmedia/a4eed406-a97e-4630-9d8e-771bb470867f/1515sq.pdf), generated with kicad-footprint-generator gen_inductor.py +sq +0 +2 +2 +Inductor_SMD +L_Coilcraft_2929SQ-501 +Inductor, Coilcraft, 2929SQ-501, 14.0x7.49x7.24mm, (https://www.coilcraft.com/getmedia/a4eed406-a97e-4630-9d8e-771bb470867f/1515sq.pdf), generated with kicad-footprint-generator gen_inductor.py +sq +0 +2 +2 +Inductor_SMD +L_Coilcraft_LPS3010 +Shielded Power Inductor SMD 3x3x1mm, Coilcraft LPS3010, https://www.coilcraft.com/pdfs/lps3010.pdf +inductor low profile +0 +2 +2 +Inductor_SMD +L_Coilcraft_LPS3314 +SMD Inductor, 3.3x3.3x1.4mm, Coilcraft LPS3314, https://www.coilcraft.com/pdfs/lps3314.pdf +L Coilcraft LPS3314 +0 +2 +2 +Inductor_SMD +L_Coilcraft_LPS4018 +SMD Inductor Coilcraft LPS4018 https://www.coilcraft.com/pdfs/lps4018.pdf +L Coilcraft LPS4018 +0 +2 +2 +Inductor_SMD +L_Coilcraft_LPS4414 +SMD Inductor Coilcraft LPS4414, https://www.coilcraft.com/getmedia/fa8805ca-b278-4819-915a-b5cf632f0239/lps4414.pdf +L Coilcraft LPS4414 +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_MOS6020-XXX +Inductor, Coilcraft, MOS6020-XXX, 6.8x6.0x2.4mm, (https://www.coilcraft.com/getmedia/c3eb212d-a1a9-4db6-9f14-a01f21fd984c/mos6020.pdf), generated with kicad-footprint-generator gen_inductor.py +mss +0 +2 +2 +Inductor_SMD +L_Coilcraft_MSS1038-XXX +Inductor, Coilcraft, MSS1038-XXX, 10.2x10.0x3.8mm, (https://www.coilcraft.com/getmedia/3e03a7b4-3b1d-4f31-b1f3-e7c621695ac0/mss1038.pdf), generated with kicad-footprint-generator gen_inductor.py +mss +0 +2 +2 +Inductor_SMD +L_Coilcraft_MSS1038T-XXX +Inductor, Coilcraft, MSS1038T-XXX, 10.2x10.0x3.8mm, (https://www.coilcraft.com/getmedia/ea4800a7-100e-49d9-9bbc-6ba8b238dc0d/mss1038t.pdf), generated with kicad-footprint-generator gen_inductor.py +mss +0 +2 +2 +Inductor_SMD +L_Coilcraft_MSS1048-XXX +Inductor, Coilcraft, MSS1048-XXX, 10.2x10.0x4.8mm, (https://www.coilcraft.com/getmedia/bd5140ec-db32-4346-a029-5182269dc08e/mss1048.pdf), generated with kicad-footprint-generator gen_inductor.py +mss +0 +2 +2 +Inductor_SMD +L_Coilcraft_MSS1048T-XXX +Inductor, Coilcraft, MSS1048T-XXX, 10.2x10.0x4.8mm, (https://www.coilcraft.com/getmedia/bd5140ec-db32-4346-a029-5182269dc08e/mss1048t.pdf), generated with kicad-footprint-generator gen_inductor.py +mss +0 +2 +2 +Inductor_SMD +L_Coilcraft_MSS1210-XXX +Inductor, Coilcraft, MSS1210-XXX, 12.0x12.0x10.0mm, (https://www.coilcraft.com/getmedia/f1a1bc5f-bdff-42f8-9ca8-1a0fb1d5094f/MSS1210.pdf), generated with kicad-footprint-generator gen_inductor.py +mss +0 +2 +2 +Inductor_SMD +L_Coilcraft_MSS1210H-XXX +Inductor, Coilcraft, MSS1210H-XXX, 12.0x12.0x10.0mm, (https://www.coilcraft.com/getmedia/52078704-21eb-4c2b-9b72-1e07b4a2e252/mss1210h.pdf), generated with kicad-footprint-generator gen_inductor.py +mss +0 +2 +2 +Inductor_SMD +L_Coilcraft_MSS1246-XXX +Inductor, Coilcraft, MSS1246-XXX, 12.0x12.0x4.6mm, (https://www.coilcraft.com/getmedia/960fadbe-0ca0-40e2-ae20-64edb15f3a07/mss1246.pdf), generated with kicad-footprint-generator gen_inductor.py +mss +0 +2 +2 +Inductor_SMD +L_Coilcraft_MSS1246H-XXX +Inductor, Coilcraft, MSS1246H-XXX, 12.0x12.0x4.65mm, (https://www.coilcraft.com/getmedia/25f62276-187e-4c2c-9b9b-4568b9a9a423/mss1246h.pdf), generated with kicad-footprint-generator gen_inductor.py +mss +0 +2 +2 +Inductor_SMD +L_Coilcraft_MSS1246T-XXX +Inductor, Coilcraft, MSS1246T-XXX, 12.0x12.0x4.6mm, (https://www.coilcraft.com/getmedia/dec41de3-f4b7-4c07-b144-cc21921ccfd5/mss1246t.pdf), generated with kicad-footprint-generator gen_inductor.py +mss +0 +2 +2 +Inductor_SMD +L_Coilcraft_MSS1260-XXX +Inductor, Coilcraft, MSS1260-XXX, 12.0x12.0x6.0mm, (https://www.coilcraft.com/getmedia/febefb9b-60f9-4a2c-8525-9c396f34e363/mss1260.pdf), generated with kicad-footprint-generator gen_inductor.py +mss +0 +2 +2 +Inductor_SMD +L_Coilcraft_MSS1260H-XXX +Inductor, Coilcraft, MSS1260H-XXX, 12.0x12.0x6.0mm, (https://www.coilcraft.com/getmedia/352767ff-7c30-4312-ab84-989443b4047e/mss1260h.pdf), generated with kicad-footprint-generator gen_inductor.py +mss +0 +2 +2 +Inductor_SMD +L_Coilcraft_MSS1260T-XXX +Inductor, Coilcraft, MSS1260T-XXX, 12.0x12.0x6.0mm, (https://www.coilcraft.com/getmedia/ce88ed45-272e-474e-a25e-981003944639/mss1260t.pdf), generated with kicad-footprint-generator gen_inductor.py +mss +0 +2 +2 +Inductor_SMD +L_Coilcraft_MSS1278-XXX +Inductor, Coilcraft, MSS1278-XXX, 12.0x12.0x7.8mm, (https://www.coilcraft.com/getmedia/6eb5ea38-40e4-41a6-9f92-3cdf8e907dcd/mss1278.pdf), generated with kicad-footprint-generator gen_inductor.py +mss +0 +2 +2 +Inductor_SMD +L_Coilcraft_MSS1278H-XXX +Inductor, Coilcraft, MSS1278H-XXX, 12.0x12.0x7.8mm, (https://www.coilcraft.com/getmedia/72ffd561-3941-457d-b0e7-bb55b1b2d1a7/MSS1278H.pdf), generated with kicad-footprint-generator gen_inductor.py +mss +0 +2 +2 +Inductor_SMD +L_Coilcraft_MSS1278T-XXX +Inductor, Coilcraft, MSS1278T-XXX, 12.0x12.0x7.8mm, (https://www.coilcraft.com/getmedia/e8d7b32a-defa-4500-bc0f-6ecc558fcde6/mss1278t.pdf), generated with kicad-footprint-generator gen_inductor.py +mss +0 +2 +2 +Inductor_SMD +L_Coilcraft_MSS1514V-XXX +Inductor, Coilcraft, MSS1514V-XXX, 15.0x15.0x8.6mm, (https://www.coilcraft.com/getmedia/a1319e1c-d611-4bc0-be30-c17e52e4e667/mss1514v.pdf), generated with kicad-footprint-generator gen_inductor.py +mss +0 +2 +2 +Inductor_SMD +L_Coilcraft_MSS1583-XXX +Inductor, Coilcraft, MSS1583-XXX, 15.0x15.0x8.6mm, (https://www.coilcraft.com/getmedia/fbfe8ea7-f5d8-4484-859e-2285f427326d/mss1583.pdf), generated with kicad-footprint-generator gen_inductor.py +mss +0 +2 +2 +Inductor_SMD +L_Coilcraft_MSS1812T-XXX +Inductor, Coilcraft, MSS1812T-XXX, 18.3x18.3x12.0mm, (https://www.coilcraft.com/getmedia/148807de-bc83-43dc-9fce-d4df334864cd/mss1812t.pdf), generated with kicad-footprint-generator gen_inductor.py +mss +0 +2 +2 +Inductor_SMD +L_Coilcraft_MSS7348-XXX +Inductor, Coilcraft, MSS7348-XXX, 7.0x7.0x4.5mm, (https://www.coilcraft.com/getmedia/018a2bda-2036-409a-8b19-945e531c18b5/MSS7348.pdf), generated with kicad-footprint-generator gen_inductor.py +mss +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL1010-XXX +Inductor, Coilcraft, XAL1010-XXX, 10.5x11.8x10.0mm, (https://www.coilcraft.com/getmedia/dd74e670-e705-456a-9a69-585fe02eaf3c/xal1010.pdf), generated with kicad-footprint-generator gen_inductor.py +xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL1030-XXX +Inductor, Coilcraft, XAL1030-XXX, 10.5x11.8x3.1mm, (https://www.coilcraft.com/getmedia/7b108457-7731-456d-9256-ca72f2e1a551/xal1030.pdf), generated with kicad-footprint-generator gen_inductor.py +xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL1060-XXX +Inductor, Coilcraft, XAL1060-XXX, 10.5x11.8x6.0mm, (https://www.coilcraft.com/getmedia/8909f858-b441-4d60-acff-8b8ca36f9ede/xal1060.pdf), generated with kicad-footprint-generator gen_inductor.py +xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL1350-XXX +Inductor, Coilcraft, XAL1350-XXX, 13.2x14.2x5.0mm, (https://www.coilcraft.com/getmedia/dc536f86-3a3b-454f-950e-8e153260e61c/xal1350.pdf), generated with kicad-footprint-generator gen_inductor.py +xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL1510-103 +Inductor, Coilcraft, XAL1510-103, 15.4x16.4x10.0mm, (https://www.coilcraft.com/getmedia/cd1cef27-13f0-4568-8894-f7311475209b/xal1510.pdf), generated with kicad-footprint-generator gen_inductor.py +xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL1510-153 +Inductor, Coilcraft, XAL1510-153, 15.4x16.4x10.0mm, (https://www.coilcraft.com/getmedia/cd1cef27-13f0-4568-8894-f7311475209b/xal1510.pdf), generated with kicad-footprint-generator gen_inductor.py +xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL1510-223 +Inductor, Coilcraft, XAL1510-223, 15.4x16.4x10.0mm, (https://www.coilcraft.com/getmedia/cd1cef27-13f0-4568-8894-f7311475209b/xal1510.pdf), generated with kicad-footprint-generator gen_inductor.py +xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL1510-333 +Inductor, Coilcraft, XAL1510-333, 15.4x16.4x11.0mm, (https://www.coilcraft.com/getmedia/cd1cef27-13f0-4568-8894-f7311475209b/xal1510.pdf), generated with kicad-footprint-generator gen_inductor.py +xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL1510-472 +Inductor, Coilcraft, XAL1510-472, 15.4x16.4x10.0mm, (https://www.coilcraft.com/getmedia/cd1cef27-13f0-4568-8894-f7311475209b/xal1510.pdf), generated with kicad-footprint-generator gen_inductor.py +xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL1510-682 +Inductor, Coilcraft, XAL1510-682, 15.4x16.4x10.0mm, (https://www.coilcraft.com/getmedia/cd1cef27-13f0-4568-8894-f7311475209b/xal1510.pdf), generated with kicad-footprint-generator gen_inductor.py +xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL1510-822 +Inductor, Coilcraft, XAL1510-822, 15.4x16.4x10.0mm, (https://www.coilcraft.com/getmedia/cd1cef27-13f0-4568-8894-f7311475209b/xal1510.pdf), generated with kicad-footprint-generator gen_inductor.py +xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL1513-153 +Inductor, Coilcraft, XAL1513-153, 15.4x16.4x13.0mm, (https://www.coilcraft.com/getmedia/129ad6f3-0445-47fd-a0b3-edeb49177c17/xal1513.pdf), generated with kicad-footprint-generator gen_inductor.py +xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL1580-102 +Inductor, Coilcraft, XAL1580-102, 15.4x16.4x8.2mm, (https://www.coilcraft.com/getmedia/7fdfd306-5217-4ddc-b6b7-a2659ceeb6e3/xal1580.pdf), generated with kicad-footprint-generator gen_inductor.py +xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL1580-132 +Inductor, Coilcraft, XAL1580-132, 15.4x16.4x8.0mm, (https://www.coilcraft.com/getmedia/7fdfd306-5217-4ddc-b6b7-a2659ceeb6e3/xal1580.pdf), generated with kicad-footprint-generator gen_inductor.py +xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL1580-182 +Inductor, Coilcraft, XAL1580-182, 15.4x16.4x8.0mm, (https://www.coilcraft.com/getmedia/7fdfd306-5217-4ddc-b6b7-a2659ceeb6e3/xal1580.pdf), generated with kicad-footprint-generator gen_inductor.py +xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL1580-202 +Inductor, Coilcraft, XAL1580-202, 15.4x16.4x8.0mm, (https://www.coilcraft.com/getmedia/7fdfd306-5217-4ddc-b6b7-a2659ceeb6e3/xal1580.pdf), generated with kicad-footprint-generator gen_inductor.py +xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL1580-302 +Inductor, Coilcraft, XAL1580-302, 15.4x16.4x8.0mm, (https://www.coilcraft.com/getmedia/7fdfd306-5217-4ddc-b6b7-a2659ceeb6e3/xal1580.pdf), generated with kicad-footprint-generator gen_inductor.py +xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL1580-401 +Inductor, Coilcraft, XAL1580-401, 15.4x16.4x8.2mm, (https://www.coilcraft.com/getmedia/7fdfd306-5217-4ddc-b6b7-a2659ceeb6e3/xal1580.pdf), generated with kicad-footprint-generator gen_inductor.py +xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL1580-452 +Inductor, Coilcraft, XAL1580-452, 15.4x16.4x8.0mm, (https://www.coilcraft.com/getmedia/7fdfd306-5217-4ddc-b6b7-a2659ceeb6e3/xal1580.pdf), generated with kicad-footprint-generator gen_inductor.py +xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL1580-532 +Inductor, Coilcraft, XAL1580-532, 15.4x16.4x8.0mm, (https://www.coilcraft.com/getmedia/7fdfd306-5217-4ddc-b6b7-a2659ceeb6e3/xal1580.pdf), generated with kicad-footprint-generator gen_inductor.py +xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL1580-612 +Inductor, Coilcraft, XAL1580-612, 15.4x16.4x8.0mm, (https://www.coilcraft.com/getmedia/7fdfd306-5217-4ddc-b6b7-a2659ceeb6e3/xal1580.pdf), generated with kicad-footprint-generator gen_inductor.py +xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL1580-741 +Inductor, Coilcraft, XAL1580-741, 15.4x16.4x8.2mm, (https://www.coilcraft.com/getmedia/7fdfd306-5217-4ddc-b6b7-a2659ceeb6e3/xal1580.pdf), generated with kicad-footprint-generator gen_inductor.py +xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL4020-XXX +Inductor, Coilcraft, XAL4020-XXX, 4.3x4.3x2.1mm, (https://www.coilcraft.com/getmedia/6adcb47d-8b55-416c-976e-1e22e0d2848c/xal4000.pdf), generated with kicad-footprint-generator gen_inductor.py +xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL4030-XXX +Inductor, Coilcraft, XAL4030-XXX, 4.3x4.3x3.1mm, (https://www.coilcraft.com/getmedia/6adcb47d-8b55-416c-976e-1e22e0d2848c/xal4000.pdf), generated with kicad-footprint-generator gen_inductor.py +xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL4040-XXX +Inductor, Coilcraft, XAL4040-XXX, 4.3x4.3x4.1mm, (https://www.coilcraft.com/getmedia/6adcb47d-8b55-416c-976e-1e22e0d2848c/xal4000.pdf), generated with kicad-footprint-generator gen_inductor.py +xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL5020-XXX +Inductor, Coilcraft, XAL5020-XXX, 5.48x5.68x2.0mm, (https://www.coilcraft.com/getmedia/1941eff1-c018-493c-8cd6-d88d2edf5029/xal5020.pdf), generated with kicad-footprint-generator gen_inductor.py +xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL5030-XXX +Inductor, Coilcraft, XAL5030-XXX, 5.48x5.68x3.1mm, (https://www.coilcraft.com/getmedia/49bc46c8-4b2c-45b9-9b6c-2eaa235ea698/xal50xx.pdf), generated with kicad-footprint-generator gen_inductor.py +xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL5050-XXX +Inductor, Coilcraft, XAL5050-XXX, 5.48x5.68x5.1mm, (https://www.coilcraft.com/getmedia/49bc46c8-4b2c-45b9-9b6c-2eaa235ea698/xal50xx.pdf), generated with kicad-footprint-generator gen_inductor.py +xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL6020-XXX +Inductor, Coilcraft, XAL6020-XXX, 6.56x6.76x2.1mm, (https://www.coilcraft.com/getmedia/467ff589-8942-4e57-92d0-5bef6e04ce09/xal6020.pdf), generated with kicad-footprint-generator gen_inductor.py +xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL6030-XXX +Inductor, Coilcraft, XAL6030-XXX, 6.56x6.76x3.1mm, (https://www.coilcraft.com/getmedia/ea51f14b-7f32-4dc6-8dfe-d4b70549040f/xal60xx.pdf), generated with kicad-footprint-generator gen_inductor.py +xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL6060-XXX +Inductor, Coilcraft, XAL6060-XXX, 6.56x6.76x6.1mm, (https://www.coilcraft.com/getmedia/ea51f14b-7f32-4dc6-8dfe-d4b70549040f/xal60xx.pdf), generated with kicad-footprint-generator gen_inductor.py +xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL7020-102 +Inductor, Coilcraft, XAL7020-102, 8.0x8.0x2.0mm, (https://www.coilcraft.com/getmedia/0197e98c-67f7-4375-9e38-14d7376a46f3/xal7020.pdf), generated with kicad-footprint-generator gen_inductor.py +xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL7020-122 +Inductor, Coilcraft, XAL7020-122, 8.0x8.0x2.0mm, (https://www.coilcraft.com/getmedia/0197e98c-67f7-4375-9e38-14d7376a46f3/xal7020.pdf), generated with kicad-footprint-generator gen_inductor.py +xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL7020-151 +Inductor, Coilcraft, XAL7020-151, 8.0x8.0x2.05mm, (https://www.coilcraft.com/getmedia/0197e98c-67f7-4375-9e38-14d7376a46f3/xal7020.pdf), generated with kicad-footprint-generator gen_inductor.py +xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL7020-152 +Inductor, Coilcraft, XAL7020-152, 8.0x8.0x2.0mm, (https://www.coilcraft.com/getmedia/0197e98c-67f7-4375-9e38-14d7376a46f3/xal7020.pdf), generated with kicad-footprint-generator gen_inductor.py +xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL7020-222 +Inductor, Coilcraft, XAL7020-222, 8.0x8.0x2.0mm, (https://www.coilcraft.com/getmedia/0197e98c-67f7-4375-9e38-14d7376a46f3/xal7020.pdf), generated with kicad-footprint-generator gen_inductor.py +xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL7020-271 +Inductor, Coilcraft, XAL7020-271, 8.0x8.0x2.05mm, (https://www.coilcraft.com/getmedia/0197e98c-67f7-4375-9e38-14d7376a46f3/xal7020.pdf), generated with kicad-footprint-generator gen_inductor.py +xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL7020-331 +Inductor, Coilcraft, XAL7020-331, 8.0x8.0x2.0mm, (https://www.coilcraft.com/getmedia/0197e98c-67f7-4375-9e38-14d7376a46f3/xal7020.pdf), generated with kicad-footprint-generator gen_inductor.py +xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL7020-471 +Inductor, Coilcraft, XAL7020-471, 8.0x8.0x2.0mm, (https://www.coilcraft.com/getmedia/0197e98c-67f7-4375-9e38-14d7376a46f3/xal7020.pdf), generated with kicad-footprint-generator gen_inductor.py +xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL7020-681 +Inductor, Coilcraft, XAL7020-681, 8.0x8.0x2.0mm, (https://www.coilcraft.com/getmedia/0197e98c-67f7-4375-9e38-14d7376a46f3/xal7020.pdf), generated with kicad-footprint-generator gen_inductor.py +xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL7030-102 +Inductor, Coilcraft, XAL7030-102, 8.0x8.0x3.1mm, (https://www.coilcraft.com/getmedia/0d05a05e-d55d-4a0c-911d-46bd73686633/xal7030.pdf), generated with kicad-footprint-generator gen_inductor.py +xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL7030-103 +Inductor, Coilcraft, XAL7030-103, 8.0x8.0x3.1mm, (https://www.coilcraft.com/getmedia/0d05a05e-d55d-4a0c-911d-46bd73686633/xal7030.pdf), generated with kicad-footprint-generator gen_inductor.py +xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL7030-152 +Inductor, Coilcraft, XAL7030-152, 8.0x8.0x3.1mm, (https://www.coilcraft.com/getmedia/0d05a05e-d55d-4a0c-911d-46bd73686633/xal7030.pdf), generated with kicad-footprint-generator gen_inductor.py +xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL7030-161 +Inductor, Coilcraft, XAL7030-161, 8.0x8.0x3.1mm, (https://www.coilcraft.com/getmedia/0d05a05e-d55d-4a0c-911d-46bd73686633/xal7030.pdf), generated with kicad-footprint-generator gen_inductor.py +xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL7030-222 +Inductor, Coilcraft, XAL7030-222, 8.0x8.0x3.1mm, (https://www.coilcraft.com/getmedia/0d05a05e-d55d-4a0c-911d-46bd73686633/xal7030.pdf), generated with kicad-footprint-generator gen_inductor.py +xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL7030-272 +Inductor, Coilcraft, XAL7030-272, 8.0x8.0x3.1mm, (https://www.coilcraft.com/getmedia/0d05a05e-d55d-4a0c-911d-46bd73686633/xal7030.pdf), generated with kicad-footprint-generator gen_inductor.py +xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL7030-301 +Inductor, Coilcraft, XAL7030-301, 8.0x8.0x3.1mm, (https://www.coilcraft.com/getmedia/0d05a05e-d55d-4a0c-911d-46bd73686633/xal7030.pdf), generated with kicad-footprint-generator gen_inductor.py +xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL7030-332 +Inductor, Coilcraft, XAL7030-332, 8.0x8.0x3.1mm, (https://www.coilcraft.com/getmedia/0d05a05e-d55d-4a0c-911d-46bd73686633/xal7030.pdf), generated with kicad-footprint-generator gen_inductor.py +xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL7030-472 +Inductor, Coilcraft, XAL7030-472, 8.0x8.0x3.1mm, (https://www.coilcraft.com/getmedia/0d05a05e-d55d-4a0c-911d-46bd73686633/xal7030.pdf), generated with kicad-footprint-generator gen_inductor.py +xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL7030-562 +Inductor, Coilcraft, XAL7030-562, 8.0x8.0x3.1mm, (https://www.coilcraft.com/getmedia/0d05a05e-d55d-4a0c-911d-46bd73686633/xal7030.pdf), generated with kicad-footprint-generator gen_inductor.py +xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL7030-601 +Inductor, Coilcraft, XAL7030-601, 8.0x8.0x3.1mm, (https://www.coilcraft.com/getmedia/0d05a05e-d55d-4a0c-911d-46bd73686633/xal7030.pdf), generated with kicad-footprint-generator gen_inductor.py +xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL7030-682 +Inductor, Coilcraft, XAL7030-682, 8.0x8.0x3.1mm, (https://www.coilcraft.com/getmedia/0d05a05e-d55d-4a0c-911d-46bd73686633/xal7030.pdf), generated with kicad-footprint-generator gen_inductor.py +xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL7030-822 +Inductor, Coilcraft, XAL7030-822, 8.0x8.0x3.1mm, (https://www.coilcraft.com/getmedia/0d05a05e-d55d-4a0c-911d-46bd73686633/xal7030.pdf), generated with kicad-footprint-generator gen_inductor.py +xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL7050-XXX +Inductor, Coilcraft, XAL7050-XXX, 7.7x8.0x5.0mm, (https://www.coilcraft.com/getmedia/13a991b3-4273-4be3-81ba-f3cf372b4691/xal7050.pdf), generated with kicad-footprint-generator gen_inductor.py +xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL7070-XXX +Inductor, Coilcraft, XAL7070-XXX, 7.7x8.0x7.0mm, (https://www.coilcraft.com/getmedia/1ba55433-bcc8-4838-9b21-382f497e12e0/xal7070.pdf), generated with kicad-footprint-generator gen_inductor.py +xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL8050-223 +Inductor, Coilcraft, XAL8050-223, 8.3x8.8x5.0mm, (https://www.coilcraft.com/getmedia/5885ede8-ea4f-464a-9dcb-18dbf143a845/xal8050.pdf), generated with kicad-footprint-generator gen_inductor.py +xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL8080-XXX +Inductor, Coilcraft, XAL8080-XXX, 8.3x8.8x8.0mm, (https://www.coilcraft.com/getmedia/345e50d6-a804-4ecb-9a92-5185221faf3e/xal8080.pdf), generated with kicad-footprint-generator gen_inductor.py +xal +0 +2 +2 +Inductor_SMD +L_Coilcraft_XFL2010 +Coilcraft XFL2010, Shielded power inductor, 0808, 1.9x2.0mm, https://www.coilcraft.com/getmedia/50382b97-998f-4b75-b5ee-4a93b0ac4411/xfl2010.pdf +miniature +0 +2 +2 +Inductor_SMD +L_Coilcraft_XxL4020 +L_Coilcraft_XxL4020 https://www.coilcraft.com/pdfs/xfl4020.pdf +L Coilcraft XxL4020 +0 +2 +2 +Inductor_SMD +L_Coilcraft_XxL4030 +L_Coilcraft_XxL4030 https://www.coilcraft.com/pdfs/xfl4030.pdf +L Coilcraft XxL4030 +0 +2 +2 +Inductor_SMD +L_Coilcraft_XxL4040 +L_Coilcraft_XxL4040 https://www.coilcraft.com/pdfs/xal4000.pdf +L Coilcraft XxL4040 +0 +2 +2 +Inductor_SMD +L_CommonModeChoke_Coilcraft_0603USB +Coilcraft 0603USB Series Common Mode Choke, https://www.coilcraft.com/pdfs/0603usb.pdf +surface mount common mode bead +0 +4 +4 +Inductor_SMD +L_CommonModeChoke_Coilcraft_0805USB +Coilcraft 0805USB Series Common Mode Choke, https://www.coilcraft.com/pdfs/0805usb.pdf +surface mount common mode bead +0 +4 +4 +Inductor_SMD +L_CommonModeChoke_Coilcraft_1812CAN +Coilcraft 1812CAN Series Common Mode Choke, https://www.coilcraft.com/pdfs/1812can.pdf +surface mount common mode bead +0 +4 +4 +Inductor_SMD +L_CommonModeChoke_Murata_DLW5BTMxxxSQ2x_5x5mm +Wire Wound Chip Common Mode Choke Coil SMD, Murata DLW5BTxxxSQ2x, https://www.murata.com/products/productdata/8796762701854/EFLC0020.pdf, manual footprint +inductor common mode choke +0 +4 +4 +Inductor_SMD +L_CommonModeChoke_TDK_ACM2520-2P +TDK ACM2520 common-mode filter, SMD, 2x2.5mm, height 1.2mm https://product.tdk.com/system/files/dam/doc/product/emc/emc/cmf_cmc/catalog/cmf_commercial_signal_acm2520_en.pdf +ACM2520 common-mode filter 4 pin +0 +4 +4 +Inductor_SMD +L_CommonModeChoke_TDK_ACM2520-3P +TDK ACM2520 common-mode filter, SMD, 2x2.5mm, height 1.2mm https://product.tdk.com/system/files/dam/doc/product/emc/emc/cmf_cmc/catalog/cmf_commercial_signal_acm2520_en.pdf +ACM2520 common-mode filter 6 pin +0 +6 +6 +Inductor_SMD +L_CommonModeChoke_TDK_ACM7060 +ACM7060 SMT Common Mode Filter, https://product.tdk.com/system/files/dam/doc/product/emc/emc/cmf_cmc/catalog/cmf_commercial_power_acm7060_en.pdf +SMT Common Mode Line Filter +0 +4 +4 +Inductor_SMD +L_CommonModeChoke_Wuerth_WE-SL5 +WE-SL5 SMT Common Mode Line Filter, 9.5x8.3mm, height 5mm, https://www.we-online.com/components/products/datasheet/744273222.pdf +SMT Common Mode Line Filter +0 +4 +4 +Inductor_SMD +L_CommonMode_Bourns_DR331 +Bourns DR331 SO, 4 Pin (https://bourns.com/docs/product-datasheets/dr331.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +Bourns SO Inductor_SMD +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_CommonMode_Wurth_WE-CNSW-1206 +WE-CNSW SMT Common Mode Line Filter, https://www.we-online.com/components/products/datasheet/744232090.pdf +common mode choke 1206 cnsw +0 +4 +4 +Inductor_SMD +L_Eaton_MCL2012V1 +Inductor, Eaton, MCL2012V1, 2.0x1.2x0.9mm, (https://eu.mouser.com/datasheet/2/87/eaton-mcl2012v1-multilayer-chip-inductor-data-shee-1622891.pdf), generated with kicad-footprint-generator gen_inductor.py +ferrite multilayer power +0 +2 +2 +Inductor_SMD +L_Fastron_PISN +Choke, Drossel, PISN, SMD, Fastron, +Choke Drossel PISN SMD Fastron +0 +2 +2 +Inductor_SMD +L_Fastron_PISN_Handsoldering +Choke, Drossel, PISN, SMD, Fastron, +Choke Drossel PISN SMD Fastron +0 +2 +2 +Inductor_SMD +L_Fastron_PISR +Choke, Drossel, PISR, Fastron, SMD, +Choke Drossel PISR Fastron SMD +0 +2 +2 +Inductor_SMD +L_Fastron_PISR_Handsoldering +Choke, Drossel, PISR, Fastron, SMD, +Choke Drossel PISR Fastron SMD +0 +2 +2 +Inductor_SMD +L_Ferrocore_DLG-0302 +Ferrocore DLG-0302 unshielded SMD power inductor, 3.0x2.8x2.5mm, https://www.tme.eu/Document/bda580f72a60a2225c2f6576c2740ae1/dlg-0504.pdf +smd inductor dlg-0302 +0 +2 +2 +Inductor_SMD +L_Ferrocore_DLG-0403 + Ferrocore DLG-0403 unshielded SMD power inductor, 4.5x4.0x3.2mm, https://www.tme.eu/Document/bda580f72a60a2225c2f6576c2740ae1/dlg-0504.pdf +smd inductor dlg-0403 +0 +2 +2 +Inductor_SMD +L_Ferrocore_DLG-0504 +Ferrocore DLG-0504 unshielded SMD power inductor, 5.8x5.2x4.5mm, https://www.tme.eu/Document/bda580f72a60a2225c2f6576c2740ae1/dlg-0504.pdf +smd inductor dlg-0504 +0 +2 +2 +Inductor_SMD +L_Ferrocore_DLG-0703 +Ferrocore DLG-0703 unshielded SMD power inductor, 7.8x7.0x3.5mm, https://www.tme.eu/Document/bda580f72a60a2225c2f6576c2740ae1/dlg-0504.pdf +smd inductor dlg-0703 +0 +2 +2 +Inductor_SMD +L_Ferrocore_DLG-0705 +Ferrocore DLG-0705 unshielded SMD power inductor, 7.8x7.0x5.0mm, https://www.tme.eu/Document/bda580f72a60a2225c2f6576c2740ae1/dlg-0504.pdf +smd inductor dlg-0705 +0 +2 +2 +Inductor_SMD +L_Ferrocore_DLG-1004 +Ferrocore DLG-1004 unshielded SMD power inductor, 10.0x9.0x4.0mm, https://www.tme.eu/Document/bda580f72a60a2225c2f6576c2740ae1/dlg-0504.pdf +smd inductor dlg-1004 +0 +2 +2 +Inductor_SMD +L_Ferrocore_DLG-1005 +Ferrocore DLG-1005 unshielded SMD power inductor, 10.0x9.0x5.4mm, https://www.tme.eu/Document/bda580f72a60a2225c2f6576c2740ae1/dlg-0504.pdf +smd inductor dlg-1005 +0 +2 +2 +Inductor_SMD +L_KOHERelec_MDA5030 +Inductor, KOHERelec, MDA5030, 5.2x5.2x2.8mm, (http://www.kohergroup.com/template/default/pdf/MDA5030.pdf), generated with kicad-footprint-generator gen_inductor.py +high-current power shielded +0 +2 +2 +Inductor_SMD +L_KOHERelec_MDA7030 +Inductor, KOHERelec, MDA7030, 7.1x6.6x2.8mm, (http://www.kohergroup.com/template/default/pdf/MDA7030.pdf), generated with kicad-footprint-generator gen_inductor.py +high-current power shielded +0 +2 +2 +Inductor_SMD +L_Murata_DEM3512C +Inductor, Murata, DEM3512C, 3.9x3.7x1.2mm, (https://www.murata.com/~/media/webrenewal/products/inductor/chip/tokoproducts/wirewoundferritetypeforpl/m_dem3512c.ashx), generated with kicad-footprint-generator gen_inductor.py +power shielded +0 +2 +2 +Inductor_SMD +L_Murata_DEM3518C +Inductor, Murata, DEM3518C, 3.9x3.7x1.8mm, (https://www.murata.com/~/media/webrenewal/products/inductor/chip/tokoproducts/wirewoundferritetypeforpl/m_dem3518c.ashx), generated with kicad-footprint-generator gen_inductor.py +power shielded +0 +2 +2 +Inductor_SMD +L_Murata_DFE201610P +Inductor, Murata, DFE201610P, 2.0x1.6x1.0mm, (https://www.murata.com/~/media/webrenewal/products/inductor/chip/tokoproducts/wirewoundmetalalloychiptype/m_dfe201610p.ashx), generated with kicad-footprint-generator gen_inductor.py +power chip flatwire +0 +2 +2 +Inductor_SMD +L_Murata_LQH2MCNxxxx02_2.0x1.6mm +Inductor, Murata, LQH2MCN_02 series, 1.6x2.0x0.9mm (https://search.murata.co.jp/Ceramy/image/img/P02/JELF243A-0053.pdf) +chip coil inductor Murata LQH2MC +0 +2 +2 +Inductor_SMD +L_Murata_LQH55DN_5.7x5.0mm +Inductor, SMD, 5.7x5.0x4.7mm, https://search.murata.co.jp/Ceramy/image/img/P02/JELF243A-0045.pdf +inductor smd +0 +2 +2 +Inductor_SMD +L_Neosid_Air-Coil_SML_1turn_HDM0131A +Neosid, Air-Coil, SML, 1turn, HDM0131A, +Neosid Air-Coil SML 1turn HDM0131A +0 +2 +2 +Inductor_SMD +L_Neosid_Air-Coil_SML_2turn_HAM0231A +Neosid, Air-Coil, SML, 2turn, HAM0231A, +Neosid Air-Coil SML 2turn HAM0231A +0 +2 +2 +Inductor_SMD +L_Neosid_Air-Coil_SML_2turn_HDM0231A +Neosid, Air-Coil, SML, 2turn, HDM0231A, +Neosid Air-Coil SML 2turn HDM0231A +0 +2 +2 +Inductor_SMD +L_Neosid_Air-Coil_SML_3turn_HAM0331A +Neosid, Air-Coil, SML, 2turn, HAM0331A, +Neosid Air-Coil SML 3turn HAM0331A +0 +2 +2 +Inductor_SMD +L_Neosid_Air-Coil_SML_3turn_HDM0331A +Neosid, Air-Coil, SML, 3turn, HDM0331A, +Neosid Air-Coil SML 3turn HDM0331A +0 +2 +2 +Inductor_SMD +L_Neosid_Air-Coil_SML_4turn_HAM0431A +Neosid, Air-Coil, SML, 4turn, HAM0431A, +Neosid Air-Coil SML 4turn HAM0431A +0 +2 +2 +Inductor_SMD +L_Neosid_Air-Coil_SML_4turn_HDM0431A +Neosid, Air-Coil, SML, 4turn, HDM0431A, +Neosid Air-Coil SML 4turn HDM0431A +0 +2 +2 +Inductor_SMD +L_Neosid_Air-Coil_SML_5turn_HAM0531A +Neosid, Air-Coil, SML, 5turn, HAM0531A, +Neosid Air-Coil SML 5turn HAM0531A +0 +2 +2 +Inductor_SMD +L_Neosid_Air-Coil_SML_5turn_HDM0531A +Neosid, Air-Coil, SML, 5turn, HDM0531A, +Neosid Air-Coil SML 5turn HDM0531A +0 +2 +2 +Inductor_SMD +L_Neosid_Air-Coil_SML_6-10turn_HAM0631A-HAM1031A +Neosid, Air-Coil, SML, 6-10turn, HAM0631A-HAM1031A, +Neosid Air-Coil SML 6-10turn HAM0631A-HAM1031A +0 +2 +2 +Inductor_SMD +L_Neosid_Air-Coil_SML_6-10turn_HDM0431A-HDM1031A +Neosid, Air-Coil, SML, 6-10turn, HDM0431A-HDM1031A, +Neosid Air-Coil SML 6-10turn HDM0431A-HDM1031A +0 +2 +2 +Inductor_SMD +L_Neosid_Air-Coil_SML_6turn_HAM0631A +Neosid, Air-Coil, SML, 6turn, HAM0631A, +Neosid Air-Coil SML 6turn HAM0631A +0 +2 +2 +Inductor_SMD +L_Neosid_MicroCoil_Ms36-L +Neosid, Micro Coil, Inductor, Ms36-L, SMD, Fixed inductor, anti clockwise, https://neosid.de/en/products/inductors/rod-core-chokes/smd-rod-core-chokes/52026/ms-36/7-h?c=94 +Neosid Micro Coil Inductor Ms36-L SMD Fixed inductor anti clockwise +0 +2 +2 +Inductor_SMD +L_Neosid_Ms42 +Neosid, Inductor, SMs42, Fixed inductor, SMD, magneticaly shielded, https://neosid.de/import-data/product-pdf/neoFestind_Ms42.pdf +Neosid Inductor SMs42 Fixed inductor SMD magneticaly shielded +0 +2 +2 +Inductor_SMD +L_Neosid_Ms50 +Neosid, Power Inductor, Ms50, SMD, Fixed inductor, https://neosid.de/import-data/product-pdf/neoFestind_Ms50.pdf +Neosid Power Inductor Ms50 SMD Fixed inductor +0 +2 +2 +Inductor_SMD +L_Neosid_Ms50T +Neosid, Power Inductor, Ms50T, SMD, Fixed inductor, high temperature, https://neosid.de/import-data/product-pdf/neoFestind_Ms50T.pdf +Neosid Power Inductor Ms50T SMD Fixed inductor high temperature +0 +2 +2 +Inductor_SMD +L_Neosid_Ms85 +Neosid, Ms85, Ms85T, SMD Inductor, Fixed inductor, SMD, https://neosid.de/import-data/product-pdf/neoFestind_Ms85.pdf +Neosid Ms85 Ms85T SMD Inductor Fixed inductor SMD +0 +2 +2 +Inductor_SMD +L_Neosid_Ms85T +Neosid, Ms85, Ms85T, SMD Inductor, Fixed inductor, SMD, https://neosid.de/import-data/product-pdf/neoFestind_Ms85T.pdf +Neosid Ms85 Ms85T SMD Inductor Fixed inductor SMD +0 +2 +2 +Inductor_SMD +L_Neosid_Ms95 +Neosid,Inductor,Ms95, Ms95a, Ms95T, Fixed inductor, SMD, https://neosid.de/import-data/product-pdf/neoFestind_Ms95.pdf +NeosidInductorMs95 Ms95a Ms95T Fixed inductor SMD +0 +2 +2 +Inductor_SMD +L_Neosid_Ms95T +Neosid,Inductor,Ms95, Ms95a, Ms95T, Fixed inductor, SMD, https://neosid.de/import-data/product-pdf/neoFestind_Ms95T.pdf +NeosidInductorMs95 Ms95a Ms95T Fixed inductor SMD +0 +2 +2 +Inductor_SMD +L_Neosid_Ms95a +Neosid,Inductor,Ms95, Ms95a, Ms95T, Fixed inductor, SMD, https://neosid.de/import-data/product-pdf/neoFestind_Ms95a.pdf +NeosidInductorMs95 Ms95a Ms95T Fixed inductor SMD +0 +2 +2 +Inductor_SMD +L_Neosid_SM-NE95H +Neosid, Inductor,SM-NE95H, Fixed inductor, SMD, https://neosid.de/import-data/product-pdf/neoFestind_SMNE95H.pdf +Neosid Inductor SM-NE95H Fixed inductor SMD +0 +2 +2 +Inductor_SMD +L_Neosid_SM-NE127 +Neosid, Inductor, SM-NE127, Fixed inductor, SMD, https://neosid.de/import-data/product-pdf/neoFestind_SMNE127.pdf +Neosid Inductor SM-NE127 Fixed inductor SMD +0 +2 +2 +Inductor_SMD +L_Neosid_SM-NE127_HandSoldering +Neosid, Inductor, SM-NE127, Fixed inductor, SMD, https://neosid.de/import-data/product-pdf/neoFestind_SMNE127.pdf +Neosid Inductor SM-NE127 Fixed inductor SMD +0 +2 +2 +Inductor_SMD +L_Neosid_SM-NE150 +Neosid, Inductor, SM-NE150, Fixed inductor, SMD, https://neosid.de/import-data/product-pdf/neoFestind_SMNE150.pdf +Neosid Inductor SM-NE150 Fixed inductor SMD +0 +2 +2 +Inductor_SMD +L_Neosid_SM-PIC0512H +Neosid, Inductor, PIC0512H, Power Inductor, Fixed inductor, SMD, https://neosid.de/import-data/product-pdf/neoFestind_SMPIC0512H.pdf +Neosid Inductor PIC0512H Power Inductor Fixed inductor SMD +0 +2 +2 +Inductor_SMD +L_Neosid_SM-PIC0602H +Neosid, Power Inductor, SM-PIC0602H, Fixed inductor, SMD, https://neosid.de/import-data/product-pdf/neoFestind_SMPIC0602H.pdf +Neosid Power Inductor SM-PIC0602H Fixed inductor SMD +0 +2 +2 +Inductor_SMD +L_Neosid_SM-PIC0612H +Neosid, Power Inductor, SM-PIC0612H, Fixed inductor, SMD, https://neosid.de/import-data/product-pdf/neoFestind_SMPIC0612H.pdf +Neosid Power Inductor SM-PIC0612H Fixed inductor SMD +0 +2 +2 +Inductor_SMD +L_Neosid_SM-PIC1004H +Neosid, Inductor, SM-PIC1004H, Fixed inductor, SMD, https://neosid.de/import-data/product-pdf/neoFestind_SMPIC1004H.pdf +Neosid Inductor SM-PIC1004H Fixed inductor SMD +0 +2 +2 +Inductor_SMD +L_Neosid_SMS-ME3010 +Neosid, Inductor, SMS-ME3010, Fixed inductor, SMD, magnetically shielded, https://neosid.de/import-data/product-pdf/neoFestind_SMSME3010.pdf +Neosid Inductor SMS-ME3010 Fixed inductor SMD magnetically shielded +0 +2 +2 +Inductor_SMD +L_Neosid_SMS-ME3015 +Neosid, Power Inductor, SMS-ME3015, Fixed inductor, SMD, magnetically shielded, https://neosid.de/import-data/product-pdf/neoFestind_SMSME3015.pdf +Neosid Power Inductor SMS-ME3015 Fixed inductor SMD magnetically shielded +0 +2 +2 +Inductor_SMD +L_Neosid_SMs42 +Neosid, Inductor, SMs42, Fixed inductor, SMD, magneticaly shielded, https://neosid.de/import-data/product-pdf/neoFestind_ma_SMs42.pdf +Neosid Inductor SMs42 Fixed inductor SMD magneticaly shielded +0 +2 +2 +Inductor_SMD +L_Neosid_SMs50 +Neosid, Inductor, SMs50, Fixed inductor, SMD, magneticaly shielded, https://neosid.de/import-data/product-pdf/neoFestind_ma_SMs50.pdf +Neosid Inductor SMs50 Fixed inductor SMD magneticaly shielded +0 +2 +2 +Inductor_SMD +L_Neosid_SMs85 +Neosid, Inductor, SMs85, Fixed inductor, SMD, magnetically shielded, https://neosid.de/import-data/product-pdf/neoFestind_ma_SMs85.pdf +Neosid Inductor SMs85 Fixed inductor SMD magnetically shielded +0 +2 +2 +Inductor_SMD +L_Neosid_SMs95_SMs95p +Neosid, Inductor, SMs95, Fixed inductor, SMD, magnetically shielded, https://neosid.de/import-data/product-pdf/neoFestind_SMs95SMs95p.pdf +Neosid Inductor SMs95 Fixed inductor SMD magnetically shielded +0 +2 +2 +Inductor_SMD +L_Pulse_P059x +1:1, Power Inductor, https://productfinder.pulseelectronics.com/api/open/product-attachments/datasheet/p0599nl +inductor coil choke +0 +4 +4 +Inductor_SMD +L_Pulse_PA4320 +Inductor SMD Pulse PA4320 http://productfinder.pulseeng.com/products/datasheets/P787.pdf +Inductor SMD Pulse PA4320 +0 +2 +2 +Inductor_SMD +L_Pulse_PA4332 +Inductor, Pulse, PA4332, 4.2x4.2x2.0mm, (https://productfinder.pulseelectronics.com/api/open/part-attachments/datasheet/pa4332.222nlt), generated with kicad-footprint-generator gen_inductor.py +Pulse SMT PA4332 +0 +2 +2 +Inductor_SMD +L_Pulse_PA4340 +Inductor, Pulse, PA4340, 6.0x5.4x3.0mm, (https://productfinder.pulseelectronics.com/api/open/part-attachments/datasheet/PA4340.183NLT), generated with kicad-footprint-generator gen_inductor.py +Pulse SMT PA4340 +0 +2 +2 +Inductor_SMD +L_Pulse_PA4341 +Inductor, Pulse, PA4341, 6.4x6.6x2.8mm, (https://productfinder.pulseelectronics.com/api/open/part-attachments/datasheet/pa4341.102anlt), generated with kicad-footprint-generator gen_inductor.py +Pulse SMT PA4341 +0 +2 +2 +Inductor_SMD +L_Pulse_PA4344 +Pulse PA4344 / PM4344 Series SMD Inductors https://productfinder.pulseelectronics.com/api/public/uploads/product-attachments/datasheet_p771_1608107700.pdf +Pulse PA4344 PM4344 Series SMD Inductors +0 +2 +2 +Inductor_SMD +L_Pulse_PA4349 +Shielded Molded High Current Power Inductors 23.5x22mm, https://productfinder.pulseelectronics.com/api/open/product-attachments/datasheet/pa4349.104anlt +Shielded Molded High Current Power Inductor +0 +2 +2 +Inductor_SMD +L_Pulse_PA5402 +Inductor, Pulse, PA5402, 4.45x4.06x1.8mm, (https://productfinder.pulseelectronics.com/api/open/part-attachments/datasheet/PM5402.222NLT), generated with kicad-footprint-generator gen_inductor.py +Pulse SMT PA5402 +0 +2 +2 +Inductor_SMD +L_SOREDE_SNR.1050_10x10x5mm +Sorede 10x10x5mm Power Inductor, https://datasheet.lcsc.com/lcsc/2201141530_SOREDE-SNR-1050-TYD4R7MT00_C2942304.pdf +Inductor Sorede SNR +0 +2 +2 +Inductor_SMD +L_SXN_SMDRI62 +Inductor, SXN, SMDRI62, 6.5x6.8x3.0mm, (https://www.sxndz.com/upload/202108/16/202108161607454319.pdf), generated with kicad-footprint-generator gen_inductor.py +sxn smdri +0 +2 +2 +Inductor_SMD +L_SXN_SMDRI64 +Inductor, SXN, SMDRI64, 6.5x6.8x5.0mm, (https://www.sxndz.com/upload/202108/16/202108161607454319.pdf), generated with kicad-footprint-generator gen_inductor.py +sxn smdri +0 +2 +2 +Inductor_SMD +L_SXN_SMDRI73 +Inductor, SXN, SMDRI73, 7.5x7.5x3.4mm, (https://www.sxndz.com/upload/202108/16/202108161607454319.pdf), generated with kicad-footprint-generator gen_inductor.py +sxn smdri +0 +2 +2 +Inductor_SMD +L_SXN_SMDRI74 +Inductor, SXN, SMDRI74, 7.5x7.5x4.5mm, (https://www.sxndz.com/upload/202108/16/202108161607454319.pdf), generated with kicad-footprint-generator gen_inductor.py +sxn smdri +0 +2 +2 +Inductor_SMD +L_SXN_SMDRI124 +Inductor, SXN, SMDRI124, 12.3x12.3x4.5mm, (https://www.sxndz.com/upload/202108/16/202108161607454319.pdf), generated with kicad-footprint-generator gen_inductor.py +sxn smdri +0 +2 +2 +Inductor_SMD +L_SXN_SMDRI125 +Inductor, SXN, SMDRI125, 12.3x12.3x6.0mm, (https://www.sxndz.com/upload/202108/16/202108161607454319.pdf), generated with kicad-footprint-generator gen_inductor.py +sxn smdri +0 +2 +2 +Inductor_SMD +L_SXN_SMDRI127 +Inductor, SXN, SMDRI127, 12.3x12.3x8.0mm, (https://www.sxndz.com/upload/202108/16/202108161607454319.pdf), generated with kicad-footprint-generator gen_inductor.py +sxn smdri +0 +2 +2 +Inductor_SMD +L_SXN_SMMS1770 +Inductor, SXN, SMMS1770, 17.5x17.15x7.0mm, (https://www.sxndz.com/upload/202406/07/202406071030485268.pdf), generated with kicad-footprint-generator gen_inductor.py +sxn smms +0 +2 +2 +Inductor_SMD +L_Sagami_CER1242B +Inductor, Sagami, h=4.5mm, http://www.sagami-elec.co.jp/file/CER1242B-CER1257B-CER1277B.pdf +inductor sagami cer12xxb smd +0 +2 +2 +Inductor_SMD +L_Sagami_CER1257B +Inductor, Sagami, h=6.0mm, http://www.sagami-elec.co.jp/file/CER1242B-CER1257B-CER1277B.pdf +inductor sagami cer12xxb smd +0 +2 +2 +Inductor_SMD +L_Sagami_CER1277B +Inductor, Sagami, h=8.0mm, http://www.sagami-elec.co.jp/file/CER1242B-CER1257B-CER1277B.pdf +inductor sagami cer12xxb smd +0 +2 +2 +Inductor_SMD +L_Sagami_CWR1242C +Sagami power inductor, CWR1242C, H=4.5mm (http://www.sagami-elec.co.jp/file/16Car_SMDCwr.pdf) +inductor sagami cwr12xx smd +0 +4 +2 +Inductor_SMD +L_Sagami_CWR1257C +Sagami power inductor, CWR1242C, H=6.0mm (http://www.sagami-elec.co.jp/file/16Car_SMDCwr.pdf) +inductor sagami cwr12xx smd +0 +4 +2 +Inductor_SMD +L_Sagami_CWR1277C +Sagami power inductor, CWR1242C, H=7.7mm (http://www.sagami-elec.co.jp/file/16Car_SMDCwr.pdf) +inductor sagami cwr12xx smd +0 +4 +2 +Inductor_SMD +L_SigTra_SC3316F +http://www.signaltransformer.com/sites/all/pdf/smd/P080_SC3316F.pdf +Choke +0 +2 +2 +Inductor_SMD +L_Sumida_CDMC6D28_7.25x6.5mm +SMD Power Inductor (http://products.sumida.com/products/pdf/CDMC6D28.pdf) +Inductor Sumida SMD CDMC6D28 +0 +2 +2 +Inductor_SMD +L_Sumida_CR75 +Inductor, Sumida, 8.1mm × 7.3mm × 5.5 mm, Unshielded, http://products.sumida.com/products/pdf/CR75.pdf +Inductor SMD CR75 Unshielded +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA0402S +Inductor, Sunlord, MWSA0402S, 4.4x4.2x1.8mm, (https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en), generated with kicad-footprint-generator gen_inductor.py +mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA0412S +Inductor, Sunlord, MWSA0412S, 4.4x4.2x1.0mm, (https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en), generated with kicad-footprint-generator gen_inductor.py +mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA0503S +Inductor, Sunlord, MWSA0503S, 5.4x5.2x2.8mm, (https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en), generated with kicad-footprint-generator gen_inductor.py +mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA0518S +Inductor, Sunlord, MWSA0518S, 5.4x5.2x1.6mm, (https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en), generated with kicad-footprint-generator gen_inductor.py +mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA0602S +Inductor, Sunlord, MWSA0602S, 7.0x6.6x1.8mm, (https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en), generated with kicad-footprint-generator gen_inductor.py +mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA0603S +Inductor, Sunlord, MWSA0603S, 7.0x6.6x2.8mm, (https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en), generated with kicad-footprint-generator gen_inductor.py +mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA0604S +Inductor, Sunlord, MWSA0604S, 7.0x6.6x3.8mm, (https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en), generated with kicad-footprint-generator gen_inductor.py +mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA0605S +Inductor, Sunlord, MWSA0605S, 7.0x6.6x4.8mm, (https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en), generated with kicad-footprint-generator gen_inductor.py +mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA0615S +Inductor, Sunlord, MWSA0615S, 7.0x6.6x1.3mm, (https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en), generated with kicad-footprint-generator gen_inductor.py +mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA0618S +Inductor, Sunlord, MWSA0618S, 7.0x6.6x1.6mm, (https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en), generated with kicad-footprint-generator gen_inductor.py +mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA0624S +Inductor, Sunlord, MWSA0624S, 7.0x6.6x2.2mm, (https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en), generated with kicad-footprint-generator gen_inductor.py +mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA0804S +Inductor, Sunlord, MWSA0804S, 8.2x8.8x3.8mm, (https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en), generated with kicad-footprint-generator gen_inductor.py +mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA1003S +Inductor, Sunlord, MWSA1003S, 11.5x10.0x2.8mm, (https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en), generated with kicad-footprint-generator gen_inductor.py +mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA1004S +Inductor, Sunlord, MWSA1004S, 11.0x10.0x3.8mm, (https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en), generated with kicad-footprint-generator gen_inductor.py +mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA1005S +Inductor, Sunlord, MWSA1005S, 11.5x10.0x4.8mm, (https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en), generated with kicad-footprint-generator gen_inductor.py +mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA1204S-1R0 +Inductor, Sunlord, MWSA1204S-1R0, 13.45x12.8x4.0mm, (https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en), generated with kicad-footprint-generator gen_inductor.py +mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA1204S-1R5 +Inductor, Sunlord, MWSA1204S-1R5, 13.45x12.8x4.0mm, (https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en), generated with kicad-footprint-generator gen_inductor.py +mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA1204S-2R2 +Inductor, Sunlord, MWSA1204S-2R2, 13.45x12.8x4.0mm, (https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en), generated with kicad-footprint-generator gen_inductor.py +mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA1204S-3R3 +Inductor, Sunlord, MWSA1204S-3R3, 13.45x12.8x4.0mm, (https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en), generated with kicad-footprint-generator gen_inductor.py +mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA1204S-4R7 +Inductor, Sunlord, MWSA1204S-4R7, 13.45x12.8x4.0mm, (https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en), generated with kicad-footprint-generator gen_inductor.py +mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA1204S-6R8 +Inductor, Sunlord, MWSA1204S-6R8, 13.45x12.8x4.0mm, (https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en), generated with kicad-footprint-generator gen_inductor.py +mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA1204S-100 +Inductor, Sunlord, MWSA1204S-100, 13.45x12.8x4.0mm, (https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en), generated with kicad-footprint-generator gen_inductor.py +mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA1204S-150 +Inductor, Sunlord, MWSA1204S-150, 13.45x12.8x4.0mm, (https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en), generated with kicad-footprint-generator gen_inductor.py +mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA1204S-220 +Inductor, Sunlord, MWSA1204S-220, 13.45x12.8x4.0mm, (https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en), generated with kicad-footprint-generator gen_inductor.py +mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA1204S-R22 +Inductor, Sunlord, MWSA1204S-R22, 13.45x12.8x4.0mm, (https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en), generated with kicad-footprint-generator gen_inductor.py +mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA1204S-R47 +Inductor, Sunlord, MWSA1204S-R47, 13.45x12.8x4.0mm, (https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en), generated with kicad-footprint-generator gen_inductor.py +mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA1204S-R68 +Inductor, Sunlord, MWSA1204S-R68, 13.45x12.8x4.0mm, (https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en), generated with kicad-footprint-generator gen_inductor.py +mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA1204S-R82 +Inductor, Sunlord, MWSA1204S-R82, 13.45x12.8x4.0mm, (https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en), generated with kicad-footprint-generator gen_inductor.py +mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA1205S-1R0 +Inductor, Sunlord, MWSA1205S-1R0, 13.45x12.6x4.8mm, (https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en), generated with kicad-footprint-generator gen_inductor.py +mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA1205S-1R5 +Inductor, Sunlord, MWSA1205S-1R5, 13.45x12.6x4.8mm, (https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en), generated with kicad-footprint-generator gen_inductor.py +mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA1205S-2R2 +Inductor, Sunlord, MWSA1205S-2R2, 13.45x12.6x4.8mm, (https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en), generated with kicad-footprint-generator gen_inductor.py +mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA1205S-3R3 +Inductor, Sunlord, MWSA1205S-3R3, 13.45x12.6x4.8mm, (https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en), generated with kicad-footprint-generator gen_inductor.py +mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA1205S-4R7 +Inductor, Sunlord, MWSA1205S-4R7, 13.45x12.6x4.8mm, (https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en), generated with kicad-footprint-generator gen_inductor.py +mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA1205S-6R8 +Inductor, Sunlord, MWSA1205S-6R8, 13.45x12.6x4.8mm, (https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en), generated with kicad-footprint-generator gen_inductor.py +mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA1205S-100 +Inductor, Sunlord, MWSA1205S-100, 13.45x12.6x4.8mm, (https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en), generated with kicad-footprint-generator gen_inductor.py +mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA1205S-150 +Inductor, Sunlord, MWSA1205S-150, 13.45x12.6x4.8mm, (https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en), generated with kicad-footprint-generator gen_inductor.py +mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA1205S-220 +Inductor, Sunlord, MWSA1205S-220, 13.45x12.6x4.8mm, (https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en), generated with kicad-footprint-generator gen_inductor.py +mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA1205S-330 +Inductor, Sunlord, MWSA1205S-330, 13.45x12.6x4.8mm, (https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en), generated with kicad-footprint-generator gen_inductor.py +mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA1205S-470 +Inductor, Sunlord, MWSA1205S-470, 13.45x12.6x4.8mm, (https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en), generated with kicad-footprint-generator gen_inductor.py +mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA1205S-R22 +Inductor, Sunlord, MWSA1205S-R22, 13.45x12.6x4.8mm, (https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en), generated with kicad-footprint-generator gen_inductor.py +mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA1205S-R36 +Inductor, Sunlord, MWSA1205S-R36, 13.45x12.6x4.8mm, (https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en), generated with kicad-footprint-generator gen_inductor.py +mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA1205S-R50 +Inductor, Sunlord, MWSA1205S-R50, 13.45x12.6x4.8mm, (https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en), generated with kicad-footprint-generator gen_inductor.py +mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA1205S-R68 +Inductor, Sunlord, MWSA1205S-R68, 13.45x12.6x4.8mm, (https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en), generated with kicad-footprint-generator gen_inductor.py +mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA1205S-R82 +Inductor, Sunlord, MWSA1205S-R82, 13.45x12.6x4.8mm, (https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en), generated with kicad-footprint-generator gen_inductor.py +mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA1206S-1R5 +Inductor, Sunlord, MWSA1206S-1R5, 13.45x12.6x5.8mm, (https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en), generated with kicad-footprint-generator gen_inductor.py +mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA1206S-2R2 +Inductor, Sunlord, MWSA1206S-2R2, 13.45x12.6x5.8mm, (https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en), generated with kicad-footprint-generator gen_inductor.py +mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA1206S-3R3 +Inductor, Sunlord, MWSA1206S-3R3, 13.45x12.6x5.8mm, (https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en), generated with kicad-footprint-generator gen_inductor.py +mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA1206S-4R7 +Inductor, Sunlord, MWSA1206S-4R7, 13.45x12.6x5.8mm, (https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en), generated with kicad-footprint-generator gen_inductor.py +mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA1206S-5R6 +Inductor, Sunlord, MWSA1206S-5R6, 13.45x12.6x5.8mm, (https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en), generated with kicad-footprint-generator gen_inductor.py +mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA1206S-6R8 +Inductor, Sunlord, MWSA1206S-6R8, 13.45x12.6x5.8mm, (https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en), generated with kicad-footprint-generator gen_inductor.py +mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA1206S-8R2 +Inductor, Sunlord, MWSA1206S-8R2, 13.45x12.6x5.8mm, (https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en), generated with kicad-footprint-generator gen_inductor.py +mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA1206S-100 +Inductor, Sunlord, MWSA1206S-100, 13.45x12.6x5.8mm, (https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en), generated with kicad-footprint-generator gen_inductor.py +mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA1206S-101 +Inductor, Sunlord, MWSA1206S-101, 13.45x12.6x5.8mm, (https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en), generated with kicad-footprint-generator gen_inductor.py +mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA1206S-120 +Inductor, Sunlord, MWSA1206S-120, 13.45x12.6x5.8mm, (https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en), generated with kicad-footprint-generator gen_inductor.py +mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA1206S-121 +Inductor, Sunlord, MWSA1206S-121, 13.45x12.6x5.8mm, (https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en), generated with kicad-footprint-generator gen_inductor.py +mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA1206S-150 +Inductor, Sunlord, MWSA1206S-150, 13.45x12.6x5.8mm, (https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en), generated with kicad-footprint-generator gen_inductor.py +mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA1206S-151 +Inductor, Sunlord, MWSA1206S-151, 13.45x12.6x5.8mm, (https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en), generated with kicad-footprint-generator gen_inductor.py +mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA1206S-180 +Inductor, Sunlord, MWSA1206S-180, 13.45x12.6x5.8mm, (https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en), generated with kicad-footprint-generator gen_inductor.py +mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA1206S-220 +Inductor, Sunlord, MWSA1206S-220, 13.45x12.6x5.8mm, (https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en), generated with kicad-footprint-generator gen_inductor.py +mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA1206S-270 +Inductor, Sunlord, MWSA1206S-270, 13.45x12.6x5.8mm, (https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en), generated with kicad-footprint-generator gen_inductor.py +mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA1206S-330 +Inductor, Sunlord, MWSA1206S-330, 13.45x12.6x5.8mm, (https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en), generated with kicad-footprint-generator gen_inductor.py +mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA1206S-470 +Inductor, Sunlord, MWSA1206S-470, 13.45x12.6x5.8mm, (https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en), generated with kicad-footprint-generator gen_inductor.py +mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA1206S-680 +Inductor, Sunlord, MWSA1206S-680, 13.45x12.6x5.8mm, (https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en), generated with kicad-footprint-generator gen_inductor.py +mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA1206S-R68 +Inductor, Sunlord, MWSA1206S-R68, 13.45x12.6x5.8mm, (https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en), generated with kicad-footprint-generator gen_inductor.py +mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA1265S +Inductor, Sunlord, MWSA1265S, 13.45x12.6x6.5mm, (https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en), generated with kicad-footprint-generator gen_inductor.py +mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA1707S +Inductor, Sunlord, MWSA1707S, 17.15x17.15x6.7mm, (https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en), generated with kicad-footprint-generator gen_inductor.py +mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA2213S +Inductor, Sunlord, MWSA2213S, 23.5x22.0x12.6mm, (https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en), generated with kicad-footprint-generator gen_inductor.py +mwsa +0 +2 +2 +Inductor_SMD +L_Sunlord_SWPA3010S +Inductor, Sunlord, SWPA3010S, 3.0x3.0x1.0mm, (https://www.sunlordinc.com/UploadFiles/PDF_Cat/20120704094224784.pdf), generated with kicad-footprint-generator gen_inductor.py +swpa +0 +2 +2 +Inductor_SMD +L_Sunlord_SWPA3012S +Inductor, Sunlord, SWPA3012S, 3.0x3.0x1.2mm, (https://www.sunlordinc.com/UploadFiles/PDF_Cat/20120704094224784.pdf), generated with kicad-footprint-generator gen_inductor.py +swpa +0 +2 +2 +Inductor_SMD +L_Sunlord_SWPA3015S +Inductor, Sunlord, SWPA3015S, 3.0x3.0x1.5mm, (https://www.sunlordinc.com/UploadFiles/PDF_Cat/20120704094224784.pdf), generated with kicad-footprint-generator gen_inductor.py +swpa +0 +2 +2 +Inductor_SMD +L_Sunlord_SWPA4010S +Inductor, Sunlord, SWPA4010S, 4.0x4.0x1.0mm, (https://www.sunlordinc.com/UploadFiles/PDF_Cat/20120704094224784.pdf), generated with kicad-footprint-generator gen_inductor.py +swpa +0 +2 +2 +Inductor_SMD +L_Sunlord_SWPA4012S +Inductor, Sunlord, SWPA4012S, 4.0x4.0x1.2mm, (https://www.sunlordinc.com/UploadFiles/PDF_Cat/20120704094224784.pdf), generated with kicad-footprint-generator gen_inductor.py +swpa +0 +2 +2 +Inductor_SMD +L_Sunlord_SWPA4018S +Inductor, Sunlord, SWPA4018S, 4.0x4.0x1.8mm, (https://www.sunlordinc.com/UploadFiles/PDF_Cat/20120704094224784.pdf), generated with kicad-footprint-generator gen_inductor.py +swpa +0 +2 +2 +Inductor_SMD +L_Sunlord_SWPA4020S +Inductor, Sunlord, SWPA4020S, 4.0x4.0x2.0mm, (https://www.sunlordinc.com/UploadFiles/PDF_Cat/20120704094224784.pdf), generated with kicad-footprint-generator gen_inductor.py +swpa +0 +2 +2 +Inductor_SMD +L_Sunlord_SWPA4026S +Inductor, Sunlord, SWPA4026S, 4.0x4.0x2.6mm, (https://www.sunlordinc.com/UploadFiles/PDF_Cat/20120704094224784.pdf), generated with kicad-footprint-generator gen_inductor.py +swpa +0 +2 +2 +Inductor_SMD +L_Sunlord_SWPA4030S +Inductor, Sunlord, SWPA4030S, 4.0x4.0x3.0mm, (https://www.sunlordinc.com/UploadFiles/PDF_Cat/20120704094224784.pdf), generated with kicad-footprint-generator gen_inductor.py +swpa +0 +2 +2 +Inductor_SMD +L_Sunlord_SWPA5012S +Inductor, Sunlord, SWPA5012S, 5.0x5.0x1.2mm, (https://www.sunlordinc.com/UploadFiles/PDF_Cat/20120704094224784.pdf), generated with kicad-footprint-generator gen_inductor.py +swpa +0 +2 +2 +Inductor_SMD +L_Sunlord_SWPA5020S +Inductor, Sunlord, SWPA5020S, 5.0x5.0x2.0mm, (https://www.sunlordinc.com/UploadFiles/PDF_Cat/20120704094224784.pdf), generated with kicad-footprint-generator gen_inductor.py +swpa +0 +2 +2 +Inductor_SMD +L_Sunlord_SWPA5040S +Inductor, Sunlord, SWPA5040S, 5.0x5.0x4.0mm, (https://www.sunlordinc.com/UploadFiles/PDF_Cat/20120704094224784.pdf), generated with kicad-footprint-generator gen_inductor.py +swpa +0 +2 +2 +Inductor_SMD +L_Sunlord_SWPA6020S +Inductor, Sunlord, SWPA6020S, 6.0x6.0x2.0mm, (https://www.sunlordinc.com/UploadFiles/PDF_Cat/20120704094224784.pdf), generated with kicad-footprint-generator gen_inductor.py +swpa +0 +2 +2 +Inductor_SMD +L_Sunlord_SWPA6028S +Inductor, Sunlord, SWPA6028S, 6.0x6.0x2.8mm, (https://www.sunlordinc.com/UploadFiles/PDF_Cat/20120704094224784.pdf), generated with kicad-footprint-generator gen_inductor.py +swpa +0 +2 +2 +Inductor_SMD +L_Sunlord_SWPA6040S +Inductor, Sunlord, SWPA6040S, 6.0x6.0x4.0mm, (https://www.sunlordinc.com/UploadFiles/PDF_Cat/20120704094224784.pdf), generated with kicad-footprint-generator gen_inductor.py +swpa +0 +2 +2 +Inductor_SMD +L_Sunlord_SWPA6045S +Inductor, Sunlord, SWPA6045S, 6.0x6.0x4.5mm, (https://www.sunlordinc.com/UploadFiles/PDF_Cat/20120704094224784.pdf), generated with kicad-footprint-generator gen_inductor.py +swpa +0 +2 +2 +Inductor_SMD +L_Sunlord_SWPA8040S +Inductor, Sunlord, SWPA8040S, 8.0x8.0x4.2mm, (https://www.sunlordinc.com/UploadFiles/PDF_Cat/20120704094224784.pdf), generated with kicad-footprint-generator gen_inductor.py +swpa +0 +2 +2 +Inductor_SMD +L_Sunlord_SWPA252010S +Inductor, Sunlord, SWPA252010S, 2.5x2.0x1.0mm, (https://www.sunlordinc.com/UploadFiles/PDF_Cat/20120704094224784.pdf), generated with kicad-footprint-generator gen_inductor.py +swpa +0 +2 +2 +Inductor_SMD +L_Sunlord_SWPA252012S +Inductor, Sunlord, SWPA252012S, 2.5x2.0x1.2mm, (https://www.sunlordinc.com/UploadFiles/PDF_Cat/20120704094224784.pdf), generated with kicad-footprint-generator gen_inductor.py +swpa +0 +2 +2 +Inductor_SMD +L_Sunlord_SWRB1204S +Inductor, Sunlord, SWRB1204S, 12.5x12.5x5.0mm, (https://www.sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMTA2MTAxMTMyMzc4MTEucGRm&lan=en), generated with kicad-footprint-generator gen_inductor.py +swrb +0 +2 +2 +Inductor_SMD +L_Sunlord_SWRB1205S +Inductor, Sunlord, SWRB1205S, 12.5x12.5x6.0mm, (https://www.sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMTA2MTAxMTMyMzc4MTEucGRm&lan=en), generated with kicad-footprint-generator gen_inductor.py +swrb +0 +2 +2 +Inductor_SMD +L_Sunlord_SWRB1207S +Inductor, Sunlord, SWRB1207S, 12.5x12.5x8.0mm, (https://www.sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMTA2MTAxMTMyMzc4MTEucGRm&lan=en), generated with kicad-footprint-generator gen_inductor.py +swrb +0 +2 +2 +Inductor_SMD +L_TDK_MLZ1608 +Inductor, TDK, MLZ1608, 1.6x0.8x0.8mm, ( "https://product.tdk.com/system/files/dam/doc/product/inductor/inductor/smd/catalog/inductor_commercial_decoupling_mlz1608_en.pdf"), generated with kicad-footprint-generator gen_inductor.py +MLZ +0 +2 +2 +Inductor_SMD +L_TDK_MLZ2012_h0.85mm +Inductor, TDK, MLZ2012_h0.85mm, 2.0x1.25x0.85mm, ( "https://product.tdk.com/system/files/dam/doc/product/inductor/inductor/smd/catalog/inductor_commercial_decoupling_mlz2012_en.pdf"), generated with kicad-footprint-generator gen_inductor.py +MLZ +0 +2 +2 +Inductor_SMD +L_TDK_MLZ2012_h1.25mm +Inductor, TDK, MLZ2012_h1.25mm, 2.0x1.25x1.25mm, ( "https://product.tdk.com/system/files/dam/doc/product/inductor/inductor/smd/catalog/inductor_commercial_decoupling_mlz2012_en.pdf"), generated with kicad-footprint-generator gen_inductor.py +MLZ +0 +2 +2 +Inductor_SMD +L_TDK_NLV25_2.5x2.0mm +TDK NLV25, 2.5x2.0x1.8mm, https://product.tdk.com/info/en/catalog/datasheets/inductor_commercial_standard_nlv25-ef_en.pdf +tdk nlv25 nlcv25 nlfv25 +0 +2 +2 +Inductor_SMD +L_TDK_NLV32_3.2x2.5mm +TDK NLV32, 3.2x2.5x2.2mm, https://product.tdk.com/info/en/catalog/datasheets/inductor_commercial_standard_nlv32-ef_en.pdf +tdk nlv32 nlcv32 nlfv32 +0 +2 +2 +Inductor_SMD +L_TDK_SLF6025 +Inductor, TDK, SLF6025, 6.0mmx6.0mm, https://product.tdk.com/info/en/document/catalog/smd/inductor_commercial_power_slf6025_en.pdf, generated with kicad-footprint-generator StandardBox_generator.py +Inductor TDK_SLF6025 +0 +2 +2 +Inductor_SMD +L_TDK_SLF6028 +Inductor, TDK, SLF6028, 6.0mmx6.0mm, https://product.tdk.com/info/en/document/catalog/smd/inductor_commercial_power_slf6028_en.pdf, generated with kicad-footprint-generator StandardBox_generator.py +Inductor TDK_SLF6028 +0 +2 +2 +Inductor_SMD +L_TDK_SLF6045 +Inductor, TDK, SLF6045, 6.0mmx6.0mm, https://product.tdk.com/info/en/document/catalog/smd/inductor_commercial_power_slf6045_en.pdf, generated with kicad-footprint-generator StandardBox_generator.py +Inductor TDK_SLF6045 +0 +2 +2 +Inductor_SMD +L_TDK_SLF7032 +Inductor, TDK, SLF7032, 7.0mmx7.0mm, https://product.tdk.com/info/en/document/catalog/smd/inductor_commercial_power_slf7032_en.pdf, generated with kicad-footprint-generator StandardBox_generator.py +Inductor TDK_SLF7032 +0 +2 +2 +Inductor_SMD +L_TDK_SLF7045 +Inductor, TDK, SLF7045, 7.0mmx7.0mm, https://product.tdk.com/info/en/document/catalog/smd/inductor_commercial_power_slf7045_en.pdf, generated with kicad-footprint-generator StandardBox_generator.py +Inductor TDK_SLF7045 +0 +2 +2 +Inductor_SMD +L_TDK_SLF7055 +Inductor, TDK, SLF7055, 7.0mmx7.0mm, https://product.tdk.com/info/en/document/catalog/smd/inductor_commercial_power_slf7055_en.pdf, generated with kicad-footprint-generator StandardBox_generator.py +Inductor TDK_SLF7055 +0 +2 +2 +Inductor_SMD +L_TDK_SLF10145 +Inductor, TDK, SLF10145, 10.1mmx10.1mm, https://product.tdk.com/info/en/catalog/datasheets/inductor_automotive_power_slf10145-h_en.pdf, generated with kicad-footprint-generator StandardBox_generator.py +Inductor TDK_SLF10145 +0 +2 +2 +Inductor_SMD +L_TDK_SLF10165 +Inductor, TDK, SLF10165, 10.1mmx10.1mm, https://product.tdk.com/info/en/catalog/datasheets/inductor_commercial_power_slf10165_en.pdf, generated with kicad-footprint-generator StandardBox_generator.py +Inductor TDK_SLF10165 +0 +2 +2 +Inductor_SMD +L_TDK_SLF12555 +Inductor, TDK, SLF12555, 12.5mmx12.5mm, https://product.tdk.com/info/en/catalog/datasheets/inductor_commercial_power_slf12555_en.pdf, generated with kicad-footprint-generator StandardBox_generator.py +Inductor SLF12555 +0 +2 +2 +Inductor_SMD +L_TDK_SLF12565 +Inductor, TDK, SLF12565, 12.5mmx12.5mm, https://product.tdk.com/info/en/catalog/datasheets/inductor_automotive_power_slf12565-h_en.pdf, generated with kicad-footprint-generator StandardBox_generator.py +Inductor SLF12565 +0 +2 +2 +Inductor_SMD +L_TDK_SLF12575 +Inductor, TDK, SLF12575, 12.5mmx12.5mm, https://product.tdk.com/info/en/catalog/datasheets/inductor_automotive_power_slf12575-h_en.pdf, generated with kicad-footprint-generator StandardBox_generator.py +Inductor SLF12575 +0 +2 +2 +Inductor_SMD +L_TDK_VLF10040 +Inductor,TDK, TDK-VLP-8040, 8.6mmx8.6mm +inductor TDK VLP smd VLF10040 +0 +2 +2 +Inductor_SMD +L_TDK_VLP8040 +Inductor,TDK, TDK-VLP-8040, 8.6mmx8.6mm +inductor TDK VLP smd VLP8040 +0 +2 +2 +Inductor_SMD +L_TDK_VLS6045EX_VLS6045AF +Inductor,TDK, VLS-6045, 6x6x4.5mm, https://product.tdk.com/system/files/dam/doc/product/inductor/inductor/smd/catalog/inductor_commercial_power_vls6045ex_en.pdf +inductor TDK VLS SMD VLS6045EF VLS6045AF +0 +2 +2 +Inductor_SMD +L_TaiTech_TMPC1265_13.5x12.5mm +Tai Tech TMPC1265 series SMD inductor https://datasheet.lcsc.com/lcsc/2009171439_TAI-TECH-TMPC1265HP-100MG-D_C305223.pdf, 13.5x12.5x6.2mm +Tai Tech TMPC1265 SMD inductor +0 +2 +2 +Inductor_SMD +L_Taiyo-Yuden_BK_Array_1206_3216Metric +Ferrite Bead Array 4x0603, Taiyo Yuden BK Series (see https://www.yuden.co.jp/productdata/catalog/mlci09_e.pdf) +ferrite bead array +0 +8 +8 +Inductor_SMD +L_Taiyo-Yuden_MD-1616 +Inductor, Taiyo Yuden, MD series, Taiyo-Yuden_MD-1616, 1.6mmx1.6mm +inductor taiyo-yuden md smd +0 +2 +2 +Inductor_SMD +L_Taiyo-Yuden_MD-2020 +Inductor, Taiyo Yuden, MD series, Taiyo-Yuden_MD-2020, 2.0mmx2.0mm +inductor taiyo-yuden md smd +0 +2 +2 +Inductor_SMD +L_Taiyo-Yuden_MD-3030 +Inductor, Taiyo Yuden, MD series, Taiyo-Yuden_MD-3030, 3.0mmx3.0mm +inductor taiyo-yuden md smd +0 +2 +2 +Inductor_SMD +L_Taiyo-Yuden_MD-4040 +Inductor, Taiyo Yuden, MD series, Taiyo-Yuden_MD-4040, 4.0mmx4.0mm +inductor taiyo-yuden md smd +0 +2 +2 +Inductor_SMD +L_Taiyo-Yuden_MD-5050 +Inductor, Taiyo Yuden, MD series, Taiyo-Yuden_MD-5050, 5.0mmx5.0mm +inductor taiyo-yuden md smd +0 +2 +2 +Inductor_SMD +L_Taiyo-Yuden_NR-20xx +Inductor, Taiyo Yuden, NR series, Taiyo-Yuden_NR-20xx, 2.0mmx2.0mm +inductor taiyo-yuden nr smd +0 +2 +2 +Inductor_SMD +L_Taiyo-Yuden_NR-20xx_HandSoldering +Inductor, Taiyo Yuden, NR series, Taiyo-Yuden_NR-20xx, 2.0mmx2.0mm +inductor taiyo-yuden nr smd +0 +2 +2 +Inductor_SMD +L_Taiyo-Yuden_NR-24xx +Inductor, Taiyo Yuden, NR series, Taiyo-Yuden_NR-24xx, 2.4mmx2.4mm +inductor taiyo-yuden nr smd +0 +2 +2 +Inductor_SMD +L_Taiyo-Yuden_NR-24xx_HandSoldering +Inductor, Taiyo Yuden, NR series, Taiyo-Yuden_NR-24xx, 2.4mmx2.4mm +inductor taiyo-yuden nr smd +0 +2 +2 +Inductor_SMD +L_Taiyo-Yuden_NR-30xx +Inductor, Taiyo Yuden, NR series, Taiyo-Yuden_NR-30xx, 3.0mmx3.0mm +inductor taiyo-yuden nr smd +0 +2 +2 +Inductor_SMD +L_Taiyo-Yuden_NR-30xx_HandSoldering +Inductor, Taiyo Yuden, NR series, Taiyo-Yuden_NR-30xx, 3.0mmx3.0mm +inductor taiyo-yuden nr smd +0 +2 +2 +Inductor_SMD +L_Taiyo-Yuden_NR-40xx +Inductor, Taiyo Yuden, NR series, Taiyo-Yuden_NR-40xx, 4.0mmx4.0mm +inductor taiyo-yuden nr smd +0 +2 +2 +Inductor_SMD +L_Taiyo-Yuden_NR-40xx_HandSoldering +Inductor, Taiyo Yuden, NR series, Taiyo-Yuden_NR-40xx, 4.0mmx4.0mm +inductor taiyo-yuden nr smd +0 +2 +2 +Inductor_SMD +L_Taiyo-Yuden_NR-50xx +Inductor, Taiyo Yuden, NR series, Taiyo-Yuden_NR-50xx, 4.9mmx4.9mm +inductor taiyo-yuden nr smd +0 +2 +2 +Inductor_SMD +L_Taiyo-Yuden_NR-50xx_HandSoldering +Inductor, Taiyo Yuden, NR series, Taiyo-Yuden_NR-50xx, 4.9mmx4.9mm +inductor taiyo-yuden nr smd +0 +2 +2 +Inductor_SMD +L_Taiyo-Yuden_NR-60xx +Inductor, Taiyo Yuden, NR series, Taiyo-Yuden_NR-60xx, 6.0mmx6.0mm +inductor taiyo-yuden nr smd +0 +2 +2 +Inductor_SMD +L_Taiyo-Yuden_NR-60xx_HandSoldering +Inductor, Taiyo Yuden, NR series, Taiyo-Yuden_NR-60xx, 6.0mmx6.0mm +inductor taiyo-yuden nr smd +0 +2 +2 +Inductor_SMD +L_Taiyo-Yuden_NR-80xx +Inductor, Taiyo Yuden, NR series, Taiyo-Yuden_NR-80xx, 8.0mmx8.0mm +inductor taiyo-yuden nr smd +0 +2 +2 +Inductor_SMD +L_Taiyo-Yuden_NR-80xx_HandSoldering +Inductor, Taiyo Yuden, NR series, Taiyo-Yuden_NR-80xx, 8.0mmx8.0mm +inductor taiyo-yuden nr smd +0 +2 +2 +Inductor_SMD +L_Taiyo-Yuden_NR-10050_9.8x10.0mm +Inductor, Taiyo Yuden, NR series, Taiyo-Yuden_NR-10050, 9.8mmx10.0mm, https://ds.yuden.co.jp/TYCOMPAS/or/specSheet?pn=NR10050T1R3N +inductor taiyo-yuden nr smd +0 +2 +2 +Inductor_SMD +L_Taiyo-Yuden_NR-10050_9.8x10.0mm_HandSoldering +Inductor, Taiyo Yuden, NR series, Taiyo-Yuden_NR-10050, 9.8mmx10.0mm, https://ds.yuden.co.jp/TYCOMPAS/or/specSheet?pn=NR10050T1R3N +inductor taiyo-yuden nr smd +0 +2 +2 +Inductor_SMD +L_TechFuse_SL0420 +Inductor, TechFuse, SL0420, 4.5x4.1x2.0mm, ( http://www.sealand-pptc.com/product_view.php?r=77), generated with kicad-footprint-generator gen_inductor.py +high-current power shielded +0 +2 +2 +Inductor_SMD +L_TechFuse_SL0520 +Inductor, TechFuse, SL0520, 5.7x5.2x2.0mm, ( http://www.sealand-pptc.com/product_view.php?r=77), generated with kicad-footprint-generator gen_inductor.py +high-current power shielded +0 +2 +2 +Inductor_SMD +L_TechFuse_SL0530 +Inductor, TechFuse, SL0530, 5.7x5.2x3.0mm, ( http://www.sealand-pptc.com/product_view.php?r=77), generated with kicad-footprint-generator gen_inductor.py +high-current power shielded +0 +2 +2 +Inductor_SMD +L_TechFuse_SL0620 +Inductor, TechFuse, SL0620, 7.1x6.6x2.0mm, ( http://www.sealand-pptc.com/product_view.php?r=77), generated with kicad-footprint-generator gen_inductor.py +high-current power shielded +0 +2 +2 +Inductor_SMD +L_TechFuse_SL0624 +Inductor, TechFuse, SL0624, 7.1x6.6x2.4mm, ( http://www.sealand-pptc.com/product_view.php?r=77), generated with kicad-footprint-generator gen_inductor.py +high-current power shielded +0 +2 +2 +Inductor_SMD +L_TechFuse_SL0630 +Inductor, TechFuse, SL0630, 7.1x6.6x3.0mm, ( http://www.sealand-pptc.com/product_view.php?r=77), generated with kicad-footprint-generator gen_inductor.py +high-current power shielded +0 +2 +2 +Inductor_SMD +L_TechFuse_SL0650 +Inductor, TechFuse, SL0650, 7.1x6.6x5.0mm, ( http://www.sealand-pptc.com/product_view.php?r=77), generated with kicad-footprint-generator gen_inductor.py +high-current power shielded +0 +2 +2 +Inductor_SMD +L_TechFuse_SL1040 +Inductor, TechFuse, SL1040, 11.0x10.5x4.0mm, ( http://www.sealand-pptc.com/product_view.php?r=77), generated with kicad-footprint-generator gen_inductor.py +high-current power shielded +0 +2 +2 +Inductor_SMD +L_TechFuse_SL1050 +Inductor, TechFuse, SL1050, 11.0x10.5x5.0mm, ( http://www.sealand-pptc.com/product_view.php?r=77), generated with kicad-footprint-generator gen_inductor.py +high-current power shielded +0 +2 +2 +Inductor_SMD +L_TechFuse_SL1250 +Inductor, TechFuse, SL1250, 13.5x12.8x5.0mm, ( http://www.sealand-pptc.com/product_view.php?r=77), generated with kicad-footprint-generator gen_inductor.py +high-current power shielded +0 +2 +2 +Inductor_SMD +L_TechFuse_SL1265 +Inductor, TechFuse, SL1265, 13.5x12.8x6.5mm, ( http://www.sealand-pptc.com/product_view.php?r=77), generated with kicad-footprint-generator gen_inductor.py +high-current power shielded +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, IHSM-3825, 11.18x6.35x5.72mm, (http://www.vishay.com/docs/34018/ihsm3825.pdf), generated with kicad-footprint-generator gen_inductor.py +wirewound ferrite power +0 +2 +2 +Inductor_SMD +L_Vishay_IHSM-4825 +Inductor, Vishay, IHSM-4825, 13.72x6.35x5.72mm, (http://www.vishay.com/docs/34019/ihsm4825.pdf), generated with kicad-footprint-generator gen_inductor.py +wirewound ferrite power +0 +2 +2 +Inductor_SMD +L_Vishay_IHSM-5832 +Inductor, Vishay, IHSM-5832, 16.26x8.13x7.24mm, (https://www.vishay.com/docs/34020/ihsm-5832.pdf), generated with kicad-footprint-generator gen_inductor.py +wirewound ferrite power +0 +2 +2 +Inductor_SMD +L_Vishay_IHSM-7382 +Inductor, Vishay, Vishay_IHSM-7382, http://www.vishay.com/docs/34021/ihsm7832.pdf, 21.3mmx8.1mm +inductor vishay icsm smd +0 +2 +2 +Inductor_SMD +L_Vishay_IHSM-7832 +Inductor, Vishay, IHSM-7832, 21.34x8.13x7.24mm, (https://www.vishay.com/docs/34021/ihsm7832.pdf), generated with kicad-footprint-generator gen_inductor.py +wirewound ferrite power +0 +2 +2 +Inductor_SMD +L_Walsin_WLFM201209x +Inductor, Walsin, WLFM201209x, 2.0x1.25x0.9mm, (http://www.passivecomponent.com/wp-content/uploads/inductor/WLFM_C_series.pdf), generated with kicad-footprint-generator gen_inductor.py +ferrite multilayer power +0 +2 +2 +Inductor_SMD +L_Walsin_WLFM201609x +Inductor, Walsin, WLFM201609x, 2.0x1.6x0.9mm, (http://www.passivecomponent.com/wp-content/uploads/inductor/WLFM_C_series.pdf), generated with kicad-footprint-generator gen_inductor.py +ferrite multilayer power +0 +2 +2 +Inductor_SMD +L_Walsin_WLFM252009x +Inductor, Walsin, WLFM252009x, 2.5x2.0x0.9mm, (http://www.passivecomponent.com/wp-content/uploads/inductor/WLFM_C_series.pdf), generated with kicad-footprint-generator gen_inductor.py +ferrite multilayer power +0 +2 +2 +Inductor_SMD +L_Wuerth_HCF-2013 +7443630070, http://katalog.we-online.de/pbs/datasheet/7443630070.pdf +inductor shielded wuerth hcf +0 +3 +2 +Inductor_SMD +L_Wuerth_HCF-2815 +74436410150, http://katalog.we-online.de/pbs/datasheet/74436410150.pdf +inductor shielded wuerth hcf +0 +3 +2 +Inductor_SMD +L_Wuerth_HCF-2818 +7443640330, http://katalog.we-online.de/pbs/datasheet/7443640330.pdf +inductor shielded wuerth hcf +0 +3 +2 +Inductor_SMD +L_Wuerth_HCI-1030 +Inductor, Wuerth, HCI-1030, 10.6x10.6x2.8mm, (https://www.we-online.com/components/products/datasheet/744323020.pdf), generated with kicad-footprint-generator gen_inductor.py +flat-wire shielded Würth SMT +0 +2 +2 +Inductor_SMD +L_Wuerth_HCI-1040 +Inductor, Wuerth, HCI-1040, 10.2x10.2x4.0mm, (https://www.we-online.com/components/products/datasheet/744355215.pdf), generated with kicad-footprint-generator gen_inductor.py +flat-wire shielded Würth SMT +0 +2 +2 +Inductor_SMD +L_Wuerth_HCI-1050 +Inductor, Wuerth, HCI-1050, 10.1x10.1x4.7mm, (https://www.we-online.com/components/products/datasheet/744325016.pdf), generated with kicad-footprint-generator gen_inductor.py +flat-wire shielded Würth SMT +0 +2 +2 +Inductor_SMD +L_Wuerth_HCI-1335 +Inductor, Wuerth, HCI-1335, 12.8x12.8x3.3mm, (https://www.we-online.com/components/products/datasheet/744313025.pdf), generated with kicad-footprint-generator gen_inductor.py +flat-wire shielded Würth SMT +0 +2 +2 +Inductor_SMD +L_Wuerth_HCI-1350 +Inductor, Wuerth, HCI-1350, 12.8x12.8x4.7mm, (https://www.we-online.com/components/products/datasheet/744355019.pdf), generated with kicad-footprint-generator gen_inductor.py +flat-wire shielded Würth SMT +0 +2 +2 +Inductor_SMD +L_Wuerth_HCI-1365 +Inductor, Wuerth, HCI-1365, 12.8x12.8x6.2mm, (https://www.we-online.com/components/products/datasheet/744355122.pdf), generated with kicad-footprint-generator gen_inductor.py +flat-wire shielded Würth SMT +0 +2 +2 +Inductor_SMD +L_Wuerth_HCI-1890 +Inductor, Wuerth, HCI-1890, 18.2x18.2x8.9mm, (https://www.we-online.com/components/products/datasheet/7443556082.pdf), generated with kicad-footprint-generator gen_inductor.py +flat-wire shielded Würth SMT +0 +2 +2 +Inductor_SMD +L_Wuerth_HCI-2212 +Inductor, Wuerth, HCI-2212, 22.5x22.0x12.0mm, (https://www.we-online.com/components/products/datasheet/74435580330.pdf), generated with kicad-footprint-generator gen_inductor.py +flat-wire shielded Würth SMT +0 +2 +2 +Inductor_SMD +L_Wuerth_HCI-5040 +Inductor, Wuerth, HCI-5040, 5.5x5.3x4.0mm, (https://www.we-online.com/components/products/datasheet/744316022.pdf), generated with kicad-footprint-generator gen_inductor.py +flat-wire shielded Würth SMT +0 +2 +2 +Inductor_SMD +L_Wuerth_HCI-7030 +Inductor, Wuerth, HCI-7030, 6.9x6.9x3.0mm, (https://www.we-online.com/components/products/datasheet/744310013.pdf), generated with kicad-footprint-generator gen_inductor.py +flat-wire shielded Würth SMT +0 +2 +2 +Inductor_SMD +L_Wuerth_HCI-7040 +Inductor, Wuerth, HCI-7040, 6.9x6.9x3.8mm, (https://www.we-online.com/components/products/datasheet/744311022.pdf), generated with kicad-footprint-generator gen_inductor.py +flat-wire shielded Würth SMT +0 +2 +2 +Inductor_SMD +L_Wuerth_HCI-7050 +Inductor, Wuerth, HCI-7050, 6.9x6.9x4.8mm, (https://www.we-online.com/components/products/datasheet/744314024.pdf), generated with kicad-footprint-generator gen_inductor.py +flat-wire shielded Würth SMT +0 +2 +2 +Inductor_SMD +L_Wuerth_HCM-1050 +Inductor, Wuerth, HCM-1050, 10.0x7.0x5.0mm, (https://www.we-online.com/components/products/datasheet/744303012.pdf), generated with kicad-footprint-generator gen_inductor.py +shielded Würth SMT +0 +2 +2 +Inductor_SMD +L_Wuerth_HCM-1052 +Inductor, Wuerth, HCM-1052, 10.3x10.3x5.0mm, (https://www.we-online.com/components/products/datasheet/744306020.pdf), generated with kicad-footprint-generator gen_inductor.py +shielded Würth SMT +0 +2 +2 +Inductor_SMD +L_Wuerth_HCM-1070 +Inductor, Wuerth, HCM-1070, 10.0x7.0x6.8mm, (https://www.we-online.com/components/products/datasheet/744308015.pdf), generated with kicad-footprint-generator gen_inductor.py +shielded Würth SMT +0 +2 +2 +Inductor_SMD +L_Wuerth_HCM-1078 +Inductor, Wuerth, HCM-1078, 9.4x6.2x7.8mm, (https://www.we-online.com/components/products/datasheet/7443081010.pdf), generated with kicad-footprint-generator gen_inductor.py +shielded Würth SMT +0 +2 +2 +Inductor_SMD +L_Wuerth_HCM-1190 +Inductor, Wuerth, HCM-1190, 10.5x11.0x8.9mm, (https://www.we-online.com/components/products/datasheet/744301025.pdf), generated with kicad-footprint-generator gen_inductor.py +shielded Würth SMT +0 +2 +2 +Inductor_SMD +L_Wuerth_HCM-1240 +Inductor, Wuerth, HCM-1240, 10.0x11.8x3.8mm, (https://www.we-online.com/components/products/datasheet/744304010.pdf), generated with kicad-footprint-generator gen_inductor.py +shielded Würth SMT +0 +2 +2 +Inductor_SMD +L_Wuerth_HCM-1350 +Inductor, Wuerth, HCM-1350, 13.3x13.3x5.0mm, (https://www.we-online.com/components/products/datasheet/744305022.pdf), generated with kicad-footprint-generator gen_inductor.py +shielded Würth SMT +0 +2 +2 +Inductor_SMD +L_Wuerth_HCM-1390 +Inductor, Wuerth, HCM-1390, 12.5x13.0x9.0mm, (https://www.we-online.com/components/products/datasheet/744309012.pdf), generated with kicad-footprint-generator gen_inductor.py +shielded Würth SMT +0 +2 +2 +Inductor_SMD +L_Wuerth_HCM-7050 +Inductor, Wuerth, HCM-7050, 7.0x7.0x5.0mm, (https://www.we-online.com/components/products/datasheet/744302007.pdf), generated with kicad-footprint-generator gen_inductor.py +shielded Würth SMT +0 +2 +2 +Inductor_SMD +L_Wuerth_HCM-7070 +Inductor, Wuerth, HCM-7070, 7.0x7.0x7.0mm, (https://www.we-online.com/components/products/datasheet/744307012.pdf), generated with kicad-footprint-generator gen_inductor.py +shielded Würth SMT +0 +2 +2 +Inductor_SMD +L_Wuerth_MAPI-1610 +Inductor, Wuerth, MAPI-1610, 1.6x1.6x1.0mm, (https://www.we-online.com/en/components/products/WE-MAPI?kicad), generated with kicad-footprint-generator gen_inductor.py +Würth -SMT +0 +2 +2 +Inductor_SMD +L_Wuerth_MAPI-2010 +Inductor, Wuerth, MAPI-2010, 2.0x1.6x1.0mm, (https://www.we-online.com/en/components/products/WE-MAPI?kicad), generated with kicad-footprint-generator gen_inductor.py +Würth -SMT +0 +2 +2 +Inductor_SMD +L_Wuerth_MAPI-2506 +Inductor, Wuerth, MAPI-2506, 2.5x2.0x0.6mm, (https://www.we-online.com/en/components/products/WE-MAPI?kicad), generated with kicad-footprint-generator gen_inductor.py +Würth -SMT +0 +2 +2 +Inductor_SMD +L_Wuerth_MAPI-2508 +Inductor, Wuerth, MAPI-2508, 2.5x2.0x0.8mm, (https://www.we-online.com/en/components/products/WE-MAPI?kicad), generated with kicad-footprint-generator gen_inductor.py +Würth -SMT +0 +2 +2 +Inductor_SMD +L_Wuerth_MAPI-2510 +Inductor, Wuerth, MAPI-2510, 2.5x2.0x1.0mm, (https://www.we-online.com/en/components/products/WE-MAPI?kicad), generated with kicad-footprint-generator gen_inductor.py +Würth -SMT +0 +2 +2 +Inductor_SMD +L_Wuerth_MAPI-2512 +Inductor, Wuerth, MAPI-2512, 2.5x2.0x1.2mm, (https://www.we-online.com/en/components/products/WE-MAPI?kicad), generated with kicad-footprint-generator gen_inductor.py +Würth -SMT +0 +2 +2 +Inductor_SMD +L_Wuerth_MAPI-3010 +Inductor, Wuerth, MAPI-3010, 3.0x3.0x1.0mm, (https://www.we-online.com/en/components/products/WE-MAPI?kicad), generated with kicad-footprint-generator gen_inductor.py +Würth -SMT +0 +2 +2 +Inductor_SMD +L_Wuerth_MAPI-3012 +Inductor, Wuerth, MAPI-3012, 3.0x3.0x1.2mm, (https://www.we-online.com/en/components/products/WE-MAPI?kicad), generated with kicad-footprint-generator gen_inductor.py +Würth -SMT +0 +2 +2 +Inductor_SMD +L_Wuerth_MAPI-3015 +Inductor, Wuerth, MAPI-3015, 3.0x3.0x1.5mm, (https://www.we-online.com/en/components/products/WE-MAPI?kicad), generated with kicad-footprint-generator gen_inductor.py +Würth -SMT +0 +2 +2 +Inductor_SMD +L_Wuerth_MAPI-3020 +Inductor, Wuerth, MAPI-3020, 3.0x3.0x2.0mm, (https://www.we-online.com/en/components/products/WE-MAPI?kicad), generated with kicad-footprint-generator gen_inductor.py +Würth -SMT +0 +2 +2 +Inductor_SMD +L_Wuerth_MAPI-4020 +Inductor, Wuerth, MAPI-4020, 4.1x4.1x2.1mm, (https://www.we-online.com/en/components/products/WE-MAPI?kicad), generated with kicad-footprint-generator gen_inductor.py +Würth -SMT +0 +2 +2 +Inductor_SMD +L_Wuerth_MAPI-4030 +Inductor, Wuerth, MAPI-4030, 4.1x4.1x3.1mm, (https://www.we-online.com/en/components/products/WE-MAPI?kicad), generated with kicad-footprint-generator gen_inductor.py +Würth -SMT +0 +2 +2 +Inductor_SMD +L_Wuerth_MAPI-5020 +Inductor, Wuerth, MAPI-5020, 5.4x5.4x2.1mm, (https://www.we-online.com/en/components/products/WE-MAPI?kicad), generated with kicad-footprint-generator gen_inductor.py +Würth -SMT +0 +2 +2 +Inductor_SMD +L_Wuerth_MAPI-5030 +Inductor, Wuerth, MAPI-5030, 5.4x5.4x3.1mm, (https://www.we-online.com/en/components/products/WE-MAPI?kicad), generated with kicad-footprint-generator gen_inductor.py +Würth -SMT +0 +2 +2 +Inductor_SMD +L_Wuerth_WE-DD-Typ-L-Typ-XL-Typ-XXL +Shielded Coupled Inductor, Wuerth Elektronik, WE-DD, SMD, Typ L, Typ XL, Typ XXL, https://katalog.we-online.com/pbs/datasheet/744874001.pdf +Choke Coupled Double Inductor SMD Wuerth WE-DD TypL TypXL TypXXL +0 +4 +4 +Inductor_SMD +L_Wuerth_WE-DD-Typ-M-Typ-S +Shielded Coupled Inductor, Wuerth Elektronik, WE-DD, SMD, Typ M, Typ S, https://katalog.we-online.com/pbs/datasheet/744878001.pdf, https://katalog.we-online.de/pbs/datasheet/744877001.pdf +Choke Coupled Double Inductor SMD Wuerth WE-DD TypM TypS +0 +4 +4 +Inductor_SMD +L_Wuerth_WE-GF-1210 +Unshielded Inductor, Wuerth Elektronik, WE-GF, SMD, 1210, https://www.we-online.de/katalog/datasheet/74476401.pdf +Unshielded Inductor WE-GF 1210 Wuerth +0 +2 +2 +Inductor_SMD +L_Wuerth_WE-PD-Typ-7345 +Shielded Power Inductor, Wuerth Elektronik, WE-PD, SMD, 7345, https://katalog.we-online.com/pbs/datasheet/744777001.pdf +Choke Shielded Power Inductor WE-PD 7345 Wuerth +0 +2 +2 +Inductor_SMD +L_Wuerth_WE-PD-Typ-LS +Shielded Power Inductor, Wuerth Elektronik, WE-PD, SMD, Typ LS, https://katalog.we-online.com/pbs/datasheet/7447715906.pdf +Choke Shielded Power Inductor WE-PD TypLS Wuerth +0 +2 +2 +Inductor_SMD +L_Wuerth_WE-PD-Typ-LS_Handsoldering +Shielded Power Inductor, Wuerth Elektronik, WE-PD, SMD, Typ LS, Handsoldering, https://katalog.we-online.com/pbs/datasheet/7447715906.pdf +Choke Shielded Power Inductor WE-PD TypLS Wuerth +0 +2 +2 +Inductor_SMD +L_Wuerth_WE-PD-Typ-M-Typ-S +Shielded Power Inductor, Wuerth Elektronik, WE-PD, SMT, Typ M, Typ S, https://katalog.we-online.com/pbs/datasheet/744778005.pdf +Choke Shielded Power Inductor WE-PD TypM TypS Wuerth +0 +2 +2 +Inductor_SMD +L_Wuerth_WE-PD-Typ-M-Typ-S_Handsoldering +Shielded Power Inductor, Wuerth Elektronik, WE-PD, SMT, Typ M, Typ S, Handsoldering, https://katalog.we-online.com/pbs/datasheet/744778005.pdf +Choke Shielded Power Inductor WE-PD TypM TypS Wuerth +0 +2 +2 +Inductor_SMD +L_Wuerth_WE-PD2-Typ-L +Power Inductor, Wuerth Elektronik, WE-PD2, SMD, Typ L, , https://katalog.we-online.com/pbs/datasheet/74477510.pdf +Choke Power Inductor WE-PD2 TypL Wuerth +0 +2 +2 +Inductor_SMD +L_Wuerth_WE-PD2-Typ-MS +Power Inductor, Wuerth Elektronik, WE-PD2, SMD, Typ MS, https://katalog.we-online.com/pbs/datasheet/744774022.pdf +Choke Power Inductor WE-PD2 TypMS Wuerth +0 +2 +2 +Inductor_SMD +L_Wuerth_WE-PD2-Typ-XL +Power Inductor, Wuerth Elektronik, WE-PD2, SMT, Typ XL, https://katalog.we-online.com/pbs/datasheet/744776012.pdf +Choke Power Inductor WE-PD2 TypXL Wuerth +0 +2 +2 +Inductor_SMD +L_Wuerth_WE-PD4-Typ-X +Power Inductor, Wuerth Elektronik, WE-PD4, SMT, Typ X, https://katalog.we-online.de/pbs/datasheet/74458001.pdf +Choke Power Inductor WE-PD4 TypX Wuerth +0 +2 +2 +Inductor_SMD +L_Wuerth_WE-PDF +Shielded Power Inductor, Wuerth Elektronik, WE-PDF, SMD, https://katalog.we-online.de/pbs/datasheet/7447797022.pdf +Choke Shielded Power Inductor WE-PDF Wuerth +0 +2 +2 +Inductor_SMD +L_Wuerth_WE-PDF_Handsoldering +Shielded Power Inductor, Wuerth Elektronik, WE-PDF, SMD, Handsoldering, https://katalog.we-online.de/pbs/datasheet/7447797022.pdf +Choke Shielded Power Inductor WE-PDF Wuerth Handsoldering +0 +2 +2 +Inductor_SMD +L_Wuerth_WE-TPC-3816 +L_Wuerth_WE-TPC-3816 StepUp generated footprint, http://katalog.we-online.de/pbs/datasheet/7440310047.pdf +wurth wuerth smd inductor +0 +2 +2 +Inductor_SMD +L_Wuerth_WE-XHMI-8080 +Inductor, Wuerth, WE-XHMI 8080, 8.3mmx8.8mm, https://katalog.we-online.de/pbs/datasheet/74439358068.pdf, generated with kicad-footprint-generator StandardBox_generator.py +Inductor Wuerth WE-XHMI 8080 +0 +2 +2 +Inductor_SMD +L_Wuerth_XHMI-6060 +Inductor, Wuerth, XHMI-6060, 6.65x6.45x5.8mm, (https://www.we-online.com/components/products/datasheet/74439346068.pdf), generated with kicad-footprint-generator gen_inductor.py +Würth -SMT +0 +2 +2 +Inductor_SMD +L_Wuerth_XHMI-8080 +Inductor, Wuerth, XHMI-8080, 8.8x8.3x7.8mm, (https://www.we-online.com/components/products/datasheet/74439358068.pdf), generated with kicad-footprint-generator gen_inductor.py +Würth -SMT +0 +2 +2 +Inductor_SMD +L_Wurth_WE-CAIR-5910 +WE-CAIR Air coil, https://www.we-online.com/components/products/datasheet/744918254.pdf +air coil inductor wurth we cair +0 +2 +2 +Inductor_SMD_Wurth +L_Wurth_WE-LQSH-2010 +Semi-Shielded High Saturation Power Inductor, body 2x1.6mm, https://www.we-online.com/catalog/en/WE-LQSH#/articles/WE-LQSH-2010 +SMT +0 +2 +2 +Inductor_SMD_Wurth +L_Wurth_WE-LQSH-2512 +Semi-Shielded High Saturation Power Inductor, body 2.5x2mm, https://www.we-online.com/catalog/en/WE-LQSH#/articles/WE-LQSH-2512 +SMT +0 +2 +2 +Inductor_SMD_Wurth +L_Wurth_WE-LQSH-3012 +Semi-Shielded High Saturation Power Inductor, body 3x3mm, https://www.we-online.com/catalog/en/WE-LQSH#/articles/WE-LQSH-3012 +SMT +0 +2 +2 +Inductor_SMD_Wurth +L_Wurth_WE-LQSH-4020 +Semi-Shielded High Saturation Power Inductor, body 4x4mm, https://www.we-online.com/catalog/en/WE-LQSH#/articles/WE-LQSH-4020 +SMT +0 +2 +2 +Inductor_THT +Choke_EPCOS_B82722A +Current-Compensated Ring Core Double Chokes, EPCOS, B82722A, 22.3mmx22.7mm, https://en.tdk.eu/inf/30/db/ind_2008/b82722a_j.pdf +chokes epcos tht +0 +4 +4 +Inductor_THT +Choke_Schaffner_RN102-04-14.0x14.0mm +Current-compensated Chokes, Schaffner, RN102-04, 14.0mmx14.0mm https://www.schaffner.com/products/download/product/datasheet/rn-series-common-mode-chokes-new/ +chokes schaffner tht +0 +4 +4 +Inductor_THT +Choke_Schaffner_RN112-04-17.7x17.1mm +Current-compensated Chokes, Schaffner, RN112-04, 17.7mmx17.1mm https://www.schaffner.com/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_PulseElectronics_PH9455x105NL_1 +common mode, inductor, filter, https://productfinder.pulseelectronics.com/api/open/product-attachments/datasheet/ph9455.105nl +cmode choke dual +0 +4 +4 +Inductor_THT +L_CommonMode_PulseElectronics_PH9455x155NL_1 +common mode, inductor, filter, https://productfinder.pulseelectronics.com/api/open/product-attachments/datasheet/ph9455.105nl +cmode choke dual +0 +4 +4 +Inductor_THT +L_CommonMode_PulseElectronics_PH9455x205NL_1 +common mode, inductor, filter, https://productfinder.pulseelectronics.com/api/open/product-attachments/datasheet/ph9455.105nl +cmode choke dual +0 +4 +4 +Inductor_THT +L_CommonMode_PulseElectronics_PH9455x405NL_1 +common mode, inductor, filter, https://productfinder.pulseelectronics.com/api/open/product-attachments/datasheet/ph9455.105nl +cmode choke dual +0 +4 +4 +Inductor_THT +L_CommonMode_PulseElectronics_PH9455x705NL_1 +common mode, inductor, filter, https://productfinder.pulseelectronics.com/api/open/product-attachments/datasheet/ph9455.105nl +cmode choke dual +0 +4 +4 +Inductor_THT +L_CommonMode_PulseElectronics_PH9455xxx6NL_2 +common mode, inductor, filter, https://productfinder.pulseelectronics.com/api/open/product-attachments/datasheet/ph9455.105nl +cmode choke dual +0 +4 +4 +Inductor_THT +L_CommonMode_TDK_B82746S4143A040 +13A, 3Phase, Triple Coil, CM Choke, https://www.tdk-electronics.tdk.com/inf/30/ds/b82746s.pdf +common mode filter triple choke +0 +6 +6 +Inductor_THT +L_CommonMode_TDK_B82746S6702A040 +8A, 3Phase, Triple Coil, CM Choke, https://www.tdk-electronics.tdk.com/inf/30/ds/b82746s.pdf +common mode filter triple choke +0 +6 +6 +Inductor_THT +L_CommonMode_TDK_B82747E6163A040 +16A, 3Phase, Triple Coil, CM Choke, drill hole 2mm ( https://product.tdk.com/system/files/dam/doc/product/emc/emc/line-filter/data_sheet/30/ds/b82747e6.pdf ) +three phase common mode triple choke +0 +6 +6 +Inductor_THT +L_CommonMode_TDK_B82747E6203A040 +20A, 3Phase, Triple Coil, CM Choke, drill hole 2.2mm ( https://product.tdk.com/system/files/dam/doc/product/emc/emc/line-filter/data_sheet/30/ds/b82747e6.pdf ) +three phase common mode triple choke +0 +6 +6 +Inductor_THT +L_CommonMode_TDK_B82747E6253A040 +25A, 3Phase, Triple Coil, CM Choke, drill hole 2.44mm ( https://product.tdk.com/system/files/dam/doc/product/emc/emc/line-filter/data_sheet/30/ds/b82747e6.pdf ) +three phase common mode triple choke +0 +6 +6 +Inductor_THT +L_CommonMode_TDK_B82747E6353A040 +35A, 3Phase, Triple Coil, CM Choke, drill hole 3mm ( https://product.tdk.com/system/files/dam/doc/product/emc/emc/line-filter/data_sheet/30/ds/b82747e6.pdf ) +three phase common mode triple choke +0 +6 +6 +Inductor_THT +L_CommonMode_TDK_B82767S4123N030 +12A, 3Phase N, Quadruple Coil, https://www.tdk-electronics.tdk.com/inf/30/ds/b82767s4.pdf +common mode filter quadruple choke +0 +8 +8 +Inductor_THT +L_CommonMode_TDK_B82767S4193N030 +19A, 3Phase N, Quadruple Coil, https://www.tdk-electronics.tdk.com/inf/30/ds/b82767s4.pdf +common mode filter quadruple choke +0 +8 +8 +Inductor_THT +L_CommonMode_TDK_B82767S4263N030 +26A , 3Phase N, Quadruple Coil, https://www.tdk-electronics.tdk.com/inf/30/ds/b82767s4.pdf +common mode filter quadruple choke +0 +8 +8 +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 +40A, 3Phase, Triple Coil, 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 +40A, 3Phase, Triple Coil, CM Choke, https://vacuumschmelze.com/03_Documents/Datasheets%20-%20Drawings/Commom-Mode-Chokes/6123-X240.pdf +common mode filter triple choke +0 +6 +6 +Inductor_THT +L_CommonMode_VAC_T60405-S6123-X402 +30A, 3Phase N, Quadruple Coil, CM Choke, https://vacuumschmelze.com/03_Documents/Datasheets%20-%20Drawings/Commom-Mode-Chokes/6123-X402.pdf +common mode filter quadruple choke +0 +8 +8 +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, https://www.lodestonepacific.com/wp-content/uploads/2020/07/VTM-Series-Full-Page.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, https://www.lodestonepacific.com/wp-content/uploads/2020/07/VTM-Series-Full-Page.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, https://www.lodestonepacific.com/wp-content/uploads/2020/07/VTM-Series-Full-Page.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, https://www.lodestonepacific.com/wp-content/uploads/2020/07/VTM-Series-Full-Page.pdf +vertical inductor toroid mount +0 +4 +4 +Inductor_THT +L_Mount_Lodestone_VTM950-6 +Lodestone Pacific, vertical toroid mount, 11x19mm, 6 pins, https://www.lodestonepacific.com/wp-content/uploads/2021/05/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, height=4.6mm, http://www.abracon.com/Magnetics/radial/AIUR-07.pdf +Inductor Radial series Radial pin pitch 4.00mm diameter 6.0mm height 4.6mm +0 +2 +2 +Inductor_THT +L_Radial_D7.0mm_P3.00mm +Inductor, Radial series, Radial, pin pitch=3.00mm, diameter=7mm, height=9.5mm, http://www.abracon.com/Magnetics/radial/AIUR-16.pdf +Inductor Radial series Radial pin pitch 3.00mm diameter 7mm height 9.5mm +0 +2 +2 +Inductor_THT +L_Radial_D7.2mm_P3.00mm_Murata_1700 +Inductor, Radial series, Radial, pin pitch=3.00mm, diameter=7.2mm, height=8.5mm, Murata, 1700, http://www.murata-ps.com/data/magnetics/kmp_1700.pdf +Inductor Radial series Radial pin pitch 3.00mm diameter 7.2mm height 8.5mm 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, height=12.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 height 12.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, height=12.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 height 12.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, height=7.5mm, Fastron, 07HCP, http://www.abracon.com/Magnetics/radial/AISR875.pdf +Inductor Radial series Radial pin pitch 5.00mm diameter 7.8mm height 7.5mm 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, height=10mm, Fastron, 07HCP, http://cdn-reichelt.de/documents/datenblatt/B400/DS_07HCP.pdf +Inductor Radial series Radial pin pitch 5.00mm diameter 8.7mm height 10mm 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, height=10mm, 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 height 10mm 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, height=12.7mm, 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 height 12.7mm 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, height=12.5mm, 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 height 12.5mm 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, height=19.5mm, Neosid, SD12, style3, http://www.neosid.de/produktblaetter/neosid_Festinduktivitaet_Sd12.pdf +Inductor Radial series Radial pin pitch 5.00mm diameter 10.0mm height 19.5mm 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, height=12.5mm, Neosid, SD12k, style3, http://www.neosid.de/produktblaetter/neosid_Festinduktivitaet_Sd12k.pdf +Inductor Radial series Radial pin pitch 5.00mm diameter 10.0mm height 12.5mm 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, height=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 height 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, height=16mm, Fastron, 11P, http://cdn-reichelt.de/documents/datenblatt/B400/DS_11P.pdf +Inductor Radial series Radial pin pitch 5.00mm diameter 12.0mm height 16mm 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, height=20mm, Neosid, SD12, style2, http://www.neosid.de/produktblaetter/neosid_Festinduktivitaet_Sd12.pdf +Inductor Radial series Radial pin pitch 5.00mm diameter 12.0mm height 20mm 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, height=13mm, Neosid, SD12k, style2, http://www.neosid.de/produktblaetter/neosid_Festinduktivitaet_Sd12k.pdf +Inductor Radial series Radial pin pitch 5.00mm diameter 12.0mm height 13mm 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, height=21mm, Murata, 1900R, http://www.murata-ps.com/data/magnetics/kmp_1900r.pdf +Inductor Radial series Radial pin pitch 6.00mm diameter 12.0mm height 21mm 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, height=20mm, Neosid, SD12, style1, http://www.neosid.de/produktblaetter/neosid_Festinduktivitaet_Sd12.pdf +Inductor Radial series Radial pin pitch 10.00mm diameter 12.0mm height 20mm 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, height=13mm, Neosid, SD12k, style1, http://www.neosid.de/produktblaetter/neosid_Festinduktivitaet_Sd12k.pdf +Inductor Radial series Radial pin pitch 10.00mm diameter 12.0mm height 13mm 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, height=10.8mm, Fastron, 09HCP, http://cdn-reichelt.de/documents/datenblatt/B400/DS_09HCP.pdf +Inductor Radial series Radial pin pitch 7.00mm diameter 12.5mm height 10.8mm 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, height=10.8mm, Fastron, 09HCP, http://cdn-reichelt.de/documents/datenblatt/B400/DS_09HCP.pdf +Inductor Radial series Radial pin pitch 9.00mm diameter 12.5mm height 10.8mm 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, height=10.8mm, Fastron, 09HCP, http://cdn-reichelt.de/documents/datenblatt/B400/DS_09HCP.pdf +Inductor Radial series Radial pin pitch 7.00mm diameter 13.5mm height 10.8mm 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, height=24.5mm, Neosid, SD14, http://www.neosid.de/produktblaetter/neosid_Festinduktivitaet_Sd14.pdf +Inductor Radial series Radial pin pitch 10.00mm diameter 14.2mm height 24.5mm Neosid SD14 +0 +2 +2 +Inductor_THT +L_Radial_D16.0mm_P10.00mm_Panasonic_15E-L +Panasonic ELC Type 15E-L inductor, radial, shielded, pin pitch=10.00mm, diameter=16.0mm, https://mediap.industry.panasonic.eu/assets/imported/industrial.panasonic.com/cdbs/www-data/pdf/AGB0000/AGB0000CE10.pdf +ELC15ExxxL +0 +3 +3 +Inductor_THT +L_Radial_D16.8mm_P11.43mm_Vishay_IHB-1 +Inductor, Radial series, Radial, pin pitch=11.43mm, diameter=16.8mm, height=21.34mm, Vishay, IHB-1, http://www.vishay.com/docs/34015/ihb.pdf +Inductor Radial series Radial pin pitch 11.43mm diameter 16.8mm height 21.34mm 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, height=21.34mm, Vishay, IHB-1, http://www.vishay.com/docs/34015/ihb.pdf +Inductor Radial series Radial pin pitch 12.07mm diameter 16.8mm height 21.34mm 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, height=21.34mm, Vishay, IHB-1, http://www.vishay.com/docs/34015/ihb.pdf +Inductor Radial series Radial pin pitch 12.70mm diameter 16.8mm height 21.34mm Vishay IHB-1 +0 +2 +2 +Inductor_THT +L_Radial_D18.0mm_P10.00mm +Inductor, Radial series, Radial, pin pitch=10.00mm, diameter=18mm, height=27.0mm, http://www.abracon.com/Magnetics/radial/AIUR-15.pdf +Inductor Radial series Radial pin pitch 10.00mm diameter 18mm height 27.0mm +0 +2 +2 +Inductor_THT +L_Radial_D21.0mm_P14.61mm_Vishay_IHB-2 +Inductor, Radial series, Radial, pin pitch=14.61mm, diameter=21mm, height=21.34mm, Vishay, IHB-2, http://www.vishay.com/docs/34015/ihb.pdf +Inductor Radial series Radial pin pitch 14.61mm diameter 21mm height 21.34mm 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, height=21.34mm, Vishay, IHB-2, http://www.vishay.com/docs/34015/ihb.pdf +Inductor Radial series Radial pin pitch 15.00mm diameter 21mm height 21.34mm 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, height=21.34mm, Vishay, IHB-2, http://www.vishay.com/docs/34015/ihb.pdf +Inductor Radial series Radial pin pitch 15.24mm diameter 21mm height 21.34mm 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, height=21.34mm, Vishay, IHB-2, http://www.vishay.com/docs/34015/ihb.pdf +Inductor Radial series Radial pin pitch 15.75mm diameter 21mm height 21.34mm Vishay IHB-2 +0 +2 +2 +Inductor_THT +L_Radial_D21.0mm_P19.00mm +Inductor, Radial series, Radial, pin pitch=19.00mm, diameter=21mm, height=21mm, http://www.abracon.com/Magnetics/radial/AIRD02.pdf +Inductor Radial series Radial pin pitch 19.00mm diameter 21mm height 21mm +0 +2 +2 +Inductor_THT +L_Radial_D24.0mm_P24.00mm +Inductor, Radial series, Radial, pin pitch=24.00mm, diameter=24mm, height=24mm +Inductor Radial series Radial pin pitch 24.00mm diameter 24mm height 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, height=10.5mm, Murata, 1400series, http://www.murata-ps.com/data/magnetics/kmp_1400.pdf +Inductor Radial series Radial pin pitch 22.90mm diameter 24.4mm height 10.5mm 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, height=10.5mm, Murata, 1400series, http://www.murata-ps.com/data/magnetics/kmp_1400.pdf +Inductor Radial series Radial pin pitch 23.10mm diameter 24.4mm height 10.5mm 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, height=10.5mm, Murata, 1400series, http://www.murata-ps.com/data/magnetics/kmp_1400.pdf +Inductor Radial series Radial pin pitch 23.40mm diameter 24.4mm height 10.5mm 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, height=10.5mm, Murata, 1400series, http://www.murata-ps.com/data/magnetics/kmp_1400.pdf +Inductor Radial series Radial pin pitch 23.70mm diameter 24.4mm height 10.5mm 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, height=10.5mm, Murata, 1400series, http://www.murata-ps.com/data/magnetics/kmp_1400.pdf +Inductor Radial series Radial pin pitch 23.90mm diameter 24.4mm height 10.5mm 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, height=21.34mm, Vishay, IHB-3, http://www.vishay.com/docs/34015/ihb.pdf +Inductor Radial series Radial pin pitch 18.29mm diameter 27.9mm height 21.34mm 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, height=21.34mm, Vishay, IHB-3, http://www.vishay.com/docs/34015/ihb.pdf +Inductor Radial series Radial pin pitch 19.05mm diameter 27.9mm height 21.34mm 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, height=21.34mm, Vishay, IHB-3, http://www.vishay.com/docs/34015/ihb.pdf +Inductor Radial series Radial pin pitch 20.07mm diameter 27.9mm height 21.34mm Vishay IHB-3 +0 +2 +2 +Inductor_THT +L_Radial_D28.0mm_P29.20mm +Inductor, Radial series, Radial, pin pitch=29.20mm, diameter=28mm, height=28mm +Inductor Radial series Radial pin pitch 29.20mm diameter 28mm height 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, height=10.5mm, Murata, 1400series, http://www.murata-ps.com/data/magnetics/kmp_1400.pdf +Inductor Radial series Radial pin pitch 28.30mm diameter 29.8mm height 10.5mm 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, height=10.5mm, Murata, 1400series, http://www.murata-ps.com/data/magnetics/kmp_1400.pdf +Inductor Radial series Radial pin pitch 28.50mm diameter 29.8mm height 10.5mm 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, height=10.5mm, Murata, 1400series, http://www.murata-ps.com/data/magnetics/kmp_1400.pdf +Inductor Radial series Radial pin pitch 28.80mm diameter 29.8mm height 10.5mm 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, height=10.5mm, Murata, 1400series, http://www.murata-ps.com/data/magnetics/kmp_1400.pdf +Inductor Radial series Radial pin pitch 29.00mm diameter 29.8mm height 10.5mm 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, height=10.5mm, Murata, 1400series, http://www.murata-ps.com/data/magnetics/kmp_1400.pdf +Inductor Radial series Radial pin pitch 29.30mm diameter 29.8mm height 10.5mm 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, height=36.83mm, Vishay, IHB-5, http://www.vishay.com/docs/34015/ihb.pdf +Inductor Radial series Radial pin pitch 26.16mm diameter 40.64mm height 36.83mm 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, height=26.16mm, Vishay, IHB-4, http://www.vishay.com/docs/34015/ihb.pdf +Inductor Radial series Radial pin pitch 27.18mm diameter 40.64mm height 26.16mm 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, height=26.16mm, Vishay, IHB-4, http://www.vishay.com/docs/34015/ihb.pdf +Inductor Radial series Radial pin pitch 27.94mm diameter 40.64mm height 26.16mm 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, height=36.83mm, Vishay, IHB-5, http://www.vishay.com/docs/34015/ihb.pdf +Inductor Radial series Radial pin pitch 27.94mm diameter 40.64mm height 36.83mm 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, height=36.83mm, Vishay, IHB-5, http://www.vishay.com/docs/34015/ihb.pdf +Inductor Radial series Radial pin pitch 28.70mm diameter 40.64mm height 36.83mm 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, height=38.1mm, Vishay, IHB-6, http://www.vishay.com/docs/34015/ihb.pdf +Inductor Radial series Radial pin pitch 33.27mm diameter 50.8mm height 38.1mm 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, height=38.1mm, Vishay, IHB-6, http://www.vishay.com/docs/34015/ihb.pdf +Inductor Radial series Radial pin pitch 34.29mm diameter 50.8mm height 38.1mm 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, height=38.1mm, Vishay, IHB-6, http://www.vishay.com/docs/34015/ihb.pdf +Inductor Radial series Radial pin pitch 35.81mm diameter 50.8mm height 38.1mm 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, height=38.1mm, Vishay, IHB-6, http://www.vishay.com/docs/34015/ihb.pdf +Inductor Radial series Radial pin pitch 36.32mm diameter 50.8mm height 38.1mm 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, height=38.1mm, Vishay, IHB-6, http://www.vishay.com/docs/34015/ihb.pdf +Inductor Radial series Radial pin pitch 38.86mm diameter 50.8mm height 38.1mm 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, height=4mm, Diameter3-5mm, Amidon-T12 +L_Toroid Horizontal series Radial pin pitch 6.40mm diameter 3.175mm height 4mm 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, height=4mm, Diameter4-5mm, Amidon-T16 +L_Toroid Horizontal series Radial pin pitch 8.00mm diameter 4.064mm height 4mm 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, height=4.5mm, Diameter6-5mm, Amidon-T20 +L_Toroid Horizontal series Radial pin pitch 9.00mm diameter 5.08mm height 4.5mm 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, height=5mm, Diameter7-5mm, Amidon-T25 +L_Toroid Horizontal series Radial pin pitch 10.00mm diameter 6.476999999999999mm height 5mm 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, height=5.5mm, Diameter9-5mm, Amidon-T30 +L_Toroid Horizontal series Radial pin pitch 13.00mm diameter 7.7978mm height 5.5mm 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, height=6mm, Diameter10-5mm, Amidon-T37 +L_Toroid Horizontal series Radial pin pitch 15.00mm diameter 9.524999999999999mm height 6mm 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, height=6.5mm, Diameter12-5mm, Amidon-T44 +L_Toroid Horizontal series Radial pin pitch 17.00mm diameter 11.176mm height 6.5mm 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, height=7mm, Diameter14-5mm, Amidon-T50 +L_Toroid Horizontal series Radial pin pitch 20.00mm diameter 12.7mm height 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, height=8.2mm, Vishay, TJ3, http://www.vishay.com/docs/34079/tj.pdf +L_Toroid Horizontal series Radial pin pitch 14.70mm diameter 16.8mm height 8.2mm 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, height=8.2mm, Vishay, TJ3, http://www.vishay.com/docs/34079/tj.pdf +L_Toroid Horizontal series Radial pin pitch 14.70mm diameter 16.8mm height 8.2mm Vishay TJ3 +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, height=10.4mm, 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 height 10.4mm 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, height=11.4mm, 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 height 11.4mm 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, height=10.4mm, 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 height 10.4mm 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, height=10.2mm, Vishay, TJ4, http://www.vishay.com/docs/34079/tj.pdf +L_Toroid Horizontal series Radial pin pitch 19.80mm diameter 22.4mm height 10.2mm 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, height=14mm, 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 height 14mm 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, height=14mm, 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 height 14mm 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, height=11.4mm, Vishay, TJ5, http://www.vishay.com/docs/34079/tj.pdf +L_Toroid Horizontal series Radial pin pitch 22.90mm diameter 25.4mm height 11.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, height=11.4mm, Vishay, TJ5, http://www.vishay.com/docs/34079/tj.pdf +L_Toroid Horizontal series Radial pin pitch 22.90mm diameter 25.4mm height 11.4mm Vishay TJ5 +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, height=14mm, 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 height 14mm 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, height=14mm, 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 height 14mm 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, height=16.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 height 16.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, height=16.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 height 16.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, height=21.1mm, Vishay, TJ6, http://www.vishay.com/docs/34079/tj.pdf +L_Toroid Horizontal series Radial pin pitch 31.00mm diameter 35.1mm height 21.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, height=4mm +L_Toroid Horizontal series Radial pin pitch 48.26mm diameter 40mm height 4mm +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, height=19.1mm, Vishay, TJ7, http://www.vishay.com/docs/34079/tj.pdf +L_Toroid Horizontal series Radial pin pitch 37.60mm diameter 41.9mm height 19.1mm 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, height=25.4mm, Vishay, TJ8, http://www.vishay.com/docs/34079/tj.pdf +L_Toroid Horizontal series Radial pin pitch 44.60mm diameter 49.3mm height 25.4mm 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, height=36.1mm, Vishay, TJ9, http://www.vishay.com/docs/34079/tj.pdf +L_Toroid Horizontal series Radial pin pitch 63.20mm diameter 69.1mm height 36.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, 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_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, 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_L26.7mm_W14.0mm_P10.16mm_Pulse_D +L_Toroid, Vertical series, Radial, pin pitch=10.16mm, length*width=26.67*13.97mm^2, Pulse, D, http://datasheet.octopart.com/PE-92112KNL-Pulse-datasheet-17853305.pdf +L_Toroid Vertical series Radial pin pitch 10.16mm length 26.67mm width 13.97mm Pulse D +0 +2 +2 +Inductor_THT +L_Toroid_Vertical_L28.6mm_W14.3mm_P11.43mm_Bourns_5700 +L_Toroid, Vertical series, Radial, pin pitch=11.43mm, length*width=28.6*14.3mm^2, Bourns, 5700, http://www.bourns.com/docs/Product-Datasheets/5700_series.pdf +L_Toroid Vertical series Radial pin pitch 11.43mm length 28.6mm width 14.3mm Bourns 5700 +0 +2 +2 +Inductor_THT +L_Toroid_Vertical_L31.8mm_W15.9mm_P13.50mm_Bourns_5700 +L_Toroid, Vertical series, Radial, pin pitch=13.50mm, length*width=31.8*15.9mm^2, Bourns, 5700, http://www.bourns.com/docs/Product-Datasheets/5700_series.pdf +L_Toroid Vertical series Radial pin pitch 13.50mm length 31.8mm width 15.9mm Bourns 5700 +0 +2 +2 +Inductor_THT +L_Toroid_Vertical_L33.0mm_W17.8mm_P12.70mm_Pulse_KM-5 +L_Toroid, Vertical series, Radial, pin pitch=12.70mm, length*width=33.02*17.78mm^2, Pulse, KM-5, http://datasheet.octopart.com/PE-92112KNL-Pulse-datasheet-17853305.pdf +L_Toroid Vertical series Radial pin pitch 12.70mm length 33.02mm width 17.78mm Pulse KM-5 +0 +2 +2 +Inductor_THT +L_Toroid_Vertical_L35.1mm_W21.1mm_P18.50mm_Vishay_TJ6 +L_Toroid, Vertical series, Radial, pin pitch=18.50mm, length*width=35.1*21.1mm^2, Vishay, TJ6, http://www.vishay.com/docs/34079/tj.pdf +L_Toroid Vertical series Radial pin pitch 18.50mm length 35.1mm width 21.1mm Vishay TJ6 +0 +2 +2 +Inductor_THT +L_Toroid_Vertical_L35.6mm_W17.8mm_P12.70mm_Pulse_E +L_Toroid, Vertical series, Radial, pin pitch=12.70mm, length*width=35.56*17.78mm^2, Pulse, E, http://datasheet.octopart.com/PE-92112KNL-Pulse-datasheet-17853305.pdf +L_Toroid Vertical series Radial pin pitch 12.70mm length 35.56mm width 17.78mm Pulse E +0 +2 +2 +Inductor_THT +L_Toroid_Vertical_L41.9mm_W17.8mm_P12.70mm_Pulse_F +L_Toroid, Vertical series, Radial, pin pitch=12.70mm, length*width=41.91*17.78mm^2, Pulse, F, http://datasheet.octopart.com/PE-92112KNL-Pulse-datasheet-17853305.pdf +L_Toroid Vertical series Radial pin pitch 12.70mm length 41.91mm width 17.78mm Pulse F +0 +2 +2 +Inductor_THT +L_Toroid_Vertical_L41.9mm_W19.1mm_P15.80mm_Vishay_TJ7 +L_Toroid, Vertical series, Radial, pin pitch=15.80mm, length*width=41.9*19.1mm^2, Vishay, TJ7, http://www.vishay.com/docs/34079/tj.pdf +L_Toroid Vertical series Radial pin pitch 15.80mm length 41.9mm width 19.1mm Vishay TJ7 +0 +2 +2 +Inductor_THT +L_Toroid_Vertical_L46.0mm_W19.1mm_P21.80mm_Bourns_5700 +L_Toroid, Vertical series, Radial, pin pitch=21.80mm, length*width=46*19.1mm^2, Bourns, 5700, http://www.bourns.com/docs/Product-Datasheets/5700_series.pdf +L_Toroid Vertical series Radial pin pitch 21.80mm length 46mm width 19.1mm Bourns 5700 +0 +2 +2 +Inductor_THT +L_Toroid_Vertical_L48.8mm_W25.4mm_P20.80mm_Vishay_TJ8 +L_Toroid, Vertical series, Radial, pin pitch=20.80mm, length*width=48.8*25.4mm^2, Vishay, TJ8, http://www.vishay.com/docs/34079/tj.pdf +L_Toroid Vertical series Radial pin pitch 20.80mm length 48.8mm width 25.4mm Vishay TJ8 +0 +2 +2 +Inductor_THT +L_Toroid_Vertical_L54.0mm_W23.8mm_P20.10mm_Bourns_5700 +L_Toroid, Vertical series, Radial, pin pitch=20.10mm, length*width=54*23.8mm^2, Bourns, 5700, http://www.bourns.com/docs/Product-Datasheets/5700_series.pdf +L_Toroid Vertical series Radial pin pitch 20.10mm length 54mm width 23.8mm Bourns 5700 +0 +2 +2 +Inductor_THT +L_Toroid_Vertical_L67.6mm_W36.1mm_P31.80mm_Vishay_TJ9 +L_Toroid, Vertical series, Radial, pin pitch=31.80mm, length*width=67.6*36.1mm^2, Vishay, TJ9, http://www.vishay.com/docs/34079/tj.pdf +L_Toroid Vertical series Radial pin pitch 31.80mm length 67.6mm width 36.1mm Vishay TJ9 +0 +2 +2 +Inductor_THT_Wurth +L_Wurth_WE-HCFT-2012_LeadDiameter1.2mm +Shielded High Current Inductor, body 17x22mm, https://www.we-online.com/catalog/en/WE-HCFT#/articles/WE-HCFT-2012-ROUND +THT +0 +2 +2 +Inductor_THT_Wurth +L_Wurth_WE-HCFT-2012_LeadDiameter1.5mm +Shielded High Current Inductor, body 17x22mm, https://www.we-online.com/catalog/en/WE-HCFT#/articles/WE-HCFT-2012-ROUND +THT +0 +2 +2 +Inductor_THT_Wurth +L_Wurth_WE-HCFT-2504 +Shielded High Current Inductor, body 22x25.7mm, https://www.we-online.com/catalog/en/WE-HCFT#/articles/WE-HCFT_SIZE_2504 +THT +0 +2 +2 +Inductor_THT_Wurth +L_Wurth_WE-HCFT-3521 +Shielded High Current Inductor, body 21.5x36mm, https://www.we-online.com/catalog/en/WE-HCFT#/articles/WE-HCFT-3521 +THT +0 +4 +2 +Inductor_THT_Wurth +L_Wurth_WE-HCFT-3533_LeadDiameter1.8mm +Shielded High Current Inductor, body 34.5x36mm, https://www.we-online.com/catalog/en/WE-HCFT#/articles/WE-HCFT-3533-ROUND +THT +0 +4 +2 +Inductor_THT_Wurth +L_Wurth_WE-HCFT-3533_LeadDiameter2.0mm +Shielded High Current Inductor, body 34.5x36mm, https://www.we-online.com/catalog/en/WE-HCFT#/articles/WE-HCFT-3533-ROUND +THT +0 +4 +2 +Inductor_THT_Wurth +L_Wurth_WE-HCFT-3540_LeadDiameter0.8mm +Shielded High Current Inductor, body 41x36mm, https://www.we-online.com/catalog/en/WE-HCFT#/articles/WE-HCFT-3540 +THT +0 +4 +2 +Inductor_THT_Wurth +L_Wurth_WE-HCFT-3540_LeadDiameter1.3mm +Shielded High Current Inductor, body 41x36mm, https://www.we-online.com/catalog/en/WE-HCFT#/articles/WE-HCFT-3540 +THT +0 +4 +2 +Inductor_THT_Wurth +L_Wurth_WE-HCFT-3540_LeadDiameter1.5mm +Shielded High Current Inductor, body 41x36mm, https://www.we-online.com/catalog/en/WE-HCFT#/articles/WE-HCFT-3540 +THT +0 +4 +2 +Inductor_THT_Wurth +L_Wurth_WE-HCFT-3540_LeadDiameter2.0mm +Shielded High Current Inductor, body 41x36mm, https://www.we-online.com/catalog/en/WE-HCFT#/articles/WE-HCFT-3540 +THT +0 +4 +2 +Infineon_IRFZ44N +DPAK254P1524X483-3N + + +0 +3 +3 +Innow8_Logos +LOGO + + +0 +0 +0 +Innow8_Logos +OACTAGON + + +0 +0 +0 +Innow8_Logos +makiinindia + + +0 +0 +0 +Innow8_Logos +oc200 + + +0 +0 +0 +Innow8_Logos +oct + + +0 +0 +0 +Jumper +Jumper_Harwin_S1621_P10.9mm +Harwin SMD jumper link, 12.3x2.3mm, 1.8mm height, 10.9mm pad pitch, https://cdn.harwin.com/pdfs/S1621R.pdf +SMD jumper link +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 bridged 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 bridged 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 bridged 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 bridged with 2 copper strip, labeled with numbers +net tie solder jumper bridged +0 +3 +3 +Jumper +SolderJumper-3_P1.3mm_Bridged2Bar123_Pad1.0x1.5mm +SMD Solder 3-pad Jumper, 1x1.5mm Pads, 0.3mm gap, pads 1-2-3 bridged with 2 copper strip +net tie solder jumper bridged +0 +3 +3 +Jumper +SolderJumper-3_P1.3mm_Bridged2Bar123_Pad1.0x1.5mm_NumberLabels +SMD Solder Jumper, 1x1.5mm Pads, 0.3mm gap, pads 1-2-3 bridged with 2 copper strip, labeled with numbers +net tie solder jumper bridged +0 +3 +3 +Jumper +SolderJumper-3_P1.3mm_Bridged2Bar123_RoundedPad1.0x1.5mm +SMD Solder 3-pad Jumper, 1x1.5mm rounded Pads, 0.3mm gap, pads 1-2-3 bridged with 2 copper strip +net tie solder jumper bridged +0 +3 +3 +Jumper +SolderJumper-3_P1.3mm_Bridged2Bar123_RoundedPad1.0x1.5mm_NumberLabels +SMD Solder 3-pad Jumper, 1x1.5mm rounded Pads, 0.3mm gap, pads 1-2-3 bridged 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_Bridged123_Pad1.0x1.5mm +SMD Solder 3-pad Jumper, 1x1.5mm Pads, 0.3mm gap, pads 1-2-3 bridged with 1 copper strip +net tie solder jumper bridged +0 +3 +3 +Jumper +SolderJumper-3_P1.3mm_Bridged123_Pad1.0x1.5mm_NumberLabels +SMD Solder Jumper, 1x1.5mm Pads, 0.3mm gap, pads 1-2-3 bridged with 1 copper strip, labeled with numbers +net tie solder jumper bridged +0 +3 +3 +Jumper +SolderJumper-3_P1.3mm_Bridged123_RoundedPad1.0x1.5mm +SMD Solder 3-pad Jumper, 1x1.5mm rounded Pads, 0.3mm gap, pads 1-2-3 bridged with 1 copper strip +net tie solder jumper bridged +0 +3 +3 +Jumper +SolderJumper-3_P1.3mm_Bridged123_RoundedPad1.0x1.5mm_NumberLabels +SMD Solder 3-pad Jumper, 1x1.5mm rounded Pads, 0.3mm gap, pads 1-2-3 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 +3 +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 +3 +3 +Keystone_1042P +BAT_1042P + + +0 +2 +2 +L298_MX1508 +SOIC127P600X177-16N + + +0 +16 +16 +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_01005_0402Metric +LED 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 +LED +0 +4 +2 +LED_SMD +LED_01005_0402Metric_Pad0.57x0.30mm_HandSolder +LED 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 +LED handsolder +0 +4 +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 +3.2mm x 2.8mm PLCC4 RGB LED, https://docs.broadcom.com/docs/AV02-4186EN +LED Avago PLCC-4 3528 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 RGB LED, https://assets.cree-led.com/a/ds/h/HB-CLMVC-FKA.pdf +LED Cree PLCC-4 2020 CLMVB-FKA CLMVC-FKA +0 +4 +4 +LED_SMD +LED_Cree-PLCC4_3.2x2.8mm_CCW +3.2mm x 2.8mm PLCC4 RGB LED, https://assets.cree-led.com/a/ds/h/HB-CLV1A-FKB.pdf +LED Cree PLCC-4 3528 CLV1A-FKB +0 +4 +4 +LED_SMD +LED_Cree-PLCC4_5x5mm_CW +5.0mm x 5.0mm PLCC4 LED +LED Cree PLCC-4 5050 +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_3V_HighDensity +Cree XHP50, 3V, high density, https://downloads.cree-led.com/files/ds/x/XLamp-XHP50.3.pdf +LED Cree XHP50 +0 +15 +3 +LED_SMD +LED_Cree-XHP50_3V_HighIntensity +Cree XHP50, 3V, high intensity, https://downloads.cree-led.com/files/ds/x/XLamp-XHP50.3.pdf +LED Cree XHP50 +0 +15 +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_6V_HighDensity +Cree XHP50, 6V, high density, https://downloads.cree-led.com/files/ds/x/XLamp-XHP50.3.pdf +LED Cree XHP50 +0 +15 +3 +LED_SMD +LED_Cree-XHP50_6V_HighIntensity +Cree XHP50, 6V, high intensity, https://downloads.cree-led.com/files/ds/x/XLamp-XHP50.3.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-XHP50_12V_HighDensity +Cree XHP50, 12V, high density, https://downloads.cree-led.com/files/ds/x/XLamp-XHP50.3.pdf +LED XHP50 Cree +0 +15 +3 +LED_SMD +LED_Cree-XHP50_12V_HighIntensity +Cree XHP50, 12V, high intensity, https://downloads.cree-led.com/files/ds/x/XLamp-XHP50.3.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_Everlight-SMD3528_3.5x2.8mm_67-21ST +3.5mm x 2.8mm mid-power LED, https://www.everlight.com/wp-content/plugins/ItemRelationship/product_files/pdf/DSE-0020730-67-21ST-KK6C-HXXXX96Z6-2T_V3.pdf +LED 3528 +0 +2 +2 +LED_SMD +LED_Foshan-NTD3528_3.5x2.8mm +3.5mm x 2.8mm mid-power LED, https://www.lcsc.com/datasheet/lcsc_datasheet_2307180955_Foshan-NationStar-Optoelectronics-NTD3528U1_C7464740.pdf +Nationstar +0 +2 +2 +LED_SMD +LED_Inolux_IN-P55TATRGB_PLCC6_5.0x5.5mm_P1.8mm +5.0x5.0mm PLCC-6 RGB LED, Inolux, https://www.inolux-corp.com/datasheet/SMDLED/RGB%20Top%20View/IN-P55TATRGB.pdf +LED RGB +0 +6 +6 +LED_SMD +LED_Inolux_IN-PI554FCH_PLCC4_5.0x5.0mm_P3.2mm +5.0mm x 5.0mm PLCC4 Addressable RGB LED, http://www.inolux-corp.com/datasheet/SMDLED/Addressable%20LED/IN-PI554FCH.pdf +LED RGB NeoPixel addressable PLCC-4 5050 +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_APA1606_1.6x0.6mm_Horizontal +Right angled LED, 1.6x1.2 mm, H0.6 mm +LED chip right angled vertical +0 +2 +2 +LED_SMD +LED_Kingbright_APDA3020VBCD +LED, SMD, APDA3020VBC/D, https://www.kingbrightusa.com/images/catalog/SPEC/APDA3020VBC-D.pdf +LED APDA3020VBC/D Kingbright +0 +2 +2 +LED_SMD +LED_Kingbright_APFA3010_3x1.5mm_Horizontal +LED RGB, APFA3010, http://www.kingbrightusa.com/images/catalog/SPEC/APFA3010LSEEZGKQBKC.pdf +LED RGB APFA3010 KINGBRIGHT 3x1.5mm +0 +4 +4 +LED_SMD +LED_Kingbright_APHBM2012_2x1.25mm +Dual LED SMD https://www.kingbrightusa.com/KCpack.asp?txtPack=APHBM2012 +LED Kingbright APHM2012 +0 +4 +4 +LED_SMD +LED_Kingbright_KPA-3010_3x2x1mm +Kingbright surface mount LED, right angle, 3.0 x 2.0 x 1.0 mm, https://www.kingbright.com/attachments/file/psearch/000/00/00/KPA-3010SURCK(Ver.26A).pdf +Kingbright LED right-angle +0 +3 +3 +LED_SMD +LED_Kingbright_KPBD-3224 +Kingbright, dual LED, red-green, dome lens, 3.2 x 2.4 mm Surface Mount LED Lamp (https://docs.rs-online.com/b881/0900766b81396b45.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-C235KGKRKT +downfacing reverse mount led, https://optoelectronics.liteon.com/upload/download/DS22-2009-0219/LTST-C235KGKRKT.pdf +LED reverse down facing +0 +4 +4 +LED_SMD +LED_LiteOn_LTST-C295K_1.6x0.8mm +Topview dual http://optoelectronics.liteon.com/upload/download/DS22-2009-0072/LTST-C295KGKRKT.PDF +SMD Top view Dual colour +0 +4 +4 +LED_SMD +LED_LiteOn_LTST-E563C_PLCC4_5.0x5.0mm_P3.2mm +RGB addressable LED, 5x5mm body, 1.57mm height, https://optoelectronics.liteon.com/upload/download/DS35-2018-0092/LTST-E563CHEGBW-AW.PDF +LED RGB 5050 PLCC-4 +0 +4 +4 +LED_SMD +LED_LiteOn_LTST-E563C_PLCC4_5.0x5.0mm_P3.2mm_HandSoldering +RGB addressable LED, 5x5mm body, 1.57mm height, https://optoelectronics.liteon.com/upload/download/DS35-2018-0092/LTST-E563CHEGBW-AW.PDF +LED RGB 5050 PLCC-4 +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_OPSCO_SK6812_PLCC4_5.0x5.0mm_P3.1mm +5.0mm x 5.0mm Addressable RGB LED, https://www.lcsc.com/datasheet/lcsc_datasheet_2303300930_OPSCO-Optoelectronics-SK6812-B_C5380881.pdf#page=5 +LED RGB NeoPixel Serial PLCC-4 5050 +0 +4 +4 +LED_SMD +LED_Osram_Lx_P47F_D2mm_ReverseMount +OSRAM, reverse-mount LED, SMD, 2mm diameter, http://www.farnell.com/datasheets/2711587.pdf +LED ReverseMount Reverse +0 +4 +2 +LED_SMD +LED_PLCC-2_3.4x3.0mm_AK +LED PLCC-2 SMD package, orientation marker at anode, https://look.ams-osram.com/m/6070706f97923d92/original/SFH-4257.pdf +LED PLCC-2 SMD TOPLED +0 +2 +2 +LED_SMD +LED_PLCC-2_3.4x3.0mm_KA +LED PLCC-2 SMD package, orientation marker at cathode, https://look.ams-osram.com/m/112b2fbfa9e71b58/original/SFH-4253.pdf +LED PLCC-2 SMD TOPLED +0 +2 +2 +LED_SMD +LED_PLCC-2_3x2mm_AK +LED, SMD, PLCC-2, 3.0 x 2.0mm, orientation marker at anode, https://media.digikey.com/pdf/Data%20Sheets/CREE%20Power/CLM3A-BKW,GKW.pdf +LED PLCC-2 SMD +0 +2 +2 +LED_SMD +LED_PLCC-2_3x2mm_KA +LED, SMD, PLCC-2, 3.0 x 2.0mm, orientation marker at cathode, https://optoelectronics.liteon.com/upload/download/DS22-2009-0099/LTW-M670ZVS-M5_0906.pdf +LED PLCC-2 SMD +0 +2 +2 +LED_SMD +LED_PLCC_2835 +https://www.luckylight.cn/media/component/data-sheet/R2835BC-B2M-M10.pdf +LED +0 +2 +2 +LED_SMD +LED_PLCC_2835_Handsoldering +https://www.luckylight.cn/media/component/data-sheet/R2835BC-B2M-M10.pdf +LED +0 +2 +2 +LED_SMD +LED_RGB_1210 +RGB LED 3.2x2.7mm http://www.avagotech.com/docs/AV02-0610EN +LED 3227 +0 +4 +4 +LED_SMD +LED_RGB_5050-6 +http://cdn.sparkfun.com/datasheets/Components/LED/5060BRG4.pdf +RGB LED 5050-6 +0 +6 +6 +LED_SMD +LED_RGB_Cree-PLCC-6_6x5mm_P2.1mm +http://www.farnell.com/datasheets/2003905.pdf +LED RGB PLCC-6 CLP6C-FBK +0 +6 +6 +LED_SMD +LED_RGB_Everlight_EASV3015RGBA0_Horizontal +LED, RGB, right-angle, clear, https://everlightamericas.com/index.php?controller=attachment&id_attachment=3220 +LED RGB right-angle +0 +4 +4 +LED_SMD +LED_RGB_Getian_GT-P6PRGB4303 +https://www.gme.sk/img/cache/doc/518/177/vykonova-led-getian-gt-p6prgb4303-datasheet-1.pdf +LED RGB +0 +7 +7 +LED_SMD +LED_RGB_Lumex_SML-LXT0805SIUGUBW +RGB LED 0805 2.0mm x 1.3mm, orientation marker at common anode https://www.mouser.de/datasheet/2/244/SML-LXT0805SIUGUBW-1776540.pdf +RGB LED 0805 +0 +4 +4 +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 3528 +0 +4 +4 +LED_SMD +LED_RGB_Wuerth_150080M153000 +RGB LED 0805 2.0mm x 1.3mm, orientation marker at common anode https://www.we-online.com/components/products/datasheet/150080M153000.pdf +RGB LED 0805 +0 +4 +4 +LED_SMD +LED_ROHM_SMLVN6 +RGB LED, 3.1x2.8mm, https://fscdn.rohm.com/en/products/databook/datasheet/opto/led/chip_multi/smlvn6rgb1u1-e.pdf +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 PLCC-4 +0 +4 +4 +LED_SMD +LED_SK6812MINI_PLCC4_3.5x3.5mm_P1.75mm +3.5mm x 3.5mm PLCC4 Addressable RGB LED NeoPixel, https://cdn-shop.adafruit.com/product-files/2686/SK6812MINI_REV.01-1-2.pdf +LED RGB NeoPixel Mini PLCC-4 3535 +0 +4 +4 +LED_SMD +LED_SK6812_EC15_1.5x1.5mm +RGB addressable LED, 0.1W, 1.5mm x 1.5mm, 0.65m height, orientation mark at GND, http://ledstrip-china.com/productshow.asp?id=322 +LED RGB NeoPixel +0 +4 +4 +LED_SMD +LED_SK6812_PLCC4_5.0x5.0mm_P3.2mm +5.0mm x 5.0mm Addressable RGB LED NeoPixel, https://cdn-shop.adafruit.com/product-files/1138/SK6812+LED+datasheet+.pdf +LED RGB NeoPixel PLCC-4 5050 +0 +4 +4 +LED_SMD +LED_WS2812B-2020_PLCC4_2.0x2.0mm +2.0mm x 2.0mm Addressable RGB LED NeoPixel Nano, 12 mA, https://cdn-shop.adafruit.com/product-files/4684/4684_WS2812B-2020_V1.3_EN.pdf +LED RGB NeoPixel Nano PLCC-4 2020 +0 +4 +4 +LED_SMD +LED_WS2812B-Mini_PLCC4_3.5x3.5mm +Addressable RGB LED NeoPixel Mini, 12 mA, https://web.archive.org/web/20200131233647/http://www.world-semi.com/DownLoadFile/112 +LED RGB NeoPixel Mini +0 +4 +4 +LED_SMD +LED_WS2812B_PLCC4_5.0x5.0mm_P3.2mm +5.0mm x 5.0mm Addressable RGB LED NeoPixel, https://cdn-shop.adafruit.com/datasheets/WS2812B.pdf +LED RGB NeoPixel PLCC-4 5050 +0 +4 +4 +LED_SMD +LED_WS2812_PLCC6_5.0x5.0mm_P1.6mm +https://cdn-shop.adafruit.com/datasheets/WS2812.pdf +LED RGB NeoPixel +0 +6 +6 +LED_SMD +LED_Wurth_150044M155260 +Wurth Common anode RGB LED, SMD, 0404, 1x1x1.65mm, https://www.we-online.com/catalog/datasheet/150044M155260.pdf +LED RGB ARGB +0 +4 +4 +LED_SMD +LED_Yuji_5730 +LED,Yuji,5730,https://cdn.shopify.com/s/files/1/0344/6401/files/YJWJ014-1.1_YJ-BC-5730L-G02.pdf +LED Yuji 5730 +0 +3 +2 +LED_SMD +LED_miniPLCC_2315 +https://docs.broadcom.com/cs/Satellite?blobcol=urldata&blobheader=application%2Fpdf&blobheadername1=Content-Disposition&blobheadername2=Content-Type&blobheadername3=MDT-Type&blobheadervalue1=attachment%3Bfilename%3DAV02-2205EN_DS_ASMT-TxBM_2014-05-09.pdf&blobheadervalue2=application%2Fx-download&blobheadervalue3=abinary%253B%2Bcharset%253DUTF-8&blobkey=id&blobnocache=true&blobtable=MungoBlobs&blobwhere=1430858274704&ssbinary=true +LED +0 +2 +2 +LED_SMD +LED_miniPLCC_2315_Handsoldering +https://docs.broadcom.com/cs/Satellite?blobcol=urldata&blobheader=application%2Fpdf&blobheadername1=Content-Disposition&blobheadername2=Content-Type&blobheadername3=MDT-Type&blobheadervalue1=attachment%3Bfilename%3DAV02-2205EN_DS_ASMT-TxBM_2014-05-09.pdf&blobheadervalue2=application%2Fx-download&blobheadervalue3=abinary%253B%2Bcharset%253DUTF-8&blobkey=id&blobnocache=true&blobtable=MungoBlobs&blobwhere=1430858274704&ssbinary=true +LED +0 +2 +2 +LED_THT +LED_BL-FL7680RGB +'Piranha' RGB LED, through hole, common anode, 7.62x7.62mm, BGRA pin order, https://cdn-shop.adafruit.com/datasheets/BL-FL7680RGB.pdf +RGB LED Piranha Super-Flux BetLux +0 +4 +4 +LED_THT +LED_D1.8mm_W1.8mm_H2.4mm_Horizontal_O1.27mm_Z1.6mm +LED, diameter 1.8mm, size 1.8x2.4mm, horizontal offset 1.27mm, z-position of LED center 1.6mm, 2 pins, generated by kicad-footprint-generator +LED +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, horizontal offset 1.27mm, z-position of LED center 4.9mm, 2 pins, generated by kicad-footprint-generator +LED +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, horizontal offset 1.27mm, z-position of LED center 8.2mm, 2 pins, generated by kicad-footprint-generator +LED +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, horizontal offset 3.81mm, z-position of LED center 1.6mm, 2 pins, generated by kicad-footprint-generator +LED +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, horizontal offset 3.81mm, z-position of LED center 4.9mm, 2 pins, generated by kicad-footprint-generator +LED +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, horizontal offset 3.81mm, z-position of LED center 8.2mm, 2 pins, generated by kicad-footprint-generator +LED +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, horizontal offset 6.35mm, z-position of LED center 1.6mm, 2 pins, generated by kicad-footprint-generator +LED +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, horizontal offset 6.35mm, z-position of LED center 4.9mm, 2 pins, generated by kicad-footprint-generator +LED +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, horizontal offset 6.35mm, z-position of LED center 8.2mm, 2 pins, generated by kicad-footprint-generator +LED +0 +2 +2 +LED_THT +LED_D1.8mm_W3.3mm_H2.4mm +LED, Round, Rectangular, size 3.3x2.4mm, diameter 1.8mm, 2 pins, generated by kicad-footprint-generator +LED +0 +2 +2 +LED_THT +LED_D2.0mm_W4.0mm_H2.8mm_FlatTop +LED, Round, Flat Top, Rectangular, size 4.0x2.8mm, diameter 2.0mm, 2 pins, https://www.kingbright.com/attachments/file/psearch/000/00/00/L-1034IDT(Ver.14A).pdf, generated by kicad-footprint-generator +LED +0 +2 +2 +LED_THT +LED_D2.0mm_W4.8mm_H2.5mm_FlatTop +LED, Round, Flat Top, Rectangular, size 4.8x2.5mm, diameter 2.0mm, 2 pins, http://www.kingbright.com/attachments/file/psearch/000/00/20160808bak/L-13GD(Ver.9B).pdf, generated by kicad-footprint-generator +LED +0 +2 +2 +LED_THT +LED_D3.0mm +LED, diameter 3.0mm, 2 pins, generated by kicad-footprint-generator +LED +0 +2 +2 +LED_THT +LED_D3.0mm-3 +LED, diameter 3.0mm, 3 pins, https://www.kingbright.com/attachments/file/psearch/000/00/00/L-3VSURKCGKC(Ver.12A).pdf, generated by kicad-footprint-generator +LED +0 +3 +3 +LED_THT +LED_D3.0mm_Clear +LED, diameter 3.0mm, 2 pins, clear, generated by kicad-footprint-generator +LED +0 +2 +2 +LED_THT +LED_D3.0mm_FlatTop +LED, Round, Flat Top, diameter 3.0mm, 2 pins, https://www.kingbright.com/attachments/file/psearch/000/00/00/L-47XEC(Ver.14A).pdf, generated by kicad-footprint-generator +LED +0 +2 +2 +LED_THT +LED_D3.0mm_Horizontal_O1.27mm_Z2.0mm +LED, diameter 3.0mm, horizontal offset 1.27mm, z-position of LED center 2.0mm, 2 pins, generated by kicad-footprint-generator +LED +0 +2 +2 +LED_THT +LED_D3.0mm_Horizontal_O1.27mm_Z2.0mm_Clear +LED, diameter 3.0mm, horizontal offset 1.27mm, z-position of LED center 2.0mm, 2 pins, clear, generated by kicad-footprint-generator +LED +0 +2 +2 +LED_THT +LED_D3.0mm_Horizontal_O1.27mm_Z2.0mm_IRBlack +LED, diameter 3.0mm, horizontal offset 1.27mm, z-position of LED center 2.0mm, 2 pins, infrared, black, generated by kicad-footprint-generator +LED IR +0 +2 +2 +LED_THT +LED_D3.0mm_Horizontal_O1.27mm_Z2.0mm_IRGrey +LED, diameter 3.0mm, horizontal offset 1.27mm, z-position of LED center 2.0mm, 2 pins, infrared, grey, generated by kicad-footprint-generator +LED IR +0 +2 +2 +LED_THT +LED_D3.0mm_Horizontal_O1.27mm_Z6.0mm +LED, diameter 3.0mm, horizontal offset 1.27mm, z-position of LED center 6.0mm, 2 pins, generated by kicad-footprint-generator +LED +0 +2 +2 +LED_THT +LED_D3.0mm_Horizontal_O1.27mm_Z10.0mm +LED, diameter 3.0mm, horizontal offset 1.27mm, z-position of LED center 10.0mm, 2 pins, generated by kicad-footprint-generator +LED +0 +2 +2 +LED_THT +LED_D3.0mm_Horizontal_O3.81mm_Z2.0mm +LED, diameter 3.0mm, horizontal offset 3.81mm, z-position of LED center 2.0mm, 2 pins, generated by kicad-footprint-generator +LED +0 +2 +2 +LED_THT +LED_D3.0mm_Horizontal_O3.81mm_Z6.0mm +LED, diameter 3.0mm, horizontal offset 3.81mm, z-position of LED center 6.0mm, 2 pins, generated by kicad-footprint-generator +LED +0 +2 +2 +LED_THT +LED_D3.0mm_Horizontal_O3.81mm_Z10.0mm +LED, diameter 3.0mm, horizontal offset 3.81mm, z-position of LED center 10.0mm, 2 pins, generated by kicad-footprint-generator +LED +0 +2 +2 +LED_THT +LED_D3.0mm_Horizontal_O6.35mm_Z2.0mm +LED, diameter 3.0mm, horizontal offset 6.35mm, z-position of LED center 2.0mm, 2 pins, generated by kicad-footprint-generator +LED +0 +2 +2 +LED_THT +LED_D3.0mm_Horizontal_O6.35mm_Z6.0mm +LED, diameter 3.0mm, horizontal offset 6.35mm, z-position of LED center 6.0mm, 2 pins, generated by kicad-footprint-generator +LED +0 +2 +2 +LED_THT +LED_D3.0mm_Horizontal_O6.35mm_Z10.0mm +LED, diameter 3.0mm, horizontal offset 6.35mm, z-position of LED center 10.0mm, 2 pins, generated by kicad-footprint-generator +LED +0 +2 +2 +LED_THT +LED_D3.0mm_IRBlack +LED, diameter 3.0mm, 2 pins, infrared, black, generated by kicad-footprint-generator +LED IR +0 +2 +2 +LED_THT +LED_D3.0mm_IRGrey +LED, diameter 3.0mm, 2 pins, infrared, grey, generated by kicad-footprint-generator +LED IR +0 +2 +2 +LED_THT +LED_D4.0mm +LED, diameter 4.0mm, 2 pins, https://www.kingbright.com/attachments/file/psearch/000/00/00/L-43GD(Ver.17B).pdf, generated by kicad-footprint-generator +LED +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, generated by kicad-footprint-generator +LED +0 +2 +2 +LED_THT +LED_D5.0mm-3 +LED, diameter 5.0mm, 3 pins, https://www.kingbright.com/attachments/file/psearch/000/00/00/L-59EGC(Ver.20A).pdf, generated by kicad-footprint-generator +LED +0 +3 +3 +LED_THT +LED_D5.0mm-3_Horizontal_O3.81mm_Z3.0mm +LED, diameter 5.0mm, horizontal offset 3.81mm, z-position of LED center 3.0mm, 3 pins, generated by kicad-footprint-generator +LED +0 +3 +3 +LED_THT +LED_D5.0mm-4_RGB +LED, RGB, diameter 5.0mm, 4 pins, https://www.kingbright.com/attachments/file/psearch/000/00/00/L-154A4SUREQBFZGEW(Ver.13A).pdf, generated by kicad-footprint-generator +LED +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, clear, http://cdn-reichelt.de/documents/datenblatt/A500/LL-504BC2E-009.pdf, generated by kicad-footprint-generator +LED +0 +2 +2 +LED_THT +LED_D5.0mm_FlatTop +LED, Round, Flat Top, diameter 5.0mm, 2 pins, https://www.kingbright.com/attachments/file/psearch/000/00/watermark00/L-483GDT(Ver.12B).pdf, generated by kicad-footprint-generator +LED +0 +2 +2 +LED_THT +LED_D5.0mm_Horizontal_O1.27mm_Z3.0mm +LED, diameter 5.0mm, horizontal offset 1.27mm, z-position of LED center 3.0mm, 2 pins, generated by kicad-footprint-generator +LED +0 +2 +2 +LED_THT +LED_D5.0mm_Horizontal_O1.27mm_Z3.0mm_Clear +LED, diameter 5.0mm, horizontal offset 1.27mm, z-position of LED center 3.0mm, 2 pins, clear, generated by kicad-footprint-generator +LED +0 +2 +2 +LED_THT +LED_D5.0mm_Horizontal_O1.27mm_Z3.0mm_IRBlack +LED, diameter 5.0mm, horizontal offset 1.27mm, z-position of LED center 3.0mm, 2 pins, infrared, black, generated by kicad-footprint-generator +LED IR +0 +2 +2 +LED_THT +LED_D5.0mm_Horizontal_O1.27mm_Z3.0mm_IRGrey +LED, diameter 5.0mm, horizontal offset 1.27mm, z-position of LED center 3.0mm, 2 pins, infrared, grey, generated by kicad-footprint-generator +LED IR +0 +2 +2 +LED_THT +LED_D5.0mm_Horizontal_O1.27mm_Z9.0mm +LED, diameter 5.0mm, horizontal offset 1.27mm, z-position of LED center 9.0mm, 2 pins, generated by kicad-footprint-generator +LED +0 +2 +2 +LED_THT +LED_D5.0mm_Horizontal_O1.27mm_Z15.0mm +LED, diameter 5.0mm, horizontal offset 1.27mm, z-position of LED center 15.0mm, 2 pins, generated by kicad-footprint-generator +LED +0 +2 +2 +LED_THT +LED_D5.0mm_Horizontal_O3.81mm_Z3.0mm +LED, diameter 5.0mm, horizontal offset 3.81mm, z-position of LED center 3.0mm, 2 pins, generated by kicad-footprint-generator +LED +0 +2 +2 +LED_THT +LED_D5.0mm_Horizontal_O3.81mm_Z9.0mm +LED, diameter 5.0mm, horizontal offset 3.81mm, z-position of LED center 9.0mm, 2 pins, generated by kicad-footprint-generator +LED +0 +2 +2 +LED_THT +LED_D5.0mm_Horizontal_O3.81mm_Z15.0mm +LED, diameter 5.0mm, horizontal offset 3.81mm, z-position of LED center 15.0mm, 2 pins, generated by kicad-footprint-generator +LED +0 +2 +2 +LED_THT +LED_D5.0mm_Horizontal_O6.35mm_Z3.0mm +LED, diameter 5.0mm, horizontal offset 6.35mm, z-position of LED center 3.0mm, 2 pins, generated by kicad-footprint-generator +LED +0 +2 +2 +LED_THT +LED_D5.0mm_Horizontal_O6.35mm_Z9.0mm +LED, diameter 5.0mm, horizontal offset 6.35mm, z-position of LED center 9.0mm, 2 pins, generated by kicad-footprint-generator +LED +0 +2 +2 +LED_THT +LED_D5.0mm_Horizontal_O6.35mm_Z15.0mm +LED, diameter 5.0mm, horizontal offset 6.35mm, z-position of LED center 15.0mm, 2 pins, generated by kicad-footprint-generator +LED +0 +2 +2 +LED_THT +LED_D5.0mm_IRBlack +LED, diameter 5.0mm, 2 pins, infrared, black, http://cdn-reichelt.de/documents/datenblatt/A500/LL-504BC2E-009.pdf, generated by kicad-footprint-generator +LED IR +0 +2 +2 +LED_THT +LED_D5.0mm_IRGrey +LED, diameter 5.0mm, 2 pins, infrared, grey, http://cdn-reichelt.de/documents/datenblatt/A500/LL-504BC2E-009.pdf, generated by kicad-footprint-generator +LED IR +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, generated by kicad-footprint-generator +LED +0 +2 +2 +LED_THT +LED_D8.0mm-3 +LED, diameter 8.0mm, 3 pins, generated by kicad-footprint-generator +LED +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, generated by kicad-footprint-generator +LED +0 +2 +2 +LED_THT +LED_D10.0mm-3 +LED, diameter 10.0mm, 3 pins, http://www.kingbright.com/attachments/file/psearch/000/00/20131112/L-819EGW(Ver.13A).pdf, generated by kicad-footprint-generator +LED +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, generated by kicad-footprint-generator +LED +0 +2 +2 +LED_THT +LED_Oval_W5.2mm_H3.8mm +LED, Oval, size 5.2x3.8mm, 2 pins, https://www.kingbright.com/attachments/file/psearch/000/00/00/L-5603QBC-D(Ver.17B).pdf, generated by kicad-footprint-generator +LED +0 +2 +2 +LED_THT +LED_Rectangular_W3.0mm_H2.0mm +LED, Rectangular, size 3.0x2.0mm, 2 pins, http://www.kingbright.com/attachments/file/psearch/000/00/20160808bak/L-169XCGDK(Ver.8B).pdf, generated by kicad-footprint-generator +LED +0 +2 +2 +LED_THT +LED_Rectangular_W3.9mm_H1.8mm +LED, Rectangular, size 3.9x1.8mm, 2 pins, http://www.kingbright.com/attachments/file/psearch/000/00/20160808bak/L-2774GD(Ver.7B).pdf, generated by kicad-footprint-generator +LED +0 +2 +2 +LED_THT +LED_Rectangular_W3.9mm_H1.9mm +LED, Rectangular, size 3.9x1.9mm, 2 pins, https://www.kingbright.com/attachments/file/psearch/000/00/watermark00/L-144GDT(Ver.11B).pdf, generated by kicad-footprint-generator +LED +0 +2 +2 +LED_THT +LED_Rectangular_W5.0mm_H2.0mm +LED, Rectangular, size 5.0x2.0mm, 2 pins, http://www.kingbright.com/attachments/file/psearch/000/00/00/L-169XCGDK(Ver.9B).pdf, generated by kicad-footprint-generator +LED +0 +2 +2 +LED_THT +LED_Rectangular_W5.0mm_H2.0mm-3Pins +LED, Rectangular, size 5.0x2.0mm, 3 pins, http://www.kingbright.com/attachments/file/psearch/000/00/20160808bak/L-169XCGDK(Ver.8B).pdf, generated by kicad-footprint-generator +LED +0 +3 +3 +LED_THT +LED_Rectangular_W5.0mm_H2.0mm_Horizontal_O1.27mm_Z1.0mm +LED, Rectangular, size 5.0x2.0mm, horizontal offset 1.27mm, z-position of LED center 1.0mm, 2 pins, generated by kicad-footprint-generator +LED +0 +2 +2 +LED_THT +LED_Rectangular_W5.0mm_H2.0mm_Horizontal_O1.27mm_Z3.0mm +LED, Rectangular, size 5.0x2.0mm, horizontal offset 1.27mm, z-position of LED center 3.0mm, 2 pins, generated by kicad-footprint-generator +LED +0 +2 +2 +LED_THT +LED_Rectangular_W5.0mm_H2.0mm_Horizontal_O1.27mm_Z5.0mm +LED, Rectangular, size 5.0x2.0mm, horizontal offset 1.27mm, z-position of LED center 5.0mm, 2 pins, generated by kicad-footprint-generator +LED +0 +2 +2 +LED_THT +LED_Rectangular_W5.0mm_H2.0mm_Horizontal_O3.81mm_Z1.0mm +LED, Rectangular, size 5.0x2.0mm, horizontal offset 3.81mm, z-position of LED center 1.0mm, 2 pins, generated by kicad-footprint-generator +LED +0 +2 +2 +LED_THT +LED_Rectangular_W5.0mm_H2.0mm_Horizontal_O3.81mm_Z3.0mm +LED, Rectangular, size 5.0x2.0mm, horizontal offset 3.81mm, z-position of LED center 3.0mm, 2 pins, generated by kicad-footprint-generator +LED +0 +2 +2 +LED_THT +LED_Rectangular_W5.0mm_H2.0mm_Horizontal_O3.81mm_Z5.0mm +LED, Rectangular, size 5.0x2.0mm, horizontal offset 3.81mm, z-position of LED center 5.0mm, 2 pins, generated by kicad-footprint-generator +LED +0 +2 +2 +LED_THT +LED_Rectangular_W5.0mm_H2.0mm_Horizontal_O6.35mm_Z1.0mm +LED, Rectangular, size 5.0x2.0mm, horizontal offset 6.35mm, z-position of LED center 1.0mm, 2 pins, generated by kicad-footprint-generator +LED +0 +2 +2 +LED_THT +LED_Rectangular_W5.0mm_H2.0mm_Horizontal_O6.35mm_Z3.0mm +LED, Rectangular, size 5.0x2.0mm, horizontal offset 6.35mm, z-position of LED center 3.0mm, 2 pins, generated by kicad-footprint-generator +LED +0 +2 +2 +LED_THT +LED_Rectangular_W5.0mm_H2.0mm_Horizontal_O6.35mm_Z5.0mm +LED, Rectangular, size 5.0x2.0mm, horizontal offset 6.35mm, z-position of LED center 5.0mm, 2 pins, generated by kicad-footprint-generator +LED +0 +2 +2 +LED_THT +LED_Rectangular_W5.0mm_H5.0mm +LED, Rectangular, size 5.0x5.0mm, 2 pins, http://www.kingbright.com/attachments/file/psearch/000/00/20160808bak/L-169XCGDK(Ver.8B).pdf, generated by kicad-footprint-generator +LED +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, Side Emitter, Rectangular, size 4.5x1.6mm, 2 pins, http://cdn-reichelt.de/documents/datenblatt/A500/LED15MMGE_LED15MMGN%23KIN.pdf, generated by kicad-footprint-generator +LED +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 +Miscellaneous_Footprints +SLW-913535_CUD + +SLW-913535-2A-SMT +0 +6 +6 +Miscellaneous_Library +Buzzer_12x9.5RM7.6 +Generic Buzzer, D12mm height 9.5mm with RM7.6mm +buzzer +0 +2 +2 +Miscellaneous_Library +CP_Elec_6.3x3 +SMD capacitor, aluminum electrolytic, Nichicon, 6.3x3.0mm +capacitor electrolytic +0 +2 +2 +Miscellaneous_Library +CP_Elec_6.3x5.4 +SMD capacitor, aluminum electrolytic, Panasonic C55, 6.3x5.4mm +capacitor electrolytic +0 +2 +2 +Miscellaneous_Library +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 +Miscellaneous_Library +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 +Miscellaneous_Library +D1X8K +https://ia800903.us.archive.org/24/items/CTKD1x8K/Cromatek%20D168K.pdf +Single digit 7 segment ultra bright red +0 +10 +10 +Miscellaneous_Library +D_SMA +Diode SMA (DO-214AC) +Diode SMA (DO-214AC) +0 +2 +2 +Miscellaneous_Library +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 +Miscellaneous_Library +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 +Miscellaneous_Library +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 +Miscellaneous_Library +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 +Miscellaneous_Library +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 +Miscellaneous_Library +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 +Miscellaneous_Library +LOGO + + +0 +0 +0 +Miscellaneous_Library +L_10.4x10.4_H4.8 +Choke, SMD, 10.4x10.4mm 4.8mm height +Choke SMD +0 +2 +2 +Miscellaneous_Library +MOLEX_532610271 + + +0 +4 +4 +Miscellaneous_Library +NetTie-2_THT_Pad1.0mm +Net tie, 2 pin, 1.0mm round THT pads +net tie +0 +2 +2 +Miscellaneous_Library +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 +Miscellaneous_Library +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 +Miscellaneous_Library +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 +Miscellaneous_Library +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 +Miscellaneous_Library +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 +Miscellaneous_Library +QFN50P300X300X100-17N + + +0 +22 +22 +Miscellaneous_Library +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 +Miscellaneous_Library +R_LDR_10x8.5mm_P7.6mm_Vertical +Resistor, LDR 10x8.5mm +Resistor LDR10.8.5mm +0 +2 +2 +Miscellaneous_Library +SO08 +Small Outline Package Fits JEDEC packages (narrow SOIC-8) + +0 +8 +8 +Miscellaneous_Library +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 +Miscellaneous_Library +SOIC127P600X175-9N + + +0 +9 +9 +Miscellaneous_Library +SOIC127P600X177-16N + + +0 +16 +16 +Miscellaneous_Library +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 +Miscellaneous_Library +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 +Miscellaneous_Library +SW_JS202011SCQN + + +0 +6 +6 +Miscellaneous_Library +SW_PUSH_6mm_H4.3mm +tactile push button, 6x6mm e.g. PHAP33xx series, height=4.3mm +tact sw push 6mm +0 +4 +2 +Miscellaneous_Library +SW_PUSH_6mm_H13mm +tactile push button, 6x6mm e.g. PHAP33xx series, height=13mm +tact sw push 6mm +0 +4 +2 +Miscellaneous_Library +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 +Miscellaneous_Library +TRIM_3386F-1-103TLF + + +0 +3 +3 +Miscellaneous_Library +TRIM_PTN091-V05115K1B + + +0 +5 +5 +Miscellaneous_Library +TestPoint_2Pads_Pitch2.54mm_Drill0.8mm +Test point with 2 pins, pitch 2.54mm, drill diameter 0.8mm +CONN DEV +0 +2 +2 +Miscellaneous_Library +TestPoint_Pad_1.5x1.5mm +SMD rectangular pad as test Point, square 1.5mm side length +test point SMD pad rectangle square +0 +2 +2 +Miscellaneous_Library +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 +Miscellaneous_Library +Vishay_TCRT5000 +IR Reflective Optical Sensor with Transistor Output TCRT5000 https://www.vishay.com/docs/83760/tcrt5000.pdf +IR Reflective Optical Sensor with Transistor Output TCRT5000 Vishay Distance Sensor +0 +4 +4 +Miscellaneous_Library +WC1602A +LCD 16x2 http://www.wincomlcd.com/pdf/WC1602A-SFYLYHTC06.pdf +LCD 16x2 Alphanumeric 16pin +0 +20 +16 +Module +A20_OLINUXINO_LIME2 +A20 Olinuxino LIME2, 1.2GHz, 512-1024MB RAM, Micro-SD, NAND or eMMC, 1000Mbit Ethernet +A20 Olimex Olinuxino LIME2 development board +0 +180 +180 +Module +Adafruit_Feather +Common footprint for the Adafruit Feather series of boards, https://learn.adafruit.com/adafruit-feather/feather-specification +Adafruit Feather +0 +28 +28 +Module +Adafruit_Feather_32u4_FONA +Footprint for the Adafruit Feather 32u4 FONA board, https://learn.adafruit.com/adafruit-feather-32u4-fona +Adafruit Feather 32u4 FONA +0 +28 +28 +Module +Adafruit_Feather_32u4_FONA_WithMountingHoles +Footprint for the Adafruit Feather 32u4 FONA board, https://learn.adafruit.com/adafruit-feather-32u4-fona +Adafruit Feather 32u4 FONA +0 +28 +28 +Module +Adafruit_Feather_32u4_RFM +Footprint for the Adafruit Feather 32u4 RFM series of boards, https://learn.adafruit.com/adafruit-feather-32u4-radio-with-rfm69hcw-module +Adafruit Feather 32u4 RFM +0 +31 +31 +Module +Adafruit_Feather_32u4_RFM_WithMountingHoles +Footprint for the Adafruit Feather 32u4 RFM series of boards, https://learn.adafruit.com/adafruit-feather-32u4-radio-with-rfm69hcw-module +Adafruit Feather 32u4 RFM +0 +31 +31 +Module +Adafruit_Feather_M0_RFM +Footprint for the Adafruit Feather M0 RFM series of boards, e.g. https://learn.adafruit.com/adafruit-feather-m0-radio-with-rfm69-packet-radio +Adafruit Feather M0 RFM +0 +32 +32 +Module +Adafruit_Feather_M0_RFM_WithMountingHoles +Footprint for the Adafruit Feather M0 RFM series of boards, e.g. https://learn.adafruit.com/adafruit-feather-m0-radio-with-rfm69-packet-radio + Adafruit Feather M0 RFM +0 +32 +32 +Module +Adafruit_Feather_M0_Wifi +Footprint for the Adafruit Feather M0 Wifi board, https://learn.adafruit.com/adafruit-feather-m0-wifi-atwinc1500/ +Adafruit Feather M0 Wifi +0 +28 +28 +Module +Adafruit_Feather_M0_Wifi_WithMountingHoles +Footprint for the Adafruit Feather M0 Wifi board, https://learn.adafruit.com/adafruit-feather-m0-wifi-atwinc1500/ +Adafruit Feather M0 Wifi +0 +28 +28 +Module +Adafruit_Feather_WICED +Footprint for the Adafruit Feather WICED Wifi board, https://learn.adafruit.com/introducing-the-adafruit-wiced-feather-wifi +Adafruit Feather WICED Wifi +0 +29 +29 +Module +Adafruit_Feather_WICED_WithMountingHoles +Footprint for the Adafruit Feather WICED Wifi board, https://learn.adafruit.com/introducing-the-adafruit-wiced-feather-wifi +Adafruit Feather WICED Wifi +0 +29 +29 +Module +Adafruit_Feather_WithMountingHoles +Common footprint for the Adafruit Feather series of boards, https://learn.adafruit.com/adafruit-feather/feather-specification +Adafruit Feather +0 +28 +28 +Module +Adafruit_HUZZAH_ESP8266_breakout +32-bit microcontroller module with WiFi, https://www.adafruit.com/product/2471 +ESP8266 WiFi microcontroller +0 +20 +20 +Module +Adafruit_HUZZAH_ESP8266_breakout_WithMountingHoles +32-bit microcontroller module with WiFi, https://www.adafruit.com/product/2471 +ESP8266 WiFi microcontroller +0 +20 +20 +Module +Arduino_Nano +Arduino Nano, http://www.mouser.com/pdfdocs/Gravitech_Arduino_Nano3_0.pdf +Arduino Nano +0 +30 +30 +Module +Arduino_Nano_WithMountingHoles +Arduino Nano, http://www.mouser.com/pdfdocs/Gravitech_Arduino_Nano3_0.pdf +Arduino Nano +0 +30 +30 +Module +Arduino_UNO_R2 +Arduino UNO R2, http://www.mouser.com/pdfdocs/Gravitech_Arduino_Nano3_0.pdf +Arduino UNO R2 +0 +30 +30 +Module +Arduino_UNO_R2_WithMountingHoles +Arduino UNO R2, http://www.mouser.com/pdfdocs/Gravitech_Arduino_Nano3_0.pdf +Arduino UNO R2 +0 +30 +30 +Module +Arduino_UNO_R3 +Arduino UNO R3, http://www.mouser.com/pdfdocs/Gravitech_Arduino_Nano3_0.pdf +Arduino UNO R3 +0 +32 +32 +Module +Arduino_UNO_R3_WithMountingHoles +Arduino UNO R3, http://www.mouser.com/pdfdocs/Gravitech_Arduino_Nano3_0.pdf +Arduino UNO R3 +0 +32 +32 +Module +BeagleBoard_PocketBeagle +PocketBeagle, https://github.com/beagleboard/pocketbeagle/wiki/System-Reference-Manual#71_Expansion_Header_Connectors +PocketBeagle +0 +72 +72 +Module +Carambola2 +8devices Carambola2, OpenWRT, industrial SoM computer, https://www.8devices.com/media/products/carambola2/downloads/carambola2-datasheet.pdf +carambola2 8devices +0 +104 +52 +Module +Electrosmith_Daisy_Seed +Embedded platform for audio applications. 96kHz / 24-bit audio hardware. 64MB of SDRAM for up to 10 minute long audio. ARM Cortex-M7 MCU, running at 480MHz. 31 total GPIO pins with configurable functionality. 12-bit Digital to Analog Converters (x2). SD card interfaces. PWM outputs. Serial Protocols for connecting external sensors and devices (SPI, UART, I2S, I2C). Dedicated VIN pin for power. Micro USB port, and additional USB pins for full OTG-support as host and device. https://static1.squarespace.com/static/58d03fdc1b10e3bf442567b8/t/6227e6236f02fb68d1577146/1646781988478/Daisy_Seed_datasheet_v1.0.3.pdf +Electrosmith Daisy Seed Microcontroller Module ARM Cortex-M7 Audio Codec +0 +40 +40 +Module +Flipper_Zero_Angled +Connector for Flipper Zero Straight https://docs.flipper.net/development/hardware/modules-blueprints +Flipper Zero +0 +18 +18 +Module +Flipper_Zero_Straight +Connector for Flipper Zero Straight https://docs.flipper.net/development/hardware/modules-blueprints +Flipper Zero +0 +18 +18 +Module +Google_Coral_SMT_TPU_Module +Google_Coral_SMT_TPU_Module (https://coral.ai/static/files/Coral-Accelerator-Module-datasheet.pdf) +Google_Coral TPU Module +0 +120 +120 +Module +Maple_Mini +Maple Mini, http://docs.leaflabs.com/static.leaflabs.com/pub/leaflabs/maple-docs/0.0.12/hardware/maple-mini.html +Maple Mini +0 +40 +40 +Module +Olimex_MOD-WIFI-ESP8266-DEV +ESP8266 development board https://www.olimex.com/Products/IoT/ESP8266/MOD-WIFI-ESP8266-DEV/resources/dimensions-WIFI-ESP8266-DEV.png +ESP8266 +0 +22 +22 +Module +Onion_Omega2+ +https://onion.io/omega2/ +Omega Onion module +0 +32 +32 +Module +Onion_Omega2S +https://github.com/OnionIoT/Omega2/raw/master/Documents/Omega2S%20Datasheet.pdf +onion omega module +0 +89 +64 +Module +Pololu_Breakout-16_15.2x20.3mm +Pololu Breakout 16-pin 15.2x20.3mm 0.6x0.8 +Pololu Breakout +0 +16 +16 +Module +RaspberryPi_Pico_Common_SMD +Raspberry Pi Pico common (Pico & Pico W) surface-mount footprint for reflow or hand soldering, supports Raspberry Pi Pico 2, https://datasheets.raspberrypi.com/pico/pico-datasheet.pdf +module usb pcb antenna +0 +80 +40 +Module +RaspberryPi_Pico_Common_THT +Raspberry Pi Pico common (Pico & Pico W) through-hole footprint, supports Raspberry Pi Pico 2, default socketed model has height of 8.51mm, https://datasheets.raspberrypi.com/pico/pico-datasheet.pdf +module usb pcb antenna +0 +40 +40 +Module +RaspberryPi_Pico_Common_Unspecified +Raspberry Pi Pico versatile common (Pico & Pico W) footprint for surface-mount or through-hole hand soldering, supports Raspberry Pi Pico 2, default socketed model has height of 8.51mm, https://datasheets.raspberrypi.com/pico/pico-datasheet.pdf +module usb pcb antenna +0 +80 +40 +Module +RaspberryPi_Pico_SMD +Raspberry Pi Pico (non-W) surface-mount footprint for reflow soldering with test points and debug pads, supports Raspberry Pi Pico 2 (non-W), https://datasheets.raspberrypi.com/pico/pico-datasheet.pdf +module usb pcb swd +0 +96 +49 +Module +RaspberryPi_Pico_SMD_HandSolder +Raspberry Pi Pico (non-W) surface-mount footprint with debug pads for hand soldering, supports Raspberry Pi Pico 2 (non-W), https://datasheets.raspberrypi.com/pico/pico-datasheet.pdf +module usb pcb swd +0 +86 +43 +Module +RaspberryPi_Pico_W_SMD +Raspberry Pi Pico W surface-mount footprint for reflow soldering with test points and debug pads (not compatible with non-wireless Pico), supports Raspberry Pi Pico 2 W, https://datasheets.raspberrypi.com/picow/pico-w-datasheet.pdf +module usb pcb swd antenna +0 +93 +49 +Module +RaspberryPi_Pico_W_SMD_HandSolder +Raspberry Pi Pico W surface-mount footprint with debug pads for hand soldering (not compatible with non-wireless Pico), supports Raspberry Pi Pico 2 W, https://datasheets.raspberrypi.com/picow/pico-w-datasheet.pdf +module usb pcb swd antenna +0 +83 +43 +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 +MAIX Dual Core RISC-V MCU, https://dl.sipeed.com/MAIX/HDK/Sipeed-M1&M1W/Specifications +AI Kendryte K210 RISC-V +0 +85 +72 +Module +Sipeed-M1W +MAIX RISC-V Dual Core MCU with wifi, https://dl.sipeed.com/MAIX/HDK/Sipeed-M1&M1W/Specifications +AI Kendryte K210 RISC-V +0 +85 +72 +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 +Modules_Sensors +MODULE_LCD-16X2 + + +0 +2 +2 +Modules_Sensors +Vishay_TCRT5000 +IR Reflective Optical Sensor with Transistor Output TCRT5000 https://www.vishay.com/docs/83760/tcrt5000.pdf +IR Reflective Optical Sensor with Transistor Output TCRT5000 Vishay Distance Sensor +0 +4 +4 +Modules_Sensors +XCVR_ESP32-S3-DEVKITC-1-N16R8V + + +0 +44 +44 +Motors +Vybronics_VZ30C1T8219732L +Vibration motor, 2.3-3.2V, 14000rpm, 0.7G, https://www.vybronics.com/wp-content/uploads/datasheet-files/Vybronics-VZ30C1T8219732L-datasheet.pdf +vibration motor Vybronics +0 +12 +3 +MountingEquipment +DINRailAdapter_3xM3_PhoenixContact_1201578 +https://www.phoenixcontact.com/online/portal/us?uri=pxc-oc-itemdetail:pid=1201578&library=usen&tab=1 +DIN rail adapter universal three M3 clearance holes +0 +0 +0 +MountingHole +MountingHole_2.1mm +Mounting Hole 2.1mm, no annular, generated by kicad-footprint-generator mountinghole.py +mountinghole +0 +0 +0 +MountingHole +MountingHole_2.2mm_M2 +Mounting Hole 2.2mm, M2, no annular, generated by kicad-footprint-generator mountinghole.py +mountinghole M2 +0 +0 +0 +MountingHole +MountingHole_2.2mm_M2_DIN965 +Mounting Hole 2.2mm, M2, no annular, generated by kicad-footprint-generator mountinghole.py +mountinghole M2 DIN965 +0 +0 +0 +MountingHole +MountingHole_2.2mm_M2_DIN965_Pad +Mounting Hole 2.2mm, M2, generated by kicad-footprint-generator mountinghole.py +mountinghole M2 DIN965 +0 +1 +1 +MountingHole +MountingHole_2.2mm_M2_DIN965_Pad_TopBottom +Mounting Hole 2.2mm, M2, generated by kicad-footprint-generator mountinghole.py +mountinghole M2 DIN965 +0 +3 +1 +MountingHole +MountingHole_2.2mm_M2_DIN965_Pad_TopOnly +Mounting Hole 2.2mm, M2, generated by kicad-footprint-generator mountinghole.py +mountinghole M2 DIN965 +0 +2 +1 +MountingHole +MountingHole_2.2mm_M2_ISO7380 +Mounting Hole 2.2mm, M2, no annular, generated by kicad-footprint-generator mountinghole.py +mountinghole M2 ISO7380 +0 +0 +0 +MountingHole +MountingHole_2.2mm_M2_ISO7380_Pad +Mounting Hole 2.2mm, M2, generated by kicad-footprint-generator mountinghole.py +mountinghole M2 ISO7380 +0 +1 +1 +MountingHole +MountingHole_2.2mm_M2_ISO7380_Pad_TopBottom +Mounting Hole 2.2mm, M2, generated by kicad-footprint-generator mountinghole.py +mountinghole M2 ISO7380 +0 +3 +1 +MountingHole +MountingHole_2.2mm_M2_ISO7380_Pad_TopOnly +Mounting Hole 2.2mm, M2, generated by kicad-footprint-generator mountinghole.py +mountinghole M2 ISO7380 +0 +2 +1 +MountingHole +MountingHole_2.2mm_M2_ISO14580 +Mounting Hole 2.2mm, M2, no annular, generated by kicad-footprint-generator mountinghole.py +mountinghole M2 ISO14580 +0 +0 +0 +MountingHole +MountingHole_2.2mm_M2_ISO14580_Pad +Mounting Hole 2.2mm, M2, generated by kicad-footprint-generator mountinghole.py +mountinghole M2 ISO14580 +0 +1 +1 +MountingHole +MountingHole_2.2mm_M2_ISO14580_Pad_TopBottom +Mounting Hole 2.2mm, M2, generated by kicad-footprint-generator mountinghole.py +mountinghole M2 ISO14580 +0 +3 +1 +MountingHole +MountingHole_2.2mm_M2_ISO14580_Pad_TopOnly +Mounting Hole 2.2mm, M2, generated by kicad-footprint-generator mountinghole.py +mountinghole M2 ISO14580 +0 +2 +1 +MountingHole +MountingHole_2.2mm_M2_Pad +Mounting Hole 2.2mm, M2, generated by kicad-footprint-generator mountinghole.py +mountinghole M2 +0 +1 +1 +MountingHole +MountingHole_2.2mm_M2_Pad_TopBottom +Mounting Hole 2.2mm, M2, generated by kicad-footprint-generator mountinghole.py +mountinghole M2 +0 +3 +1 +MountingHole +MountingHole_2.2mm_M2_Pad_TopOnly +Mounting Hole 2.2mm, M2, generated by kicad-footprint-generator mountinghole.py +mountinghole M2 +0 +2 +1 +MountingHole +MountingHole_2.2mm_M2_Pad_Via +Mounting Hole 2.2mm, M2, generated by kicad-footprint-generator mountinghole.py +mountinghole M2 +0 +9 +1 +MountingHole +MountingHole_2.5mm +Mounting Hole 2.5mm, no annular, generated by kicad-footprint-generator mountinghole.py +mountinghole +0 +0 +0 +MountingHole +MountingHole_2.5mm_Pad +Mounting Hole 2.5mm, generated by kicad-footprint-generator mountinghole.py +mountinghole +0 +1 +1 +MountingHole +MountingHole_2.5mm_Pad_TopBottom +Mounting Hole 2.5mm, generated by kicad-footprint-generator mountinghole.py +mountinghole +0 +3 +1 +MountingHole +MountingHole_2.5mm_Pad_TopOnly +Mounting Hole 2.5mm, generated by kicad-footprint-generator mountinghole.py +mountinghole +0 +2 +1 +MountingHole +MountingHole_2.5mm_Pad_Via +Mounting Hole 2.5mm, generated by kicad-footprint-generator mountinghole.py +mountinghole +0 +9 +1 +MountingHole +MountingHole_2.7mm +Mounting Hole 2.7mm, no annular, generated by kicad-footprint-generator mountinghole.py +mountinghole +0 +0 +0 +MountingHole +MountingHole_2.7mm_M2.5 +Mounting Hole 2.7mm, M2.5, no annular, generated by kicad-footprint-generator mountinghole.py +mountinghole M2.5 +0 +0 +0 +MountingHole +MountingHole_2.7mm_M2.5_DIN965 +Mounting Hole 2.7mm, M2.5, no annular, generated by kicad-footprint-generator mountinghole.py +mountinghole M2.5 DIN965 +0 +0 +0 +MountingHole +MountingHole_2.7mm_M2.5_DIN965_Pad +Mounting Hole 2.7mm, M2.5, generated by kicad-footprint-generator mountinghole.py +mountinghole M2.5 DIN965 +0 +1 +1 +MountingHole +MountingHole_2.7mm_M2.5_DIN965_Pad_TopBottom +Mounting Hole 2.7mm, M2.5, generated by kicad-footprint-generator mountinghole.py +mountinghole M2.5 DIN965 +0 +3 +1 +MountingHole +MountingHole_2.7mm_M2.5_DIN965_Pad_TopOnly +Mounting Hole 2.7mm, M2.5, generated by kicad-footprint-generator mountinghole.py +mountinghole M2.5 DIN965 +0 +2 +1 +MountingHole +MountingHole_2.7mm_M2.5_ISO7380 +Mounting Hole 2.7mm, M2.5, no annular, generated by kicad-footprint-generator mountinghole.py +mountinghole M2.5 ISO7380 +0 +0 +0 +MountingHole +MountingHole_2.7mm_M2.5_ISO7380_Pad +Mounting Hole 2.7mm, M2.5, generated by kicad-footprint-generator mountinghole.py +mountinghole M2.5 ISO7380 +0 +1 +1 +MountingHole +MountingHole_2.7mm_M2.5_ISO7380_Pad_TopBottom +Mounting Hole 2.7mm, M2.5, generated by kicad-footprint-generator mountinghole.py +mountinghole M2.5 ISO7380 +0 +3 +1 +MountingHole +MountingHole_2.7mm_M2.5_ISO7380_Pad_TopOnly +Mounting Hole 2.7mm, M2.5, generated by kicad-footprint-generator mountinghole.py +mountinghole M2.5 ISO7380 +0 +2 +1 +MountingHole +MountingHole_2.7mm_M2.5_ISO14580 +Mounting Hole 2.7mm, M2.5, no annular, generated by kicad-footprint-generator mountinghole.py +mountinghole M2.5 ISO14580 +0 +0 +0 +MountingHole +MountingHole_2.7mm_M2.5_ISO14580_Pad +Mounting Hole 2.7mm, M2.5, generated by kicad-footprint-generator mountinghole.py +mountinghole M2.5 ISO14580 +0 +1 +1 +MountingHole +MountingHole_2.7mm_M2.5_ISO14580_Pad_TopBottom +Mounting Hole 2.7mm, M2.5, generated by kicad-footprint-generator mountinghole.py +mountinghole M2.5 ISO14580 +0 +3 +1 +MountingHole +MountingHole_2.7mm_M2.5_ISO14580_Pad_TopOnly +Mounting Hole 2.7mm, M2.5, generated by kicad-footprint-generator mountinghole.py +mountinghole M2.5 ISO14580 +0 +2 +1 +MountingHole +MountingHole_2.7mm_M2.5_Pad +Mounting Hole 2.7mm, M2.5, generated by kicad-footprint-generator mountinghole.py +mountinghole M2.5 +0 +1 +1 +MountingHole +MountingHole_2.7mm_M2.5_Pad_TopBottom +Mounting Hole 2.7mm, M2.5, generated by kicad-footprint-generator mountinghole.py +mountinghole M2.5 +0 +3 +1 +MountingHole +MountingHole_2.7mm_M2.5_Pad_TopOnly +Mounting Hole 2.7mm, M2.5, generated by kicad-footprint-generator mountinghole.py +mountinghole M2.5 +0 +2 +1 +MountingHole +MountingHole_2.7mm_M2.5_Pad_Via +Mounting Hole 2.7mm, M2.5, generated by kicad-footprint-generator mountinghole.py +mountinghole M2.5 +0 +9 +1 +MountingHole +MountingHole_2.7mm_Pad +Mounting Hole 2.7mm, generated by kicad-footprint-generator mountinghole.py +mountinghole +0 +1 +1 +MountingHole +MountingHole_2.7mm_Pad_TopBottom +Mounting Hole 2.7mm, generated by kicad-footprint-generator mountinghole.py +mountinghole +0 +3 +1 +MountingHole +MountingHole_2.7mm_Pad_TopOnly +Mounting Hole 2.7mm, generated by kicad-footprint-generator mountinghole.py +mountinghole +0 +2 +1 +MountingHole +MountingHole_2.7mm_Pad_Via +Mounting Hole 2.7mm, generated by kicad-footprint-generator mountinghole.py +mountinghole +0 +9 +1 +MountingHole +MountingHole_2mm +Mounting Hole 2mm, no annular, generated by kicad-footprint-generator mountinghole.py +mountinghole +0 +0 +0 +MountingHole +MountingHole_3.2mm_M3 +Mounting Hole 3.2mm, M3, no annular, generated by kicad-footprint-generator mountinghole.py +mountinghole M3 +0 +0 +0 +MountingHole +MountingHole_3.2mm_M3_DIN965 +Mounting Hole 3.2mm, M3, no annular, generated by kicad-footprint-generator mountinghole.py +mountinghole M3 DIN965 +0 +0 +0 +MountingHole +MountingHole_3.2mm_M3_DIN965_Pad +Mounting Hole 3.2mm, M3, generated by kicad-footprint-generator mountinghole.py +mountinghole M3 DIN965 +0 +1 +1 +MountingHole +MountingHole_3.2mm_M3_DIN965_Pad_TopBottom +Mounting Hole 3.2mm, M3, generated by kicad-footprint-generator mountinghole.py +mountinghole M3 DIN965 +0 +3 +1 +MountingHole +MountingHole_3.2mm_M3_DIN965_Pad_TopOnly +Mounting Hole 3.2mm, M3, generated by kicad-footprint-generator mountinghole.py +mountinghole M3 DIN965 +0 +2 +1 +MountingHole +MountingHole_3.2mm_M3_ISO7380 +Mounting Hole 3.2mm, M3, no annular, generated by kicad-footprint-generator mountinghole.py +mountinghole M3 ISO7380 +0 +0 +0 +MountingHole +MountingHole_3.2mm_M3_ISO7380_Pad +Mounting Hole 3.2mm, M3, generated by kicad-footprint-generator mountinghole.py +mountinghole M3 ISO7380 +0 +1 +1 +MountingHole +MountingHole_3.2mm_M3_ISO7380_Pad_TopBottom +Mounting Hole 3.2mm, M3, generated by kicad-footprint-generator mountinghole.py +mountinghole M3 ISO7380 +0 +3 +1 +MountingHole +MountingHole_3.2mm_M3_ISO7380_Pad_TopOnly +Mounting Hole 3.2mm, M3, generated by kicad-footprint-generator mountinghole.py +mountinghole M3 ISO7380 +0 +2 +1 +MountingHole +MountingHole_3.2mm_M3_ISO14580 +Mounting Hole 3.2mm, M3, no annular, generated by kicad-footprint-generator mountinghole.py +mountinghole M3 ISO14580 +0 +0 +0 +MountingHole +MountingHole_3.2mm_M3_ISO14580_Pad +Mounting Hole 3.2mm, M3, generated by kicad-footprint-generator mountinghole.py +mountinghole M3 ISO14580 +0 +1 +1 +MountingHole +MountingHole_3.2mm_M3_ISO14580_Pad_TopBottom +Mounting Hole 3.2mm, M3, generated by kicad-footprint-generator mountinghole.py +mountinghole M3 ISO14580 +0 +3 +1 +MountingHole +MountingHole_3.2mm_M3_ISO14580_Pad_TopOnly +Mounting Hole 3.2mm, M3, generated by kicad-footprint-generator mountinghole.py +mountinghole M3 ISO14580 +0 +2 +1 +MountingHole +MountingHole_3.2mm_M3_Pad +Mounting Hole 3.2mm, M3, generated by kicad-footprint-generator mountinghole.py +mountinghole M3 +0 +1 +1 +MountingHole +MountingHole_3.2mm_M3_Pad_TopBottom +Mounting Hole 3.2mm, M3, generated by kicad-footprint-generator mountinghole.py +mountinghole M3 +0 +3 +1 +MountingHole +MountingHole_3.2mm_M3_Pad_TopOnly +Mounting Hole 3.2mm, M3, generated by kicad-footprint-generator mountinghole.py +mountinghole M3 +0 +2 +1 +MountingHole +MountingHole_3.2mm_M3_Pad_Via +Mounting Hole 3.2mm, M3, generated by kicad-footprint-generator mountinghole.py +mountinghole M3 +0 +9 +1 +MountingHole +MountingHole_3.5mm +Mounting Hole 3.5mm, no annular, generated by kicad-footprint-generator mountinghole.py +mountinghole +0 +0 +0 +MountingHole +MountingHole_3.5mm_Pad +Mounting Hole 3.5mm, generated by kicad-footprint-generator mountinghole.py +mountinghole +0 +1 +1 +MountingHole +MountingHole_3.5mm_Pad_TopBottom +Mounting Hole 3.5mm, generated by kicad-footprint-generator mountinghole.py +mountinghole +0 +3 +1 +MountingHole +MountingHole_3.5mm_Pad_TopOnly +Mounting Hole 3.5mm, generated by kicad-footprint-generator mountinghole.py +mountinghole +0 +2 +1 +MountingHole +MountingHole_3.5mm_Pad_Via +Mounting Hole 3.5mm, generated by kicad-footprint-generator mountinghole.py +mountinghole +0 +9 +1 +MountingHole +MountingHole_3.7mm +Mounting Hole 3.7mm, no annular, generated by kicad-footprint-generator mountinghole.py +mountinghole +0 +0 +0 +MountingHole +MountingHole_3.7mm_Pad +Mounting Hole 3.7mm, generated by kicad-footprint-generator mountinghole.py +mountinghole +0 +1 +1 +MountingHole +MountingHole_3.7mm_Pad_TopBottom +Mounting Hole 3.7mm, generated by kicad-footprint-generator mountinghole.py +mountinghole +0 +3 +1 +MountingHole +MountingHole_3.7mm_Pad_TopOnly +Mounting Hole 3.7mm, generated by kicad-footprint-generator mountinghole.py +mountinghole +0 +2 +1 +MountingHole +MountingHole_3.7mm_Pad_Via +Mounting Hole 3.7mm, generated by kicad-footprint-generator mountinghole.py +mountinghole +0 +9 +1 +MountingHole +MountingHole_3mm +Mounting Hole 3mm, no annular, generated by kicad-footprint-generator mountinghole.py +mountinghole +0 +0 +0 +MountingHole +MountingHole_3mm_Pad +Mounting Hole 3mm, generated by kicad-footprint-generator mountinghole.py +mountinghole +0 +1 +1 +MountingHole +MountingHole_3mm_Pad_TopBottom +Mounting Hole 3mm, generated by kicad-footprint-generator mountinghole.py +mountinghole +0 +3 +1 +MountingHole +MountingHole_3mm_Pad_TopOnly +Mounting Hole 3mm, generated by kicad-footprint-generator mountinghole.py +mountinghole +0 +2 +1 +MountingHole +MountingHole_3mm_Pad_Via +Mounting Hole 3mm, generated by kicad-footprint-generator mountinghole.py +mountinghole +0 +9 +1 +MountingHole +MountingHole_4.3mm_M4 +Mounting Hole 4.3mm, M4, no annular, generated by kicad-footprint-generator mountinghole.py +mountinghole M4 +0 +0 +0 +MountingHole +MountingHole_4.3mm_M4_DIN965 +Mounting Hole 4.3mm, M4, no annular, generated by kicad-footprint-generator mountinghole.py +mountinghole M4 DIN965 +0 +0 +0 +MountingHole +MountingHole_4.3mm_M4_DIN965_Pad +Mounting Hole 4.3mm, M4, generated by kicad-footprint-generator mountinghole.py +mountinghole M4 DIN965 +0 +1 +1 +MountingHole +MountingHole_4.3mm_M4_DIN965_Pad_TopBottom +Mounting Hole 4.3mm, M4, generated by kicad-footprint-generator mountinghole.py +mountinghole M4 DIN965 +0 +3 +1 +MountingHole +MountingHole_4.3mm_M4_DIN965_Pad_TopOnly +Mounting Hole 4.3mm, M4, generated by kicad-footprint-generator mountinghole.py +mountinghole M4 DIN965 +0 +2 +1 +MountingHole +MountingHole_4.3mm_M4_ISO7380 +Mounting Hole 4.3mm, M4, no annular, generated by kicad-footprint-generator mountinghole.py +mountinghole M4 ISO7380 +0 +0 +0 +MountingHole +MountingHole_4.3mm_M4_ISO7380_Pad +Mounting Hole 4.3mm, M4, generated by kicad-footprint-generator mountinghole.py +mountinghole M4 ISO7380 +0 +1 +1 +MountingHole +MountingHole_4.3mm_M4_ISO7380_Pad_TopBottom +Mounting Hole 4.3mm, M4, generated by kicad-footprint-generator mountinghole.py +mountinghole M4 ISO7380 +0 +3 +1 +MountingHole +MountingHole_4.3mm_M4_ISO7380_Pad_TopOnly +Mounting Hole 4.3mm, M4, generated by kicad-footprint-generator mountinghole.py +mountinghole M4 ISO7380 +0 +2 +1 +MountingHole +MountingHole_4.3mm_M4_ISO14580 +Mounting Hole 4.3mm, M4, no annular, generated by kicad-footprint-generator mountinghole.py +mountinghole M4 ISO14580 +0 +0 +0 +MountingHole +MountingHole_4.3mm_M4_ISO14580_Pad +Mounting Hole 4.3mm, M4, generated by kicad-footprint-generator mountinghole.py +mountinghole M4 ISO14580 +0 +1 +1 +MountingHole +MountingHole_4.3mm_M4_ISO14580_Pad_TopBottom +Mounting Hole 4.3mm, M4, generated by kicad-footprint-generator mountinghole.py +mountinghole M4 ISO14580 +0 +3 +1 +MountingHole +MountingHole_4.3mm_M4_ISO14580_Pad_TopOnly +Mounting Hole 4.3mm, M4, generated by kicad-footprint-generator mountinghole.py +mountinghole M4 ISO14580 +0 +2 +1 +MountingHole +MountingHole_4.3mm_M4_Pad +Mounting Hole 4.3mm, M4, generated by kicad-footprint-generator mountinghole.py +mountinghole M4 +0 +1 +1 +MountingHole +MountingHole_4.3mm_M4_Pad_TopBottom +Mounting Hole 4.3mm, M4, generated by kicad-footprint-generator mountinghole.py +mountinghole M4 +0 +3 +1 +MountingHole +MountingHole_4.3mm_M4_Pad_TopOnly +Mounting Hole 4.3mm, M4, generated by kicad-footprint-generator mountinghole.py +mountinghole M4 +0 +2 +1 +MountingHole +MountingHole_4.3mm_M4_Pad_Via +Mounting Hole 4.3mm, M4, generated by kicad-footprint-generator mountinghole.py +mountinghole 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, generated by kicad-footprint-generator mountinghole.py +mountinghole +0 +0 +0 +MountingHole +MountingHole_4.5mm_Pad +Mounting Hole 4.5mm, generated by kicad-footprint-generator mountinghole.py +mountinghole +0 +1 +1 +MountingHole +MountingHole_4.5mm_Pad_TopBottom +Mounting Hole 4.5mm, generated by kicad-footprint-generator mountinghole.py +mountinghole +0 +3 +1 +MountingHole +MountingHole_4.5mm_Pad_TopOnly +Mounting Hole 4.5mm, generated by kicad-footprint-generator mountinghole.py +mountinghole +0 +2 +1 +MountingHole +MountingHole_4.5mm_Pad_Via +Mounting Hole 4.5mm, generated by kicad-footprint-generator mountinghole.py +mountinghole +0 +9 +1 +MountingHole +MountingHole_4mm +Mounting Hole 4mm, no annular, generated by kicad-footprint-generator mountinghole.py +mountinghole +0 +0 +0 +MountingHole +MountingHole_4mm_Pad +Mounting Hole 4mm, generated by kicad-footprint-generator mountinghole.py +mountinghole +0 +1 +1 +MountingHole +MountingHole_4mm_Pad_TopBottom +Mounting Hole 4mm, generated by kicad-footprint-generator mountinghole.py +mountinghole +0 +3 +1 +MountingHole +MountingHole_4mm_Pad_TopOnly +Mounting Hole 4mm, generated by kicad-footprint-generator mountinghole.py +mountinghole +0 +2 +1 +MountingHole +MountingHole_4mm_Pad_Via +Mounting Hole 4mm, generated by kicad-footprint-generator mountinghole.py +mountinghole +0 +9 +1 +MountingHole +MountingHole_5.3mm_M5 +Mounting Hole 5.3mm, M5, no annular, generated by kicad-footprint-generator mountinghole.py +mountinghole M5 +0 +0 +0 +MountingHole +MountingHole_5.3mm_M5_DIN965 +Mounting Hole 5.3mm, M5, no annular, generated by kicad-footprint-generator mountinghole.py +mountinghole M5 DIN965 +0 +0 +0 +MountingHole +MountingHole_5.3mm_M5_DIN965_Pad +Mounting Hole 5.3mm, M5, generated by kicad-footprint-generator mountinghole.py +mountinghole M5 DIN965 +0 +1 +1 +MountingHole +MountingHole_5.3mm_M5_DIN965_Pad_TopBottom +Mounting Hole 5.3mm, M5, generated by kicad-footprint-generator mountinghole.py +mountinghole M5 DIN965 +0 +3 +1 +MountingHole +MountingHole_5.3mm_M5_DIN965_Pad_TopOnly +Mounting Hole 5.3mm, M5, generated by kicad-footprint-generator mountinghole.py +mountinghole M5 DIN965 +0 +2 +1 +MountingHole +MountingHole_5.3mm_M5_ISO7380 +Mounting Hole 5.3mm, M5, no annular, generated by kicad-footprint-generator mountinghole.py +mountinghole M5 ISO7380 +0 +0 +0 +MountingHole +MountingHole_5.3mm_M5_ISO7380_Pad +Mounting Hole 5.3mm, M5, generated by kicad-footprint-generator mountinghole.py +mountinghole M5 ISO7380 +0 +1 +1 +MountingHole +MountingHole_5.3mm_M5_ISO7380_Pad_TopBottom +Mounting Hole 5.3mm, M5, generated by kicad-footprint-generator mountinghole.py +mountinghole M5 ISO7380 +0 +3 +1 +MountingHole +MountingHole_5.3mm_M5_ISO7380_Pad_TopOnly +Mounting Hole 5.3mm, M5, generated by kicad-footprint-generator mountinghole.py +mountinghole M5 ISO7380 +0 +2 +1 +MountingHole +MountingHole_5.3mm_M5_ISO14580 +Mounting Hole 5.3mm, M5, no annular, generated by kicad-footprint-generator mountinghole.py +mountinghole M5 ISO14580 +0 +0 +0 +MountingHole +MountingHole_5.3mm_M5_ISO14580_Pad +Mounting Hole 5.3mm, M5, generated by kicad-footprint-generator mountinghole.py +mountinghole M5 ISO14580 +0 +1 +1 +MountingHole +MountingHole_5.3mm_M5_ISO14580_Pad_TopBottom +Mounting Hole 5.3mm, M5, generated by kicad-footprint-generator mountinghole.py +mountinghole M5 ISO14580 +0 +3 +1 +MountingHole +MountingHole_5.3mm_M5_ISO14580_Pad_TopOnly +Mounting Hole 5.3mm, M5, generated by kicad-footprint-generator mountinghole.py +mountinghole M5 ISO14580 +0 +2 +1 +MountingHole +MountingHole_5.3mm_M5_Pad +Mounting Hole 5.3mm, M5, generated by kicad-footprint-generator mountinghole.py +mountinghole M5 +0 +1 +1 +MountingHole +MountingHole_5.3mm_M5_Pad_TopBottom +Mounting Hole 5.3mm, M5, generated by kicad-footprint-generator mountinghole.py +mountinghole M5 +0 +3 +1 +MountingHole +MountingHole_5.3mm_M5_Pad_TopOnly +Mounting Hole 5.3mm, M5, generated by kicad-footprint-generator mountinghole.py +mountinghole M5 +0 +2 +1 +MountingHole +MountingHole_5.3mm_M5_Pad_Via +Mounting Hole 5.3mm, M5, generated by kicad-footprint-generator mountinghole.py +mountinghole M5 +0 +9 +1 +MountingHole +MountingHole_5.5mm +Mounting Hole 5.5mm, no annular, generated by kicad-footprint-generator mountinghole.py +mountinghole +0 +0 +0 +MountingHole +MountingHole_5.5mm_Pad +Mounting Hole 5.5mm, generated by kicad-footprint-generator mountinghole.py +mountinghole +0 +1 +1 +MountingHole +MountingHole_5.5mm_Pad_TopBottom +Mounting Hole 5.5mm, generated by kicad-footprint-generator mountinghole.py +mountinghole +0 +3 +1 +MountingHole +MountingHole_5.5mm_Pad_TopOnly +Mounting Hole 5.5mm, generated by kicad-footprint-generator mountinghole.py +mountinghole +0 +2 +1 +MountingHole +MountingHole_5.5mm_Pad_Via +Mounting Hole 5.5mm, generated by kicad-footprint-generator mountinghole.py +mountinghole +0 +9 +1 +MountingHole +MountingHole_5mm +Mounting Hole 5mm, no annular, generated by kicad-footprint-generator mountinghole.py +mountinghole +0 +0 +0 +MountingHole +MountingHole_5mm_Pad +Mounting Hole 5mm, generated by kicad-footprint-generator mountinghole.py +mountinghole +0 +1 +1 +MountingHole +MountingHole_5mm_Pad_TopBottom +Mounting Hole 5mm, generated by kicad-footprint-generator mountinghole.py +mountinghole +0 +3 +1 +MountingHole +MountingHole_5mm_Pad_TopOnly +Mounting Hole 5mm, generated by kicad-footprint-generator mountinghole.py +mountinghole +0 +2 +1 +MountingHole +MountingHole_5mm_Pad_Via +Mounting Hole 5mm, generated by kicad-footprint-generator mountinghole.py +mountinghole +0 +9 +1 +MountingHole +MountingHole_6.4mm_M6 +Mounting Hole 6.4mm, M6, no annular, generated by kicad-footprint-generator mountinghole.py +mountinghole M6 +0 +0 +0 +MountingHole +MountingHole_6.4mm_M6_DIN965 +Mounting Hole 6.4mm, M6, no annular, generated by kicad-footprint-generator mountinghole.py +mountinghole M6 DIN965 +0 +0 +0 +MountingHole +MountingHole_6.4mm_M6_DIN965_Pad +Mounting Hole 6.4mm, M6, generated by kicad-footprint-generator mountinghole.py +mountinghole M6 DIN965 +0 +1 +1 +MountingHole +MountingHole_6.4mm_M6_DIN965_Pad_TopBottom +Mounting Hole 6.4mm, M6, generated by kicad-footprint-generator mountinghole.py +mountinghole M6 DIN965 +0 +3 +1 +MountingHole +MountingHole_6.4mm_M6_DIN965_Pad_TopOnly +Mounting Hole 6.4mm, M6, generated by kicad-footprint-generator mountinghole.py +mountinghole M6 DIN965 +0 +2 +1 +MountingHole +MountingHole_6.4mm_M6_ISO7380 +Mounting Hole 6.4mm, M6, no annular, generated by kicad-footprint-generator mountinghole.py +mountinghole M6 ISO7380 +0 +0 +0 +MountingHole +MountingHole_6.4mm_M6_ISO7380_Pad +Mounting Hole 6.4mm, M6, generated by kicad-footprint-generator mountinghole.py +mountinghole M6 ISO7380 +0 +1 +1 +MountingHole +MountingHole_6.4mm_M6_ISO7380_Pad_TopBottom +Mounting Hole 6.4mm, M6, generated by kicad-footprint-generator mountinghole.py +mountinghole M6 ISO7380 +0 +3 +1 +MountingHole +MountingHole_6.4mm_M6_ISO7380_Pad_TopOnly +Mounting Hole 6.4mm, M6, generated by kicad-footprint-generator mountinghole.py +mountinghole M6 ISO7380 +0 +2 +1 +MountingHole +MountingHole_6.4mm_M6_ISO14580 +Mounting Hole 6.4mm, M6, no annular, generated by kicad-footprint-generator mountinghole.py +mountinghole M6 ISO14580 +0 +0 +0 +MountingHole +MountingHole_6.4mm_M6_ISO14580_Pad +Mounting Hole 6.4mm, M6, generated by kicad-footprint-generator mountinghole.py +mountinghole M6 ISO14580 +0 +1 +1 +MountingHole +MountingHole_6.4mm_M6_ISO14580_Pad_TopBottom +Mounting Hole 6.4mm, M6, generated by kicad-footprint-generator mountinghole.py +mountinghole M6 ISO14580 +0 +3 +1 +MountingHole +MountingHole_6.4mm_M6_ISO14580_Pad_TopOnly +Mounting Hole 6.4mm, M6, generated by kicad-footprint-generator mountinghole.py +mountinghole M6 ISO14580 +0 +2 +1 +MountingHole +MountingHole_6.4mm_M6_Pad +Mounting Hole 6.4mm, M6, generated by kicad-footprint-generator mountinghole.py +mountinghole M6 +0 +1 +1 +MountingHole +MountingHole_6.4mm_M6_Pad_TopBottom +Mounting Hole 6.4mm, M6, generated by kicad-footprint-generator mountinghole.py +mountinghole M6 +0 +3 +1 +MountingHole +MountingHole_6.4mm_M6_Pad_TopOnly +Mounting Hole 6.4mm, M6, generated by kicad-footprint-generator mountinghole.py +mountinghole M6 +0 +2 +1 +MountingHole +MountingHole_6.4mm_M6_Pad_Via +Mounting Hole 6.4mm, M6, generated by kicad-footprint-generator mountinghole.py +mountinghole M6 +0 +9 +1 +MountingHole +MountingHole_6.5mm +Mounting Hole 6.5mm, no annular, generated by kicad-footprint-generator mountinghole.py +mountinghole +0 +0 +0 +MountingHole +MountingHole_6.5mm_Pad +Mounting Hole 6.5mm, generated by kicad-footprint-generator mountinghole.py +mountinghole +0 +1 +1 +MountingHole +MountingHole_6.5mm_Pad_TopBottom +Mounting Hole 6.5mm, generated by kicad-footprint-generator mountinghole.py +mountinghole +0 +3 +1 +MountingHole +MountingHole_6.5mm_Pad_TopOnly +Mounting Hole 6.5mm, generated by kicad-footprint-generator mountinghole.py +mountinghole +0 +2 +1 +MountingHole +MountingHole_6.5mm_Pad_Via +Mounting Hole 6.5mm, generated by kicad-footprint-generator mountinghole.py +mountinghole +0 +9 +1 +MountingHole +MountingHole_6mm +Mounting Hole 6mm, no annular, generated by kicad-footprint-generator mountinghole.py +mountinghole +0 +0 +0 +MountingHole +MountingHole_6mm_Pad +Mounting Hole 6mm, generated by kicad-footprint-generator mountinghole.py +mountinghole +0 +1 +1 +MountingHole +MountingHole_6mm_Pad_TopBottom +Mounting Hole 6mm, generated by kicad-footprint-generator mountinghole.py +mountinghole +0 +3 +1 +MountingHole +MountingHole_6mm_Pad_TopOnly +Mounting Hole 6mm, generated by kicad-footprint-generator mountinghole.py +mountinghole +0 +2 +1 +MountingHole +MountingHole_6mm_Pad_Via +Mounting Hole 6mm, generated by kicad-footprint-generator mountinghole.py +mountinghole +0 +9 +1 +MountingHole +MountingHole_8.4mm_M8 +Mounting Hole 8.4mm, M8, no annular, generated by kicad-footprint-generator mountinghole.py +mountinghole M8 +0 +0 +0 +MountingHole +MountingHole_8.4mm_M8_Pad +Mounting Hole 8.4mm, M8, generated by kicad-footprint-generator mountinghole.py +mountinghole M8 +0 +1 +1 +MountingHole +MountingHole_8.4mm_M8_Pad_TopBottom +Mounting Hole 8.4mm, M8, generated by kicad-footprint-generator mountinghole.py +mountinghole M8 +0 +3 +1 +MountingHole +MountingHole_8.4mm_M8_Pad_TopOnly +Mounting Hole 8.4mm, M8, generated by kicad-footprint-generator mountinghole.py +mountinghole M8 +0 +2 +1 +MountingHole +MountingHole_8.4mm_M8_Pad_Via +Mounting Hole 8.4mm, M8, generated by kicad-footprint-generator mountinghole.py +mountinghole M8 +0 +9 +1 +MountingHole +ToolingHole_1.152mm +Tooling Hole 1.152mm, 1.3mm solder mask, JLCPCB specification, https://jlcpcb.com/help/article/How-to-add-tooling-holes-for-PCB-assembly-order +mounting +0 +0 +0 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSE-ExternalM3_H5mm_9771050360 +Mounting Hardware, external M3, height 5, Wuerth electronics 9771050360 (https://www.we-online.com/components/products/datasheet/9771050360R.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://www.we-online.com/components/products/datasheet/9771060360R.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://www.we-online.com/components/products/datasheet/9771070360R.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://www.we-online.com/components/products/datasheet/9771080360R.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://www.we-online.com/components/products/datasheet/9771090360R.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://www.we-online.com/components/products/datasheet/9771100360R.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://www.we-online.com/components/products/datasheet/9771110360R.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://www.we-online.com/components/products/datasheet/9771120360R.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://www.we-online.com/components/products/datasheet/9771130360R.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://www.we-online.com/components/products/datasheet/9771140360R.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://www.we-online.com/components/products/datasheet/9771150360R.pdf), generated with kicad-footprint-generator +Mounting M3 9771150360 +0 +6 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M1.6_H0.5mm_9774005633 +Mounting Hardware, inside through hole M1.6, height 0.5, Wuerth electronics 9774005633 (https://www.we-online.com/components/products/datasheet/9774005633R.pdf), generated with kicad-footprint-generator +Mounting M1.6 9774005633 +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://www.we-online.com/components/products/datasheet/9774015633R.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://www.we-online.com/components/products/datasheet/9774010633R.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://www.we-online.com/components/products/datasheet/9774025633R.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://www.we-online.com/components/products/datasheet/97730256332R.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://www.we-online.com/components/products/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://www.we-online.com/components/products/datasheet/9774020633R.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://www.we-online.com/components/products/datasheet/97730356332R.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://www.we-online.com/components/products/datasheet/97730356334R.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://www.we-online.com/components/products/datasheet/97730356330R.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://www.we-online.com/components/products/datasheet/9774030633R.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://www.we-online.com/components/products/datasheet/97730306332R.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://www.we-online.com/components/products/datasheet/97730306330R.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://www.we-online.com/components/products/datasheet/97730456332R.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://www.we-online.com/components/products/datasheet/97730456334R.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://www.we-online.com/components/products/datasheet/97730456330R.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://www.we-online.com/components/products/datasheet/97730406332R.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://www.we-online.com/components/products/datasheet/97730406334R.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://www.we-online.com/components/products/datasheet/97730406330R.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://www.we-online.com/components/products/datasheet/97730506332R.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://www.we-online.com/components/products/datasheet/97730506334R.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://www.we-online.com/components/products/datasheet/97730506330R.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://www.we-online.com/components/products/datasheet/97730606332R.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://www.we-online.com/components/products/datasheet/97730606334R.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://www.we-online.com/components/products/datasheet/97730606330R.pdf), generated with kicad-footprint-generator +Mounting M1.6 97730606330 +0 +5 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M2.5_H0.5mm_9774005151 +Mounting Hardware, inside through hole M2.5, height 0.5, Wuerth electronics 9774005151 (https://www.we-online.com/components/products/datasheet/9774005151R.pdf), generated with kicad-footprint-generator +Mounting M2.5 9774005151 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M2.5_H1.5mm_9774015151 +Mounting Hardware, inside through hole M2.5, height 1.5, Wuerth electronics 9774015151 (https://www.we-online.com/components/products/datasheet/9774015151R.pdf), generated with kicad-footprint-generator +Mounting M2.5 9774015151 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M2.5_H1mm_9774010151 +Mounting Hardware, inside through hole M2.5, height 1, Wuerth electronics 9774010151 (https://www.we-online.com/components/products/datasheet/9774010151R.pdf), generated with kicad-footprint-generator +Mounting M2.5 9774010151 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M2.5_H2.5mm_9774025151 +Mounting Hardware, inside through hole M2.5, height 2.5, Wuerth electronics 9774025151 (https://www.we-online.com/components/products/datasheet/9774025151R.pdf), generated with kicad-footprint-generator +Mounting M2.5 9774025151 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M2.5_H2.7mm_9774027151 +Mounting Hardware, inside through hole M2.5, height 2.7, Wuerth electronics 9774027151 (https://www.we-online.com/components/products/datasheet/9774027151R.pdf), generated with kicad-footprint-generator +Mounting M2.5 9774027151 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M2.5_H2mm_9774020151 +Mounting Hardware, inside through hole M2.5, height 2, Wuerth electronics 9774020151 (https://www.we-online.com/components/products/datasheet/9774020151R.pdf), generated with kicad-footprint-generator +Mounting M2.5 9774020151 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M2.5_H3.5mm_9774035151 +Mounting Hardware, inside through hole M2.5, height 3.5, Wuerth electronics 9774035151 (https://www.we-online.com/components/products/datasheet/9774035151R.pdf), generated with kicad-footprint-generator +Mounting M2.5 9774035151 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M2.5_H3mm_9774030151 +Mounting Hardware, inside through hole M2.5, height 3, Wuerth electronics 9774030151 (https://www.we-online.com/components/products/datasheet/9774030151R.pdf), generated with kicad-footprint-generator +Mounting M2.5 9774030151 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M2.5_H4.5mm_9774045151 +Mounting Hardware, inside through hole M2.5, height 4.5, Wuerth electronics 9774045151 (https://www.we-online.com/components/products/datasheet/9774045151R.pdf), generated with kicad-footprint-generator +Mounting M2.5 9774045151 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M2.5_H4mm_9774040151 +Mounting Hardware, inside through hole M2.5, height 4, Wuerth electronics 9774040151 (https://www.we-online.com/components/products/datasheet/9774040151R.pdf), generated with kicad-footprint-generator +Mounting M2.5 9774040151 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M2.5_H5.5mm_9774055151 +Mounting Hardware, inside through hole M2.5, height 5.5, Wuerth electronics 9774055151 (https://www.we-online.com/components/products/datasheet/9774055151R.pdf), generated with kicad-footprint-generator +Mounting M2.5 9774055151 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M2.5_H5mm_9774050151 +Mounting Hardware, inside through hole M2.5, height 5, Wuerth electronics 9774050151 (https://www.we-online.com/components/products/datasheet/9774050151R.pdf), generated with kicad-footprint-generator +Mounting M2.5 9774050151 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M2.5_H6.5mm_9774065151 +Mounting Hardware, inside through hole M2.5, height 6.5, Wuerth electronics 9774065151 (https://www.we-online.com/components/products/datasheet/9774065151R.pdf), generated with kicad-footprint-generator +Mounting M2.5 9774065151 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M2.5_H6mm_9774060151 +Mounting Hardware, inside through hole M2.5, height 6, Wuerth electronics 9774060151 (https://www.we-online.com/components/products/datasheet/9774060151R.pdf), generated with kicad-footprint-generator +Mounting M2.5 9774060151 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M2.5_H7.5mm_9774075151 +Mounting Hardware, inside through hole M2.5, height 7.5, Wuerth electronics 9774075151 (https://www.we-online.com/components/products/datasheet/9774075151R.pdf), generated with kicad-footprint-generator +Mounting M2.5 9774075151 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M2.5_H7mm_9774070151 +Mounting Hardware, inside through hole M2.5, height 7, Wuerth electronics 9774070151 (https://www.we-online.com/components/products/datasheet/9774070151R.pdf), generated with kicad-footprint-generator +Mounting M2.5 9774070151 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M2.5_H8.5mm_9774085151 +Mounting Hardware, inside through hole M2.5, height 8.5, Wuerth electronics 9774085151 (https://www.we-online.com/components/products/datasheet/9774085151R.pdf), generated with kicad-footprint-generator +Mounting M2.5 9774085151 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M2.5_H8mm_9774080151 +Mounting Hardware, inside through hole M2.5, height 8, Wuerth electronics 9774080151 (https://www.we-online.com/components/products/datasheet/9774080151R.pdf), generated with kicad-footprint-generator +Mounting M2.5 9774080151 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M2.5_H9.5mm_9774095151 +Mounting Hardware, inside through hole M2.5, height 9.5, Wuerth electronics 9774095151 (https://www.we-online.com/components/products/datasheet/9774095151R.pdf), generated with kicad-footprint-generator +Mounting M2.5 9774095151 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M2.5_H9mm_9774090151 +Mounting Hardware, inside through hole M2.5, height 9, Wuerth electronics 9774090151 (https://www.we-online.com/components/products/datasheet/9774090151R.pdf), generated with kicad-footprint-generator +Mounting M2.5 9774090151 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M2.5_H10mm_9774100151 +Mounting Hardware, inside through hole M2.5, height 10, Wuerth electronics 9774100151 (https://www.we-online.com/components/products/datasheet/9774100151R.pdf), generated with kicad-footprint-generator +Mounting M2.5 9774100151 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M2_H0.5mm_9774005243 +Mounting Hardware, inside through hole M2, height 0.5, Wuerth electronics 9774005243 (https://www.we-online.com/components/products/datasheet/9774005243R.pdf), generated with kicad-footprint-generator +Mounting M2 9774005243 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M2_H1.5mm_9774015243 +Mounting Hardware, inside through hole M2, height 1.5, Wuerth electronics 9774015243 (https://www.we-online.com/components/products/datasheet/9774015243R.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://www.we-online.com/components/products/datasheet/9774010243R.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://www.we-online.com/components/products/datasheet/9774025243R.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://www.we-online.com/components/products/datasheet/9774020243R.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://www.we-online.com/components/products/datasheet/9774035243R.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://www.we-online.com/components/products/datasheet/9774030243R.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://www.we-online.com/components/products/datasheet/9774045243R.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://www.we-online.com/components/products/datasheet/9774040243R.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://www.we-online.com/components/products/datasheet/9774050243R.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://www.we-online.com/components/products/datasheet/9774060243R.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://www.we-online.com/components/products/datasheet/9774070243R.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://www.we-online.com/components/products/datasheet/9774080243R.pdf), generated with kicad-footprint-generator +Mounting M2 9774080243 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M3_H0.5mm_9774005360 +Mounting Hardware, inside through hole M3, height 0.5, Wuerth electronics 9774005360 (https://www.we-online.com/components/products/datasheet/9774005360R.pdf), generated with kicad-footprint-generator +Mounting M3 9774005360 +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://www.we-online.com/components/products/datasheet/9774015360R.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://www.we-online.com/components/products/datasheet/9774010360R.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://www.we-online.com/components/products/datasheet/9774025360R.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://www.we-online.com/components/products/datasheet/9774020360R.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://www.we-online.com/components/products/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://www.we-online.com/components/products/datasheet/9774040360R.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://www.we-online.com/components/products/datasheet/9774050360R.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://www.we-online.com/components/products/datasheet/9774060360R.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://www.we-online.com/components/products/datasheet/9774070360R.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://www.we-online.com/components/products/datasheet/9774080360R.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://www.we-online.com/components/products/datasheet/9774090360R.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://www.we-online.com/components/products/datasheet/9774100360R.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://www.we-online.com/components/products/datasheet/9774110360R.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://www.we-online.com/components/products/datasheet/9774120360R.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://www.we-online.com/components/products/datasheet/9774130360R.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://www.we-online.com/components/products/datasheet/9774140360R.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://www.we-online.com/components/products/datasheet/9774150360R.pdf), generated with kicad-footprint-generator +Mounting M3 9774150360 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M3_H16mm_9774160360 +Mounting Hardware, inside through hole M3, height 16, Wuerth electronics 9774160360 (https://www.we-online.com/components/products/datasheet/9774160360R.pdf), generated with kicad-footprint-generator +Mounting M3 9774160360 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M4_H1mm_9774010482 +Mounting Hardware, inside through hole M4, height 1, Wuerth electronics 9774010482 (https://www.we-online.com/components/products/datasheet/9774010482R.pdf), generated with kicad-footprint-generator +Mounting M4 9774010482 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M4_H2mm_9774020482 +Mounting Hardware, inside through hole M4, height 2, Wuerth electronics 9774020482 (https://www.we-online.com/components/products/datasheet/9774020482R.pdf), generated with kicad-footprint-generator +Mounting M4 9774020482 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M4_H3mm_9774030482 +Mounting Hardware, inside through hole M4, height 3, Wuerth electronics 9774030482 (https://www.we-online.com/components/products/datasheet/9774030482R.pdf), generated with kicad-footprint-generator +Mounting M4 9774030482 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M4_H4mm_9774040482 +Mounting Hardware, inside through hole M4, height 4, Wuerth electronics 9774040482 (https://www.we-online.com/components/products/datasheet/9774040482R.pdf), generated with kicad-footprint-generator +Mounting M4 9774040482 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M4_H5mm_9774050482 +Mounting Hardware, inside through hole M4, height 5, Wuerth electronics 9774050482 (https://www.we-online.com/components/products/datasheet/9774050482R.pdf), generated with kicad-footprint-generator +Mounting M4 9774050482 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M4_H6mm_9774060482 +Mounting Hardware, inside through hole M4, height 6, Wuerth electronics 9774060482 (https://www.we-online.com/components/products/datasheet/9774060482R.pdf), generated with kicad-footprint-generator +Mounting M4 9774060482 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M4_H7mm_9774070482 +Mounting Hardware, inside through hole M4, height 7, Wuerth electronics 9774070482 (https://www.we-online.com/components/products/datasheet/9774070482R.pdf), generated with kicad-footprint-generator +Mounting M4 9774070482 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M4_H8mm_9774080482 +Mounting Hardware, inside through hole M4, height 8, Wuerth electronics 9774080482 (https://www.we-online.com/components/products/datasheet/9774080482R.pdf), generated with kicad-footprint-generator +Mounting M4 9774080482 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M4_H9mm_9774090482 +Mounting Hardware, inside through hole M4, height 9, Wuerth electronics 9774090482 (https://www.we-online.com/components/products/datasheet/9774090482R.pdf), generated with kicad-footprint-generator +Mounting M4 9774090482 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M4_H10mm_9774100482 +Mounting Hardware, inside through hole M4, height 10, Wuerth electronics 9774100482 (https://www.we-online.com/components/products/datasheet/9774100482R.pdf), generated with kicad-footprint-generator +Mounting M4 9774100482 +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://www.we-online.com/components/products/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://www.we-online.com/components/products/datasheet/9775031960R.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://www.we-online.com/components/products/datasheet/9775036960R.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://www.we-online.com/components/products/datasheet/9775041960R.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://www.we-online.com/components/products/datasheet/9775046960R.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://www.we-online.com/components/products/datasheet/9775051960R.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://www.we-online.com/components/products/datasheet/9775056960R.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://www.we-online.com/components/products/datasheet/9775066960R.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://www.we-online.com/components/products/datasheet/9775076960R.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://www.we-online.com/components/products/datasheet/9775086960R.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://www.we-online.com/components/products/datasheet/9775096960R.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://www.we-online.com/components/products/datasheet/9775106960R.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://www.we-online.com/components/products/datasheet/9775116960R.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://www.we-online.com/components/products/datasheet/9775026360R.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://www.we-online.com/components/products/datasheet/9775031360R.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://www.we-online.com/components/products/datasheet/9775036360R.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://www.we-online.com/components/products/datasheet/9775041360R.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://www.we-online.com/components/products/datasheet/9775046360R.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://www.we-online.com/components/products/datasheet/9775051360R.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://www.we-online.com/components/products/datasheet/9775056360R.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://www.we-online.com/components/products/datasheet/9775066360R.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://www.we-online.com/components/products/datasheet/9775076360R.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://www.we-online.com/components/products/datasheet/9775086360R.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://www.we-online.com/components/products/datasheet/9775096360R.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://www.we-online.com/components/products/datasheet/9775106360R.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://www.we-online.com/components/products/datasheet/9775116360R.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://www.we-online.com/components/products/datasheet/9776025960R.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://www.we-online.com/components/products/datasheet/9776020960R.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://www.we-online.com/components/products/datasheet/9776030960R.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://www.we-online.com/components/products/datasheet/9776040960R.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://www.we-online.com/components/products/datasheet/9776050960R.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://www.we-online.com/components/products/datasheet/9776060960R.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://www.we-online.com/components/products/datasheet/9776070960R.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://www.we-online.com/components/products/datasheet/9776080960R.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://www.we-online.com/components/products/datasheet/9776090960R.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://www.we-online.com/components/products/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://www.we-online.com/components/products/datasheet/9774015951R.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://www.we-online.com/components/products/datasheet/9774010951R.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://www.we-online.com/components/products/datasheet/9774025951R.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://www.we-online.com/components/products/datasheet/9774020951R.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://www.we-online.com/components/products/datasheet/9774030951R.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://www.we-online.com/components/products/datasheet/9774040951R.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://www.we-online.com/components/products/datasheet/9774055951R.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://www.we-online.com/components/products/datasheet/9774050951R.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://www.we-online.com/components/products/datasheet/9774065951R.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://www.we-online.com/components/products/datasheet/9774060951R.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://www.we-online.com/components/products/datasheet/9774070951R.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://www.we-online.com/components/products/datasheet/9774080951R.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://www.we-online.com/components/products/datasheet/9774090951R.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://www.we-online.com/components/products/datasheet/9774100951R.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://www.we-online.com/components/products/datasheet/9774015943R.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://www.we-online.com/components/products/datasheet/9774010943R.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://www.we-online.com/components/products/datasheet/9774025943R.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://www.we-online.com/components/products/datasheet/9774020943R.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://www.we-online.com/components/products/datasheet/9774035943R.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://www.we-online.com/components/products/datasheet/9774030943R.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://www.we-online.com/components/products/datasheet/9774045943R.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://www.we-online.com/components/products/datasheet/9774040943R.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://www.we-online.com/components/products/datasheet/9774050943R.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://www.we-online.com/components/products/datasheet/9774060943R.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://www.we-online.com/components/products/datasheet/9774070943R.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://www.we-online.com/components/products/datasheet/9774080943R.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://www.we-online.com/components/products/datasheet/9774015960R.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://www.we-online.com/components/products/datasheet/9774010960R.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://www.we-online.com/components/products/datasheet/9774025960R.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://www.we-online.com/components/products/datasheet/9774020960R.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://www.we-online.com/components/products/datasheet/9774030960R.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://www.we-online.com/components/products/datasheet/9774040960R.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://www.we-online.com/components/products/datasheet/9774050960R.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://www.we-online.com/components/products/datasheet/9774060960R.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://www.we-online.com/components/products/datasheet/9774070960R.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://www.we-online.com/components/products/datasheet/9774080960R.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://www.we-online.com/components/products/datasheet/9774090960R.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://www.we-online.com/components/products/datasheet/9774100960R.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://www.we-online.com/components/products/datasheet/9774110960R.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://www.we-online.com/components/products/datasheet/9774120960R.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://www.we-online.com/components/products/datasheet/9774130960R.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://www.we-online.com/components/products/datasheet/9774140960R.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://www.we-online.com/components/products/datasheet/9774150960R.pdf), generated with kicad-footprint-generator +Mounting 3.3mm 9774150960 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMST-3.3mm_H16mm_9774160960 +Mounting Hardware, inside through hole 3.3mm, height 16, Wuerth electronics 9774160960 (https://www.we-online.com/components/products/datasheet/9774160960R.pdf), generated with kicad-footprint-generator +Mounting 3.3mm 9774160960 +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://www.we-online.com/components/products/datasheet/9774010982R.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://www.we-online.com/components/products/datasheet/9774020982R.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://www.we-online.com/components/products/datasheet/9774030982R.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://www.we-online.com/components/products/datasheet/9774040982R.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://www.we-online.com/components/products/datasheet/9774050982R.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://www.we-online.com/components/products/datasheet/9774060982R.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://www.we-online.com/components/products/datasheet/9774070982R.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://www.we-online.com/components/products/datasheet/9774080982R.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://www.we-online.com/components/products/datasheet/9774090982R.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://www.we-online.com/components/products/datasheet/9774100982R.pdf), generated with kicad-footprint-generator +Mounting 4.5mm 9774100982 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WP-SMRA-D3.3mm_L7mm_7466300_Horizontal +Right-angle SMD mounting hardware, inside through hole 3.3mm, lenght 7mm, total height 5mm, Würth electronics 7466300 (https://www.we-online.com/components/products/datasheet/7466300.pdf) +screw +0 +4 +1 +Mounting_Wuerth +Mounting_Wuerth_WP-SMRA-M3_L7mm_7466303_Horizontal +Right-angle SMD mounting Hardware, inside threaded M3, length 7m, total height 5mm, Würth electronics 7466303 (https://www.we-online.com/components/products/datasheet/7466303.pdf) +threaded screw +0 +4 +1 +Nanosh_TP4056 +SOIC127P600X175-9N + + +0 +9 +9 +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 +AMS_TSL25911FN +DFN, 6 Pin (https://ams.com/documents/20143/9331680/TSL2591_DS000338_7-00.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +DFN NoLead +0 +6 +6 +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-9160-003 +Broadcom DFN, 8 Pin (https://docs.broadcom.com/docs/APDS-9160-003-DS) +proximity sensor avago +0 +8 +8 +OptoDevice +Broadcom_APDS-9301 +ambient light sensor, i2c interface, 6-pin chipled package, https://docs.broadcom.com/docs/AV02-2315EN +ambient light sensor chipled +0 +6 +6 +OptoDevice +Broadcom_DFN-6_2x2mm_P0.65mm +Broadcom DFN, 6 Pin (https://docs.broadcom.com/docs/AV02-4755EN), generated with kicad-footprint-generator ipc_noLead_generator.py +Broadcom DFN NoLead +0 +6 +6 +OptoDevice +Broadcom_LGA-8_2x2mm_P0.5mm +Broadcom LGA, 8 Pin (https://docs.broadcom.com/doc/APDS-9251-001-DS#page=19), generated with kicad-footprint-generator ipc_noLead_generator.py +Broadcom LGA NoLead +0 +8 +8 +OptoDevice +Broadcom_LGA-8_2x2mm_P0.53mm +Broadcom LGA, 8 Pin (https://docs.broadcom.com/docs/AV02-4755EN), generated with kicad-footprint-generator ipc_noLead_generator.py +Broadcom LGA NoLead +0 +8 +8 +OptoDevice +Everlight_IRM-H6xxT +Everlight IRM-H6xxT infrared remote control receiver module, https://en.everlight.com/wp-content/plugins/ItemRelationship/product_files/pdf/DMO-0000004-IRM-H6XX-TR2_Series_Datasheet_V4.pdf +everlight ir remote receiver +0 +4 +4 +OptoDevice +Everlight_ITR1201SR10AR +package for Everlight ITR1201SR10AR, light-direction upwards, see https://www.everlight.com/file/ProductFile/ITR1201SR10AR-TR.pdf +reflective opto couple photo coupler +0 +4 +4 +OptoDevice +Everlight_ITR8307 +package for Everlight ITR8307 with PCB cutout, light-direction upwards, see http://www.everlight.com/file/ProductFile/ITR8307.pdf +refective opto couple photo coupler +0 +4 +4 +OptoDevice +Everlight_ITR8307F43 +package for Everlight ITR8307/F43, see https://everlighteurope.com/index.php?controller=attachment&id_attachment=5385 +refective opto couple photo coupler +0 +4 +4 +OptoDevice +Everlight_ITR8307_Reverse +package for Everlight ITR8307 with PCB cutout, light-direction downwards, see http://www.everlight.com/file/ProductFile/ITR8307.pdf +refective opto couple photo coupler +0 +4 +4 +OptoDevice +Everlight_ITR9608-F +Fork-type photointerrupter (https://everlighteurope.com/index.php?controller=attachment&id_attachment=5389) +Photointerrupter infrared LED +0 +4 +4 +OptoDevice +Finder_34.81 +Relay SPST, Finder Type 34.81 (opto relays/coupler), vertical/standing form, see https://gfinder.findernet.com/public/attachments/34/EN/S34USAEN.pdf +Relay SPST Finder +0 +4 +4 +OptoDevice +Hamamatsu_C12880 +Hamamatsu spectrometer, see http://www.hamamatsu.com/resources/pdf/ssd/c12880ma_kacc1226e.pdf +opto spectrometer Hamamatsu +0 +10 +10 +OptoDevice +Hamamatsu_S13360-30CS +SiPM, 2pin +Hamamatsu SiPM +0 +2 +2 +OptoDevice +Hamamatsu_S14160-6050HS +Hamamatsu single MPPC, 6x6mm, 50um pixel pitch, 14331 pixels, 57% geometric fill factor, https://www.hamamatsu.com/content/dam/hamamatsu-photonics/sites/documents/99_SALES_LIBRARY/ssd/s14160_s14161_series_kapd1064e.pdf +Hamamatsu MPPC photon counter SMD SiPM +0 +8 +2 +OptoDevice +Kingbright_KPS-3227 +3.2mmx2.7mm, light sensor, https://www.kingbright.com/attachments/file/psearch/000/00/00/KPS-3227SP1C(Ver.16).pdf +KPS-3227 Ambient Light Photo Sensor +0 +4 +4 +OptoDevice +Kingbright_KPS-5130 +http://www.kingbright.com/attachments/file/psearch/000/00/00/KPS-5130PD7C(Ver.14).pdf +KPS-5130 photodiode RGB sensor +0 +4 +4 +OptoDevice +Kingbright_KRC011_Horizontal +Subminiature Reflective Optical Sensor, http://www.kingbright.com/attachments/file/psearch/000/00/00/KRC011(Ver.15).pdf +Subminiature Reflective Optical Sensor +0 +4 +4 +OptoDevice +Kingbright_KRC011_Vertical +Subminiature Reflective Optical Sensor, http://www.kingbright.com/attachments/file/psearch/000/00/00/KRC011(Ver.15).pdf +Subminiature Reflective Optical Sensor +0 +4 +4 +OptoDevice +Kodenshi_LG206D +http://kodenshi.co.jp/products/pdf/sensor/photointerrupter_ic/LG206D.pdf +Photointerrupter infrared LED with photo IC +0 +5 +5 +OptoDevice +Kodenshi_LG206L +http://kodenshi.co.jp/products/pdf/sensor/photointerrupter_ic/LG205L.pdf +Photointerrupter infrared LED with photo IC +0 +5 +5 +OptoDevice +Kodenshi_SG105 +package for Kodenshi SG-105 with PCB cutout, light-direction upwards, see http://www.kodenshi.co.jp/products/pdf/sensor/photointerrupter_ref/SG-105.pdf +refective opto couple photo coupler +0 +4 +4 +OptoDevice +Kodenshi_SG105F +package for Kodenshi SG-105F, see http://www.kodenshi.co.jp/products/pdf/sensor/photointerrupter_ref/SG-105F.pdf +refective opto couple photo coupler +0 +4 +4 +OptoDevice +Kodenshi_SG105_Reverse +package for Kodenshi SG-105 with PCB cutout, light-direction downwards, see http://www.kodenshi.co.jp/products/pdf/sensor/photointerrupter_ref/SG-105.pdf +refective opto couple photo coupler +0 +4 +4 +OptoDevice +LaserDiode_TO3.3-D3.3-3 +Laser Diode, TO-3.3mm, 3pin +Laser Diode TO3.3 +0 +3 +3 +OptoDevice +LaserDiode_TO5-D9-3 +Laser Diode, TO5-like (D=9mm), 3pin +Laser Diode TO5-like +0 +3 +3 +OptoDevice +LaserDiode_TO18-D5.6-3 +Laser Diode, TO18-like (D=5.6mm), 3pin +Laser Diode TO18-like +0 +3 +3 +OptoDevice +LaserDiode_TO38ICut-3 +Laser Diode, TO-38-ICut, 3pin +Laser Diode TO38-ICut +0 +3 +3 +OptoDevice +LaserDiode_TO56-3 +Laser Diode, TO-56, 3pin +Laser Diode TO56 +0 +3 +3 +OptoDevice +Lightpipe_Bivar_RLP1-400-650 +1-way, 2.8mm lightpipe, 10mm lens output height, 17mm protrusion, https://www.bivar.com/parts_content/Datasheets/RLP1-XXX-XXX.pdf +planar light pipe 1 way 3mm +0 +0 +0 +OptoDevice +Lightpipe_Bivar_SLP3-150-100-F +1-way, 3mm lightpipe, flat face, 3.8mm lens output height, 2.54mm protrusion, https://www.bivar.com/parts_content/Datasheets/SLP3-150-XXX-X.pdf +light pipe 1 way 3mm +0 +0 +0 +OptoDevice +Lightpipe_Bivar_SLP3-150-100-R +1-way, 3mm lightpipe, round face, 3.8mm lens output height, 2.54mm protrusion, https://www.bivar.com/parts_content/Datasheets/SLP3-150-XXX-X.pdf +light pipe 1 way 3mm +0 +0 +0 +OptoDevice +Lightpipe_Bivar_SLP3-150-150-F +1-way, 3mm lightpipe, flat face, 3.8mm lens output height, 3.81mm protrusion, https://www.bivar.com/parts_content/Datasheets/SLP3-150-XXX-X.pdf +light pipe 1 way 3mm +0 +0 +0 +OptoDevice +Lightpipe_Bivar_SLP3-150-150-R +1-way, 3mm lightpipe, round face, 3.8mm lens output height, 3.81mm protrusion, https://www.bivar.com/parts_content/Datasheets/SLP3-150-XXX-X.pdf +light pipe 1 way 3mm +0 +0 +0 +OptoDevice +Lightpipe_Bivar_SLP3-150-200-R +1-way, 3mm lightpipe, round face, 3.8mm lens output height, 5.08mm protrusion, https://www.bivar.com/parts_content/Datasheets/SLP3-150-XXX-X.pdf +light pipe 1 way 3mm +0 +0 +0 +OptoDevice +Lightpipe_Bivar_SLP3-150-250-F +1-way, 3mm lightpipe, flat face, 3.8mm lens output height, 6.35mm protrusion, https://www.bivar.com/parts_content/Datasheets/SLP3-150-XXX-X.pdf +light pipe 1 way 3mm +0 +0 +0 +OptoDevice +Lightpipe_Bivar_SLP3-150-250-R +1-way, 3mm lightpipe, round face, 3.8mm lens output height, 6.35mm protrusion, https://www.bivar.com/parts_content/Datasheets/SLP3-150-XXX-X.pdf +light pipe 1 way 3mm +0 +0 +0 +OptoDevice +Lightpipe_Bivar_SLP3-150-300-F +1-way, 3mm lightpipe, flat face, 3.8mm lens output height, 7.62mm protrusion, https://www.bivar.com/parts_content/Datasheets/SLP3-150-XXX-X.pdf +light pipe 1 way 3mm +0 +0 +0 +OptoDevice +Lightpipe_Bivar_SLP3-150-300-R +1-way, 3mm lightpipe, round face, 3.8mm lens output height, 7.62mm protrusion, https://www.bivar.com/parts_content/Datasheets/SLP3-150-XXX-X.pdf +light pipe 1 way 3mm +0 +0 +0 +OptoDevice +Lightpipe_Bivar_SLP3-150-450-R +1-way, 3mm lightpipe, round face, 3.8mm lens output height, 11.43mm protrusion, https://www.bivar.com/parts_content/Datasheets/SLP3-150-XXX-X.pdf +light pipe 1 way 3mm +0 +0 +0 +OptoDevice +Lightpipe_Dialight_515-1064F +https://www.dialightsignalsandcomponents.com/515-optopipe-light-pipe-trilevel-2-5mm-rnd-flat-diff-lens-press-fit/#tab-resources +lightpipe triple tower right angle 3mm +0 +0 +0 +OptoDevice +Lightpipe_LPF-C012303S +https://www.lumex.com/spec/LPF-C012303S.pdf +lightpipe dual tower right angle 3mm +0 +0 +0 +OptoDevice +Lightpipe_LPF-C013301S +https://www.lumex.com/spec/LPF-C013301S.pdf +lightpipe triple tower right angle 3mm +0 +0 +0 +OptoDevice +Lightpipe_Mentor_1275.x00x +https://www.mentor-bauelemente.de/katalog/ll/MENTOR-LL.pdf +spherical light pipe 4 way 3mm PLCC-2 PLCC-4 +0 +0 +0 +OptoDevice +Lightpipe_Mentor_1276.1004 +https://www.mentor-bauelemente.de/katalog/ll/MENTOR-LL.pdf +spherical light pipe 4 way 3mm PLCC-2 PLCC-4 +0 +0 +0 +OptoDevice +Lightpipe_Mentor_1276.2004 +https://www.mentor-bauelemente.de/katalog/ll/MENTOR-LL.pdf +planar light pipe 4 way 3mm PLCC-2 PLCC-4 +0 +0 +0 +OptoDevice +Lite-On_LTR-303ALS-01 +ambient light sensor, i2c interface, 6-pin chipled package, http://optoelectronics.liteon.com/upload/download/DS86-2013-0004/LTR-303ALS-01_DS_V1.pdf +ambient light sensor chipled +0 +6 +6 +OptoDevice +Luna_NSL-32 +Optoisolator with LED and photoresistor +optoisolator +0 +4 +4 +OptoDevice +Maxim_OLGA-14_3.3x5.6mm_P0.8mm +https://pdfserv.maximintegrated.com/land_patterns/90-0602.PDF +OLGA-14 OESIP-14 +0 +14 +14 +OptoDevice +ONSemi_QSE15x +3 Lead Plastic Package +ONSemi QSE158 QSE159 +0 +3 +3 +OptoDevice +OnSemi_CASE100AQ +OnSemi CASE 100AQ for QRE1113, see https://www.onsemi.com/pub/Collateral/QRE1113-D.PDF +reflective opto couple photo coupler +0 +4 +4 +OptoDevice +OnSemi_CASE100CY +OnSemi CASE 100CY, light-direction upwards, see http://www.onsemi.com/pub/Collateral/QRE1113-D.PDF +refective opto couple photo coupler +0 +4 +4 +OptoDevice +Osram_BP104-SMD +PhotoDiode, plastic SMD DIL, 4.5x4mm, area: 2.2x2.2mm, https://dammedia.osram.info/media/resource/hires/osram-dam-5989350/BP%20104%20FAS_EN.pdf +PhotoDiode plastic SMD DIL +0 +6 +2 +OptoDevice +Osram_BPW34S-SMD +PhotoDiode, plastic SMD DIL, 4.5x4mm, area: 2.65x2.65mm, https://dammedia.osram.info/media/resource/hires/osram-dam-5488319/BPW%2034%20S_EN.pdf +PhotoDiode plastic SMD DIL +0 +6 +2 +OptoDevice +Osram_BPW82 +PhotoDiode, BPW82, RM2.54 +PhotoDiode BPW82 RM2.54 +0 +2 +2 +OptoDevice +Osram_DIL2_4.3x4.65mm_P5.08mm +PhotoDiode, plastic DIL, 4.3x4.65mm², RM5.08 +PhotoDiode plastic DIL RM5.08 +0 +2 +2 +OptoDevice +Osram_LPT80A +PhotoTransistor, sidelooker package, RM2.54 +PhotoTransistor sidelooker package RM2.54 +0 +2 +2 +OptoDevice +Osram_SFH9x0x +package for Osram SFH9x0x series of reflective photo interrupters/couplers, see http://www.osram-os.com/Graphics/XPic6/00200860_0.pdf +reflective photo interrupter SMD +0 +6 +6 +OptoDevice +Osram_SFH205 +PhotoDiode, SFH205, RM2.54 +PhotoDiode SFH205 RM2.54 +0 +2 +2 +OptoDevice +Osram_SFH225 +PhotoDiode, SFH225, RM2.54 +PhotoDiode SFH225 RM2.54 +0 +2 +2 +OptoDevice +Osram_SFH2201 +PhotoDiode, Clear Silicone, Osram TOPLED, 4x5.09mm, area: 2.85x2.85mm, Orientation mark at cathode, https://dammedia.osram.info/media/resource/hires/osram-dam-25688470/SFH%202201%20A01_EN.pdf +PhotoDiode silicone +0 +6 +2 +OptoDevice +Osram_SFH2430 +PhotoDiode, plastic SMD DIL, 4.5x4mm, area: 2.65x2.65mm, https://dammedia.osram.info/media/resource/hires/osram-dam-5467144/SFH%202430_EN.pdf +PhotoDiode plastic SMD DIL +0 +6 +2 +OptoDevice +Osram_SFH2440 +PhotoDiode, plastic SMD DIL, 4.5x4mm, area: 2.65x2.65mm, https://dammedia.osram.info/media/resource/hires/osram-dam-5467146/SFH%202440_EN.pdf +PhotoDiode plastic SMD DIL +0 +6 +2 +OptoDevice +Osram_SFH3710 +Osram SHF3710 NPN phototransistor, SMD Chip LED package, 2.0 x 1.25mm, height 0.85mm, https://look.ams-osram.com/m/14a91a7e00106d22/original/SFH-3710.pdf +phototransistor npn +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 +Renesas_DFN-6_1.5x1.6mm_P0.5mm +DFN, 6 Pin (https://www.renesas.com/us/en/document/psc/package-drawing-hodfn-6pin-l615x16?language=en&r=568376) +DFN NoLead +0 +6 +6 +OptoDevice +Rohm_RPR-0720 +Rohm DFN, 6 Pin (https://fscdn.rohm.com/en/products/databook/datasheet/opto/optical_sensor/photosensor/rpr-0720-e.pdf) +proximity sensor rohm +0 +6 +6 +OptoDevice +ST_VL53L0X +https://www.st.com/resource/en/datasheet/vl53l1x.pdf +laser-ranging sensor +0 +12 +12 +OptoDevice +Sharp_GP2S700HCP +Sharp GP2S700HCP, light-direction upwards, see: https://www.sharpsde.com/fileadmin/products/Optoelectronics/Isolation%20Devices/Specs_Photointerrupter/GP2S700HCP_03Oct05_DS_D3-A02201FEN.pdf +refective opto couple photo coupler +0 +4 +4 +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, https://www.vishay.com/docs/83751/cny70.pdf +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 +OptoDevice +Vishay_TCRT5000 +IR Reflective Optical Sensor with Transistor Output TCRT5000 https://www.vishay.com/docs/83760/tcrt5000.pdf +IR Reflective Optical Sensor with Transistor Output TCRT5000 Vishay Distance Sensor +0 +4 +4 +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 +Abracon ASE, Miniature Crystal Clock Oscillator, 3.2x2.5mm package, SMD, generated with kicad-footprint-generator make_crystal.py, http://www.abracon.com/Oscillators/ASEseries.pdf +SMD SMT crystal oscillator +0 +4 +4 +Oscillator +Oscillator_SMD_Abracon_ASE-4Pin_3.2x2.5mm_HandSoldering +Abracon ASE, Miniature Crystal Clock Oscillator, 3.2x2.5mm package, SMD, hand-soldering, generated with kicad-footprint-generator make_crystal.py, http://www.abracon.com/Oscillators/ASEseries.pdf +SMD SMT crystal oscillator +0 +4 +4 +Oscillator +Oscillator_SMD_Abracon_ASV-4Pin_7.0x5.1mm +Abracon ASV, Miniature Crystal Clock Oscillator, 7.0x5.1mm package, SMD, generated with kicad-footprint-generator make_crystal.py, http://www.abracon.com/Oscillators/ASV.pdf + +0 +4 +4 +Oscillator +Oscillator_SMD_Abracon_ASV-4Pin_7.0x5.1mm_HandSoldering +Abracon ASV, Miniature Crystal Clock Oscillator, 7.0x5.1mm package, SMD, hand-soldering, generated with kicad-footprint-generator make_crystal.py, http://www.abracon.com/Oscillators/ASV.pdf + +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_RotB +EuroQuartz XO32, Miniature Crystal Clock Oscillator, 3.2x2.5mm package, SMD, generated with kicad-footprint-generator make_crystal.py, http://cdn-reichelt.de/documents/datenblatt/B400/XO32.pdf + +0 +4 +4 +Oscillator +Oscillator_SMD_EuroQuartz_XO32-4Pin_3.2x2.5mm_RotB_HandSoldering +EuroQuartz XO32, Miniature Crystal Clock Oscillator, 3.2x2.5mm package, SMD, hand-soldering, generated with kicad-footprint-generator make_crystal.py, http://cdn-reichelt.de/documents/datenblatt/B400/XO32.pdf + +0 +4 +4 +Oscillator +Oscillator_SMD_EuroQuartz_XO53-4Pin_5.0x3.2mm +EuroQuartz XO53, Miniature Crystal Clock Oscillator, 5.0x3.2mm package, SMD, generated with kicad-footprint-generator make_crystal.py, http://cdn-reichelt.de/documents/datenblatt/B400/XO53.pdf + +0 +4 +4 +Oscillator +Oscillator_SMD_EuroQuartz_XO53-4Pin_5.0x3.2mm_HandSoldering +EuroQuartz XO53, Miniature Crystal Clock Oscillator, 5.0x3.2mm package, SMD, hand-soldering, generated with kicad-footprint-generator make_crystal.py, http://cdn-reichelt.de/documents/datenblatt/B400/XO53.pdf + +0 +4 +4 +Oscillator +Oscillator_SMD_EuroQuartz_XO91-4Pin_7.0x5.0mm +EuroQuartz XO91, Miniature Crystal Clock Oscillator, 7.0x5.0mm package, SMD, generated with kicad-footprint-generator make_crystal.py, http://cdn-reichelt.de/documents/datenblatt/B400/XO91.pdf + +0 +4 +4 +Oscillator +Oscillator_SMD_EuroQuartz_XO91-4Pin_7.0x5.0mm_HandSoldering +EuroQuartz XO91, Miniature Crystal Clock Oscillator, 7.0x5.0mm package, SMD, hand-soldering, generated with kicad-footprint-generator make_crystal.py, http://cdn-reichelt.de/documents/datenblatt/B400/XO91.pdf + +0 +4 +4 +Oscillator +Oscillator_SMD_Fordahl_DFAS1-6Pin_14.8x9.1mm +Fordahl DFA S1-KHZ/LHZ, Miniature Crystal Clock Oscillator TXCO, 14.8x9.1mm package, SMD, generated with kicad-footprint-generator make_crystal.py, http://www.iqdfrequencyproducts.com/products/details/iqxo-70-11-30.pdf + +0 +6 +6 +Oscillator +Oscillator_SMD_Fordahl_DFAS2-4Pin_7.3x5.1mm +Fordahl DFA S2-KS/LS/US, Miniature Crystal Clock Oscillator TXCO, 7.3x5.1mm package, SMD, generated with kicad-footprint-generator make_crystal.py, http://www.iqdfrequencyproducts.com/products/details/iqxo-70-11-30.pdf + +0 +4 +4 +Oscillator +Oscillator_SMD_Fordahl_DFAS2-4Pin_7.3x5.1mm_HandSoldering +Fordahl DFA S2-KS/LS/US, Miniature Crystal Clock Oscillator TXCO, 7.3x5.1mm package, SMD, hand-soldering, generated with kicad-footprint-generator make_crystal.py, http://www.iqdfrequencyproducts.com/products/details/iqxo-70-11-30.pdf + +0 +4 +4 +Oscillator +Oscillator_SMD_Fordahl_DFAS3-4Pin_9.1x7.2mm +Fordahl DFA S3-KS/LS/US, Miniature Crystal Clock Oscillator TXCO, 9.1x7.2mm package, SMD, generated with kicad-footprint-generator make_crystal.py, http://www.iqdfrequencyproducts.com/products/details/iqxo-70-11-30.pdf + +0 +4 +4 +Oscillator +Oscillator_SMD_Fordahl_DFAS3-4Pin_9.1x7.2mm_HandSoldering +Fordahl DFA S3-KS/LS/US, Miniature Crystal Clock Oscillator TXCO, 9.1x7.2mm package, SMD, hand-soldering, generated with kicad-footprint-generator make_crystal.py, http://www.iqdfrequencyproducts.com/products/details/iqxo-70-11-30.pdf + +0 +4 +4 +Oscillator +Oscillator_SMD_Fordahl_DFAS7-4Pin_19.9x12.9mm +Fordahl DFA S7-K/L, Miniature Crystal Clock Oscillator TXCO, 19.9x12.9mm package, SMD, generated with kicad-footprint-generator make_crystal.py, http://www.iqdfrequencyproducts.com/products/details/iqxo-70-11-30.pdf + +0 +4 +4 +Oscillator +Oscillator_SMD_Fordahl_DFAS7-4Pin_19.9x12.9mm_HandSoldering +Fordahl DFA S7-K/L, Miniature Crystal Clock Oscillator TXCO, 19.9x12.9mm package, SMD, hand-soldering, generated with kicad-footprint-generator make_crystal.py, http://www.iqdfrequencyproducts.com/products/details/iqxo-70-11-30.pdf + +0 +4 +4 +Oscillator +Oscillator_SMD_Fordahl_DFAS11-4Pin_7.0x5.0mm +Fordahl DFA S11-OV/UOV, Miniature Crystal Clock Oscillator TXCO, 7.0x5.0mm package, SMD, generated with kicad-footprint-generator make_crystal.py, http://www.iqdfrequencyproducts.com/products/details/iqxo-70-11-30.pdf + +0 +4 +4 +Oscillator +Oscillator_SMD_Fordahl_DFAS11-4Pin_7.0x5.0mm_HandSoldering +Fordahl DFA S11-OV/UOV, Miniature Crystal Clock Oscillator TXCO, 7.0x5.0mm package, SMD, hand-soldering, generated with kicad-footprint-generator make_crystal.py, http://www.iqdfrequencyproducts.com/products/details/iqxo-70-11-30.pdf + +0 +4 +4 +Oscillator +Oscillator_SMD_Fordahl_DFAS15-4Pin_5.0x3.2mm +Fordahl DFA S15-OV/UOV, Ultraminiature Crystal Clock Oscillator TXCO, 5.0x3.2mm package, SMD, generated with kicad-footprint-generator make_crystal.py, http://www.iqdfrequencyproducts.com/products/details/iqxo-70-11-30.pdf + +0 +4 +4 +Oscillator +Oscillator_SMD_Fordahl_DFAS15-4Pin_5.0x3.2mm_HandSoldering +Fordahl DFA S15-OV/UOV, Ultraminiature Crystal Clock Oscillator TXCO, 5.0x3.2mm package, SMD, hand-soldering, generated with kicad-footprint-generator make_crystal.py, http://www.iqdfrequencyproducts.com/products/details/iqxo-70-11-30.pdf + +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 IQXO-70, Crystal Clock Oscillator, 7.5x5.0mm package, SMD, generated with kicad-footprint-generator make_crystal.py, http://www.iqdfrequencyproducts.com/products/details/iqxo-70-11-30.pdf + +0 +4 +4 +Oscillator +Oscillator_SMD_IQD_IQXO70-4Pin_7.5x5.0mm_HandSoldering +IQD IQXO-70, Crystal Clock Oscillator, 7.5x5.0mm package, SMD, hand-soldering, generated with kicad-footprint-generator make_crystal.py, http://www.iqdfrequencyproducts.com/products/details/iqxo-70-11-30.pdf + +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 +Seiko Epson SG-210, Crystal Oscillator, 2.5x2.0mm package, SMD, generated with kicad-footprint-generator make_crystal.py, https://support.epson.biz/td/api/doc_check.php?mode=dl&lang=en&Parts=SG-210SED + +0 +4 +4 +Oscillator +Oscillator_SMD_SeikoEpson_SG210-4Pin_2.5x2.0mm_HandSoldering +Seiko Epson SG-210, Crystal Oscillator, 2.5x2.0mm package, SMD, hand-soldering, generated with kicad-footprint-generator make_crystal.py, https://support.epson.biz/td/api/doc_check.php?mode=dl&lang=en&Parts=SG-210SED + +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 +Seiko Epson SG-8002CA, Crystal Oscillator, 7.0x5.0mm package, SMD, generated with kicad-footprint-generator make_crystal.py, https://support.epson.biz/td/api/doc_check.php?mode=dl&lang=en&Parts=SG-8002DC + +0 +4 +4 +Oscillator +Oscillator_SMD_SeikoEpson_SG8002CA-4Pin_7.0x5.0mm_HandSoldering +Seiko Epson SG-8002CA, Crystal Oscillator, 7.0x5.0mm package, SMD, hand-soldering, generated with kicad-footprint-generator make_crystal.py, https://support.epson.biz/td/api/doc_check.php?mode=dl&lang=en&Parts=SG-8002DC + +0 +4 +4 +Oscillator +Oscillator_SMD_SeikoEpson_SG8002CE-4Pin_3.2x2.5mm +Seiko Epson SG-8002CE, Crystal Oscillator, 3.2x2.5mm package, SMD, generated with kicad-footprint-generator make_crystal.py, https://support.epson.biz/td/api/doc_check.php?mode=dl&lang=en&Parts=SG-8002DC + +0 +4 +4 +Oscillator +Oscillator_SMD_SeikoEpson_SG8002CE-4Pin_3.2x2.5mm_HandSoldering +Seiko Epson SG-8002CE, Crystal Oscillator, 3.2x2.5mm package, SMD, hand-soldering, generated with kicad-footprint-generator make_crystal.py, https://support.epson.biz/td/api/doc_check.php?mode=dl&lang=en&Parts=SG-8002DC + +0 +4 +4 +Oscillator +Oscillator_SMD_SeikoEpson_SG8002JA-4Pin_14.0x8.7mm +Seiko Epson SG-8002JA, Crystal Oscillator, 14.0x8.7mm package, SMD, generated with kicad-footprint-generator make_crystal.py, https://support.epson.biz/td/api/doc_check.php?mode=dl&lang=en&Parts=SG-8002DC + +0 +4 +4 +Oscillator +Oscillator_SMD_SeikoEpson_SG8002JA-4Pin_14.0x8.7mm_HandSoldering +Seiko Epson SG-8002JA, Crystal Oscillator, 14.0x8.7mm package, SMD, hand-soldering, generated with kicad-footprint-generator make_crystal.py, https://support.epson.biz/td/api/doc_check.php?mode=dl&lang=en&Parts=SG-8002DC + +0 +4 +4 +Oscillator +Oscillator_SMD_SeikoEpson_SG8002JC-4Pin_10.5x5.0mm +Seiko Epson SG-8002JC, Crystal Oscillator, 10.5x5.0mm package, SMD, generated with kicad-footprint-generator make_crystal.py, https://support.epson.biz/td/api/doc_check.php?mode=dl&lang=en&Parts=SG-8002DC + +0 +4 +4 +Oscillator +Oscillator_SMD_SeikoEpson_SG8002JC-4Pin_10.5x5.0mm_HandSoldering +Seiko Epson SG-8002JC, Crystal Oscillator, 10.5x5.0mm package, SMD, hand-soldering, generated with kicad-footprint-generator make_crystal.py, https://support.epson.biz/td/api/doc_check.php?mode=dl&lang=en&Parts=SG-8002DC + +0 +4 +4 +Oscillator +Oscillator_SMD_SeikoEpson_SG8002LB-4Pin_5.0x3.2mm +Seiko Epson SG-8002LB, Crystal Oscillator, 5.0x3.2mm package, SMD, generated with kicad-footprint-generator make_crystal.py, https://support.epson.biz/td/api/doc_check.php?mode=dl&lang=en&Parts=SG-8002DC + +0 +4 +4 +Oscillator +Oscillator_SMD_SeikoEpson_SG8002LB-4Pin_5.0x3.2mm_HandSoldering +Seiko Epson SG-8002LB, Crystal Oscillator, 5.0x3.2mm package, SMD, hand-soldering, generated with kicad-footprint-generator make_crystal.py, https://support.epson.biz/td/api/doc_check.php?mode=dl&lang=en&Parts=SG-8002DC + +0 +4 +4 +Oscillator +Oscillator_SMD_SeikoEpson_TG2520SMN-xxx-xxxxxx-4Pin_2.5x2.0mm +Miniature Crystal Clock Oscillator TG2520 series, https://support.epson.biz/td/api/doc_check.php?dl=app_TG2520SMN&lang=en +Miniature Crystal Clock Oscillator TG2520 series SMD SMT +0 +4 +4 +Oscillator +Oscillator_SMD_SiT_PQFN-4Pin_2.0x1.6mm +SiTime SiT8008B, MEMS programmable oscillator, 2.0x1.6mm package, SMD, generated with kicad-footprint-generator make_crystal.py, https://www.sitime.com/datasheet/SiT8008 page 10 + +0 +4 +4 +Oscillator +Oscillator_SMD_SiT_PQFN-4Pin_2.5x2.0mm +SiTime SiT8008B, MEMS programmable oscillator, 2.5x2.0mm package, SMD, generated with kicad-footprint-generator make_crystal.py, https://www.sitime.com/datasheet/SiT8008 page 10 + +0 +4 +4 +Oscillator +Oscillator_SMD_SiT_PQFN-4Pin_3.2x2.5mm +SiTime SiT8008B, MEMS programmable oscillator, 3.2x2.5mm package, SMD, generated with kicad-footprint-generator make_crystal.py, https://www.sitime.com/datasheet/SiT8008 page 11 + +0 +4 +4 +Oscillator +Oscillator_SMD_SiT_PQFN-4Pin_5.0x3.2mm +SiTime SiT8008B, MEMS programmable oscillator, 5.0x3.2mm package, SMD, generated with kicad-footprint-generator make_crystal.py, https://www.sitime.com/datasheet/SiT8008 page 11 + +0 +4 +4 +Oscillator +Oscillator_SMD_SiT_PQFN-4Pin_7.0x5.0mm +SiTime SiT8008B, MEMS programmable oscillator, 7.0x5.0mm package, SMD, generated with kicad-footprint-generator make_crystal.py, https://www.sitime.com/datasheet/SiT8008 page 12 + +0 +4 +4 +Oscillator +Oscillator_SMD_SiTime_PQFD-6L_3.2x2.5mm +3.2x2.5mm, 6-pin QFN (https://www.sitime.com/datasheet/SiT9365 page 13) +SMD SMT mems oscillator +0 +6 +6 +Oscillator +Oscillator_SMD_SiTime_SiT9121-6Pin_3.2x2.5mm +3.2x2.5mm, 1-220MHz High Performance Differential Oscillator SiTime SiT9121 https://www.sitime.com/datasheet/SiT9121 +SMD SMT crystal oscillator +0 +6 +6 +Oscillator +Oscillator_SMD_Silicon_Labs_LGA-6_2.5x3.2mm_P1.25mm +Silicon_Labs LGA, 6 Pin (https://www.silabs.com/documents/public/data-sheets/si512-13.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +Silicon_Labs LGA NoLead +0 +6 +6 +Oscillator +Oscillator_SMD_TCXO_G158 +TCXO +TCXO +0 +4 +4 +Oscillator +Oscillator_SMD_TXC_7C-4Pin_5.0x3.2mm +TXC 7C, Miniature Crystal Clock Oscillator, 5.0x3.2mm package, SMD, generated with kicad-footprint-generator make_crystal.py, http://www.txccorp.com/download/products/osc/7C_o.pdf + +0 +4 +4 +Oscillator +Oscillator_SMD_TXC_7C-4Pin_5.0x3.2mm_HandSoldering +TXC 7C, Miniature Crystal Clock Oscillator, 5.0x3.2mm package, SMD, hand-soldering, generated with kicad-footprint-generator make_crystal.py, http://www.txccorp.com/download/products/osc/7C_o.pdf + +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 +Alliance_TFBGA-36_6x8mm_Layout6x8_P0.75mm +Alliance TFBGA-36, NSMD, 6.0x8.0mm, 36 Ball, 6x8 Layout, 0.75mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://www.alliancememory.com/wp-content/uploads/pdf/AS6C1008_Mar_2023V1.2.pdf#page=13 +BGA 36 0.75 36-ball FBGA +0 +36 +36 +Package_BGA +Alliance_TFBGA-54_8x8mm_Layout9x9_P0.8mm +Alliance TFBGA 54 pins, 8x8mm, 54 Ball, 9x9 Layout, 0.8mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://www.alliancememory.com/wp-content/uploads/pdf/dram/Alliance_Memory_64M-AS4C4M16SA-CI_v5.0_October_2018.pdf#page=54 +BGA 54 0.8 +0 +54 +54 +Package_BGA +Analog_BGA-28_4x6.25mm_Layout4x7_P0.8mm +Analog BGA-28, 0.4mm pad, 4.0x6.25mm, 28 Ball, 4x7 Layout, 0.8mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://www.analog.com/media/en/technical-documentation/data-sheets/8063fa.pdf +BGA 28 0.8 +0 +28 +28 +Package_BGA +Analog_BGA-49_6.25x6.25mm_Layout7x7_P0.8mm +Analog BGA-49, 6.25x6.25mm, 49 Ball, 7x7 Layout, 0.8mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-bga/05081600_0_bga49.pdf https://www.analog.com/media/en/technical-documentation/product-information/assembly-considerations-for-umodule-bga-lga-package.pdf +BGA 49 0.8 +0 +49 +49 +Package_BGA +Analog_BGA-77_9x15mm_Layout7x11_P1.27mm +Analog Devices BGA-77, 0.63mm pad, 9x15mm, 77 Ball, 7x11 Layout, 1.27mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-bga/05081964_B_bga77.pdf +BGA 77 1.27 LTC Dwg 05-08-1964 Rev. B +0 +77 +77 +Package_BGA +Analog_BGA-165_11.9x16mm_Layout11x15_P1.0mm +Analog BGA-165 (Reference LTC DWG#05-08-1605 Rev B), 11.9x16.0mm, 165 Ball, 11x15 Layout, 1.0mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-bga/05081605_b_bga165.pdf +BGA 165 1.0 +0 +165 +165 +Package_BGA +Analog_BGA-209_9.5x16mm_Layout11x19_P0.8mm +Analog BGA-209 (Reference LTC DWG#05-08-1561 Rev B), 9.5x16.0mm, 209 Ball, 11x19 Layout, 0.8mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-bga/05081561_bga209.pdf +BGA 209 0.8 +0 +209 +209 +Package_BGA +BGA-9_1.6x1.6mm_Layout3x3_P0.5mm +BGA-9, http://www.ti.com/lit/ds/symlink/bq27421-g1.pdf +BGA-9 +0 +9 +9 +Package_BGA +BGA-16_1.92x1.92mm_Layout4x4_P0.5mm +BGA-16, http://www.st.com/content/ccc/resource/technical/document/datasheet/group2/bc/cd/62/9e/8f/30/47/69/CD00151267/files/CD00151267.pdf/jcr:content/translations/en.CD00151267.pdf +BGA-16 +0 +16 +16 +Package_BGA +BGA-24_6x8mm_Layout5x5_P1.0mm +BGA-24, 6x8mm, 24 Ball, 5x5 Layout, 1.0mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://www.issi.com/WW/pdf/66-67WVO32M8DALL-BLL.pdf#page=32 +BGA 24 1.0 +0 +24 +24 +Package_BGA +BGA-25_6.35x6.35mm_Layout5x5_P1.27mm +BGA-25, https://www.analog.com/media/en/technical-documentation/data-sheets/ltm4624.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-63_9x11mm_Layout10x12_P0.8mm +BGA-63, 9.0x11.0mm, 63 Ball, 10x12 Layout, 0.8mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://www.jedec.org/system/files/docs/MO-207N.pdf +BGA 63 0.8 JEDEC MO-207N DH-z +0 +63 +63 +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-100_12x18mm_Layout10x17_P1mm +BGA-100, 12x18mm, 100 Ball, 10x17 Layout, 1mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://www.jedec.org/system/files/docs/MO-304D.pdf +BGA 100 1 JEDEC MO-304D P18.0x12.0-EJ-100A +0 +100 +100 +Package_BGA +BGA-100_14x18mm_Layout10x17_P1mm +BGA-100, 14x18mm, 100 Ball, 10x17 Layout, 1mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://www.jedec.org/system/files/docs/MO-304D.pdf +BGA 100 1 JEDEC MO-304D P18.0x14.0-EJ-100A +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-132_12x18mm_Layout11x17_P1.0mm +BGA-132 11x17 12x18mm 1.0pitch +BGA-132 +0 +132 +132 +Package_BGA +BGA-132_12x18mm_Layout11x17_P1mm +BGA-132, 12x18mm, 132 Ball, 11x17 Layout, 1mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://www.jedec.org/system/files/docs/MO-304D.pdf +BGA 132 1 JEDEC MO-304D P18.0x12.0-EJ-132B +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-152_14x18mm_Layout13x17_P1mm +BGA-152, 14x18mm, 152 Ball, 13x17 Layout, 1mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://www.jedec.org/system/files/docs/MO-304D.pdf +BGA 152 1 JEDEC MO-304D P18.0x14.0-EJ-152D +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-196_15x15mm_Layout14x14_P1.0mm +BGA-196, 15.0x15.0mm, 196 Ball, 14x14 Layout, 1.0mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, http://ww1.microchip.com/downloads/en/DeviceDoc/VMDS-10502.pdf#page=99 +BGA 196 1.0 +0 +196 +196 +Package_BGA +BGA-200_10x14.5mm_Layout12x22_P0.8x0.65mm +BGA-200, 10.0x14.5mm, 200 Ball, 12x22 Layout, 0.8x0.65mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, 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_15x15mm_Layout18x18_P0.8mm +BGA-324, 15x15mm, 324 Ball, 18x18 Layout, 0.8mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://colognechip.com/docs/ds1001-gatemate1-datasheet-2022-05.pdf#page=92 +BGA 324 0.8 GateMate FPGA +0 +324 +324 +Package_BGA +BGA-324_19.0x19.0mm_Layout18x18_P1.0mm_Ball0.5mm_Pad0.4mm_NSMD +BGA-324, https://www.altera.com/content/dam/altera-www/global/en_US/pdfs/literature/packaging/04r00233-03.pdf +BGA-324 +0 +324 +324 +Package_BGA +BGA-352_35.0x35.0mm_Layout26x26_P1.27mm +BGA-352, https://www.fujitsu.com/downloads/MICRO/fma/pdfmcu/b352p05.pdf +BGA-352 +0 +352 +352 +Package_BGA +BGA-400_21.0x21.0mm_Layout20x20_P1.0mm +BGA-400, https://www.xilinx.com/support/documentation/package_specs/fg400.pdf +BGA-400 +0 +400 +400 +Package_BGA +BGA-484_23.0x23.0mm_Layout22x22_P1.0mm +BGA-484, https://www.xilinx.com/support/documentation/package_specs/fg484.pdf +BGA-484 +0 +484 +484 +Package_BGA +BGA-529_19x19mm_Layout23x23_P0.8mm +BGA-529, NSMD, 19.0x19.0mm, 529 Ball, 23x23 Layout, 0.8mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://www.efinixinc.com/docs/titanium-packaging-ug-v5.2.pdf +BGA 529 0.8 529-ball FBGA +0 +529 +529 +Package_BGA +BGA-624_21x21mm_Layout25x25_P0.8mm +BGA-624, 21.0x21.0mm, 624 Ball, 25x25 Layout, 0.8mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, 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 +EPC_BGA-4_0.9x0.9mm_Layout2x2_P0.45mm +EPC BGA-4, 0.9x09mm, Pitch 0.4mm, https://epc-co.com/epc/Portals/0/epc/documents/datasheets/EPC2035_datasheet.pdf +EPC BGA-4 +0 +8 +4 +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.5x10.5mm_Layout9x13_P0.8mm +FBGA-78, 7.5x10.5mm, 78 Ball, 9x13 Layout, 0.8mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://insignis-tech.com/download/785#page=88 +BGA 78 0.8 DDR3 DDR3L DDR4 +0 +78 +78 +Package_BGA +FBGA-78_7.5x10.6mm_Layout9x13_P0.8mm +FBGA-78, 7.5x10.6mm, 78 Ball, 9x13 Layout, 0.8mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://insignis-tech.com/download/1912#page=87 +BGA 78 0.8 DDR3 DDR3L DDR4 +0 +78 +78 +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 +FBGA-78_8x10.5mm_Layout9x13_P0.8mm +FBGA-78, 8.0x10.5mm, 78 Ball, 9x13 Layout, 0.8mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://insignis-tech.com/download/1978#page=86 +BGA 78 0.8 DDR3 DDR3L DDR4 +0 +78 +78 +Package_BGA +FBGA-78_9x10.5mm_Layout9x13_P0.8mm +FBGA-78, 9.0x10.5mm, 78 Ball, 9x13 Layout, 0.8mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://www.issi.com/WW/pdf/43-46TR16256A-85120AL.pdf#page=86 +BGA 78 0.8 DDR3 DDR3L DDR4 +0 +78 +78 +Package_BGA +FBGA-78_9x10.6mm_Layout9x13_P0.8mm +FBGA-78, 9.0x10.6mm, 78 Ball, 9x13 Layout, 0.8mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://insignis-tech.com/download/1900#page=87 +BGA 78 0.8 DDR3 DDR3L DDR4 +0 +78 +78 +Package_BGA +FBGA-96_7.5x13.5mm_Layout9x16_P0.8mm +FBGA-96, 7.5x13.5mm, 96 Ball, 9x16 Layout, 0.8mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://insignis-tech.com/download/1896#page=87 +BGA 96 0.8 DDR3 DDR3L DDR4 +0 +96 +96 +Package_BGA +FBGA-96_7.5x13mm_Layout9x16_P0.8mm +FBGA-96, 7.5x13mm, 96 Ball, 9x16 Layout, 0.8mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://insignis-tech.com/download/746#page=96 +BGA 96 0.8 DDR3 DDR3L DDR4 +0 +96 +96 +Package_BGA +FBGA-96_8x13mm_Layout9x16_P0.8mm +FBGA-96, 8.0x13.0mm, 96 Ball, 9x16 Layout, 0.8mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://insignis-tech.com/download/1594#page=98 +BGA 96 0.8 DDR3 DDR3L DDR4 +0 +96 +96 +Package_BGA +FBGA-96_8x14mm_Layout9x16_P0.8mm +FBGA-96, 8.0x14.0mm, 96 Ball, 9x16 Layout, 0.8mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, generalized from https://www.micron.com/-/media/client/global/documents/products/data-sheet/dram/ddr3/4gb_ddr3l.pdf#page=28 +BGA 96 0.8 DDR3 DDR3L DDR4 +0 +96 +96 +Package_BGA +FBGA-96_9x13mm_Layout9x16_P0.8mm +FBGA-96, 9.0x13.0mm, 96 Ball, 9x16 Layout, 0.8mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://insignis-tech.com/download/1884#page=87 +BGA 96 0.8 DDR3 DDR3L DDR4 +0 +96 +96 +Package_BGA +FBGA-96_9x14mm_Layout9x16_P0.8mm +FBGA-96, 9.0x14.0mm, 96 Ball, 9x16 Layout, 0.8mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, generalized from https://www.micron.com/-/media/client/global/documents/products/data-sheet/dram/ddr3/4gb_ddr3l.pdf#page=26 +BGA 96 0.8 DDR3 DDR3L DDR4 +0 +96 +96 +Package_BGA +FCPBGA-780_23x23mm_Layout28x28_P0.8mm +FCPBGA-780, 23.0x23.0mm, 780 Ball, 28x28 Layout, 0.8mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://www.nxp.com/docs/en/package-information/98ASA00854D.pdf +BGA 780 0.8 NXP_SOT1653-1 +0 +780 +780 +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 +Infineon LFBGA-292, 0.35mm pad, 17.0x17.0mm, 292 Ball, 20x20 Layout, 0.8mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://www.infineon.com/cms/en/product/packages/PG-LFBGA/PG-LFBGA-292-11/ +BGA 292 0.8 +0 +292 +292 +Package_BGA +Infineon_TFBGA-48_6x10mm_Layout6x8_P0.75mm +Cypress / Infineon TFBGA-48, NSMD, 6.0x10.0mm, 48 Ball, 6x8 Layout, 0.75mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://www.infineon.com/dgdl/Infineon-CY14U256LA_256-Kbit_(32_K_8)_nvSRAM-DataSheet-v03_00-EN.pdf?fileId=8ac78c8c7d0d8da4017d0ec0a9c33546 +BGA 48 0.75 48-ball FBGA +0 +48 +48 +Package_BGA +LFBGA-100_10x10mm_Layout10x10_P0.8mm +LFBGA-100, 10.0x10.0mm, 100 Ball, 10x10 Layout, 0.8mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, http://www.st.com/resource/en/datasheet/stm32f103tb.pdf#page=87 +BGA 100 0.8 +0 +100 +100 +Package_BGA +LFBGA-144_10x10mm_Layout12x12_P0.8mm +LFBGA-144, 10.0x10.0mm, 144 Ball, 12x12 Layout, 0.8mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, http://www.st.com/resource/en/datasheet/stm32f103ze.pdf#page=114 +BGA 144 0.8 +0 +144 +144 +Package_BGA +LFBGA-153_11.5x13mm_Layout14x14_P0.5mm +JEDEC eMMC AN BGA-153, 11.5x13.0mm, 153 Ball, 14x14 Layout, 0.5mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://www.jedec.org/sites/default/files/docs/MO-276F.pdf +BGA 153 0.5 +0 +153 +153 +Package_BGA +LFBGA-169_12x16mm_Layout14x28_P0.5mm +JEDEC eMMC AA BGA-169, 12.0x16.0mm, 169 Ball, 14x28 Layout, 0.5mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://www.jedec.org/sites/default/files/docs/MO-276F.pdf +BGA 169 0.5 +0 +169 +169 +Package_BGA +LFBGA-169_12x18mm_Layout14x28_P0.5mm +JEDEC eMMC AB BGA-169, 12.0x18.0mm, 169 Ball, 14x28 Layout, 0.5mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://www.jedec.org/sites/default/files/docs/MO-276F.pdf +BGA 169 0.5 +0 +169 +169 +Package_BGA +LFBGA-169_14x18mm_Layout14x28_P0.5mm +JEDEC eMMC AC BGA-169, 14.0x18.0mm, 169 Ball, 14x28 Layout, 0.5mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://www.jedec.org/sites/default/files/docs/MO-276F.pdf +BGA 169 0.5 +0 +169 +169 +Package_BGA +LFBGA-289_14x14mm_Layout17x17_P0.8mm +LFBGA-289, 14.0x14.0mm, 289 Ball, 17x17 Layout, 0.8mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://www.st.com/resource/en/datasheet/stm32mp131c.pdf +BGA 289 0.8 +0 +289 +289 +Package_BGA +LFBGA-400_16x16mm_Layout20x20_P0.8mm +LFBGA-400, NSMD, 16.0x16.0mm, 400 Ball, 20x20 Layout, 0.8mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://www.efinixinc.com/docs/titanium-packaging-ug-v5.2.pdf +BGA 400 0.8 400-ball FBGA +0 +400 +400 +Package_BGA +LFBGA-484_18x18mm_Layout22x22_P0.8mm +LFBGA-484, NSMD, 18.0x18.0mm, 484 Ball, 22x22 Layout, 0.8mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://www.efinixinc.com/docs/titanium-packaging-ug-v5.2.pdf +BGA 484 0.8 484-ball LFBGA +0 +484 +484 +Package_BGA +Lattice_caBGA-381_17x17mm_Layout20x20_P0.8mm +Lattice caBGA-381, ECP5 FPGAs, 17.0x17.0mm, 381 Ball, 20x20 Layout, 0.8mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, http://www.latticesemi.com/view_document?document_id=213 +BGA 381 0.8 +0 +381 +381 +Package_BGA +Lattice_caBGA-381_17x17mm_Layout20x20_P0.8mm_SMD +Lattice caBGA-381, ECP5 FPGAs, 17.0x17.0mm, 381 Ball, 20x20 Layout, 0.8mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, http://www.latticesemi.com/view_document?document_id=213 +BGA 381 0.8 +0 +381 +381 +Package_BGA +Lattice_caBGA-756_27x27mm_Layout32x32_P0.8mm +Lattice caBGA-756, ECP5 FPGAs, 27.0x27.0mm, 756 Ball, 32x32 Layout, 0.8mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, http://www.latticesemi.com/view_document?document_id=213 +BGA 756 0.8 +0 +756 +756 +Package_BGA +Lattice_iCE40_csBGA-132_8x8mm_Layout14x14_P0.5mm +Lattice csBGA-132, Option 2, iCE40 FPGAs, 8.0x8.0mm, 132 Ball, 14x14 Layout, 0.5mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, http://www.latticesemi.com/view_document?document_id=213 +BGA 132 0.5 +0 +132 +132 +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-272_9x9mm_Layout17x17_P0.5mm +MAPBGA 9x9x1.11 PKG, 9.0x9.0mm, 272 Ball, 17x17 Layout, 0.5mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://www.nxp.com/docs/en/package-information/98ASA00869D.pdf#page=1 +BGA 272 0.5 +0 +272 +272 +Package_BGA +MAPBGA-289_14x14mm_Layout17x17_P0.8mm +MAPBGA 14x14x1.18 PKG, 14.0x14.0mm, 289 Ball, 17x17 Layout, 0.8mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://www.nxp.com/docs/en/package-information/98ASA00855D.pdf#page=1 +BGA 289 0.8 +0 +289 +289 +Package_BGA +Maxim_WLP-9_1.595x1.415_Layout3x3_P0.4mm_Ball0.27mm_Pad0.25mm_NSMD +Maxim_WLP-9 W91C1+1 https://pdfserv.maximintegrated.com/package_dwgs/21-0459.PDF +Maxim_WLP-9 +0 +9 +9 +Package_BGA +Maxim_WLP-12 +Maxim_WLP-12 W121B2+1 http://pdfserv.maximintegrated.com/package_dwgs/21-0009.PDF +Maxim_WLP-12 +0 +12 +12 +Package_BGA +Maxim_WLP-12_2.008x1.608mm_Layout4x3_P0.4mm +Maxim WLP-12, W121H2+1, 2.008x1.608mm, 12 Ball, 4x3 Layout, 0.4mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://pdfserv.maximintegrated.com/package_dwgs/21-100302.PDF, https://pdfserv.maximintegrated.com/package_dwgs/21-100302.PDF +BGA 12 0.4 +0 +12 +12 +Package_BGA +Microchip_FCG1152_BGA-1152_35x35mm_Layout34x34_P1.0mm +FCG1152, 35.0x35.0mm, 1152 Ball, 34x34 Layout, 1.0mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://ww1.microchip.com/downloads/aemDocuments/documents/FPGA/ProductDocuments/UserGuides/microchip_polarfire_soc_fpga_packaging_and_pin_descriptions_user_guide_vb.pdf +BGA 1152 1.0 +0 +1152 +1152 +Package_BGA +Microchip_FCSG325_BGA-325_11x11mm_Layout21x21_P0.5mm +FCSG325, 11.0x11.0mm, 325 Ball, 21x21 Layout, 0.5mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://ww1.microchip.com/downloads/aemDocuments/documents/FPGA/ProductDocuments/UserGuides/microchip_polarfire_soc_fpga_packaging_and_pin_descriptions_user_guide_vb.pdf +BGA 325 0.5 +0 +325 +325 +Package_BGA +Microchip_FCSG536_BGA-536_16x16mm_Layout30x30_P0.5mm +FCSG536, 16.0x16.0mm, 536 Ball, 30x30 Layout, 0.5mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://ww1.microchip.com/downloads/aemDocuments/documents/FPGA/ProductDocuments/UserGuides/microchip_polarfire_soc_fpga_packaging_and_pin_descriptions_user_guide_vb.pdf +BGA 536 0.5 +0 +536 +536 +Package_BGA +Microchip_FCVG484_BGA-484_19x19mm_Layout22x22_P0.8mm +FCVG484, 19.0x19.0mm, 484 Ball, 22x22 Layout, 0.8mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://ww1.microchip.com/downloads/aemDocuments/documents/FPGA/ProductDocuments/UserGuides/microchip_polarfire_soc_fpga_packaging_and_pin_descriptions_user_guide_vb.pdf +BGA 484 0.8 +0 +484 +484 +Package_BGA +Microchip_FCVG784_BGA-784_23x23mm_Layout28x28_P0.8mm +FCVG784, 23.0x23.0mm, 784 Ball, 28x28 Layout, 0.8mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://ww1.microchip.com/downloads/aemDocuments/documents/FPGA/ProductDocuments/UserGuides/microchip_polarfire_soc_fpga_packaging_and_pin_descriptions_user_guide_vb.pdf +BGA 784 0.8 +0 +784 +784 +Package_BGA +Microchip_TFBGA-196_11x11mm_Layout14x14_P0.75mm_SMD +TFBGA-196, 11.0x11.0mm, 196 Ball, 14x14 Layout, 0.75mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, 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, 7.5x10.6mm, 78 Ball, 9x13 Layout, 0.8mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://www.micron.com/-/media/client/global/documents/products/data-sheet/dram/ddr3/4gb_ddr3l.pdf#page=24 +BGA 78 0.8 DDR3 DDR3L DDR4 +0 +78 +78 +Package_BGA +Micron_FBGA-78_8x10.5mm_Layout9x13_P0.8mm +FBGA-78, 8.0x10.5mm, 78 Ball, 9x13 Layout, 0.8mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://www.micron.com/-/media/client/global/documents/products/data-sheet/dram/ddr3/4gb_ddr3l.pdf#page=25 +BGA 78 0.8 DDR3 DDR3L DDR4 +0 +78 +78 +Package_BGA +Micron_FBGA-78_9x10.5mm_Layout9x13_P0.8mm +FBGA-78, 9.0x10.5mm, 78 Ball, 9x13 Layout, 0.8mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://www.micron.com/-/media/client/global/documents/products/data-sheet/dram/ddr3/4gb_ddr3l.pdf#page=23 +BGA 78 0.8 DDR3 DDR3L DDR4 +0 +78 +78 +Package_BGA +Micron_FBGA-96_7.5x13.5mm_Layout9x16_P0.8mm +FBGA-96, 7.5x13.5mm, 96 Ball, 9x16 Layout, 0.8mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://www.micron.com/-/media/client/global/documents/products/data-sheet/dram/ddr3/4gb_ddr3l.pdf#page=27 +BGA 96 0.8 DDR3 DDR3L DDR4 +0 +96 +96 +Package_BGA +Micron_FBGA-96_8x14mm_Layout9x16_P0.8mm +FBGA-96, 8.0x14.0mm, 96 Ball, 9x16 Layout, 0.8mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://www.micron.com/-/media/client/global/documents/products/data-sheet/dram/ddr3/4gb_ddr3l.pdf#page=28 +BGA 96 0.8 DDR3 DDR3L DDR4 +0 +96 +96 +Package_BGA +Micron_FBGA-96_9x14mm_Layout9x16_P0.8mm +FBGA-96, 9.0x14.0mm, 96 Ball, 9x16 Layout, 0.8mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://www.micron.com/-/media/client/global/documents/products/data-sheet/dram/ddr3/4gb_ddr3l.pdf#page=26 +BGA 96 0.8 DDR3 DDR3L DDR4 +0 +96 +96 +Package_BGA +NXP_SOT1982-1_VFBGA-98_7x7mm_Layout13x13_P0.5mm +NXP VFBGA-98 (Case SOT1982-1), 0.28mm pad, 7x7mm, 98 Ball, 13x13 Layout, 0.5mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://www.nxp.com/docs/en/package-information/SOT1982-1.pdf +BGA 98 0.5 +0 +98 +98 +Package_BGA +NXP_SOT2162-1_VFBGA-59_4x4mm_Layout9x9_P0.4mm +NXP VFBGA-59 (Case SOT2162-1), 0.24mm pad, 4x4mm, 59 Ball, 9x9 Layout, 0.4mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://www.nxp.com/docs/en/package-information/SOT2162-1.pdf +BGA 59 0.4 +0 +59 +59 +Package_BGA +NXP_TFBGA-50_5x5mm_Layout9x9_P0.5mm +TFBGA-50, 5.0x5.0mm, 50 Ball, 9x9 Layout, 0.5mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://www.nxp.com/docs/en/package-information/SOT1345-1.pdf +BGA 50 0.5 SOT1345-1 +0 +50 +50 +Package_BGA +NXP_VFBGA-42_2.6x3mm_Layout6x7_P0.4mm +NXP VFBGA-42, 2.6x3.0mm, 42 Ball, 6x7 Layout, 0.4mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://www.nxp.com/docs/en/package-information/SOT1963-1.pdf +BGA 42 0.4 +0 +42 +42 +Package_BGA +ST_LFBGA-354_16x16mm_Layout19x19_P0.8mm +ST LFBGA-354, 16.0x16.0mm, 354 Ball, 19x19 Layout, 0.8mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://www.st.com/resource/en/datasheet/stm32mp151a.pdf +BGA 354 0.8 +0 +354 +354 +Package_BGA +ST_LFBGA-448_18x18mm_Layout22x22_P0.8mm +ST LFBGA-448, 18.0x18.0mm, 448 Ball, 22x22 Layout, 0.8mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://www.st.com/resource/en/datasheet/stm32mp151a.pdf +BGA 448 0.8 +0 +448 +448 +Package_BGA +ST_TFBGA-169_7x7mm_Layout13x13_P0.5mm +ST TFBGA-169, 7.0x7.0mm, 169 Ball, 13x13 Layout, 0.5mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://www.st.com/resource/en/datasheet/stm32u595aj.pdf +BGA 169 0.5 +0 +169 +169 +Package_BGA +ST_TFBGA-225_13x13mm_Layout15x15_P0.8mm +ST TFBGA-225, 13.0x13.0mm, 225 Ball, 15x15 Layout, 0.8mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://www.st.com/resource/en/datasheet/stm32h7b3ri.pdf +BGA 225 0.8 +0 +225 +225 +Package_BGA +ST_TFBGA-257_10x10mm_Layout19x19_P0.5mmP0.65mm +ST TFBGA-257, 10.0x10.0mm, 257 Ball, 19x19 Layout, 0.5mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://www.st.com/resource/en/datasheet/stm32mp151a.pdf +BGA 257 0.5 +0 +257 +257 +Package_BGA +ST_TFBGA-320_11x11mm_Layout21x21_P0.5mm +ST TFBGA-320, 11.0x11.0mm, 320 Ball, 21x21 Layout, 0.5mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://www.st.com/resource/en/datasheet/stm32mp131c.pdf +BGA 320 0.5 +0 +320 +320 +Package_BGA +ST_TFBGA-361_12x12mm_Layout23x23_P0.5mmP0.65mm +ST TFBGA-361, 12.0x12.0mm, 361 Ball, 23x23 Layout, 0.5mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://www.st.com/resource/en/datasheet/stm32mp151a.pdf +BGA 361 0.5 +0 +361 +361 +Package_BGA +ST_TFBGA-436_18x18mm_Layout22x22_P0.8mm +ST TFBGA-436, 18.0x18.0mm, 436 Ball, 22x22 Layout, 0.8mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://www.st.com/resource/en/datasheet/stm32mp255c.pdf#page=222 +BGA 436 0.8 ST-Package-B0MS +0 +436 +436 +Package_BGA +ST_UFBGA-59_5x5mm_Layout8x8_P0.5mm +ST UFBGA-59, 5.0x5.0mm, 59 Ball, 8x8 Layout, 0.5mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://www.st.com/resource/en/datasheet/stm32wba55ug.pdf +BGA 59 0.5 +0 +59 +59 +Package_BGA +ST_UFBGA-73_5x5mm_Layout9x9_P0.5mm +ST UFBGA-73, 5.0x5.0mm, 73 Ball, 9x9 Layout, 0.5mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://www.st.com/resource/en/datasheet/stm32wl54jc.pdf +BGA 73 0.5 +0 +73 +73 +Package_BGA +ST_UFBGA-81_5x5mm_Layout9x9_P0.5mm +ST UFBGA-81, 5.0x5.0mm, 81 Ball, 9x9 Layout, 0.5mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://www.st.com/resource/en/datasheet/stm32u073mb.pdf +BGA 81 0.5 +0 +81 +81 +Package_BGA +ST_UFBGA-121_6x6mm_Layout11x11_P0.5mm +ST UFBGA-121, 6.0x6.0mm, 121 Ball, 11x11 Layout, 0.5mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://www.st.com/resource/en/datasheet/stm32g473pb.pdf +BGA 121 0.5 +0 +121 +121 +Package_BGA +ST_UFBGA-129_7x7mm_Layout13x13_P0.5mm +ST UFBGA-129, 7.0x7.0mm, 129 Ball, 13x13 Layout, 0.5mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://www.st.com/resource/en/datasheet/stm32wb55vc.pdf +BGA 129 0.5 +0 +129 +129 +Package_BGA +ST_VFBGA-361_10x10mm_Layout19x19_P0.5mm +ST VFBGA-361, 10.0x10.0mm, 361 Ball, 19x19 Layout, 0.5mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://www.st.com/resource/en/datasheet/stm32mp255c.pdf#page=218 +BGA 361 0.5 ST-Package-B09U +0 +361 +361 +Package_BGA +ST_VFBGA-424_14x14mm_Layout27x27_P0.5mmP0.5x0.5mm_Stagger +ST VFBGA-424, 14.0x14.0mm, 424 Ball, 27x27 Layout, 0.5mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://www.st.com/resource/en/datasheet/stm32mp255c.pdf +BGA 424 0.5 +0 +424 +424 +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, generated with kicad-footprint-generator ipc_bga_generator.py, https://www.st.com/resource/en/datasheet/stulpi01a.pdf +BGA 36 0.5 +0 +36 +36 +Package_BGA +TFBGA-48_6x10mm_Layout6x8_P0.75mm +TFBGA-48, NSMD, 6.0x10.0mm, 48 Ball, 6x8 Layout, 0.75mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://www.jedec.org/system/files/docs/MO-207N.pdf +BGA 48 0.75 48-ball FBGA +0 +48 +48 +Package_BGA +TFBGA-49_3x3mm_Layout7x7_P0.4mm +TFBGA-49, NSMD, 3.0x3.0mm, 49 Ball, 7x7 Layout, 0.4mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://www.efinixinc.com/docs/trion-packaging-ug-v4.9.pdf +BGA 49 0.4 49-ball FBGA +0 +49 +49 +Package_BGA +TFBGA-64_5x5mm_Layout8x8_P0.5mm +TFBGA-64, 5.0x5.0mm, 64 Ball, 8x8 Layout, 0.5mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, http://www.st.com/resource/en/datasheet/stm32f100v8.pdf#page=83 +BGA 64 0.5 +0 +64 +64 +Package_BGA +TFBGA-81_5x5mm_Layout9x9_P0.5mm +TFBGA-81, NSMD, 5.0x5.0mm, 81 Ball, 9x9 Layout, 0.5mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://www.efinixinc.com/docs/trion-packaging-ug-v4.9.pdf +BGA 81 0.5 81-ball FBGA +0 +81 +81 +Package_BGA +TFBGA-100_5.5x5.5mm_Layout10x10_P0.5mm +TFBGA-100, NSMD, 5.5x5.5mm, 100 Ball, 10x10 Layout, 0.5mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://www.efinixinc.com/docs/titanium-packaging-ug-v5.2.pdf +BGA 100 0.5 100-ball FBGA +0 +100 +100 +Package_BGA +TFBGA-100_8x8mm_Layout10x10_P0.8mm +TFBGA-100, 8.0x8.0mm, 100 Ball, 10x10 Layout, 0.8mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, http://www.st.com/resource/en/datasheet/stm32f746zg.pdf#page=199 +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, 10.0x10.0mm, 121 Ball, 11x11 Layout, 0.8mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#p495 +BGA 121 0.8 +0 +121 +121 +Package_BGA +TFBGA-169_9x9mm_Layout13x13_P0.65mm +TFBGA-169, NSMD, 9.0x9.0mm, 169 Ball, 13x13 Layout, 0.65mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://www.efinixinc.com/docs/trion-packaging-ug-v4.9.pdf +BGA 169 0.65 169-ball FBGA +0 +169 +169 +Package_BGA +TFBGA-216_13x13mm_Layout15x15_P0.8mm +TFBGA-216, 13.0x13.0mm, 216 Ball, 15x15 Layout, 0.8mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, http://www.st.com/resource/en/datasheet/stm32f746zg.pdf#page=219 +BGA 216 0.8 +0 +216 +216 +Package_BGA +TFBGA-225_10x10mm_Layout15x15_P0.65mm +TFBGA-225, NSMD, 10.0x10.0mm, 225 Ball, 15x15 Layout, 0.65mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://www.efinixinc.com/docs/titanium-packaging-ug-v5.2.pdf +BGA 225 0.65 225-ball FBGA +0 +225 +225 +Package_BGA +TFBGA-256_13x13mm_Layout16x16_P0.8mm +TFBGA-256, NSMD, 13.0x13.0mm, 256 Ball, 16x16 Layout, 0.8mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://www.efinixinc.com/docs/trion-packaging-ug-v4.9.pdf +BGA 256 0.8 256-ball FBGA +0 +256 +256 +Package_BGA +TFBGA-265_14x14mm_Layout17x17_P0.8mm +TFBGA-265, 14.0x14.0mm, 265 Ball, 17x17 Layout, 0.8mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, http://www.st.com/resource/en/datasheet/DM00387108.pdf#page=223 +BGA 265 0.8 +0 +265 +265 +Package_BGA +TFBGA-289_9x9mm_Layout17x17_P0.5mm +TFBGA-289, 9.0x9.0mm, 289 Ball, 17x17 Layout, 0.5mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://www.st.com/resource/en/datasheet/stm32mp131c.pdf +BGA 289 0.5 +0 +289 +289 +Package_BGA +TFBGA-324_12x12mm_Layout18x18_P0.65mm +TFBGA-324, NSMD, 12.0x12.0mm, 324 Ball, 18x18 Layout, 0.65mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://www.efinixinc.com/docs/trion-packaging-ug-v4.9.pdf +BGA 324 0.65 324-ball FBGA +0 +324 +324 +Package_BGA +TFBGA-361_13x13mm_Layout19x19_P0.65mm +TFBGA-361, NSMD, 13.0x13.0mm, 361 Ball, 19x19 Layout, 0.65mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://www.efinixinc.com/docs/titanium-packaging-ug-v5.2.pdf +BGA 361 0.65 361-ball FBGA +0 +361 +361 +Package_BGA +TFBGA-576_16x16mm_Layout24x24_P0.65mm +TFBGA-576, NSMD, 16.0x16.0mm, 576 Ball, 24x24 Layout, 0.65mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://www.efinixinc.com/docs/trion-packaging-ug-v4.9.pdf +BGA 576 0.65 576-ball FBGA +0 +576 +576 +Package_BGA +TFBGA-644_19x19mm_Layout28x28_P0.65mm +TFBGA-636, 19.0x19.0mm, 644 Ball, 28x28 Layout, 0.65mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://opensource.rock-chips.com/images/b/b6/Rockchip_RK3568_Datasheet_V1.3-20220929P.PDF +BGA 644 0.65 636-ball FBGA Rockchip RK3568 RK3288 Realtek RTD1296 Allwinner A80 A80T +0 +644 +644 +Package_BGA +Texas_BGA-289_15x15mm_Layout17x17_P0.8mm +Texas Instruments BGA-289, 0.4mm pad, 15x15mm, 289 Ball, 17x17 Layout, 0.8mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://www.ti.com/lit/ml/mpbg777/mpbg777.pdf +BGA 289 0.8 ZAV S-PBGA-N289 +0 +289 +289 +Package_BGA +Texas_DSBGA-5_0.822x1.116mm_Layout2x1x2_P0.4mm +Texas Instruments, DSBGA, 0.822x1.116mm, 5 bump 2x1x2 array, NSMD pad definition (http://www.ti.com/lit/ds/symlink/opa330.pdf, http://www.ti.com/lit/an/snva009ag/snva009ag.pdf) +Texas Instruments DSBGA BGA YFF S-XBGA-N5 +0 +10 +5 +Package_BGA +Texas_DSBGA-5_0.8875x1.3875mm_Layout2x3_P0.5mm +Texas Instruments, DSBGA, area grid, NSMD, YZP0005 pad definition, 0.8875x1.3875mm, 5 Ball, 2x3 Layout, 0.5mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://www.ti.com/lit/ds/symlink/sn74lvc1g17.pdf#page=42, https://www.ti.com/lit/ml/mxbg018l/mxbg018l.pdf +BGA 5 0.5 YZP +0 +5 +5 +Package_BGA +Texas_DSBGA-5_1.5855x1.6365mm_Layout3x2_P0.5mm +Texas Instruments, DSBGA, area grid, YTA0005 pad definition, 1.5855x1.6365mm, 5 Ball, 3x2 Layout, 0.5mm Pitch, https://www.ti.com/lit/ml/mxbg263/mxbg263.pdf, https://www.ti.com/lit/ds/symlink/lm74.pdf#page=24 +BGA 5 0.5 YTA +0 +5 +5 +Package_BGA +Texas_DSBGA-6_0.9x1.4mm_Layout2x3_P0.5mm +Texas Instruments, DSBGA, 0.9x1.4mm, 6 bump 2x3 (perimeter) array, NSMD pad definition (http://www.ti.com/lit/ds/symlink/ts5a3159a.pdf) +Texas Instruments DSBGA BGA YZP R-XBGA-N6 +0 +12 +6 +Package_BGA +Texas_DSBGA-6_0.76x1.16mm_Layout2x3_P0.4mm +Texas Instruments YFP0006, DSBGA-6, 0.76x1.16mm, 6 Ball, 2x3 Layout, 0.4mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://www.ti.com/lit/ds/symlink/ts5a12301e.pdf#page=23 +BGA 6 0.4 +0 +6 +6 +Package_BGA +Texas_DSBGA-6_0.95x1.488mm_Layout2x3_P0.4mm +Texas Instruments, DSBGA, area grid, YBG pad definition, 0.95x1.488mm, 6 Ball, 2x3 Layout, 0.4mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://www.ti.com/lit/ml/mxbg419/mxbg419.pdf, https://www.ti.com/lit/ds/symlink/tmp117.pdf +BGA 6 0.4 +0 +6 +6 +Package_BGA +Texas_DSBGA-6_0.704x1.054mm_Layout2x3_P0.35mm +Texas Instruments, DSBGA-6, 0.704x1.054mm, NSMD, YKA0006-C01 pad definition, 0.704x1.054mm, 6 Ball, 2x3 Layout, 0.35mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://www.ti.com/lit/ds/symlink/tps62800.pdf +BGA 6 0.35 +0 +6 +6 +Package_BGA +Texas_DSBGA-6_0.757x1.01mm_Layout2x3_P0.35mm +Texas Instruments, DSBGA-6, 0.757x1.01mm, SMD, YKA0006 pad definition, 0.757x1.01mm, 6 Ball, 2x3 Layout, 0.35mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://www.ti.com/lit/ds/symlink/tps62843.pdf +BGA 6 0.35 TI 0.787x1.04mm (max) +0 +12 +6 +Package_BGA +Texas_DSBGA-6_0.855x1.255mm_Layout2x3_P0.4mm_LevelB +Texas Instruments, DSBGA, area grid, YBG pad definition, 0.95x1.488mm, 6 Ball, 2x3 Layout, 0.4mm Pitch, YFF0006, NSMD pad definition, https://www.ti.com/lit/ds/symlink/lmg1020.pdf, https://www.ti.com/lit/ml/mxbg078z/mxbg078z.pdf +BGA 6 0.4 YFF0006 +0 +6 +6 +Package_BGA +Texas_DSBGA-6_0.855x1.255mm_Layout2x3_P0.4mm_LevelC +Texas Instruments, DSBGA, area grid, YBG pad definition, 0.95x1.488mm, 6 Ball, 2x3 Layout, 0.4mm Pitch, YFF0006, NSMD pad definition, https://www.ti.com/lit/ds/symlink/lmg1020.pdf, https://www.ti.com/lit/ml/mxbg078z/mxbg078z.pdf +BGA 6 0.4 YFF0006 +0 +6 +6 +Package_BGA +Texas_DSBGA-8_0.9x1.9mm_Layout2x4_P0.5mm +Texas Instruments, DSBGA, 0.9x1.9mm, 8 bump 2x4 (perimeter) array, NSMD pad definition (http://www.ti.com/lit/ds/symlink/txb0102.pdf, http://www.ti.com/lit/an/snva009ag/snva009ag.pdf) +Texas Instruments DSBGA BGA YZP R-XBGA-N8 +0 +16 +8 +Package_BGA +Texas_DSBGA-8_0.705x1.468mm_Layout2x4_P0.4mm +Texas Instruments, DSBGA, area grid, NSMD, YBJ0008 pad definition, 0.705x1.468mm, 8 Ball, 2x4 Layout, 0.4mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://www.ti.com/lit/gpn/ina234 +BGA 8 0.4 +0 +8 +8 +Package_BGA +Texas_DSBGA-8_1.43x1.41mm_Layout3x3_P0.5mm +Texas Instruments, DSBGA, 1.43x1.41mm, 8 bump 3x3 (perimeter) array, NSMD pad definition (http://www.ti.com/lit/ds/symlink/lmc555.pdf, http://www.ti.com/lit/an/snva009ag/snva009ag.pdf) +Texas Instruments DSBGA BGA YZP R-XBGA-N8 +0 +16 +8 +Package_BGA +Texas_DSBGA-8_1.5195x1.5195mm_Layout3x3_P0.5mm +Texas Instruments, DSBGA, area grid, YZR pad definition, 1.5195x1.5195mm, 8 Ball, 3x3 Layout, 0.5mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, http://www.ti.com/lit/ml/mxbg270/mxbg270.pdf +BGA 8 0.5 +0 +8 +8 +Package_BGA +Texas_DSBGA-9_1.62x1.58mm_Layout3x3_P0.5mm +Texas Instruments, DSBGA, 1.62mmx1.58mm, area grid, NSMD, YZF0009 pad definition, 1.62x1.58mm, 9 Ball, 3x3 Layout, 0.5mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://www.ti.com/lit/ml/mxbg027n/mxbg027n.pdf +BGA 9 0.5 +0 +9 +9 +Package_BGA +Texas_DSBGA-9_1.4715x1.4715mm_Layout3x3_P0.5mm +Texas Instruments, DSBGA, 1.4715x1.4715mm, 9 bump 3x3 array, NSMD pad definition (http://www.ti.com/lit/ds/symlink/lm4990.pdf, http://www.ti.com/lit/an/snva009ag/snva009ag.pdf) +Texas Instruments DSBGA BGA YZR0009 +0 +18 +9 +Package_BGA +Texas_DSBGA-10_1.36x1.86mm_Layout3x4_P0.5mm +Texas Instruments, DSBGA, area grid, YZP, YZP0010, 1.86x1.36mm, 10 Ball, 3x4 Layout, 0.5mm Pitch, http://www.ti.com/lit/ds/symlink/ts3a24159.pdf +BGA 10 0.5 +0 +20 +10 +Package_BGA +Texas_DSBGA-12_1.36x1.86mm_Layout3x4_P0.5mm +Texas Instruments, DSBGA, area grid, YZT, 1.86x1.36mm, 12 Ball, 3x4 Layout, 0.5mm Pitch, http://www.ti.com/lit/ds/symlink/txb0104.pdf, http://www.ti.com/lit/an/snva009ag/snva009ag.pdf +BGA 12 0.5 R-XBGA-N12 +0 +24 +12 +Package_BGA +Texas_DSBGA-12_2.11x1.61mm_Layout4x3_P0.5mm +Texas Instruments, YZG (R-XBGA-N12) package, 0.275 .. 0.475mm body thickness, NSMD, 2.11x1.61mm, 12 Ball, 4x3 Layout, 0.5mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://www.ti.com/lit/ds/symlink/tsc2007.pdf#page=34, https://www.ti.com/lit/ml/mxbg028d/mxbg028d.pdf +BGA 12 0.5 UFBGA-12_2.11x1.61mm_Layout4x3_P0.5mm Die-Size-Ball-Grid-Array +0 +12 +12 +Package_BGA +Texas_DSBGA-16_2.39x2.39mm_Layout4x4_P0.5mm +Texas Instruments, DSBGA, area grid, YZF, YZF0016, 2.39x2.39mm, 16 Ball, 4x4 Layout, 0.5mm Pitch, https://www.ti.com/lit/ds/symlink/dac80508.pdf +BGA 16 0.5 +0 +32 +16 +Package_BGA +Texas_DSBGA-28_1.9x3mm_Layout4x7_P0.4mm +Texas Instruments, DSBGA, area grid, 1.9x3.0mm, 28 Ball, 4x7 Layout, 0.4mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, http://www.ti.com/lit/ds/symlink/bq51050b.pdf, http://www.ti.com/lit/an/snva009ag/snva009ag.pdf +BGA 28 0.4 TI 28-ball YFP R-XBGA-N28 +0 +28 +28 +Package_BGA +Texas_DSBGA-49_3.33x3.488mm_Layout7x7_P0.4mm +Texas Instruments, DSBGA, area grid, 3.33x3.488mm, 49 Ball, 7x7 Layout, 0.4mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, http://www.ti.com/lit/ds/symlink/msp430f2234.pdf, http://www.ti.com/lit/an/snva009ag/snva009ag.pdf +BGA 49 0.4 +0 +49 +49 +Package_BGA +Texas_DSBGA-64_3.415x3.535mm_Layout8x8_P0.4mm +Texas Instruments, DSBGA, area grid, 3.415x3.535mm, 64 Ball, 8x8 Layout, 0.4mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, http://www.ti.com/lit/ds/slas718g/slas718g.pdf, http://www.ti.com/lit/an/snva009ag/snva009ag.pdf +BGA 64 0.4 +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_7x7mm_Layout12x12_P0.5mm +Texas Instruments, BGA Microstar Junior, NSMD, 7x7mm, 113 Ball, 12x12 Layout, 0.5mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, http://www.ti.com/lit/ml/mpbg674/mpbg674.pdf, http://www.ti.com/lit/wp/ssyz015b/ssyz015b.pdf +BGA 113 0.5 +0 +113 +113 +Package_BGA +Texas_PicoStar_BGA-4_0.758x0.758mm_Layout2x2_P0.4mm +Texas Instruments PicoStar - 0.15 mm max height, 0.758x0.758mm, 4 Ball, 2x2 Layout, 0.4mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://www.ti.com/lit/ds/symlink/tmp114.pdf +BGA 4 0.4 PicoStar +0 +4 +4 +Package_BGA +Texas_YFP0020_DSBGA-20_1.588x1.988mm_Layout4x5_P0.4mm +Texas Instruments, YFP0020, DSBGA-20, area grid, 1.588x1.988mm, 20 Ball, 4x5 Layout, 0.4mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://www.ti.com/lit/ds/symlink/txs0206.pdf +BGA 20 0.4 +0 +20 +20 +Package_BGA +UCBGA-36_2.5x2.5mm_Layout6x6_P0.4mm +UCBGA-36, 2.5x2.5mm, 36 Ball, 6x6 Layout, 0.4mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, 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, 3x3mm, 49 Ball, 7x7 Layout, 0.4mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, 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, 4x4mm, 81 Ball, 9x9 Layout, 0.4mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, 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, 5.0x5.0mm, 64 Ball, 8x8 Layout, 0.5mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, http://www.st.com/resource/en/datasheet/stm32f051t8.pdf#page=91 +BGA 64 0.5 +0 +64 +64 +Package_BGA +UFBGA-100_7x7mm_Layout12x12_P0.5mm +UFBGA-100, 7.0x7.0mm, 100 Ball, 12x12 Layout, 0.5mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, http://www.st.com/resource/en/datasheet/stm32f103tb.pdf#page=93 +BGA 100 0.5 +0 +100 +100 +Package_BGA +UFBGA-132_7x7mm_Layout12x12_P0.5mm +UFBGA-132, 7.0x7.0mm, 132 Ball, 12x12 Layout, 0.5mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, http://www.st.com/resource/en/datasheet/stm32l152zc.pdf#page=123 +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, 7.0x7.0mm, 144 Ball, 12x12 Layout, 0.5mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, http://www.st.com/resource/en/datasheet/stm32f446ze.pdf#page=186 +BGA 144 0.5 +0 +144 +144 +Package_BGA +UFBGA-144_10x10mm_Layout12x12_P0.8mm +UFBGA-144, 10.0x10.0mm, 144 Ball, 12x12 Layout, 0.8mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, http://www.st.com/resource/en/datasheet/stm32f446ze.pdf#page=189 +BGA 144 0.8 +0 +144 +144 +Package_BGA +UFBGA-169_7x7mm_Layout13x13_P0.5mm +UFBGA-169, 7.0x7.0mm, 169 Ball, 13x13 Layout, 0.5mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, http://www.st.com/resource/en/datasheet/stm32f429ng.pdf#page=218 +BGA 169 0.5 +0 +169 +169 +Package_BGA +UFBGA-201_10x10mm_Layout15x15_P0.65mm +UFBGA-201, 10.0x10.0mm, 201 Ball, 15x15 Layout, 0.65mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, http://www.st.com/resource/en/datasheet/stm32f207vg.pdf#page=166 +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 +VFBGA-86, 6.0x6.0mm, 86 Ball, 10x10 Layout, 0.55mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, 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.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-4_0.728x0.728mm_Layout2x2_P0.35mm +WLP-4, 0.728x0.728mm, 4 Ball, 2x2 Layout, 0.35mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://datasheets.maximintegrated.com/en/ds/MAX40200.pdf +BGA 4 0.35 +0 +4 +4 +Package_BGA +WLP-9_1.468x1.448mm_Layout3x3_P0.4mm +WLP-9, 1.468x1.448mm, 9 Ball, 3x3 Layout, 0.4mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, 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, 10.0x10.0mm, 121 Ball, 11x11 Layout, 0.8mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, 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, NSMD pad definition Appendix A, 13x13mm, 225 Ball, 15x15 Layout, 0.8mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://www.xilinx.com/support/documentation/user_guides/ug865-Zynq-7000-Pkg-Pinout.pdf#page=77 +BGA 225 0.8 CLG225 +0 +225 +225 +Package_BGA +Xilinx_CLG400 +Zynq-7000 BGA, NSMD pad definition Appendix A, 17x17mm, 400 Ball, 20x20 Layout, 0.8mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://www.xilinx.com/support/documentation/user_guides/ug865-Zynq-7000-Pkg-Pinout.pdf#page=78 +BGA 400 0.8 CLG400 CL400 +0 +400 +400 +Package_BGA +Xilinx_CLG484_CLG485 +Zynq-7000 BGA, NSMD pad definition Appendix A, 19x19mm, 484 Ball, 22x22 Layout, 0.8mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://www.xilinx.com/support/documentation/user_guides/ug865-Zynq-7000-Pkg-Pinout.pdf#page=79 +BGA 484 0.8 CLG484 CL484 CLG485 CL485 +0 +484 +484 +Package_BGA +Xilinx_CPG236 +Artix-7 BGA, NSMD pad definition Appendix A, 10x10mm, 238 Ball, 19x19 Layout, 0.5mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=266 +BGA 238 0.5 CP236 CPG236 +0 +238 +238 +Package_BGA +Xilinx_CPG238 +Artix-7 BGA, NSMD pad definition Appendix A, 10x10mm, 238 Ball, 19x19 Layout, 0.5mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=267 +BGA 238 0.5 CPG238 +0 +238 +238 +Package_BGA +Xilinx_CPGA196 +Spartan-7 BGA, NSMD pad definition Appendix A, 8x8mm, 196 Ball, 14x14 Layout, 0.5mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=260 +BGA 196 0.5 CPGA196 +0 +196 +196 +Package_BGA +Xilinx_CSG324 +Artix-7 BGA, NSMD pad definition Appendix A, 15x15mm, 324 Ball, 18x18 Layout, 0.8mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=268 +BGA 324 0.8 CS324 CSG324 +0 +324 +324 +Package_BGA +Xilinx_CSG325 +Artix-7 BGA, NSMD pad definition Appendix A, 15x15mm, 324 Ball, 18x18 Layout, 0.8mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=268 +BGA 324 0.8 CS325 CSG235 +0 +324 +324 +Package_BGA +Xilinx_CSGA225 +Spartan-7 BGA, NSMD pad definition Appendix A, 13x13mm, 225 Ball, 15x15 Layout, 0.8mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=262 +BGA 225 0.8 CSGA225 +0 +225 +225 +Package_BGA +Xilinx_CSGA324 +Spartan-7 BGA, NSMD pad definition Appendix A, 15x15mm, 324 Ball, 18x18 Layout, 0.8mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=263 +BGA 324 0.8 CSGA324 +0 +324 +324 +Package_BGA +Xilinx_FBG484 +Artix-7, Kintex-7 and Zynq-7000 BGA, NSMD pad definition Appendix A, 23x23mm, 484 Ball, 22x22 Layout, 1mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, 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 +BGA 484 1 FB484 FBG484 FBV484 +0 +484 +484 +Package_BGA +Xilinx_FBG676 +Artix-7, Kintex-7 and Zynq-7000 BGA, NSMD pad definition Appendix A, 27x27mm, 676 Ball, 26x26 Layout, 1mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, 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 +BGA 676 1 FB676 FBG676 FBV676 +0 +676 +676 +Package_BGA +Xilinx_FBG900 +Kintex-7 BGA, NSMD pad definition Appendix A, 31x31mm, 900 Ball, 30x30 Layout, 1mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=289 +BGA 900 1 FB900 FBG900 FBV900 +0 +900 +900 +Package_BGA +Xilinx_FFG676 +Kintex-7 and Zynq-7000 BGA, NSMD pad definition Appendix A, 27x27mm, 676 Ball, 26x26 Layout, 1mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, 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 +BGA 676 1 FF676 FFG676 FFV676 +0 +676 +676 +Package_BGA +Xilinx_FFG900_FFG901 +Kintex-7 and Zynq-7000 BGA, NSMD pad definition Appendix A, 31x31mm, 900 Ball, 30x30 Layout, 1mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, 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 +BGA 900 1 FF900 FFG900 FFV900 FF901 FFG901 FFV901 +0 +900 +900 +Package_BGA +Xilinx_FFG1156 +Artix-7, Kintex-7 and Zynq-7000 BGA, NSMD pad definition Appendix A, 35x35mm, 1156 Ball, 34x34 Layout, 1mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, 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 +BGA 1156 1 FF1156 FFG1156 FFV1156 +0 +1156 +1156 +Package_BGA +Xilinx_FFG1157_FFG1158 +Virtex-7 BGA, NSMD pad definition Appendix A, 35x35mm, 1156 Ball, 34x34 Layout, 1mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=299 +BGA 1156 1 FF1157 FFG1157 FFV1157 FF1158 FFG1158 FFV1158 +0 +1156 +1156 +Package_BGA +Xilinx_FFG1761 +Virtex-7 BGA, NSMD pad definition Appendix A, 42.5x42.5mm, 1760 Ball, 42x42 Layout, 1mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=300 +BGA 1760 1 FF1761 FFG1761 +0 +1760 +1760 +Package_BGA +Xilinx_FFG1926_FFG1927_FFG1928_FFG1930 +Virtex-7 BGA, NSMD pad definition Appendix A, 45x45mm, 1924 Ball, 44x44 Layout, 1mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=303 +BGA 1924 1 FF1926 FFG1926 FF1927 FFG1927 FFV1927 FF1928 FFG1928 FF1930 FFG1930 +0 +1924 +1924 +Package_BGA +Xilinx_FFV1761 +Virtex-7 BGA, NSMD pad definition Appendix A, 42.5x42.5mm, 1760 Ball, 42x42 Layout, 1mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=301 +BGA 1760 1 FFV1761 +0 +1760 +1760 +Package_BGA +Xilinx_FGG484 +Artix-7 BGA, NSMD pad definition Appendix A, 23x23mm, 484 Ball, 22x22 Layout, 1mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=275 +BGA 484 1 FG484 FGG484 +0 +484 +484 +Package_BGA +Xilinx_FGG676 +Artix-7 BGA, NSMD pad definition Appendix A, 27x27mm, 676 Ball, 26x26 Layout, 1mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=276 +BGA 676 1 FG676 FGG676 +0 +676 +676 +Package_BGA +Xilinx_FGGA484 +Spartan-7 BGA, NSMD pad definition Appendix A, 23x23mm, 484 Ball, 22x22 Layout, 1mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=264 +BGA 484 1 FGGA484 +0 +484 +484 +Package_BGA +Xilinx_FGGA676 +Spartan-7 BGA, NSMD pad definition Appendix A, 27x27mm, 676 Ball, 26x26 Layout, 1mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=265 +BGA 676 1 FGGA676 +0 +676 +676 +Package_BGA +Xilinx_FHG1761 +Virtex-7 BGA, NSMD pad definition Appendix A, 45x45mm, 1760 Ball, 42x42 Layout, 1mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=302 +BGA 1760 1 FH1761 FHG1761 +0 +1760 +1760 +Package_BGA +Xilinx_FLG1925_FLG1926_FLG1928_FLG1930 +Virtex-7 BGA, NSMD pad definition Appendix A, 45x45mm, 1924 Ball, 44x44 Layout, 1mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=304 +BGA 1924 1 FL1925 FLG1925 FL1926 FLG1926 FL1928 FLG1928 FL1930 FLG1930 +0 +1924 +1924 +Package_BGA +Xilinx_FTG256 +Artix-7 BGA, NSMD pad definition Appendix A, 17x17mm, 256 Ball, 16x16 Layout, 1mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=269 +BGA 256 1 FT256 FTG256 +0 +256 +256 +Package_BGA +Xilinx_FTGB196 +Spartan-7 BGA, NSMD pad definition Appendix A, 15x15mm, 196 Ball, 14x14 Layout, 1mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=261 +BGA 196 1 FTGB196 +0 +196 +196 +Package_BGA +Xilinx_RB484 +Artix-7 and Zynq-7000 BGA, NSMD pad definition Appendix A, 23x23mm, 484 Ball, 22x22 Layout, 1mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, 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 +BGA 484 1 RB484 +0 +484 +484 +Package_BGA +Xilinx_RB676 +Artix-7 BGA, NSMD pad definition Appendix A, 27x27mm, 676 Ball, 26x26 Layout, 1mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=280 +BGA 676 1 RB676 +0 +676 +676 +Package_BGA +Xilinx_RF676 +Kintex-7 BGA, NSMD pad definition Appendix A, 27x27mm, 676 Ball, 26x26 Layout, 1mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=297 +BGA 676 1 RF676 +0 +676 +676 +Package_BGA +Xilinx_RF900 +Kintex-7 and Zynq-7000 BGA, NSMD pad definition Appendix A, 31x31mm, 900 Ball, 30x30 Layout, 1mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, 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 +BGA 900 1 RF900 +0 +900 +900 +Package_BGA +Xilinx_RF1156 +Zynq-7000 BGA, NSMD pad definition Appendix A, 35x35mm, 1156 Ball, 34x34 Layout, 1mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://www.xilinx.com/support/documentation/user_guides/ug865-Zynq-7000-Pkg-Pinout.pdf#page=95 +BGA 1156 1 RF1156 +0 +1156 +1156 +Package_BGA +Xilinx_RF1157_RF1158 +Virtex-7 BGA, NSMD pad definition Appendix A, 35x35mm, 1156 Ball, 34x34 Layout, 1mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=305 +BGA 1156 1 RF1157 RF1158 +0 +1156 +1156 +Package_BGA +Xilinx_RF1761 +Virtex-7 BGA, NSMD pad definition Appendix A, 42.5x42.5mm, 1760 Ball, 42x42 Layout, 1mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=306 +BGA 1760 1 RF1761 +0 +1760 +1760 +Package_BGA +Xilinx_RF1930 +Virtex-7 BGA, NSMD pad definition Appendix A, 45x45mm, 1924 Ball, 44x44 Layout, 1mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=307 +BGA 1924 1 RF1930 +0 +1924 +1924 +Package_BGA +Xilinx_RFG676 +Zynq-7000 BGA, NSMD pad definition Appendix A, 27x27mm, 676 Ball, 26x26 Layout, 1mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://www.xilinx.com/support/documentation/user_guides/ug865-Zynq-7000-Pkg-Pinout.pdf#page=93 +BGA 676 1 RF676 RFG676 +0 +676 +676 +Package_BGA +Xilinx_RS484 +Artix-7 BGA, NSMD pad definition Appendix A, 19x19mm, 484 Ball, 22x22 Layout, 0.8mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=279 +BGA 484 0.8 RS484 +0 +484 +484 +Package_BGA +Xilinx_SBG484 +Artix-7 BGA, NSMD pad definition Appendix A, 19x19mm, 484 Ball, 22x22 Layout, 0.8mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=270 +BGA 484 0.8 SB484 SBG484 SBV484 +0 +484 +484 +Package_BGA +Xilinx_SBG485 +Zynq-7000 BGA, NSMD pad definition Appendix A, 19x19mm, 484 Ball, 22x22 Layout, 0.8mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://www.xilinx.com/support/documentation/user_guides/ug865-Zynq-7000-Pkg-Pinout.pdf#page=80 +BGA 484 0.8 SBG485 SBV485 +0 +484 +484 +Package_BGA +csBGA-64_5x5mm_Layout8x8_P0.5mm +csBGA-64, 5x5mm, 64 Ball, 8x8 Layout, 0.5mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://www.latticesemi.com/view_document?document_id=213 +BGA 64 0.5 +0 +64 +64 +Package_BGA +ucBGA-64_4x4mm_Layout8x8_P0.4mm +ucBGA-64, 4x4mm, 64 Ball, 8x8 Layout, 0.4mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://www.latticesemi.com/view_document?document_id=213 +BGA 64 0.4 +0 +64 +64 +Package_CSP +Analog_LFCSP-8-1EP_3x3mm_P0.5mm_EP1.53x1.85mm +LFCSP, exposed pad, Analog Devices (http://www.analog.com/media/en/technical-documentation/data-sheets/ADL5542.pdf) +LFCSP 8 0.5 +0 +12 +5 +Package_CSP +Analog_LFCSP-16-1EP_4x4mm_P0.65mm_EP2.1x2.1mm +Analog LFCSP, 16 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp-16/cp_16_23.pdf, CP-16-23), generated with kicad-footprint-generator ipc_noLead_generator.py +Analog LFCSP NoLead +0 +21 +17 +Package_CSP +Analog_LFCSP-16-1EP_4x4mm_P0.65mm_EP2.1x2.1mm_ThermalVias +Analog LFCSP, 16 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp-16/cp_16_23.pdf, CP-16-23), generated with kicad-footprint-generator ipc_noLead_generator.py +Analog LFCSP NoLead +0 +31 +17 +Package_CSP +Analog_LFCSP-16-1EP_4x4mm_P0.65mm_EP2.35x2.35mm +Analog LFCSP, 16 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp-16/cp_16_20.pdf, CP-16-20), generated with kicad-footprint-generator ipc_noLead_generator.py +Analog LFCSP NoLead +0 +21 +17 +Package_CSP +Analog_LFCSP-16-1EP_4x4mm_P0.65mm_EP2.35x2.35mm_ThermalVias +Analog LFCSP, 16 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp-16/cp_16_20.pdf, CP-16-20), generated with kicad-footprint-generator ipc_noLead_generator.py +Analog LFCSP NoLead +0 +31 +17 +Package_CSP +Analog_LFCSP-UQ-10_1.3x1.6mm_P0.4mm +Analog LFCSP-UQ, 10 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp_10_10.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +Analog LFCSP-UQ NoLead +0 +10 +10 +Package_CSP +Anpec_WLCSP-20_1.76x2.03mm_Layout4x5_P0.4mm +WLCSP-20, 1.76x2.03mm, 20 Ball, 4x5 Layout, 0.4mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://www.lcsc.com/datasheet/lcsc_datasheet_2007032014_Anpec-Elec-APW7261HAI-TRG_C691404.pdf +CSP 20 0.4 +0 +20 +20 +Package_CSP +Dialog_WLCSP-34_4.54x1.66mm_Layout17x4_P0.25x0.34mm +Dialog Semiconductor (Renesas) WLCSP-34, staggered array, 4.54x1.66mm, 34 Ball, 17x4 Layout, 0.25x0.34mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://www.renesas.com/us/en/document/dst/da7212-datasheet +CSP 34 0.25x0.34 34-ball +0 +34 +34 +Package_CSP +DiodesInc_GEA20_WLCSP-20_1.7x2.1mm_Layout4x5_P0.4mm +Diodes Incorporated WLCSP-20, GEA20, 1.7x2.1mm, 20 Ball, 4x5 Layout, 0.4mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://www.diodes.com/assets/Package-Files/GEA20.pdf +CSP 20 0.4 +0 +20 +20 +Package_CSP +Efinix_WLCSP-64_3.5353x3.3753mm_Layout8x8_P0.4mm +Efinix WLCSP, NSMD pad definition Page 60, 3.5353x3.3753mm, 64 Ball, 8x8 Layout, 0.4mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://www.efinixinc.com/docs/titanium-packaging-ug-v5.2.pdf#page=9 +CSP 64 0.4 64-ball WLCSP +0 +64 +64 +Package_CSP +Efinix_WLCSP-80_4.4567x3.5569mm_Layout10x8_P0.4mm +WLCSP-80, NSMD pad definition Page 54, 4.4567x3.5569mm, 80 Ball, 10x8 Layout, 0.4mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://www.efinixinc.com/docs/trion-packaging-ug-v4.9.pdf +CSP 80 0.4 80-ball WLCSP +0 +80 +80 +Package_CSP +LFCSP-6-1EP_2x2mm_P0.65mm_EP1x1.6mm +LFCSP, 6 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp-6/cp_6_3.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP NoLead +0 +11 +7 +Package_CSP +LFCSP-8-1EP_3x2mm_P0.5mm_EP1.6x1.65mm +LFCSP 8pin Pitch 0.5mm, http://www.analog.com/media/en/package-pcb-resources/package/57080735642908cp_8_4.pdf +LFCSP 8pin thermal pad 3x2mm Pitch 0.5mm +0 +9 +9 +Package_CSP +LFCSP-8-1EP_3x3mm_P0.5mm_EP1.6x2.34mm +LFCSP, 8 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/CP_8_11.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP NoLead +0 +13 +9 +Package_CSP +LFCSP-8-1EP_3x3mm_P0.5mm_EP1.6x2.34mm_ThermalVias +LFCSP, 8 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/CP_8_11.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP NoLead +0 +20 +9 +Package_CSP +LFCSP-8-1EP_3x3mm_P0.5mm_EP1.45x1.74mm +LFCSP, 8 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp-8/CP_8_13.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP NoLead +0 +13 +9 +Package_CSP +LFCSP-8_2x2mm_P0.5mm +LFCSP 8pin Pitch 0.5mm, http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp_8_6.pdf +LFCSP 8pin 2x2mm Pitch 0.5mm +0 +8 +8 +Package_CSP +LFCSP-10_2x2mm_P0.5mm +LFCSP, 10 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp-10/cp_10_11.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP NoLead +0 +10 +10 +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.5x1.5mm +LFCSP, 16 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp-16/cp_16_27.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 +LFCSP, 16 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp-16/CP_16_22.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP NoLead +0 +21 +17 +Package_CSP +LFCSP-16-1EP_3x3mm_P0.5mm_EP1.6x1.6mm_ThermalVias +LFCSP, 16 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp-16/CP_16_22.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP NoLead +0 +26 +17 +Package_CSP +LFCSP-16-1EP_3x3mm_P0.5mm_EP1.7x1.7mm +LFCSP, 16 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/HMC7992.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP NoLead +0 +21 +17 +Package_CSP +LFCSP-16-1EP_3x3mm_P0.5mm_EP1.7x1.7mm_ThermalVias +LFCSP, 16 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/HMC7992.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP NoLead +0 +26 +17 +Package_CSP +LFCSP-16-1EP_3x3mm_P0.5mm_EP1.854x1.854mm +16-Lead Lead Frame Chip Scale Package, 3x3mm, 0.5mm pitch, 1.854mm thermal pad (CP-16-22, http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp_16_22.pdf) +LFCSP 16 0.5 +0 +21 +17 +Package_CSP +LFCSP-16-1EP_4x4mm_P0.65mm_EP2.1x2.1mm +LFCSP, 16 pin, 4x4mm, 2.1mm sq pad (http://www.analog.com/media/en/technical-documentation/data-sheets/ADG633.pdf) +LFCSP 16 0.65 +0 +21 +17 +Package_CSP +LFCSP-16-1EP_4x4mm_P0.65mm_EP2.4x2.4mm +LFCSP, 16 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp-16/cp-16-40.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP NoLead +0 +21 +17 +Package_CSP +LFCSP-16-1EP_4x4mm_P0.65mm_EP2.4x2.4mm_ThermalVias +LFCSP, 16 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp-16/cp-16-40.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP NoLead +0 +31 +17 +Package_CSP +LFCSP-16-1EP_4x4mm_P0.65mm_EP2.6x2.6mm +LFCSP, 16 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp-16/cp_16_17.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP NoLead +0 +21 +17 +Package_CSP +LFCSP-16-1EP_4x4mm_P0.65mm_EP2.6x2.6mm_ThermalVias +LFCSP, 16 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp-16/cp_16_17.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP NoLead +0 +31 +17 +Package_CSP +LFCSP-16_3x3mm_P0.5mm +LFCSP, 16 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp-16/CP_16_32.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP NoLead +0 +16 +16 +Package_CSP +LFCSP-20-1EP_4x4mm_P0.5mm_EP2.1x2.1mm +LFCSP, 20 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp-20/CP_20_6.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP NoLead MO-220-WGGD-1 +0 +25 +21 +Package_CSP +LFCSP-20-1EP_4x4mm_P0.5mm_EP2.1x2.1mm_ThermalVias +LFCSP, 20 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp-20/CP_20_6.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP NoLead MO-220-WGGD-1 +0 +27 +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_noLead_generator.py +LFCSP NoLead +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_noLead_generator.py +LFCSP NoLead +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_EP0.5x0.5mm +LFCSP, 24 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp-24/CP_24_25.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP NoLead +0 +26 +25 +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/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/cp_24_14.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP NoLead +0 +39 +25 +Package_CSP +LFCSP-24-1EP_4x4mm_P0.5mm_EP2.5x2.5mm +LFCSP, 24 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp_24_7.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP NoLead +0 +29 +25 +Package_CSP +LFCSP-24-1EP_4x4mm_P0.5mm_EP2.5x2.5mm_ThermalVias +LFCSP, 24 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp_24_7.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP NoLead +0 +39 +25 +Package_CSP +LFCSP-28-1EP_5x5mm_P0.5mm_EP3.14x3.14mm +LFCSP, 28 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp-28/CP_28_10.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP NoLead +0 +33 +29 +Package_CSP +LFCSP-28-1EP_5x5mm_P0.5mm_EP3.14x3.14mm_ThermalVias +LFCSP, 28 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp-28/CP_28_10.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP NoLead +0 +43 +29 +Package_CSP +LFCSP-32-1EP_5x5mm_P0.5mm_EP3.1x3.1mm +LFCSP, 32 Pin (https://www.analog.com/media/en/package-pcb-resources/package/414143737956480539664569cp_32_2.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP NoLead +0 +42 +33 +Package_CSP +LFCSP-32-1EP_5x5mm_P0.5mm_EP3.1x3.1mm_ThermalVias +LFCSP, 32 Pin (https://www.analog.com/media/en/package-pcb-resources/package/414143737956480539664569cp_32_2.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP NoLead +0 +59 +33 +Package_CSP +LFCSP-32-1EP_5x5mm_P0.5mm_EP3.5x3.5mm +LFCSP, 32 Pin (https://www.analog.com/media/en/package-pcb-resources/package/3416438741201015623cp_32_4.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP NoLead +0 +37 +33 +Package_CSP +LFCSP-32-1EP_5x5mm_P0.5mm_EP3.5x3.5mm_ThermalVias +LFCSP, 32 Pin (https://www.analog.com/media/en/package-pcb-resources/package/3416438741201015623cp_32_4.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP NoLead +0 +47 +33 +Package_CSP +LFCSP-32-1EP_5x5mm_P0.5mm_EP3.6x3.6mm +LFCSP, 32 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/ADV7280.PDF#page=28), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP NoLead +0 +37 +33 +Package_CSP +LFCSP-32-1EP_5x5mm_P0.5mm_EP3.6x3.6mm_ThermalVias +LFCSP, 32 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/ADV7280.PDF#page=28), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP NoLead +0 +47 +33 +Package_CSP +LFCSP-32-1EP_5x5mm_P0.5mm_EP3.25x3.25mm +32-Lead Frame Chip Scale Package LFCSP (5mm x 5mm); (see http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp-32/CP_32_27.pdf +LFCSP 0.5 +0 +37 +33 +Package_CSP +LFCSP-40-1EP_6x6mm_P0.5mm_EP3.9x3.9mm +LFCSP, 40 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp_40_14.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP NoLead +0 +45 +41 +Package_CSP +LFCSP-40-1EP_6x6mm_P0.5mm_EP3.9x3.9mm_ThermalVias +LFCSP, 40 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp_40_14.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP NoLead +0 +55 +41 +Package_CSP +LFCSP-40-1EP_6x6mm_P0.5mm_EP4.6x4.6mm +LFCSP, 40 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp-40/CP_40_15.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP NoLead +0 +45 +41 +Package_CSP +LFCSP-40-1EP_6x6mm_P0.5mm_EP4.6x4.6mm_ThermalVias +LFCSP, 40 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp-40/CP_40_15.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP NoLead +0 +55 +41 +Package_CSP +LFCSP-40-1EP_6x6mm_P0.5mm_EP4.65x4.65mm +LFCSP, 40 Pin (https://www.jedec.org/system/files/docs/MO-220K01.pdf (variation VJJD-5)), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP NoLead +0 +45 +41 +Package_CSP +LFCSP-40-1EP_6x6mm_P0.5mm_EP4.65x4.65mm_ThermalVias +LFCSP, 40 Pin (https://www.jedec.org/system/files/docs/MO-220K01.pdf (variation VJJD-5)), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP NoLead +0 +55 +41 +Package_CSP +LFCSP-48-1EP_7x7mm_P0.5mm_EP4.1x4.1mm +LFCSP, 48 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp_48_5.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP NoLead +0 +58 +49 +Package_CSP +LFCSP-48-1EP_7x7mm_P0.5mm_EP4.1x4.1mm_ThermalVias +LFCSP, 48 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp_48_5.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP NoLead +0 +75 +49 +Package_CSP +LFCSP-56-1EP_8x8mm_P0.5mm_EP6.6x6.6mm +LFCSP, 56 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp-56/CP_56_9.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP NoLead Analog-LFCSP_WQ-CP-56-9 JEDEC-MO-220-WLLD-5-Modified-EP-size +0 +66 +57 +Package_CSP +LFCSP-56-1EP_8x8mm_P0.5mm_EP6.6x6.6mm_ThermalVias +LFCSP, 56 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp-56/CP_56_9.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP NoLead Analog-LFCSP_WQ-CP-56-9 JEDEC-MO-220-WLLD-5-Modified-EP-size +0 +76 +57 +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 +65 +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 +Macronix_WLCSP-12_2.02x2.09mm_Layout4x4_P0.5mm +WLCSP-12, 2.02x2.09mm, 12 Ball, 4x4 Layout, 0.5mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://www.macronix.com/Lists/Datasheet/Attachments/8909/MX25U3232F,%201.8V,%2032Mb,%20v1.2.pdf#page=93 +CSP 12 0.5 +0 +12 +12 +Package_CSP +Maxim_WLCSP-35_2.998x2.168mm_Layout7x5_P0.4mm +WLCSP-35, 2.998x2.168mm, 35 Ball, 7x5 Layout, 0.4mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://pdfserv.maximintegrated.com/package_dwgs/21-100489.PDF +CSP 35 0.4 +0 +35 +35 +Package_CSP +NXP_SOT1444-5_WLCSP-49_3.44x3.44mm_Layout7x7_P0.4mm +NXP WLCSP49 (Case SOT1444-5), 0.24mm pad, 3.44x3.44mm, 49 Ball, 7x7 Layout, 0.4mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://www.nxp.com/docs/en/package-information/SOT1444-5.pdf +CSP 49 0.4 +0 +49 +49 +Package_CSP +NXP_SOT1450-2_WLCSP-100_5.07x5.07mm_Layout10x10_P0.5mm +NXP WLCSP100 (Case SOT1450-2), 0.28mm pad, 5.07x5.07mm, 100 Ball, 10x10 Layout, 0.5mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://www.nxp.com/docs/en/package-information/SOT1450-2.pdf +CSP 100 0.5 +0 +100 +100 +Package_CSP +Nexperia_WLCSP-15_2.37x1.17mm_Layout6x3_P0.4mmP0.8mm +Nexperia wafer level chip-size package; 15 bumps (6-3-6), 2.37x1.17mm, 15 Ball, 6x3 Layout, 0.4mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://assets.nexperia.com/documents/data-sheet/PCMFXUSB3S_SER.pdf +CSP 15 0.4 +0 +15 +15 +Package_CSP +OnSemi_ODCSP8_BGA-8_3.16x3.16mm_Layout3x3_P1.26mm +OnSemi ODCSP8 (Case 570CS), 0.27mm pad, 3.16x3.16mm, 8 Ball, 3x3 Layout, 1.26mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://www.onsemi.com/pub/Collateral/570CS.PDF +CSP 8 1.26 +0 +8 +8 +Package_CSP +OnSemi_ODCSP8_BGA-8_3.16x3.16mm_Layout3x3_P1.26mm_ManualAssembly +OnSemi ODCSP8 (Case 570CS), 0.46mm pad, manual assembly variant (larger pads), 3.16x3.16mm, 8 Ball, 3x3 Layout, 1.26mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://www.onsemi.com/pub/Collateral/570CS.PDF +CSP 8 1.26 +0 +8 +8 +Package_CSP +OnSemi_ODCSP36_BGA-36_6.13x6.13mm_Layout6x6_P1.0mm +OnSemi ODCSP36 (Case 570CP), 0.27mm pad, 6.13x6.13mm, 36 Ball, 6x6 Layout, 1.0mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://www.onsemi.com/pub/Collateral/570CP.PDF +CSP 36 1.0 +0 +36 +36 +Package_CSP +OnSemi_ODCSP36_BGA-36_6.13x6.13mm_Layout6x6_P1.0mm_ManualAssembly +OnSemi ODCSP36 (Case 570CP), 0.47mm pad, manual assembly variant (larger pads), 6.13x6.13mm, 36 Ball, 6x6 Layout, 1.0mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://www.onsemi.com/pub/Collateral/570CP.PDF +CSP 36 1.0 +0 +36 +36 +Package_CSP +ST_WLCSP-12_1.7x1.42mm_Layout4x6_P0.35mm_Stagger +ST WLCSP-12, ST Die ID 443, 1.7x1.42mm, 12 Ball, Y-staggered 4x6 Layout, 0.35mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://www.st.com/resource/en/datasheet/stm32c011d6.pdf +CSP 12 0.35 +0 +12 +12 +Package_CSP +ST_WLCSP-18_1.86x2.14mm_Layout7x5_P0.4mm_Stagger +ST WLCSP-18, ST Die ID 466, 1.86x2.14mm, 18 Ball, X-staggered 7x5 Layout, 0.4mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://www.st.com/resource/en/datasheet/stm32g031y8.pdf +CSP 18 0.4 +0 +18 +18 +Package_CSP +ST_WLCSP-19_1.643x2.492mm_Layout4x11_P0.35mm_Stagger +ST WLCSP-19, ST Die ID 493, 1.643x2.492mm, 19 Ball, Y-staggered 4x11 Layout, 0.35mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://www.st.com/resource/en/datasheet/stm32c071kb.pdf#page=100 +CSP 19 0.35 ST-Die-493 ST-Package-B0MQ +0 +19 +19 +Package_CSP +ST_WLCSP-20_1.94x2.4mm_Layout4x5_P0.4mm +ST WLCSP-20, ST die ID 456, 1.94x2.4mm, 20 Ball, 4x5 Layout, 0.4mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://www.st.com/resource/en/datasheet/stm32g051f8.pdf#page=102 +CSP 20 0.4 +0 +20 +20 +Package_CSP +ST_WLCSP-25_2.3x2.48mm_Layout5x5_P0.4mm +ST WLCSP-25, ST die ID 460, 2.3x2.48mm, 25 Ball, 5x5 Layout, 0.4mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://www.st.com/resource/en/datasheet/stm32g071eb.pdf +CSP 25 0.4 +0 +25 +25 +Package_CSP +ST_WLCSP-25_2.33x2.24mm_Layout5x5_P0.4mm +ST WLCSP-25, ST Die ID 474, 2.33x2.24mm, 25 Ball, 5x5 Layout, 0.4mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://www.st.com/resource/en/datasheet/stm32h503eb.pdf +CSP 25 0.4 +0 +25 +25 +Package_CSP +ST_WLCSP-25_Die425 +WLCSP-25, 2.097x2.493mm, 25 Ball, 5x5 Layout, 0.4mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, http://www.st.com/resource/en/datasheet/stm32l031f6.pdf#page=112 +CSP 25 0.4 +0 +25 +25 +Package_CSP +ST_WLCSP-25_Die444 +WLCSP-25, 2.423x2.325mm, 25 Ball, 5x5 Layout, 0.4mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, http://www.st.com/resource/en/datasheet/stm32f031k6.pdf#page=93 +CSP 25 0.4 +0 +25 +25 +Package_CSP +ST_WLCSP-25_Die457 +WLCSP-25, 2.133x2.07mm, 25 Ball, 5x5 Layout, 0.4mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, http://www.st.com/resource/en/datasheet/stm32l011k3.pdf#page=100 +CSP 25 0.4 +0 +25 +25 +Package_CSP +ST_WLCSP-27_2.34x2.55mm_Layout9x6_P0.4mm_Stagger +ST WLCSP-27, ST Die ID 459, 2.34x2.55mm, 27 Ball, X-staggered 9x6 Layout, 0.4mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://www.st.com/resource/en/datasheet/stm32u031g6.pdf +CSP 27 0.4 +0 +27 +27 +Package_CSP +ST_WLCSP-36_2.58x3.07mm_Layout6x6_P0.4mm +ST WLCSP-36, ST die ID 464, 2.58x3.07mm, 36 Ball, 6x6 Layout, 0.4mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://www.st.com/resource/en/datasheet/stm32l412t8.pdf +CSP 36 0.4 +0 +36 +36 +Package_CSP +ST_WLCSP-36_2.83x2.99mm_Layout7x13_P0.4mm_Stagger_Offcenter +ST WLCSP-36, ST Die ID 032, 2.83x2.99mm, 36 Ball, Y-staggered 7x13 Layout, 0.4mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://www.st.com/resource/en/datasheet/stm32wb09te.pdf#page=59 +CSP 36 0.4 ST-Die-032 ST-Package-B0LY +0 +36 +36 +Package_CSP +ST_WLCSP-36_2.652x2.592mm_Layout7x12_P0.4mm_Stagger_Offcenter +ST WLCSP-36, ST Die ID 028, 2.652x2.592mm, 36 Ball, Y-staggered 7x12 Layout, 0.4mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://www.st.com/resource/en/datasheet/stm32wb05tz.pdf#page=55 +CSP 36 0.4 ST-Die-028 ST-Package-01C1 +0 +36 +36 +Package_CSP +ST_WLCSP-36_Die417 +WLCSP-36, 2.61x2.88mm, 36 Ball, 6x6 Layout, 0.4mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, http://www.st.com/resource/en/datasheet/stm32l052t8.pdf#page=123 +CSP 36 0.4 +0 +36 +36 +Package_CSP +ST_WLCSP-36_Die440 +WLCSP-36, 2.605x2.703mm, 36 Ball, 6x6 Layout, 0.4mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, http://www.st.com/resource/en/datasheet/stm32f051t8.pdf#page=103 +CSP 36 0.4 +0 +36 +36 +Package_CSP +ST_WLCSP-36_Die445 +WLCSP-36, 2.605x2.703mm, 36 Ball, 6x6 Layout, 0.4mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, http://www.st.com/resource/en/datasheet/stm32f042k6.pdf#page=96 +CSP 36 0.4 +0 +36 +36 +Package_CSP +ST_WLCSP-36_Die458 +WLCSP-36, 2.553x2.579mm, 36 Ball, 6x6 Layout, 0.4mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, http://www.st.com/resource/en/datasheet/stm32f410t8.pdf#page=119 +CSP 36 0.4 +0 +36 +36 +Package_CSP +ST_WLCSP-39_2.76x2.78mm_Layout11x7_P0.4mm_Stagger +ST WLCSP-39, ST Die ID 478, 2.76x2.78mm, 39 Ball, X-staggered 11x7 Layout, 0.4mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://www.st.com/resource/en/datasheet/stm32h523he.pdf#page=197 +CSP 39 0.4 ST-Package-B0MM +0 +39 +39 +Package_CSP +ST_WLCSP-41_2.98x2.76mm_Layout13x7_P0.4mm_Stagger +ST WLCSP-41, 2.98x2.76mm, 41 Ball, X-staggered 13x7 Layout, 0.4mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://www.st.com/resource/en/datasheet/stm32wba55hg.pdf#page=140 +CSP 41 0.4 +0 +41 +41 +Package_CSP +ST_WLCSP-42_2.93x2.82mm_Layout12x7_P0.4mm_Stagger +ST WLCSP-42, ST Die ID 489, 2.93x2.82mm, 42 Ball, X-staggered 12x7 Layout, 0.4mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://www.st.com/resource/en/datasheet/stm32u073rc.pdf +CSP 42 0.4 +0 +42 +42 +Package_CSP +ST_WLCSP-49_3.3x3.38mm_Layout7x7_P0.4mm_Offcenter +ST WLCSP-49, off-center ball grid, ST die ID 494, 3.3x3.38mm, 49 Ball, 7x7 Layout, 0.4mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://www.st.com/resource/en/datasheet/stm32wb15cc.pdf#page=119 +CSP 49 0.4 +0 +49 +49 +Package_CSP +ST_WLCSP-49_3.14x3.14mm_Layout7x7_P0.4mm_Offcenter +ST WLCSP-49, ST Die ID 01E, 3.14x3.14mm, 49 Ball, 7x7 Layout, 0.4mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://www.st.com/resource/en/datasheet/stm32wb07cc.pdf#page=62 +CSP 49 0.4 ST-Die-01E ST-Package-01C1 +0 +49 +49 +Package_CSP +ST_WLCSP-49_3.15x3.13mm_Layout7x7_P0.4mm +ST WLCSP-49, ST die ID 468, 3.15x3.13mm, 49 Ball, 7x7 Layout, 0.4mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://www.st.com/resource/en/datasheet/stm32g431c6.pdf +CSP 49 0.4 +0 +49 +49 +Package_CSP +ST_WLCSP-49_Die423 +WLCSP-49, 2.965x2.965mm, 49 Ball, 7x7 Layout, 0.4mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, http://www.st.com/resource/en/datasheet/stm32f401vc.pdf#page=115 +CSP 49 0.4 +0 +49 +49 +Package_CSP +ST_WLCSP-49_Die431 +WLCSP-49, 2.999x3.185mm, 49 Ball, 7x7 Layout, 0.4mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, http://www.st.com/resource/en/datasheet/stm32f411vc.pdf#page=124 +CSP 49 0.4 +0 +49 +49 +Package_CSP +ST_WLCSP-49_Die433 +WLCSP-49, 3.029x3.029mm, 49 Ball, 7x7 Layout, 0.4mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, http://www.st.com/resource/en/datasheet/stm32f401ce.pdf#page=116 +CSP 49 0.4 +0 +49 +49 +Package_CSP +ST_WLCSP-49_Die435 +WLCSP-49, 3.141x3.127mm, 49 Ball, 7x7 Layout, 0.4mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, http://www.st.com/resource/en/datasheet/DM00257211.pdf#page=191 +CSP 49 0.4 +0 +49 +49 +Package_CSP +ST_WLCSP-49_Die438 +WLCSP-49, 3.89x3.74mm, 49 Ball, 7x7 Layout, 0.5mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, http://www.st.com/resource/en/datasheet/stm32f303r8.pdf#page=112 +CSP 49 0.5 +0 +49 +49 +Package_CSP +ST_WLCSP-49_Die439 +WLCSP-49, 3.417x3.151mm, 49 Ball, 7x7 Layout, 0.4mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, http://www.st.com/resource/en/datasheet/stm32f301r8.pdf#page=117 +CSP 49 0.4 +0 +49 +49 +Package_CSP +ST_WLCSP-49_Die447 +WLCSP-49, 3.294x3.258mm, 49 Ball, 7x7 Layout, 0.4mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, http://www.st.com/resource/en/datasheet/stm32l072kz.pdf#page=134 +CSP 49 0.4 +0 +49 +49 +Package_CSP +ST_WLCSP-49_Die448 +WLCSP-49, 3.277x3.109mm, 49 Ball, 7x7 Layout, 0.4mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, http://www.st.com/resource/en/datasheet/stm32f071v8.pdf#page=106 +CSP 49 0.4 +0 +49 +49 +Package_CSP +ST_WLCSP-52_3.09x3.15mm_Layout13x8_P0.4mm_Stagger +ST WLCSP-52, ST die ID 467, 3.09x3.15mm, 52 Ball, X-staggered 13x8 Layout, 0.4mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://www.st.com/resource/en/datasheet/stm32g0b1ne.pdf#page=136 +CSP 52 0.4 +0 +52 +52 +Package_CSP +ST_WLCSP-56_3.38x3.38mm_Layout14x8_P0.4mm_Stagger +ST WLCSP-56, ST die ID 455, 3.38x3.38mm, 56 Ball, X-staggered 14x8 Layout, 0.4mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://www.st.com/resource/en/datasheet/stm32u535je.pdf +CSP 56 0.4 +0 +56 +56 +Package_CSP +ST_WLCSP-63_Die427 +WLCSP-63, 3.228x4.164mm, 63 Ball, 7x9 Layout, 0.4mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, http://www.st.com/resource/en/datasheet/stm32l151cc.pdf#page=125 +CSP 63 0.4 +0 +63 +63 +Package_CSP +ST_WLCSP-64_3.56x3.52mm_Layout8x8_P0.4mm +ST WLCSP-64, ST die ID 479, 3.56x3.52mm, 64 Ball, 8x8 Layout, 0.4mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://www.st.com/resource/en/datasheet/stm32g491re.pdf +CSP 64 0.4 +0 +64 +64 +Package_CSP +ST_WLCSP-64_Die414 +WLCSP-64, 4.466x4.395mm, 64 Ball, 8x8 Layout, 0.5mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, http://www.st.com/resource/en/datasheet/stm32f103ze.pdf#page=120 +CSP 64 0.5 +0 +64 +64 +Package_CSP +ST_WLCSP-64_Die427 +WLCSP-64, 4.539x4.911mm, 64 Ball, 8x8 Layout, 0.4mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, http://www.st.com/resource/en/datasheet/stm32l152zc.pdf#page=126 +CSP 64 0.4 +0 +64 +64 +Package_CSP +ST_WLCSP-64_Die435 +WLCSP-64, 3.141x3.127mm, 64 Ball, 8x8 Layout, 0.35mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, http://www.st.com/resource/en/datasheet/DM00257211.pdf#page=188 +CSP 64 0.35 +0 +64 +64 +Package_CSP +ST_WLCSP-64_Die436 +WLCSP-64, 4.539x4.911mm, 64 Ball, 8x8 Layout, 0.4mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, http://www.st.com/resource/en/datasheet/stm32l152zd.pdf#page=143 +CSP 64 0.4 +0 +64 +64 +Package_CSP +ST_WLCSP-64_Die441 +WLCSP-64, 3.623x3.651mm, 64 Ball, 8x8 Layout, 0.4mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, http://www.st.com/resource/en/datasheet/DM00213872.pdf#page=167 +CSP 64 0.4 +0 +64 +64 +Package_CSP +ST_WLCSP-64_Die442 +WLCSP-64, 3.347x3.585mm, 64 Ball, 8x8 Layout, 0.4mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, http://www.st.com/resource/en/datasheet/stm32f091vb.pdf#page=109 +CSP 64 0.4 +0 +64 +64 +Package_CSP +ST_WLCSP-64_Die462 +WLCSP-64, 3.357x3.657mm, 64 Ball, 8x8 Layout, 0.4mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, http://www.st.com/resource/en/datasheet/DM00340475.pdf#page=189 +CSP 64 0.4 +0 +64 +64 +Package_CSP +ST_WLCSP-66_Die411 +WLCSP-66, 3.639x3.971mm, 66 Ball, 9x9 Layout, 0.4mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, http://www.st.com/resource/en/datasheet/stm32f207vg.pdf#page=154 +CSP 66 0.4 +0 +66 +66 +Package_CSP +ST_WLCSP-66_Die432 +WLCSP-66, 3.767x4.229mm, 66 Ball, 8x9 Layout, 0.4mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, http://www.st.com/resource/en/datasheet/stm32f378vc.pdf#page=114 +CSP 66 0.4 +0 +66 +66 +Package_CSP +ST_WLCSP-72_3.38x3.38mm_Layout16x9_P0.35mm_Stagger +ST WLCSP-72, ST die ID 455, 3.38x3.38mm, 72 Ball, X-staggered 16x9 Layout, 0.35mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://www.st.com/resource/en/datasheet/stm32u535je.pdf +CSP 72 0.35 +0 +72 +72 +Package_CSP +ST_WLCSP-72_Die415 +WLCSP-72, 4.4084x3.7594mm, 72 Ball, 9x9 Layout, 0.4mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, http://www.st.com/resource/en/datasheet/stm32l476me.pdf#page=255 +CSP 72 0.4 +0 +72 +72 +Package_CSP +ST_WLCSP-80_3.5x3.27mm_Layout10x16_P0.35mm_Stagger_Offcenter +ST WLCSP-80, ST die ID 484, 3.5x3.27mm, 80 Ball, Y-staggered 10x16 Layout, 0.35mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://www.st.com/resource/en/datasheet/stm32h563mi.pdf +CSP 80 0.35 +0 +80 +80 +Package_CSP +ST_WLCSP-81_4.02x4.27mm_Layout9x9_P0.4mm +ST WLCSP-81, ST die ID 469, 4.02x4.27mm, 81 Ball, 9x9 Layout, 0.4mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://www.st.com/resource/en/datasheet/stm32g483me.pdf +CSP 81 0.4 +0 +81 +81 +Package_CSP +ST_WLCSP-81_4.36x4.07mm_Layout9x9_P0.4mm +ST WLCSP-81, ST die ID 472, 4.36x4.07mm, 81 Ball, 9x9 Layout, 0.4mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://www.st.com/resource/en/datasheet/stm32l562ce.pdf +CSP 81 0.4 +0 +81 +81 +Package_CSP +ST_WLCSP-81_Die415 +WLCSP-81, 4.4084x3.7594mm, 81 Ball, 9x9 Layout, 0.4mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, http://www.st.com/resource/en/datasheet/stm32l476me.pdf#page=252 +CSP 81 0.4 +0 +81 +81 +Package_CSP +ST_WLCSP-81_Die421 +WLCSP-81, 3.693x3.815mm, 81 Ball, 9x9 Layout, 0.4mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, http://www.st.com/resource/en/datasheet/stm32f446ze.pdf#page=192 +CSP 81 0.4 +0 +81 +81 +Package_CSP +ST_WLCSP-81_Die463 +WLCSP-81, 4.039x3.951mm, 81 Ball, 9x9 Layout, 0.4mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, http://www.st.com/resource/en/datasheet/DM00282249.pdf#page=175 +CSP 81 0.4 +0 +81 +81 +Package_CSP +ST_WLCSP-90_4.2x3.95mm_Layout18x10_P0.4mm_Stagger +ST WLCSP-90, ST die ID 482, 4.2x3.95mm, 90 Ball, X-staggered 18x10 Layout, 0.4mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://www.st.com/resource/en/datasheet/stm32u575og.pdf#page=306 +CSP 90 0.4 +0 +90 +90 +Package_CSP +ST_WLCSP-90_Die413 +WLCSP-90, 4.223x3.969mm, 90 Ball, 10x9 Layout, 0.4mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, http://www.st.com/resource/en/datasheet/stm32f405og.pdf#page=164 +CSP 90 0.4 +0 +90 +90 +Package_CSP +ST_WLCSP-99_4.42x3.77mm_Layout11x9_P0.35mm +ST WLCSP-99, ST die ID 415, 4.42x3.77mm, 99 Ball, 11x9 Layout, 0.35mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://www.st.com/resource/en/datasheet/stm32l476vg.pdf +CSP 99 0.35 +0 +99 +99 +Package_CSP +ST_WLCSP-100_4.4x4.38mm_Layout10x10_P0.4mm_Offcenter +ST WLCSP-100, off-center ball grid, ST die ID 495, 4.4x4.38mm, 100 Ball, 10x10 Layout, 0.4mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://www.st.com/resource/en/datasheet/stm32wb55vc.pdf +CSP 100 0.4 +0 +100 +100 +Package_CSP +ST_WLCSP-100_4.437x4.456mm_Layout10x10_P0.4mm +ST WLCSP-100, ST die ID 471, 4.437x4.456mm, 100 Ball, 10x10 Layout, 0.4mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://www.st.com/resource/en/datasheet/stm32l4p5ve.pdf +CSP 100 0.4 +0 +100 +100 +Package_CSP +ST_WLCSP-100_Die422 +WLCSP-100, 4.201x4.663mm, 100 Ball, 10x10 Layout, 0.4mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, http://www.st.com/resource/en/datasheet/stm32f302vc.pdf#page=133 +CSP 100 0.4 +0 +100 +100 +Package_CSP +ST_WLCSP-100_Die446 +WLCSP-100, 4.775x5.041mm, 100 Ball, 10x10 Layout, 0.4mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, http://www.st.com/resource/en/datasheet/stm32f303zd.pdf#page=162 +CSP 100 0.4 +0 +100 +100 +Package_CSP +ST_WLCSP-100_Die452 +WLCSP-100, 4.201x4.663mm, 100 Ball, 10x10 Layout, 0.4mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, http://www.st.com/resource/en/datasheet/DM00330506.pdf#page=218 +CSP 100 0.4 +0 +100 +100 +Package_CSP +ST_WLCSP-100_Die461 +WLCSP-100, 4.618x4.142mm, 100 Ball, 10x10 Layout, 0.4mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, http://www.st.com/resource/en/datasheet/DM00284211.pdf#page=259 +CSP 100 0.4 +0 +100 +100 +Package_CSP +ST_WLCSP-101_3.86x3.79mm_Layout11x19_P0.35mm_Stagger +ST WLCSP-101, ST Die ID 485, 3.86x3.79mm, 101 Ball, Y-staggered 11x19 Layout, 0.35mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://www.st.com/resource/en/datasheet/stm32h7r3v8.pdf +CSP 101 0.35 +0 +101 +101 +Package_CSP +ST_WLCSP-104_Die437 +WLCSP-104, 4.095x5.094mm, 104 Ball, 9x12 Layout, 0.4mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, http://www.st.com/resource/en/datasheet/stm32l152ze.pdf#page=127 +CSP 104 0.4 +0 +104 +104 +Package_CSP +ST_WLCSP-115_3.73x4.15mm_Layout11x21_P0.35mm_Stagger +ST WLCSP-115, ST die ID 483, 3.73x4.15mm, 115 Ball, Y-staggered 11x21 Layout, 0.35mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://www.st.com/resource/en/datasheet/stm32h725vg.pdf +CSP 115 0.35 +0 +115 +115 +Package_CSP +ST_WLCSP-115_4.63x4.15mm_Layout21x11_P0.4mm_Stagger +ST WLCSP-115, ST die ID 461, 4.63x4.15mm, 115 Ball, X-staggered 21x11 Layout, 0.4mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://www.st.com/resource/en/datasheet/stm32l496wg.pdf +CSP 115 0.4 +0 +115 +115 +Package_CSP +ST_WLCSP-132_4.57x4.37mm_Layout12x11_P0.35mm +ST WLCSP-132, ST die ID 480, 4.57x4.37mm, 132 Ball, 12x11 Layout, 0.35mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://www.st.com/resource/en/datasheet/stm32h7a3ai.pdf +CSP 132 0.35 +0 +132 +132 +Package_CSP +ST_WLCSP-143_Die419 +WLCSP-143, 4.521x5.547mm, 143 Ball, 11x13 Layout, 0.4mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, http://www.st.com/resource/en/datasheet/stm32f429ng.pdf#page=203 +CSP 143 0.4 +0 +143 +143 +Package_CSP +ST_WLCSP-143_Die449 +WLCSP-143, 4.539x5.849mm, 143 Ball, 11x13 Layout, 0.4mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, http://www.st.com/resource/en/datasheet/stm32f746zg.pdf#page=202 +CSP 143 0.4 +0 +143 +143 +Package_CSP +ST_WLCSP-144_Die470 +WLCSP-144, 5.24x5.24mm, 144 Ball, 12x12 Layout, 0.4mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, http://www.st.com/resource/en/datasheet/DM00366448.pdf#page=295 +CSP 144 0.4 +0 +144 +144 +Package_CSP +ST_WLCSP-150_5.38x5.47mm_Layout13x23_P0.4mm_Stagger +ST WLCSP-150, ST die ID 481, 5.38x5.47mm, 150 Ball, Y-staggered 13x23 Layout, 0.4mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://www.st.com/resource/en/datasheet/stm32u595zj.pdf +CSP 150 0.4 +0 +150 +150 +Package_CSP +ST_WLCSP-156_4.96x4.64mm_Layout13x12_P0.35mm +ST WLCSP-156, ST die ID 450, 4.96x4.64mm, 156 Ball, 13x12 Layout, 0.35mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://www.st.com/resource/en/datasheet/stm32h747xi.pdf +CSP 156 0.35 +0 +156 +156 +Package_CSP +ST_WLCSP-168_Die434 +WLCSP-168, 4.891x5.692mm, 168 Ball, 12x14 Layout, 0.4mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, http://www.st.com/resource/en/datasheet/stm32f469ni.pdf#page=198 +CSP 168 0.4 +0 +168 +168 +Package_CSP +ST_WLCSP-180_Die451 +WLCSP-180, 5.537x6.095mm, 180 Ball, 13x14 Layout, 0.4mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, http://www.st.com/resource/en/datasheet/DM00273119.pdf#page=240 +CSP 180 0.4 +0 +180 +180 +Package_CSP +ST_WLCSP-208_5.8x5.6mm_Layout26x16_P0.35mm_Stagger +ST WLCSP-208, ST die ID 476, 5.8x5.6mm, 208 Ball, X-staggered 26x16 Layout, 0.35mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://www.st.com/resource/en/datasheet/stm32u5f9bj.pdf +CSP 208 0.35 +0 +208 +208 +Package_CSP +ST_WLCSP-208_5.38x5.47mm_Layout26x16_P0.35mm_Stagger +ST WLCSP-208, ST die ID 481, 5.38x5.47mm, 208 Ball, X-staggered 26x16 Layout, 0.35mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://www.st.com/resource/en/datasheet/stm32u5a5aj.pdf +CSP 208 0.35 +0 +208 +208 +Package_CSP +WLCSP-4_0.64x0.64mm_Layout2x2_P0.35mm +WLCSP-4, 0.64x0.64mm, 4 Ball, 2x2 Layout, 0.35mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://www.onsemi.com/pdf/datasheet/ncp163-d.pdf#page=23 +CSP 4 0.35 +0 +4 +4 +Package_CSP +WLCSP-4_0.89x0.89mm_Layout2x2_P0.5mm +X1-WLB0909-4, 0.89x0.89mm, 4 Ball, 2x2 Layout, 0.5mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://www.diodes.com/assets/Datasheets/AP22913.pdf +CSP 4 0.5 +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_Layout2x4_P0.5mm +WLCSP-8, 1.551x2.284mm, 8 Ball, 2x4 Layout, 0.5mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://www.adestotech.com/wp-content/uploads/AT25SL321_112.pdf#page=75 +CSP 8 0.5 +0 +8 +8 +Package_CSP +WLCSP-9_1.21x1.22mm_Layout3x3_P0.4mm +WLCSP-9, 1.21x1.22mm, 9 Ball, 3x3 Layout, 0.4mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/wlcspcb/cb_9_3.pdf +CSP 9 0.4 +0 +9 +9 +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_Layout6x4_P0.4mm_Stagger +WLCSP-12, staggered array, 1.403x1.555mm, 12 Ball, X-staggered 6x4 Layout, 0.4mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, http://ww1.microchip.com/downloads/en/devicedoc/atmel-8235-8-bit-avr-microcontroller-attiny20_datasheet.pdf#page=208 +CSP 12 0.4 +0 +12 +12 +Package_CSP +WLCSP-16_1.409x1.409mm_Layout4x4_P0.35mm +WLCSP-16, 1.409x1.409mm, 16 Ball, 4x4 Layout, 0.35mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, http://www.latticesemi.com/view_document?document_id=213 +CSP 16 0.35 +0 +16 +16 +Package_CSP +WLCSP-16_2.225x2.17mm_Layout4x4_P0.5mm +WLCSP-16 2.225x2.17mm, 2.225x2.17mm, 16 Ball, 4x4 Layout, 0.5mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, 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 +Xilinx_CSG48_7.0x7.0mm_Layout7x7_P0.8mm +XC9572XL CS BGA, 7x7mm, 48 Ball, 7x7 Layout, 0.8mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://www.xilinx.com/content/dam/xilinx/support/documents/package_specs/cs48.pdf +CSP 48 0.8 CS48 CSG48 +0 +48 +48 +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_AOZ666xDI_DFN-8-1EP_3x3mm_P0.65mm_EP1.25x2.7mm +AO AOZ666xDI DFN, 8 Pin (https://aosmd.com/res/data_sheets/AOZ6663DI-01.pdf#page=15), generated with kicad-footprint-generator ipc_noLead_generator.py +AO DFN NoLead +0 +13 +9 +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 +Analog_QFN-28-36-2EP_5x6mm_P0.5mm +QFN, 28 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/qfn_28_05-08-1836.pdf) +QFN NoLead +0 +38 +30 +Package_DFN_QFN +ArtInChip_QFN-68-1EP_7x7mm_P0.35mm_EP5.49x5.49mm +ArtInChip QFN, 68 Pin (https://artinchip.com/upload/files/product/20240112/17050529177725663.pdf/#page=42), generated with kicad-footprint-generator ipc_noLead_generator.py +ArtInChip QFN NoLead +0 +78 +69 +Package_DFN_QFN +ArtInChip_QFN-68-1EP_7x7mm_P0.35mm_EP5.49x5.49mm_ThermalVias +ArtInChip QFN, 68 Pin (https://artinchip.com/upload/files/product/20240112/17050529177725663.pdf/#page=42), generated with kicad-footprint-generator ipc_noLead_generator.py +ArtInChip QFN NoLead +0 +95 +69 +Package_DFN_QFN +ArtInChip_QFN-88-1EP_10x10mm_P0.4mm_EP6.74x6.74mm +ArtInChip QFN, 88 Pin (https://artinchip.com/upload/files/product/20240112/17050529177725663.pdf/#page=43), generated with kicad-footprint-generator ipc_noLead_generator.py +ArtInChip QFN NoLead +0 +98 +89 +Package_DFN_QFN +ArtInChip_QFN-88-1EP_10x10mm_P0.4mm_EP6.74x6.74mm_ThermalVias +ArtInChip QFN, 88 Pin (https://artinchip.com/upload/files/product/20240112/17050529177725663.pdf/#page=43), generated with kicad-footprint-generator ipc_noLead_generator.py +ArtInChip QFN NoLead +0 +115 +89 +Package_DFN_QFN +ArtInChip_QFN-100-1EP_12x12mm_P0.4mm_EP7.4x7.4mm +ArtInChip QFN, 100 Pin (https://artinchip.com/upload/files/product/20240112/17050529177725663.pdf/#page=44), generated with kicad-footprint-generator ipc_noLead_generator.py +ArtInChip QFN NoLead +0 +110 +101 +Package_DFN_QFN +ArtInChip_QFN-100-1EP_12x12mm_P0.4mm_EP7.4x7.4mm_ThermalVias +ArtInChip QFN, 100 Pin (https://artinchip.com/upload/files/product/20240112/17050529177725663.pdf/#page=44), generated with kicad-footprint-generator ipc_noLead_generator.py +ArtInChip QFN NoLead +0 +127 +101 +Package_DFN_QFN +CDFN-4_2.5x3.2mm_P2.1mm +CDFN, 4 Pin (https://ww1.microchip.com/downloads/aemDocuments/documents/TCG/ProductDocuments/DataSheets/DSC1001-3-4-1.8V-3.3V-Low-Power-Precision-CMOS-Oscillators-DS20005529.pdf#page=16), generated with kicad-footprint-generator ipc_noLead_generator.py +CDFN NoLead Microchip-DFN3225-4LD-PL-1 +0 +4 +4 +Package_DFN_QFN +CDFN-4_2x2.5mm_P1.65mm +CDFN, 4 Pin (https://ww1.microchip.com/downloads/aemDocuments/documents/TCG/ProductDocuments/DataSheets/DSC1001-3-4-1.8V-3.3V-Low-Power-Precision-CMOS-Oscillators-DS20005529.pdf#page=17), generated with kicad-footprint-generator ipc_noLead_generator.py +CDFN NoLead Microchip-DFN2520-4LD-PL-1 +0 +4 +4 +Package_DFN_QFN +CDFN-4_3.2x5mm_P2.54mm +CDFN, 4 Pin (https://ww1.microchip.com/downloads/aemDocuments/documents/TCG/ProductDocuments/DataSheets/DSC1001-3-4-1.8V-3.3V-Low-Power-Precision-CMOS-Oscillators-DS20005529.pdf#page=15), generated with kicad-footprint-generator ipc_noLead_generator.py +CDFN NoLead Microchip-DFN5032-4LD-PL-1 +0 +4 +4 +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-4_5x7mm_P5.08mm +DFN, 4 Pin (https://ww1.microchip.com/downloads/aemDocuments/documents/TCG/ProductDocuments/DataSheets/DSC1001-3-4-1.8V-3.3V-Low-Power-Precision-CMOS-Oscillators-DS20005529.pdf#page=14), generated with kicad-footprint-generator ipc_noLead_generator.py +DFN NoLead Microchip-DFN75-4LD-PL-1 +0 +4 +4 +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.7x1.6mm +DFN, 6 Pin (http://www.junmintech.com/UploadFiles/Product/20211129145204_37021.pdf#page=10), 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_EP1.01x1.7mm +DFN, 6 Pin (https://www.diodes.com/assets/Package-Files/U-DFN2020-6%20(Type%20C).pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +DFN NoLead +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-6_1.6x1.3mm_P0.4mm +DFN, 6 Pin (https://www.st.com/resource/en/datasheet/tsv991.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +DFN NoLead +0 +6 +6 +Package_DFN_QFN +DFN-8-1EP_1.5x1.5mm_P0.4mm_EP0.7x1.2mm +DFN, 8 Pin (https://www.kinet-ic.com/uploads/KTD2026-7-04h.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.6x1.2mm +DFN, 8 Pin (https://www.onsemi.com/pub/Collateral/506AQ.PDF), generated with kicad-footprint-generator ipc_noLead_generator.py +DFN NoLead 506AQ +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_EP0.9x1.7mm +DFN, 8 Pin (https://www.diodes.com/assets/Package-Files/U-DFN2020-8-Type-E.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +DFN NoLead +0 +11 +9 +Package_DFN_QFN +DFN-8-1EP_2x2mm_P0.5mm_EP0.86x1.55mm +DFN, 8 Pin (https://www.diodes.com/assets/Datasheets/PAM2841.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +DFN NoLead +0 +13 +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.37mm +DFN, 8 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-dfn/dfn_8_05-08-1719.pdf), 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 +DFN, 8 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-dfn/05081702_c_ddb8.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +DFN NoLead Linear-DDB +0 +11 +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.7x1.6mm +DFN, 8 Pin (https://www.monolithicpower.com/en/documentview/productdocument/index/version/2/document_type/Datasheet/lang/en/sku/MP8904DD/document_id/1244/), 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.7x2.4mm +DFN, 8 Pin (https://stcmicro.com/datasheet/STC8G-en.pdf#page=81), generated with kicad-footprint-generator ipc_noLead_generator.py +DFN NoLead STC8G1K08A-36I-DFN8 +0 +10 +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#page=10), 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#page=10), 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.5x2.25mm +DFN, 8 Pin (https://www.diodes.com/assets/Package-Files/U-DFN3030-8-Type-E.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.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/en/documentview/productdocument/index/version/2/document_type/Datasheet/lang/en/sku/MPQ2483/document_id/2064/), 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.58x2.35mm +DFN, 10 Pin (https://ww1.microchip.com/downloads/aemDocuments/documents/OTH/ProductDocuments/DataSheets/22005b.pdf#page=24), generated with kicad-footprint-generator ipc_noLead_generator.py +DFN NoLead +0 +15 +11 +Package_DFN_QFN +DFN-10-1EP_3x3mm_P0.5mm_EP1.58x2.35mm_ThermalVias +DFN, 10 Pin (https://ww1.microchip.com/downloads/aemDocuments/documents/OTH/ProductDocuments/DataSheets/22005b.pdf#page=24), generated with kicad-footprint-generator ipc_noLead_generator.py +DFN NoLead +0 +20 +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/lt3471.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/lt3471.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-1EP_3x3mm_P0.5mm_EP1.646x3.1mm +DFN, 10 Pin (https://www.st.com/resource/en/datasheet/str485.pdf#page=18), generated with kicad-footprint-generator ipc_noLead_generator.py +DFN NoLead VSON-10-1EP_3x3mm_P0.5mm_EP1.646x3.1mm +0 +13 +11 +Package_DFN_QFN +DFN-10-1EP_3x3mm_P0.5mm_EP1.646x3.1mm_ThermalVias +DFN, 10 Pin (https://www.st.com/resource/en/datasheet/str485.pdf#page=18), generated with kicad-footprint-generator ipc_noLead_generator.py +DFN NoLead VSON-10-1EP_3x3mm_P0.5mm_EP1.646x3.1mm +0 +20 +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.65x2.38mm +DFN, 12 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-dfn/DFN_12_05-08-1725.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +DFN NoLead +0 +17 +13 +Package_DFN_QFN +DFN-12-1EP_3x3mm_P0.45mm_EP1.65x2.38mm_ThermalVias +DFN, 12 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-dfn/DFN_12_05-08-1725.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +DFN NoLead +0 +24 +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_1.35x3.5mm_P0.5mm +DFN, 14 Pin (https://m.littelfuse.com/media?resourcetype=datasheets&itemid=9fbe09c9-efee-4022-a889-ca0005cd9b07&filename=littelfuse-tvs-diode-array-sp3012-datasheet#page=5), 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-01 (https://www.onsemi.com/download/package-drawing/pdf/506af.pdf) +DFN 0.5 +0 +35 +23 +Package_DFN_QFN +DFN-24-1EP_4x7mm_P0.5mm_EP2.64x6.44mm +DKD Package; 24-Lead Plastic DFN (7mm x 4mm) (see Linear Technology DFN_24_05-08-1864.pdf) +DFN 0.5 +0 +35 +25 +Package_DFN_QFN +DFN-32-1EP_4x7mm_P0.4mm_EP2.64x6.44mm +DKD Package; 32-Lead Plastic DFN (7mm x 4mm) (see Linear Technology DFN_32_05-08-1734.pdf) +DFN 0.4 +0 +43 +33 +Package_DFN_QFN +DFN-44-1EP_5x8.9mm_P0.4mm_EP3.7x8.4mm +DFN44 8.9x5, 0.4P; CASE 506BU-01 (see ON Semiconductor 506BU.PDF) +DFN 0.4 +0 +63 +45 +Package_DFN_QFN +DFN-S-8-1EP_6x5mm_P1.27mm +8-Lead Plastic Dual Flat, No Lead Package (MF) - 6x5 mm Body [DFN-S] (see Microchip Packaging Specification 00000049BS.pdf) +DFN 1.27 +0 +16 +9 +Package_DFN_QFN +DHVQFN-14-1EP_2.5x3mm_P0.5mm_EP1x1.5mm +DHVQFN, 14 Pin (JEDEC MO-241/VAA, https://assets.nexperia.com/documents/package-information/SOT762-1.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +DHVQFN NoLead +0 +16 +15 +Package_DFN_QFN +DHVQFN-16-1EP_2.5x3.5mm_P0.5mm_EP1x2mm +DHVQFN, 16 Pin (JEDEC MO-241/VAB, https://assets.nexperia.com/documents/package-information/SOT763-1.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +DHVQFN NoLead Nexperia_SOT763-1 Texas_BQB0016A +0 +19 +17 +Package_DFN_QFN +DHVQFN-20-1EP_2.5x4.5mm_P0.5mm_EP1x3mm +DHVQFN, 20 Pin (JEDEC MO-241/VAC, https://assets.nexperia.com/documents/package-information/SOT764-1.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +DHVQFN NoLead +0 +23 +21 +Package_DFN_QFN +Diodes_DFN1006-3 +DFN package size 1006 3 pins +DFN package size 1006 3 pins +0 +3 +3 +Package_DFN_QFN +Diodes_UDFN-10_1.0x2.5mm_P0.5mm +U-DFN2510-10 package used by Diodes Incorporated (https://www.diodes.com/assets/Package-Files/U-DFN2510-10-Type-CJ.pdf) +UDFN-10 U-DFN2510-10 Diodes +0 +10 +10 +Package_DFN_QFN +Diodes_UDFN2020-6_Type-F +U-DFN2020-6 (Type F) (https://www.diodes.com/assets/Package-Files/U-DFN2020-6-Type-F.pdf) +U-DFN2020-6 (Type F) +0 +8 +8 +Package_DFN_QFN +Diodes_UDFN3810-9_TYPE_B +9-pin UDFN package, 1.0x3.8mm, (Ref: https://www.diodes.com/assets/Datasheets/D3V3X8U9LP3810.pdf) +UDFN SMD +0 +9 +9 +Package_DFN_QFN +Diodes_ZL32_TQFN-32-1EP_3x6mm_P0.4mm_EP1.25x3.5mm +Diodes ZL32 TQFN, 32 Pin (https://www.diodes.com/assets/Package-Files/ZL32.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +Diodes TQFN NoLead +0 +41 +33 +Package_DFN_QFN +EPC_QFN-13-3EP_3.5x5mm_P0.5mm +EPC QFN-13, 5.0x3.5mm, Pitch 0.5mm, https://epc-co.com/epc/Portals/0/epc/documents/datasheets/EPC23102_datasheet.pdf +ePower-Stage-IC EPC23102 EPC23103 EPC23104 +0 +62 +13 +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 +44 +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 +HXQFN-16-1EP_3x3mm_P0.5mm_EP1.85x1.85mm +HXQFN, 16 Pin (https://www.nxp.com/docs/en/data-sheet/NX3L4051.pdf#page=17), generated with kicad-footprint-generator ipc_noLead_generator.py +HXQFN NoLead +0 +21 +17 +Package_DFN_QFN +HXQFN-16-1EP_3x3mm_P0.5mm_EP1.85x1.85mm_ThermalVias +HXQFN, 16 Pin (https://www.nxp.com/docs/en/data-sheet/NX3L4051.pdf#page=17), generated with kicad-footprint-generator ipc_noLead_generator.py +HXQFN NoLead +0 +26 +17 +Package_DFN_QFN +IDT_QFN-12-1EP_2x2mm_P0.5mm_EP1.1x1.1mm +IDT QFN, 12 Pin (https://www.renesas.com/en/document/psc/neg12-package-outline-20-x-20-mm-body-epad-11-x-11-mm-050-mm-pitch-qfn), generated with kicad-footprint-generator ipc_noLead_generator.py +IDT QFN NoLead IDT_NEG-12 +0 +14 +13 +Package_DFN_QFN +IDT_QFN-12-1EP_2x2mm_P0.5mm_EP1.1x1.1mm_ThermalVias +IDT QFN, 12 Pin (https://www.renesas.com/en/document/psc/neg12-package-outline-20-x-20-mm-body-epad-11-x-11-mm-050-mm-pitch-qfn), generated with kicad-footprint-generator ipc_noLead_generator.py +IDT QFN NoLead IDT_NEG-12 +0 +19 +13 +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.15x5.15mm +MLPQ 48 leads, 7x7mm (https://www.infineon.com/dgdl/irs2052mpbf.pdf?fileId=5546d462533600a401535675d3b32788) +mlpq 32 7x7mm +0 +115 +49 +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_PQFN-22-15-4EP_6x5mm_P0.65mm +PQFN 22 leads, 5x6mm, 0.127mm stencil (https://www.infineon.com/dgdl/ir4301.pdf?fileId=5546d462533600a4015355d5fc691819, https://www.infineon.com/dgdl/Infineon-AN1170-AN-v05_00-EN.pdf?fileId=5546d462533600a40153559ac3e51134) +pqfn 22 5x6mm +0 +56 +15 +Package_DFN_QFN +Infineon_PQFN-44-31-5EP_7x7mm_P0.5mm +PQFN 44 leads, 7x7mm, 0.127mm stencil (https://www.infineon.com/dgdl/ir4302.pdf?fileId=5546d462533600a4015355d602a9181d, https://www.infineon.com/dgdl/Infineon-AN1170-AN-v05_00-EN.pdf?fileId=5546d462533600a40153559ac3e51134) +pqfn 44 7x7mm +0 +125 +27 +Package_DFN_QFN +LQFN-10-1EP_2x2mm_P0.5mm_EP0.7x0.7mm +LQFN, 10 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-lqfn/05081644_0_LQFN10.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LQFN NoLead +0 +12 +11 +Package_DFN_QFN +LQFN-12-1EP_2x2mm_P0.5mm_EP0.7x0.7mm +LQFN, 12 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-lqfn/05081530_B_LQFN12.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LQFN NoLead +0 +14 +13 +Package_DFN_QFN +LQFN-16-1EP_3x3mm_P0.5mm_EP1.7x1.7mm +LQFN, 16 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-lqfn/05081595_0_lqfn16.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LQFN NoLead +0 +18 +17 +Package_DFN_QFN +Linear_DE14MA +14-Lead Plastic DFN, 4mm x 3mm (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-dfn/05081731_C_DE14MA.pdf) +DFN 0.5 +0 +14 +14 +Package_DFN_QFN +Linear_UGK52_QFN-46-52 +Linear UKG52(46) package, QFN-52-1EP variant (see http://cds.linear.com/docs/en/datasheet/3886fe.pdf) +QFN 0.5 +0 +62 +47 +Package_DFN_QFN +MLF-6-1EP_1.6x1.6mm_P0.5mm_EP0.5x1.26mm +MLF, 6 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/mic5353.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +MLF NoLead +0 +9 +7 +Package_DFN_QFN +MLF-8-1EP_3x3mm_P0.65mm_EP1.55x2.3mm +8-Pin ePad 3mm x 3mm MLF - 3x3x0.85 mm Body (see Microchip datasheet http://ww1.microchip.com/downloads/en/DeviceDoc/mic5355_6.pdf) +DFN MLF 0.65 +0 +12 +9 +Package_DFN_QFN +MLF-8-1EP_3x3mm_P0.65mm_EP1.55x2.3mm_ThermalVias +8-Pin ePad 3mm x 3mm MLF - 3x3x0.85 mm Body (see Microchip datasheet http://ww1.microchip.com/downloads/en/DeviceDoc/mic5355_6.pdf) +DFN MLF 0.65 +0 +15 +9 +Package_DFN_QFN +MLF-20-1EP_4x4mm_P0.5mm_EP2.6x2.6mm +MLF, 20 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/doc8246.pdf#page=263), generated with kicad-footprint-generator ipc_noLead_generator.py +MLF NoLead +0 +25 +21 +Package_DFN_QFN +MLF-20-1EP_4x4mm_P0.5mm_EP2.6x2.6mm_ThermalVias +MLF, 20 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/doc8246.pdf#page=263), generated with kicad-footprint-generator ipc_noLead_generator.py +MLF NoLead +0 +30 +21 +Package_DFN_QFN +MLPQ-16-1EP_4x4mm_P0.65mm_EP2.8x2.8mm +Micro Leadframe Package, 16 pin with exposed pad +MLPQ- 0.65 +0 +21 +17 +Package_DFN_QFN +MPS_QFN-12_2x2mm_P0.4mm +MPS QFN, 12 Pin (https://www.monolithicpower.com/en/documentview/productdocument/index/version/2/document_type/Datasheet/lang/en/sku/MP5087A#page24), generated with kicad-footprint-generator ipc_noLead_generator.py +MPS QFN NoLead +0 +12 +12 +Package_DFN_QFN +MPS_QFN-16_3x3mm_P0.5mm +MPS QFN, 16 Pin (https://www.monolithicpower.com/en/documentview/productdocument/index/version/2/document_type/Datasheet/lang/en/sku/MP8859/document_id/4033/), generated with kicad-footprint-generator ipc_noLead_generator.py +MPS QFN NoLead +0 +16 +16 +Package_DFN_QFN +Maxim_FC2QFN-14_2.5x2.5mm_P0.5mm +14-FC2QFN, 14/12 Pin, https://pdfserv.maximintegrated.com/land_patterns/90-100127.PDF +FC2QFN NoLead +0 +12 +12 +Package_DFN_QFN +Maxim_TDFN-6-1EP_3x3mm_P0.95mm_EP1.5x2.3mm +Maxim TDFN, 6 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/MAX4460-MAX4462.pdf#page=19, https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/tdfn-ep/21-0137.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +Maxim TDFN NoLead +0 +11 +7 +Package_DFN_QFN +Maxim_TDFN-10-1EP_3x3mm_P0.5mm_EP1.58x2.35mm +Maxim TDFN, 10 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/tqfn/21-0137.pdf and https://www.analog.com/media/en/package-pcb-resources/land-pattern/tdfn-ep/90-0003.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +Maxim TDFN NoLead T1033-2 MO229/WEED-3 +0 +15 +11 +Package_DFN_QFN +Maxim_TDFN-12-1EP_3x3mm_P0.5mm_EP1.7x2.5mm +Maxim TDFN, 12 Pin (https://www.analog.com/media/en/package-pcb-resources/land-pattern/tdfn/90-0397.pdf) +DFN NoLead +0 +17 +13 +Package_DFN_QFN +Maxim_TDFN-12-1EP_3x3mm_P0.5mm_EP1.7x2.5mm_ThermalVias +Maxim TDFN, 12 Pin (https://www.analog.com/media/en/package-pcb-resources/land-pattern/tdfn/90-0397.pdf) +DFN NoLead +0 +23 +13 +Package_DFN_QFN +Maxim_WSON-8-1EP_3x2mm_P0.5mm_EP1.75x1.63mm +Maxim WSON, 8 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/tdfn-ep/21-0174.pdf, https://www.analog.com/media/en/package-pcb-resources/land-pattern/tdfn-ep/90-0091.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +Maxim WSON NoLead WDFN-8-1EP_3x2mm_P0.5mm_EP1.75x1.63mm Maxim_TDFN-8-1EP_3x2mm_P0.5mm_EP1.75x1.63mm Maxim_T823+1 JEDEC_WCED-2 JEDEC_W2030D-2 +0 +10 +9 +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 +NXP_VQFN-16-1EP_4x4mm_P0.65mm_EP2.1x2.1mm +NXP VQFN, 16 Pin (https://www.nxp.com/docs/en/package-information/SOT629-1.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +NXP VQFN NoLead NXP_SOT629-1 NXP_HVQFN16 JEDEC_MO-220-VGGC +0 +21 +17 +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 +Nordic_AQFN-94-1EP_7x7mm_P0.4mm +aQFN, Nordic, nRF5340, https://infocenter.nordicsemi.com/pdf/nRF5340_PS_v1.2.pdf +aqfn qfn nordic nrf nrf5340 aqfn94 +0 +103 +95 +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_DFN-14-1EP_4x4mm_P0.5mm_EP2.7x3.4mm +OnSemi DFN, 14 Pin (https://www.onsemi.com/pub/Collateral/506CM.PDF), generated with kicad-footprint-generator ipc_noLead_generator.py +OnSemi DFN NoLead +0 +24 +15 +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_UDFN-16-1EP_1.35x3.3mm_P0.4mm_EP0.4x2.8mm +OnSemi UDFN, 16 Pin (https://www.onsemi.com/pdf/datasheet/cm1624-d.pdf#page=7), generated with kicad-footprint-generator ipc_noLead_generator.py +OnSemi UDFN NoLead +0 +20 +17 +Package_DFN_QFN +OnSemi_VCT-28_3.5x3.5mm_P0.4mm +OnSemi VCT, 28 Pin (http://www.onsemi.com/pub/Collateral/601AE.PDF), generated with kicad-footprint-generator ipc_noLead_generator.py +OnSemi VCT NoLead +0 +28 +28 +Package_DFN_QFN +OnSemi_XDFN-10_1.35x2.2mm_P0.4mm +10-Lead Plastic XDFN (1.35mm x 2.2mm) (see https://www.onsemi.com/pdf/datasheet/emi8132-d.pdf) +OnSemi XDFN-10 0.4 +0 +10 +10 +Package_DFN_QFN +OnSemi_XDFN4-1EP_1.0x1.0mm_EP0.52x0.52mm +XDFN4 footprint (as found on the https://www.onsemi.com/pub/Collateral/NCP115-D.PDF) +OnSemi XDFN4 +0 +5 +5 +Package_DFN_QFN +PQFN-8-EP_6x5mm_P1.27mm_Generic +Universal Footprint for Thermally-enhanced SO-8 packages; compatible with Vishay PowerPAK SO−8, International Rectifier PQFN, Texas Instrument SON 5 × 6 mm (Q5A), Alpha and Omega DFN 5 × 6, ST Microelectronics PowerFLAT™ 5 × 6, Toshiba SOP Advance, Infineon Super SO8, NXP LFPAK (SOT669), Renesas WPAK(3F) / LFPAK, Fairchild Power 56, APEC PMPAK 5 × 6, MagnaChip PowerDFN56, ROHM HSOP8, UBIQ PRPAK56, NIKO−SEM PDFN 5 × 6, NEC 8-pin HVSON. Datasheets: https://www.onsemi.com/pub/Collateral/AND9137-D.PDF, https://assets.nexperia.com/documents/leaflet/75016838.pdf +Thermally-enhanced SO-8 PowerPAK PQFN Q5A PowerFLAT LFPAK SOT669 WPAK(3F) LFPAK Power56 PMPAK PowerDFN56 HSOP8 PRPAK56 PDFN HVSON +0 +21 +5 +Package_DFN_QFN +Panasonic_HQFN-16-1EP_4x4mm_P0.65mm_EP2.9x2.9mm +Panasonic HQFN-16, 4x4x0.85mm (https://industrial.panasonic.com/content/data/SC/ds/ds7/c0/PKG_HQFN016-A-0404XZL_EN.pdf) +panasonic hqfn +0 +37 +17 +Package_DFN_QFN +Panasonic_HSON-8_8x8mm_P2.00mm +Panasonic HSON-8, 8x8x1.25mm (https://industrial.panasonic.com/content/data/SC/ds/ds7/c0/PKG_HSON008-A-0808XXI_EN.pdf) +panasonic hson +0 +27 +9 +Package_DFN_QFN +QFN-8-1EP_6x5mm_P1.27mm_EP3.4x4.2mm +QFN, 8 Pin (https://help.1nce.com/dev-hub/docs/sim-chips-iot-industrial), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +13 +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.45x1.45mm +QFN, 12 Pin (https://www.st.com/resource/en/datasheet/tcpp01-m12.pdf#page=22), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead QFN12L +0 +15 +13 +Package_DFN_QFN +QFN-12-1EP_3x3mm_P0.5mm_EP1.45x1.45mm_ThermalVias +QFN, 12 Pin (https://www.st.com/resource/en/datasheet/tcpp01-m12.pdf#page=22), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead QFN12L +0 +18 +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_1.8x2.6mm_P0.4mm_EP0.7x1.5mm +QFN, 16 Pin (https://www.st.com/resource/en/datasheet/stg3692.pdf#page=13), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead QFN16L +0 +18 +17 +Package_DFN_QFN +QFN-16-1EP_1.8x2.6mm_P0.4mm_EP0.7x1.5mm_ThermalVias +QFN, 16 Pin (https://www.st.com/resource/en/datasheet/stg3692.pdf#page=13), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead QFN16L +0 +22 +17 +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 (https://www.st.com/resource/en/datasheet/tsv521.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.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_3x3mm_P0.5mm_EP1.675x1.675mm +QFN, 16 Pin (https://media.melexis.com/-/media/files/documents/datasheets/mlx90395-datasheet-melexis.pdf#page=55), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +18 +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.5x2.5mm +QFN, 24 Pin (https://www.lcsc.com/datasheet/lcsc_datasheet_2006041834_Everanalog-IC-design-EA3058QDR_C575412.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.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 (https://www.alldatasheet.com/datasheet-pdf/pdf/1159021/ALFA/AS3330.html), 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 (https://www.alldatasheet.com/datasheet-pdf/pdf/1159021/ALFA/AS3330.html), 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_4x4mm_P0.5mm_EP2.75x2.75mm +QFN, 24 Pin (https://www.infineon.com/dgdl/Infineon-EZ-PD_BCR_Datasheet_USB_Type-C_Port_Controller_for_Power_Sinks-DataSheet-v03_00-EN.pdf?fileId=8ac78c8c7d0d8da4017d0ee7ce9d70ad), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +29 +25 +Package_DFN_QFN +QFN-24-1EP_4x4mm_P0.5mm_EP2.75x2.75mm_ThermalVias +QFN, 24 Pin (https://www.infineon.com/dgdl/Infineon-EZ-PD_BCR_Datasheet_USB_Type-C_Port_Controller_for_Power_Sinks-DataSheet-v03_00-EN.pdf?fileId=8ac78c8c7d0d8da4017d0ee7ce9d70ad), 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 +39 +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 +51 +25 +Package_DFN_QFN +QFN-24-1EP_5x5mm_P0.65mm_EP3.25x3.25mm +QFN, 24 Pin (https://semtech.my.salesforce.com/sfc/p/#E0000000JelG/a/44000000MDkO/lWPNMeJClEs8Zvyu7AlDlKSyZqhYdVpQzFLVfUp.EXs), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +29 +25 +Package_DFN_QFN +QFN-24-1EP_5x5mm_P0.65mm_EP3.25x3.25mm_ThermalVias +QFN, 24 Pin (https://semtech.my.salesforce.com/sfc/p/#E0000000JelG/a/44000000MDkO/lWPNMeJClEs8Zvyu7AlDlKSyZqhYdVpQzFLVfUp.EXs), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +39 +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 +46 +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.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_4x4mm_P0.45mm_EP2.6x2.6mm +QFN, 28 Pin (http://www.everest-semi.com/pdf/ES8388%20DS.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +33 +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_EP2.7x2.7mm +QFN, 28 Pin (JEDEC MO-220-K.01, variation VHHD-1, https://www.jedec.org/system/files/docs/MO-220K01.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +38 +29 +Package_DFN_QFN +QFN-28-1EP_5x5mm_P0.5mm_EP2.7x2.7mm_ThermalVias +QFN, 28 Pin (JEDEC MO-220-K.01, variation VHHD-1, https://www.jedec.org/system/files/docs/MO-220K01.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +43 +29 +Package_DFN_QFN +QFN-28-1EP_5x5mm_P0.5mm_EP3.1x3.1mm +QFN, 28 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/TMC2202_TMC2208_TMC2224_datasheet_rev1.14.pdf#page=77), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +38 +29 +Package_DFN_QFN +QFN-28-1EP_5x5mm_P0.5mm_EP3.1x3.1mm_ThermalVias +QFN, 28 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/TMC2202_TMC2208_TMC2224_datasheet_rev1.14.pdf#page=77), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +55 +29 +Package_DFN_QFN +QFN-28-1EP_5x5mm_P0.5mm_EP3.25x3.25mm +QFN, 28 Pin (https://www.silabs.com/documents/public/data-sheets/C8051F32x.pdf#page=39), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +38 +29 +Package_DFN_QFN +QFN-28-1EP_5x5mm_P0.5mm_EP3.25x3.25mm_ThermalVias +QFN, 28 Pin (https://www.silabs.com/documents/public/data-sheets/C8051F32x.pdf#page=39), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +43 +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 +48 +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 +64 +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 +54 +29 +Package_DFN_QFN +QFN-28-1EP_6x6mm_P0.65mm_EP4.8x4.8mm +QFN, 28 Pin (https://semtech.my.salesforce.com/sfc/p/#E0000000JelG/a/440000001NCE/v_VBhk1IolDgxwwnOpcS_vTFxPfSEPQbuneK3mWsXlU 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://semtech.my.salesforce.com/sfc/p/#E0000000JelG/a/440000001NCE/v_VBhk1IolDgxwwnOpcS_vTFxPfSEPQbuneK3mWsXlU page=125), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +55 +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 +55 +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 +47 +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 +52 +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 +52 +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 +52 +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 +47 +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 +52 +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 +52 +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 +66 +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 +66 +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 +66 +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 +59 +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 +62 +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 +56 +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 +56 +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-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=47), 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=47), 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 +75 +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.4x4.4mm +QFN, 48 Pin (https://www.st.com/resource/en/datasheet/stm32wb06cc.pdf#page=60), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead ST-Package-A0BE VFQFPN-48 +0 +58 +49 +Package_DFN_QFN +QFN-48-1EP_6x6mm_P0.4mm_EP4.4x4.4mm_ThermalVias +QFN, 48 Pin (https://www.st.com/resource/en/datasheet/stm32wb06cc.pdf#page=60), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead ST-Package-A0BE VFQFPN-48 +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 +75 +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 +75 +49 +Package_DFN_QFN +QFN-48-1EP_7x7mm_P0.5mm_EP3.5x3.5mm +QFN, 48 Pin (http://ww1.microchip.com/downloads/en/devicedoc/00002117f.pdf#page=69), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +58 +49 +Package_DFN_QFN +QFN-48-1EP_7x7mm_P0.5mm_EP3.5x3.5mm_ThermalVias +QFN, 48 Pin (http://ww1.microchip.com/downloads/en/devicedoc/00002117f.pdf#page=69), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +75 +49 +Package_DFN_QFN +QFN-48-1EP_7x7mm_P0.5mm_EP5.1x5.1mm +QFN, 48 Pin (http://ww1.microchip.com/downloads/en/devicedoc/00002117f.pdf#page=70), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +65 +49 +Package_DFN_QFN +QFN-48-1EP_7x7mm_P0.5mm_EP5.1x5.1mm_ThermalVias +QFN, 48 Pin (http://ww1.microchip.com/downloads/en/devicedoc/00002117f.pdf#page=70), 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 ST_UFQFPN48 Analog_CP-48-13 JEDEC_MO-220-WKKD-4 +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 ST_UFQFPN48 Analog_CP-48-13 JEDEC_MO-220-WKKD-4 +0 +91 +49 +Package_DFN_QFN +QFN-48-1EP_7x7mm_P0.5mm_EP5.7x5.7mm +QFN, 48 Pin (https://www.renesas.com/us/en/document/dst/upd720201upd720202-datasheet), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +65 +49 +Package_DFN_QFN +QFN-48-1EP_7x7mm_P0.5mm_EP5.7x5.7mm_ThermalVias +QFN, 48 Pin (https://www.renesas.com/us/en/document/dst/upd720201upd720202-datasheet), 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=607), 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=607), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +66 +57 +Package_DFN_QFN +QFN-56-1EP_7x7mm_P0.4mm_EP4x4mm +QFN, 56 Pin (https://www.espressif.com/sites/default/files/documentation/esp32-s2_datasheet_en.pdf#page=41), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +66 +57 +Package_DFN_QFN +QFN-56-1EP_7x7mm_P0.4mm_EP4x4mm_ThermalVias +QFN, 56 Pin (https://www.espressif.com/sites/default/files/documentation/esp32-s2_datasheet_en.pdf#page=41), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +76 +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-56-1EP_8x8mm_P0.5mm_EP6.1x6.1mm +QFN, 56 Pin (http://intantech.com/files/Intan_RHD2000_series_datasheet.pdf#page=38), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +73 +57 +Package_DFN_QFN +QFN-56-1EP_8x8mm_P0.5mm_EP6.1x6.1mm_ThermalVias +QFN, 56 Pin (http://intantech.com/files/Intan_RHD2000_series_datasheet.pdf#page=38), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +99 +57 +Package_DFN_QFN +QFN-60-1EP_7x7mm_P0.4mm_EP3.4x3.4mm +QFN, 60 Pin (https://datasheets.raspberrypi.com/rp2350/rp2350-datasheet.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +70 +61 +Package_DFN_QFN +QFN-60-1EP_7x7mm_P0.4mm_EP3.4x3.4mm_ThermalVias +QFN, 60 Pin (https://datasheets.raspberrypi.com/rp2350/rp2350-datasheet.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +75 +61 +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 +84 +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 +84 +65 +Package_DFN_QFN +QFN-64-1EP_9x9mm_P0.5mm_EP4.1x4.1mm +QFN, 64 Pin (https://www.silabs.com/documents/public/data-sheets/cp2108-datasheet.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +74 +65 +Package_DFN_QFN +QFN-64-1EP_9x9mm_P0.5mm_EP4.1x4.1mm_ThermalVias +QFN, 64 Pin (https://www.silabs.com/documents/public/data-sheets/cp2108-datasheet.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +84 +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.7x5.7mm +QFN, 64 Pin (https://static.klayers.net/kl_pdf/MS2130-MacroSilicon_KL-014-0010911.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +74 +65 +Package_DFN_QFN +QFN-64-1EP_9x9mm_P0.5mm_EP5.7x5.7mm_ThermalVias +QFN, 64 Pin (https://static.klayers.net/kl_pdf/MS2130-MacroSilicon_KL-014-0010911.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +84 +65 +Package_DFN_QFN +QFN-64-1EP_9x9mm_P0.5mm_EP5.45x5.45mm +QFN, 64 Pin (https://www.infineon.com/dgdl/Infineon-MA12040-DS-v01_00-EN.pdf?fileId=5546d46264a8de7e0164b7467a3d617c#page=81), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +81 +65 +Package_DFN_QFN +QFN-64-1EP_9x9mm_P0.5mm_EP5.45x5.45mm_ThermalVias +QFN, 64 Pin (https://www.infineon.com/dgdl/Infineon-MA12040-DS-v01_00-EN.pdf?fileId=5546d46264a8de7e0164b7467a3d617c#page=81), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +107 +65 +Package_DFN_QFN +QFN-64-1EP_9x9mm_P0.5mm_EP6x6mm +QFN, 64 Pin (http://www.ti.com/lit/ds/symlink/tusb8041.pdf#page=42), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +81 +65 +Package_DFN_QFN +QFN-64-1EP_9x9mm_P0.5mm_EP6x6mm_ThermalVias +QFN, 64 Pin (http://www.ti.com/lit/ds/symlink/tusb8041.pdf#page=42), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +107 +65 +Package_DFN_QFN +QFN-64-1EP_9x9mm_P0.5mm_EP7.3x7.3mm +QFN, 64 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/00002304A.pdf (page 43)), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +90 +65 +Package_DFN_QFN +QFN-64-1EP_9x9mm_P0.5mm_EP7.3x7.3mm_ThermalVias +QFN, 64 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/00002304A.pdf (page 43)), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +127 +65 +Package_DFN_QFN +QFN-64-1EP_9x9mm_P0.5mm_EP7.5x7.5mm +QFN, 64 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/doc7593.pdf (page 432)), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +101 +65 +Package_DFN_QFN +QFN-64-1EP_9x9mm_P0.5mm_EP7.5x7.5mm_ThermalVias +QFN, 64 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/doc7593.pdf (page 432)), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +151 +65 +Package_DFN_QFN +QFN-64-1EP_9x9mm_P0.5mm_EP7.15x7.15mm +QFN, 64 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/229321fa.pdf#page=27), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +90 +65 +Package_DFN_QFN +QFN-64-1EP_9x9mm_P0.5mm_EP7.15x7.15mm_ThermalVias +QFN, 64 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/229321fa.pdf#page=27), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +127 +65 +Package_DFN_QFN +QFN-64-1EP_9x9mm_P0.5mm_EP7.25x7.25mm +64-Lead Plastic Quad Flat No-Lead Package, 9x9mm Body (see Atmel Appnote 8826) +QFN 0.5 +0 +90 +65 +Package_DFN_QFN +QFN-64-1EP_9x9mm_P0.5mm_EP7.35x7.35mm +64-Lead Plastic Quad Flat, No Lead Package (MR) - 9x9x0.9 mm Body [QFN]; (see Microchip Packaging Specification 00000049BS.pdf) +QFN 0.5 +0 +90 +65 +Package_DFN_QFN +QFN-64-1EP_9x9mm_P0.5mm_EP7.65x7.65mm +QFN, 64 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/Atmel-2549-8-bit-AVR-Microcontroller-ATmega640-1280-1281-2560-2561_datasheet.pdf (page 415)), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +101 +65 +Package_DFN_QFN +QFN-64-1EP_9x9mm_P0.5mm_EP7.65x7.65mm_ThermalVias +QFN, 64 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/Atmel-2549-8-bit-AVR-Microcontroller-ATmega640-1280-1281-2560-2561_datasheet.pdf (page 415)), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +151 +65 +Package_DFN_QFN +QFN-68-1EP_8x8mm_P0.4mm_EP5.2x5.2mm +QFN, 68 Pin (https://cdn.microsemi.com/documents/1bf6886f-5919-4508-a50b-b1dbf3fdf0f4/download/#page=98), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +85 +69 +Package_DFN_QFN +QFN-68-1EP_8x8mm_P0.4mm_EP5.2x5.2mm_ThermalVias +QFN, 68 Pin (https://cdn.microsemi.com/documents/1bf6886f-5919-4508-a50b-b1dbf3fdf0f4/download/#page=98), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +111 +69 +Package_DFN_QFN +QFN-68-1EP_8x8mm_P0.4mm_EP6.4x6.4mm +QFN, 68 Pin (https://www.st.com/resource/en/datasheet/stm32h725ze.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +85 +69 +Package_DFN_QFN +QFN-68-1EP_8x8mm_P0.4mm_EP6.4x6.4mm_ThermalVias +QFN, 68 Pin (https://www.st.com/resource/en/datasheet/stm32h725ze.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +111 +69 +Package_DFN_QFN +QFN-72-1EP_10x10mm_P0.5mm_EP6x6mm +QFN, 72 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/00001682C.pdf#page=70), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +82 +73 +Package_DFN_QFN +QFN-72-1EP_10x10mm_P0.5mm_EP6x6mm_ThermalVias +QFN, 72 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/00001682C.pdf#page=70), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +135 +73 +Package_DFN_QFN +QFN-76-1EP_9x9mm_P0.4mm_EP3.8x3.8mm +QFN, 76 Pin (https://www.marvell.com/documents/bqcwxsoiqfjkcjdjhkvc/#page=19), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +86 +77 +Package_DFN_QFN +QFN-76-1EP_9x9mm_P0.4mm_EP3.8x3.8mm_ThermalVias +QFN, 76 Pin (https://www.marvell.com/documents/bqcwxsoiqfjkcjdjhkvc/#page=19), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +96 +77 +Package_DFN_QFN +QFN-76-1EP_9x9mm_P0.4mm_EP5.81x6.31mm +QFN, 76 Pin (https://ftdichip.com/wp-content/uploads/2020/07/DS_FT600Q-FT601Q-IC-Datasheet.pdf#page=27), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +86 +77 +Package_DFN_QFN +QFN-76-1EP_9x9mm_P0.4mm_EP5.81x6.31mm_ThermalVias +QFN, 76 Pin (https://ftdichip.com/wp-content/uploads/2020/07/DS_FT600Q-FT601Q-IC-Datasheet.pdf#page=27), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +96 +77 +Package_DFN_QFN +QFN-80-1EP_10x10mm_P0.4mm_EP3.4x3.4mm +QFN, 80 Pin (https://datasheets.raspberrypi.com/rp2350/rp2350-datasheet.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +90 +81 +Package_DFN_QFN +QFN-80-1EP_10x10mm_P0.4mm_EP3.4x3.4mm_ThermalVias +QFN, 80 Pin (https://datasheets.raspberrypi.com/rp2350/rp2350-datasheet.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +116 +81 +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 +Qorvo_TQFN66-48-1EP_6x6mm_P0.4mm_EP4.2x4.2mm +Qorvo TQFN66, 48 Pin (https://www.qorvo.com/products/d/da006805), generated with kicad-footprint-generator ipc_noLead_generator.py +Qorvo TQFN66 NoLead +0 +58 +49 +Package_DFN_QFN +Qorvo_TQFN66-48-1EP_6x6mm_P0.4mm_EP4.2x4.2mm_ThermalVias +Qorvo TQFN66, 48 Pin (https://www.qorvo.com/products/d/da006805), generated with kicad-footprint-generator ipc_noLead_generator.py +Qorvo TQFN66 NoLead +0 +75 +49 +Package_DFN_QFN +ROHM_DFN0604-3 +DFN package size 0604 3 pins +DFN package size 0604 3 pins +0 +3 +3 +Package_DFN_QFN +Renesas_UQFN-16_2x2mm_P0.4mm +Renesas UQFN, 16 Pin (Renesas STQFN-16L, https://www.renesas.com/en/document/dst/slg47011-datasheet#page=228), generated with kicad-footprint-generator ipc_noLead_generator.py +Renesas UQFN NoLead +0 +16 +16 +Package_DFN_QFN +Renesas_UQFN-20_2x3mm_P0.4mm_LayoutBorder4x6y +Renesas UQFN, 20 Pin (Renesas STQFN-20L, https://www.renesas.com/en/document/dst/slg465808283-datasheet#page=200), generated with kicad-footprint-generator ipc_noLead_generator.py +Renesas UQFN NoLead +0 +20 +20 +Package_DFN_QFN +ST_UFDFPN-12-1EP_3x3mm_P0.5mm_EP1.4x2.55mm +ST UFDFPN, 12 Pin (https://www.st.com/resource/en/datasheet/st25dv04k.pdf#page=152), generated with kicad-footprint-generator ipc_noLead_generator.py +ST UFDFPN NoLead +0 +14 +13 +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_P0.5mm +ST UQFN, 6 Pin (https://www.st.com/resource/en/datasheet/ecmf02-2amx6.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +ST UQFN NoLead +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_1.2x1.2mm_P0.4mm_EP0.3x0.94mm +TDFN, 6 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/MIC5528.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +TDFN NoLead +0 +8 +7 +Package_DFN_QFN +TDFN-6-1EP_2.5x2.5mm_P0.65mm_EP1.3x2mm +TDFN, 6 Pin (http://www.nve.com/Downloads/ab3.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +TDFN NoLead +0 +11 +7 +Package_DFN_QFN +TDFN-6-1EP_2.5x2.5mm_P0.65mm_EP1.3x2mm_ThermalVias +TDFN, 6 Pin (http://www.nve.com/Downloads/ab3.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +TDFN NoLead +0 +18 +7 +Package_DFN_QFN +TDFN-8-1EP_2x2mm_P0.5mm_EP0.8x1.2mm +TDFN, 8 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0168.PDF), generated with kicad-footprint-generator ipc_noLead_generator.py +TDFN NoLead +0 +13 +9 +Package_DFN_QFN +TDFN-8-1EP_3x2mm_P0.5mm_EP1.3x1.4mm +TDFN, 8 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/MCP6V66-Family-Data-Sheet-DS20006266A.pdf#page=35), generated with kicad-footprint-generator ipc_noLead_generator.py +TDFN NoLead +0 +13 +9 +Package_DFN_QFN +TDFN-8-1EP_3x2mm_P0.5mm_EP1.4x1.4mm +TDFN, 8 Pin (http://ww1.microchip.com/downloads/en/devicedoc/20005514a.pdf#page=35), generated with kicad-footprint-generator ipc_noLead_generator.py +TDFN NoLead +0 +13 +9 +Package_DFN_QFN +TDFN-8-1EP_3x2mm_P0.5mm_EP1.80x1.65mm +8-lead plastic dual flat, 2x3x0.75mm size, 0.5mm pitch (http://ww1.microchip.com/downloads/en/DeviceDoc/8L_TDFN_2x3_MN_C04-0129E-MN.pdf) +TDFN DFN 0.5mm +0 +12 +9 +Package_DFN_QFN +TDFN-8-1EP_3x2mm_P0.5mm_EP1.80x1.65mm_ThermalVias +8-lead plastic dual flat, 2x3x0.75mm size, 0.5mm pitch (http://ww1.microchip.com/downloads/en/DeviceDoc/8L_TDFN_2x3_MN_C04-0129E-MN.pdf) +TDFN DFN 0.5mm +0 +17 +9 +Package_DFN_QFN +TDFN-8_1.4x1.6mm_P0.4mm +TDFN, 8 Pin (https://www.silabs.com/documents/public/data-sheets/si7210-datasheet.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +TDFN NoLead +0 +8 +8 +Package_DFN_QFN +TDFN-10-1EP_2x3mm_P0.5mm_EP0.9x2mm +TDFN, 10 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0429.PDF), generated with kicad-footprint-generator ipc_noLead_generator.py +TDFN NoLead +0 +13 +11 +Package_DFN_QFN +TDFN-10-1EP_2x3mm_P0.5mm_EP0.9x2mm_ThermalVias +TDFN, 10 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0429.PDF), generated with kicad-footprint-generator ipc_noLead_generator.py +TDFN NoLead +0 +16 +11 +Package_DFN_QFN +TDFN-12-1EP_3x3mm_P0.4mm_EP1.7x2.45mm +TDFN, 12 Pin (https://www.renesas.com/us/en/document/psc/package-drawing-tdfn-12pin-l123x3c), generated with kicad-footprint-generator ipc_noLead_generator.py +TDFN NoLead +0 +25 +13 +Package_DFN_QFN +TDFN-12-1EP_3x3mm_P0.4mm_EP1.7x2.45mm_ThermalVias +TDFN, 12 Pin (https://www.renesas.com/us/en/document/psc/package-drawing-tdfn-12pin-l123x3c), generated with kicad-footprint-generator ipc_noLead_generator.py +TDFN NoLead +0 +32 +13 +Package_DFN_QFN +TDFN-12_2x3mm_P0.5mm +TDFN, 12 Pads, No exposed, http://www.st.com/resource/en/datasheet/stm6600.pdf +DFN +0 +12 +12 +Package_DFN_QFN +TDFN-14-1EP_3x3mm_P0.4mm_EP1.78x2.35mm +TDFN, 14 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0137.PDF (T1433-2C)), generated with kicad-footprint-generator ipc_noLead_generator.py +TDFN NoLead +0 +19 +15 +Package_DFN_QFN +TDFN-14-1EP_3x3mm_P0.4mm_EP1.78x2.35mm_ThermalVias +TDFN, 14 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0137.PDF (T1433-2C)), generated with kicad-footprint-generator ipc_noLead_generator.py +TDFN NoLead +0 +26 +15 +Package_DFN_QFN +TQFN-16-1EP_3x3mm_P0.5mm_EP1.6x1.6mm +TQFN, 16 Pin (https://www.diodes.com/assets/Datasheets/PI6C5946002.pdf#page=12), generated with kicad-footprint-generator ipc_noLead_generator.py +TQFN NoLead Pericom-TQFN-16-ZH Analog-CP-16-22 +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_4x4mm_P0.65mm_EP2.1x2.1mm +TQFN, 16 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/tqfn/21-0139.pdf (T1644+4)), generated with kicad-footprint-generator ipc_noLead_generator.py +TQFN NoLead +0 +21 +17 +Package_DFN_QFN +TQFN-16-1EP_4x4mm_P0.65mm_EP2.1x2.1mm_ThermalVias +TQFN, 16 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/tqfn/21-0139.pdf (T1644+4)), generated with kicad-footprint-generator ipc_noLead_generator.py +TQFN NoLead +0 +26 +17 +Package_DFN_QFN +TQFN-16-1EP_5x5mm_P0.8mm_EP2.29x2.29mm +TQFN, 16 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0140.PDF (T1655-4)), generated with kicad-footprint-generator ipc_noLead_generator.py +TQFN NoLead +0 +21 +17 +Package_DFN_QFN +TQFN-16-1EP_5x5mm_P0.8mm_EP2.29x2.29mm_ThermalVias +TQFN, 16 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0140.PDF (T1655-4)), generated with kicad-footprint-generator ipc_noLead_generator.py +TQFN NoLead +0 +26 +17 +Package_DFN_QFN +TQFN-16-1EP_5x5mm_P0.8mm_EP3.1x3.1mm +TQFN, 16 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0140.PDF (T1655-2)), generated with kicad-footprint-generator ipc_noLead_generator.py +TQFN NoLead +0 +21 +17 +Package_DFN_QFN +TQFN-16-1EP_5x5mm_P0.8mm_EP3.1x3.1mm_ThermalVias +TQFN, 16 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0140.PDF (T1655-2)), generated with kicad-footprint-generator ipc_noLead_generator.py +TQFN NoLead +0 +31 +17 +Package_DFN_QFN +TQFN-20-1EP_4x4mm_P0.5mm_EP2.1x2.1mm +TQFN, 20 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0139.PDF (T2044-2)), generated with kicad-footprint-generator ipc_noLead_generator.py +TQFN NoLead +0 +25 +21 +Package_DFN_QFN +TQFN-20-1EP_4x4mm_P0.5mm_EP2.1x2.1mm_ThermalVias +TQFN, 20 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0139.PDF (T2044-2)), generated with kicad-footprint-generator ipc_noLead_generator.py +TQFN NoLead +0 +30 +21 +Package_DFN_QFN +TQFN-20-1EP_4x4mm_P0.5mm_EP2.7x2.7mm +TQFN, 20 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0139.PDF (T2044-5C)), generated with kicad-footprint-generator ipc_noLead_generator.py +TQFN NoLead +0 +25 +21 +Package_DFN_QFN +TQFN-20-1EP_4x4mm_P0.5mm_EP2.7x2.7mm_ThermalVias +TQFN, 20 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0139.PDF (T2044-5C)), generated with kicad-footprint-generator ipc_noLead_generator.py +TQFN NoLead +0 +35 +21 +Package_DFN_QFN +TQFN-20-1EP_4x4mm_P0.5mm_EP2.9x2.9mm +TQFN, 20 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-100172.PDF), generated with kicad-footprint-generator ipc_noLead_generator.py +TQFN NoLead +0 +25 +21 +Package_DFN_QFN +TQFN-20-1EP_4x4mm_P0.5mm_EP2.9x2.9mm_ThermalVias +TQFN, 20 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-100172.PDF), generated with kicad-footprint-generator ipc_noLead_generator.py +TQFN NoLead +0 +35 +21 +Package_DFN_QFN +TQFN-20-1EP_5x5mm_P0.65mm_EP3.1x3.1mm +TQFN, 20 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0140.PDF (T2055-3)), generated with kicad-footprint-generator ipc_noLead_generator.py +TQFN NoLead +0 +25 +21 +Package_DFN_QFN +TQFN-20-1EP_5x5mm_P0.65mm_EP3.1x3.1mm_ThermalVias +TQFN, 20 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0140.PDF (T2055-3)), generated with kicad-footprint-generator ipc_noLead_generator.py +TQFN NoLead +0 +35 +21 +Package_DFN_QFN +TQFN-20-1EP_5x5mm_P0.65mm_EP3.25x3.25mm +TQFN, 20 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0140.PDF (T2055-5)), generated with kicad-footprint-generator ipc_noLead_generator.py +TQFN NoLead +0 +25 +21 +Package_DFN_QFN +TQFN-20-1EP_5x5mm_P0.65mm_EP3.25x3.25mm_ThermalVias +TQFN, 20 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0140.PDF (T2055-5)), generated with kicad-footprint-generator ipc_noLead_generator.py +TQFN NoLead +0 +35 +21 +Package_DFN_QFN +TQFN-24-1EP_4x4mm_P0.5mm_EP2.1x2.1mm +TQFN, 24 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0139.PDF), generated with kicad-footprint-generator ipc_noLead_generator.py +TQFN NoLead +0 +29 +25 +Package_DFN_QFN +TQFN-24-1EP_4x4mm_P0.5mm_EP2.1x2.1mm_ThermalVias +TQFN, 24 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0139.PDF), generated with kicad-footprint-generator ipc_noLead_generator.py +TQFN NoLead +0 +39 +25 +Package_DFN_QFN +TQFN-24-1EP_4x4mm_P0.5mm_EP2.6x2.6mm +TQFN, 24 Pin (http://pdfserv.maxim-ic.com/package_dwgs/21-0139.PDF), generated with kicad-footprint-generator ipc_noLead_generator.py +TQFN NoLead +0 +29 +25 +Package_DFN_QFN +TQFN-24-1EP_4x4mm_P0.5mm_EP2.6x2.6mm_ThermalVias +TQFN, 24 Pin (http://pdfserv.maxim-ic.com/package_dwgs/21-0139.PDF), generated with kicad-footprint-generator ipc_noLead_generator.py +TQFN NoLead +0 +39 +25 +Package_DFN_QFN +TQFN-24-1EP_4x4mm_P0.5mm_EP2.8x2.8mm_PullBack +TQFN, 24 Pin (https://ams.com/documents/20143/36005/AS1115_DS000206_1-00.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +TQFN NoLead +0 +29 +25 +Package_DFN_QFN +TQFN-24-1EP_4x4mm_P0.5mm_EP2.8x2.8mm_PullBack_ThermalVias +TQFN, 24 Pin (https://ams.com/documents/20143/36005/AS1115_DS000206_1-00.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +TQFN NoLead +0 +39 +25 +Package_DFN_QFN +TQFN-28-1EP_5x5mm_P0.5mm_EP2.7x2.7mm +TQFN, 28 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0140.PDF (T2855-4)), generated with kicad-footprint-generator ipc_noLead_generator.py +TQFN NoLead +0 +33 +29 +Package_DFN_QFN +TQFN-28-1EP_5x5mm_P0.5mm_EP2.7x2.7mm_ThermalVias +TQFN, 28 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0140.PDF (T2855-4)), generated with kicad-footprint-generator ipc_noLead_generator.py +TQFN NoLead +0 +38 +29 +Package_DFN_QFN +TQFN-28-1EP_5x5mm_P0.5mm_EP3.25x3.25mm +TQFN, 28 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0140.PDF (T2855-3)), generated with kicad-footprint-generator ipc_noLead_generator.py +TQFN NoLead +0 +33 +29 +Package_DFN_QFN +TQFN-28-1EP_5x5mm_P0.5mm_EP3.25x3.25mm_ThermalVias +TQFN, 28 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0140.PDF (T2855-3)), generated with kicad-footprint-generator ipc_noLead_generator.py +TQFN NoLead +0 +43 +29 +Package_DFN_QFN +TQFN-32-1EP_5x5mm_P0.5mm_EP2.1x2.1mm +TQFN, 32 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0140.PDF (T3255-6)), generated with kicad-footprint-generator ipc_noLead_generator.py +TQFN NoLead +0 +37 +33 +Package_DFN_QFN +TQFN-32-1EP_5x5mm_P0.5mm_EP2.1x2.1mm_ThermalVias +TQFN, 32 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0140.PDF (T3255-6)), generated with kicad-footprint-generator ipc_noLead_generator.py +TQFN NoLead +0 +42 +33 +Package_DFN_QFN +TQFN-32-1EP_5x5mm_P0.5mm_EP3.1x3.1mm +TQFN, 32 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0140.PDF (T3255-3)), generated with kicad-footprint-generator ipc_noLead_generator.py +TQFN NoLead +0 +37 +33 +Package_DFN_QFN +TQFN-32-1EP_5x5mm_P0.5mm_EP3.1x3.1mm_ThermalVias +TQFN, 32 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0140.PDF (T3255-3)), generated with kicad-footprint-generator ipc_noLead_generator.py +TQFN NoLead +0 +47 +33 +Package_DFN_QFN +TQFN-32-1EP_5x5mm_P0.5mm_EP3.4x3.4mm +TQFN, 32 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0140.PDF (T3255-9)), generated with kicad-footprint-generator ipc_noLead_generator.py +TQFN NoLead +0 +37 +33 +Package_DFN_QFN +TQFN-32-1EP_5x5mm_P0.5mm_EP3.4x3.4mm_ThermalVias +TQFN, 32 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0140.PDF (T3255-9)), generated with kicad-footprint-generator ipc_noLead_generator.py +TQFN NoLead +0 +47 +33 +Package_DFN_QFN +TQFN-40-1EP_5x5mm_P0.4mm_EP3.5x3.5mm +TQFN, 40 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0140.PDF (T4055-1)), generated with kicad-footprint-generator ipc_noLead_generator.py +TQFN NoLead +0 +45 +41 +Package_DFN_QFN +TQFN-40-1EP_5x5mm_P0.4mm_EP3.5x3.5mm_ThermalVias +TQFN, 40 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0140.PDF (T4055-1)), generated with kicad-footprint-generator ipc_noLead_generator.py +TQFN NoLead +0 +55 +41 +Package_DFN_QFN +TQFN-44-1EP_7x7mm_P0.5mm_EP4.7x4.7mm +TQFN, 44 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/tqfn/21-0144.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +TQFN NoLead T4477+2 T4477+2C T4477+3 +0 +54 +45 +Package_DFN_QFN +TQFN-44-1EP_7x7mm_P0.5mm_EP4.7x4.7mm_ThermalVias +TQFN, 44 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/tqfn/21-0144.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +TQFN NoLead T4477+2 T4477+2C T4477+3 +0 +71 +45 +Package_DFN_QFN +TQFN-48-1EP_7x7mm_P0.5mm_EP5.1x5.1mm +TQFN, 48 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/tqfn/21-0144.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +TQFN NoLead T4877+3 T4877+3C +0 +58 +49 +Package_DFN_QFN +TQFN-48-1EP_7x7mm_P0.5mm_EP5.1x5.1mm_ThermalVias +TQFN, 48 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/tqfn/21-0144.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +TQFN NoLead T4877+3 T4877+3C +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_DLH0010A_WSON-10-1EP_2.2x2mm_P0.4mm_EP0.9x1.5mm +Texas DLH0010A WSON, 10 Pin (https://www.ti.com/lit/gpn/BQ25185), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas WSON NoLead +0 +12 +11 +Package_DFN_QFN +Texas_DLH0010A_WSON-10-1EP_2.2x2mm_P0.4mm_EP0.9x1.5mm_ThermalVias +Texas DLH0010A WSON, 10 Pin (https://www.ti.com/lit/gpn/BQ25185), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas WSON NoLead +0 +15 +11 +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_DSQ0010A_WSON-10-1EP_2x2mm_P0.4mm_EP0.9x1.5mm +Texas DSQ0010A WSON, 10 Pin (https://www.ti.com/lit/pdf/mpds335b), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas WSON NoLead +0 +12 +11 +Package_DFN_QFN +Texas_DSQ0010A_WSON-10-1EP_2x2mm_P0.4mm_EP0.9x1.5mm_ThermalVias +Texas DSQ0010A WSON, 10 Pin (https://www.ti.com/lit/pdf/mpds335b), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas WSON NoLead +0 +15 +11 +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_PicoStar_DFN-3_0.69x0.60mm +Texas Picostar DFN-3, 0.73x0.64mm max, 0.69x0.60mm nom, https://www.ti.com/lit/ds/symlink/csd13380f3.pdf +TI YJM0003A +0 +5 +3 +Package_DFN_QFN +Texas_QFN-41_10x16mm +QFN, 41 Pin (http://www.ti.com/lit/ml/mpqf506/mpqf506.pdf) +QFN DFN_QFN +0 +65 +41 +Package_DFN_QFN +Texas_R-PUQFN-N10 +http://www.ti.com/general/docs/lit/getliterature.tsp?baseLiteratureNumber=MPQF186&fileType=pdf +Texas_R-PUQFN-N10 +0 +10 +10 +Package_DFN_QFN +Texas_R-PUQFN-N12 +Texas_R-PUQFN-N12 http://www.ti.com/lit/ds/symlink/txb0104.pdf +Texas_R-PUQFN-N12 +0 +13 +12 +Package_DFN_QFN +Texas_RDX0007A_QFN-FCMOD-7-3.3x4mm-P0.5mm_4EP +surface-mount, Texas Instruments, power, DC/DC, https://www.ti.com/lit/ml/mpqf721/mpqf721.pdf +RDX0007A QFN FCMOD DC/DC +0 +7 +7 +Package_DFN_QFN +Texas_REF0038A_WQFN-38-2EP_6x4mm_P0.4 +Texas REF0038A WQFN, 38 Pin, 2EP (https://www.ti.com/lit/ds/symlink/tps25730.pdf#page=68) +Texas Instruments WQFN NoLead +0 +50 +34 +Package_DFN_QFN +Texas_RGC0064B_VQFN-64-1EP_9x9mm_P0.5mm_EP4.25x4.25mm +Texas RGC0064B VQFN, 64 Pin (http://www.ti.com/lit/ds/symlink/msp430f5217.pdf#page=122), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas VQFN NoLead +0 +69 +65 +Package_DFN_QFN +Texas_RGC0064B_VQFN-64-1EP_9x9mm_P0.5mm_EP4.25x4.25mm_ThermalVias +Texas RGC0064B VQFN, 64 Pin (http://www.ti.com/lit/ds/symlink/msp430f5217.pdf#page=122), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas VQFN NoLead +0 +95 +65 +Package_DFN_QFN +Texas_RGE0024C_VQFN-24-1EP_4x4mm_P0.5mm_EP2.1x2.1mm +Texas RGE0024C VQFN, 24 Pin (http://www.ti.com/lit/ds/symlink/pca9548a.pdf#page=37), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas VQFN NoLead +0 +29 +25 +Package_DFN_QFN +Texas_RGE0024C_VQFN-24-1EP_4x4mm_P0.5mm_EP2.1x2.1mm_ThermalVias +Texas RGE0024C VQFN, 24 Pin (http://www.ti.com/lit/ds/symlink/pca9548a.pdf#page=37), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas VQFN NoLead +0 +39 +25 +Package_DFN_QFN +Texas_RGE0024H_VQFN-24-1EP_4x4mm_P0.5mm_EP2.7x2.7mm +Texas RGE0024H VQFN, 24 Pin (http://www.ti.com/lit/ds/symlink/tlc5971.pdf#page=40), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas VQFN NoLead +0 +29 +25 +Package_DFN_QFN +Texas_RGE0024H_VQFN-24-1EP_4x4mm_P0.5mm_EP2.7x2.7mm_ThermalVias +Texas RGE0024H VQFN, 24 Pin (http://www.ti.com/lit/ds/symlink/tlc5971.pdf#page=40), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas VQFN NoLead +0 +39 +25 +Package_DFN_QFN +Texas_RGP0020D_VQFN-20-1EP_4x4mm_P0.5mm_EP2.7x2.7mm +Texas RGP0020D VQFN, 20 Pin (http://www.ti.com/lit/ds/symlink/drv8662.pdf#page=25), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas VQFN NoLead +0 +25 +21 +Package_DFN_QFN +Texas_RGP0020D_VQFN-20-1EP_4x4mm_P0.5mm_EP2.7x2.7mm_ThermalVias +Texas RGP0020D VQFN, 20 Pin (http://www.ti.com/lit/ds/symlink/drv8662.pdf#page=25), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas VQFN NoLead +0 +35 +21 +Package_DFN_QFN +Texas_RGP0020H_VQFN-20-1EP_4x4mm_P0.5mm_EP2.4x2.4mm +Texas RGP0020H VQFN, 20 Pin (http://www.ti.com/lit/ds/symlink/cc1101.pdf#page=101), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas VQFN NoLead +0 +25 +21 +Package_DFN_QFN +Texas_RGP0020H_VQFN-20-1EP_4x4mm_P0.5mm_EP2.4x2.4mm_ThermalVias +Texas RGP0020H VQFN, 20 Pin (http://www.ti.com/lit/ds/symlink/cc1101.pdf#page=101), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas VQFN NoLead +0 +35 +21 +Package_DFN_QFN +Texas_RGV0016A_VQFN-16-1EP_4x4mm_P0.65mm_EP2.1x2.1mm +Texas RGV0016A VQFN, 16 Pin (http://www.ti.com/lit/ds/symlink/ina3221.pdf#page=44), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas VQFN NoLead +0 +21 +17 +Package_DFN_QFN +Texas_RGV0016A_VQFN-16-1EP_4x4mm_P0.65mm_EP2.1x2.1mm_ThermalVias +Texas RGV0016A VQFN, 16 Pin (http://www.ti.com/lit/ds/symlink/ina3221.pdf#page=44), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas VQFN NoLead +0 +31 +17 +Package_DFN_QFN +Texas_RGW0020A_VQFN-20-1EP_5x5mm_P0.65mm_EP3.15x3.15mm +Texas RGW0020A VQFN, 20 Pin (https://www.ti.com/lit/ds/symlink/tps7a47.pdf#page=29), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas VQFN NoLead +0 +25 +21 +Package_DFN_QFN +Texas_RGW0020A_VQFN-20-1EP_5x5mm_P0.65mm_EP3.15x3.15mm_ThermalVias +Texas RGW0020A VQFN, 20 Pin (https://www.ti.com/lit/ds/symlink/tps7a47.pdf#page=29), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas VQFN NoLead +0 +35 +21 +Package_DFN_QFN +Texas_RGY_R-PVQFN-N16_EP2.05x2.55mm +QFN, 16 Pin (https://www.ti.com/lit/ds/symlink/ts5v330.pdf#page=28) +QFN NoLead +0 +21 +17 +Package_DFN_QFN +Texas_RGY_R-PVQFN-N16_EP2.05x2.55mm_ThermalVias +QFN, 16 Pin (https://www.ti.com/lit/ds/symlink/ts5v330.pdf#page=28) +QFN NoLead +0 +27 +18 +Package_DFN_QFN +Texas_RGY_R-PVQFN-N20_EP2.05x3.05mm +QFN, 20 Pin, RGY0020A (https://www.ti.com/lit/ds/symlink/txb0108.pdf#page=33) +QFN NoLead +0 +25 +21 +Package_DFN_QFN +Texas_RGY_R-PVQFN-N20_EP2.05x3.05mm_ThermalVias +QFN, 20 Pin, RGY0020A (https://www.ti.com/lit/ds/symlink/txb0108.pdf#page=33) +QFN NoLead +0 +29 +21 +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_RGZ0048A_VQFN-48-1EP_7x7mm_P0.5mm_EP5.15x5.15mm +Texas RGZ0048A VQFN, 48 Pin (http://www.ti.com/lit/ds/symlink/msp430f5232.pdf#page=113), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas VQFN NoLead +0 +65 +49 +Package_DFN_QFN +Texas_RGZ0048A_VQFN-48-1EP_7x7mm_P0.5mm_EP5.15x5.15mm_ThermalVias +Texas RGZ0048A VQFN, 48 Pin (http://www.ti.com/lit/ds/symlink/msp430f5232.pdf#page=113), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas VQFN NoLead +0 +91 +49 +Package_DFN_QFN +Texas_RHA0040B_VQFN-40-1EP_6x6mm_P0.5mm_EP4.15x4.15mm +Texas RHA0040B VQFN, 40 Pin (http://www.ti.com/lit/ds/symlink/msp430g2755.pdf#page=72 JEDEC MO-220 variation VJJD-2), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas VQFN NoLead +0 +50 +41 +Package_DFN_QFN +Texas_RHA0040B_VQFN-40-1EP_6x6mm_P0.5mm_EP4.15x4.15mm_ThermalVias +Texas RHA0040B VQFN, 40 Pin (http://www.ti.com/lit/ds/symlink/msp430g2755.pdf#page=72 JEDEC MO-220 variation VJJD-2), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas VQFN NoLead +0 +67 +41 +Package_DFN_QFN +Texas_RHA0040D_VQFN-40-1EP_6x6mm_P0.5mm_EP2.9x2.9mm +Texas RHA0040D VQFN, 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 +Texas VQFN NoLead +0 +45 +41 +Package_DFN_QFN +Texas_RHA0040D_VQFN-40-1EP_6x6mm_P0.5mm_EP2.9x2.9mm_ThermalVias +Texas RHA0040D VQFN, 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 +Texas VQFN NoLead +0 +55 +41 +Package_DFN_QFN +Texas_RHA0040E_VQFN-40-1EP_6x6mm_P0.5mm_EP3.52x2.62mm +Texas RHA0040E VQFN, 40 Pin (http://www.ti.com/lit/ds/symlink/drv8308.pdf#page=57 JEDEC MO-220 variation VJJD-2), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas VQFN NoLead +0 +47 +41 +Package_DFN_QFN +Texas_RHA0040E_VQFN-40-1EP_6x6mm_P0.5mm_EP3.52x2.62mm_ThermalVias +Texas RHA0040E VQFN, 40 Pin (http://www.ti.com/lit/ds/symlink/drv8308.pdf#page=57 JEDEC MO-220 variation VJJD-2), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas VQFN NoLead +0 +60 +41 +Package_DFN_QFN +Texas_RHA_VQFN-40-1EP_6x6mm_P0.5mm_EP4.6x4.6mm +Texas RHA VQFN, 40 Pin (http://www.ti.com/lit/ds/symlink/dac7750.pdf#page=49), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas VQFN NoLead +0 +50 +41 +Package_DFN_QFN +Texas_RHA_VQFN-40-1EP_6x6mm_P0.5mm_EP4.6x4.6mm_ThermalVias +Texas RHA VQFN, 40 Pin (http://www.ti.com/lit/ds/symlink/dac7750.pdf#page=49), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas VQFN NoLead +0 +67 +41 +Package_DFN_QFN +Texas_RHB0032E_VQFN-32-1EP_5x5mm_P0.5mm_EP3.45x3.45mm +Texas RHB0032E VQFN, 32 Pin (http://www.ti.com/lit/ds/symlink/msp430f1122.pdf#page=54), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas VQFN NoLead +0 +42 +33 +Package_DFN_QFN +Texas_RHB0032E_VQFN-32-1EP_5x5mm_P0.5mm_EP3.45x3.45mm_ThermalVias +Texas RHB0032E VQFN, 32 Pin (http://www.ti.com/lit/ds/symlink/msp430f1122.pdf#page=54), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas VQFN NoLead +0 +52 +33 +Package_DFN_QFN +Texas_RHB0032M_VQFN-32-1EP_5x5mm_P0.5mm_EP2.1x2.1mm +Texas RHB0032M VQFN, 32 Pin (https://www.ti.com/lit/ds/symlink/dp83td510e.pdf#page=91), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas VQFN NoLead +0 +37 +33 +Package_DFN_QFN +Texas_RHB0032M_VQFN-32-1EP_5x5mm_P0.5mm_EP2.1x2.1mm_ThermalVias +Texas RHB0032M VQFN, 32 Pin (https://www.ti.com/lit/ds/symlink/dp83td510e.pdf#page=91), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas VQFN NoLead +0 +47 +33 +Package_DFN_QFN +Texas_RHF0024A_VQFN-24-1EP_4x5mm_P0.5mm_EP2.65x3.65mm +Texas RHF0024A VQFN, 24 Pin (http://www.ti.com/lit/ds/symlink/tps2660.pdf#page=51), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas VQFN NoLead +0 +31 +25 +Package_DFN_QFN +Texas_RHF0024A_VQFN-24-1EP_4x5mm_P0.5mm_EP2.65x3.65mm_ThermalVias +Texas RHF0024A VQFN, 24 Pin (http://www.ti.com/lit/ds/symlink/tps2660.pdf#page=51), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas VQFN NoLead +0 +44 +25 +Package_DFN_QFN +Texas_RHH0036C_VQFN-36-1EP_6x6mm_P0.5mm_EP4.4x4.4mm +Texas RHH0036C VQFN, 36 Pin (http://www.ti.com/lit/ds/slvsba5d/slvsba5d.pdf#page=37), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas VQFN NoLead +0 +46 +37 +Package_DFN_QFN +Texas_RHH0036C_VQFN-36-1EP_6x6mm_P0.5mm_EP4.4x4.4mm_ThermalVias +Texas RHH0036C VQFN, 36 Pin (http://www.ti.com/lit/ds/slvsba5d/slvsba5d.pdf#page=37), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas VQFN NoLead +0 +63 +37 +Package_DFN_QFN +Texas_RJE0020A_VQFN-20-1EP_3x3mm_P0.45mm_EP0.675x0.76mm +Texas RJE0020A VQFN, 20 Pin (https://www.ti.com/lit/ds/symlink/tps51396a.pdf#page=31), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas VQFN NoLead +0 +22 +21 +Package_DFN_QFN +Texas_RJE0020A_VQFN-20-1EP_3x3mm_P0.45mm_EP0.675x0.76mm_ThermalVias +Texas RJE0020A VQFN, 20 Pin (https://www.ti.com/lit/ds/symlink/tps51396a.pdf#page=31), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas VQFN NoLead +0 +24 +21 +Package_DFN_QFN +Texas_RMG0012A_WQFN-12_1.8x1.8mm_P0.4mm +Texas RMG0012A WQFN, 12 Pin (https://www.ti.com/lit/ds/symlink/tmux131.pdf#page=18), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas WQFN NoLead +0 +12 +12 +Package_DFN_QFN +Texas_RMQ0024A_WQFN-24-1EP_3x3mm_P0.4mm_EP1.9x1.9mm +Texas RMQ0024A WQFN, 24 Pin (https://www.ti.com/jp/lit/ml/mpqf398a/mpqf398a.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas WQFN NoLead +0 +26 +25 +Package_DFN_QFN +Texas_RMQ0024A_WQFN-24-1EP_3x3mm_P0.4mm_EP1.9x1.9mm_ThermalVias +Texas RMQ0024A WQFN, 24 Pin (https://www.ti.com/jp/lit/ml/mpqf398a/mpqf398a.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas WQFN NoLead +0 +31 +25 +Package_DFN_QFN +Texas_RNH0030A_WQFN-30-1EP_2.5x4.5mm_P0.4mm_EP1.2x3.2mm +Texas RNH0030A WQFN, 30 Pin (https://www.ti.com/lit/ds/symlink/hd3ss3220.pdf#page=44), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas WQFN NoLead +0 +33 +31 +Package_DFN_QFN +Texas_RNH0030A_WQFN-30-1EP_2.5x4.5mm_P0.4mm_EP1.2x3.2mm_ThermalVias +Texas RNH0030A WQFN, 30 Pin (https://www.ti.com/lit/ds/symlink/hd3ss3220.pdf#page=44), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas WQFN NoLead +0 +40 +31 +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_RNP0030B_WQFN-30-1EP_4x6mm_P0.5mm_EP1.8x4.5mm +Texas RNP0030B WQFN, 30 Pin (https://www.ti.com/lit/ds/symlink/lm76003-q1.pdf#page=53), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas WQFN NoLead Texas_RNP0030E +0 +39 +31 +Package_DFN_QFN +Texas_RNP0030B_WQFN-30-1EP_4x6mm_P0.5mm_EP1.8x4.5mm_ThermalVias +Texas RNP0030B WQFN, 30 Pin (https://www.ti.com/lit/ds/symlink/lm76003-q1.pdf#page=53), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas WQFN NoLead Texas_RNP0030E +0 +55 +31 +Package_DFN_QFN +Texas_RNQ0040A_WQFN-40-1EP_6x4mm_P0.4mm_EP4.7x2.7mm +Texas RNQ0040A WQFN, 40 Pin (https://www.ti.com/lit/ds/symlink/tusb1046-dci.pdf#page=45), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas WQFN NoLead +0 +47 +41 +Package_DFN_QFN +Texas_RNQ0040A_WQFN-40-1EP_6x4mm_P0.4mm_EP4.7x2.7mm_ThermalVias +Texas RNQ0040A WQFN, 40 Pin (https://www.ti.com/lit/ds/symlink/tusb1046-dci.pdf#page=45), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas WQFN NoLead +0 +60 +41 +Package_DFN_QFN +Texas_RPU0010A_VQFN-HR-10_2x2mm_P0.5mm +VQFN-HR, 10 Pin (https://www.ti.com/lit/ds/symlink/tps62912.pdf#page=39) +VQFN-HR NO LEAD +0 +10 +10 +Package_DFN_QFN +Texas_RSA_VQFN-16-1EP_4x4mm_P0.65mm_EP2.7x2.7mm +Texas RSA VQFN, 16 Pin (http://www.ti.com/lit/ds/symlink/msp430g2001.pdf#page=44), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas VQFN NoLead +0 +26 +17 +Package_DFN_QFN +Texas_RSA_VQFN-16-1EP_4x4mm_P0.65mm_EP2.7x2.7mm_ThermalVias +Texas RSA VQFN, 16 Pin (http://www.ti.com/lit/ds/symlink/msp430g2001.pdf#page=44), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas VQFN NoLead +0 +36 +17 +Package_DFN_QFN +Texas_RSN_WQFN-32-1EP_4x4mm_P0.4mm_EP2.8x2.8mm +Texas RSN WQFN, 32 Pin (https://www.ti.com/lit/ds/symlink/bq25703a.pdf#page=90), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas WQFN NoLead +0 +37 +33 +Package_DFN_QFN +Texas_RSN_WQFN-32-1EP_4x4mm_P0.4mm_EP2.8x2.8mm_ThermalVias +Texas RSN WQFN, 32 Pin (https://www.ti.com/lit/ds/symlink/bq25703a.pdf#page=90), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas WQFN NoLead +0 +47 +33 +Package_DFN_QFN +Texas_RSW0010A_UQFN-10_1.4x1.8mm_P0.4mm +Texas RSW0010A UQFN, 10 Pin (https://www.ti.com/lit/ds/symlink/ts3a5223.pdf#page=19), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas UQFN NoLead +0 +10 +10 +Package_DFN_QFN +Texas_RTE0016D_WQFN-16-1EP_3x3mm_P0.5mm_EP0.8x0.8mm +Texas RTE0016D WQFN, 16 Pin (https://www.ti.com/lit/ds/symlink/dac80504.pdf#page=47), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas WQFN NoLead +0 +21 +17 +Package_DFN_QFN +Texas_RTE0016D_WQFN-16-1EP_3x3mm_P0.5mm_EP0.8x0.8mm_ThermalVias +Texas RTE0016D WQFN, 16 Pin (https://www.ti.com/lit/ds/symlink/dac80504.pdf#page=47), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas WQFN NoLead +0 +20 +17 +Package_DFN_QFN +Texas_RTE_WQFN-16-1EP_3x3mm_P0.5mm_EP1.2x0.8mm +Texas RTE WQFN, 16 Pin (https://www.ti.com/lit/ds/symlink/tps43060.pdf#page=40), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas WQFN NoLead +0 +21 +17 +Package_DFN_QFN +Texas_RTE_WQFN-16-1EP_3x3mm_P0.5mm_EP1.2x0.8mm_ThermalVias +Texas RTE WQFN, 16 Pin (https://www.ti.com/lit/ds/symlink/tps43060.pdf#page=40), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas WQFN NoLead +0 +23 +17 +Package_DFN_QFN +Texas_RTW_WQFN-24-1EP_4x4mm_P0.5mm_EP2.7x2.7mm +Texas RTW WQFN, 24 Pin (http://www.ti.com/lit/ds/symlink/bq25601.pdf#page=54), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas WQFN NoLead +0 +29 +25 +Package_DFN_QFN +Texas_RTW_WQFN-24-1EP_4x4mm_P0.5mm_EP2.7x2.7mm_ThermalVias +Texas RTW WQFN, 24 Pin (http://www.ti.com/lit/ds/symlink/bq25601.pdf#page=54), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas WQFN NoLead +0 +39 +25 +Package_DFN_QFN +Texas_RTY_WQFN-16-1EP_4x4mm_P0.65mm_EP2.1x2.1mm +Texas RTY WQFN, 16 Pin (http://www.ti.com/lit/ds/symlink/drv8801.pdf#page=36 MO-220 variation VGGC), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas WQFN NoLead +0 +21 +17 +Package_DFN_QFN +Texas_RTY_WQFN-16-1EP_4x4mm_P0.65mm_EP2.1x2.1mm_ThermalVias +Texas RTY WQFN, 16 Pin (http://www.ti.com/lit/ds/symlink/drv8801.pdf#page=36 MO-220 variation VGGC), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas WQFN NoLead +0 +31 +17 +Package_DFN_QFN +Texas_RUK0020B_WQFN-20-1EP_3x3mm_P0.4mm_EP1.7x1.7mm +Texas RUK0020B WQFN, 20 Pin (https://www.ti.com/lit/ds/symlink/mspm0c1104.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas WQFN NoLead +0 +25 +21 +Package_DFN_QFN +Texas_RUK0020B_WQFN-20-1EP_3x3mm_P0.4mm_EP1.7x1.7mm_ThermalVias +Texas RUK0020B WQFN, 20 Pin (https://www.ti.com/lit/ds/symlink/mspm0c1104.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas WQFN NoLead +0 +31 +21 +Package_DFN_QFN +Texas_RUM0016A_WQFN-16-1EP_4x4mm_P0.65mm_EP2.6x2.6mm +Texas RUM0016A WQFN, 16 Pin (http://www.ti.com/lit/ds/symlink/lmh0074.pdf#page=13), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas WQFN NoLead +0 +21 +17 +Package_DFN_QFN +Texas_RUM0016A_WQFN-16-1EP_4x4mm_P0.65mm_EP2.6x2.6mm_ThermalVias +Texas RUM0016A WQFN, 16 Pin (http://www.ti.com/lit/ds/symlink/lmh0074.pdf#page=13), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas WQFN NoLead +0 +31 +17 +Package_DFN_QFN +Texas_RUM0016E_WQFN-16-1EP_4x4mm_P0.65mm_EP2.5x2.5mm +Texas RUM0016E WQFN, 16 Pin (https://www.ti.com/lit/ml/qfnd679/qfnd679.pdf?ts=1756465079919), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas WQFN NoLead +0 +21 +17 +Package_DFN_QFN +Texas_RUM0016E_WQFN-16-1EP_4x4mm_P0.65mm_EP2.5x2.5mm_ThermalVias +Texas RUM0016E WQFN, 16 Pin (https://www.ti.com/lit/ml/qfnd679/qfnd679.pdf?ts=1756465079919), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas WQFN NoLead +0 +31 +17 +Package_DFN_QFN +Texas_RUN0010A_WQFN-10_2x2mm_P0.5mm +Texas RUN0010A WQFN, 10 Pin (https://www.ti.com/lit/ds/symlink/tmp461.pdf#page=35), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas WQFN NoLead +0 +10 +10 +Package_DFN_QFN +Texas_RVA_VQFN-16-1EP_3.5x3.5mm_P0.5mm_EP2.14x2.14mm +Texas RVA VQFN, 16 Pin (https://www.ti.com/lit/pdf/MPQF232), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas VQFN NoLead +0 +21 +17 +Package_DFN_QFN +Texas_RVA_VQFN-16-1EP_3.5x3.5mm_P0.5mm_EP2.14x2.14mm_ThermalVias +Texas RVA VQFN, 16 Pin (https://www.ti.com/lit/pdf/MPQF232), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas VQFN NoLead +0 +26 +17 +Package_DFN_QFN +Texas_RVE0028A_VQFN-28-1EP_3.5x4.5mm_P0.4mm_EP2.1x3.1mm +Texas RVE0028A VQFN, 28 Pin (http://www.ti.com/lit/ds/symlink/tps51363.pdf#page=29), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas VQFN NoLead +0 +33 +29 +Package_DFN_QFN +Texas_RVE0028A_VQFN-28-1EP_3.5x4.5mm_P0.4mm_EP2.1x3.1mm_ThermalVias +Texas RVE0028A VQFN, 28 Pin (http://www.ti.com/lit/ds/symlink/tps51363.pdf#page=29), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas VQFN NoLead +0 +43 +29 +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_RWU0007A_VQFN-7_2x2mm_P0.5mm +Texas RWU0007A VQFN, 2x2mm, 7 Pin (https://www.ti.com/lit/ds/symlink/tps61022.pdf) +Texas VQFN NoLead +0 +13 +7 +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-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-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 RUC0014A X2QFN, 14 Pin (https://www.ti.com/lit/ml/qfnd283a/qfnd283a.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas X2QFN NoLead Texas_X2QFN-14_2x2mm_P0.4mm +0 +14 +14 +Package_DFN_QFN +Texas_UQFN-8_1.5x1.5mm_P0.5mm +Texas UQFN, 8 Pin (https://www.ti.com/lit/ml/mpqf207e/mpqf207e.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas UQFN NoLead +0 +8 +8 +Package_DFN_QFN +Texas_UQFN-10_1.5x2mm_P0.5mm +Texas RSE0010A UQFN, 10 Pin (https://www.ti.com/lit/ml/mpqf186d/mpqf186d.pdf) +Texas RSE0010 UQFN NoLead +0 +10 +10 +Package_DFN_QFN +Texas_VQFN-HR-12_2x2.5mm_P0.5mm +Texas VQFN-HR, 12 Pin, http://www.ti.com/lit/ml/mpqf508/mpqf508.pdf +RUX0012A Texas VQFN-HR NoLead +0 +12 +12 +Package_DFN_QFN +Texas_VQFN-HR-12_2x2.5mm_P0.5mm_ThermalVias +Texas VQFN-HR, 12 Pin, http://www.ti.com/lit/ml/mpqf508/mpqf508.pdf +RUX0012A Texas VQFN-HR NoLead +0 +16 +12 +Package_DFN_QFN +Texas_VQFN-HR-20_3x2.5mm_P0.5mm_RQQ0011A +Texas VQFN-HR, 11 Pin, https://www.ti.com/lit/ml/mpqf579/mpqf579.pdf +RQQ0011A +0 +15 +11 +Package_DFN_QFN +Texas_VQFN-RHL-20 +http://www.ti.com/lit/ds/symlink/bq51050b.pdf +RHL0020A +0 +33 +21 +Package_DFN_QFN +Texas_VQFN-RHL-20_ThermalVias +http://www.ti.com/lit/ds/symlink/bq51050b.pdf +RHL0020A +0 +41 +21 +Package_DFN_QFN +Texas_VQFN-RNR0011A-11 +RNR0011A, VQFN-11 (https://www.ti.com/lit/ds/symlink/tps61089.pdf#Page=27) +TI RNR0011A +0 +20 +11 +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 +Texas_X2QFN-RUE-12_1.4x2mm_P0.4mm +Texas X2QFN-RUE, 12 Pin (https://www.ti.com/lit/ml/mpqf214b/mpqf214b.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas X2QFN-RUE NoLead +0 +12 +12 +Package_DFN_QFN +UDC-QFN-20-4EP_3x4mm_P0.5mm_EP0.41x0.25mm +UDC QFN, 20 Pin, Exposed Pad Variation AB (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/05081536_B_UDC20(AB).pdf), modifed from generated QFN-20-1EP_3x4mm_P0.5 +QFN NoLead +0 +24 +24 +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, 10 Pin (https://www.onsemi.com/pub/Collateral/488AT.PDF), generated with kicad-footprint-generator ipc_noLead_generator.py +UQFN NoLead ONSemi-UQFN10-488AT-01 +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-12-1EP_2x2mm_P0.4mm_EP1.1x1.1mm +UQFN, 12 Pin (https://www.wch-ic.com/download/file?id=396, https://www.wch-ic.com/downloads/CH32V006DS0_PDF.html, https://www.wch-ic.com/downloads/PACKAGE_PDF.html), generated with kicad-footprint-generator ipc_noLead_generator.py +UQFN NoLead WCH_QFN12 +0 +14 +13 +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-16_1.8x2.6mm_P0.4mm +UQFN, 16 Pin (https://www.ti.com/lit/ml/qfnd836/qfnd836.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +UQFN NoLead Texas_RSV0016A +0 +16 +16 +Package_DFN_QFN +UQFN-20-1EP_3x3mm_P0.4mm_EP1.7x1.7mm +UQFN, 20 Pin (https://www.kinet-ic.com/uploads/web/KTD2058,%20KTD2059,%20KTD2060,%20KTD2061/KTD2061-58-59-60-04e.pdf#page=25), generated with kicad-footprint-generator ipc_noLead_generator.py +UQFN NoLead +0 +25 +21 +Package_DFN_QFN +UQFN-20-1EP_3x3mm_P0.4mm_EP1.7x1.7mm_ThermalVias +UQFN, 20 Pin (https://www.kinet-ic.com/uploads/web/KTD2058,%20KTD2059,%20KTD2060,%20KTD2061/KTD2061-58-59-60-04e.pdf#page=25), generated with kicad-footprint-generator ipc_noLead_generator.py +UQFN NoLead +0 +30 +21 +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-32_5x5mm_P0.5mm +UQFN, 32 Pin (JEDEC MO-248 variation UHHD, 0.65mm maximum overall height, https://www.jedec.org/document_search?search_api_views_fulltext=MO-248), generated with kicad-footprint-generator ipc_noLead_generator.py +UQFN NoLead STMicroelectronics-UFQFPN32-A09E +0 +32 +32 +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 +60 +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 +68 +49 +Package_DFN_QFN +UQFN-48-1EP_6x6mm_P0.4mm_EP4.62x4.62mm +UQFN, 48 Pin (https://gitlab.com/kicad/libraries/kicad-symbols/-/merge_requests/1189#note_423250741), 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://gitlab.com/kicad/libraries/kicad-symbols/-/merge_requests/1189#note_423250741), 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-12-1EP_4x4mm_P0.8mm_EP2.1x2.1mm +VQFN, 12 Pin (https://www.mouser.ch/datasheet/2/268/EMC2301_2_3_5_Data_Sheet_DS20006532A-3443118.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +VQFN NoLead +0 +17 +13 +Package_DFN_QFN +VQFN-12-1EP_4x4mm_P0.8mm_EP2.1x2.1mm_ThermalVias +VQFN, 12 Pin (https://www.mouser.ch/datasheet/2/268/EMC2301_2_3_5_Data_Sheet_DS20006532A-3443118.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +VQFN NoLead +0 +22 +13 +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 +20 +17 +Package_DFN_QFN +VQFN-16-1EP_3x3mm_P0.5mm_EP1.6x1.6mm +VQFN, 16 Pin (http://www.ti.com/lit/ds/symlink/cdclvp1102.pdf#page=28), generated with kicad-footprint-generator ipc_noLead_generator.py +VQFN NoLead +0 +21 +17 +Package_DFN_QFN +VQFN-16-1EP_3x3mm_P0.5mm_EP1.6x1.6mm_ThermalVias +VQFN, 16 Pin (http://www.ti.com/lit/ds/symlink/cdclvp1102.pdf#page=28), generated with kicad-footprint-generator ipc_noLead_generator.py +VQFN NoLead +0 +26 +17 +Package_DFN_QFN +VQFN-16-1EP_3x3mm_P0.5mm_EP1.8x1.8mm +VQFN, 16 Pin (https://www.st.com/resource/en/datasheet/stspin220.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +VQFN NoLead +0 +21 +17 +Package_DFN_QFN +VQFN-16-1EP_3x3mm_P0.5mm_EP1.8x1.8mm_ThermalVias +VQFN, 16 Pin (https://www.st.com/resource/en/datasheet/stspin220.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +VQFN NoLead +0 +26 +17 +Package_DFN_QFN +VQFN-16-1EP_3x3mm_P0.5mm_EP1.45x1.45mm +VQFN, 16 Pin (http://www.ti.com/lit/ds/sbos354a/sbos354a.pdf, JEDEC MO-220 variant VEED-6), generated with kicad-footprint-generator ipc_noLead_generator.py +VQFN NoLead +0 +21 +17 +Package_DFN_QFN +VQFN-16-1EP_3x3mm_P0.5mm_EP1.45x1.45mm_ThermalVias +VQFN, 16 Pin (http://www.ti.com/lit/ds/sbos354a/sbos354a.pdf, JEDEC MO-220 variant VEED-6), generated with kicad-footprint-generator ipc_noLead_generator.py +VQFN NoLead +0 +26 +17 +Package_DFN_QFN +VQFN-16-1EP_3x3mm_P0.5mm_EP1.68x1.68mm +VQFN, 16 Pin (http://www.ti.com/lit/ds/symlink/tlv62095.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +VQFN NoLead +0 +21 +17 +Package_DFN_QFN +VQFN-16-1EP_3x3mm_P0.5mm_EP1.68x1.68mm_ThermalVias +VQFN, 16 Pin (http://www.ti.com/lit/ds/symlink/tlv62095.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +VQFN NoLead +0 +26 +17 +Package_DFN_QFN +VQFN-20-1EP_3x3mm_P0.4mm_EP1.7x1.7mm +VQFN, 20 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/20%20Lead%20VQFN%203x3x0_9mm_1_7EP%20U2B%20C04-21496a.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +VQFN NoLead +0 +25 +21 +Package_DFN_QFN +VQFN-20-1EP_3x3mm_P0.4mm_EP1.7x1.7mm_ThermalVias +VQFN, 20 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/20%20Lead%20VQFN%203x3x0_9mm_1_7EP%20U2B%20C04-21496a.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +VQFN NoLead +0 +30 +21 +Package_DFN_QFN +VQFN-20-1EP_3x3mm_P0.45mm_EP1.55x1.55mm +VQFN, 20 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/doc8246.pdf#page=264), generated with kicad-footprint-generator ipc_noLead_generator.py +VQFN NoLead +0 +25 +21 +Package_DFN_QFN +VQFN-20-1EP_3x3mm_P0.45mm_EP1.55x1.55mm_ThermalVias +VQFN, 20 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/doc8246.pdf#page=264), generated with kicad-footprint-generator ipc_noLead_generator.py +VQFN NoLead +0 +30 +21 +Package_DFN_QFN +VQFN-24-1EP_4x4mm_P0.5mm_EP2.5x2.5mm +VQFN, 24 Pin (https://ww1.microchip.com/downloads/aemDocuments/documents/product-documents/package-drawings/24L-VQFN%E2%80%934x4x0.9mm-MJ-C04-00143b.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +VQFN NoLead +0 +29 +25 +Package_DFN_QFN +VQFN-24-1EP_4x4mm_P0.5mm_EP2.5x2.5mm_ThermalVias +VQFN, 24 Pin (https://ww1.microchip.com/downloads/aemDocuments/documents/product-documents/package-drawings/24L-VQFN%E2%80%934x4x0.9mm-MJ-C04-00143b.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +VQFN NoLead +0 +39 +25 +Package_DFN_QFN +VQFN-24-1EP_4x4mm_P0.5mm_EP2.45x2.45mm +VQFN, 24 Pin (http://www.ti.com/lit/ds/symlink/msp430f1101a.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +VQFN NoLead +0 +34 +25 +Package_DFN_QFN +VQFN-24-1EP_4x4mm_P0.5mm_EP2.45x2.45mm_ThermalVias +VQFN, 24 Pin (http://www.ti.com/lit/ds/symlink/msp430f1101a.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +VQFN NoLead +0 +44 +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-28-1EP_5x5mm_P0.5mm_EP3.7x3.7mm +VQFN, 28 Pin (Based on JEDEC MO-220-K.01 variation VHHD-3 and exposed pad nominal size from ADI Trinamic / Analog Devices, https://www.jedec.org/system/files/docs/MO-220K01.pdf, https://www.analog.com/media/en/technical-documentation/data-sheets/TMC2209_datasheet_rev1.09.pdf#page=83), generated with kicad-footprint-generator ipc_noLead_generator.py +VQFN NoLead +0 +33 +29 +Package_DFN_QFN +VQFN-28-1EP_5x5mm_P0.5mm_EP3.7x3.7mm_ThermalVias +VQFN, 28 Pin (Based on JEDEC MO-220-K.01 variation VHHD-3 and exposed pad nominal size from ADI Trinamic / Analog Devices, https://www.jedec.org/system/files/docs/MO-220K01.pdf, https://www.analog.com/media/en/technical-documentation/data-sheets/TMC2209_datasheet_rev1.09.pdf#page=83), generated with kicad-footprint-generator ipc_noLead_generator.py +VQFN NoLead +0 +50 +29 +Package_DFN_QFN +VQFN-28-1EP_5x5mm_P0.5mm_EP3.25x3.25mm +VQFN, 28 Pin (https://ww1.microchip.com/downloads/aemDocuments/documents/APID/ProductDocuments/DataSheets/MCP251863-External-CAN-FD-Controller-with-Integrated-Transceiver-DS20006624.pdf#page=101), generated with kicad-footprint-generator ipc_noLead_generator.py +VQFN NoLead +0 +33 +29 +Package_DFN_QFN +VQFN-28-1EP_5x5mm_P0.5mm_EP3.25x3.25mm_ThermalVias +VQFN, 28 Pin (https://ww1.microchip.com/downloads/aemDocuments/documents/APID/ProductDocuments/DataSheets/MCP251863-External-CAN-FD-Controller-with-Integrated-Transceiver-DS20006624.pdf#page=101), generated with kicad-footprint-generator ipc_noLead_generator.py +VQFN NoLead +0 +43 +29 +Package_DFN_QFN +VQFN-32-1EP_4x4mm_P0.4mm_EP2.8x2.8mm +VQFN, 32 Pin (https://www.ti.com/lit/ds/symlink/tps25750.pdf#page=78), generated with kicad-footprint-generator ipc_noLead_generator.py +VQFN NoLead +0 +37 +33 +Package_DFN_QFN +VQFN-32-1EP_4x4mm_P0.4mm_EP2.8x2.8mm_ThermalVias +VQFN, 32 Pin (https://www.ti.com/lit/ds/symlink/tps25750.pdf#page=78), generated with kicad-footprint-generator ipc_noLead_generator.py +VQFN NoLead +0 +47 +33 +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-40-1EP_5x5mm_P0.4mm_EP3.3x3.3mm +VQFN, 40 Pin (Based on JEDEC MO-220-K.01, variation VHHE-1, https://tridentiot.com/wp-content/uploads/2024/11/DS-ZW-0001-01-T32CZ20-Datasheet.pdf#page=36), generated with kicad-footprint-generator ipc_noLead_generator.py +VQFN NoLead +0 +45 +41 +Package_DFN_QFN +VQFN-40-1EP_5x5mm_P0.4mm_EP3.3x3.3mm_ThermalVias +VQFN, 40 Pin (Based on JEDEC MO-220-K.01, variation VHHE-1, https://tridentiot.com/wp-content/uploads/2024/11/DS-ZW-0001-01-T32CZ20-Datasheet.pdf#page=36), generated with kicad-footprint-generator ipc_noLead_generator.py +VQFN NoLead +0 +62 +41 +Package_DFN_QFN +VQFN-40-1EP_5x5mm_P0.4mm_EP3.5x3.5mm +VQFN, 40 Pin (Based on JEDEC MO-220-K.01, variation VHHE-1, https://www.monolithicpower.com/en/documentview/productdocument/index/version/2/document_type/Datasheet/lang/en/sku/MP6536/document_id/3761/), generated with kicad-footprint-generator ipc_noLead_generator.py +VQFN NoLead +0 +45 +41 +Package_DFN_QFN +VQFN-40-1EP_5x5mm_P0.4mm_EP3.5x3.5mm_ThermalVias +VQFN, 40 Pin (Based on JEDEC MO-220-K.01, variation VHHE-1, https://www.monolithicpower.com/en/documentview/productdocument/index/version/2/document_type/Datasheet/lang/en/sku/MP6536/document_id/3761/), generated with kicad-footprint-generator ipc_noLead_generator.py +VQFN NoLead +0 +62 +41 +Package_DFN_QFN +VQFN-40-1EP_5x5mm_P0.4mm_EP3.6x3.6mm +VQFN, 40 Pin (JEDEC MO-220-K.01, variation VHHE-1, https://www.jedec.org/system/files/docs/MO-220K01.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +VQFN NoLead +0 +45 +41 +Package_DFN_QFN +VQFN-40-1EP_5x5mm_P0.4mm_EP3.6x3.6mm_ThermalVias +VQFN, 40 Pin (JEDEC MO-220-K.01, variation VHHE-1, https://www.jedec.org/system/files/docs/MO-220K01.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +VQFN NoLead +0 +62 +41 +Package_DFN_QFN +VQFN-40-1EP_6x6mm_P0.5mm_EP3.5x3.5mm +VQFN, 40 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp-40/cp-40-29.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +VQFN NoLead Analog_CP-40-29 +0 +50 +41 +Package_DFN_QFN +VQFN-40-1EP_6x6mm_P0.5mm_EP3.5x3.5mm_ThermalVias +VQFN, 40 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp-40/cp-40-29.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +VQFN NoLead Analog_CP-40-29 +0 +67 +41 +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_EP2.6x2.6mm +VQFN, 48 Pin (Based on JEDEC MO-220 variation VKKD-2 (using Figure 1), custom Exposed Pad from STMicroeletronics, https://www.jedec.org/document_search?search_api_views_fulltext=MO-220, https://www.st.com/resource/en/datasheet/stspin32f0a.pdf#page=37), generated with kicad-footprint-generator ipc_noLead_generator.py +VQFN NoLead +0 +53 +49 +Package_DFN_QFN +VQFN-48-1EP_7x7mm_P0.5mm_EP2.6x2.6mm_ThermalVias +VQFN, 48 Pin (Based on JEDEC MO-220 variation VKKD-2 (using Figure 1), custom Exposed Pad from STMicroeletronics, https://www.jedec.org/document_search?search_api_views_fulltext=MO-220, https://www.st.com/resource/en/datasheet/stspin32f0a.pdf#page=37), generated with kicad-footprint-generator ipc_noLead_generator.py +VQFN NoLead +0 +63 +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_EP4.2x4.2mm +VQFN, 48 Pin (Based on JEDEC MO-220 variation VKKD-2 (using Figure 1), custom Exposed Pad from NXP, https://www.jedec.org/document_search?search_api_views_fulltext=MO-220, https://www.nxp.com/docs/en/package-information/SOT619-28.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +VQFN NoLead NXP_SOT619-28 +0 +53 +49 +Package_DFN_QFN +VQFN-48-1EP_7x7mm_P0.5mm_EP4.2x4.2mm_ThermalVias +VQFN, 48 Pin (Based on JEDEC MO-220 variation VKKD-2 (using Figure 1), custom Exposed Pad from NXP, https://www.jedec.org/document_search?search_api_views_fulltext=MO-220, https://www.nxp.com/docs/en/package-information/SOT619-28.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +VQFN NoLead NXP_SOT619-28 +0 +70 +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-56-1EP_8x8mm_P0.5mm_EP5.1x4.96mm +VQFN, 56 Pin (https://www.nxp.com/docs/en/package-information/SOT684-21.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +VQFN NoLead NXP_SOT684-21 NXP_HVQFN-56-1EP_8x8mm_P0.5mm_EP5.1x4.96mm NXP_98ASA01332D +0 +66 +57 +Package_DFN_QFN +VQFN-56-1EP_8x8mm_P0.5mm_EP5.1x4.96mm_ThermalVias +VQFN, 56 Pin (https://www.nxp.com/docs/en/package-information/SOT684-21.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +VQFN NoLead NXP_SOT684-21 NXP_HVQFN-56-1EP_8x8mm_P0.5mm_EP5.1x4.96mm NXP_98ASA01332D +0 +92 +57 +Package_DFN_QFN +VQFN-56-1EP_8x8mm_P0.5mm_EP5.5x5.06mm +VQFN, 56 Pin (https://www.nxp.com/docs/en/package-information/SOT684-21_DD_SC.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +VQFN NoLead NXP_SOT684-21(DD/SC) NXP_HVQFN-56-1EP_8x8mm_P0.5mm_EP5.5x5.06mm NXP_98ASA01086D +0 +66 +57 +Package_DFN_QFN +VQFN-56-1EP_8x8mm_P0.5mm_EP5.5x5.06mm_ThermalVias +VQFN, 56 Pin (https://www.nxp.com/docs/en/package-information/SOT684-21_DD_SC.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +VQFN NoLead NXP_SOT684-21(DD/SC) NXP_HVQFN-56-1EP_8x8mm_P0.5mm_EP5.5x5.06mm NXP_98ASA01086D +0 +92 +57 +Package_DFN_QFN +VQFN-64-1EP_9x9mm_P0.5mm_EP5.4x5.4mm +VQFN, 64 Pin (https://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 (https://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 +VQFN-100-1EP_12x12mm_P0.4mm_EP8x8mm +VQFN, 100 Pin (https://ww1.microchip.com/downloads/aemDocuments/documents/UNG/ProductDocuments/DataSheets/USB7206C-Data-Sheet-DS00003850.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +VQFN NoLead +0 +117 +101 +Package_DFN_QFN +VQFN-100-1EP_12x12mm_P0.4mm_EP8x8mm_ThermalVias +VQFN, 100 Pin (https://ww1.microchip.com/downloads/aemDocuments/documents/UNG/ProductDocuments/DataSheets/USB7206C-Data-Sheet-DS00003850.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +VQFN NoLead +0 +143 +101 +Package_DFN_QFN +Vishay_PowerPAK_MLP44-24L +PowerPAK PowerPAK MLP44-24L (https://www.vishay.com/docs/78231/mlp44-24l.pdf) +powerpak mlp44-24l +0 +28 +28 +Package_DFN_QFN +Vishay_PowerPAK_MLP44-24L_ThermalVias +PowerPAK PowerPAK MLP44-24L (https://www.vishay.com/docs/78231/mlp44-24l.pdf) +powerpak mlp44-24l +0 +35 +28 +Package_DFN_QFN +Vishay_PowerPAK_MLP55-27L +MLP55-27L (https://www.vishay.com/docs/75269/ppak_mlp55-27l.pdf) +powerpak mlp55-27l +0 +38 +22 +Package_DFN_QFN +Vishay_PowerPAK_MLP55-27L_R +MLP55-27L_R (https://www.vishay.com/docs/75269/ppak_mlp55-27l.pdf) +powerpak mlp55-27l +0 +38 +22 +Package_DFN_QFN +Vishay_PowerPAK_MLP55-27L_R_ThermalVias +MLP55-27L_R (https://www.vishay.com/docs/75269/ppak_mlp55-27l.pdf) +powerpak mlp55-27l +0 +58 +23 +Package_DFN_QFN +Vishay_PowerPAK_MLP55-27L_ThermalVias +MLP55-27L (https://www.vishay.com/docs/75269/ppak_mlp55-27l.pdf) +powerpak mlp55-27l +0 +58 +23 +Package_DFN_QFN +W-PDFN-8-1EP_6x5mm_P1.27mm_EP3x3mm +W-PDFN, 8 Pin (https://www.mouser.com/datasheet/2/671/mt25q_qljs_u_256_aba_0-3178731.pdf#page=22), generated with kicad-footprint-generator ipc_noLead_generator.py +W-PDFN NoLead +0 +13 +9 +Package_DFN_QFN +WCH_QFN-16-1EP_3x3mm_P0.5mm_EP1.8x1.8mm +WCH QFN, 16 Pin (https://www.wch.cn/downloads/PACKAGE_PDF.html), generated with kicad-footprint-generator ipc_noLead_generator.py +WCH QFN NoLead +0 +21 +17 +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-1EP_8x6mm_P1.27mm_EP6x4.8mm +WDFN, 8 Pin (https://ww1.microchip.com/downloads/en/DeviceDoc/8L_WDFN_6x8mm_MN_C04172A.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +WDFN NoLead Microchip-8L-WDFN-6x8mm-MN-C04172A +0 +21 +9 +Package_DFN_QFN +WDFN-8-1EP_8x6mm_P1.27mm_EP6x4.8mm_ThermalVias +WDFN, 8 Pin (https://ww1.microchip.com/downloads/en/DeviceDoc/8L_WDFN_6x8mm_MN_C04172A.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +WDFN NoLead Microchip-8L-WDFN-6x8mm-MN-C04172A +0 +42 +9 +Package_DFN_QFN +WDFN-8_2x2mm_P0.5mm +DFN8 2x2, 0.5P; No exposed pad (http://www.onsemi.com/pub/Collateral/NCP4308-D.PDF) +DFN 0.5 +0 +8 +8 +Package_DFN_QFN +WDFN-10-1EP_3x3mm_P0.5mm_EP1.8x2.5mm +WDFN, 10 Pin (https://www.onsemi.com/pdf/datasheet/nis5420-d.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +WDFN NoLead +0 +15 +11 +Package_DFN_QFN +WDFN-10-1EP_3x3mm_P0.5mm_EP1.8x2.5mm_ThermalVias +WDFN, 10 Pin (https://www.onsemi.com/pdf/datasheet/nis5420-d.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +WDFN NoLead +0 +22 +11 +Package_DFN_QFN +WDFN-12-1EP_3x3mm_P0.45mm_EP1.7x2.5mm +WDFN, 12 Pin (https://www.diodes.com/assets/Datasheets/PAM2306.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +WDFN NoLead +0 +17 +13 +Package_DFN_QFN +WFDFPN-8-1EP_3x2mm_P0.5mm_EP1.25x1.35mm +WFDFPN, 8 Pin (https://www.st.com/resource/en/datasheet/m95512-r.pdf#page=34), generated with kicad-footprint-generator ipc_noLead_generator.py +WFDFPN NoLead +0 +10 +9 +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 Texas_RUK0020B +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 Texas_RUK0020B +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-28-1EP_4x4mm_P0.4mm_EP2.7x2.7mm +WQFN, 28 Pin (Based on JEDEC MO-220-K.01 variation WGGE and exposed pad from Maxim / Analog Devices, https://www.jedec.org/system/files/docs/MO-220K01.pdf, https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/tqfn/21-0139.pdf, https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/tqfn/21-0139.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +WQFN NoLead T2844-1 T2844-1C T2844Y-1C +0 +33 +29 +Package_DFN_QFN +WQFN-28-1EP_4x4mm_P0.4mm_EP2.7x2.7mm_ThermalVias +WQFN, 28 Pin (Based on JEDEC MO-220-K.01 variation WGGE and exposed pad from Maxim / Analog Devices, https://www.jedec.org/system/files/docs/MO-220K01.pdf, https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/tqfn/21-0139.pdf, https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/tqfn/21-0139.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +WQFN NoLead T2844-1 T2844-1C T2844Y-1C +0 +43 +29 +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-38-1EP_5x7mm_P0.5mm_EP2.7x4.7mm +WQFN, 38 Pin (JEDEC MO-220 variation WHKD, https://www.jedec.org/document_search?search_api_views_fulltext=MO-220), generated with kicad-footprint-generator ipc_noLead_generator.py +WQFN NoLead +0 +45 +39 +Package_DFN_QFN +WQFN-38-1EP_5x7mm_P0.5mm_EP2.7x4.7mm_ThermalVias +WQFN, 38 Pin (JEDEC MO-220 variation WHKD, https://www.jedec.org/document_search?search_api_views_fulltext=MO-220), generated with kicad-footprint-generator ipc_noLead_generator.py +WQFN NoLead +0 +61 +39 +Package_DFN_QFN +WQFN-38-1EP_5x7mm_P0.5mm_EP3.15x5.15mm +WQFN, 38 Pin (JEDEC MO-220 variation WHKD (with exposed pad size from Linear Technology / Analog Devices), https://www.jedec.org/document_search?search_api_views_fulltext=MO-220, 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 +WQFN NoLead UHF +0 +45 +39 +Package_DFN_QFN +WQFN-38-1EP_5x7mm_P0.5mm_EP3.15x5.15mm_ThermalVias +WQFN, 38 Pin (JEDEC MO-220 variation WHKD (with exposed pad size from Linear Technology / Analog Devices), https://www.jedec.org/document_search?search_api_views_fulltext=MO-220, 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 +WQFN NoLead UHF +0 +61 +39 +Package_DFN_QFN +WQFN-38-1EP_5x7mm_P0.5mm_EP3.65x5.65mm +WQFN, 38 Pin (JEDEC MO-220 variation WHKD-1, https://www.jedec.org/document_search?search_api_views_fulltext=MO-220), generated with kicad-footprint-generator ipc_noLead_generator.py +WQFN NoLead TQFN T3857-1C T3857M-1 +0 +45 +39 +Package_DFN_QFN +WQFN-38-1EP_5x7mm_P0.5mm_EP3.65x5.65mm_ThermalVias +WQFN, 38 Pin (JEDEC MO-220 variation WHKD-1, https://www.jedec.org/document_search?search_api_views_fulltext=MO-220), generated with kicad-footprint-generator ipc_noLead_generator.py +WQFN NoLead TQFN T3857-1C T3857M-1 +0 +70 +39 +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 +CERDIP-8_W7.62mm_SideBrazed +8-lead through-hole mounted CERDIP, JEDEC MS-015-AA package, row spacing 7.62mm (300 mils), SideBrazed, https://www.jedec.org/system/files/docs/Ms-015a.pdf +THT DIP DIL CERDIP ceramic 2.54mm 7.62mm 300mil SideBrazed +0 +8 +8 +Package_DIP +CERDIP-8_W7.62mm_SideBrazed_LongPads +8-lead through-hole mounted CERDIP, JEDEC MS-015-AA package, row spacing 7.62mm (300 mils), SideBrazed, LongPads, https://www.jedec.org/system/files/docs/Ms-015a.pdf +THT DIP DIL CERDIP ceramic 2.54mm 7.62mm 300mil SideBrazed LongPads +0 +8 +8 +Package_DIP +CERDIP-8_W7.62mm_SideBrazed_LongPads_Socket +8-lead through-hole mounted CERDIP, JEDEC MS-015-AA package, row spacing 7.62mm (300 mils), SideBrazed, LongPads, Socket, https://www.jedec.org/system/files/docs/Ms-015a.pdf +THT DIP DIL CERDIP ceramic 2.54mm 7.62mm 300mil SideBrazed LongPads Socket +0 +8 +8 +Package_DIP +CERDIP-8_W7.62mm_SideBrazed_Socket +8-lead through-hole mounted CERDIP, JEDEC MS-015-AA package, row spacing 7.62mm (300 mils), SideBrazed, Socket, https://www.jedec.org/system/files/docs/Ms-015a.pdf +THT DIP DIL CERDIP ceramic 2.54mm 7.62mm 300mil SideBrazed Socket +0 +8 +8 +Package_DIP +CERDIP-14_W7.62mm_SideBrazed +14-lead through-hole mounted CERDIP, JEDEC MS-015-AB package, row spacing 7.62mm (300 mils), SideBrazed, https://www.jedec.org/system/files/docs/Ms-015a.pdf +THT DIP DIL CERDIP ceramic 2.54mm 7.62mm 300mil SideBrazed +0 +14 +14 +Package_DIP +CERDIP-14_W7.62mm_SideBrazed_LongPads +14-lead through-hole mounted CERDIP, JEDEC MS-015-AB package, row spacing 7.62mm (300 mils), SideBrazed, LongPads, https://www.jedec.org/system/files/docs/Ms-015a.pdf +THT DIP DIL CERDIP ceramic 2.54mm 7.62mm 300mil SideBrazed LongPads +0 +14 +14 +Package_DIP +CERDIP-14_W7.62mm_SideBrazed_LongPads_Socket +14-lead through-hole mounted CERDIP, JEDEC MS-015-AB package, row spacing 7.62mm (300 mils), SideBrazed, LongPads, Socket, https://www.jedec.org/system/files/docs/Ms-015a.pdf +THT DIP DIL CERDIP ceramic 2.54mm 7.62mm 300mil SideBrazed LongPads Socket +0 +14 +14 +Package_DIP +CERDIP-14_W7.62mm_SideBrazed_Socket +14-lead through-hole mounted CERDIP, JEDEC MS-015-AB package, row spacing 7.62mm (300 mils), SideBrazed, Socket, https://www.jedec.org/system/files/docs/Ms-015a.pdf +THT DIP DIL CERDIP ceramic 2.54mm 7.62mm 300mil SideBrazed Socket +0 +14 +14 +Package_DIP +CERDIP-16_W7.62mm_SideBrazed +16-lead through-hole mounted CERDIP, JEDEC MS-015-AC package, row spacing 7.62mm (300 mils), SideBrazed, https://www.jedec.org/system/files/docs/Ms-015a.pdf +THT DIP DIL CERDIP ceramic 2.54mm 7.62mm 300mil SideBrazed +0 +16 +16 +Package_DIP +CERDIP-16_W7.62mm_SideBrazed_LongPads +16-lead through-hole mounted CERDIP, JEDEC MS-015-AC package, row spacing 7.62mm (300 mils), SideBrazed, LongPads, https://www.jedec.org/system/files/docs/Ms-015a.pdf +THT DIP DIL CERDIP ceramic 2.54mm 7.62mm 300mil SideBrazed LongPads +0 +16 +16 +Package_DIP +CERDIP-16_W7.62mm_SideBrazed_LongPads_Socket +16-lead through-hole mounted CERDIP, JEDEC MS-015-AC package, row spacing 7.62mm (300 mils), SideBrazed, LongPads, Socket, https://www.jedec.org/system/files/docs/Ms-015a.pdf +THT DIP DIL CERDIP ceramic 2.54mm 7.62mm 300mil SideBrazed LongPads Socket +0 +16 +16 +Package_DIP +CERDIP-16_W7.62mm_SideBrazed_Socket +16-lead through-hole mounted CERDIP, JEDEC MS-015-AC package, row spacing 7.62mm (300 mils), SideBrazed, Socket, https://www.jedec.org/system/files/docs/Ms-015a.pdf +THT DIP DIL CERDIP ceramic 2.54mm 7.62mm 300mil SideBrazed Socket +0 +16 +16 +Package_DIP +CERDIP-18_W7.62mm_SideBrazed +18-lead through-hole mounted CERDIP, JEDEC MS-015-AD package, row spacing 7.62mm (300 mils), SideBrazed, https://www.jedec.org/system/files/docs/Ms-015a.pdf +THT DIP DIL CERDIP ceramic 2.54mm 7.62mm 300mil SideBrazed +0 +18 +18 +Package_DIP +CERDIP-18_W7.62mm_SideBrazed_LongPads +18-lead through-hole mounted CERDIP, JEDEC MS-015-AD package, row spacing 7.62mm (300 mils), SideBrazed, LongPads, https://www.jedec.org/system/files/docs/Ms-015a.pdf +THT DIP DIL CERDIP ceramic 2.54mm 7.62mm 300mil SideBrazed LongPads +0 +18 +18 +Package_DIP +CERDIP-18_W7.62mm_SideBrazed_LongPads_Socket +18-lead through-hole mounted CERDIP, JEDEC MS-015-AD package, row spacing 7.62mm (300 mils), SideBrazed, LongPads, Socket, https://www.jedec.org/system/files/docs/Ms-015a.pdf +THT DIP DIL CERDIP ceramic 2.54mm 7.62mm 300mil SideBrazed LongPads Socket +0 +18 +18 +Package_DIP +CERDIP-18_W7.62mm_SideBrazed_Socket +18-lead through-hole mounted CERDIP, JEDEC MS-015-AD package, row spacing 7.62mm (300 mils), SideBrazed, Socket, https://www.jedec.org/system/files/docs/Ms-015a.pdf +THT DIP DIL CERDIP ceramic 2.54mm 7.62mm 300mil SideBrazed Socket +0 +18 +18 +Package_DIP +CERDIP-20_W7.62mm_SideBrazed +20-lead through-hole mounted CERDIP, JEDEC MS-015-AE package, row spacing 7.62mm (300 mils), SideBrazed, https://www.jedec.org/system/files/docs/Ms-015a.pdf +THT DIP DIL CERDIP ceramic 2.54mm 7.62mm 300mil SideBrazed +0 +20 +20 +Package_DIP +CERDIP-20_W7.62mm_SideBrazed_LongPads +20-lead through-hole mounted CERDIP, JEDEC MS-015-AE package, row spacing 7.62mm (300 mils), SideBrazed, LongPads, https://www.jedec.org/system/files/docs/Ms-015a.pdf +THT DIP DIL CERDIP ceramic 2.54mm 7.62mm 300mil SideBrazed LongPads +0 +20 +20 +Package_DIP +CERDIP-20_W7.62mm_SideBrazed_LongPads_Socket +20-lead through-hole mounted CERDIP, JEDEC MS-015-AE package, row spacing 7.62mm (300 mils), SideBrazed, LongPads, Socket, https://www.jedec.org/system/files/docs/Ms-015a.pdf +THT DIP DIL CERDIP ceramic 2.54mm 7.62mm 300mil SideBrazed LongPads Socket +0 +20 +20 +Package_DIP +CERDIP-20_W7.62mm_SideBrazed_Socket +20-lead through-hole mounted CERDIP, JEDEC MS-015-AE package, row spacing 7.62mm (300 mils), SideBrazed, Socket, https://www.jedec.org/system/files/docs/Ms-015a.pdf +THT DIP DIL CERDIP ceramic 2.54mm 7.62mm 300mil SideBrazed Socket +0 +20 +20 +Package_DIP +CERDIP-22_W7.62mm_SideBrazed +22-lead through-hole mounted CERDIP, JEDEC MS-015-AF package, row spacing 7.62mm (300 mils), SideBrazed, https://www.jedec.org/system/files/docs/Ms-015a.pdf +THT DIP DIL CERDIP ceramic 2.54mm 7.62mm 300mil SideBrazed +0 +22 +22 +Package_DIP +CERDIP-22_W7.62mm_SideBrazed_LongPads +22-lead through-hole mounted CERDIP, JEDEC MS-015-AF package, row spacing 7.62mm (300 mils), SideBrazed, LongPads, https://www.jedec.org/system/files/docs/Ms-015a.pdf +THT DIP DIL CERDIP ceramic 2.54mm 7.62mm 300mil SideBrazed LongPads +0 +22 +22 +Package_DIP +CERDIP-22_W7.62mm_SideBrazed_LongPads_Socket +22-lead through-hole mounted CERDIP, JEDEC MS-015-AF package, row spacing 7.62mm (300 mils), SideBrazed, LongPads, Socket, https://www.jedec.org/system/files/docs/Ms-015a.pdf +THT DIP DIL CERDIP ceramic 2.54mm 7.62mm 300mil SideBrazed LongPads Socket +0 +22 +22 +Package_DIP +CERDIP-22_W7.62mm_SideBrazed_Socket +22-lead through-hole mounted CERDIP, JEDEC MS-015-AF package, row spacing 7.62mm (300 mils), SideBrazed, Socket, https://www.jedec.org/system/files/docs/Ms-015a.pdf +THT DIP DIL CERDIP ceramic 2.54mm 7.62mm 300mil SideBrazed Socket +0 +22 +22 +Package_DIP +CERDIP-24_W7.62mm_SideBrazed +24-lead through-hole mounted CERDIP, JEDEC MS-015-AG package, row spacing 7.62mm (300 mils), SideBrazed, https://www.jedec.org/system/files/docs/Ms-015a.pdf +THT DIP DIL CERDIP ceramic 2.54mm 7.62mm 300mil SideBrazed +0 +24 +24 +Package_DIP +CERDIP-24_W7.62mm_SideBrazed_LongPads +24-lead through-hole mounted CERDIP, JEDEC MS-015-AG package, row spacing 7.62mm (300 mils), SideBrazed, LongPads, https://www.jedec.org/system/files/docs/Ms-015a.pdf +THT DIP DIL CERDIP ceramic 2.54mm 7.62mm 300mil SideBrazed LongPads +0 +24 +24 +Package_DIP +CERDIP-24_W7.62mm_SideBrazed_LongPads_Socket +24-lead through-hole mounted CERDIP, JEDEC MS-015-AG package, row spacing 7.62mm (300 mils), SideBrazed, LongPads, Socket, https://www.jedec.org/system/files/docs/Ms-015a.pdf +THT DIP DIL CERDIP ceramic 2.54mm 7.62mm 300mil SideBrazed LongPads Socket +0 +24 +24 +Package_DIP +CERDIP-24_W7.62mm_SideBrazed_Socket +24-lead through-hole mounted CERDIP, JEDEC MS-015-AG package, row spacing 7.62mm (300 mils), SideBrazed, Socket, https://www.jedec.org/system/files/docs/Ms-015a.pdf +THT DIP DIL CERDIP ceramic 2.54mm 7.62mm 300mil SideBrazed Socket +0 +24 +24 +Package_DIP +CERDIP-28_W7.62mm_SideBrazed +28-lead through-hole mounted CERDIP, JEDEC MS-015-AH package, row spacing 7.62mm (300 mils), SideBrazed, https://www.jedec.org/system/files/docs/Ms-015a.pdf +THT DIP DIL CERDIP ceramic 2.54mm 7.62mm 300mil SideBrazed +0 +28 +28 +Package_DIP +CERDIP-28_W7.62mm_SideBrazed_LongPads +28-lead through-hole mounted CERDIP, JEDEC MS-015-AH package, row spacing 7.62mm (300 mils), SideBrazed, LongPads, https://www.jedec.org/system/files/docs/Ms-015a.pdf +THT DIP DIL CERDIP ceramic 2.54mm 7.62mm 300mil SideBrazed LongPads +0 +28 +28 +Package_DIP +CERDIP-28_W7.62mm_SideBrazed_LongPads_Socket +28-lead through-hole mounted CERDIP, JEDEC MS-015-AH package, row spacing 7.62mm (300 mils), SideBrazed, LongPads, Socket, https://www.jedec.org/system/files/docs/Ms-015a.pdf +THT DIP DIL CERDIP ceramic 2.54mm 7.62mm 300mil SideBrazed LongPads Socket +0 +28 +28 +Package_DIP +CERDIP-28_W7.62mm_SideBrazed_Socket +28-lead through-hole mounted CERDIP, JEDEC MS-015-AH package, row spacing 7.62mm (300 mils), SideBrazed, Socket, https://www.jedec.org/system/files/docs/Ms-015a.pdf +THT DIP DIL CERDIP ceramic 2.54mm 7.62mm 300mil SideBrazed Socket +0 +28 +28 +Package_DIP +DIP-4_W7.62mm +4-lead though-hole mounted DIP package, row spacing 7.62mm (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.62mm (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.62mm (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.62mm (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.62mm (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.89mm (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.16mm (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.16mm (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.62mm (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.62mm (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.62mm (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.62mm (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.62mm (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.89mm (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.16mm (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.16mm (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.62mm (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.62mm (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.62mm (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.62mm (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.62mm (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.62mm (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.62mm (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.62mm (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.89mm (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.16mm (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.16mm (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.62mm (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.62mm (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.62mm (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.62mm (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.62mm (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.89mm (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.16mm (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.16mm (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.62mm (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.62mm (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.62mm (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.62mm (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.62mm (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.89mm (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.16mm (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.16mm (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.62mm (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.62mm (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.62mm (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.62mm (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.62mm (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.89mm (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.16mm (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.16mm (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.62mm (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.62mm (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.62mm (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.62mm (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.62mm (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.89mm (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.16mm (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.16mm (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.62mm (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.62mm (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.62mm (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.62mm (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.62mm (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.89mm (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.62mm (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.62mm (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.62mm (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.62mm (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.62mm (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.89mm (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.62mm (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.62mm (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.62mm (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.62mm (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.62mm (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.89mm (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.16mm (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.16mm (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.16mm (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.16mm (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.16mm (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.43mm (450 mils), SMDSocket, LongPads +THT DIP DIL PDIP 2.54mm 11.43mm 450mil SMDSocket LongPads +0 +22 +22 +Package_DIP +DIP-24_18.0mmx34.29mm_W15.24mm +24-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils) https://www.mouser.at/datasheet/2/389/m48t02-1849963.pdf +THT DIP DIL PDIP 2.54mm 15.24mm 600mil PCDIP24 CAPHAT M48T02 M48T12 M48Z02 M48Z12 +0 +24 +24 +Package_DIP +DIP-24_18.0mmx34.29mm_W15.24mm_LongPads +24-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils) https://www.mouser.at/datasheet/2/389/m48t02-1849963.pdf +THT DIP DIL PDIP 2.54mm 15.24mm 600mil PCDIP24 CAPHAT M48T02 M48T12 M48Z02 M48Z12 +0 +24 +24 +Package_DIP +DIP-24_18.0mmx34.29mm_W15.24mm_SMDSocket_SmallPads +24-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils) https://www.mouser.at/datasheet/2/389/m48t02-1849963.pdf +THT DIP DIL PDIP 2.54mm 15.24mm 600mil PCDIP24 CAPHAT M48T02 M48T12 M48Z02 M48Z12 +0 +24 +24 +Package_DIP +DIP-24_18.0mmx34.29mm_W15.24mm_Socket +24-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils) https://www.mouser.at/datasheet/2/389/m48t02-1849963.pdf +THT DIP DIL PDIP 2.54mm 15.24mm 600mil PCDIP24 CAPHAT M48T02 M48T12 M48Z02 M48Z12 +0 +24 +24 +Package_DIP +DIP-24_18.0mmx34.29mm_W15.24mm_Socket_LongPads +24-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils) https://www.mouser.at/datasheet/2/389/m48t02-1849963.pdf +THT DIP DIL PDIP 2.54mm 15.24mm 600mil PCDIP24 CAPHAT M48T02 M48T12 M48Z02 M48Z12 +0 +24 +24 +Package_DIP +DIP-24_W7.62mm +24-lead though-hole mounted DIP package, row spacing 7.62mm (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.62mm (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.62mm (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.62mm (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.62mm (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.89mm (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.16mm (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.16mm (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.16mm (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.16mm (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.16mm (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.43mm (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.24mm (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.24mm (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.24mm (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.24mm (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.24mm (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.51mm (650 mils), SMDSocket, LongPads +THT DIP DIL PDIP 2.54mm 16.51mm 650mil SMDSocket LongPads +0 +24 +24 +Package_DIP +DIP-26_W15.24mm +26-lead though-hole mounted DIP package, row spacing 15.24mm (600 mils) +THT DIP DIL PDIP 2.54mm 15.24mm 600mil +0 +26 +26 +Package_DIP +DIP-26_W15.24mm_LongPads +26-lead though-hole mounted DIP package, row spacing 15.24mm (600 mils), LongPads +THT DIP DIL PDIP 2.54mm 15.24mm 600mil LongPads +0 +26 +26 +Package_DIP +DIP-26_W15.24mm_SMDSocket_SmallPads +26-lead though-hole mounted DIP package, row spacing 15.24mm (600 mils), SMDSocket, SmallPads +THT DIP DIL PDIP 2.54mm 15.24mm 600mil SMDSocket SmallPads +0 +26 +26 +Package_DIP +DIP-26_W15.24mm_Socket +26-lead though-hole mounted DIP package, row spacing 15.24mm (600 mils), Socket +THT DIP DIL PDIP 2.54mm 15.24mm 600mil Socket +0 +26 +26 +Package_DIP +DIP-26_W15.24mm_Socket_LongPads +26-lead though-hole mounted DIP package, row spacing 15.24mm (600 mils), Socket, LongPads +THT DIP DIL PDIP 2.54mm 15.24mm 600mil Socket LongPads +0 +26 +26 +Package_DIP +DIP-26_W16.51mm_SMDSocket_LongPads +26-lead though-hole mounted DIP package, row spacing 16.51mm (650 mils), SMDSocket, LongPads +THT DIP DIL PDIP 2.54mm 16.51mm 650mil SMDSocket LongPads +0 +26 +26 +Package_DIP +DIP-28_W7.62mm +28-lead though-hole mounted DIP package, row spacing 7.62mm (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.62mm (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.62mm (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.62mm (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.62mm (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.89mm (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.24mm (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.24mm (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.24mm (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.24mm (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.24mm (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.51mm (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.24mm (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.24mm (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.24mm (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.24mm (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.24mm (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.51mm (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.24mm (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.24mm (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.24mm (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.24mm (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.24mm (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.51mm (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.4mm (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.4mm (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.4mm (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.4mm (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.4mm (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.67mm (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.24mm (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.24mm (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.24mm (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.24mm (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.24mm (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.51mm (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.24mm (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.24mm (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.24mm (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.24mm (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.24mm (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.51mm (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.24mm (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.24mm (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.24mm (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.24mm (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.24mm (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.51mm (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.86mm (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.86mm (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.86mm (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.86mm (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.86mm (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.13mm (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.4mm (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.4mm (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.4mm (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.4mm (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.4mm (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.67mm (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 mils wide, surface mount package (https://www.fairchildsemi.com/package-drawings/ML/MLSOP08A.pdf) +LSOP 2.54mm 300mil +0 +8 +8 +Package_DIP +IXYS_Flatpak-8_6.3x9.7mm_P2.54mm +IXYS Flatpak, 8 Pin (https://www.littelfuse.com/media?resourcetype=datasheets&itemid=996c6e8f-cc1b-44f6-811e-251c6e004c56&filename=littelfuse-integrated-circuits-loc112-datasheet), generated with kicad-footprint-generator ipc_gullwing_generator.py +IXYS Flatpak DIP +0 +8 +8 +Package_DIP +IXYS_SMD-8_6.3x9.7mm_P2.54mm +IXYS Flatpak, 8 Pin (https://www.littelfuse.com/media?resourcetype=datasheets&itemid=996c6e8f-cc1b-44f6-811e-251c6e004c56&filename=littelfuse-integrated-circuits-loc112-datasheet), generated with kicad-footprint-generator ipc_gullwing_generator.py +IXYS Flatpak DIP +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.62mm (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.53mm (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.53mm (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.48mm (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.62mm (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.53mm (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.53mm (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.48mm (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.62mm (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.53mm (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.53mm (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.48mm (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.62mm (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.53mm (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.53mm (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.48mm (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.62mm (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.53mm (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.53mm (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.48mm (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.62mm (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.53mm (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.53mm (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.48mm (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.62mm (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.53mm (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.53mm (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.48mm (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.62mm (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.53mm (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.53mm (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.48mm (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.62mm (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.53mm (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.53mm (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.48mm (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.62mm (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.53mm (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.53mm (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.48mm (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.62mm (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.53mm (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.48mm (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.24mm (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.24mm (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.62mm (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.53mm (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.48mm (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.24mm (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.24mm (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.24mm (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.24mm (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.24mm (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.24mm (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 +Analog_LCC-8_5x5mm_P1.27mm +LCC, ceramic leaded chip carrier, 8 pins, surface mount, Analog Devices LS8, 5x5mm, height 1.45mm, https://www.analog.com/media/en/technical-documentation/data-sheets/ltc6655-6655ln.pdf +lcc smt +0 +8 +8 +Package_LCC +MO047AD_PLCC-52_19.1x19.1mm_P1.27mm +MO047AD PLCC, 52 Pin (JEDEC MO-047 variation AD, https://www.jedec.org/document_search?search_api_views_fulltext=MO-047, https://archive.org/details/bitsavers_signeticsdcsMicroprocessor_53987793/page/n775/mode/1up?view=theater), generated with kicad-footprint-generator ipc_plcc_jLead_generator.py +PLCC LCC +0 +52 +52 +Package_LCC +PLCC-20 +PLCC, 20 pins, surface mount +plcc smt +0 +20 +20 +Package_LCC +PLCC-20_SMD-Socket +PLCC, 20 pins, surface mount +plcc smt +0 +20 +20 +Package_LCC +PLCC-20_THT-Socket +PLCC, 20 pins, through hole +plcc leaded +0 +20 +20 +Package_LCC +PLCC-28 +PLCC, 28 pins, surface mount +plcc smt +0 +28 +28 +Package_LCC +PLCC-28_SMD-Socket +PLCC, 28 pins, surface mount +plcc smt +0 +28 +28 +Package_LCC +PLCC-28_THT-Socket +PLCC, 28 pins, through hole +plcc leaded +0 +28 +28 +Package_LCC +PLCC-32_11.4x14.0mm_P1.27mm +PLCC, 32 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/doc0015.pdf), generated with kicad-footprint-generator ipc_plcc_jLead_generator.py +PLCC LCC +0 +32 +32 +Package_LCC +PLCC-32_THT-Socket +PLCC, 32 pins, through hole, http://www.assmann-wsw.com/fileadmin/datasheets/ASS_0981_CO.pdf +plcc leaded +0 +32 +32 +Package_LCC +PLCC-44 +PLCC, 44 pins, surface mount +plcc smt +0 +44 +44 +Package_LCC +PLCC-44_16.6x16.6mm_P1.27mm +PLCC, 44 Pin (http://www.microsemi.com/index.php?option=com_docman&task=doc_download&gid=131095), generated with kicad-footprint-generator ipc_plcc_jLead_generator.py +PLCC LCC +0 +44 +44 +Package_LCC +PLCC-44_SMD-Socket +PLCC, 44 pins, surface mount +plcc smt +0 +44 +44 +Package_LCC +PLCC-44_THT-Socket +PLCC, 44 pins, through hole +plcc leaded +0 +44 +44 +Package_LCC +PLCC-52 +PLCC, 52 pins, surface mount +plcc smt +0 +52 +52 +Package_LCC +PLCC-52_SMD-Socket +PLCC, 52 pins, surface mount +plcc smt +0 +52 +52 +Package_LCC +PLCC-52_THT-Socket +PLCC, 52 pins, through hole +plcc leaded +0 +52 +52 +Package_LCC +PLCC-68 +PLCC, 68 pins, surface mount +plcc smt +0 +68 +68 +Package_LCC +PLCC-68_24.2x24.2mm_P1.27mm +PLCC, 68 Pin (http://www.microsemi.com/index.php?option=com_docman&task=doc_download&gid=131095), generated with kicad-footprint-generator ipc_plcc_jLead_generator.py +PLCC LCC +0 +68 +68 +Package_LCC +PLCC-68_SMD-Socket +PLCC, 68 pins, surface mount +plcc smt +0 +68 +68 +Package_LCC +PLCC-68_THT-Socket +PLCC, 68 pins, through hole +plcc leaded +0 +68 +68 +Package_LCC +PLCC-84 +PLCC, 84 pins, surface mount +plcc smt +0 +84 +84 +Package_LCC +PLCC-84_29.3x29.3mm_P1.27mm +PLCC, 84 Pin (http://www.microsemi.com/index.php?option=com_docman&task=doc_download&gid=131095), generated with kicad-footprint-generator ipc_plcc_jLead_generator.py +PLCC LCC +0 +84 +84 +Package_LCC +PLCC-84_SMD-Socket +PLCC, 84 pins, surface mount +plcc smt +0 +84 +84 +Package_LCC +PLCC-84_THT-Socket +PLCC, 84 pins, through hole +plcc leaded +0 +84 +84 +Package_LGA +AMS_LGA-10-1EP_2.7x4mm_P0.6mm +LGA-10, http://ams.com/eng/content/download/951091/2269479/471718 +lga land grid array +0 +13 +11 +Package_LGA +AMS_LGA-20_4.7x4.5mm_P0.65mm +http://ams.com/eng/content/download/1008631/2361759/498838 +AMS LGA +0 +20 +20 +Package_LGA +AMS_OLGA-8_2x3.1mm_P0.8mm +AMS OLGA, 8 Pin (https://ams.com/documents/20143/36005/AS7341_DS000504_3-00.pdf/#page=63) +AMS OLGA NoLead +0 +8 +8 +Package_LGA +Bosch_LGA-8_2.5x2.5mm_P0.65mm_ClockwisePinNumbering +LGA-8 +lga land grid array +0 +8 +8 +Package_LGA +Bosch_LGA-8_2x2.5mm_P0.65mm_ClockwisePinNumbering +LGA-8, https://ae-bst.resource.bosch.com/media/_tech/media/datasheets/BST-BMP280-DS001-18.pdf +lga land grid array +0 +8 +8 +Package_LGA +Bosch_LGA-8_3x3mm_P0.8mm_ClockwisePinNumbering +Bosch LGA, 8 Pin (https://ae-bst.resource.bosch.com/media/_tech/media/datasheets/BST-BME680-DS001-00.pdf#page=44), generated with kicad-footprint-generator ipc_noLead_generator.py +Bosch LGA NoLead +0 +8 +8 +Package_LGA +Bosch_LGA-14_3x2.5mm_P0.5mm +LGA-14 Bosch https://ae-bst.resource.bosch.com/media/_tech/media/datasheets/BST-BMI160-DS000-07.pdf +lga land grid array +0 +14 +14 +Package_LGA +Bosch_LGA-16_4.5x3mm_P0.5mm_LayoutBorder7x1y_ClockwisePinNumbering +Bosch LGA, 16 Pin (https://www.bosch-sensortec.com/media/boschsensortec/downloads/datasheets/bst-bmi088-ds001.pdf#page=55), generated with kicad-footprint-generator ipc_noLead_generator.py +Bosch LGA NoLead +0 +16 +16 +Package_LGA +Infineon_PG-TSNP-6-10_0.7x1.1mm_0.7x1.1mm_P0.4mm +6 lead, 1.1x0.7mm body, 0.37mm height, TSNP (https://www.infineon.com/cms/en/product/packages/PG-TSNP/PG-TSNP-6-10/) +PG-TSNP-6-10 TSNP +0 +12 +6 +Package_LGA +Kionix_LGA-12_2x2mm_P0.5mm_LayoutBorder2x4y +Kionix LGA, 12 Pin (https://www.digikey.com/Site/Global/Layouts/DownloadPdf.ashx?pdfUrl=3557DE8B1578472CBA17FB72BE0052DC#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-8_8x6.2mm_P1.27mm +LGA, 8 Pin (https://datasheet.lcsc.com/lcsc/2303241700_Zetta-ZDSD64GLGEAG-R_C5277948.pdf#page=17), generated with kicad-footprint-generator ipc_noLead_generator.py +LGA NoLead +0 +8 +8 +Package_LGA +LGA-8_8x6mm_P1.27mm +LGA, 8 Pin (https://datasheet.lcsc.com/lcsc/2005251034_XTX-XTSD01GLGEAG_C558837.pdf#page=6), generated with kicad-footprint-generator ipc_noLead_generator.py +LGA NoLead +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 (https://www.st.com/resource/en/datasheet/lis2dh12.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LGA NoLead +0 +14 +14 +Package_LGA +LGA-14_3x2.5mm_P0.5mm_LayoutBorder3x4y +LGA, 14 Pin (https://www.st.com/resource/en/datasheet/lsm6ds3tr-c.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LGA NoLead +0 +14 +14 +Package_LGA +LGA-14_3x5mm_P0.8mm_LayoutBorder1x6y +LGA, 14 Pin (http://www.st.com/resource/en/datasheet/lsm303dlhc.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LGA NoLead +0 +14 +14 +Package_LGA +LGA-16_3x3mm_P0.5mm +http://www.memsic.com/userfiles/files/DataSheets/Magnetic-Sensors-Datasheets/MMC5883MA-RevC.pdf +lga land grid array +0 +16 +16 +Package_LGA +LGA-16_3x3mm_P0.5mm_LayoutBorder3x5y +LGA, 16 Pin (https://www.st.com/resource/en/datasheet/lis331dlh.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LGA NoLead +0 +16 +16 +Package_LGA +LGA-16_4x4mm_P0.65mm_LayoutBorder4x4y +LGA, 16 Pin (http://www.st.com/resource/en/datasheet/l3gd20.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LGA NoLead +0 +16 +16 +Package_LGA +LGA-24L_3x3.5mm_P0.43mm +LGA 24L 3x3.5mm Pitch 0.43mm +LGA 24L 3x3.5mm Pitch 0.43mm +0 +24 +24 +Package_LGA +LGA-28_5.2x3.8mm_P0.5mm +LGA 28 5.2x3.8mm Pitch 0.5mm +LGA 28 5.2x3.8mm Pitch 0.5mm +0 +28 +28 +Package_LGA +Linear_LGA-133_15.0x15.0mm_Layout12x12_P1.27mm +Analog Devices (Linear Tech), 133-pin LGA uModule, 15.0x15.0x4.32mm, https://www.analog.com/media/en/technical-documentation/data-sheets/4637fc.pdf +133 pin lga +0 +133 +133 +Package_LGA +MPS_LGA-18-10EP_12x12mm_P3.3mm +MPS LGA-18 12x12x3.82mm (https://www.monolithicpower.com/en/documentview/productdocument/index/version/2/document_type/Datasheet/lang/en/sku/MPM3550EGLE/document_id/5102/) +MPS LGA +0 +18 +18 +Package_LGA +NXP_LGA-8_3x5mm_P1.25mm_H1.1mm +NXP LGA, 8 Pin (https://www.nxp.com/docs/en/data-sheet/MPL3115A2.pdf#page=42), generated with kicad-footprint-generator ipc_noLead_generator.py +NXP LGA NoLead +0 +8 +8 +Package_LGA +NXP_LGA-8_3x5mm_P1.25mm_H1.2mm +NXP LGA, 8 Pin (https://www.nxp.com/docs/en/data-sheet/MPL115A1.pdf#page=15), generated with kicad-footprint-generator ipc_noLead_generator.py +NXP LGA NoLead +0 +8 +8 +Package_LGA +Nordic_nRF9160-SIxx_LGA-102-59EP_16.0x10.5mm_P0.5mm +nRF9160 (https://docs.nordicsemi.com/bundle/ps_nrf9160/page/mec_spec.html) +Nordic LGA +0 +161 +127 +Package_LGA +Rohm_MLGA010V020A_LGA-10_2x2mm_P0.45mm_LayoutBorder2x3y +Rohm LGA, 10 Pin (https://fscdn.rohm.com/en/techdata_basic/ic/package/Jisso_MLGA010V020A-1-2_Rev005s_E2(MSL3).pdf) +Rohm LGA NoLead +0 +10 +10 +Package_LGA +ST_CCLGA-7L_2.8x2.8mm_P1.15mm_H1.95mm +ST CCLGA, 7 Pin (https://www.st.com/resource/en/datasheet/ilps28qsw.pdf#page=44) +water resistant package +0 +7 +7 +Package_LGA +ST_HLGA-10_2.5x2.5mm_P0.6mm_LayoutBorder3x2y +ST HLGA, 10 Pin (https://www.st.com/resource/en/datasheet/lps25hb.pdf#page=46), generated with kicad-footprint-generator ipc_noLead_generator.py +ST HLGA NoLead +0 +10 +10 +Package_LGA +ST_HLGA-10_2x2mm_P0.5mm_LayoutBorder3x2y +ST HLGA, 10 Pin (https://www.st.com/resource/en/datasheet/lps22hh.pdf#page=55), generated with kicad-footprint-generator ipc_noLead_generator.py +ST HLGA NoLead +0 +10 +10 +Package_LGA +Texas_SIL0008C_MicroSiP-8-1EP_2.8x3mm_P0.65mm_EP1.1x1.9mm +Texas SIL0008C MicroSiP, 8 Pin (http://www.ti.com/lit/ds/symlink/tps82085.pdf#page=20), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas MicroSiP NoLead +0 +11 +9 +Package_LGA +Texas_SIL0008C_MicroSiP-8-1EP_2.8x3mm_P0.65mm_EP1.1x1.9mm_ThermalVias +Texas SIL0008C MicroSiP, 8 Pin (http://www.ti.com/lit/ds/symlink/tps82085.pdf#page=20), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas MicroSiP NoLead +0 +15 +9 +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#page=15), generated with kicad-footprint-generator ipc_noLead_generator.py +VLGA NoLead +0 +4 +4 +Package_LGA +ublox_LGA-53_4.5x4.5mm_Layout9x9_P0.5mm +ublox MIA SoC Module, 4.5x4.5mm, 53 Ball, 9x9 Layout, 0.5mm Pitch, generated with kicad-footprint-generator ipc_bga_generator.py, https://content.u-blox.com/sites/default/files/documents/MIA-M10Q_IntegrationManual_UBX-21028173.pdf#page=82 +LGA 53 0.5 ublox_MIA-M-LGA53 +0 +53 +53 +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 +164 +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 +178 +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 +186 +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 +206 +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 +244 +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 +Hitachi_FP80B_PQFP-80_14x20mm_P0.8mm +Hitachi FP80B PQFP, 80 Pin (Hitachi FP-80B, 2.70mm body thickness, https://www.icbase.com/pdf/HTH/HTH14270106.pdf#page=9, https://bitsavers.trailing-edge.com/components/hitachi/_dataBooks/1994_M24T026_Hitachi_LCD_Controller_Driver_LSI_Data_Book.pdf#page=28), generated with kicad-footprint-generator ipc_gullwing_generator.py +Hitachi PQFP QFP Hitachi_FP-80B +0 +80 +80 +Package_QFP +Hitachi_PQFP-80_14x20mm_P0.8mm +Hitachi PQFP, 80 Pin (Hitachi FP-80B, 2.70mm body thickness, https://www.icbase.com/pdf/HTH/HTH14270106.pdf#page=9, https://bitsavers.trailing-edge.com/components/hitachi/_dataBooks/1994_M24T026_Hitachi_LCD_Controller_Driver_LSI_Data_Book.pdf#page=28), generated with kicad-footprint-generator ipc_gullwing_generator.py +Hitachi PQFP QFP Hitachi_FP-80B +0 +80 +80 +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 (JEDEC MS-026 variation BCB, 1.40mm body thickness, https://www.jedec.org/document_search?search_api_views_fulltext=MS-026, https://www.nxp.com.cn/docs/en/package-information/98ASS23225W.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +LQFP QFP NXP_SOT389-2 Onsemi_CASE-561AA Renesas_44-TQFP Renesas_PPG44D1 Infineon_PG-TQFP-44-801 Analog_ST-44-1 +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 +68 +49 +Package_QFP +LQFP-48_7x7mm_P0.5mm +LQFP, 48 Pin (JEDEC MS-026 variation BBC, 1.40mm body thickness, https://www.jedec.org/document_search?search_api_views_fulltext=MS-026, https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-lqfp/05081760_a_lx48.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +LQFP QFP CASE-932AA CASE-932-03 C48-1 C48-2 C48-3 C48-5 C48-6 C48-6C PT0048A +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 +79 +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/docs/en/package-information/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/docs/en/package-information/98ARH98426A.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +LQFP QFP +0 +116 +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-1EP_14x14mm_P0.5mm_EP6.9x6.9mm +LQFP, 100 Pin (JEDEC MS-026 variation BED with exposed pad, 1.60mm max body thickness, https://www.jedec.org/system/files/docs/MS-026D.pdf, https://www.nxp.com/docs/en/package-information/SOT2229-1.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +LQFP QFP 98ASA02131D SOT2229-1 +0 +110 +101 +Package_QFP +LQFP-100-1EP_14x14mm_P0.5mm_EP6.9x6.9mm_ThermalVias +LQFP, 100 Pin (JEDEC MS-026 variation BED with exposed pad, 1.60mm max body thickness, https://www.jedec.org/system/files/docs/MS-026D.pdf, https://www.nxp.com/docs/en/package-information/SOT2229-1.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +LQFP QFP 98ASA02131D SOT2229-1 +0 +127 +101 +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 (JEDEC MS-026 variation BEE, 1.40mm body thickness, https://www.jedec.org/document_search?search_api_views_fulltext=MS-026, https://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=423), generated with kicad-footprint-generator ipc_gullwing_generator.py +LQFP QFP Microchip_128-Lead-Low-Profile-Plastic-Quad-Flat-Pack-(PT) Renesas_Q128.14x14 +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-1EP_20x20mm_P0.5mm_EP6.5x6.5mm +LQFP, 144 Pin (https://www.infineon.com/dgdl/Infineon-XMC4500-DS-v01_05-EN.pdf?fileId=5546d46254e133b40154e1b56cbe0123), generated with kicad-footprint-generator ipc_gullwing_generator.py +LQFP QFP Infineon-PG-LQFP-144-24 Infineon-PG-LQFP-144-26 +0 +154 +145 +Package_QFP +LQFP-144-1EP_20x20mm_P0.5mm_EP6.5x6.5mm_ThermalVias +LQFP, 144 Pin (https://www.infineon.com/dgdl/Infineon-XMC4500-DS-v01_05-EN.pdf?fileId=5546d46254e133b40154e1b56cbe0123), generated with kicad-footprint-generator ipc_gullwing_generator.py +LQFP QFP Infineon-PG-LQFP-144-24 Infineon-PG-LQFP-144-26 +0 +171 +145 +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-1EP_24x24mm_P0.5mm_EP6.6x6.6mm +LQFP, 176 Pin (https://www.infineon.com/cms/en/product/packages/PG-TQFP/PG-TQFP-176-801/), generated with kicad-footprint-generator ipc_gullwing_generator.py +LQFP QFP Infineon-PG-TQFP-176-801 +0 +202 +177 +Package_QFP +LQFP-176-1EP_24x24mm_P0.5mm_EP6.6x6.6mm_ThermalVias +LQFP, 176 Pin (https://www.infineon.com/cms/en/product/packages/PG-TQFP/PG-TQFP-176-801/), generated with kicad-footprint-generator ipc_gullwing_generator.py +LQFP QFP Infineon-PG-TQFP-176-801 +0 +239 +177 +Package_QFP +LQFP-176_20x20mm_P0.4mm +LQFP, 176 Pin (JEDEC MS-026 variation BFC, 1.40mm body thickness, https://www.jedec.org/document_search?search_api_views_fulltext=MS-026), generated with kicad-footprint-generator ipc_gullwing_generator.py +LQFP QFP Onsemi_CASE-566DB Texas_PBL-(S-PQFP-G176) +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 +MO112AC1_PQFP-52_10x10mm_P0.65mm +MO112AC1 PQFP, 52 Pin (JEDEC MO-112 variation AC-1, https://www.jedec.org/document_search?search_api_views_fulltext=MO-112, https://www.analog.com/media/en/package-pcb-resources/package/32717196300961s_52_2.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +PQFP QFP MQFP S-52-2 high-standoff +0 +52 +52 +Package_QFP +Microchip_PQFP-44_10x10mm_P0.8mm +Microchip PQFP, 44 Pin (JEDEC MO-112 variation AA-2, Microchip and Analog Devices, https://www.jedec.org/document_search?search_api_views_fulltext=MO-112, https://ww1.microchip.com/downloads/aemDocuments/documents/OTH/ProductDocuments/DataSheets/20005418B.pdf#page=10, https://www.analog.com/media/en/technical-documentation/data-sheets/ad7722.pdf#page=23), generated with kicad-footprint-generator ipc_gullwing_generator.py +Microchip PQFP QFP P-QFP 44-Lead-MQFP S-44-2 +0 +44 +44 +Package_QFP +PQFP-44_10x10mm_P0.8mm +PQFP, 44 Pin (JEDEC MS-022 variation AB, https://www.jedec.org/document_search?search_api_views_fulltext=MS-022, https://ww1.microchip.com/downloads/aemDocuments/documents/package-outline-drawings/c04-21291a.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +PQFP QFP P-QFP QQZ M44-2 44L-MQFP-10x10x2mm +0 +44 +44 +Package_QFP +PQFP-64_14x14mm_P0.8mm +PQFP, 64 Pin (https://www.renesas.com/us/en/document/psc/package-drawing-qfp-64pin-prqp0064gb), generated with kicad-footprint-generator ipc_gullwing_generator.py +PQFP QFP +0 +64 +64 +Package_QFP +PQFP-80_14x14mm_P0.65mm +PQFP, 80 Pin (JEDEC MS-022 variation BC, 2.00mm body thickness, https://www.jedec.org/document_search?search_api_views_fulltext=MS-022), generated with kicad-footprint-generator ipc_gullwing_generator.py +PQFP QFP MQFP-80 Infineon_P-MQFP-80-7 +0 +80 +80 +Package_QFP +PQFP-80_14x20mm_P0.8mm +PQFP, 80 Pin (JEITA/EIAJ ED-7311A (variation 80-001-PB) / JEDEC MS-022 (variation GB-2), 2.70mm body thickness, https://www.jeita.or.jp/japanese/standard/book/ED-7311A/#target/page_no=91, https://www.jedec.org/document_search?search_api_views_fulltext=MS-022), generated with kicad-footprint-generator ipc_gullwing_generator.py +PQFP QFP P-QFP080-14.00x20.00-0.80 P-QFP080-1420-0.80 MQFP-80 Onsemi_PQFP80-14x20-/-QIP80E Onsemi_CASE-122BS +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-128_28x28mm_P0.8mm +PQFP, 128 Pin (JEITA/EIAJ ED-7311A (variation 128-001-KD) / JEDEC MS-022 (variation DB-2), 3.40mm body thickness, https://www.jeita.or.jp/japanese/standard/book/ED-7311A/#target/page_no=78, https://www.jedec.org/document_search?search_api_views_fulltext=MS-022), generated with kicad-footprint-generator ipc_gullwing_generator.py +PQFP QFP P-QFP128-28.00x28.00-0.80 P-QFP128-2828-0.80 MQFP-128 +0 +128 +128 +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-168_28x28mm_P0.65mm +PQFP, 168 Pin (https://www.renesas.cn/cn/zh/document/psc/package-drawing-qfp-168pin-prqp0168jb), generated with kicad-footprint-generator ipc_gullwing_generator.py +PQFP QFP +0 +168 +168 +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_5x5mm_P0.5mm +TQFP, 32 Pin (JEDEC MS-026 variation AAA, 1.00mm body thickness, https://www.jedec.org/document_search?search_api_views_fulltext=MS-026), generated with kicad-footprint-generator ipc_gullwing_generator.py +TQFP QFP +0 +32 +32 +Package_QFP +TQFP-32_7x7mm_P0.8mm +TQFP, 32 Pin (JEDEC MS-026 variation ABA, https://www.jedec.org/document_search?search_api_views_fulltext=MS-026, https://ww1.microchip.com/downloads/en/PackagingSpec/00000049BZ.pdf#page=656), generated with kicad-footprint-generator ipc_gullwing_generator.py +TQFP QFP +0 +32 +32 +Package_QFP +TQFP-44-1EP_10x10mm_P0.8mm_EP4.5x4.5mm +TQFP, 44 Pin (JEDEC MS-026 variation ACB, 1.00mm body thickness, custom Exposed Pad from Microchip, https://www.jedec.org/document_search?search_api_views_fulltext=MS-026, https://ww1.microchip.com/downloads/en/PackagingSpec/00000049BZ.pdf#page=662), generated with kicad-footprint-generator ipc_gullwing_generator.py +TQFP QFP Microchip_44-Lead-Plastic-Thin-Quad-Flatpack-(MW) +0 +54 +45 +Package_QFP +TQFP-44-1EP_10x10mm_P0.8mm_EP4.5x4.5mm_ThermalVias +TQFP, 44 Pin (JEDEC MS-026 variation ACB, 1.00mm body thickness, custom Exposed Pad from Microchip, https://www.jedec.org/document_search?search_api_views_fulltext=MS-026, https://ww1.microchip.com/downloads/en/PackagingSpec/00000049BZ.pdf#page=662), generated with kicad-footprint-generator ipc_gullwing_generator.py +TQFP QFP Microchip_44-Lead-Plastic-Thin-Quad-Flatpack-(MW) +0 +71 +45 +Package_QFP +TQFP-44_10x10mm_P0.8mm +TQFP, 44 Pin (JEDEC MS-026 variation ACB, 1.00mm body thickness, https://www.jedec.org/document_search?search_api_views_fulltext=MS-026, https://ww1.microchip.com/downloads/en/PackagingSpec/00000049BZ.pdf#page=658), generated with kicad-footprint-generator ipc_gullwing_generator.py +TQFP QFP Microchip_44-Lead-Plastic-Thin-Quad-Flatpack-(PT) +0 +44 +44 +Package_QFP +TQFP-48-1EP_7x7mm_P0.5mm_EP3.5x3.5mm +TQFP, 48 Pin (JEDEC MS-026 variation ABC, 1.00mm body thickness, custom Exposed Pad from Microchip and Analog Devices, https://www.jedec.org/document_search?search_api_views_fulltext=MS-026, https://ww1.microchip.com/downloads/en/PackagingSpec/00000049BZ.pdf#page=664, https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/tqfp_edsv/sv_48_4.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +TQFP QFP SV-48-4 +0 +53 +49 +Package_QFP +TQFP-48-1EP_7x7mm_P0.5mm_EP3.5x3.5mm_ThermalVias +TQFP, 48 Pin (JEDEC MS-026 variation ABC, 1.00mm body thickness, custom Exposed Pad from Microchip and Analog Devices, https://www.jedec.org/document_search?search_api_views_fulltext=MS-026, https://ww1.microchip.com/downloads/en/PackagingSpec/00000049BZ.pdf#page=664, https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/tqfp_edsv/sv_48_4.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +TQFP QFP SV-48-4 +0 +63 +49 +Package_QFP +TQFP-48-1EP_7x7mm_P0.5mm_EP4.11x4.11mm +TQFP, 48 Pin (https://www.lumissil.com/assets/pdf/core/IS31FL3236_DS.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +TQFP QFP +0 +65 +49 +Package_QFP +TQFP-48-1EP_7x7mm_P0.5mm_EP5x5mm +TQFP, 48 Pin (https://www.trinamic.com/fileadmin/assets/Products/ICs_Documents/TMC2100_datasheet_Rev1.08.pdf (page 45)), generated with kicad-footprint-generator ipc_gullwing_generator.py +TQFP QFP +0 +65 +49 +Package_QFP +TQFP-48-1EP_7x7mm_P0.5mm_EP5x5mm_ThermalVias +TQFP, 48 Pin (https://www.trinamic.com/fileadmin/assets/Products/ICs_Documents/TMC2100_datasheet_Rev1.08.pdf (page 45)), generated with kicad-footprint-generator ipc_gullwing_generator.py +TQFP QFP +0 +91 +49 +Package_QFP +TQFP-48_7x7mm_P0.5mm +TQFP, 48 Pin (JEDEC MS-026 variation ABC, 1.00mm body thickness, https://www.jedec.org/document_search?search_api_views_fulltext=MS-026, https://ww1.microchip.com/downloads/en/PackagingSpec/00000049BZ.pdf#page=666), generated with kicad-footprint-generator ipc_gullwing_generator.py +TQFP QFP P48GA-50-HAA-2 pkg_3304 PTQP0048KC-A C48-11 PFB0048A +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_gullwing_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_gullwing_generator.py +TQFP QFP +0 +95 +53 +Package_QFP +TQFP-64-1EP_10x10mm_P0.5mm_EP5.305x5.305mm +TQFP, 64 Pin (https://www.esstech.com/wp-content/uploads/2022/09/ES9028PRO-Datasheet-v3.7.pdf#page=54), generated with kicad-footprint-generator ipc_gullwing_generator.py +TQFP QFP ESS-eTQFP-64 +0 +81 +65 +Package_QFP +TQFP-64-1EP_10x10mm_P0.5mm_EP5.305x5.305mm_ThermalVias +TQFP, 64 Pin (https://www.esstech.com/wp-content/uploads/2022/09/ES9028PRO-Datasheet-v3.7.pdf#page=54), generated with kicad-footprint-generator ipc_gullwing_generator.py +TQFP QFP ESS-eTQFP-64 +0 +107 +65 +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 +TQFP, 64 Pin (JEDEC MS-026 variation ABD, https://www.jedec.org/document_search?search_api_views_fulltext=MS-026, https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/tqfpsu/su_64_1.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +TQFP QFP SU-64-1 CASE-932BH +0 +64 +64 +Package_QFP +TQFP-64_10x10mm_P0.5mm +TQFP, 64 Pin (JEITA/EIAJ ED-7311A (variation 64-001-TCA) / JEDEC MS-026 (variation ACD), 1.00mm body thickness, https://www.jeita.or.jp/japanese/standard/book/ED-7311A/#target/page_no=30, https://www.jedec.org/document_search?search_api_views_fulltext=MS-026), generated with kicad-footprint-generator ipc_gullwing_generator.py +TQFP QFP P-TQFP064-10.00x10.00-0.50 P-TQFP064-1010-0.50 +0 +64 +64 +Package_QFP +TQFP-64_14x14mm_P0.8mm +TQFP, 64 Pin (JEDEC MS-026 variation AEB, https://www.jedec.org/document_search?search_api_views_fulltext=MS-026, https://ww1.microchip.com/downloads/en/PackagingSpec/00000049BZ.pdf#page=672), generated with kicad-footprint-generator ipc_gullwing_generator.py +TQFP QFP +0 +64 +64 +Package_QFP +TQFP-80-1EP_14x14mm_P0.65mm_EP9.5x9.5mm +TQFP, 80 Pin (Based on JEDEC MS-026 variation AEC, 1.00mm body thickness, lead width / tolerances / custom Exposed Pad from Analog Devices, https://www.jedec.org/document_search?search_api_views_fulltext=MS-026, https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/tqfp_edsv/sv_80_4.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +TQFP QFP Analog-Devices_SV-80-4 +0 +117 +81 +Package_QFP +TQFP-80-1EP_14x14mm_P0.65mm_EP9.5x9.5mm_ThermalVias +TQFP, 80 Pin (Based on JEDEC MS-026 variation AEC, 1.00mm body thickness, lead width / tolerances / custom Exposed Pad from Analog Devices, https://www.jedec.org/document_search?search_api_views_fulltext=MS-026, https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/tqfp_edsv/sv_80_4.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +TQFP QFP Analog-Devices_SV-80-4 +0 +199 +81 +Package_QFP +TQFP-80_12x12mm_P0.5mm +TQFP, 80 Pin (JEDEC MS-026 variation ADD, 1.00mm body thickness, https://www.jedec.org/document_search?search_api_views_fulltext=MS-026, https://ww1.microchip.com/downloads/aemDocuments/documents/package-outline-drawings/c04-00092c.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +TQFP QFP Microchip_X2X +0 +80 +80 +Package_QFP +TQFP-80_14x14mm_P0.65mm +TQFP, 80 Pin (JEDEC MS-026 variation AEC, 1.00mm body thickness, https://www.jedec.org/document_search?search_api_views_fulltext=MS-026, https://ww1.microchip.com/downloads/en/PackagingSpec/00000049BZ.pdf#page=679), generated with kicad-footprint-generator ipc_gullwing_generator.py +TQFP QFP Microsemi_VQ80 NXP_TQFP80 NXP_SOT1093-1 +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 +TQFP, 100 Pin (JEDEC MS-026 variation ADE, 1.00mm body thickness, https://www.jedec.org/document_search?search_api_views_fulltext=MS-026, https://ww1.microchip.com/downloads/en/PackagingSpec/00000049BZ.pdf#page=685), generated with kicad-footprint-generator ipc_gullwing_generator.py +TQFP QFP S100GK-40-9EV-1 pkg_8212 PTQP0100LD-A +0 +100 +100 +Package_QFP +TQFP-100_14x14mm_P0.5mm +TQFP, 100 Pin (JEDEC MS-026 variation AED, 1.00mm body thickness, https://www.jedec.org/document_search?search_api_views_fulltext=MS-026, https://ww1.microchip.com/downloads/en/PackagingSpec/00000049BZ.pdf#page=683), generated with kicad-footprint-generator ipc_gullwing_generator.py +TQFP QFP VQ100 CASE-932AN 983B-01 SOT386-1 C100-1 +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 +TQFP, 128 Pin (JEDEC MS-026 variation AEE, 1.00mm body thickness, https://www.jedec.org/document_search?search_api_views_fulltext=MS-026), generated with kicad-footprint-generator ipc_gullwing_generator.py +TQFP QFP Microsemi_VQ128 Onsemi_CASE-932BB +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_20x20mm_P0.4mm +TQFP, 176 Pin (JEDEC MS-026 variation AFC, 1.00mm body thickness, https://www.jedec.org/document_search?search_api_views_fulltext=MS-026), generated with kicad-footprint-generator ipc_gullwing_generator.py +TQFP QFP Microsemi_VQ176 +0 +176 +176 +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 +Texas_PHP0048E_HTQFP-48-1EP_7x7mm_P0.5mm_EP6.5x6.5mm_Mask3.62x3.62mm +Texas PHP0048E HTQFP, 48 Pin (https://www.ti.com/lit/ds/symlink/tusb4020bi.pdf#page=42), generated with kicad-footprint-generator ipc_gullwing_generator.py +Texas HTQFP QFP +0 +51 +49 +Package_QFP +Texas_PHP0048E_HTQFP-48-1EP_7x7mm_P0.5mm_EP6.5x6.5mm_Mask3.62x3.62mm_ThermalVias +Texas PHP0048E HTQFP, 48 Pin (https://www.ti.com/lit/ds/symlink/tusb4020bi.pdf#page=42), generated with kicad-footprint-generator ipc_gullwing_generator.py +Texas HTQFP QFP +0 +88 +49 +Package_QFP +Texas_TQFP-64-1EP_10x10mm_P0.5mm_EP8x8mm_Mask4.44x4.44mm +Texas TQFP, 64 Pin (Texas PAP0064M, based on JEDEC MS-026 variation ACD, 1.00mm body thickness, https://www.ti.com/lit/ml/pptd078j/pptd078j.pdf, https://www.ti.com/lit/ds/symlink/tusb4041i.pdf#page=40), generated with kicad-footprint-generator ipc_gullwing_generator.py +Texas TQFP QFP Texas_PAP0064M Texas_PowerPAD-64-pin-HTQFP +0 +70 +65 +Package_QFP +Texas_TQFP-64-1EP_10x10mm_P0.5mm_EP8x8mm_Mask4.44x4.44mm_ThermalVias +Texas TQFP, 64 Pin (Texas PAP0064M, based on JEDEC MS-026 variation ACD, 1.00mm body thickness, https://www.ti.com/lit/ml/pptd078j/pptd078j.pdf, https://www.ti.com/lit/ds/symlink/tusb4041i.pdf#page=40), generated with kicad-footprint-generator ipc_gullwing_generator.py +Texas TQFP QFP Texas_PAP0064M Texas_PowerPAD-64-pin-HTQFP +0 +135 +65 +Package_QFP +Texas_TQFP-64-1EP_10x10mm_P0.5mm_EP8x8mm_Mask5x5mm +Texas TQFP, 64 Pin (Texas PAP (S-PQFP-G64), based on JEDEC MS-026 variation ACD, 1.00mm body thickness, https://www.ti.com/lit/ds/symlink/tfp410.pdf#page=41), generated with kicad-footprint-generator ipc_gullwing_generator.py +Texas TQFP QFP Texas_PAP-(S-PQFP-G64) Texas_PowerPAD-64-pin-HTQFP +0 +75 +65 +Package_QFP +Texas_TQFP-64-1EP_10x10mm_P0.5mm_EP8x8mm_Mask5x5mm_ThermalVias +Texas TQFP, 64 Pin (Texas PAP (S-PQFP-G64), based on JEDEC MS-026 variation ACD, 1.00mm body thickness, https://www.ti.com/lit/ds/symlink/tfp410.pdf#page=41), generated with kicad-footprint-generator ipc_gullwing_generator.py +Texas TQFP QFP Texas_PAP-(S-PQFP-G64) Texas_PowerPAD-64-pin-HTQFP +0 +112 +65 +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 +Analog_MSOP-12-16-1EP_3x4.039mm_P0.5mm_EP1.651x2.845mm +Analog MSOP, 12 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-msop/05081871_d_mse16(12).pdf 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 +Analog MSOP SO MSE16-(12) Linear-Technology +0 +17 +13 +Package_SO +Analog_MSOP-12-16-1EP_3x4.039mm_P0.5mm_EP1.651x2.845mm_ThermalVias +Analog MSOP, 12 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-msop/05081871_d_mse16(12).pdf 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 +Analog MSOP SO MSE16-(12) Linear-Technology +0 +24 +13 +Package_SO +Analog_MSOP-12-16_3x4.039mm_P0.5mm +Analog MSOP, 12 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-msop/05081847_b_ms16(12).pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +Analog MSOP SO MS16-(12) Linear-Technology +0 +12 +12 +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-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 (Texas Instruments PWP0016C, based on JEDEC MO-153 variation ABT, 1.00mm body thickness, https://www.ti.com/lit/ml/pptd023ac/pptd023ac.pdf, https://www.ti.com/lit/ds/symlink/drv8833.pdf#page=27, https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +HTSSOP SO Texas_PWP0016C Texas_PowerPAD-TSSOP +0 +20 +17 +Package_SO +HTSSOP-16-1EP_4.4x5mm_P0.65mm_EP3.4x5mm_Mask2.46x2.31mm_ThermalVias +HTSSOP, 16 Pin (Texas Instruments PWP0016C, based on JEDEC MO-153 variation ABT, 1.00mm body thickness, https://www.ti.com/lit/ml/pptd023ac/pptd023ac.pdf, https://www.ti.com/lit/ds/symlink/drv8833.pdf#page=27, https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +HTSSOP SO Texas_PWP0016C Texas_PowerPAD-TSSOP +0 +33 +17 +Package_SO +HTSSOP-16-1EP_4.4x5mm_P0.65mm_EP3.4x5mm_Mask2.66x2.46mm +HTSSOP, 16 Pin (http://www.ti.com/lit/ds/symlink/tps2660.pdf#page=48), generated with kicad-footprint-generator ipc_gullwing_generator.py +HTSSOP SO Texas_PWP0016H +0 +20 +17 +Package_SO +HTSSOP-16-1EP_4.4x5mm_P0.65mm_EP3.4x5mm_Mask2.66x2.46mm_ThermalVias +HTSSOP, 16 Pin (http://www.ti.com/lit/ds/symlink/tps2660.pdf#page=48), generated with kicad-footprint-generator ipc_gullwing_generator.py +HTSSOP SO Texas_PWP0016H +0 +33 +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 Analog-FE-CB +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), generated with kicad-footprint-generator ipc_gullwing_generator.py +HTSSOP SO Maxim-U20E-1 +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 Texas_PWP/R-PDSO-G20 +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 Texas_PWP0020U +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 Texas_PWP0020U +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 Texas_PWP0020T +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 Texas_PWP0020T +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 (JEDEC MO-153 variation ADT, 1.00mm body thickness, custom Exposed Pad size from STMicroelectronics, https://www.jedec.org/document_search?search_api_views_fulltext=MO-153, https://www.st.com/resource/en/datasheet/stp16cp05.pdf#page=25, https://www.st.com/resource/en/datasheet/led1642gw.pdf#page=37), generated with kicad-footprint-generator ipc_gullwing_generator.py +HTSSOP SO +0 +31 +25 +Package_SO +HTSSOP-24-1EP_4.4x7.8mm_P0.65mm_EP3.4x7.8mm_Mask2.4x2.98mm +HTSSOP, 24 Pin (Texas Instruments PWP0024P, based on JEDEC MO-153 variation ADT, 1.00mm body thickness, https://www.ti.com/lit/ml/pptd064i/pptd064i.pdf, https://web.archive.org/web/20170223145154/http://www.ti.com/lit/ds/symlink/tlc5949.pdf#page=49, https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +HTSSOP SO Texas_PWP0024P Texas_PowerPAD +0 +30 +25 +Package_SO +HTSSOP-24-1EP_4.4x7.8mm_P0.65mm_EP3.4x7.8mm_Mask2.4x2.98mm_ThermalVias +HTSSOP, 24 Pin (Texas Instruments PWP0024P, based on JEDEC MO-153 variation ADT, 1.00mm body thickness, https://www.ti.com/lit/ml/pptd064i/pptd064i.pdf, https://web.archive.org/web/20170223145154/http://www.ti.com/lit/ds/symlink/tlc5949.pdf#page=49, https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +HTSSOP SO Texas_PWP0024P Texas_PowerPAD +0 +52 +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 Texas_PWP/R-PDSO-G24 +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 Texas_PWP/R-PDSO-G24 +0 +47 +25 +Package_SO +HTSSOP-24-1EP_4.4x7.8mm_P0.65mm_EP3.4x7.8mm_Mask2.44x3.42mm +HTSSOP, 24 Pin (Texas Instruments PWP0024U, based on JEDEC MO-153 variation ADT, 1.00mm body thickness, https://www.ti.com/lit/ml/pptd402/pptd402.pdf, https://www.ti.com/lit/ds/symlink/tlc5949.pdf#page=50, https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +HTSSOP SO Texas_PWP0024U Texas_PowerPAD +0 +30 +25 +Package_SO +HTSSOP-24-1EP_4.4x7.8mm_P0.65mm_EP3.4x7.8mm_Mask2.44x3.42mm_ThermalVias +HTSSOP, 24 Pin (Texas Instruments PWP0024U, based on JEDEC MO-153 variation ADT, 1.00mm body thickness, https://www.ti.com/lit/ml/pptd402/pptd402.pdf, https://www.ti.com/lit/ds/symlink/tlc5949.pdf#page=50, https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +HTSSOP SO Texas_PWP0024U Texas_PowerPAD +0 +52 +25 +Package_SO +HTSSOP-28-1EP_4.4x9.7mm_P0.65mm_EP2.75x6.2mm +HTSSOP, 28 Pin (https://www.trinamic.com/fileadmin/assets/Support/AppNotes/AN005x-IC_Package_PCB_Footprint_Guidelines_HTSSOP28_rev1.00.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.75x6.2mm_ThermalVias +HTSSOP, 28 Pin (https://www.trinamic.com/fileadmin/assets/Support/AppNotes/AN005x-IC_Package_PCB_Footprint_Guidelines_HTSSOP28_rev1.00.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_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_4.4x9.7mm_P0.5mm_EP1.5x3.3mm +HTSSOP, 38 Pin (JEDEC MO-153 Var BDT-1 https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +HTSSOP SO +0 +41 +39 +Package_SO +HTSSOP-38-1EP_4.4x9.7mm_P0.5mm_EP1.5x3.3mm_ThermalVias +HTSSOP, 38 Pin (JEDEC MO-153 Var BDT-1 https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +HTSSOP SO +0 +51 +39 +Package_SO +HTSSOP-38-1EP_4.4x9.7mm_P0.5mm_EP2.74x4.75mm +HTSSOP, 38 Pin (JEDEC MO-153 Var BDT-1 https://www.jedec.org/document_search?search_api_views_fulltext=MO-153 https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-tssop/tssop_38_05-08-1865.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +HTSSOP SO +0 +45 +39 +Package_SO +HTSSOP-38-1EP_4.4x9.7mm_P0.5mm_EP2.74x4.75mm_ThermalVias +HTSSOP, 38 Pin (JEDEC MO-153 Var BDT-1 https://www.jedec.org/document_search?search_api_views_fulltext=MO-153 https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-tssop/tssop_38_05-08-1865.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +HTSSOP SO +0 +61 +39 +Package_SO +HTSSOP-38-1EP_4.4x9.7mm_P0.5mm_EP3.05x6.65mm +HTSSOP, 38 Pin (JEDEC MO-153 variation BDT-1 (with exposed pad size from Maxim / Analog Devices), https://www.jedec.org/document_search?search_api_views_fulltext=MO-153, https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/tssop-exp/21-0714.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +HTSSOP SO U38E-3C +0 +47 +39 +Package_SO +HTSSOP-38-1EP_4.4x9.7mm_P0.5mm_EP3.05x6.65mm_ThermalVias +HTSSOP, 38 Pin (JEDEC MO-153 variation BDT-1 (with exposed pad size from Maxim / Analog Devices), https://www.jedec.org/document_search?search_api_views_fulltext=MO-153, https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/tssop-exp/21-0714.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +HTSSOP SO U38E-3C +0 +69 +39 +Package_SO +HTSSOP-38-1EP_6.1x12.5mm_P0.65mm_EP5.2x12.5mm_Mask3.39x6.35mm +HTSSOP, 38 Pin (https://www.ti.com/jp/lit/ml/pptd158c/pptd158c.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +HTSSOP SO Texas_DAP Texas_R-PDSO-G38 +0 +46 +39 +Package_SO +HTSSOP-38-1EP_6.1x12.5mm_P0.65mm_EP5.2x12.5mm_Mask3.39x6.35mm_ThermalVias +HTSSOP, 38 Pin (https://www.ti.com/jp/lit/ml/pptd158c/pptd158c.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +HTSSOP SO Texas_DAP Texas_R-PDSO-G38 +0 +87 +39 +Package_SO +HTSSOP-44-1EP_6.1x14mm_P0.635mm_EP5.2x14mm_Mask4.31x8.26mm +HTSSOP, 44 Pin (http://www.ti.com/lit/pdf/pptd165), generated with kicad-footprint-generator ipc_gullwing_generator.py +HTSSOP SO Texas_DDW0044B +0 +61 +45 +Package_SO +HTSSOP-44-1EP_6.1x14mm_P0.635mm_EP5.2x14mm_Mask4.31x8.26mm_ThermalVias +HTSSOP, 44 Pin (http://www.ti.com/lit/pdf/pptd165), generated with kicad-footprint-generator ipc_gullwing_generator.py +HTSSOP SO Texas_DDW0044B +0 +118 +45 +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 Texas_DDV0044D +0 +44 +44 +Package_SO +HTSSOP-56-1EP_6.1x14mm_P0.5mm_EP3.61x6.35mm +HTSSOP56: plastic thin shrink small outline package http://www.ti.com/lit/ds/symlink/drv8301.pdf +HTSSOP 0.5 +0 +72 +57 +Package_SO +HVSSOP-8-1EP_3x3mm_P0.65mm_EP1.57x1.89mm +HVSSOP, 8 Pin (https://www.ti.com/lit/ds/symlink/tpa6110a2.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +HVSSOP SO +0 +13 +9 +Package_SO +HVSSOP-8-1EP_3x3mm_P0.65mm_EP1.57x1.89mm_ThermalVias +HVSSOP, 8 Pin (https://www.ti.com/lit/ds/symlink/tpa6110a2.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +HVSSOP SO +0 +18 +9 +Package_SO +HVSSOP-10-1EP_3x3mm_P0.5mm_EP1.57x1.88mm +HVSSOP, 10 Pin (https://www.ti.com/lit/ds/symlink/bq24090.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +HVSSOP SO +0 +15 +11 +Package_SO +HVSSOP-10-1EP_3x3mm_P0.5mm_EP1.57x1.88mm_ThermalVias +HVSSOP, 10 Pin (https://www.ti.com/lit/ds/symlink/bq24090.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +HVSSOP SO +0 +20 +11 +Package_SO +HVSSOP-10-1EP_3x3mm_P0.5mm_EP1.83x1.89mm +HVSSOP, 10 Pin (https://www.ti.com/lit/ds/symlink/bq24090.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +HVSSOP SO JEDEC-MO-187_BA-T Texas_DGQ0010D +0 +15 +11 +Package_SO +HVSSOP-10-1EP_3x3mm_P0.5mm_EP1.83x1.89mm_ThermalVias +HVSSOP, 10 Pin (https://www.ti.com/lit/ds/symlink/bq24090.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +HVSSOP SO JEDEC-MO-187_BA-T Texas_DGQ0010D +0 +20 +11 +Package_SO +Infineon_PG-DSO-8-24_4x5mm +Infineon PG-DSO, 8 Pin (https://www.infineon.com/dgdl/Infineon-BSP752R-DS-v01_02-EN.pdf?fileId=db3a304316f112290116f233cbd271e9#page=17), generated with kicad-footprint-generator ipc_gullwing_generator.py +Infineon PG-DSO SO +0 +8 +8 +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-8-59_7.5x6.3mm +Infineon PG-DSO, 8 Pin (https://www.infineon.com/dgdl/Infineon-1EDCxxI12AH-DS-v02_00-EN.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +Infineon PG-DSO SO +0 +8 +8 +Package_SO +Infineon_PG-DSO-12-9 +Infineon PG-DSO 12 pin, exposed pad: 4.5x8.1mm, (https://www.infineon.com/cms/en/product/packages/PG-DSO/PG-DSO-12-9/) +PG-DSO +0 +23 +13 +Package_SO +Infineon_PG-DSO-12-9_ThermalVias +Infineon PG-DSO 12 pin, exposed pad: 4.5x8.1mm, with thermal vias (https://www.infineon.com/cms/en/product/packages/PG-DSO/PG-DSO-12-9/) +PG-DSO +0 +42 +13 +Package_SO +Infineon_PG-DSO-12-11 +Infineon PG-DSO 12 pin, exposed pad: 4.5x8.1mm, (https://www.infineon.com/cms/en/product/packages/PG-DSO/PG-DSO-12-11/) +PG-DSO +0 +23 +13 +Package_SO +Infineon_PG-DSO-12-11_ThermalVias +Infineon PG-DSO 12 pin, exposed pad: 4.5x8.1mm, with thermal vias (https://www.infineon.com/cms/en/product/packages/PG-DSO/PG-DSO-12-11/) +PG-DSO +0 +42 +13 +Package_SO +Infineon_PG-DSO-20-30 +Infineon SO package 20pin, exposed pad 4.5x7mm (https://www.infineon.com/cms/en/product/packages/PG-DSO/PG-DSO-20-71/) +DSO-20 +0 +31 +21 +Package_SO +Infineon_PG-DSO-20-30_ThermalVias +Infineon SO package 20pin, exposed pad 4.5x7mm (https://www.infineon.com/cms/en/product/packages/PG-DSO/PG-DSO-20-71/) +DSO-20 +0 +45 +21 +Package_SO +Infineon_PG-DSO-20-32 +Infineon SO package 20pin without exposed pad (https://www.infineon.com/cms/en/product/packages/PG-DSO/PG-DSO-20-32/) +DSO-20 +0 +20 +20 +Package_SO +Infineon_PG-DSO-20-85 +Infineon SO package 20pin with exposed pad (https://www.infineon.com/cms/en/product/packages/PG-DSO/PG-DSO-20-85/) +DSO-20 +0 +31 +21 +Package_SO +Infineon_PG-DSO-20-85_ThermalVias +Infineon SO package 20pin with exposed pad (https://www.infineon.com/cms/en/product/packages/PG-DSO/PG-DSO-20-85/) +DSO-20 +0 +113 +21 +Package_SO +Infineon_PG-DSO-20-87 +Infineon SO package 20pin without exposed pad (https://www.infineon.com/cms/en/product/packages/PG-DSO/PG-DSO-20-87/) +DSO-20 +0 +20 +20 +Package_SO +Infineon_PG-DSO-20-U03_7.5x12.8mm +Infineon PG-DSO, 20 Pin (https://www.infineon.com/dgdl/Infineon-2ED1323S12P_2ED1324S12P-DataSheet-v01_01-EN.pdf?fileId=8ac78c8c869190210186e92f0f506d0c), generated with kicad-footprint-generator ipc_gullwing_generator.py +Infineon PG-DSO SO +0 +20 +20 +Package_SO +Infineon_PG-TSDSO-14-22 +Infineon_PG-TSDSO-14-22 +Infineon TSDSO 14-22 +0 +17 +15 +Package_SO +Infineon_SOIC-20W_7.6x12.8mm_P1.27mm +Infineon SOIC, 20 Pin (https://www.infineon.com/dgdl/Infineon-PG-DSO-20-77_SPO_PDF-Package-v15_00-EN.pdf?fileId=5546d4625c54d85b015c627e1a0c23b3, https://www.infineon.com/dgdl/Infineon-PG-DSO-20-77_FPD_PDF-Footprint-v15_00-EN.pdf?fileId=5546d4625c54d85b015c5f0f49614324), generated with kicad-footprint-generator ipc_gullwing_generator.py +Infineon SOIC SO PG-DSO-20 PG-DSO-20-6 PG-DSO-20-9 PG-DSO-20-31 PG-DSO-20-32 PG-DSO-20-36 PG-DSO-20-43 PG-DSO-20-45 PG-DSO-20-55 PG-DSO-20-66 PG-DSO-20-77 +0 +20 +20 +Package_SO +JEITA_SOIC-8_3.9x4.9mm_P1.27mm +JEITA SOIC, 8 Pin (JEITA/EIAJ ED-7311-19, variation 08-001-ADB, https://www.jeita.or.jp/japanese/standard/book/ED-7311-19/#target/page_no=20), generated with kicad-footprint-generator ipc_gullwing_generator.py +JEITA SOIC SO P-SOP-8 P-SOP08-03.90x04.90-1.27 P-SOP08-0225-1.27 narrow +0 +8 +8 +Package_SO +JEITA_SOIC-16_3.9x9.9mm_P1.27mm +JEITA SOIC, 16 Pin (JEITA/EIAJ ED-7311-19, variation 16-001-ABA, https://www.jeita.or.jp/japanese/standard/book/ED-7311-19/#target/page_no=30), generated with kicad-footprint-generator ipc_gullwing_generator.py +JEITA SOIC SO P-SOP-16 P-SOP16-03.90x09.90-1.27 P-SOP16-0225-1.27 SOIC_N narrow +0 +16 +16 +Package_SO +Linear_HTSSOP-31-38-1EP_4.4x9.7mm_P0.5mm_EP2.74x4.75mm +Linear HTSSOP, 31 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-tssop/tssop_38_05-08-1865.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +Linear HTSSOP SO FE38-(31) +0 +38 +32 +Package_SO +Linear_HTSSOP-31-38-1EP_4.4x9.7mm_P0.5mm_EP2.74x4.75mm_ThermalVias +Linear HTSSOP, 31 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-tssop/tssop_38_05-08-1865.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +Linear HTSSOP SO FE38-(31) +0 +54 +32 +Package_SO +MSOP-8-1EP_3x3mm_P0.65mm_EP1.5x1.8mm +MSOP, 8 Pin (https://www.diodes.com/assets/Package-Files/MSOP-8EP.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +MSOP SO +0 +13 +9 +Package_SO +MSOP-8-1EP_3x3mm_P0.65mm_EP1.5x1.8mm_ThermalVias +MSOP, 8 Pin (https://www.diodes.com/assets/Package-Files/MSOP-8EP.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +MSOP SO +0 +18 +9 +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 +MSOP, 10 Pin (https://www.jedec.org/system/files/docs/mo-187F.pdf variant BA), generated with kicad-footprint-generator ipc_gullwing_generator.py +MSOP SO Texas_DGS0010A +0 +10 +10 +Package_SO +MSOP-12-1EP_3x4.039mm_P0.65mm_EP1.651x2.845mm +MSOP, 12 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-msop/05081666_g_mse12.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +MSOP SO +0 +17 +13 +Package_SO +MSOP-12-1EP_3x4.039mm_P0.65mm_EP1.651x2.845mm_ThermalVias +MSOP, 12 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-msop/05081666_g_mse12.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +MSOP SO +0 +24 +13 +Package_SO +MSOP-12_3x4.039mm_P0.65mm +MSOP, 12 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-msop/05081668_a_ms12.pdf), 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_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 +NXP_HTSSOP-28-1EP_4.4x9.7mm_P0.65mm_EP2.2x3.4mm +HTSSOP, 28 Pin (https://www.nxp.com/docs/en/package-information/SOT1172-3.pdf) +HTSSOP SO +0 +41 +29 +Package_SO +NXP_HTSSOP-28-1EP_4.4x9.7mm_P0.65mm_EP2.2x3.4mm_ThermalVias +HTSSOP, 28 Pin (https://www.nxp.com/docs/en/package-information/SOT1172-3.pdf) +HTSSOP SO +0 +50 +29 +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_751EP_SOIC-4_3.9x4.725mm_P2.54mm +OnSemi 751EP SOIC, 4 Pin (https://www.onsemi.com/pdf/datasheet/mb8s-d.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +OnSemi SOIC SO OnSemi_MB8S OnSemi_SOIC4W +0 +4 +4 +Package_SO +OnSemi_Micro8 +ON Semiconductor Micro8 (Case846A-02): https://www.onsemi.com/pub/Collateral/846A-02.PDF +micro8 +0 +8 +8 +Package_SO +PSOP-44_16.9x27.17mm_P1.27mm +PSOP44: plastic thin shrink small outline package; 44 leads; body width 16.90 mm +PSOP 1.27 +0 +44 +44 +Package_SO +PowerIntegrations_SO-8 +Power-Integrations variant of 8-Lead Plastic Small Outline (SN) - Narrow, 3.90 mm Body [SOIC], see https://ac-dc.power.com/sites/default/files/product-docs/senzero_family_datasheet.pdf +SOIC 1.27 +0 +8 +8 +Package_SO +PowerIntegrations_SO-8B +Power-Integrations variant of 8-Lead Plastic Small Outline (SN) - Narrow, 3.90 mm Body [SOIC], see https://www.mouser.com/ds/2/328/linkswitch-pl_family_datasheet-12517.pdf +SOIC 1.27 +0 +7 +7 +Package_SO +PowerIntegrations_SO-8C +Power-Integrations variant of 8-Lead Plastic Small Outline (SN) - Narrow, 3.90 mm Body [SOIC], see https://www.mouser.com/ds/2/328/linkswitch-pl_family_datasheet-12517.pdf +SOIC 1.27 +0 +7 +7 +Package_SO +PowerIntegrations_eSOP-12B +eSOP-12B SMT Flat Package with Heatsink Tab, see https://ac-dc.power.com/sites/default/files/product-docs/topswitch-jx_family_datasheet.pdf +Power Integrations K Package +0 +12 +12 +Package_SO +PowerPAK_SO-8L_Single +PowerPAK SO-8L Single (https://www.vishay.com/docs/64721/an913.pdf) +PowerPAK SO-8L_Single +0 +13 +5 +Package_SO +PowerPAK_SO-8_Dual +PowerPAK SO-8 Dual (https://www.vishay.com/docs/71655/powerpak.pdf, https://www.vishay.com/docs/72600/72600.pdf) +PowerPAK SO-8 Dual +0 +10 +6 +Package_SO +PowerPAK_SO-8_Single +PowerPAK SO-8 Single (https://www.vishay.com/docs/71655/powerpak.pdf, https://www.vishay.com/docs/72599/72599.pdf) +PowerPAK SO-8 Single +0 +9 +5 +Package_SO +PowerSSO-16-1EP_3.9x4.9mm_P0.5mm_EP2.5x3.61mm +PowerSSO, 16 Pin (https://www.st.com/resource/en/datasheet/vnd7020aj.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +PowerSSO SO +0 +18 +17 +Package_SO +PowerSSO-16-1EP_3.9x4.9mm_P0.5mm_EP2.5x3.61mm_ThermalVias +PowerSSO, 16 Pin (https://www.st.com/resource/en/datasheet/vnd7020aj.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +PowerSSO SO +0 +27 +17 +Package_SO +QSOP-16_3.9x4.9mm_P0.635mm +QSOP, 16 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0055.PDF), generated with kicad-footprint-generator ipc_gullwing_generator.py +QSOP SO +0 +16 +16 +Package_SO +QSOP-20_3.9x8.7mm_P0.635mm +QSOP, 20 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0055.PDF), generated with kicad-footprint-generator ipc_gullwing_generator.py +QSOP SO +0 +20 +20 +Package_SO +QSOP-24_3.9x8.7mm_P0.635mm +QSOP, 24 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0055.PDF), generated with kicad-footprint-generator ipc_gullwing_generator.py +QSOP SO +0 +24 +24 +Package_SO +QSOP-28_3.9x9.9mm_P0.635mm +QSOP, 28 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0055.PDF), generated with kicad-footprint-generator ipc_gullwing_generator.py +QSOP SO +0 +28 +28 +Package_SO +Renesas_SOP-32_11.4x20.75mm_P1.27mm +Renesas SOP, 32 Pin (https://www.renesas.com/en/document/psc/package-drawing-sop-32pin-prsp0032df), generated with kicad-footprint-generator ipc_gullwing_generator.py +Renesas SOP SO +0 +32 +32 +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 +SO, 4 Pin (https://everlightamericas.com/index.php?controller=attachment&id_attachment=3535), generated with kicad-footprint-generator ipc_gullwing_generator.py +SO SO Everlight_EL101X-G +0 +4 +4 +Package_SO +SO-5-6_4.55x3.7mm_P1.27mm +SO, 5 Pin (https://toshiba.semicon-storage.com/us/semiconductor/design-development/package/detail.5pin%20SO6.html), generated with kicad-footprint-generator ipc_gullwing_generator.py +SO SO TLP2310 Toshiba +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-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 SOT109-1 +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, 4 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-5-6_4.4x3.6mm_P1.27mm +SOIC, 5 Pin (JEDEC MO-155, variation AA, 2.50mm nominal body thickness, https://www.jedec.org/system/files/docs/Mo-155a.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOIC SO +0 +5 +5 +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-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_3.81x9.347mm_P2.54mm +SOIC, 8 Pin (https://www.littelfuse.com/assetdocs/littelfuse-integrated-circuits-cpc2014n-datasheet?assetguid=6e3baf84-de75-4ea7-97ce-3a5e05a007c9), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOIC SO +0 +8 +8 +Package_SO +SOIC-8_5.3x5.3mm_P1.27mm +SOIC, 8 Pin (JEITA/EIAJ ED-7311-19 variation 08-001-BBA and Atmel/Microchip, 208 mils width, https://www.jeita.or.jp/japanese/standard/book/ED-7311-19/#target/page_no=21, https://ww1.microchip.com/downloads/en/DeviceDoc/20005045C.pdf#page=23, https://ww1.microchip.com/downloads/en/DeviceDoc/doc2535.pdf#page=162), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOIC SO P-SOP SOP SOP-8 SO SO-8 8S2 S2AE/F K04-056 CASE-751BE SO8W 8-Pin-SOIC PSA W8-2 W8-4 W8MS-1 FPT-8P-M08 +0 +8 +8 +Package_SO +SOIC-8_5.3x6.2mm_P1.27mm +SOIC, 8 Pin (Texas Instruments (based on JEITA/EIAJ 08-001-BBA), 208 mils width, https://www.ti.com/lit/ml/msop001a/msop001a.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOIC SO P-SOP SOP SOP-8 SO SO-8 PS +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-10_3.9x4.9mm_P1mm +SOIC, 10 Pin (https://www.onsemi.com/pub/Collateral/751BQ.PDF), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOIC SO SOIC-10 NB +0 +10 +10 +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 +SOIC, 16 Pin (http://www.ti.com/lit/ml/msop002a/msop002a.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOIC SO Texas_NS Texas_NS0016A +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-012, variation AC, https://www.jedec.org/document_search?search_api_views_fulltext=MS-012, 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 16-pin-NSOP R-16 R-16-S D0016A M2B SO16 SOT109-1 751B SOIC_N narrow +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.es.co.th/Schemetic/PDF/AK5394A.PDF#page=23), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOIC SO +0 +28 +28 +Package_SO +SOIC-32_7.518x20.777mm_P1.27mm +SOIC, 32 Pin (JEDEC MO-119-B, 300 mils width, variation AC, https://www.jedec.org/system/files/docs/Mo-119b.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOIC SO +0 +32 +32 +Package_SO +SOJ-24_7.62x15.875mm_P1.27mm +SOJ, 24 Pin (JEDEC MS-023-A, 300 mils width, variation AA, https://www.jedec.org/system/files/docs/Ms-023a.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOJ SO +0 +24 +24 +Package_SO +SOJ-28_7.62x18.415mm_P1.27mm +SOJ, 28 Pin (JEDEC MS-023-A, 300 mils width, variation AD, https://www.jedec.org/system/files/docs/Ms-023a.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOJ SO +0 +28 +28 +Package_SO +SOJ-28_10.16x18.415mm_P1.27mm +SOJ, 28 Pin (JEDEC MS-027-A, 400 mils width, variation AA, https://www.jedec.org/system/files/docs/Ms-027a.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOJ SO +0 +28 +28 +Package_SO +SOJ-32_7.62x20.955mm_P1.27mm +SOJ, 32 Pin (JEDEC MS-023-A, 300 mils width, variation AE, https://www.jedec.org/system/files/docs/Ms-023a.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOJ SO +0 +32 +32 +Package_SO +SOJ-32_10.16x20.955mm_P1.27mm +SOJ, 32 Pin (JEDEC MS-027-A, 400 mils width, variation AC, https://www.jedec.org/system/files/docs/Ms-027a.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOJ SO +0 +32 +32 +Package_SO +SOJ-36_10.16x23.495mm_P1.27mm +SOJ, 36 Pin (JEDEC MS-027-A, 400 mils width, variation AE, https://www.jedec.org/system/files/docs/Ms-027a.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOJ SO +0 +36 +36 +Package_SO +SOJ-44_10.16x28.575mm_P1.27mm +SOJ, 44 Pin (JEDEC MS-027-A, 400 mils width, variation AH, https://www.jedec.org/system/files/docs/Ms-027a.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOJ SO +0 +44 +44 +Package_SO +SOP-4_3.8x4.1mm_P2.54mm +SOP, 4 Pin (https://www.littelfuse.com/assetdocs/littelfuse-integrated-circuits-cpc1017n-datasheet?assetguid=b4f177f1-629f-4104-97a5-8b8d709e83de), 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-4_7.5x4.1mm_P2.54mm +SOP, 4 Pin (https://www.vishay.com/docs/83515/tclt1000.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOP SO Vishay_TCLT100x +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.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_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-8_6.605x9.655mm_P2.54mm +SOP, 8 Pin (https://www.onsemi.com/pdf/datasheet/hcpl2631m-d.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 +SOP, 16 Pin (https://www.vishay.com/docs/83513/tcmd1000.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOP SO +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_7.495x11.515mm_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-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 +SOP-28_8.4x18.16mm_P1.27mm +SOP, 28 Pin (https://www.issi.com/WW/pdf/62-65C256AL.pdf#page=12), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOP SO +0 +28 +28 +Package_SO +SOP-32_11.305x20.495mm_P1.27mm +SOP, 32 Pin (http://www.issi.com/WW/pdf/61-64C5128AL.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOP SO +0 +32 +32 +Package_SO +SOP-44_12.6x28.5mm_P1.27mm +SOP, 44 Pin (https://www.mxic.com.tw/Lists/Datasheet/Attachments/8177/MX23C6410,%205V,%2064Mb,%20v3.1.pdf#page=5), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOP SO +0 +44 +44 +Package_SO +SOP-44_13.3x28.2mm_P1.27mm +SOP, 44 Pin (https://www.mouser.com/datasheet/2/380/AM29F400B_EOL_21505e8-9219.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOP SO +0 +44 +44 +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-7_6.4x9.7mm_P2.54mm +SSO, 7 Pin (https://wmsc.lcsc.com/wmsc/upload/file/pdf/v2/lcsc/2312161855_BC-BC2213A_C596512.pdf), 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-4_4.4x2.6mm_P1.27mm +SSOP, 4 Pin (https://www.vishay.com/docs/83465/vos618a.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +SSOP SO +0 +4 +4 +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 (https://www.fujitsu.com/uk/Images/MB85RS16.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.3x3mm_P0.65mm +SSOP, 8 Pin (JEDEC MO-150 variation AA, 1.75mm body thickness, https://www.jedec.org/document_search?search_api_views_fulltext=MO-150), generated with kicad-footprint-generator ipc_gullwing_generator.py +SSOP SO +0 +8 +8 +Package_SO +SSOP-10-1EP_3.9x4.9mm_P1mm_EP2.1x3.3mm +SSOP, 10 Pin (http://download.py32.org/%E6%95%B0%E6%8D%AE%E6%89%8B%E5%86%8C/zh-CN/PY32F002A%20%E7%B3%BB%E5%88%97%E6%95%B0%E6%8D%AE%E6%89%8B%E5%86%8C_Rev1.0.pdf#page=44), generated with kicad-footprint-generator ipc_gullwing_generator.py +SSOP SO ESSOP-10 +0 +12 +11 +Package_SO +SSOP-10-1EP_3.9x4.9mm_P1mm_EP2.1x3.3mm_ThermalVias +SSOP, 10 Pin (http://download.py32.org/%E6%95%B0%E6%8D%AE%E6%89%8B%E5%86%8C/zh-CN/PY32F002A%20%E7%B3%BB%E5%88%97%E6%95%B0%E6%8D%AE%E6%89%8B%E5%86%8C_Rev1.0.pdf#page=44), generated with kicad-footprint-generator ipc_gullwing_generator.py +SSOP SO ESSOP-10 +0 +15 +11 +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 +SSOP, 14 Pin (JEDEC MO-150 variation AB, 1.75mm body thickness, https://www.jedec.org/document_search?search_api_views_fulltext=MO-150), generated with kicad-footprint-generator ipc_gullwing_generator.py +SSOP SO +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 +SSOP, 20 Pin (https://www.jedec.org/system/files/docs/Mo-152c.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +SSOP SO JEDEC-MO-152-AC SOT266-1 Nisshinbo-PI-SSOP20-E-A Rohm-SSOP-B20 +0 +20 +20 +Package_SO +SSOP-20_5.3x7.2mm_P0.65mm +SSOP, 20 Pin (JEDEC MO-150 variation AE, 1.75mm body thickness, https://www.jedec.org/document_search?search_api_views_fulltext=MO-150, https://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=396), 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 +SSOP, 24 Pin (JEDEC MO-150 variation AG, 1.75mm body thickness, https://www.jedec.org/document_search?search_api_views_fulltext=MO-150, https://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=398, https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-ssop/ssop_24_05-08-1640.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +SSOP SO +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 +SSOP, 28 Pin (JEDEC MO-150 variation AH, 1.75mm body thickness, https://www.jedec.org/document_search?search_api_views_fulltext=MO-150, https://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=400), generated with kicad-footprint-generator ipc_gullwing_generator.py +SSOP SO +0 +28 +28 +Package_SO +SSOP-40_8.8x17.5mm_P0.8mm +SSOP, 40 Pin (JEITA/EIAJ ED-7311-20 variation 40-001-GABB, 2.40mm body thickness, https://www.jeita.or.jp/japanese/standard/book/ED-7311-20/#target/page_no=114), generated with kicad-footprint-generator ipc_gullwing_generator.py +SSOP SO P-SSOP40-08.80x17.50-0.80 P-SSOP40-0450-0.80 Toshiba_SSOP40-P-450 +0 +40 +40 +Package_SO +SSOP-44_5.3x12.8mm_P0.5mm +44-Lead Plastic Shrink Small Outline (SS)-5.30 mm Body [SSOP] (http://cds.linear.com/docs/en/datasheet/680313fa.pdf) +SSOP 0.5 +0 +44 +44 +Package_SO +SSOP-48_5.3x12.8mm_P0.5mm +SSOP, 48 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-ssop/05081887_A_G48.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +SSOP SO +0 +48 +48 +Package_SO +SSOP-48_7.5x15.9mm_P0.635mm +SSOP48: plastic shrink small outline package; 48 leads; body width 7.5 mm; (see NXP SSOP-TSSOP-VSO-REFLOW.pdf and sot370-1_po.pdf) +SSOP 0.635 +0 +48 +48 +Package_SO +SSOP-56_7.5x18.5mm_P0.635mm +SSOP56: plastic shrink small outline package; 56 leads; body width 7.5 mm; (see NXP SSOP-TSSOP-VSO-REFLOW.pdf and sot371-1_po.pdf) +SSOP 0.635 +0 +56 +56 +Package_SO +STC_SOP-16_3.9x9.9mm_P1.27mm +STC SOP, 16 Pin (https://www.stcmicro.com/datasheet/STC15F2K60S2-en.pdf#page=156), generated with kicad-footprint-generator ipc_gullwing_generator.py +STC SOP SO +0 +16 +16 +Package_SO +ST_MultiPowerSO-30 +MultiPowerSO-30 3EP 16.0x17.2mm Pitch 1mm (http://www.st.com/resource/en/datasheet/vnh2sp30-e.pdf) +MultiPowerSO-30 3EP 16.0x17.2mm Pitch 1mm +0 +33 +33 +Package_SO +ST_PowerSSO-24_SlugDown +ST PowerSSO-24 1EP 7.5x10.3mm Pitch 0.8mm [JEDEC MO-271] (http://www.st.com/resource/en/datasheet/tda7266p.pdf, http://freedatasheets.com/downloads/Technical%20Note%20Powersso24%20TN0054.pdf) +ST PowerSSO-24 1EP 7.5x10.3mm Pitch 0.8mm +0 +25 +25 +Package_SO +ST_PowerSSO-24_SlugDown_ThermalVias +ST PowerSSO-24 1EP 7.5x10.3mm Pitch 0.8mm [JEDEC MO-271] (http://www.st.com/resource/en/datasheet/tda7266p.pdf, http://freedatasheets.com/downloads/Technical%20Note%20Powersso24%20TN0054.pdf) +ST PowerSSO-24 1EP 7.5x10.3mm Pitch 0.8mm +0 +38 +25 +Package_SO +ST_PowerSSO-24_SlugUp +ST PowerSSO-24 1EP 7.5x10.3mm Pitch 0.8mm [JEDEC MO-271] (http://www.st.com/resource/en/datasheet/tda7266p.pdf, http://freedatasheets.com/downloads/Technical%20Note%20Powersso24%20TN0054.pdf) +ST PowerSSO-24 1EP 7.5x10.3mm Pitch 0.8mm +0 +24 +24 +Package_SO +ST_PowerSSO-36_SlugDown +ST PowerSSO-36 1EP 7.5x10.3mm Pitch 0.8mm [JEDEC MO-271] (http://www.st.com/resource/en/datasheet/tda7492p.pdf, http://freedatasheets.com/downloads/Technical%20Note%20Powersso24%20TN0054.pdf) +ST PowerSSO-36 1EP 7.5x10.3mm Pitch 0.8mm +0 +37 +37 +Package_SO +ST_PowerSSO-36_SlugDown_ThermalVias +ST PowerSSO-36 1EP 7.5x10.3mm Pitch 0.8mm [JEDEC MO-271] (http://www.st.com/resource/en/datasheet/tda7492p.pdf, http://freedatasheets.com/downloads/Technical%20Note%20Powersso24%20TN0054.pdf) +ST PowerSSO-36 1EP 7.5x10.3mm Pitch 0.8mm +0 +50 +37 +Package_SO +ST_PowerSSO-36_SlugUp +ST PowerSSO-36 1EP 7.5x10.3mm Pitch 0.8mm [JEDEC MO-271] (http://www.st.com/resource/en/datasheet/tda7492p.pdf, http://freedatasheets.com/downloads/Technical%20Note%20Powersso24%20TN0054.pdf) +ST PowerSSO-36 1EP 7.5x10.3mm Pitch 0.8mm +0 +36 +36 +Package_SO +TI_SO-PowerPAD-8 +8-Lead Plastic PSOP, Exposed Die Pad (TI DDA0008B, see http://www.ti.com/lit/ds/symlink/lm3404.pdf) +SSOP 0.50 exposed pad +0 +12 +9 +Package_SO +TI_SO-PowerPAD-8_ThermalVias +8-pin HTSOP package with 1.27mm pin pitch, compatible with SOIC-8, 3.9x4.9mm² body, exposed pad, thermal vias with large copper area, as proposed in http://www.ti.com/lit/ds/symlink/tps5430.pdf +HTSOP 1.27 +0 +19 +9 +Package_SO +TSOP-5_1.65x3.05mm_P0.95mm +TSOP-5 package (comparable to TSOT-23), https://www.vishay.com/docs/71200/71200.pdf +Jedec MO-193C TSOP-5L +0 +5 +5 +Package_SO +TSOP-6_1.65x3.05mm_P0.95mm +TSOP-6 package (comparable to TSOT-23), https://www.vishay.com/docs/71200/71200.pdf +Jedec MO-193C TSOP-6L +0 +6 +6 +Package_SO +TSOP-I-24_12.4x6mm_P0.5mm +TSOP-I, 24 Pin (https://www.jedec.org/standards-documents/docs/mo-142-d variation AA), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSOP-I SO +0 +24 +24 +Package_SO +TSOP-I-24_14.4x6mm_P0.5mm +TSOP-I, 24 Pin (https://www.jedec.org/standards-documents/docs/mo-142-d variation AB), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSOP-I SO +0 +24 +24 +Package_SO +TSOP-I-24_16.4x6mm_P0.5mm +TSOP-I, 24 Pin (https://www.jedec.org/standards-documents/docs/mo-142-d variation AC), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSOP-I SO +0 +24 +24 +Package_SO +TSOP-I-24_18.4x6mm_P0.5mm +TSOP-I, 24 Pin (https://www.jedec.org/standards-documents/docs/mo-142-d variation AD), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSOP-I SO +0 +24 +24 +Package_SO +TSOP-I-28_11.8x8mm_P0.55mm +TSOP I, 28 pins, 18.8x8mm body, 0.55mm pitch, IPC-calculated pads (http://ww1.microchip.com/downloads/en/devicedoc/doc0807.pdf) +TSOP I 28 pins +0 +28 +28 +Package_SO +TSOP-I-32_11.8x8mm_P0.5mm +TSOP-I, 32 Pin (http://www.issi.com/WW/pdf/61-64C5128AL.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSOP-I SO +0 +32 +32 +Package_SO +TSOP-I-32_12.4x8mm_P0.5mm +TSOP-I, 32 Pin (https://www.jedec.org/standards-documents/docs/mo-142-d variation BA), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSOP-I SO +0 +32 +32 +Package_SO +TSOP-I-32_14.4x8mm_P0.5mm +TSOP-I, 32 Pin (https://www.jedec.org/standards-documents/docs/mo-142-d variation BB), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSOP-I SO +0 +32 +32 +Package_SO +TSOP-I-32_16.4x8mm_P0.5mm +TSOP-I, 32 Pin (https://www.jedec.org/standards-documents/docs/mo-142-d variation BC), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSOP-I SO +0 +32 +32 +Package_SO +TSOP-I-32_18.4x8mm_P0.5mm +TSOP-I, 32 Pin (https://www.jedec.org/standards-documents/docs/mo-142-d variation BD), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSOP-I SO +0 +32 +32 +Package_SO +TSOP-I-32_18.4x8mm_P0.5mm_Reverse +TSOP I, 32 pins, 18.4x8mm body (http://www.futurlec.com/Datasheet/Memory/628128.pdf), reverse mount +TSOP I 32 reverse +0 +32 +32 +Package_SO +TSOP-I-40_12.4x10mm_P0.5mm +TSOP-I, 40 Pin (https://www.jedec.org/standards-documents/docs/mo-142-d variation CA), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSOP-I SO +0 +40 +40 +Package_SO +TSOP-I-40_14.4x10mm_P0.5mm +TSOP-I, 40 Pin (https://www.jedec.org/standards-documents/docs/mo-142-d variation CB), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSOP-I SO +0 +40 +40 +Package_SO +TSOP-I-40_16.4x10mm_P0.5mm +TSOP-I, 40 Pin (https://www.jedec.org/standards-documents/docs/mo-142-d variation CC), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSOP-I SO +0 +40 +40 +Package_SO +TSOP-I-40_18.4x10mm_P0.5mm +TSOP-I, 40 Pin (https://www.jedec.org/standards-documents/docs/mo-142-d variation CD), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSOP-I SO +0 +40 +40 +Package_SO +TSOP-I-48_12.4x12mm_P0.5mm +TSOP-I, 48 Pin (https://www.jedec.org/standards-documents/docs/mo-142-d variation DA), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSOP-I SO +0 +48 +48 +Package_SO +TSOP-I-48_14.4x12mm_P0.5mm +TSOP-I, 48 Pin (https://www.jedec.org/standards-documents/docs/mo-142-d variation DB), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSOP-I SO +0 +48 +48 +Package_SO +TSOP-I-48_16.4x12mm_P0.5mm +TSOP-I, 48 Pin (https://www.jedec.org/standards-documents/docs/mo-142-d variation DC), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSOP-I SO +0 +48 +48 +Package_SO +TSOP-I-48_18.4x12mm_P0.5mm +TSOP-I, 48 Pin (https://www.jedec.org/standards-documents/docs/mo-142-d variation DD), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSOP-I SO +0 +48 +48 +Package_SO +TSOP-I-56_14.4x14mm_P0.5mm +TSOP-I, 56 Pin (https://www.jedec.org/standards-documents/docs/mo-142-d variation EA), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSOP-I SO +0 +56 +56 +Package_SO +TSOP-I-56_16.4x14mm_P0.5mm +TSOP-I, 56 Pin (https://www.jedec.org/standards-documents/docs/mo-142-d variation EB), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSOP-I SO +0 +56 +56 +Package_SO +TSOP-I-56_18.4x14mm_P0.5mm +TSOP-I, 56 Pin (https://www.jedec.org/standards-documents/docs/mo-142-d variation EC), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSOP-I SO +0 +56 +56 +Package_SO +TSOP-II-32_21.0x10.2mm_P1.27mm +32-lead plastic TSOP; Type II +TSOP-II 32 +0 +32 +32 +Package_SO +TSOP-II-40-44_10.16x18.37mm_P0.8mm +TSOP-II, 40 Pin (https://www.renesas.com/us/en/document/psc/package-drawing-tsop2-44pin-ptsb0044ge-e), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSOP-II SO +0 +40 +40 +Package_SO +TSOP-II-44_10.16x18.41mm_P0.8mm +TSOP-II, 44 Pin (http://www.issi.com/WW/pdf/61-64C5128AL.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSOP-II SO +0 +44 +44 +Package_SO +TSOP-II-54_22.2x10.16mm_P0.8mm +54-lead TSOP typ II package +TSOPII TSOP2 +0 +54 +54 +Package_SO +TSSOP-4_4.4x5mm_P4mm +TSSOP, 4 Pin (https://www.onsemi.com/pub/Collateral/MDB8S-D.PDF#page=4), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +4 +4 +Package_SO +TSSOP-8_3x3mm_P0.65mm +TSSOP8: plastic thin shrink small outline package; 8 leads; body width 3 mm; (see NXP SSOP-TSSOP-VSO-REFLOW.pdf and sot505-1_po.pdf) +SSOP 0.65 +0 +8 +8 +Package_SO +TSSOP-8_4.4x3mm_P0.65mm +TSSOP, 8 Pin (JEDEC MO-153 Var AA https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +8 +8 +Package_SO +TSSOP-10_3x3mm_P0.5mm +TSSOP10: plastic thin shrink small outline package; 10 leads; body width 3 mm; (see NXP SSOP-TSSOP-VSO-REFLOW.pdf and sot552-1_po.pdf) +SSOP 0.5 +0 +10 +10 +Package_SO +TSSOP-14-1EP_4.4x5mm_P0.65mm +14-Lead Plastic Thin Shrink Small Outline (ST)-4.4 mm Body [TSSOP] with exposed pad (http://cds.linear.com/docs/en/datasheet/34301fa.pdf) +SSOP 0.65 exposed pad +0 +18 +15 +Package_SO +TSSOP-14_4.4x3.6mm_P0.4mm +TSSOP, 14 Pin (JEDEC MO-194 Var AA https://www.jedec.org/document_search?search_api_views_fulltext=MO-194), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +14 +14 +Package_SO +TSSOP-14_4.4x5mm_P0.65mm +TSSOP, 14 Pin (JEDEC MO-153 variation AB-1, 1.00mm body thickness, https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +14 +14 +Package_SO +TSSOP-16-1EP_4.4x5mm_P0.65mm +FE Package; 16-Lead Plastic TSSOP (4.4mm); Exposed Pad Variation BB; (see Linear Technology 1956f.pdf) +SSOP 0.65 +0 +24 +17 +Package_SO +TSSOP-16-1EP_4.4x5mm_P0.65mm_EP3x3mm +TSSOP, 16 Pin (Allegro A4954 https://www.allegromicro.com/-/media/Files/Datasheets/A4954-Datasheet.ashx), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +21 +17 +Package_SO +TSSOP-16-1EP_4.4x5mm_P0.65mm_EP3x3mm_ThermalVias +TSSOP, 16 Pin (Allegro A4954 https://www.allegromicro.com/-/media/Files/Datasheets/A4954-Datasheet.ashx), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +26 +17 +Package_SO +TSSOP-16_4.4x3.6mm_P0.4mm +TSSOP, 16 Pin (JEDEC MO-194 Var AB https://www.jedec.org/document_search?search_api_views_fulltext=MO-194), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +16 +16 +Package_SO +TSSOP-16_4.4x5mm_P0.65mm +TSSOP, 16 Pin (https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO JEDEC-MO-153-AB Texas_PW0016A Microchip-ST Toshiba-TSSOP16-P-0044-0.65A NXP-SOT403-1 Infineon-P-TSSOP-16-800 +0 +16 +16 +Package_SO +TSSOP-20-1EP_4.4x6.5mm_P0.65mm_EP2.15x3.35mm +TSSOP, 20 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-100132.PDF), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +25 +21 +Package_SO +TSSOP-20_4.4x5mm_P0.4mm +TSSOP, 20 Pin (JEDEC MO-194 Var AC https://www.jedec.org/document_search?search_api_views_fulltext=MO-194), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +20 +20 +Package_SO +TSSOP-20_4.4x5mm_P0.5mm +TSSOP, 20 Pin (JEDEC MO-153 Var BA https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +20 +20 +Package_SO +TSSOP-20_4.4x6.5mm_P0.65mm +TSSOP, 20 Pin (JEDEC MO-153 Var AC https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +20 +20 +Package_SO +TSSOP-24_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 variation AD, 1.00mm body thickness, 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_EP2.74x4.75mm +TSSOP, 28 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/lt3762.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +35 +29 +Package_SO +TSSOP-28-1EP_4.4x9.7mm_P0.65mm_EP2.74x4.75mm_ThermalVias +TSSOP, 28 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/lt3762.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +48 +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-1EP_4.4x9.7mm_P0.65mm_EP3.4x9.7mm_Mask3.1x4.05mm +TSSOP, 28 Pin (Texas Instruments TAS5805M https://www.ti.com/lit/gpn/tas5805m), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +34 +29 +Package_SO +TSSOP-28-1EP_4.4x9.7mm_P0.65mm_EP3.4x9.7mm_Mask3.1x4.05mm_ThermalVias +TSSOP, 28 Pin (Texas Instruments TAS5805M https://www.ti.com/lit/gpn/tas5805m), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +59 +29 +Package_SO +TSSOP-28-1EP_4.4x9.7mm_P0.65mm_EP3.05x7.56mm +TSSOP, 28 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/38921fc.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +37 +29 +Package_SO +TSSOP-28-1EP_4.4x9.7mm_P0.65mm_EP3.05x7.56mm_ThermalVias +TSSOP, 28 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/38921fc.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +53 +29 +Package_SO +TSSOP-28_4.4x7.8mm_P0.5mm +TSSOP, 28 Pin (JEDEC MO-153 Var BC https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +28 +28 +Package_SO +TSSOP-28_4.4x9.7mm_P0.65mm +TSSOP, 28 Pin (JEDEC MO-153 Var AE https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +28 +28 +Package_SO +TSSOP-28_6.1x7.8mm_P0.5mm +TSSOP, 28 Pin (JEDEC MO-153 Var EA https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +28 +28 +Package_SO +TSSOP-28_6.1x9.7mm_P0.65mm +TSSOP, 28 Pin (JEDEC MO-153 Var DB https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +28 +28 +Package_SO +TSSOP-28_8x9.7mm_P0.65mm +TSSOP, 28 Pin (JEDEC MO-153 Var GA https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +28 +28 +Package_SO +TSSOP-30_4.4x7.8mm_P0.5mm +TSSOP, 30 Pin (JEDEC MO-153 Var BC-1 https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +30 +30 +Package_SO +TSSOP-30_6.1x9.7mm_P0.65mm +TSSOP, 30 Pin (JEDEC MO-153 Var DB-1 https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +30 +30 +Package_SO +TSSOP-32_4.4x6.5mm_P0.4mm +TSSOP, 32 Pin (JEDEC MO-153 Var CB https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +32 +32 +Package_SO +TSSOP-32_6.1x11mm_P0.65mm +TSSOP, 32 Pin (JEDEC MO-153 Var DC https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +32 +32 +Package_SO +TSSOP-32_8x11mm_P0.65mm +TSSOP, 32 Pin (JEDEC MO-153 Var GB https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +32 +32 +Package_SO +TSSOP-36_4.4x7.8mm_P0.4mm +TSSOP, 36 Pin (JEDEC MO-153 Var CC https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +36 +36 +Package_SO +TSSOP-36_4.4x9.7mm_P0.5mm +TSSOP, 36 Pin (JEDEC MO-153 Var BD https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +36 +36 +Package_SO +TSSOP-36_6.1x7.8mm_P0.4mm +TSSOP, 36 Pin (JEDEC MO-153 Var FA https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +36 +36 +Package_SO +TSSOP-36_6.1x9.7mm_P0.5mm +TSSOP, 36 Pin (JEDEC MO-153 Var EB https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +36 +36 +Package_SO +TSSOP-36_6.1x12.5mm_P0.65mm +TSSOP, 36 Pin (JEDEC MO-153 Var DD https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +36 +36 +Package_SO +TSSOP-36_8x9.7mm_P0.5mm +TSSOP, 36 Pin (JEDEC MO-153 Var HA https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +36 +36 +Package_SO +TSSOP-36_8x12.5mm_P0.65mm +TSSOP, 36 Pin (JEDEC MO-153 Var GC https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +36 +36 +Package_SO +TSSOP-38_4.4x9.7mm_P0.5mm +TSSOP, 38 Pin (JEDEC MO-153 Var BD https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +38 +38 +Package_SO +TSSOP-38_6.1x12.5mm_P0.65mm +TSSOP, 38 Pin (JEDEC MO-153 Var DD-1 https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +38 +38 +Package_SO +TSSOP-40_6.1x11mm_P0.5mm +TSSOP, 40 Pin (JEDEC MO-153 Var EC https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +40 +40 +Package_SO +TSSOP-40_6.1x14mm_P0.65mm +TSSOP, 40 Pin (JEDEC MO-153 Var DE https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +40 +40 +Package_SO +TSSOP-40_8x11mm_P0.5mm +TSSOP, 40 Pin (JEDEC MO-153 Var HB https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +40 +40 +Package_SO +TSSOP-40_8x14mm_P0.65mm +TSSOP, 40 Pin (JEDEC MO-153 Var GD https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +40 +40 +Package_SO +TSSOP-44_4.4x11.2mm_P0.5mm +TSSOP44: plastic thin shrink small outline package; 44 leads; body width 4.4 mm (see NXP SSOP-TSSOP-VSO-REFLOW.pdf and sot510-1_po.pdf) +SSOP 0.5 +0 +44 +44 +Package_SO +TSSOP-44_4.4x11mm_P0.5mm +TSSOP, 44 Pin (JEDEC MO-153 Var BE https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +44 +44 +Package_SO +TSSOP-44_6.1x11mm_P0.5mm +TSSOP, 44 Pin (JEDEC MO-153 Var EC-1 https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +44 +44 +Package_SO +TSSOP-48_4.4x9.7mm_P0.4mm +TSSOP, 48 Pin (JEDEC MO-153 Var CD https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +48 +48 +Package_SO +TSSOP-48_6.1x9.7mm_P0.4mm +TSSOP, 48 Pin (JEDEC MO-153 Var FB https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +48 +48 +Package_SO +TSSOP-48_6.1x12.5mm_P0.5mm +TSSOP, 48 Pin (JEDEC MO-153 Var ED https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +48 +48 +Package_SO +TSSOP-48_8x9.7mm_P0.4mm +TSSOP, 48 Pin (JEDEC MO-153 Var JA https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +48 +48 +Package_SO +TSSOP-48_8x12.5mm_P0.5mm +TSSOP, 48 Pin (JEDEC MO-153 Var HC https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +48 +48 +Package_SO +TSSOP-50_4.4x12.5mm_P0.5mm +TSSOP, 50 Pin (JEDEC MO-153 Var BF https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +50 +50 +Package_SO +TSSOP-52_6.1x11mm_P0.4mm +TSSOP, 52 Pin (JEDEC MO-153 Var FC https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +52 +52 +Package_SO +TSSOP-52_8x11mm_P0.4mm +TSSOP, 52 Pin (JEDEC MO-153 Var JB https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +52 +52 +Package_SO +TSSOP-56_4.4x11.3mm_P0.4mm +TSSOP, 56 Pin (JEDEC MO-194 Var AF https://www.jedec.org/document_search?search_api_views_fulltext=MO-194), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +56 +56 +Package_SO +TSSOP-56_6.1x12.5mm_P0.4mm +TSSOP, 56 Pin (JEDEC MO-153 Var FD https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +56 +56 +Package_SO +TSSOP-56_6.1x14mm_P0.5mm +TSSOP, 56 Pin (JEDEC MO-153 Var EE https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +56 +56 +Package_SO +TSSOP-56_8x12.5mm_P0.4mm +TSSOP, 56 Pin (JEDEC MO-153 Var JC https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +56 +56 +Package_SO +TSSOP-56_8x14mm_P0.5mm +TSSOP, 56 Pin (JEDEC MO-153 Var HD https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +56 +56 +Package_SO +TSSOP-60_8x12.5mm_P0.4mm +TSSOP, 60 Pin (JEDEC MO-153 Var JC-1 https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +60 +60 +Package_SO +TSSOP-64_6.1x14mm_P0.4mm +TSSOP, 64 Pin (JEDEC MO-153 Var FE https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +64 +64 +Package_SO +TSSOP-64_6.1x17mm_P0.5mm +TSSOP, 64 Pin (JEDEC MO-153 Var EF https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +64 +64 +Package_SO +TSSOP-64_8x14mm_P0.4mm +TSSOP, 64 Pin (JEDEC MO-153 Var JD https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +64 +64 +Package_SO +TSSOP-68_8x14mm_P0.4mm +TSSOP, 68 Pin (JEDEC MO-153 Var JD-1 https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +68 +68 +Package_SO +TSSOP-80_6.1x17mm_P0.4mm +TSSOP, 80 Pin (JEDEC MO-153 Var FF https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +80 +80 +Package_SO +TSSOP-100_6.1x20.8mm_P0.4mm +TSSOP, 100 Pin (JEDEC MO-194 Var BB https://www.jedec.org/document_search?search_api_views_fulltext=MO-194), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +100 +100 +Package_SO +Texas_DAD0032A_HTSSOP-32_6.1x11mm_P0.65mm_TopEP3.71x3.81mm +Texas DAD0032A HTSSOP, 32 Pin (https://www.ti.com/lit/ds/symlink/tpa3116d2.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +Texas HTSSOP SO PowerPAD +0 +32 +32 +Package_SO +Texas_DGN0008B_VSSOP-8-1EP_3x3mm_P0.65mm_EP2x3mm_Mask1.88x1.98mm +Texas DGN0008B VSSOP, 8 Pin (https://www.ti.com/lit/ds/symlink/tps7a4101.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +Texas VSSOP SO +0 +11 +9 +Package_SO +Texas_DGN0008B_VSSOP-8-1EP_3x3mm_P0.65mm_EP2x3mm_Mask1.88x1.98mm_ThermalVias +Texas DGN0008B VSSOP, 8 Pin (https://www.ti.com/lit/ds/symlink/tps7a4101.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +Texas VSSOP SO +0 +21 +9 +Package_SO +Texas_DGN0008D_VSSOP-8-1EP_3x3mm_P0.65mm_EP2x2.94mm_Mask1.57x1.89mm +Texas DGN0008D VSSOP, 8 Pin (https://www.ti.com/lit/ds/symlink/tpa711.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +Texas VSSOP SO +0 +11 +9 +Package_SO +Texas_DGN0008D_VSSOP-8-1EP_3x3mm_P0.65mm_EP2x2.94mm_Mask1.57x1.89mm_ThermalVias +Texas DGN0008D VSSOP, 8 Pin (https://www.ti.com/lit/ds/symlink/tpa711.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +Texas VSSOP SO +0 +19 +9 +Package_SO +Texas_DGN0008G_VSSOP-8-1EP_3x3mm_P0.65mm_EP2x2.94mm_Mask1.846x2.15mm +Texas DGN0008G VSSOP, 8 Pin (https://www.ti.com/lit/ds/symlink/tpa711.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +Texas VSSOP SO +0 +11 +9 +Package_SO +Texas_DGN0008G_VSSOP-8-1EP_3x3mm_P0.65mm_EP2x2.94mm_Mask1.846x2.15mm_ThermalVias +Texas DGN0008G VSSOP, 8 Pin (https://www.ti.com/lit/ds/symlink/tpa711.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +Texas VSSOP SO +0 +21 +9 +Package_SO +Texas_DGS0020A_TSSOP-20_3x5.1mm_P0.5mm +Texas DGS0020A TSSOP, 20 Pin (https://www.ti.com/lit/ds/symlink/mspm0c1104.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +Texas TSSOP SO +0 +20 +20 +Package_SO +Texas_DKD0036A_HSSOP-36_11x15.9mm_P0.65mm_TopEP5.85x12.65mm +Texas DKD0036A HSSOP, 36 Pin (https://www.ti.com/lit/ml/pptd185d/pptd185d.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +Texas HSSOP SO PowerPAD +0 +36 +36 +Package_SO +Texas_DYY0016A_TSOT-23-16_2x4.2mm_P0.5mm +Texas DYY0016A TSSOP, 16 Pin (https://www.ti.com/lit/ds/symlink/tmux1574.pdf#page=42), generated with kicad-footprint-generator ipc_gullwing_generator.py +Texas TSSOP SO SOT-23-THIN +0 +16 +16 +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_HTSSOP-14-1EP_4.4x5mm_P0.65mm_EP3.4x5mm_Mask3.155x3.255mm +Texas HTSSOP, 14 Pin (Texas Instruments PWP0014A, based on JEDEC MO-153 variation ABT-1, 1.00mm body thickness, https://www.ti.com/lit/ml/pptd287a/pptd287a.pdf, https://www.ti.com/lit/ds/symlink/lm5161.pdf#page=34, https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +Texas HTSSOP SO Texas_PowerPAD-TSSOP +0 +20 +15 +Package_SO +Texas_HTSSOP-14-1EP_4.4x5mm_P0.65mm_EP3.4x5mm_Mask3.155x3.255mm_ThermalVias +Texas HTSSOP, 14 Pin (Texas Instruments PWP0014A, based on JEDEC MO-153 variation ABT-1, 1.00mm body thickness, https://www.ti.com/lit/ml/pptd287a/pptd287a.pdf, https://www.ti.com/lit/ds/symlink/lm5161.pdf#page=34, https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +Texas HTSSOP SO Texas_PowerPAD-TSSOP +0 +36 +15 +Package_SO +Texas_PW0020A_TSSOP-20_4.4x6.5mm_P0.65mm +Texas PW0020A TSSOP, 20 Pin (https://www.ti.com/lit/ml/mpds362a/mpds362a.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +Texas TSSOP SO +0 +20 +20 +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_PWP0028V_TSSOP-28-1EP_4.4x9.7mm_P0.65mm_EP3.4x9.7mm_Mask2.94x5.62mm +Texas PWP0028V TSSOP, 28 Pin (https://www.ti.com/lit/ds/symlink/lm5176.pdf?ts=1728516913971&ref_url=https%253A%252F%252Fwww.ti.com%252Fproduct%252FLM5176), generated with kicad-footprint-generator ipc_gullwing_generator.py +Texas TSSOP SO +0 +40 +29 +Package_SO +Texas_PWP0028V_TSSOP-28-1EP_4.4x9.7mm_P0.65mm_EP3.4x9.7mm_Mask2.94x5.62mm_ThermalVias +Texas PWP0028V TSSOP, 28 Pin (https://www.ti.com/lit/ds/symlink/lm5176.pdf?ts=1728516913971&ref_url=https%253A%252F%252Fwww.ti.com%252Fproduct%252FLM5176), generated with kicad-footprint-generator ipc_gullwing_generator.py +Texas TSSOP SO +0 +65 +29 +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_S-PDSO-G8_3x3mm_P0.65mm +plastic small outline, https://www.ti.com/lit/ml/mpds028d/mpds028d.pdf, https://www.ti.com/lit/ds/symlink/dac8552.pdf#page=23 +DGK VSSOP SO +0 +8 +8 +Package_SO +Toshiba_SOIC-4-6_4.4x3.6mm_P1.27mm +Toshiba SOIC, 4 Pin (https://toshiba.semicon-storage.com/eu/semiconductor/design-development/package/detail.4pin%20MFSOP6.html), generated with kicad-footprint-generator ipc_gullwing_generator.py +Toshiba SOIC SO Toshiba_11-4C1 Toshiba_MFSOP-4-6 +0 +4 +4 +Package_SO +Toshiba_SOIC-5-6_4.4x3.6mm_P1.27mm +Toshiba SOIC, 5 Pin (https://toshiba.semicon-storage.com/eu/semiconductor/design-development/package/detail.5pin%20MFSOP6.html), generated with kicad-footprint-generator ipc_gullwing_generator.py +Toshiba SOIC SO Toshiba_11-4C2 Toshiba_MFSOP-5-6 +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 Pin (https://www.jedec.org/standards-documents/docs/mo-187-f), generated with kicad-footprint-generator ipc_gullwing_generator.py +VSSOP SO JEDEC-MO-187-CA Texas_DCU0008A +0 +8 +8 +Package_SO +VSSOP-8_3x3mm_P0.65mm +VSSOP, 8 Pin (https://www.jedec.org/standards-documents/docs/mo-187-f), generated with kicad-footprint-generator ipc_gullwing_generator.py +VSSOP SO JEDEC-MO-187-AA Texas_DGK0008A +0 +8 +8 +Package_SO +VSSOP-10_3x3mm_P0.5mm +VSSOP, 10 Pin (http://www.ti.com/lit/ds/symlink/ads1115.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +VSSOP SO +0 +10 +10 +Package_SO +Vishay_PowerPAK_1212-8_Dual +PowerPAK 1212-8 Dual (https://www.vishay.com/docs/71656/ppak12128.pdf, https://www.vishay.com/docs/72598/72598.pdf) +Vishay_PowerPAK_1212-8_Dual +0 +6 +6 +Package_SO +Vishay_PowerPAK_1212-8_Single +PowerPAK 1212-8 Single (https://www.vishay.com/docs/71656/ppak12128.pdf, https://www.vishay.com/docs/72597/72597.pdf) +Vishay PowerPAK 1212-8 Single +0 +5 +5 +Package_SO +Zetex_SM8 +Zetex, SMD, 8 pin package (http://datasheet.octopart.com/ZDT6758TA-Zetex-datasheet-68057.pdf) +Zetex SM8 +0 +8 +8 +Package_SON +Diodes_PowerDI3333-8 +Diodes Incorporated PowerDI3333-8, Plastic Dual Flat No Lead Package, 3.3x3.3x0.8mm Body, https://www.diodes.com/assets/Package-Files/PowerDI3333-8.pdf +PowerDI 0.65 +0 +13 +5 +Package_SON +Diodes_PowerDI3333-8_UXC_3.3x3.3mm_P0.65mm +Diodes Incorporated PowerDI3333-8 UXC, 3.05x3.05x0.8mm Body, https://www.diodes.com/assets/Package-Files/PowerDI3333-8%20(Type%20UXC).pdf +PowerDI 0.65 +0 +14 +6 +Package_SON +EPSON_CE-USON-10_USON-10_3.2x2.5mm_P0.7mm +EPSON 2.5x3.7mm, https://www.microcrystal.com/fileadmin/Media/Products/RTC/Datasheet/RV-1805-C3.pdf +RTC +0 +10 +10 +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 +6 +3 +Package_SON +HVSON-8-1EP_3x3mm_P0.65mm_EP1.6x2.4mm +HVSON, 8 Pin (https://www.nxp.com/docs/en/data-sheet/TJA1051.pdf#page=16), generated with kicad-footprint-generator ipc_noLead_generator.py +HVSON NoLead +0 +13 +9 +Package_SON +HVSON-8-1EP_4x4mm_P0.8mm_EP2.2x3.1mm +HVSON, 8 Pin (https://www.nxp.com/docs/en/data-sheet/PCF8523.pdf (page 57)), generated with kicad-footprint-generator ipc_noLead_generator.py +HVSON NoLead +0 +13 +9 +Package_SON +Infineon_PG-LSON-8-1 +https://www.infineon.com/cms/en/product/packages/PG-LSON/PG-LSON-8-1/ +PG-LSON-8-1 +0 +17 +9 +Package_SON +Infineon_PG-TDSON-8_6.15x5.15mm +Infineon, PG-TDSON-8, 6.15x5.15x1mm, https://www.infineon.com/dgdl/Infineon-BSC520N15NS3_-DS-v02_02-en.pdf?fileId=db3a30432239cccd0122eee57d9b21a4 +Infineon OptiMOS +0 +21 +5 +Package_SON +Infineon_PG-TISON-8-2 +Infineon, PG-TISON-8-2, 5x6x1.15mm, 1.27mm Pitch, Exposed Paddle, https://www.infineon.com/cms/en/product/packages/PG-TISON/PG-TISON-8-2/ +tison +0 +23 +7 +Package_SON +Infineon_PG-TISON-8-3 +Infineon, PG-TISON-8-2, 5x6x1.15mm, 1.27mm Pitch, Exposed Paddle, https://www.infineon.com/cms/en/product/packages/PG-TISON/PG-TISON-8-2/ +tison +0 +23 +7 +Package_SON +Infineon_PG-TISON-8-4 +Infineon, PG-TISON-8-4, 5x6x1.15mm, 1.27mm Pitch, Exposed Paddle, https://www.infineon.com/cms/en/product/packages/PG-TISON/PG-TISON-8-4/ +tison +0 +26 +8 +Package_SON +Infineon_PG-TISON-8-5 +Infineon, PG-TISON-8-5, 8x8x1.1mm, 1mm Pitch, https://www.infineon.com/cms/en/product/packages/PG-TISON/PG-TISON-8-5/ +tison +0 +34 +8 +Package_SON +MPS_USON-6_1.2x1.6mm_P0.5mm +MPS USON, 6 Pin (https://www.monolithicpower.com/en/documentview/productdocument/index/version/2/document_type/Datasheet/lang/en/sku/MP2151/document_id/4678/#page=21), generated with kicad-footprint-generator ipc_noLead_generator.py +MPS USON NoLead +0 +6 +6 +Package_SON +MPS_VSON-6_1x1.5mm_P0.5mm +MPS VSON, 6 Pin (https://www.monolithicpower.com/en/documentview/productdocument/index/version/2/document_type/Datasheet/lang/en/sku/MP21148/document_id/1006/#page=14), generated with kicad-footprint-generator ipc_noLead_generator.py +MPS VSON NoLead +0 +6 +6 +Package_SON +MicroCrystal_C7_SON-8_1.5x3.2mm_P0.9mm +MicroCrystal C7 SON, 8 Pin (https://www.microcrystal.com/fileadmin/Media/Products/RTC/App.Manual/RV-3028-C7_App-Manual.pdf#page=107), generated with kicad-footprint-generator ipc_noLead_generator.py +MicroCrystal SON NoLead MicroCrystal-RV3028-C7 +0 +8 +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 +Nexperia_HUSON-8_USON-8-1EP_1.35x1.7mm_P0.4mm_EP0.4x1.2mm +Nexperia HUSON-8 USON, 8 Pin (https://assets.nexperia.com/documents/data-sheet/IP4251_52_53_54-TTL.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +Nexperia USON NoLead +0 +10 +9 +Package_SON +Nexperia_HUSON-12_USON-12-1EP_1.35x2.5mm_P0.4mm_EP0.4x2mm +Nexperia HUSON-12 USON, 12 Pin (https://assets.nexperia.com/documents/data-sheet/IP4251_52_53_54-TTL.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +Nexperia USON NoLead +0 +14 +13 +Package_SON +Nexperia_HUSON-16_USON-16-1EP_1.35x3.3mm_P0.4mm_EP0.4x2.8mm +Nexperia HUSON-16 USON, 16 Pin (https://assets.nexperia.com/documents/data-sheet/IP4251_52_53_54-TTL.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +Nexperia USON NoLead +0 +18 +17 +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 +ST_PowerFLAT-6L_5x6mm_P1.27mm +Thermally-enhanced 5x6mm 6-pin package, https://www.st.com/resource/en/datasheet/stl40dn3llh5.pdf +PowerFLAT5x6 +0 +10 +6 +Package_SON +ST_PowerFLAT_HV-5_8x8mm +High-Voltage 5-pin package, https://www.st.com/resource/en/datasheet/sctl35n65g2v.pdf +PowerFLAT8x8 +0 +5 +5 +Package_SON +ST_PowerFLAT_HV-8_5x6mm +High-Voltage 8-pin package, https://www.st.com/resource/en/datasheet/sgt65r65al.pdf +PowerFLAT5x6 +0 +17 +8 +Package_SON +Texas_DPY0002A_0.6x1mm_P0.65mm +X1SON 2 pin 0.6x1mm 0.375mm height package, https://www.ti.com/lit/ml/mpss034c/mpss034c.pdf, https://www.ti.com/lit/ds/symlink/tpd6e05u06.pdf +X1SON +0 +2 +2 +Package_SON +Texas_DQK +Texas WSON-6 DQK, http://www.ti.com/lit/ds/symlink/csd16301q2.pdf +Texas WSON6 2x2mm +0 +10 +8 +Package_SON +Texas_DQX002A +Texas DQX - 2pin WSON, 2.5x1.7mm body, 0.8mm height. https://www.ti.com/lit/ds/symlink/lmt01.pdf +WSON-2 DQX +0 +2 +2 +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_DRX_WSON-10_2.5x2.5mm_P0.5mm +Texas DRX WSON, 10 Pin (https://www.ti.com/lit/ml/mpss105a/mpss105a.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas WSON NoLead +0 +10 +10 +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_DSG0008A_WSON-8-1EP_2x2mm_P0.5mm_EP0.9x1.6mm +Texas DSG0008A WSON, 8 Pin (https://www.ti.com/lit/ds/symlink/mspm0c1104.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas WSON NoLead +0 +11 +9 +Package_SON +Texas_DSG0008A_WSON-8-1EP_2x2mm_P0.5mm_EP0.9x1.6mm_ThermalVias +Texas DSG0008A WSON, 8 Pin (https://www.ti.com/lit/ds/symlink/mspm0c1104.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas WSON NoLead +0 +14 +9 +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 +11 +7 +Package_SON +Texas_R-PUSON-N8_USON-8-1EP_1.6x2.1mm_P0.5mm_EP0.4x1.7mm +USON, 8 Pin (https://www.ti.com/lit/gpn/tpd3f303#page=15), generated with kicad-footprint-generator ipc_noLead_generator.py +USON NoLead +0 +10 +9 +Package_SON +Texas_R-PUSON-N14 +USON, 14 Pin (https://www.ti.com/lit/ds/symlink/tpd6e05u06.pdf#page=28), generated with kicad-footprint-generator ipc_noLead_generator.py +USON NoLead +0 +14 +14 +Package_SON +Texas_R-PWSON-N12_EP0.4x2mm +http://www.ti.com/lit/ds/symlink/tpd6f003.pdf +WSON SMD +0 +16 +13 +Package_SON +Texas_S-PDSO-N12 +http://www.ti.com/lit/ds/symlink/bq27441-g1.pdf +SON thermal pads +0 +28 +13 +Package_SON +Texas_S-PVSON-N8 +8-Lead Plastic VSON, 3x3mm Body, 0.65mm Pitch, S-PVSON-N8, http://www.ti.com/lit/ds/symlink/opa2333.pdf +DFN 0.65 S-PVSON-N8 +0 +21 +9 +Package_SON +Texas_S-PVSON-N8_ThermalVias +8-Lead Plastic VSON, 3x3mm Body, 0.65mm Pitch, S-PVSON-N8, http://www.ti.com/lit/ds/symlink/opa2333.pdf +DFN 0.65 S-PVSON-N8 +0 +27 +9 +Package_SON +Texas_S-PVSON-N10 +3x3mm Body, 0.5mm Pitch, S-PVSON-N10, DRC, http://www.ti.com/lit/ds/symlink/tps61201.pdf +0.5 S-PVSON-N10 DRC +0 +33 +11 +Package_SON +Texas_S-PVSON-N10_ThermalVias +3x3mm Body, 0.5mm Pitch, S-PVSON-N10, DRC, http://www.ti.com/lit/ds/symlink/tps61201.pdf +0.5 S-PVSON-N10 DRC +0 +39 +11 +Package_SON +Texas_S-PWSON-N8_EP1.2x2mm +WSON, 8 Pin (http://www.ti.com/lit/ds/symlink/lp2951.pdf#page=27), generated with kicad-footprint-generator ipc_noLead_generator.py +WSON NoLead +0 +11 +9 +Package_SON +Texas_S-PWSON-N8_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 +Texas_S-PWSON-N10 +3x3mm Body, 0.5mm Pitch, S-PWSON-N10, DSC, http://www.ti.com/lit/ds/symlink/tps63060.pdf +0.5 S-PWSON-N10 DSC +0 +41 +11 +Package_SON +Texas_S-PWSON-N10_ThermalVias +3x3mm Body, 0.5mm Pitch, S-PWSON-N10, DSC, http://www.ti.com/lit/ds/symlink/tps63060.pdf +0.5 S-PWSON-N10 DSC +0 +47 +11 +Package_SON +Texas_USON-6_1x1.45mm_P0.5mm_SMD +USON, 6 Pin (https://www.ti.com/lit/ds/symlink/sn74auc1g04.pdf#page=24), Solder Mask Defined +USON NoLead DRY0006A +0 +6 +6 +Package_SON +Texas_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_SON +Texas_X2SON-4-1EP_1.1x1.4mm_P0.5mm_EP0.8x0.6mm +Texas X2SON, 4 Pin (http://www.ti.com/lit/ds/symlink/drv5032.pdf#page=28), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas X2SON NoLead +0 +6 +5 +Package_SON +Texas_X2SON-4-1EP_1.1x1.4mm_P0.5mm_EP0.8x0.6mm_ThermalVias +Texas X2SON, 4 Pin (http://www.ti.com/lit/ds/symlink/drv5032.pdf#page=28), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas X2SON NoLead +0 +8 +5 +Package_SON +Texas_X2SON-4_1x1mm_P0.65mm +X2SON 5 pin 1x1mm package, DQN0004A (Reference Datasheet: http://www.ti.com/lit/ds/sbvs193d/sbvs193d.pdf Reference part: TPS383x) [StepUp generated footprint] +X2SON +0 +13 +5 +Package_SON +Texas_X2SON-5_0.8x0.8mm_P0.48mm +X2SON 5 pin 0.8x0.8mm package (Reference Datasheet: https://www.ti.com/lit/ds/symlink/sn74lvc1g17.pdf#page=39 Reference part: SN74LVC1G17) [StepUp generated footprint] +X2SON DPW0005A +0 +9 +5 +Package_SON +Texas_X2SON-5_0.8x0.8mm_P0.48mm_RoutingVia +X2SON 5 pin 0.8x0.8mm package (Reference Datasheet: https://www.ti.com/lit/ds/symlink/sn74lvc1g17.pdf#page=39 Reference part: SN74LVC1G17) [StepUp generated footprint] +X2SON DPW0005A +0 +10 +5 +Package_SON +USON-10_2.5x1.0mm_P0.5mm +USON-10 2.5x1.0mm_ Pitch 0.5mm http://www.ti.com/lit/ds/symlink/tpd4e02b04.pdf +USON-10 2.5x1.0mm Pitch 0.5mm +0 +10 +10 +Package_SON +USON-20_2x4mm_P0.4mm +USON-20 2x4mm Pitch 0.4mm http://www.ti.com/lit/ds/symlink/txb0108.pdf +USON-20 2x4mm Pitch 0.4mm +0 +20 +20 +Package_SON +VSON-8-1EP_3x3mm_P0.65mm_EP1.6x2.4mm +VSON, 8 Pin (https://www.ti.com/lit/ds/symlink/thvd1450.pdf#page=37), generated with kicad-footprint-generator ipc_noLead_generator.py +VSON NoLead +0 +11 +9 +Package_SON +VSON-8-1EP_3x3mm_P0.65mm_EP1.65x2.4mm +VSON, 8 Pin (https://www.ti.com/lit/ds/symlink/tlv767-q1.pdf#page=31), generated with kicad-footprint-generator ipc_noLead_generator.py +VSON NoLead +0 +11 +9 +Package_SON +VSON-8-1EP_3x3mm_P0.65mm_EP1.65x2.4mm_ThermalVias +VSON, 8 Pin (https://www.ti.com/lit/ds/symlink/tlv767-q1.pdf#page=31), generated with kicad-footprint-generator ipc_noLead_generator.py +VSON NoLead +0 +18 +9 +Package_SON +VSON-8_1.5x2mm_P0.5mm +VSON, 8 Pin (http://www.ti.com/lit/ds/symlink/tps62840.pdf#page=37), generated with kicad-footprint-generator ipc_noLead_generator.py +VSON NoLead +0 +8 +8 +Package_SON +VSON-8_3.3x3.3mm_P0.65mm_NexFET +8-Lead Plastic Dual Flat, No Lead Package (MF) - 3.3x3.3x1 mm Body [VSON] http://www.ti.com/lit/ds/symlink/csd87334q3d.pdf +VSON 0.65 +0 +13 +5 +Package_SON +VSON-10-1EP_3x3mm_P0.5mm_EP1.2x2mm +VSON, 10 Pin (http://rohmfs.rohm.com/en/products/databook/datasheet/ic/power/switching_regulator/bd8314nuv-e.pdf (Page 20)), generated with kicad-footprint-generator ipc_noLead_generator.py +VSON NoLead +0 +15 +11 +Package_SON +VSON-10-1EP_3x3mm_P0.5mm_EP1.2x2mm_ThermalVias +VSON, 10 Pin (http://rohmfs.rohm.com/en/products/databook/datasheet/ic/power/switching_regulator/bd8314nuv-e.pdf (Page 20)), generated with kicad-footprint-generator ipc_noLead_generator.py +VSON NoLead +0 +18 +11 +Package_SON +VSON-10-1EP_3x3mm_P0.5mm_EP1.65x2.4mm +VSON 10 Thermal on 11 3x3mm Pitch 0.5mm http://chip.tomsk.ru/chip/chipdoc.nsf/Package/D8A64DD165C2AAD9472579400024FC41!OpenDocument +VSON 10 Thermal on 11 3x3mm Pitch 0.5mm +0 +21 +11 +Package_SON +VSON-10-1EP_3x3mm_P0.5mm_EP1.65x2.4mm_ThermalVias +VSON 10 Thermal on 11 3x3mm Pitch 0.5mm http://chip.tomsk.ru/chip/chipdoc.nsf/Package/D8A64DD165C2AAD9472579400024FC41!OpenDocument +VSON 10 Thermal on 11 3x3mm Pitch 0.5mm +0 +27 +11 +Package_SON +VSON-14-1EP_3x4.45mm_P0.65mm_EP1.6x4.2mm +VSON, 14 Pin (https://www.ti.com/lit/ds/symlink/lp8868x-q1.pdf#page=45), generated with kicad-footprint-generator ipc_noLead_generator.py +VSON NoLead +0 +17 +15 +Package_SON +VSON-14-1EP_3x4.45mm_P0.65mm_EP1.6x4.2mm_ThermalVias +VSON, 14 Pin (https://www.ti.com/lit/ds/symlink/lp8868x-q1.pdf#page=45), generated with kicad-footprint-generator ipc_noLead_generator.py +VSON NoLead +0 +24 +15 +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#page=43), 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#page=43), generated with kicad-footprint-generator ipc_noLead_generator.py +WSON NoLead +0 +17 +9 +Package_SON +WSON-8-1EP_6x5mm_P1.27mm_EP3.4x4.3mm +WSON, 8 Pin (http://www.winbond.com/resource-files/w25q32jv%20revg%2003272018%20plus.pdf (page 68)), generated with kicad-footprint-generator ipc_noLead_generator.py +WSON NoLead +0 +13 +9 +Package_SON +WSON-8-1EP_6x5mm_P1.27mm_EP3.4x4mm +WSON, 8 Pin (http://ww1.microchip.com/downloads/en/AppNotes/S72030.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +WSON NoLead +0 +13 +9 +Package_SON +WSON-8-1EP_8x6mm_P1.27mm_EP3.4x4.3mm +WSON, 8 Pin (https://datasheet.lcsc.com/lcsc/2204011730_GigaDevice-Semicon-Beijing-GD5F1GQ4UFYIGR_C2986324.pdf (page 44)), generated with kicad-footprint-generator ipc_noLead_generator.py +WSON NoLead +0 +13 +9 +Package_SON +WSON-10-1EP_2.5x2.5mm_P0.5mm_EP1.2x2mm +WSON, 10 Pin (http://www.ti.com/lit/gpn/tps63030#page=24), generated with kicad-footprint-generator ipc_noLead_generator.py +WSON NoLead +0 +15 +11 +Package_SON +WSON-10-1EP_2.5x2.5mm_P0.5mm_EP1.2x2mm_ThermalVias +WSON, 10 Pin (http://www.ti.com/lit/gpn/tps63030#page=24), generated with kicad-footprint-generator ipc_noLead_generator.py +WSON NoLead +0 +22 +11 +Package_SON +WSON-10-1EP_2x3mm_P0.5mm_EP0.84x2.4mm +WSON, 10 Pin (https://www.ti.com/lit/ds/symlink/tps62177.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +WSON NoLead +0 +13 +11 +Package_SON +WSON-10-1EP_2x3mm_P0.5mm_EP0.84x2.4mm_ThermalVias +WSON, 10 Pin (https://www.ti.com/lit/ds/symlink/tps62177.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +WSON NoLead +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-10-1EP_4x4mm_P0.8mm_EP2.6x3mm +WSON, 10 Pin (https://www.ti.com/lit/ml/qfnd434a/qfnd434a.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +WSON NoLead Texas_DPR0010A +0 +15 +11 +Package_SON +WSON-10-1EP_4x4mm_P0.8mm_EP2.6x3mm_ThermalVias +WSON, 10 Pin (https://www.ti.com/lit/ml/qfnd434a/qfnd434a.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +WSON NoLead Texas_DPR0010A +0 +25 +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_3x3mm_P0.5mm_EP1.5x2.5mm +WSON, 12 Pin (https://www.ti.com/lit/ds/symlink/tps63710.pdf#page=33), generated with kicad-footprint-generator ipc_noLead_generator.py +WSON NoLead +0 +17 +13 +Package_SON +WSON-12-1EP_3x3mm_P0.5mm_EP1.5x2.5mm_ThermalVias +WSON, 12 Pin (https://www.ti.com/lit/ds/symlink/tps63710.pdf#page=33), generated with kicad-footprint-generator ipc_noLead_generator.py +WSON NoLead +0 +24 +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 +Winbond_USON-8-1EP_3x2mm_P0.5mm_EP0.2x1.6mm +Winbond USON, 8 Pin (https://www.lcsc.com/datasheet/lcsc_datasheet_2205122030_Winbond-Elec-W25Q16JVUXIQ_C2843335.pdf#page=66f), generated with kicad-footprint-generator ipc_noLead_generator.py +Winbond USON NoLead +0 +10 +9 +Package_SON +Winbond_USON-8-2EP_3x4mm_P0.8mm_EP0.2x0.8mm +Winbond USON, 8 Pin (https://www.winbond.com/hq/support/documentation/levelOne.jsp?__locale=en&DocNo=DA00-W25Q16JV.1#page=69), generated with kicad-footprint-generator ipc_noLead_generator.py +Winbond USON NoLead +0 +10 +9 +Package_SON +X2SON-8_1.4x1mm_P0.35mm +X2SON-8 1.4x1mm Pitch0.35mm http://www.ti.com/lit/ds/symlink/pca9306.pdf +X2SON-8 1.4x1mm Pitch0.35mm +0 +8 +8 +Package_SO_J-Lead +TSOC-6_3.76x3.94mm_P1.27mm +Maxim Integrated TSOC-6 D6+1,https://datasheets.maximintegrated.com/en/ds/DS2401.pdf, https://pdfserv.maximintegrated.com/land_patterns/90-0321.PDF +TSOC-6 +0 +6 +6 +Package_TO_SOT_SMD +ATPAK-2 +ATPAK SMD package, http://www.onsemi.com/pub/Collateral/ENA2192-D.PDF +ATPAK +0 +7 +3 +Package_TO_SOT_SMD +Analog_KS-4 +Analog Devices KS-4, http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/sc70ks/ks_4.pdf +Analog Devices KS-4 (like EIAJ SC-82) +0 +4 +4 +Package_TO_SOT_SMD +Diodes_SOT-553 +Diodes SOT-553, https://www.diodes.com/assets/Package-Files/SOT553.pdf +SOT-553 +0 +5 +5 +Package_TO_SOT_SMD +HVSOF5 +HVSOF5, http://rohmfs.rohm.com/en/techdata_basic/ic/package/hvsof5_1-e.pdf, http://rohmfs.rohm.com/en/products/databook/datasheet/ic/sensor/hall/bu52001gul-e.pdf +HVSOF5 +0 +5 +5 +Package_TO_SOT_SMD +HVSOF6 +HVSOF6, http://rohmfs.rohm.com/en/techdata_basic/ic/package/hvsof6_1-e.pdf, http://rohmfs.rohm.com/en/products/databook/datasheet/ic/audio_video/video_amplifier/bh76106hfv-e.pdf +HVSOF6 +0 +7 +7 +Package_TO_SOT_SMD +Infineon_PG-HDSOP-10-1 +Infineon PG-HDSOP-10-1 (DDPAK), 20.96x6.5x2.3mm, slug up (https://www.infineon.com/cms/en/product/packages/PG-HDSOP/PG-HDSOP-10-1/) +hdsop 10 ddpak +0 +10 +10 +Package_TO_SOT_SMD +Infineon_PG-HSOF-8-1 +HSOF-8-1 [TOLL] power MOSFET (http://www.infineon.com/cms/en/product/packages/PG-HSOF/PG-HSOF-8-1/) +mosfet hsof toll +0 +53 +3 +Package_TO_SOT_SMD +Infineon_PG-HSOF-8-1_ThermalVias +HSOF-8-1 [TOLL] power MOSFET (http://www.infineon.com/cms/en/product/packages/PG-HSOF/PG-HSOF-8-1/) +mosfet hsof toll thermal vias +0 +96 +3 +Package_TO_SOT_SMD +Infineon_PG-HSOF-8-2 +HSOF-8-2 [TOLL] power MOSFET (http://www.infineon.com/cms/en/product/packages/PG-HSOF/PG-HSOF-8-2/) +mosfet hsof toll +0 +12 +4 +Package_TO_SOT_SMD +Infineon_PG-HSOF-8-2_ThermalVias +HSOF-8-2 [TOLL] power MOSFET (http://www.infineon.com/cms/en/product/packages/PG-HSOF/PG-HSOF-8-2/) +mosfet hsof toll thermal vias +0 +97 +4 +Package_TO_SOT_SMD +Infineon_PG-HSOF-8-2_ThermalVias2 +HSOF-8-2 [TOLL] power MOSFET (http://www.infineon.com/cms/en/product/packages/PG-HSOF/PG-HSOF-8-2/, https://www.infineon.com/dgdl/Infineon-ApplicationNote_600V_CoolMOS_C7_Gold_TOLL-AN-v01_00-EN.pdf?fileId=5546d4625b10283a015b144a1af70df6) +mosfet hsof toll thermal vias +0 +159 +4 +Package_TO_SOT_SMD +Infineon_PG-HSOF-8-3 +HSOF-8-3 power MOSFET (http://www.infineon.com/cms/en/product/packages/PG-HSOF/PG-HSOF-8-3/) +mosfet hsof +0 +25 +4 +Package_TO_SOT_SMD +Infineon_PG-HSOF-8-3_ThermalVias +HSOF-8-3 power MOSFET (http://www.infineon.com/cms/en/product/packages/PG-HSOF/PG-HSOF-8-3/) +mosfet hsof +0 +64 +4 +Package_TO_SOT_SMD +Infineon_PG-TO-220-7Lead_TabPin8 +Infineon PG-TO-220-7, Tab as Pin 8, see e.g. https://www.infineon.com/dgdl/Infineon-BTS50055-1TMC-DS-v01_00-EN.pdf?fileId=5546d4625a888733015aa9b0007235e9 +Infineon PG-TO-220-7 +0 +12 +8 +Package_TO_SOT_SMD +Infineon_PG-TSFP-3-1 +Infineon_PG-TSFP-3-1, https://www.infineon.com/dgdl/TSFP-3-1,-2-Package_Overview.pdf?fileId=db3a30431936bc4b0119539929863d46 +TSFP-3 +0 +3 +3 +Package_TO_SOT_SMD +LFPAK33 +LFPAK33 SOT-1210 https://assets.nexperia.com/documents/outline-drawing/SOT1210.pdf +LFPAK33 SOT-1210 +0 +17 +5 +Package_TO_SOT_SMD +LFPAK56 +LFPAK56 https://assets.nexperia.com/documents/outline-drawing/SOT669.pdf +LFPAK56 SOT-669 Power-SO8 +0 +18 +5 +Package_TO_SOT_SMD +LFPAK88 +LFPAK88 PowerPAK 8 x 8L BWL Single SOT-1235 (https://assets.nexperia.com/documents/package-information/SOT1235.pdf) +PowerPAK 8x8L Nexperia Vishay +0 +19 +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_SOT-457_ClockwisePinNumbering +ROHM SOT-457 SC-74, 6 Pin (https://fscdn.rohm.com/en/products/databook/datasheet/discrete/transistor/digital/imh3at110-e.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +ROHM SC-74 TO_SOT_SMD +0 +6 +6 +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-74-6_1.55x2.9mm_P0.95mm +SC-74, 6 Pin (https://www.jeita.or.jp/japanese/standard/book/ED-7500B/#target/page_no=39), generated with kicad-footprint-generator ipc_gullwing_generator.py +SC-74 TO_SOT_SMD +0 +6 +6 +Package_TO_SOT_SMD +SC-74A-5_1.55x2.9mm_P0.95mm +SC-74A, 5 Pin (https://www.jeita.or.jp/japanese/standard/book/ED-7500B/#target/page_no=41), generated with kicad-footprint-generator ipc_gullwing_generator.py +SC-74A TO_SOT_SMD +0 +5 +5 +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 (JEDEC TO-236 Var AB https://www.jedec.org/document_search?search_api_views_fulltext=TO-236), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOT TO_SOT_SMD +0 +3 +3 +Package_TO_SOT_SMD +SOT-23-3 +SOT, 3 Pin (JEDEC MO-178 inferred 3-pin variant https://www.jedec.org/document_search?search_api_views_fulltext=MO-178), 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 (JEDEC MO-178 Var AA https://www.jedec.org/document_search?search_api_views_fulltext=MO-178), 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 (JEDEC MO-178 Var AB https://www.jedec.org/document_search?search_api_views_fulltext=MO-178), 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 (JEDEC MO-178 Var BA https://www.jedec.org/document_search?search_api_views_fulltext=MO-178), 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, SC-88 +SOT-363 SC-70-6 SC-88 +0 +6 +6 +Package_TO_SOT_SMD +SOT-363_SC-70-6_Handsoldering +SOT-363, SC-70-6, SC-88, Handsoldering +SOT-363 SC-70-6 SC-88 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 +SOT, 5 Pin (https://www.jedec.org/system/files/docs/MO-293B.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOT TO_SOT_SMD JEDEC-MO-293-UAAD-1 Texas-DRL-5 +0 +5 +5 +Package_TO_SOT_SMD +SOT-563 +SOT, 6 Pin (https://www.jedec.org/system/files/docs/MO-293B.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOT TO_SOT_SMD JEDEC-MO-293-UAAD Texas-DRL-6 +0 +6 +6 +Package_TO_SOT_SMD +SOT-583-8 +https://www.ti.com/lit/ds/symlink/tps62933.pdf +SOT-583-8 +0 +8 +8 +Package_TO_SOT_SMD +SOT-665 +SOT665 +SOT-665 +0 +5 +5 +Package_TO_SOT_SMD +SOT-666 +SOT666 +SOT-666 +0 +6 +6 +Package_TO_SOT_SMD +SOT-723 +http://toshiba.semicon-storage.com/info/docget.jsp?did=5879&prodName=RN1104MFV +sot 723 +0 +3 +3 +Package_TO_SOT_SMD +SOT-883 +SOT-883, https://assets.nexperia.com/documents/outline-drawing/SOT883.pdf +SOT-883 +0 +3 +3 +Package_TO_SOT_SMD +SOT-886 +SOT-886 +SOT-886 +0 +6 +6 +Package_TO_SOT_SMD +SOT-963 +SOT 963 6 pins package 1x0.8mm pitch 0.35mm +SOT 963 6 pins package 1x0.8mm pitch 0.35mm +0 +6 +6 +Package_TO_SOT_SMD +SOT-1123 +SOT-1123 small outline transistor (see http://www.onsemi.com/pub/Collateral/NST3906F3-D.PDF) +SOT-1123 transistor +0 +3 +3 +Package_TO_SOT_SMD +SOT-1333-1 +SOT-1333-1 +SOT-1333-1 +0 +9 +9 +Package_TO_SOT_SMD +SOT-1334-1 +SOT-1334-1 +SOT-1334-1 +0 +14 +14 +Package_TO_SOT_SMD +SuperSOT-3 +3-pin SuperSOT package https://www.fairchildsemi.com/package-drawings/MA/MA03B.pdf +SuperSOT-3 SSOT-3 +0 +3 +3 +Package_TO_SOT_SMD +SuperSOT-6 +6-pin SuperSOT package http://www.mouser.com/ds/2/149/FMB5551-889214.pdf +SuperSOT-6 SSOT-6 +0 +6 +6 +Package_TO_SOT_SMD +SuperSOT-8 +8-pin SuperSOT package, http://www.icbank.com/icbank_data/semi_package/ssot8_dim.pdf +SuperSOT-8 SSOT-8 +0 +8 +8 +Package_TO_SOT_SMD +TDSON-8-1 +Power MOSFET package, TDSON-8-1, 5.15x5.9mm (https://www.infineon.com/cms/en/product/packages/PG-TDSON/PG-TDSON-8-1/) +tdson +0 +14 +5 +Package_TO_SOT_SMD +TO-50-3_LongPad-NoHole_Housing +TO-50-3 Macro T Package Style M236 +TO-50-3 Macro T Package Style M236 +0 +3 +3 +Package_TO_SOT_SMD +TO-50-3_LongPad-WithHole_Housing +TO-50-3 Macro T Package Style M236 +TO-50-3 Macro T Package Style M236 +0 +3 +3 +Package_TO_SOT_SMD +TO-50-3_ShortPad-NoHole_Housing +TO-50-3 Macro T Package Style M236 +TO-50-3 Macro T Package Style M236 +0 +3 +3 +Package_TO_SOT_SMD +TO-50-3_ShortPad-WithHole_Housing +TO-50-3 Macro T Package Style M236 +TO-50-3 Macro T Package Style M236 +0 +3 +3 +Package_TO_SOT_SMD +TO-50-4_LongPad-NoHole_Housing +TO-50-4 Macro X Package Style M238 +TO-50-4 Macro X Package Style M238 +0 +4 +4 +Package_TO_SOT_SMD +TO-50-4_LongPad-WithHole_Housing +TO-50-4 Macro X Package Style M238 +TO-50-4 Macro X Package Style M238 +0 +4 +4 +Package_TO_SOT_SMD +TO-50-4_ShortPad-NoHole_Housing +TO-50-4 Macro X Package Style M238 +TO-50-4 Macro X Package Style M238 +0 +4 +4 +Package_TO_SOT_SMD +TO-50-4_ShortPad-WithHole_Housing +TO-50-4 Macro X Package Style M238 +TO-50-4 Macro X Package Style M238 +0 +4 +4 +Package_TO_SOT_SMD +TO-252-2 +TO-252/DPAK SMD package, http://www.infineon.com/cms/en/product/packages/PG-TO252/PG-TO252-3-1/ +DPAK TO-252 DPAK-3 TO-252-3 SOT-428 +0 +7 +3 +Package_TO_SOT_SMD +TO-252-2_TabPin1 +TO-252-2, tab to pin 1 https://www.wolfspeed.com/media/downloads/87/CSD01060.pdf +TO-252-2 diode +0 +7 +2 +Package_TO_SOT_SMD +TO-252-3_TabPin2 +TO-252/DPAK SMD package, http://www.infineon.com/cms/en/product/packages/PG-TO252/PG-TO252-3-1/ +DPAK TO-252 DPAK-3 TO-252-3 SOT-428 +0 +8 +3 +Package_TO_SOT_SMD +TO-252-3_TabPin4 +TO-252/DPAK SMD package, http://www.infineon.com/cms/en/product/packages/PG-TO252/PG-TO252-3-1/ +DPAK TO-252 DPAK-3 TO-252-3 SOT-428 +0 +8 +4 +Package_TO_SOT_SMD +TO-252-4 +TO-252/DPAK SMD package, http://www.infineon.com/cms/en/product/packages/PG-TO252/PG-TO252-5-11/ +DPAK TO-252 DPAK-5 TO-252-5 +0 +9 +5 +Package_TO_SOT_SMD +TO-252-5_TabPin3 +TO-252/DPAK SMD package, http://www.infineon.com/cms/en/product/packages/PG-TO252/PG-TO252-5-11/ +DPAK TO-252 DPAK-5 TO-252-5 +0 +10 +5 +Package_TO_SOT_SMD +TO-252-5_TabPin6 +TO-252/DPAK SMD package, http://www.infineon.com/cms/en/product/packages/PG-TO252/PG-TO252-5-11/ +DPAK TO-252 DPAK-5 TO-252-5 +0 +10 +6 +Package_TO_SOT_SMD +TO-263-2 +TO-263/D2PAK/DDPAK SMD package, http://www.infineon.com/cms/en/product/packages/PG-TO263/PG-TO263-3-1/ +D2PAK DDPAK TO-263 D2PAK-3 TO-263-3 SOT-404 +0 +7 +3 +Package_TO_SOT_SMD +TO-263-2_TabPin1 +TO-263 / D2PAK / DDPAK SMD package, tab to pin 1, https://www.wolfspeed.com/media/downloads/137/C3D06060G.pdf +D2PAK DDPAK TO-263 D2PAK-3 TO-263-3 SOT-404 diode +0 +7 +2 +Package_TO_SOT_SMD +TO-263-3_TabPin2 +TO-263/D2PAK/DDPAK SMD package, http://www.infineon.com/cms/en/product/packages/PG-TO263/PG-TO263-3-1/ +D2PAK DDPAK TO-263 D2PAK-3 TO-263-3 SOT-404 +0 +8 +3 +Package_TO_SOT_SMD +TO-263-3_TabPin4 +TO-263/D2PAK/DDPAK SMD package, http://www.infineon.com/cms/en/product/packages/PG-TO263/PG-TO263-3-1/ +D2PAK DDPAK TO-263 D2PAK-3 TO-263-3 SOT-404 +0 +8 +4 +Package_TO_SOT_SMD +TO-263-4 +TO-263/D2PAK/DDPAK SMD package, http://www.infineon.com/cms/en/product/packages/PG-TO263/PG-TO263-5-1/ +D2PAK DDPAK TO-263 D2PAK-5 TO-263-5 SOT-426 +0 +9 +5 +Package_TO_SOT_SMD +TO-263-5_TabPin3 +TO-263/D2PAK/DDPAK SMD package, http://www.infineon.com/cms/en/product/packages/PG-TO263/PG-TO263-5-1/ +D2PAK DDPAK TO-263 D2PAK-5 TO-263-5 SOT-426 +0 +10 +5 +Package_TO_SOT_SMD +TO-263-5_TabPin6 +TO-263/D2PAK/DDPAK SMD package, http://www.infineon.com/cms/en/product/packages/PG-TO263/PG-TO263-5-1/ +D2PAK DDPAK TO-263 D2PAK-5 TO-263-5 SOT-426 +0 +10 +6 +Package_TO_SOT_SMD +TO-263-6 +TO-263/D2PAK/DDPAK SMD package, http://www.infineon.com/cms/en/product/packages/PG-TO263/PG-TO263-7-1/ +D2PAK DDPAK TO-263 D2PAK-7 TO-263-7 SOT-427 +0 +11 +7 +Package_TO_SOT_SMD +TO-263-7_TabPin4 +TO-263/D2PAK/DDPAK SMD package, http://www.infineon.com/cms/en/product/packages/PG-TO263/PG-TO263-7-1/ +D2PAK DDPAK TO-263 D2PAK-7 TO-263-7 SOT-427 +0 +12 +7 +Package_TO_SOT_SMD +TO-263-7_TabPin8 +TO-263/D2PAK/DDPAK SMD package, http://www.infineon.com/cms/en/product/packages/PG-TO263/PG-TO263-7-1/ +D2PAK DDPAK TO-263 D2PAK-7 TO-263-7 SOT-427 +0 +12 +8 +Package_TO_SOT_SMD +TO-263-9_TabPin5 +TO-263 / D2PAK / DDPAK SMD package, http://www.ti.com/lit/ds/symlink/lm4755.pdf +D2PAK DDPAK TO-263 D2PAK-9 TO-263-9 +0 +14 +9 +Package_TO_SOT_SMD +TO-263-9_TabPin10 +TO-263 / D2PAK / DDPAK SMD package, http://www.ti.com/lit/ds/symlink/lm4755.pdf +D2PAK DDPAK TO-263 D2PAK-9 TO-263-9 +0 +14 +10 +Package_TO_SOT_SMD +TO-268-2 +TO-268/D3PAK SMD package, http://www.icbank.com/icbank_data/semi_package/to268aa_dim.pdf +D3PAK TO-268 D3PAK-3 TO-268-3 +0 +7 +3 +Package_TO_SOT_SMD +TO-269AA +SMD package TO-269AA (e.g. diode bridge), see http://www.vishay.com/docs/88854/padlayouts.pdf +TO-269AA MBS diode bridge +0 +4 +4 +Package_TO_SOT_SMD +TO-277A +Thermal enhanced ultra thin SMD package; 3 leads; body: 4.3x6.1x0.43mm, https://www.vishay.com/docs/95570/to-277asmpc.pdf +TO-277A SMPC +0 +12 +3 +Package_TO_SOT_SMD +TO-277B +TO-277B 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_DDF0008A_SOT-8_1.6x2.9mm_P0.65mm +Texas DDF0008A SOT, 8 Pin (https://www.ti.com/lit/ds/symlink/mspm0c1104.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +Texas SOT TO_SOT_SMD +0 +8 +8 +Package_TO_SOT_SMD +Texas_DRT-3 +Texas Instrument DRT-3 1x0.8mm Pitch 0.7mm http://www.ti.com/lit/ds/symlink/tpd2eusb30.pdf +DRT-3 1x0.8mm Pitch 0.7mm +0 +3 +3 +Package_TO_SOT_SMD +Texas_NDQ +Texas Instruments, NDQ, 5 pin (https://www.ti.com/lit/ml/mmsf022/mmsf022.pdf) +ti pfm dap +0 +6 +6 +Package_TO_SOT_SMD +Texas_NDW-7_TabPin4 +NDW0007A SMD package, http://www.ti.com/lit/ml/mmsf024/mmsf024.pdf +NDW NDW +0 +12 +7 +Package_TO_SOT_SMD +Texas_NDW-7_TabPin8 +NDW0007A SMD package, http://www.ti.com/lit/ml/mmsf024/mmsf024.pdf +NDW NDW +0 +12 +8 +Package_TO_SOT_SMD +Texas_NDY0011A +TO-PMOD-11 11-pin switching regulator package, http://www.ti.com/lit/ml/mmsf025/mmsf025.pdf +Texas TO-PMOD NDY00011A +0 +12 +12 +Package_TO_SOT_SMD +Texas_R-PDSO-G5_DCK-5 +DCK R-PDSO-G5, JEDEC MO-203C Var AA, https://www.ti.com/lit/ds/symlink/tmp20.pdf#page=23 +DCK R-PDSO-G5 MO-203C +0 +5 +5 +Package_TO_SOT_SMD +Texas_R-PDSO-G6 +R-PDSO-G6, http://www.ti.com/lit/ds/slis144b/slis144b.pdf +R-PDSO-G6 SC-70-6 +0 +6 +6 +Package_TO_SOT_SMD +Texas_R-PDSO-N5_DRL-5 +R-PDSO-N5, DRL, JEDEC MO-293B Var UAAD-1, https://www.ti.com/lit/ml/mpds158d/mpds158d.pdf +SOT R-PDSO-N5 DRL +0 +5 +5 +Package_TO_SOT_SMD +Texas_R-PDSO-N6_DRL-6 +R-PDSO-N6, DRL, similar to JEDEC MO-293B Var UAAD (but not the same) , https://www.ti.com/lit/pdf/mpds159f +SOT R-PDSO-N6 DRL +0 +6 +6 +Package_TO_SOT_SMD +VSOF5 +VSOF5 +VSOF5 +0 +5 +5 +Package_TO_SOT_SMD +Vishay_PowerPAK_SC70-6L_Dual +Vishay PowerPAK SC70 dual transistor package http://www.vishay.com/docs/70487/70487.pdf +powerpak sc70 sc-70 dual +0 +8 +6 +Package_TO_SOT_SMD +Vishay_PowerPAK_SC70-6L_Single +Vishay PowerPAK SC70 single transistor package http://www.vishay.com/docs/70486/70486.pdf +powerpak sc70 sc-70 +0 +6 +3 +Package_TO_SOT_THT +Analog_TO-46-4_ThermalShield +TO-46-4 with Valox case, based on https://www.analog.com/media/en/technical-documentation/data-sheets/199399fc.pdf +TO-46-4 LM399 +0 +4 +4 +Package_TO_SOT_THT +Fairchild_TO-220F-6L +Fairchild TO-220F-6L, http://www.mouser.com/ds/2/149/FSL136MRT-113334.pdf +Fairchild TO-220F-6L +0 +6 +6 +Package_TO_SOT_THT +Heraeus_TO-92-2 +TO-92 2-pin variant by Heraeus, drill 0.75mm (http://www.produktinfo.conrad.com/datenblaetter/175000-199999/181293-da-01-de-TO92_Temperatursensor_PT1000_32209225.pdf) +to-92 +0 +2 +2 +Package_TO_SOT_THT +NEC_Molded_7x4x9mm +Molded Japan Transistor Package 7x4x9mm^3, http://rtellason.com/transdata/2sb734.pdf +Japan transistor +0 +3 +3 +Package_TO_SOT_THT +PowerIntegrations_TO-220-7C +Non Isolated Modified TO-220 7pin Package, see http://www.farnell.com/datasheets/5793.pdf +Power Integration Y Package +0 +6 +6 +Package_TO_SOT_THT +SIPAK-1EP_Horizontal_TabDown +SIPAK, Horizontal, RM 2.286mm, generated with kicad-footprint-generator TO_SOT_THT_generate.py +SIPAK Horizontal RM 2.286mm +0 +4 +4 +Package_TO_SOT_THT +SIPAK_Vertical +SIPAK, Vertical, RM 2.286mm, generated with kicad-footprint-generator TO_SOT_THT_generate.py +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, generated with kicad-footprint-generator TO_SOT_THT_generate.py +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, generated with kicad-footprint-generator TO_SOT_THT_generate.py +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, generated with kicad-footprint-generator TO_SOT_THT_generate.py +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, generated with kicad-footprint-generator TO_SOT_THT_generate.py +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, generated with kicad-footprint-generator TO_SOT_THT_generate.py +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, generated with kicad-footprint-generator TO_SOT_THT_generate.py +TO-3PB-3 Vertical RM 5.45mm +0 +3 +3 +Package_TO_SOT_THT +TO-5-2 +TO-5-2, generated with kicad-footprint-generator TO_SOT_THT_generate.py +TO-5-2 +0 +2 +2 +Package_TO_SOT_THT +TO-5-2_Window +TO-5-2, Window, generated with kicad-footprint-generator TO_SOT_THT_generate.py +TO-5-2 Window +0 +2 +2 +Package_TO_SOT_THT +TO-5-3 +TO-5-3, generated with kicad-footprint-generator TO_SOT_THT_generate.py +TO-5-3 +0 +3 +3 +Package_TO_SOT_THT +TO-5-3_Window +TO-5-3, Window, generated with kicad-footprint-generator TO_SOT_THT_generate.py +TO-5-3 Window +0 +3 +3 +Package_TO_SOT_THT +TO-5-4 +TO-5-4, generated with kicad-footprint-generator TO_SOT_THT_generate.py +TO-5-4 +0 +4 +4 +Package_TO_SOT_THT +TO-5-4_Window +TO-5-4, Window, generated with kicad-footprint-generator TO_SOT_THT_generate.py +TO-5-4 Window +0 +4 +4 +Package_TO_SOT_THT +TO-5-6 +TO-5-6, generated with kicad-footprint-generator TO_SOT_THT_generate.py +TO-5-6 +0 +6 +6 +Package_TO_SOT_THT +TO-5-6_Window +TO-5-6, Window, generated with kicad-footprint-generator TO_SOT_THT_generate.py +TO-5-6 Window +0 +6 +6 +Package_TO_SOT_THT +TO-5-8 +TO-5-8, generated with kicad-footprint-generator TO_SOT_THT_generate.py +TO-5-8 +0 +8 +8 +Package_TO_SOT_THT +TO-5-8_PD5.08 +TO-5-8_PD5.08, generated with kicad-footprint-generator TO_SOT_THT_generate.py +TO-5-8_PD5.08 +0 +8 +8 +Package_TO_SOT_THT +TO-5-8_PD5.08_Window +TO-5-8_PD5.08, Window, generated with kicad-footprint-generator TO_SOT_THT_generate.py +TO-5-8_PD5.08 Window +0 +8 +8 +Package_TO_SOT_THT +TO-5-8_Window +TO-5-8, Window, generated with kicad-footprint-generator TO_SOT_THT_generate.py +TO-5-8 Window +0 +8 +8 +Package_TO_SOT_THT +TO-5-10 +TO-5-10, generated with kicad-footprint-generator TO_SOT_THT_generate.py +TO-5-10 +0 +10 +10 +Package_TO_SOT_THT +TO-5-10_Window +TO-5-10, Window, generated with kicad-footprint-generator TO_SOT_THT_generate.py +TO-5-10 Window +0 +10 +10 +Package_TO_SOT_THT +TO-8-2 +TO-8-2, generated with kicad-footprint-generator TO_SOT_THT_generate.py +TO-8-2 +0 +2 +2 +Package_TO_SOT_THT +TO-8-2_Window +TO-8-2, Window, generated with kicad-footprint-generator TO_SOT_THT_generate.py +TO-8-2 Window +0 +2 +2 +Package_TO_SOT_THT +TO-8-3 +TO-8-3, generated with kicad-footprint-generator TO_SOT_THT_generate.py +TO-8-3 +0 +3 +3 +Package_TO_SOT_THT +TO-8-3_Window +TO-8-3, Window, generated with kicad-footprint-generator TO_SOT_THT_generate.py +TO-8-3 Window +0 +3 +3 +Package_TO_SOT_THT +TO-11-2 +TO-11-2, generated with kicad-footprint-generator TO_SOT_THT_generate.py +TO-11-2 +0 +2 +2 +Package_TO_SOT_THT +TO-11-2_Window +TO-11-2, Window, generated with kicad-footprint-generator TO_SOT_THT_generate.py +TO-11-2 Window +0 +2 +2 +Package_TO_SOT_THT +TO-11-3 +TO-11-3, generated with kicad-footprint-generator TO_SOT_THT_generate.py +TO-11-3 +0 +3 +3 +Package_TO_SOT_THT +TO-11-3_Window +TO-11-3, Window, generated with kicad-footprint-generator TO_SOT_THT_generate.py +TO-11-3 Window +0 +3 +3 +Package_TO_SOT_THT +TO-12-4 +TO-12-4, generated with kicad-footprint-generator TO_SOT_THT_generate.py +TO-12-4 +0 +4 +4 +Package_TO_SOT_THT +TO-12-4_Window +TO-12-4, Window, generated with kicad-footprint-generator TO_SOT_THT_generate.py +TO-12-4 Window +0 +4 +4 +Package_TO_SOT_THT +TO-17-4 +TO-17-4, generated with kicad-footprint-generator TO_SOT_THT_generate.py +TO-17-4 +0 +4 +4 +Package_TO_SOT_THT +TO-17-4_Window +TO-17-4, Window, generated with kicad-footprint-generator TO_SOT_THT_generate.py +TO-17-4 Window +0 +4 +4 +Package_TO_SOT_THT +TO-18-2 +TO-18-2, generated with kicad-footprint-generator TO_SOT_THT_generate.py +TO-18-2 +0 +2 +2 +Package_TO_SOT_THT +TO-18-2_Lens +TO-18-2, Lens, generated with kicad-footprint-generator TO_SOT_THT_generate.py +TO-18-2 Lens +0 +2 +2 +Package_TO_SOT_THT +TO-18-2_Window +TO-18-2, Window, generated with kicad-footprint-generator TO_SOT_THT_generate.py +TO-18-2 Window +0 +2 +2 +Package_TO_SOT_THT +TO-18-3 +TO-18-3, generated with kicad-footprint-generator TO_SOT_THT_generate.py +TO-18-3 +0 +3 +3 +Package_TO_SOT_THT +TO-18-3_Lens +TO-18-3, Lens, generated with kicad-footprint-generator TO_SOT_THT_generate.py +TO-18-3 Lens +0 +3 +3 +Package_TO_SOT_THT +TO-18-3_Window +TO-18-3, Window, generated with kicad-footprint-generator TO_SOT_THT_generate.py +TO-18-3 Window +0 +3 +3 +Package_TO_SOT_THT +TO-18-4 +TO-18-4, generated with kicad-footprint-generator TO_SOT_THT_generate.py +TO-18-4 +0 +4 +4 +Package_TO_SOT_THT +TO-18-4_Lens +TO-18-4, Lens, generated with kicad-footprint-generator TO_SOT_THT_generate.py +TO-18-4 Lens +0 +4 +4 +Package_TO_SOT_THT +TO-18-4_Window +TO-18-4, Window, generated with kicad-footprint-generator TO_SOT_THT_generate.py +TO-18-4 Window +0 +4 +4 +Package_TO_SOT_THT +TO-33-4 +TO-33-4, generated with kicad-footprint-generator TO_SOT_THT_generate.py +TO-33-4 +0 +4 +4 +Package_TO_SOT_THT +TO-33-4_Window +TO-33-4, Window, generated with kicad-footprint-generator TO_SOT_THT_generate.py +TO-33-4 Window +0 +4 +4 +Package_TO_SOT_THT +TO-38-2 +TO-38-2, generated with kicad-footprint-generator TO_SOT_THT_generate.py +TO-38-2 +0 +2 +2 +Package_TO_SOT_THT +TO-38-2_Window +TO-38-2, Window, generated with kicad-footprint-generator TO_SOT_THT_generate.py +TO-38-2 Window +0 +2 +2 +Package_TO_SOT_THT +TO-38-3 +TO-38-3, generated with kicad-footprint-generator TO_SOT_THT_generate.py +TO-38-3 +0 +3 +3 +Package_TO_SOT_THT +TO-38-3_Window +TO-38-3, Window, generated with kicad-footprint-generator TO_SOT_THT_generate.py +TO-38-3 Window +0 +3 +3 +Package_TO_SOT_THT +TO-39-2 +TO-39-2, generated with kicad-footprint-generator TO_SOT_THT_generate.py +TO-39-2 +0 +2 +2 +Package_TO_SOT_THT +TO-39-2_Window +TO-39-2, Window, generated with kicad-footprint-generator TO_SOT_THT_generate.py +TO-39-2 Window +0 +2 +2 +Package_TO_SOT_THT +TO-39-3 +TO-39-3, generated with kicad-footprint-generator TO_SOT_THT_generate.py +TO-39-3 +0 +3 +3 +Package_TO_SOT_THT +TO-39-3_Window +TO-39-3, Window, generated with kicad-footprint-generator TO_SOT_THT_generate.py +TO-39-3 Window +0 +3 +3 +Package_TO_SOT_THT +TO-39-4 +TO-39-4, generated with kicad-footprint-generator TO_SOT_THT_generate.py +TO-39-4 +0 +4 +4 +Package_TO_SOT_THT +TO-39-4_Window +TO-39-4, Window, generated with kicad-footprint-generator TO_SOT_THT_generate.py +TO-39-4 Window +0 +4 +4 +Package_TO_SOT_THT +TO-39-6 +TO-39-6, generated with kicad-footprint-generator TO_SOT_THT_generate.py +TO-39-6 +0 +6 +6 +Package_TO_SOT_THT +TO-39-6_Window +TO-39-6, Window, generated with kicad-footprint-generator TO_SOT_THT_generate.py +TO-39-6 Window +0 +6 +6 +Package_TO_SOT_THT +TO-39-8 +TO-39-8, generated with kicad-footprint-generator TO_SOT_THT_generate.py +TO-39-8 +0 +8 +8 +Package_TO_SOT_THT +TO-39-8_Window +TO-39-8, Window, generated with kicad-footprint-generator TO_SOT_THT_generate.py +TO-39-8 Window +0 +8 +8 +Package_TO_SOT_THT +TO-39-10 +TO-39-10, generated with kicad-footprint-generator TO_SOT_THT_generate.py +TO-39-10 +0 +10 +10 +Package_TO_SOT_THT +TO-39-10_Window +TO-39-10, Window, generated with kicad-footprint-generator TO_SOT_THT_generate.py +TO-39-10 Window +0 +10 +10 +Package_TO_SOT_THT +TO-46-2 +TO-46-2, generated with kicad-footprint-generator TO_SOT_THT_generate.py +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, generated with kicad-footprint-generator TO_SOT_THT_generate.py +TO-46-2 Window +0 +2 +2 +Package_TO_SOT_THT +TO-46-3 +TO-46-3, generated with kicad-footprint-generator TO_SOT_THT_generate.py +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, generated with kicad-footprint-generator TO_SOT_THT_generate.py +TO-46-3 Window +0 +3 +3 +Package_TO_SOT_THT +TO-46-4 +TO-46-4, generated with kicad-footprint-generator TO_SOT_THT_generate.py +TO-46-4 +0 +4 +4 +Package_TO_SOT_THT +TO-46-4_Window +TO-46-4, Window, generated with kicad-footprint-generator TO_SOT_THT_generate.py +TO-46-4 Window +0 +4 +4 +Package_TO_SOT_THT +TO-52-2 +TO-52-2, generated with kicad-footprint-generator TO_SOT_THT_generate.py +TO-52-2 +0 +2 +2 +Package_TO_SOT_THT +TO-52-2_Window +TO-52-2, Window, generated with kicad-footprint-generator TO_SOT_THT_generate.py +TO-52-2 Window +0 +2 +2 +Package_TO_SOT_THT +TO-52-3 +TO-52-3, generated with kicad-footprint-generator TO_SOT_THT_generate.py +TO-52-3 +0 +3 +3 +Package_TO_SOT_THT +TO-52-3_Window +TO-52-3, Window, generated with kicad-footprint-generator TO_SOT_THT_generate.py +TO-52-3 Window +0 +3 +3 +Package_TO_SOT_THT +TO-72-4 +TO-72-4, generated with kicad-footprint-generator TO_SOT_THT_generate.py +TO-72-4 +0 +4 +4 +Package_TO_SOT_THT +TO-72-4_Window +TO-72-4, Window, generated with kicad-footprint-generator TO_SOT_THT_generate.py +TO-72-4 Window +0 +4 +4 +Package_TO_SOT_THT +TO-75-6 +TO-75-6, generated with kicad-footprint-generator TO_SOT_THT_generate.py +TO-75-6 +0 +6 +6 +Package_TO_SOT_THT +TO-75-6_Window +TO-75-6, Window, generated with kicad-footprint-generator TO_SOT_THT_generate.py +TO-75-6 Window +0 +6 +6 +Package_TO_SOT_THT +TO-78-6 +TO-78-6, generated with kicad-footprint-generator TO_SOT_THT_generate.py +TO-78-6 +0 +6 +6 +Package_TO_SOT_THT +TO-78-6_Window +TO-78-6, Window, generated with kicad-footprint-generator TO_SOT_THT_generate.py +TO-78-6 Window +0 +6 +6 +Package_TO_SOT_THT +TO-78-8 +TO-78-8, generated with kicad-footprint-generator TO_SOT_THT_generate.py +TO-78-8 +0 +8 +8 +Package_TO_SOT_THT +TO-78-8_Window +TO-78-8, Window, generated with kicad-footprint-generator TO_SOT_THT_generate.py +TO-78-8 Window +0 +8 +8 +Package_TO_SOT_THT +TO-78-10 +TO-78-10, generated with kicad-footprint-generator TO_SOT_THT_generate.py +TO-78-10 +0 +10 +10 +Package_TO_SOT_THT +TO-78-10_Window +TO-78-10, Window, generated with kicad-footprint-generator TO_SOT_THT_generate.py +TO-78-10 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, https://www.mouser.com/datasheet/2/196/Infineon_TLV4961_1TAB_DataSheet_v01_20_EN-3363873.pdf#page=16, hole and pad size from TI land pattern in https://www.ti.com/lit/ds/symlink/lmt85.pdf#page=22) +transistor TO-92S-Type-B Allegro-3-pin-SIP LPG0003A +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, generated with kicad-footprint-generator TO_SOT_THT_generate.py +TO-99-6 +0 +6 +6 +Package_TO_SOT_THT +TO-99-6_Window +TO-99-6, Window, generated with kicad-footprint-generator TO_SOT_THT_generate.py +TO-99-6 Window +0 +6 +6 +Package_TO_SOT_THT +TO-99-8 +TO-99-8, generated with kicad-footprint-generator TO_SOT_THT_generate.py +TO-99-8 +0 +8 +8 +Package_TO_SOT_THT +TO-99-8_Window +TO-99-8, Window, generated with kicad-footprint-generator TO_SOT_THT_generate.py +TO-99-8 Window +0 +8 +8 +Package_TO_SOT_THT +TO-100-10 +TO-100-10, generated with kicad-footprint-generator TO_SOT_THT_generate.py +TO-100-10 +0 +10 +10 +Package_TO_SOT_THT +TO-100-10_Window +TO-100-10, Window, generated with kicad-footprint-generator TO_SOT_THT_generate.py +TO-100-10 Window +0 +10 +10 +Package_TO_SOT_THT +TO-126-2_Horizontal_TabDown +TO-126-2, Horizontal, RM 5.08mm, see https://www.caddock.com/online_catalog/mrktg_lit/MP9000_Series.pdf, generated with kicad-footprint-generator TO_SOT_THT_generate.py +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.caddock.com/online_catalog/mrktg_lit/MP9000_Series.pdf, generated with kicad-footprint-generator TO_SOT_THT_generate.py +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.caddock.com/online_catalog/mrktg_lit/MP9000_Series.pdf, generated with kicad-footprint-generator TO_SOT_THT_generate.py +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.28mm, see https://www.diodes.com/assets/Package-Files/TO126.pdf, generated with kicad-footprint-generator TO_SOT_THT_generate.py +TO-126-3 Horizontal RM 2.28mm +0 +3 +3 +Package_TO_SOT_THT +TO-126-3_Horizontal_TabUp +TO-126-3, Horizontal, RM 2.28mm, see https://www.diodes.com/assets/Package-Files/TO126.pdf, generated with kicad-footprint-generator TO_SOT_THT_generate.py +TO-126-3 Horizontal RM 2.28mm +0 +3 +3 +Package_TO_SOT_THT +TO-126-3_Vertical +TO-126-3, Vertical, RM 2.28mm, see https://www.diodes.com/assets/Package-Files/TO126.pdf, generated with kicad-footprint-generator TO_SOT_THT_generate.py +TO-126-3 Vertical RM 2.28mm +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, generated with kicad-footprint-generator TO_SOT_THT_generate.py +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, generated with kicad-footprint-generator TO_SOT_THT_generate.py +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, generated with kicad-footprint-generator TO_SOT_THT_generate.py +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, generated with kicad-footprint-generator TO_SOT_THT_generate.py +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, generated with kicad-footprint-generator TO_SOT_THT_generate.py +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, generated with kicad-footprint-generator TO_SOT_THT_generate.py +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, generated with kicad-footprint-generator TO_SOT_THT_generate.py +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, generated with kicad-footprint-generator TO_SOT_THT_generate.py +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, generated with kicad-footprint-generator TO_SOT_THT_generate.py +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, generated with kicad-footprint-generator TO_SOT_THT_generate.py +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, generated with kicad-footprint-generator TO_SOT_THT_generate.py +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, generated with kicad-footprint-generator TO_SOT_THT_generate.py +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, generated with kicad-footprint-generator TO_SOT_THT_generate.py +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, generated with kicad-footprint-generator TO_SOT_THT_generate.py +TO-220-4 Horizontal RM 2.54mm +0 +4 +4 +Package_TO_SOT_THT +TO-220-4_P5.08x3.7mm_StaggerEven_Lead3.8mm_Vertical +TO-220-4, Vertical, RM 2.54mm, staggered type-2, generated with kicad-footprint-generator TO_SOT_THT_generate.py +TO-220-4 Vertical RM 2.54mm staggered type-2 +0 +4 +4 +Package_TO_SOT_THT +TO-220-4_P5.08x3.7mm_StaggerOdd_Lead3.8mm_Vertical +TO-220-4, Vertical, RM 2.54mm, staggered type-1, generated with kicad-footprint-generator TO_SOT_THT_generate.py +TO-220-4 Vertical RM 2.54mm staggered type-1 +0 +4 +4 +Package_TO_SOT_THT +TO-220-4_P5.08x3.8mm_StaggerEven_Lead5.85mm_TabDown +TO-220-4, Horizontal, RM 2.54mm, staggered type-2, generated with kicad-footprint-generator TO_SOT_THT_generate.py +TO-220-4 Horizontal RM 2.54mm staggered type-2 +0 +4 +4 +Package_TO_SOT_THT +TO-220-4_P5.08x3.8mm_StaggerOdd_Lead5.85mm_TabDown +TO-220-4, Horizontal, RM 2.54mm, staggered type-1, generated with kicad-footprint-generator TO_SOT_THT_generate.py +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, generated with kicad-footprint-generator TO_SOT_THT_generate.py +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, 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, generated with kicad-footprint-generator TO_SOT_THT_generate.py +TO-220-5 Horizontal RM 1.7mm Pentawatt +0 +5 +5 +Package_TO_SOT_THT +TO-220-5_Horizontal_TabUp +TO-220-5, Horizontal, RM 1.7mm, Pentawatt, 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, generated with kicad-footprint-generator TO_SOT_THT_generate.py +TO-220-5 Horizontal RM 1.7mm Pentawatt +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, 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, generated with kicad-footprint-generator TO_SOT_THT_generate.py +TO-220-5 Vertical RM 1.7mm Pentawatt 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, 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, generated with kicad-footprint-generator TO_SOT_THT_generate.py +TO-220-5 Vertical RM 1.7mm Pentawatt 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, 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, generated with kicad-footprint-generator TO_SOT_THT_generate.py +TO-220-5 Horizontal RM 1.7mm Pentawatt 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, 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, generated with kicad-footprint-generator TO_SOT_THT_generate.py +TO-220-5 Horizontal RM 1.7mm Pentawatt staggered type-1 +0 +5 +5 +Package_TO_SOT_THT +TO-220-5_Vertical +TO-220-5, Vertical, RM 1.7mm, Pentawatt, 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, generated with kicad-footprint-generator TO_SOT_THT_generate.py +TO-220-5 Vertical RM 1.7mm Pentawatt +0 +5 +5 +Package_TO_SOT_THT +TO-220-7_P2.54x3.7mm_StaggerEven_Lead3.8mm_Vertical +TO-220-7, Vertical, RM 1.27mm, staggered type-2 +TO-220-7 Vertical RM 1.27mm 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, staggered type-1 +TO-220-7 Vertical RM 1.27mm 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, staggered type-2 +TO-220-7 Horizontal RM 1.27mm 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, staggered type-1 +TO-220-7 Horizontal RM 1.27mm staggered type-1 +0 +7 +7 +Package_TO_SOT_THT +TO-220-7_P2.54x5.1mm_StaggerOdd_Lead8.025mm_TabDown +TO-220-7, Horizontal, RM 1.27mm, Heptawatt-H, staggered type-1, see https://www.mouser.com/datasheet/2/389/cd00000076-1795191.pdf#page=14, https://www.jedec.org/system/files/docs/TO-220L-01.pdf, generated with kicad-footprint-generator TO_SOT_THT_generate.py +TO-220-7 Horizontal RM 1.27mm Heptawatt-H staggered type-1 +0 +7 +7 +Package_TO_SOT_THT +TO-220-7_P2.54x5.08mm_StaggerOdd_Lead3.08mm_Vertical +TO-220-7, Vertical, RM 1.27mm, Heptawatt-V, NDZ0007B, staggered type-1, see https://www.mouser.com/datasheet/2/389/cd00000076-1795191.pdf#page=14, https://www.jedec.org/system/files/docs/TO-220L-01.pdf, generated with kicad-footprint-generator TO_SOT_THT_generate.py +TO-220-7 Vertical RM 1.27mm Heptawatt-V NDZ0007B 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.93x5.08mm_StaggerOdd_Lead3.378mm_Vertical +TO-220-9, Vertical, RM 0.965mm, Texas_NEC0009A, Texas_TA09A-(Rev-C), staggered type-1, see Texas Instruments NEC0009A, https://www.ti.com/lit/ml/mpsf023/mpsf023.pdf?ts=1736330780857, generated with kicad-footprint-generator TO_SOT_THT_generate.py +TO-220-9 Vertical RM 0.965mm Texas_NEC0009A Texas_TA09A-(Rev-C) staggered type-1 +0 +9 +9 +Package_TO_SOT_THT +TO-220-9_P1.94x3.7mm_StaggerEven_Lead3.8mm_Vertical +TO-220-9, Vertical, RM 0.97mm, staggered type-2, generated with kicad-footprint-generator TO_SOT_THT_generate.py +TO-220-9 Vertical RM 0.97mm 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, staggered type-1, generated with kicad-footprint-generator TO_SOT_THT_generate.py +TO-220-9 Vertical RM 0.97mm 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, staggered type-2, generated with kicad-footprint-generator TO_SOT_THT_generate.py +TO-220-9 Horizontal RM 0.97mm 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, staggered type-1, generated with kicad-footprint-generator TO_SOT_THT_generate.py +TO-220-9 Horizontal RM 0.97mm 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, Multiwatt-11, staggered type-2, see http://www.st.com/resource/en/datasheet/tda7391lv.pdf, generated with kicad-footprint-generator TO_SOT_THT_generate.py +TO-220-11 Horizontal RM 1.7mm Multiwatt-11 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, Multiwatt-11, staggered type-1, see http://www.st.com/resource/en/datasheet/tda7391lv.pdf, generated with kicad-footprint-generator TO_SOT_THT_generate.py +TO-220-11 Horizontal RM 1.7mm Multiwatt-11 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, Multiwatt-11, staggered type-2, see http://www.st.com/resource/en/datasheet/tda7391lv.pdf, generated with kicad-footprint-generator TO_SOT_THT_generate.py +TO-220-11 Vertical RM 1.7mm Multiwatt-11 staggered type-2 +0 +11 +11 +Package_TO_SOT_THT +TO-220-11_P3.4x5.08mm_StaggerOdd_Lead4.58mm_Vertical +TO-220-11, Vertical, RM 1.7mm, Multiwatt-11, staggered type-1, see http://www.st.com/resource/en/datasheet/tda7391lv.pdf, generated with kicad-footprint-generator TO_SOT_THT_generate.py +TO-220-11 Vertical RM 1.7mm Multiwatt-11 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, Multiwatt11, staggered type-1, see http://www.ti.com/lit/ds/symlink/lmd18200.pdf +TO-220-11 Horizontal RM 1.7mm staggered type-1 Multiwatt-11 +0 +11 +11 +Package_TO_SOT_THT +TO-220-15_P2.54x2.54mm_StaggerEven_Lead5.84mm_TabDown +TO-220-15, Horizontal, RM 1.27mm, Multiwatt-15, staggered type-2, see http://www.st.com/resource/en/datasheet/l298.pdf, generated with kicad-footprint-generator TO_SOT_THT_generate.py +TO-220-15 Horizontal RM 1.27mm Multiwatt-15 staggered type-2 +0 +15 +15 +Package_TO_SOT_THT +TO-220-15_P2.54x2.54mm_StaggerOdd_Lead5.84mm_TabDown +TO-220-15, Horizontal, RM 1.27mm, Multiwatt-15, staggered type-1, see http://www.st.com/resource/en/datasheet/l298.pdf, generated with kicad-footprint-generator TO_SOT_THT_generate.py +TO-220-15 Horizontal RM 1.27mm Multiwatt-15 staggered type-1 +0 +15 +15 +Package_TO_SOT_THT +TO-220-15_P2.54x5.08mm_StaggerEven_Lead4.58mm_Vertical +TO-220-15, Vertical, RM 1.27mm, Multiwatt-15, staggered type-2, see http://www.st.com/resource/en/datasheet/l298.pdf, generated with kicad-footprint-generator TO_SOT_THT_generate.py +TO-220-15 Vertical RM 1.27mm Multiwatt-15 staggered type-2 +0 +15 +15 +Package_TO_SOT_THT +TO-220-15_P2.54x5.08mm_StaggerOdd_Lead4.58mm_Vertical +TO-220-15, Vertical, RM 1.27mm, Multiwatt-15, staggered type-1, see http://www.st.com/resource/en/datasheet/l298.pdf, generated with kicad-footprint-generator TO_SOT_THT_generate.py +TO-220-15 Vertical RM 1.27mm Multiwatt-15 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, generated with kicad-footprint-generator TO_SOT_THT_generate.py +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, generated with kicad-footprint-generator TO_SOT_THT_generate.py +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, generated with kicad-footprint-generator TO_SOT_THT_generate.py +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, generated with kicad-footprint-generator TO_SOT_THT_generate.py +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, generated with kicad-footprint-generator TO_SOT_THT_generate.py +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, generated with kicad-footprint-generator TO_SOT_THT_generate.py +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, generated with kicad-footprint-generator TO_SOT_THT_generate.py +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, generated with kicad-footprint-generator TO_SOT_THT_generate.py +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, generated with kicad-footprint-generator TO_SOT_THT_generate.py +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, generated with kicad-footprint-generator TO_SOT_THT_generate.py +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, generated with kicad-footprint-generator TO_SOT_THT_generate.py +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, generated with kicad-footprint-generator TO_SOT_THT_generate.py +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, generated with kicad-footprint-generator TO_SOT_THT_generate.py +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, generated with kicad-footprint-generator TO_SOT_THT_generate.py +TO-220F-5 Horizontal RM 1.7mm PentawattF +0 +5 +5 +Package_TO_SOT_THT +TO-220F-5_Horizontal_TabUp +TO-220F-5, Horizontal, RM 1.7mm, PentawattF, generated with kicad-footprint-generator TO_SOT_THT_generate.py +TO-220F-5 Horizontal RM 1.7mm PentawattF +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, staggered type-2, generated with kicad-footprint-generator TO_SOT_THT_generate.py +TO-220F-5 Vertical RM 1.7mm PentawattF 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, staggered type-1, generated with kicad-footprint-generator TO_SOT_THT_generate.py +TO-220F-5 Vertical RM 1.7mm PentawattF 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, staggered type-2, generated with kicad-footprint-generator TO_SOT_THT_generate.py +TO-220F-5 Vertical RM 1.7mm PentawattF 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, staggered type-1, generated with kicad-footprint-generator TO_SOT_THT_generate.py +TO-220F-5 Vertical RM 1.7mm PentawattF staggered type-1 +0 +5 +5 +Package_TO_SOT_THT +TO-220F-5_Vertical +TO-220F-5, Vertical, RM 1.7mm, PentawattF, generated with kicad-footprint-generator TO_SOT_THT_generate.py +TO-220F-5 Vertical RM 1.7mm PentawattF +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, generated with kicad-footprint-generator TO_SOT_THT_generate.py +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, generated with kicad-footprint-generator TO_SOT_THT_generate.py +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, generated with kicad-footprint-generator TO_SOT_THT_generate.py +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, generated with kicad-footprint-generator TO_SOT_THT_generate.py +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, generated with kicad-footprint-generator TO_SOT_THT_generate.py +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, generated with kicad-footprint-generator TO_SOT_THT_generate.py +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, generated with kicad-footprint-generator TO_SOT_THT_generate.py +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, generated with kicad-footprint-generator TO_SOT_THT_generate.py +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, generated with kicad-footprint-generator TO_SOT_THT_generate.py +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, generated with kicad-footprint-generator TO_SOT_THT_generate.py +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, generated with kicad-footprint-generator TO_SOT_THT_generate.py +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, generated with kicad-footprint-generator TO_SOT_THT_generate.py +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, generated with kicad-footprint-generator TO_SOT_THT_generate.py +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, generated with kicad-footprint-generator TO_SOT_THT_generate.py +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, generated with kicad-footprint-generator TO_SOT_THT_generate.py +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, generated with kicad-footprint-generator TO_SOT_THT_generate.py +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, generated with kicad-footprint-generator TO_SOT_THT_generate.py +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, generated with kicad-footprint-generator TO_SOT_THT_generate.py +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, generated with kicad-footprint-generator TO_SOT_THT_generate.py +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, generated with kicad-footprint-generator TO_SOT_THT_generate.py +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, generated with kicad-footprint-generator TO_SOT_THT_generate.py +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, generated with kicad-footprint-generator TO_SOT_THT_generate.py +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, generated with kicad-footprint-generator TO_SOT_THT_generate.py +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, generated with kicad-footprint-generator TO_SOT_THT_generate.py +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, generated with kicad-footprint-generator TO_SOT_THT_generate.py +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, generated with kicad-footprint-generator TO_SOT_THT_generate.py +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, generated with kicad-footprint-generator TO_SOT_THT_generate.py +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, generated with kicad-footprint-generator TO_SOT_THT_generate.py +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, generated with kicad-footprint-generator TO_SOT_THT_generate.py +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, generated with kicad-footprint-generator TO_SOT_THT_generate.py +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, generated with kicad-footprint-generator TO_SOT_THT_generate.py +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, generated with kicad-footprint-generator TO_SOT_THT_generate.py +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, generated with kicad-footprint-generator TO_SOT_THT_generate.py +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, generated with kicad-footprint-generator TO_SOT_THT_generate.py +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, generated with kicad-footprint-generator TO_SOT_THT_generate.py +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, generated with kicad-footprint-generator TO_SOT_THT_generate.py +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, generated with kicad-footprint-generator TO_SOT_THT_generate.py +TO-264-5 Vertical RM 3.81mm +0 +5 +5 +Passives +CP_Elec_6.3x3 +SMD capacitor, aluminum electrolytic, Nichicon, 6.3x3.0mm +capacitor electrolytic +0 +2 +2 +Passives +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 +Passives +C_0805_HandSolder +Capacitor SMD 0805 (2012 Metric) Hand Solder + +0 +2 +2 +Passives +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 +Passives +D1X8K +https://ia800903.us.archive.org/24/items/CTKD1x8K/Cromatek%20D168K.pdf +Single digit 7 segment ultra bright red +0 +10 +10 +Passives +D_SMA +Diode SMA (DO-214AC) +Diode SMA (DO-214AC) +0 +2 +2 +Passives +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 +Passives +LED_0805_HandSolder +LED SMD 0805 (2012 Metric) Hand Solder + +0 +2 +2 +Passives +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 +Passives +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 +Passives +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 +Passives +R_0805_HandSolder +Resistor SMD 0805 (2012 Metric) Hand Solder + +0 +2 +2 +Passives +TRIM_3386F-1-103TLF + + +0 +3 +3 +Passives +TRIM_PTN091-V05115K1B + + +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_Hole +Potentiometer, vertical, shaft hole, extended leadframe, Bourns 3314R-GM5, http://www.bourns.com/docs/Product-Datasheets/3314.pdf +Potentiometer vertical hole extended leadframe 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_20P_Horizontal +Potentiometer, horizontal, Bourns 20P, https://www.mouser.at/datasheet/2/54/20-1159178.pdf +Potentiometer horizontal Bourns 20P +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_3386H_Horizontal +Potentiometer, horizontal, Bourns 3386H, https://www.bourns.com/pdfs/3386.pdf +Potentiometer horizontal Bourns 3386H +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_3386W_Horizontal +Potentiometer, horizontal, Bourns 3386W, 9.53 x 4.83 x 9.53mm, https://www.bourns.com/docs/Product-Datasheets/3386.pdf +Potentiometer +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 +5 +4 +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 +4 +Potentiometer_THT +Potentiometer_Bourns_PTV112-4_Dual_Vertical +2 Gang dual Through Hole, Snap In potentiometer, https://www.bourns.com/docs/Product-Datasheets/PTVPTT.pdf +PTV112-4 Dual gang +0 +8 +7 +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 +7 +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 +4 +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 +Potentiometer_THT +Potentiometer_Vishay_T93XA_Horizontal +Potentiometer, horizontal, Vishay, https://www.vishay.com/docs/51026/t93.pdf, 3/8" x 3/8" x 3/16" (9.7 x 9.8 x 5mm max.) +Potentiometer horizontal vishay +0 +3 +3 +Potentiometer_THT +Potentiometer_Vishay_T93YA_Vertical +Potentiometer, vertical, Vishay, https://www.vishay.com/docs/51026/t93.pdf +Potentiometer vertical vishay +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 +AVX_M620720 +868Mhz, 915Mhz ISM antenna, 6 x 2 x 1.08mm, http://datasheets.avx.com/ethertronics/AVX-E_M620720.pdf +868 915 Mhz ISM antenna +0 +6 +3 +RF_Antenna +Abracon_APAES868R8060C16-T +Abracon RHCP ceramic patch antenna 854-882Mhz, 5dBi +APAES patch antenna +0 +1 +1 +RF_Antenna +Abracon_PRO-OB-440 +Abracon OnBoard SMD antenna 2400-2500Mhz, https://abracon.com/datasheets/PRO-OB-440.pdf +2400 PRO-OB-440 Antenna +0 +4 +4 +RF_Antenna +Abracon_PRO-OB-471 +OnBoard 868/915/868+2400 MHz Antenna, https://abracon.com/datasheets/PRO-OB-471.pdf +Antenna ProAnt OnBoard 868Mhz 915Mhz 2400Mhz +0 +6 +6 +RF_Antenna +Antenova_SR4G013_GPS +GPS/GLONASS/Galileo/BeiDou antenna, 1559-1609Mhz, SMD, https://www.application-datasheet.com/pdf/antenova/sr4g013.pdf +antenna GPS Antenova Beltii +0 +5 +2 +RF_Antenna +Astrocast_AST50127-00 +L-band patch antenna, https://docs.astrocast.com/dl/0534-DOC-M2M-ASTRO-Patch_Antenna-Datasheet.pdf +L-band antenna astrocast Patch Antenna +0 +1 +1 +RF_Antenna +Coilcraft_MA5532-AE_RFID +RFID Transponder Coil +antenna rfid coilcraft +0 +2 +2 +RF_Antenna +Johanson_2450AT18x100 +Johanson 2450AT43F0100 SMD antenna 2400-2500Mhz, -0.5dBi, https://www.johansontechnology.com/datasheets/2450AT18A100/2450AT18A100.pdf +antenna +0 +2 +2 +RF_Antenna +Johanson_2450AT18x100_2400-2500Mhz +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 +Johanson_2450AT43F0100_2400-2500Mhz +Johanson 2450AT43F0100 SMD antenna 2400-2500Mhz, 1dBi, https://www.johansontechnology.com/datasheets/2450AT43F0100/2450AT43F0100.pdf +antenna +0 +2 +2 +RF_Antenna +Molex_47948-0001_2.4Ghz +SMD antenna 2400-2500Mhz, 3.7dBi, https://www.molex.com/content/dam/molex/molex-dot-com/products/automated/en-us/productspecificationpdf/479/47948/PS-47948-001-001.pdf?inline +rf antenna +0 +4 +2 +RF_Antenna +NiceRF_SW868-TH13_868Mhz +868Mhz copper string antenna, right angle, approx. 15mm coil length, 5.5mm OD, 0.8 wire diameter, https://www.nicerf.com/item/868mhz-spring-antenna-sw868-th13 +antenna rf +0 +1 +1 +RF_Antenna +Pulse_W3000 +Pulse Electronics W3000 tri-band antenna for GPS (1.575Ghz), 868Mhz and 2.4Ghz ISM bands, https://productfinder.pulseeng.com/products/datasheets/W3000.pdf +Antenna GPS 868Mhz ISM 1.575Ghz +0 +2 +2 +RF_Antenna +Pulse_W3011 +Pulse RF Antenna, 4mm Clearance +antenna rf +0 +3 +2 +RF_Antenna +Texas_SWRA117D_2.4GHz_Left +http://www.ti.com/lit/an/swra117d/swra117d.pdf +PCB antenna +0 +2 +2 +RF_Antenna +Texas_SWRA117D_2.4GHz_Right +http://www.ti.com/lit/an/swra117d/swra117d.pdf +PCB antenna +0 +2 +2 +RF_Antenna +Texas_SWRA416_868MHz_915MHz +http://www.ti.com/lit/an/swra416/swra416.pdf +PCB antenna +0 +20 +1 +RF_Converter +Anaren_0805_2012Metric-6 +https://cdn.anaren.com/product-documents/Xinger/DirectionalCouplers/DC4759J5020AHF/DC4759J5020AHF_DataSheet(Rev_E).pdf +coupler rf +0 +6 +6 +RF_Converter +Balun_Johanson_1.6x0.8mm +6-pin 1.6x0.8 mm balun footprint +Johanson balun filter +0 +6 +6 +RF_Converter +Balun_Johanson_0896BM15A0001 +https://www.johansontechnology.com/datasheets/0896BM15A0001/0896BM15A0001.pdf +balun RF +0 +6 +6 +RF_Converter +Balun_Johanson_0900FM15K0039 +Johanson 0900FM15K0039 DFN, 10 Pin (https://www.johansontechnology.com/datasheets/0900FM15K0039/0900FM15K0039.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +Johanson DFN NoLead +0 +10 +10 +RF_Converter +Balun_Johanson_0900PC15J0013 +Johanson 0900PC15J0013 DFN, 10 Pin (https://www.johansontechnology.com/datasheets/0900PC15J0013/0900PC15J0013.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +Johanson DFN NoLead +0 +10 +10 +RF_Converter +Balun_Johanson_5400BL15B050E +https://www.johansontechnology.com/datasheets/5400BL15B050/5400BL15B050.pdf +balun RF +0 +6 +6 +RF_Converter +RF_Attenuator_Susumu_PAT1220 +http://www.susumu-usa.com/pdf/Foot_Print_38.pdf, https://www.susumu.co.jp/common/pdf/n_catalog_partition16_en.pdf +2mm 1.2mm +0 +3 +3 +RF_GPS +Linx_RXM-GPS +GPS Module, Linx (https://linxtechnologies.com/wp/wp-content/uploads/rxm-gps-rm.pdf) +gps linx +0 +22 +22 +RF_GPS +OriginGPS_ORG1510 +GPS / GNSS Module with integrated antenna, (https://origingps.com/wp-content/uploads/2019/09/HORNET-Modules-Layout-recommendations-and-Integration-Application-Note-Rev-2.0.pdf) +GPS GNSS OriginGPS Hornet +0 +23 +11 +RF_GPS +Quectel_L70-R +Quectel L70-R, (https://www.quectel.com/product/gps-only-l70-r) +GPS Quectel L70-R +0 +18 +18 +RF_GPS +Quectel_L76 +GPS module, https://www.quectel.com/wp-content/uploads/2021/03/Quectel_L76L76-L_Hardware_Design_V3.2-1.pdf +Quectel GPS L76 L76-L +0 +18 +18 +RF_GPS +Quectel_L80-R +Quectel L80-R GPS Module, Patch on Top, https://www.quectel.com/UploadImage/Downlad/Quectel_L80-R_Hardware_Design_V1.2.pdf +quectel GPS GNSS +0 +12 +12 +RF_GPS +Quectel_L96 +Quectel L96 GPS GLONASS Galileo BeiDou Module, internal chip antenna, https://static6.arrow.com/aropdfconversion/50213b4bc5cb920911b62909a5ca765b1c5ab3d1/quectel_l96_hardware_design_v1.2.pdf +Quectel GPS GNSS +0 +31 +31 +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_GPS +ublox_ZOE_M8 +GPS Ublox ZOE, https://content.u-blox.com/sites/default/files/ZOE-M8_DataSheet_UBX-16008094.pdf +Ublox GPS GNSS +0 +51 +51 +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_BG95 +Quectel BG95 Cellular GSM NB-IoT Module https://images.quectel.com/python/sites/2/2023/05/Quectel_BG95_Series_QuecOpen_Hardware_Design_V1.3.pdf +Quectel BG95 Cellular GSM NB-IoT Module +0 +102 +102 +RF_GSM +Quectel_BG96 +Quectel BG96 Cellular GSM 2G Module https://www.quectel.com/download/quectel_bg96_hardware_design_v1-4 +Quectel BG96 Cellular GSM 2G Module +0 +204 +102 +RF_GSM +Quectel_M95 +Quad-Band GSM/GPRS module, 19.9x23.6x2.65mm, https://www.quectel.com/UploadImage/Downlad/M95_Hardware_Design_V1.3.pdf +GSM Module M95 +0 +84 +42 +RF_GSM +SIMCom_SIM800C +Quad-Band GSM/GPRS module, 17.6x15.7x2.3mm, http://simcom.ee/documents/SIM800C/SIM800C_Hardware_Design_V1.05.pdf +GSM Module SIM800C +0 +84 +42 +RF_GSM +SIMCom_SIM900 +Quad-Band GSM/GPRS module, 24x24x3mm, http://simcom.ee/documents/SIM900/SIM900_Hardware%20Design_V2.05.pdf +GSM Module SIM900 +0 +68 +68 +RF_GSM +Telit_SE150A4 +Telit SE150A4 smart module, https://atoma.spb.ru/sites/default/files/documents/telit_se150a4_smart_module_hardware_user_guide_r1.pdf +Smart module Telit SE150 +0 +466 +210 +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_LENA-R8_LGA-100 +Multi-mode LTE Cat1 modules, https://content.u-blox.com/sites/default/files/documents/LENA-R8_SysIntegrManual_UBX-22015376.pdf#page=94 and https://content.u-blox.com/sites/default/files/documents/LENA-R8_DataSheet_UBX-22003110.pdf#page=35 +ublox GSM LTE +0 +200 +100 +RF_GSM +ublox_SARA_LGA-96 +ublox SARA cellular/GNSS module, https://www.u-blox.com/sites/default/files/SARA-G3-U2_SysIntegrManual_%28UBX-13000995%29.pdf, pag.162 +ublox u-blox SARA-R41 SARA-R42 SARA-R5 SARA-N2 SARA-N3 SARA-G3 SARA-G4 SARA-U2 cellular LTE IoT GSM HSPA GNSS GPS +0 +192 +96 +RF_Mini-Circuits +Mini-Circuits_BK377 +Footprint for Mini-Circuits case BK377 (https://ww2.minicircuits.com/case_style/BK276.pdf) +Mini-circuits BK377 +0 +14 +14 +RF_Mini-Circuits +Mini-Circuits_BK377_LandPatternPL-005 +Footprint for Mini-Circuits case BK377 (https://ww2.minicircuits.com/case_style/BK276.pdf) according to land-pattern PL-005, including GND vias (https://ww2.minicircuits.com/pcb/98-pl005.pdf) +Mini-circuits VCXO JTOS PL-005 +0 +50 +14 +RF_Mini-Circuits +Mini-Circuits_CD541_H2.08mm +https://ww2.minicircuits.com/case_style/CD541.pdf +RF Transformer +0 +6 +6 +RF_Mini-Circuits +Mini-Circuits_CD542_H2.84mm +https://ww2.minicircuits.com/case_style/CD542.pdf +RF Transformer +0 +6 +6 +RF_Mini-Circuits +Mini-Circuits_CD542_LandPatternPL-052 +Footprint for Mini-Circuits case CD542 (https://ww2.minicircuits.com/case_style/CD542.pdf) using land-pattern PL-052, including GND-vias (https://ww2.minicircuits.com/pcb/98-pl052.pdf) +MiniCircuits PL-052 CD542 +0 +17 +6 +RF_Mini-Circuits +Mini-Circuits_CD542_LandPatternPL-094 +Footprint for mini circuit case CD542, Land pattern PL-094, pads 5 and 2 connected via insulated copper area below body, vias included (case drawing: https://ww2.minicircuits.com/case_style/CD542.pdf, land pattern drawing: https://ww2.minicircuits.com/pcb/98-pl094.pdf) +mini-circuits CD542 pl-094 +0 +18 +6 +RF_Mini-Circuits +Mini-Circuits_CD636_H4.11mm +https://ww2.minicircuits.com/case_style/CD636.pdf +RF Transformer +0 +6 +6 +RF_Mini-Circuits +Mini-Circuits_CD636_LandPatternPL-035 +Footprint for Mini-Circuits case CD636 (https://ww2.minicircuits.com/case_style/CD636.pdf) following land pattern PL-035, including GND-vias (https://ww2.minicircuits.com/pcb/98-pl035.pdf) +mini-circuits pl-035 CD636 +0 +13 +6 +RF_Mini-Circuits +Mini-Circuits_CD637_H5.23mm +https://ww2.minicircuits.com/case_style/CD637.pdf +RF Transformer +0 +6 +6 +RF_Mini-Circuits +Mini-Circuits_CK605 +Footprint for Mini-Circuits case CK605 (https://ww2.minicircuits.com/case_style/CK605.pdf) +Mini-Circuits CK605 +0 +16 +16 +RF_Mini-Circuits +Mini-Circuits_CK605_LandPatternPL-012 +Footprint for Mini-Circuits case CK605 (https://ww2.minicircuits.com/case_style/CK605.pdf) following land pattern PL-012, including GND vias (https://ww2.minicircuits.com/pcb/98-pl012.pdf) +Mini-Circuits PL-012 +0 +53 +16 +RF_Mini-Circuits +Mini-Circuits_DB1627 +Mini-Circuits top-hat case DB1627 (https://ww2.minicircuits.com/case_style/DB1627.pdf) +Mini-Circuits DB1627 +0 +6 +6 +RF_Mini-Circuits +Mini-Circuits_GP731 +Footprint for Mini-Circuits case GP731 (https://ww2.minicircuits.com/case_style/GP731.pdf) +Mini-Circuits GP731 +0 +8 +8 +RF_Mini-Circuits +Mini-Circuits_GP731_LandPatternPL-176 +Footprint for Mini-Circuits case GP731 (https://ww2.minicircuits.com/case_style/GP731.pdf) following land pattern PL-176, including GND vias (https://www.minicircuits.com/pcb/98-pl176.pdf) +mini-circuits PL-176 +0 +21 +8 +RF_Mini-Circuits +Mini-Circuits_GP1212 +Footprint for Mini-Circuits case GP1212 (https://ww2.minicircuits.com/case_style/GP731.pdf) +mini-circuits GP1212 +0 +8 +8 +RF_Mini-Circuits +Mini-Circuits_GP1212_LandPatternPL-176 +Footprint for Mini-Circuits case GP1212 (https://ww2.minicircuits.com/case_style/GP731.pdf) following land pattern PL-176, including GND vias (https://www.minicircuits.com/pcb/98-pl176.pdf) +mini-circuits PL-176 +0 +21 +8 +RF_Mini-Circuits +Mini-Circuits_HF1139 +Footprint for Mini-Circuits case HF1139 (https://ww2.minicircuits.com/case_style/HF1139.pdf) +Mini-Circuits HF1139 +0 +8 +8 +RF_Mini-Circuits +Mini-Circuits_HF1139_LandPatternPL-230 +Footprint for Mini-Circuits case HF1139 (https://ww2.minicircuits.com/case_style/HF1139.pdf) following land pattern PL-230, including GND vias (https://ww2.minicircuits.com/pcb/98-pl230.pdf) +Mini-Circuits PL-230 +0 +37 +8 +RF_Mini-Circuits +Mini-Circuits_HQ1157 +Footprint for Mini-Circuits case HQ1157 (https://www.minicircuits.com/case_style/HQ1157.pdf) +Mini-Circuits HQ1157 +0 +14 +14 +RF_Mini-Circuits +Mini-Circuits_HZ1198 +Footprint for Mini-Circuits case HZ1198 (https://ww2.minicircuits.com/case_style/HZ1198.pdf) +Mini-Circuits HZ1198 +0 +6 +6 +RF_Mini-Circuits +Mini-Circuits_HZ1198_LandPatternPL-247 +Footprint for Mini-Circuits cas HZ1198 (https://ww2.minicircuits.com/case_style/HZ1198.pdf) following land pattern PL-247, including GND-vias (https://www.minicircuits.com/pcb/98-pl247.pdf) +Mini-Circuits PL-247 HZ1198 +0 +40 +6 +RF_Mini-Circuits +Mini-Circuits_MMM168 +Footprint for Mini-Circuits case MMM168 (https://ww2.minicircuits.com/case_style/MMM168.pdf) +Mini-Circuits MMM168 +0 +4 +4 +RF_Mini-Circuits +Mini-Circuits_MMM168_LandPatternPL-225 +Footprint for Mini-Circuits case MMM168, Land pattern PL-225, vias included, (case drawing: https://ww2.minicircuits.com/case_style/MMM168.pdf, land pattern drawing: https://ww2.minicircuits.com/pcb/98-pl225.pdf) +pl-225 +0 +10 +4 +RF_Mini-Circuits +Mini-Circuits_QQQ130_ClockwisePinNumbering +Footprint for Mini-Circuits case QQQ130 (https://ww2.minicircuits.com/case_style/QQQ130.pdf) +Mini-Circuits QQQ130 +0 +6 +6 +RF_Mini-Circuits +Mini-Circuits_QQQ130_LandPattern_PL-236_ClockwisePinNumbering +Footprint for Mini-Circuits case QQQ130 (https://ww2.minicircuits.com/case_style/QQQ130.pdf) following land pattern PL-236, including GND vias (https://ww2.minicircuits.com/pcb/98-pl236.pdf) +Mini-Circuits PL-236 +0 +14 +6 +RF_Mini-Circuits +Mini-Circuits_TT1224_ClockwisePinNumbering +Footprint for Mini-Circuits case TT1224 (https://ww2.minicircuits.com/case_style/TT1224.pdf) following land-pattern PL-258, including GND-vias (https://www.minicircuits.com/pcb/98-pl258.pdf) +Mini-Circuits TT1224 +0 +6 +6 +RF_Mini-Circuits +Mini-Circuits_TT1224_LandPatternPL-258_ClockwisePinNumbering +Footprint for Mini-Circuits case TT1224 (https://ww2.minicircuits.com/case_style/TT1224.pdf) following land-pattern PL-258, including GND-vias (https://www.minicircuits.com/pcb/98-pl258.pdf) +PL-258 Mini-Circuits +0 +26 +6 +RF_Mini-Circuits +Mini-Circuits_TTT167 +Footprint for Mini-Circuits case TTT167 (https://ww2.minicircuits.com/case_style/TTT167.pdf) +Mini-Circuits TTT167 +0 +6 +6 +RF_Mini-Circuits +Mini-Circuits_TTT167_LandPatternPL-079 +Footprint for Mini-Circuits case TTT167 (Mini-Circuits_TTT167_LandPatternPL-079) following land pattern PL-079, including GND vias (https://ww2.minicircuits.com/pcb/98-pl079.pdf) +Mini-Circuits PL-079 +0 +36 +6 +RF_Mini-Circuits +Mini-Circuits_YY161 +Footprint for Mini-Circuits case YY161 (https://ww2.minicircuits.com/case_style/YY161.pdf) +Mini-Circuits YY161 +0 +8 +8 +RF_Mini-Circuits +Mini-Circuits_YY161_LandPatternPL-049 +Footprint for Mini-Circuits case YY161 (https://ww2.minicircuits.com/case_style/YY161.pdf) using land-pattern PL-049, including GND-connections and vias (https://ww2.minicircuits.com/pcb/98-pl049.pdf) +mini-circuits pl-049 +0 +36 +8 +RF_Module +Ai-Thinker-Ra-01-LoRa +Ai Thinker Ra-01 LoRa +LoRa Ra-01 +0 +16 +16 +RF_Module +Astrocast_AST50147-00 +L-band satellite communication module, https://docs.astrocast.com/dl/0532-DOC-M2M-ASTRO-Astronode_S-Datasheet.pdf +RF module Astrocast radio Astronode +0 +38 +38 +RF_Module +Atmel_ATSAMR21G18-MR210UA_NoRFPads +http://ww1.microchip.com/downloads/en/devicedoc/atmel-42475-atsamr21g18-mr210ua_datasheet.pdf +module wireless zigbee 802.15.4 flash crypto ATSAMR21G18 AT45DB041E TECC508A U.Fi +0 +42 +42 +RF_Module +BLE112-A +Class 4 Bluetooth Module with on-board antenna +Bluetooth Module +0 +30 +30 +RF_Module +BM78SPPS5xC2 +Bluetooth Dual-mode module with integral chip antenna (http://ww1.microchip.com/downloads/en/DeviceDoc/60001380C.pdf) +Bluetooth BR/EDR BLE +0 +33 +33 +RF_Module +CMWX1ZZABZ +https://wireless.murata.com/RFM/data/type_abz.pdf +iot lora sigfox +0 +57 +57 +RF_Module +CYBLE-21Pin-10x10mm +Cypress EZ-BLE PRoC Module (Bluetooth Smart) 21 Pin Module +Cypress BT Bluetooth +0 +21 +21 +RF_Module +DWM1000 +IEEE802.15.4-2011 UWB +UWB Module +0 +24 +24 +RF_Module +DecaWave_DWM1001 +https://www.decawave.com/sites/default/files/dwm1001_datasheet.pdf +UWB module +0 +34 +34 +RF_Module +Digi_XBee_SMT +http://www.digi.com/resources/documentation/digidocs/pdfs/90002126.pdf http://ftp1.digi.com/support/documentation/90001020_F.pdf +Digi XBee SMT RF +0 +37 +37 +RF_Module +E18-MS1-PCB +http://www.cdebyte.com/en/downpdf.aspx?id=122 +Zigbee +0 +24 +24 +RF_Module +E73-2G4M04S +http://www.cdebyte.com/en/downpdf.aspx?id=243 +BLE BLE5 nRF52832 +0 +44 +44 +RF_Module +ESP-01 +Wi-Fi Module, https://docs.ai-thinker.com/_media/esp8266/esp8266_series_modules_user_manual_en.pdf +Wi-Fi Module +0 +8 +8 +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-C3-DevKitM-1 +2.4 GHz Wi-Fi and Bluetooth module https://docs.espressif.com/projects/esp-dev-kits/en/latest/esp32c3/esp32-c3-devkitm-1/index.html +esp32 esp32-c3 riscv risc-v wifi bluetooth ble +0 +30 +30 +RF_Module +ESP32-C3-WROOM-02 +RF Module, ESP32-C3 WROOM-02, Wi-Fi and Bluetooth, BLE, onboard antenna, https://www.espressif.com/sites/default/files/documentation/esp32-c3-wroom-02_datasheet_en.pdf +ESP32-C3 WROOM-02 espressif +0 +40 +19 +RF_Module +ESP32-C3-WROOM-02U +RF Module, ESP32-C3 WROOM-02 , Wi-Fi and Bluetooth, BLE, external antenna, https://www.espressif.com/sites/default/files/documentation/esp32-c3-wroom-02_datasheet_en.pdf +ESP32-C3 WROOM-02 espressif +0 +40 +19 +RF_Module +ESP32-C6-MINI-1 +2.4 GHz Wi-Fi, Bluetooth, Zigbee and Thread combo chip, external antenna, https://www.espressif.com/sites/default/files/documentation/esp32-c6-mini-1_mini-1u_datasheet_en.pdf +2.4 GHz Wi-Fi Bluetooth Zigbee Thread external antenna espressif 16.6*13.2mm +0 +61 +53 +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 +52 +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-S3-WROOM-2 +2.4 GHz Wi­-Fi and Bluetooth 5 (LE) module: https://www.espressif.com/sites/default/files/documentation/esp32-s3-wroom-2_datasheet_en.pdf +Bluetooth WiFi Wi-Fi ESP WROOM +0 +61 +41 +RF_Module +ESP32-WROOM-32 +Single 2.4 GHz Wi-Fi and Bluetooth combo chip https://www.espressif.com/sites/default/files/documentation/esp32-wroom-32_datasheet_en.pdf +Single 2.4 GHz Wi-Fi and Bluetooth combo chip +0 +60 +39 +RF_Module +ESP32-WROOM-32D +2.4 GHz Wi-Fi and Bluetooth module, https://www.espressif.com/sites/default/files/documentation/esp32-wroom-32d_esp32-wroom-32u_datasheet_en.pdf +2.4 GHz Wi-Fi and Bluetooth module ESP32-D0WD Espressif ESP32-WROOM-32E +0 +60 +39 +RF_Module +ESP32-WROOM-32E +2.4 GHz Wi­-Fi and Bluetooth 5 (LE) module: https://www.espressif.com/sites/default/files/documentation/esp32-wroom-32e_esp32-wroom-32ue_datasheet_en.pdf +Bluetooth WiFi Wi-Fi ESP32 WROOM Xtensa LX6 +0 +59 +39 +RF_Module +ESP32-WROOM-32U +Single 2.4 GHz Wi-Fi and Bluetooth combo chip with U.FL connector, https://www.espressif.com/sites/default/files/documentation/esp32-wroom-32d_esp32-wroom-32u_datasheet_en.pdf +Single 2.4 GHz Wi-Fi and Bluetooth combo chip +0 +60 +39 +RF_Module +ESP32-WROOM-32UE +2.4 GHz Wi-Fi and Bluetooth module, https://www.espressif.com/sites/default/files/documentation/esp32-wroom-32e_esp32-wroom-32ue_datasheet_en.pdf +2.4 GHz Wi-Fi and Bluetooth module +0 +60 +39 +RF_Module +Garmin_M8-35_9.8x14.0mm_Layout6x6_P1.5mm +D52M ANT SoC Module https://www.thisisant.com/assets/resources/D00001687_D52_Module_Datasheet.v.2.3_(Garmin).pdf +RF SoC Radio ANT Bluetooth BLE D52 nRF52 Garmin Canada Dynastream Nordic +0 +35 +35 +RF_Module +HOPERF_RFM9XW_SMD +Low Power Long Range Transceiver Module SMD-16 (https://www.hoperf.com/data/upload/portal/20181127/5bfcbea20e9ef.pdf) +LoRa Low Power Long Range Transceiver Module +0 +16 +16 +RF_Module +HOPERF_RFM9XW_THT +Low Power Long Range Transceiver Module THT-16 (https://www.hoperf.com/data/upload/portal/20181127/5bfcbea20e9ef.pdf) +Low Power Long Range Transceiver Module LoRa +0 +16 +16 +RF_Module +HOPERF_RFM69HW +Radio, RF, Module, http://www.hoperf.com/upload/rf/RFM69HW-V1.3.pdf +Radio RF Module +0 +16 +16 +RF_Module +Heltec_HT-CT62 +HT-CT62 LoRa Module +LoRa WiFi Heltec HT-CT62 ESP32C3 +0 +22 +22 +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 +Jadak_Thingmagic_M6e-Nano +UHF RFID reader with one 27dBm antenna port, https://www.jadaktech.com/product/thingmagic-m6e-nano-uhf-rain-rfid/ +Jadak Thingmagic M6e +0 +96 +41 +RF_Module +Laird_BL652 +Bluetooth v4.2 + NFC module +Bluetooth BLE NFC +0 +39 +39 +RF_Module +Laird_BL653 +BL653 Bluetooth 5.1 module, https://www.lairdconnect.com/wireless-modules/bluetooth-modules/bluetooth-5-modules/bl653-series-bluetooth-51-802154-nfc-module +Wi-Fi Module +0 +73 +73 +RF_Module +MCU_Seeed_ESP32C3 +ESP32C3 Seeed Xiao RF Wifi Shield (https://www.seeedstudio.com/blog/wp-content/uploads/2022/08/Seeed-Studio-XIAO-Series-Package-and-PCB-Design.pdf) +wifi bluetooth microcontroller +0 +27 +23 +RF_Module +MOD-nRF8001 +BLE module, https://www.olimex.com/Products/Modules/RF/MOD-nRF8001/ +BLE module +0 +11 +11 +RF_Module +Microchip_BM83 +Microchip BM83, Bluetooth 5.0 Stereo Audio Module with on-Board antenna, https://ww1.microchip.com/downloads/aemDocuments/documents/WSG/ProductDocuments/DataSheets/70005402E.pdf +bluetooth module +0 +52 +52 +RF_Module +Microchip_RN4871 +Microchip RN4871 footprint +RN4871 BLE +0 +16 +16 +RF_Module +Modtronix_inAir9 +Modtronix Wireless SX1276 LoRa Module (http://modtronix.com/img/prod/imod/inair9/inair_dimensions.gif) +Modtronix LoRa inAir inAir9 SX1276 RF 915MHz 868MHz Wireless +0 +14 +14 +RF_Module +MonoWireless_TWE-L-WX +https://www.mono-wireless.com/jp/products/TWE-LITE/MW-PDS-TWELITE-JP.pdf +TWE-L-WX +0 +32 +32 +RF_Module +NINA-B111 +NINA-B111 LGA module 42 Pin https://content.u-blox.com/sites/default/files/NINA-B1_DataSheet_UBX-15019243.pdf#page=30 +NINA ublox u-blox b111 bluetooth nrf52840 module +0 +42 +42 +RF_Module +Particle_P1 +https://docs.particle.io/datasheets/p1-datasheet/ +Particle P1 +0 +75 +75 +RF_Module +RAK811 +RAK811 LPWAN Module https://downloads.rakwireless.com/LoRa/RAK811/Hardware_Specification/RAK811_LoRa_Module_Datasheet_V1.4.pdf +LoRa LoRaWAN RAK811 +0 +34 +34 +RF_Module +RAK3172 +RAK3172 WisDuo LPWAN Module https://docs.rakwireless.com/product-categories/wisduo/rak3172-module/datasheet/ +LoRa LoRaWAN RAK3172 +0 +32 +32 +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 +RMC20452T +2.4 GHz Wi­-Fi and Bluetooth 5 (LE) module 14.5x16.5x2.55mm https://datasheets.raspberrypi.com/rm2/rm2-datasheet.pdf +WiFi BLE RM2 +0 +21 +21 +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_MDBT42Q +Multiprotocol radio SoC module https://www.raytac.com/download/index.php?index_id=27 +wireless 2.4 GHz Bluetooth ble zigbee 802.15.4 thread nordic raytac nrf52832 +0 +41 +41 +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-SiP-LGA-86-11x7.3mm +STM32WB5MMG Module, LGA86L 11x7.3 +bluetooth bluetooth5 bluetooth5.0 802.15.4 zigbee thread module stm32 rf +0 +86 +86 +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 +WEMOS_C3_mini +16-pin module, column spacing 22.86 mm (900 mils), https://www.wemos.cc/en/latest/_static/files/dim_c3_mini_v1.0.0.pdf +ESP32-C3 WiFi microcontroller +0 +16 +16 +RF_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 +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, http://cdn.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, http://cdn.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, http://cdn.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, http://cdn.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, http://cdn.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, http://cdn.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, http://cdn.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, http://cdn.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, http://cdn.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, http://cdn.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, http://cdn.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, http://cdn.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, http://cdn.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, http://cdn.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, http://cdn.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, http://cdn.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, http://cdn.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, http://cdn.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, http://cdn.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, https://media.digikey.com/pdf/Data%20Sheets/Laird%20Technologies/BMI-S-230-F_Dwg.pdf +Shielding Cabinet +0 +36 +1 +RF_Shielding +Wuerth_36103205_20x20mm +WE-SHC Shielding Cabinet SMD 20x20mm, http://katalog.we-online.com/pbs/datasheet/36103205.pdf +Shielding Cabinet +0 +20 +1 +RF_Shielding +Wuerth_36103255_25x25mm +WE-SHC Shielding Cabinet SMD 25x25mm, http://katalog.we-online.com/pbs/datasheet/36103255.pdf +Shielding Cabinet +0 +24 +1 +RF_Shielding +Wuerth_36103305_30x30mm +WE-SHC Shielding Cabinet SMD 30x30mm, http://katalog.we-online.com/pbs/datasheet/36103305.pdf +Shielding Cabinet +0 +28 +1 +RF_Shielding +Wuerth_36103505_50x50mm +WE-SHC Shielding Cabinet SMD 50x50mm, http://katalog.we-online.com/pbs/datasheet/36103505.pdf +Shielding Cabinet +0 +44 +1 +RF_Shielding +Wuerth_36103605_60x60mm +WE-SHC Shielding Cabinet SMD 60x60mm, http://katalog.we-online.com/pbs/datasheet/36103605.pdf +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_3PST_COTO_3650 +Low thermal EMF 3PST-NO reed relay, 150V 0.25A, similar to 3660 but with independent shield, https://cotorelay.com/wp-content/uploads/2014/09/3600_series_reed_relay_datasheet.pdf +reed relay low thermal emf +0 +9 +9 +Relay_THT +Relay_3PST_COTO_3660 +Low thermal EMF 3PST-NO reed relay, 150V 0.25A, similar to 3650 but with shared shield/contact, https://cotorelay.com/wp-content/uploads/2014/09/3600_series_reed_relay_datasheet.pdf +reed relay low thermal emf +0 +8 +8 +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 +DPDT relay, Finder 40.52, 8A, 250V, body size 29x12.4mm, height 25mm, pitch 5x7.5mm, https://cdn.findernet.com/app/uploads/S40EN.pdf +2-Form-C +0 +8 +8 +Relay_THT +Relay_DPDT_Finder_40.62 +DPDT relay, Finder 40.62, 10A, 250V, body size 29x12.4mm, height 25mm, pitch 5x7.5mm, https://cdn.findernet.com/app/uploads/S40EN.pdf +2-Form-C +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_Hongfa_HF115F-2Z-x4 +Hongfa DPDT power relay, 8A, 250VAC, body size 29x127.x15.7mm, https://source.hongfa.com//pdf/web/viewer.html?file=/Uploads/Product/PDF/HF115F_I_en.pdf +2-Form-C +0 +8 +8 +Relay_THT +Relay_DPDT_Kemet_EC2_NJ +Kemet signal relay, DPDT, non-latching, single coil latching, 2.8mm pin height, 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_NJ_DoubleCoil +Kemet signal relay, DPDT, double coil latching, 2.8mm pin height, 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_Kemet_EC2_NU +Kemet signal relay, DPDT, non-latching, single coil latching, 3.2mm pin height, 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_NU_DoubleCoil +Kemet signal relay, DPDT, double coil latching, 3.2mm pin height, https://content.kemet.com/datasheets/KEM_R7002_EC2_EE2.pdf +Kemet EC2 signal relay DPDT double dual coil latching through hole THT +0 +10 +10 +Relay_THT +Relay_DPDT_Omron_G2RL-2 +Omron Relay, DPDT, https://omronfs.omron.com/en_US/ecb/products/pdf/en-g2rl.pdf +Omron Relay DPDT +0 +8 +8 +Relay_THT +Relay_DPDT_Omron_G5V-2 +http://omronfs.omron.com/en_US/ecb/products/pdf/en-g5v2.pdf +Omron G5V-2 Relay DPDT +0 +8 +8 +Relay_THT +Relay_DPDT_Omron_G6A +DPDT signal relay, Omron G6A/G6AU, 20x9.9x8.2mm https://omronfs.omron.com/en_US/ecb/products/pdf/en-g6a.pdf +Omron G6A Relay DPDT +0 +8 +8 +Relay_THT +Relay_DPDT_Omron_G6AK +DPDT signal relay, double-winding latching, Omron G6AK, 20x9.9x8.2mm https://omronfs.omron.com/en_US/ecb/products/pdf/en-g6a.pdf +Omron G6AK Relay DPDT +0 +10 +10 +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_COTO_3602 +Low thermal EMF DPST-NO reed relay, 150V 0.25A, https://cotorelay.com/wp-content/uploads/2014/09/3600_series_reed_relay_datasheet.pdf +reed relay low thermal emf +0 +7 +7 +Relay_THT +Relay_DPST_Fujitsu_FTR-F1A +https://www.fujitsu.com/downloads/MICRO/fcai/relays/ftr-f1.pdf +relay dpst fujitsu tht +0 +6 +6 +Relay_THT +Relay_DPST_Omron_G2RL-2A +Omron Relay, DPST, https://omronfs.omron.com/en_US/ecb/products/pdf/en-g2rl.pdf +Omron Relay DPST +0 +6 +6 +Relay_THT +Relay_DPST_Schrack-RT2-FormA_RM5mm +Relay DPST Schrack-RT2 RM5mm 16A 250V AC Form A http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=RT2_reflow&DocType=DS&DocLang=EN +Relay DPST Schrack-RT2 RM5mm 16A 250V AC Relay +0 +6 +6 +Relay_THT +Relay_NCR_HHG1D-1 +NCR solid state relay 1A, 2A, 3A, 4A, https://ncr.hk/uploads/Relays/Solid_State_Relays/HHG1D-1.pdf +ssr +0 +4 +4 +Relay_THT +Relay_SPDT_CUI_SR5 +CUI Relay, SPDT, https://www.cuidevices.com/product/resource/sr5.pdf +CUI Relay SPDT +0 +6 +5 +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://cdn.findernet.com/app/uploads/S36EN.pdf +spdt relay +0 +5 +5 +Relay_THT +Relay_SPDT_Finder_40.11 +Relay SPDT Finder 40.11, 10/16A, 250V, body size 28.5x26.3mm, height 12.7mm, https://web.archive.org/web/20170816081018if_/https://www.finder-relais.net/de/finder-relais-serie-40.pdf +1-Form-C +0 +5 +5 +Relay_THT +Relay_SPDT_Finder_40.31 +DPDT relay, Finder 40.52, 10/12A, 250V, body size 29x12.4mm, height 25mm, pitch 3.5x7.5mm, https://cdn.findernet.com/app/uploads/S40EN.pdf +1-Form-C +0 +5 +5 +Relay_THT +Relay_SPDT_Finder_40.41 +Relay SPDT Finder 40.11, 10A, 250V, body size 28.5x12.3mm, height 26.3mm, https://web.archive.org/web/20170816081018if_/https://www.finder-relais.net/de/finder-relais-serie-40.pdf +1-Form-C +0 +5 +5 +Relay_THT +Relay_SPDT_Finder_40.51 +SPDT relay, Finder 40.52, 10/12A, 250V, body size 29x12.4mm, height 25mm, pitch 5x7.5mm, https://cdn.findernet.com/app/uploads/S40EN.pdf +1-Form-C +0 +5 +5 +Relay_THT +Relay_SPDT_Finder_40.61 +SPDT relay, Finder 40.61, 16A, 250V, body size 29x12.4mm, height 25mm, pitch 5x7.5mm, https://cdn.findernet.com/app/uploads/S40EN.pdf +2-Form-C +0 +8 +8 +Relay_THT +Relay_SPDT_Fujitsu_FTR-LYCA005x_FormC_Vertical +Relay, SPDT Form C, vertical mount, 6A, 5-60V, https://www.fujitsu.com/sg/imagesgig5/ftr-ly.pdf +relay SPDT form c vertical +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_Hongfa_HF3F-L-xx-1ZL1T +Hongfa subminature high power latching relay 5, 6, 9, 12, 24, 48VDC. 10A switching current, Form-C https://source.hongfa.com//Api/DownloadPdf/362 +relays Hongfa form-c 1-coil +0 +5 +5 +Relay_THT +Relay_SPDT_Hongfa_HF3F-L-xx-1ZL2T +Hongfa subminature high power latching relay 5, 6, 9, 12, 24, 48VDC. 10A switching current, Form-C https://source.hongfa.com//Api/DownloadPdf/362 +relays Hongfa form-c 2-coil +0 +6 +6 +Relay_THT +Relay_SPDT_Hongfa_HF3F-L-xx-1ZL2T-R +Hongfa subminature high power latching relay 5, 6, 9, 12, 24, 48VDC. 10A switching current, reverse polarity, Form-C https://source.hongfa.com//Api/DownloadPdf/362 +relays Hongfa form-c 2-coil reverse-polarity +0 +6 +6 +Relay_THT +Relay_SPDT_Hongfa_JQC-3FF_0XX-1Z +Hongfa subminature high power latching SPDT relay 5, 6, 9, 12, 18, 24, 48VDC. 10A switching current, Form-B https://www.generationrobots.com/media/JQC-3FF-v1.pdf +relays Hongmei 1-coil +0 +5 +5 +Relay_THT +Relay_SPDT_HsinDa_Y14 +http://www.hsinda.com.tw/upload/file/Y14-20200430135145.pdf +Relay Y14 +0 +6 +6 +Relay_THT +Relay_SPDT_Omron-G5LE-1 +Omron Relay SPDT, http://www.omron.com/ecb/products/pdf/en-g5le.pdf +Omron Relay SPDT +0 +5 +5 +Relay_THT +Relay_SPDT_Omron-G5Q-1 +Relay SPDT Omron Serie G5Q, http://omronfs.omron.com/en_US/ecb/products/pdf/en-g5q.pdf +Relay SPDT Omron Serie G5Q +0 +5 +5 +Relay_THT +Relay_SPDT_Omron_G2RL-1 +Omron Relay, SPDT, https://omronfs.omron.com/en_US/ecb/products/pdf/en-g2rl.pdf +Omron Relay SPDT +0 +5 +5 +Relay_THT +Relay_SPDT_Omron_G2RL-1-E +Omron Relay, SPDT, High Capacity, https://omronfs.omron.com/en_US/ecb/products/pdf/en-g2rl.pdf +Omron Relay SPDT High Capacity +0 +8 +5 +Relay_THT +Relay_SPDT_Omron_G5V-1 +Relay Omron G5V-1, see http://omronfs.omron.com/en_US/ecb/products/pdf/en-g5v_1.pdf +Relay Omron G5V-1 +0 +6 +6 +Relay_THT +Relay_SPDT_Omron_G6E +Relay SPDT Omron Serie G6E +Relay SPDT Omron Serie G6E 1x um +0 +5 +5 +Relay_THT +Relay_SPDT_Omron_G6EK +Relay SPDT Omron Serie G6EK, see http://www.logosfoundation.org/instrum_gwr/pi/Omron_G6E_134P.pdf +Relay SPDT Omron Serie G6EK +0 +6 +6 +Relay_THT +Relay_SPDT_Panasonic_DR +1 side stable, https://mediap.industry.panasonic.eu/assets/download-files/import/ds_dr_en_discon.pdf +nais single side +0 +6 +6 +Relay_THT +Relay_SPDT_Panasonic_DR-L +1 latching coil, https://mediap.industry.panasonic.eu/assets/download-files/import/ds_dr_en_discon.pdf +nais single latch +0 +6 +6 +Relay_THT +Relay_SPDT_Panasonic_DR-L2 +2 separated latching coils, S and R, https://mediap.industry.panasonic.eu/assets/download-files/import/ds_dr_en_discon.pdf +nais dual latch set reset +0 +8 +8 +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-NO_Fujitsu_FTR-LYAA005x_FormA_Vertical +Relay, SPST-NO Form A, vertical mount, 6A, 5-60V, https://www.fujitsu.com/sg/imagesgig5/ftr-ly.pdf +relay SPST-NO form A vertical +0 +4 +4 +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_Hongfa_HF3F-L-xx-1HL1T +Hongfa subminature high power latching relay 5, 6, 9, 12, 24, 48VDC. 15A switching current, Form-A https://source.hongfa.com//Api/DownloadPdf/362 +relays Hongfa form-a 1-coil +0 +4 +4 +Relay_THT +Relay_SPST_Hongfa_HF3F-L-xx-1HL2T +Hongfa subminature high power latching relay 5, 6, 9, 12, 24, 48VDC. 15A switching current, Form-A https://source.hongfa.com//Api/DownloadPdf/362 +relays Hongfa form-a 2-coil +0 +5 +5 +Relay_THT +Relay_SPST_Hongfa_HF3F-L-xx-1HL2T-R +Hongfa subminature high power latching relay 5, 6, 9, 12, 24, 48VDC. 15A switching current, Form-A, reverse polarity, https://source.hongfa.com//Api/DownloadPdf/362 +relays Hongfa form-a 2-coil reverse-polarity +0 +5 +5 +Relay_THT +Relay_SPST_Hongfa_JQC-3FF_0XX-1H +Hongfa subminature high power latching SPST-NO relay 5, 6, 9, 12, 18, 24, 48VDC. 15A switching current, Form-A https://www.generationrobots.com/media/JQC-3FF-v1.pdf +relays Hongmei 1-coil +0 +4 +4 +Relay_THT +Relay_SPST_Omron-G5Q-1A +Relay SPST-NO Omron Serie G5Q, http://omronfs.omron.com/en_US/ecb/products/pdf/en-g5q.pdf +Relay SPST-NO Omron Serie G5Q +0 +4 +4 +Relay_THT +Relay_SPST_Omron_G2RL-1A +Omron Relay, SPST, https://omronfs.omron.com/en_US/ecb/products/pdf/en-g2rl.pdf +Omron Relay SPST +0 +4 +4 +Relay_THT +Relay_SPST_Omron_G2RL-1A-E +Omron Relay, SPST, High Capacity, https://omronfs.omron.com/en_US/ecb/products/pdf/en-g2rl.pdf +Omron Relay SPST High Capacity +0 +6 +4 +Relay_THT +Relay_SPST_Omron_G5NB +PCB Power Relay, SPST-NO, 7A (250 VAC), 5A (30 VDC), 20.5x7.2x15.3mm max +Omron G5NB Relay SPST-NO +0 +4 +4 +Relay_THT +Relay_SPST_Omron_G5PZ +Relay Omron G5PZ, see https://components.omron.com/us-en/sites/components.omron.com.us/files/datasheet_pdf/K320-E1.pdf +Relay Omron G5PZ +0 +4 +4 +Relay_THT +Relay_SPST_Panasonic_ADW11 +Panasonic power relay, SPST, latching, 10x24mm, 18.8mm height, https://api.pim.na.industrial.panasonic.com/file_stream/main/fileversion/270 +Panasonic Relay SPST +0 +4 +4 +Relay_THT +Relay_SPST_Panasonic_ALFG_FormA +Panasonic Relay SPST, https://www3.panasonic.biz/ac/e_download/control/relay/power/catalog/mech_eng_lfg.pdf +Panasonic Relay SPST +0 +4 +4 +Relay_THT +Relay_SPST_Panasonic_ALFG_FormA_CircularHoles +Panasonic Relay SPST, https://www3.panasonic.biz/ac/e_download/control/relay/power/catalog/mech_eng_lfg.pdf +Panasonic Relay SPST +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_SPST_Zettler-AZSR131 +American Zettler RELAY EV CHRG SOLAR SPST 35A 12V, https://zettlerelectronics.com/products/AZSR131.pdf +SPST +0 +4 +4 +Relay_THT +Relay_Socket_3PDT_Omron_PLE11-0 +29mm Dia, round mounting socket, 10A, 2kV AC / minute, 1e3Mohm, https://www.omron.com.tw/data_pdf/cat/common_sockets_ds_e_6_1_csm1819.pdf?#page=27 +tube type relay +0 +11 +11 +Relay_THT +Relay_Socket_4PDT_Omron_PY14-02 +21.4x25.8mm, 4Pole mounting socket, 3A, 1.5kV AC / minute, 1e2Mohm, https://www.omron.com.tw/data_pdf/cat/common_sockets_ds_e_6_1_csm1819.pdf?#page=19 +relay socket +0 +14 +14 +Relay_THT +Relay_Socket_DPDT_Finder_96.12 +DPDT relay socket, 15A max 10A per contact, 2kV AC Isolation, https://gfinder.findernet.com/public/attachments/56/DE/S56DE.pdf +finder relay socket 96.12 56.32 +0 +8 +8 +Relay_THT +Relay_Socket_DPDT_Omron_PLE08-0 +29mm Dia, round mounting socket, 10A, 2kV AC / minute, 1e3Mohm, https://www.omron.com.tw/data_pdf/cat/common_sockets_ds_e_6_1_csm1819.pdf?#page=27 +tube type relay +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 +Relay_THT +Relay_Tyco_V23072_Sealed +Tyco Electronics Mini Relay K (Sealed Version), length 16.9mm, width 14.7mm, height 19.2mm, drill hole 1.30mm ( https://www.electrokit.com/upload/product/41019/41019252/V23072.pdf ) +SPST SPDT DC TE0598-P2 +0 +7 +7 +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_0508_1220Metric +Resistor SMD 0508 (1220 Metric), square (rectangular) end terminal, IPC-7351 nominal, (Body size source: https://www.koaspeer.com/pdfs/WK73S.pdf), generated with kicad-footprint-generator +resistor +0 +2 +2 +Resistor_SMD +R_0508_1220Metric_Pad1.12x2.15mm_HandSolder +Resistor SMD 0508 (1220 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: https://www.koaspeer.com/pdfs/WK73S.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_1225_3264Metric +Resistor SMD 1225 (3264 Metric), square (rectangular) end terminal, IPC-7351 nominal, (Body size source: https://www.koaspeer.com/pdfs/WK73S.pdf), generated with kicad-footprint-generator +resistor +0 +2 +2 +Resistor_SMD +R_1225_3264Metric_Pad1.47x6.45mm_HandSolder +Resistor SMD 1225 (3264 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: https://www.koaspeer.com/pdfs/WK73S.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_Isabellenhuette_BVR4026 +4-Wire Shunt, SMD 4026, https://www.isabellenhuette.de/fileadmin/Daten/Praezisionswiderstaende/Datenblaetter/BVR.PDF +kelvin-connection +0 +4 +4 +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, https://www.vishay.com/docs/30218/cpcp-cpcf.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, https://www.vishay.com/docs/30218/cpcp-cpcf.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, https://www.vishay.com/docs/30218/cpcp-cpcf.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, https://www.vishay.com/docs/30218/cpcp-cpcf.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, EC11E... 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, EC11E... 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-Switch_Vertical_H20mm_MountingHoles +Alps rotary encoder, EC11E... with switch, vertical shaft, https://www.lcsc.com/datasheet/lcsc_datasheet_2410010003_ALPSALPINE-EC11E09444A8_C1322538.pdf +rotary encoder +0 +7 +6 +Rotary_Encoder +RotaryEncoder_Alps_EC11E_Vertical_H20mm +Alps rotary encoder, EC11E... 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, EC11E... without switch (pins are dummy), vertical shaft, mounting holes with circular drills, http://www.alps.com/prod/info/E/HTML/Encoder/Incremental/EC11/EC11E15204A3.html +rotary encoder +0 +7 +4 +Rotary_Encoder +RotaryEncoder_Alps_EC12E-Switch_Vertical_H20mm +Alps rotary encoder, EC12E... with switch, vertical shaft, http://www.alps.com/prod/info/E/HTML/Encoder/Incremental/EC12E/EC12E1240405.html & http://cdn-reichelt.de/documents/datenblatt/F100/402097STEC12E08.PDF +rotary encoder +0 +7 +6 +Rotary_Encoder +RotaryEncoder_Alps_EC12E-Switch_Vertical_H20mm_CircularMountingHoles +Alps rotary encoder, EC12E... with switch, vertical shaft, mounting holes with circular drills, http://www.alps.com/prod/info/E/HTML/Encoder/Incremental/EC12E/EC12E1240405.html & http://cdn-reichelt.de/documents/datenblatt/F100/402097STEC12E08.PDF +rotary encoder +0 +7 +6 +Rotary_Encoder +RotaryEncoder_Alps_EC12E_Vertical_H20mm +Alps rotary encoder, EC12E..., vertical shaft, http://www.alps.com/prod/info/E/HTML/Encoder/Incremental/EC12E/EC12E1240405.html +rotary encoder +0 +5 +4 +Rotary_Encoder +RotaryEncoder_Alps_EC12E_Vertical_H20mm_CircularMountingHoles +Alps rotary encoder, EC12E..., vertical shaft, mounting holes with circular drills, http://www.alps.com/prod/info/E/HTML/Encoder/Incremental/EC12E/EC12E1240405.html +rotary encoder +0 +5 +4 +Rotary_Encoder +RotaryEncoder_Bourns_Horizontal_PEC09-2xxxF-Nxxxx +Bourns rotary encoder, PEC09, without switch, horizontal shaft, https://www.bourns.com/products/encoders/contacting-encoders/product/PEC09 +rotary encoder +0 +3 +3 +Rotary_Encoder +RotaryEncoder_Bourns_Horizontal_PEC09-2xxxF-Sxxxx +Bourns rotary encoder, PEC09, with switch, horizontal shaft, https://www.bourns.com/products/encoders/contacting-encoders/product/PEC09 +rotary encoder +0 +5 +5 +Rotary_Encoder +RotaryEncoder_Bourns_Horizontal_PEC12R-2x17F-Nxxxx +Bourns rotary encoder, PEC12R, without switch, horizontal shaft, 17mm shaft length, https://www.bourns.com/docs/product-datasheets/pec12r.pdf +rotary encoder +0 +5 +4 +Rotary_Encoder +RotaryEncoder_Bourns_Horizontal_PEC12R-2x17F-Sxxxx +Bourns rotary encoder, PEC12R, with switch, horizontal shaft, 17mm shaft length, https://www.bourns.com/docs/product-datasheets/pec12r.pdf +rotary encoder +0 +7 +6 +Rotary_Encoder +RotaryEncoder_Bourns_Horizontal_PEL12D-2x16F-Sxxxx +Rotary encoder with switch and illuminated 4mm shaft, dual-led, https://www.bourns.com/docs/product-datasheets/PEL12D.pdf +rotary encoder illuminated switch horizontal +0 +9 +8 +Rotary_Encoder +RotaryEncoder_Bourns_Horizontal_PEL12D-2x18F-Sxxxx +Rotary encoder with switch and illuminated 6mm shaft, dual-led, https://www.bourns.com/docs/product-datasheets/PEL12D.pdf +rotary encoder illuminated switch horizontal +0 +9 +8 +Rotary_Encoder +RotaryEncoder_Bourns_Horizontal_PEL12D-2x21F-Sxxxx +Rotary encoder with switch and illuminated 8mm shaft, dual-led, https://www.bourns.com/docs/product-datasheets/PEL12D.pdf +rotary encoder illuminated switch horizontal +0 +9 +8 +Rotary_Encoder +RotaryEncoder_Bourns_Horizontal_PEL12D-2x25S-Sxxxx +Rotary encoder with switch and illuminated shaft, dual-led, https://www.bourns.com/docs/product-datasheets/PEL12D.pdf +rotary encoder illuminated switch horizontal +0 +9 +8 +Rotary_Encoder +RotaryEncoder_Bourns_Horizontal_PEL12D-2x26F-Sxxxx +Rotary encoder with switch and illuminated 13mm shaft, dual-led, https://www.bourns.com/docs/product-datasheets/PEL12D.pdf +rotary encoder illuminated switch horizontal +0 +9 +8 +Rotary_Encoder +RotaryEncoder_Bourns_Horizontal_PEL12D-2x31F-Sxxxx +Rotary encoder with switch and illuminated 18mm shaft, dual-led, https://www.bourns.com/docs/product-datasheets/PEL12D.pdf +rotary encoder illuminated switch horizontal +0 +9 +8 +Rotary_Encoder +RotaryEncoder_Bourns_Vertical_PEC12R-3x17F-Nxxxx +Bourns rotary encoder, PEC12R, without switch, with bushing, vertical shaft, 17.5mm shaft, https://www.bourns.com/docs/product-datasheets/pec12r.pdf +rotary encoder +0 +5 +4 +Rotary_Encoder +RotaryEncoder_Bourns_Vertical_PEC12R-3x17F-Sxxxx +Bourns rotary encoder, PEC12R, with switch, with bushing, vertical shaft, 17.5mm shaft, https://www.bourns.com/docs/product-datasheets/pec12r.pdf +rotary encoder +0 +7 +6 +Rotary_Encoder +RotaryEncoder_Bourns_Vertical_PEL12D-4x25S-Sxxxx +Rotary encoder with switch and illuminated 13mm shaft, dual-led, https://www.bourns.com/docs/product-datasheets/PEL12D.pdf +rotary encoder illuminated switch vertical +0 +9 +8 +Rotary_Encoder +RotaryEncoder_Bourns_Vertical_PEL12D-4xxxF-Sxxxx +Rotary encoder with switch and illuminated 4,6,8,13,18mm shaft, dual-led, https://www.bourns.com/docs/product-datasheets/PEL12D.pdf +rotary encoder illuminated switch vertical +0 +9 +8 +Semiconductors +DPAK254P1524X483-3N + + +0 +3 +3 +Semiconductors +FUSE_BK-6013 + + +0 +4 +4 +Semiconductors +QFN50P300X300X100-17N + + +0 +22 +22 +Semiconductors +R_LDR_10x8.5mm_P7.6mm_Vertical +Resistor, LDR 10x8.5mm +Resistor LDR10.8.5mm +0 +2 +2 +Semiconductors +SO08 +Small Outline Package Fits JEDEC packages (narrow SOIC-8) + +0 +8 +8 +Semiconductors +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 +Semiconductors +SOIC127P600X175-9N + + +0 +9 +9 +Semiconductors +SOIC127P600X177-16N + + +0 +16 +16 +Semiconductors +SOP65P490X110-8N + + +0 +8 +8 +Semiconductors +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 +Semiconductors +SOT229P700X180-4N + + +0 +4 +4 +Semiconductors +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 +Sensor +ASAIR_AM2302_P2.54mm_Lead2.75mm_TabDown +Temperature and humidity module, http://akizukidenshi.com/download/ds/aosong/AM2302.pdf +Temperature and humidity module DHT22 AM2302 +0 +4 +4 +Sensor +ASAIR_AM2302_P2.54mm_Vertical +Temperature and humidity module, http://akizukidenshi.com/download/ds/aosong/AM2302.pdf +Temperature and humidity module DHT22 AM2302 +0 +4 +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_APDS-9960 +Digital Proximity, Ambient Light, RGB and Gesture Sensor (https://docs.broadcom.com/doc/AV02-4191EN) +DFN Sensor optical IR +0 +8 +8 +Sensor +LuminOX_LOX-O2 +SST LuminOX Luminescence-based O2 sensor, https://sstsensing.com/wp-content/uploads/2021/08/DS0030rev15_LuminOx.pdf +SST LuminOX O2 +0 +4 +4 +Sensor +MQ-6 +Gas Sensor, 6 pin, https://www.winsen-sensor.com/d/files/semiconductor/mq-6.pdf +gas sensor +0 +6 +6 +Sensor +Rohm_RPR-0521RS +Digital Proximity and Ambient Light Sensor, 2.36 x 3.94 x 1.35mm, LGA-8 (https://fscdn.rohm.com/en/products/databook/datasheet/opto/optical_sensor/opto_module/rpr-0521rs-e.pdf) +DFN Sensor optical IR +0 +8 +8 +Sensor +SHT1x +SHT1x +SHT1x +0 +8 +8 +Sensor +SPEC_110-xxx_SMD-10Pin_20x20mm_P4.0mm +SPEC Sensors SMD package, 20x20mm, https://www.spec-sensors.com/wp-content/uploads/2016/10/3SP_H2S_50-C-Package-110-304.pdf +SPEC Sensors gas sensor +0 +10 +10 +Sensor +Senseair_S8_Down +Sensair S8 Series CO2 sensor, 1kHz PWM output, Modbus, THT +co2 gas sensor pwm modbus +0 +9 +9 +Sensor +Senseair_S8_Up +Sensair S8 Series CO2 sensor, 1kHz PWM output, Modbus, THT +co2 gas sensor pwm modbus +0 +9 +9 +Sensor +Sensirion_SCD4x-1EP_10.1x10.1mm_P1.25mm_EP4.8x4.8mm +Sensirion SCD4x QFN, 20 Pin (https://sensirion.com/media/documents/C4B87CE6/627C2DCD/CD_DS_SCD40_SCD41_Datasheet_D1.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +Sensirion QFN NoLead +0 +25 +21 +Sensor +Sensortech_MiCS_5x7mm_P1.25mm +https://www.sgxsensortech.com/content/uploads/2014/07/1084_Datasheet-MiCS-5524-rev-8.pdf +Sensortech MiCS MEMS sensor +0 +10 +10 +Sensor +TGS-5141 +Fixaro carbon monoxide electrochemical sensor, https://figarosensor.com/product/docs/tgs5141-p00_product%20infomation%28fusa%29_rev07.pdf +Figaro CO sensor +0 +3 +2 +Sensor +Winson_GM-402B_5x5mm_P1.27mm +Winson GM-402B QFN, 8 Pin (https://www.winsen-sensor.com/d/files/me2/mems--gm-402b--manual-v1_1.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +Winson QFN NoLead +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 +Infineon_PG-LLGA-5-2 +Infineon, IP57, XENSIV, LGA-5, https://www.infineon.com/dgdl/Infineon-IM73A135-DataSheet-v01_00-EN.pdf?fileId=8ac78c8c7f2a768a017fadec36b84500 +MEMS Microphone LGA Dust Water +0 +5 +5 +Sensor_Audio +InvenSense_ICS-43434-6_3.5x2.65mm +TDK InvenSense MEMS I2S Microphone: https://invensense.tdk.com/products/ics-43434/ +microphone MEMS I2S ICS-43434 TDK InvenSense +0 +6 +6 +Sensor_Audio +Knowles_LGA-5_3.5x2.65mm +https://www.knowles.com/docs/default-source/model-downloads/sph0641lu4h-1-revb.pdf +MEMS Microphone LGA +0 +5 +5 +Sensor_Audio +Knowles_LGA-6_4.72x3.76mm +Knowles MEMS Analog Microphone, Omnidirectional, SMD, Differential/Single-Ended Output, -40dB, Bottom Port, https://www.knowles.com/docs/default-source/default-document-library/spm0687lr5h-1_winfrey_datasheet.pdf +SPM0687LR5H MEMS Microphone LGA +0 +6 +6 +Sensor_Audio +Knowles_SPH0645LM4H-6_3.5x2.65mm +Knowles MEMS I2S Microphone: https://www.knowles.com/subdepartment/dpt-microphones/subdpt-sisonic-surface-mount-mems +microphone MEMS I2S SPH0645LM4H Knowles +0 +6 +6 +Sensor_Audio +POM-2244P-C3310-2-R +Electret Condenser microphone, Project Unlimited (PU) Audio, https://api.puiaudio.com/file/b7e03aec-9603-48da-8064-9a0e0468047c.pdf +microphone electret +0 +2 +2 +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-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-NP +LEM LA 25-NP Current Transducer (https://www.lem.com/sites/default/files/products_datasheets/la%2025-np.pdf) +Current sensor LEM +0 +13 +13 +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 +AMS_OLGA12 +TMF8820/1/8 distance sensor, https://look.ams-osram.com/m/52236c476132a095/original/TMF8820-21-28-Multizone-Time-of-Flight-Sensor.pdf +TMF8820 TMF8821 TMF8828 +0 +12 +12 +Sensor_Distance +ST_VL53L1x +VL53L1x distance sensor +VL53L1CXV0FY1 VL53L1x +0 +13 +12 +Sensor_Humidity +Sensirion_DFN-4-1EP_2x2mm_P1mm_EP0.7x1.6mm +DFN, 4 Pin (https://www.sensirion.com/fileadmin/user_upload/customers/sensirion/Dokumente/0_Datasheets/Humidity/Sensirion_Humidity_Sensors_SHTC3_Datasheet.pdf) +Sensirion DFN NoLead +0 +10 +5 +Sensor_Humidity +Sensirion_DFN-4_1.5x1.5mm_P0.8mm_SHT4x_NoCentralPad +Sensirion, SHT40, SHT41, SHT45, DFN, 4 Pin (https://sensirion.com/media/documents/33FD6951/624C4357/Datasheet_SHT4x.pdf) +DFN NoLead +0 +4 +4 +Sensor_Humidity +Sensirion_DFN-8-1EP_2.5x2.5mm_P0.5mm_EP1.1x1.7mm +Sensirion DFN-8 SHT3x-DIS (https://www.sensirion.com/fileadmin/user_upload/customers/sensirion/Dokumente/2_Humidity_Sensors/Datasheets/Sensirion_Humidity_Sensors_SHT3x_Datasheet_digital.pdf) +sensirion dfn nolead +0 +10 +9 +Sensor_Humidity +Texas_S-PWSON-N6-HDC2080 +Relative Humidity and Temperature Sensor with I2C Interface, https://www.ti.com/lit/ds/symlink/hdc2080.pdf +sensor humidity temperature i2c iic digital +0 +11 +7 +Sensor_Motion +Analog_LGA-16_3.25x3mm_P0.5mm_LayoutBorder3x5y +LGA, 16 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/ADXL363.pdf#page=44) +LGA NoLead CC-16-4 +0 +16 +16 +Sensor_Motion +InvenSense_QFN-24_3x3mm_P0.4mm +24-Lead Plastic QFN (3mm x 3mm); Pitch 0.4mm; EP 1.7x1.54mm; for InvenSense motion sensors; keepout area marked (Package see: https://store.invensense.com/datasheets/invensense/MPU9250REV1.0.pdf; See also https://www.invensense.com/wp-content/uploads/2015/02/InvenSense-MEMS-Handling.pdf) +QFN 0.4 +0 +24 +24 +Sensor_Motion +InvenSense_QFN-24_3x3mm_P0.4mm_NoMask +24-Lead Plastic QFN (3mm x 3mm); Pitch 0.4mm; EP 1.7x1.54mm; for InvenSense motion sensors; Mask removed below exposed pad; keepout area marked (Package see: https://store.invensense.com/datasheets/invensense/MPU9250REV1.0.pdf; See also https://www.invensense.com/wp-content/uploads/2015/02/InvenSense-MEMS-Handling.pdf) +QFN 0.4 +0 +25 +24 +Sensor_Motion +InvenSense_QFN-24_4x4mm_P0.5mm +24-Lead Plastic QFN (4mm x 4mm); Pitch 0.5mm; EP 2.7x2.6mm; for InvenSense motion sensors; keepout area marked (Package see: https://store.invensense.com/datasheets/invensense/MPU-6050_DataSheet_V3%204.pdf; See also https://www.invensense.com/wp-content/uploads/2015/02/InvenSense-MEMS-Handling.pdf) +QFN 0.5 +0 +24 +24 +Sensor_Motion +InvenSense_QFN-24_4x4mm_P0.5mm_NoMask +24-Lead Plastic QFN (4mm x 4mm); Pitch 0.5mm; EP 2.7x2.6mm; for InvenSense motion sensors; Mask removed below exposed pad; keepout area marked (Package see: https://store.invensense.com/datasheets/invensense/MPU-6050_DataSheet_V3%204.pdf; See also https://www.invensense.com/wp-content/uploads/2015/02/InvenSense-MEMS-Handling.pdf) +QFN 0.5 +0 +25 +24 +Sensor_Pressure +CFSensor_XGZP6859D_7x7mm +CFSensor XGZP6859D SO, 6 Pin (https://cfsensor.com/wp-content/uploads/2022/11/XGZP6859D-Pressure-Sensor-V2.5.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +CFSensor SO Sensor_Pressure +0 +6 +6 +Sensor_Pressure +CFSensor_XGZP6897x +Port External Dia 3.13mm, Port Internal Dia 0.9mm, 8 Pin (https://cfsensor.com/wp-content/uploads/2022/11/XGZP6897D-Pressure-Sensor-V2.7.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py, hand modified +sop sensor +0 +8 +8 +Sensor_Pressure +CFSensor_XGZP6899x +Port External Dia 3mm, Port Internal Dia 1mm, 8 Pin (https://cfsensor.com/wp-content/uploads/2022/11/XGZP6899D-Pressure-Sensor-V2.8.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py, hand modified +sop sensor +0 +8 +8 +Sensor_Pressure +Freescale_98ARH99066A +https://www.nxp.com/docs/en/data-sheet/MPXH6250A.pdf +sensor pressure ssop 98ARH99066A +0 +8 +8 +Sensor_Pressure +Freescale_98ARH99089A +https://www.nxp.com/docs/en/data-sheet/MPXH6250A.pdf +sensor pressure ssop 98ARH99089A +0 +8 +8 +Sensor_Pressure +Honeywell_40PCxxxG1A +https://www.honeywellscportal.com/index.php?ci_id=138832 +pressure sensor automotive honeywell +0 +3 +3 +Sensor_Pressure +TE_MS5525DSO-DBxxxyS +Pressure Sensor, Dual-Barbed, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=MS5525DSO&DocType=DS&DocLang=English +Pressure DualBarbed +0 +14 +14 +Sensor_Pressure +TE_MS5837-xxBA +https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Data+Sheet%7FMS5837-30BA%7FB1%7Fpdf%7FEnglish%7FENG_DS_MS5837-30BA_B1.pdf%7FCAT-BLPS0017 +MS5837 Ultra-small gel-filled pressure sensor with stainless steel cap +0 +4 +4 +Sensor_Voltage +LEM_LV25-P +LEM LV25-P Voltage transducer, https://www.lem.com/sites/default/files/products_datasheets/lv_25-p.pdf +LEM Hall Effect Voltage transducer +0 +5 +5 +SnapEDA +1X04_325 +PIN HEADER + +0 +4 +4 +SnapEDA +1X30-0.7MM + + +0 +30 +30 +SnapEDA +1X30-0.7MM_001 + + +0 +30 +30 +SnapEDA +2X02_325 +PIN HEADER + +0 +4 +4 +SnapEDA +2X02_325_001 +PIN HEADER + +0 +4 +4 +SnapEDA +2X02_325_002 +PIN HEADER + +0 +4 +4 +SnapEDA +2X02_325_003 +PIN HEADER + +0 +4 +4 +SnapEDA +2X02_325_004 +PIN HEADER + +0 +4 +4 +SnapEDA +2X02_325_005 +PIN HEADER + +0 +4 +4 +SnapEDA +2X02_325_006 +PIN HEADER + +0 +4 +4 +SnapEDA +2X02_325_007 +PIN HEADER + +0 +4 +4 +SnapEDA +2X02_325_008 +PIN HEADER + +0 +4 +4 +SnapEDA +2X02_325_009 +PIN HEADER + +0 +4 +4 +SnapEDA +2X02_325_010 +PIN HEADER + +0 +4 +4 +SnapEDA +2X02_325_011 +PIN HEADER + +0 +4 +4 +SnapEDA +2X02_325_012 +PIN HEADER + +0 +4 +4 +SnapEDA +2X02_325_013 +PIN HEADER + +0 +4 +4 +SnapEDA +2X02_325_014 +PIN HEADER + +0 +4 +4 +SnapEDA +2X02_325_015 +PIN HEADER + +0 +4 +4 +SnapEDA +2X02_325_016 +PIN HEADER + +0 +4 +4 +SnapEDA +2X02_325_017 +PIN HEADER + +0 +4 +4 +SnapEDA +2X02_325_018 +PIN HEADER + +0 +4 +4 +SnapEDA +2X02_325_019 +PIN HEADER + +0 +4 +4 +SnapEDA +2X02_325_020 +PIN HEADER + +0 +4 +4 +SnapEDA +2X02_325_021 +PIN HEADER + +0 +4 +4 +SnapEDA +2X02_325_022 +PIN HEADER + +0 +4 +4 +SnapEDA +2X02_325_023 +PIN HEADER + +0 +4 +4 +SnapEDA +2X02_325_024 +PIN HEADER + +0 +4 +4 +SnapEDA +2X02_325_025 +PIN HEADER + +0 +4 +4 +SnapEDA +2X02_325_026 +PIN HEADER + +0 +4 +4 +SnapEDA +2X02_325_027 +PIN HEADER + +0 +4 +4 +SnapEDA +2X02_325_028 +PIN HEADER + +0 +4 +4 +SnapEDA +2X02_325_029 +PIN HEADER + +0 +4 +4 +SnapEDA +2X02_325_030 +PIN HEADER + +0 +4 +4 +SnapEDA +2X02_325_031 +PIN HEADER + +0 +4 +4 +SnapEDA +2X02_325_032 +PIN HEADER + +0 +4 +4 +SnapEDA +2X02_325_033 +PIN HEADER + +0 +4 +4 +SnapEDA +2X02_325_034 +PIN HEADER + +0 +4 +4 +SnapEDA +2X02_325_035 +PIN HEADER + +0 +4 +4 +SnapEDA +123 + + +0 +0 +0 +SnapEDA +123_001 + + +0 +0 +0 +SnapEDA +123_002 + + +0 +0 +0 +SnapEDA +0204_7_334 +RESISTOR{return}{return}type 0204, grid 7.5 mm + +0 +2 +2 +SnapEDA +0204_7_334_001 +RESISTOR{return}{return}type 0204, grid 7.5 mm + +0 +2 +2 +SnapEDA +0204_7_334_002 +RESISTOR{return}{return}type 0204, grid 7.5 mm + +0 +2 +2 +SnapEDA +0204_7_334_003 +RESISTOR{return}{return}type 0204, grid 7.5 mm + +0 +2 +2 +SnapEDA +555 + + +0 +0 +0 +SnapEDA +555_001 + + +0 +0 +0 +SnapEDA +555_002 + + +0 +0 +0 +SnapEDA +555_003 + + +0 +0 +0 +SnapEDA +555_004 + + +0 +0 +0 +SnapEDA +434121025816 +WS-TASV
SMT Tact Switch 6.0x3.8 mm,2 pins + +0 +2 +2 +SnapEDA +434121025816_001 +WS-TASVSMT Tact Switch 6.0x3.8 mm,2 pins + +0 +2 +2 +SnapEDA +434121025816_002 +WS-TASVSMT Tact Switch 6.0x3.8 mm,2 pins + +0 +2 +2 +SnapEDA +434121025816_003 +WS-TASVSMT Tact Switch 6.0x3.8 mm,2 pins + +0 +2 +2 +SnapEDA +434121025816_004 +WS-TASVSMT Tact Switch 6.0x3.8 mm,2 pins + +0 +2 +2 +SnapEDA +434121025816_005 +WS-TASV
SMT Tact Switch 6.0x3.8 mm,2 pins + +0 +2 +2 +SnapEDA +434121025816_006 +WS-TASVSMT Tact Switch 6.0x3.8 mm,2 pins + +0 +2 +2 +SnapEDA +434121025816_007 +WS-TASVSMT Tact Switch 6.0x3.8 mm,2 pins + +0 +2 +2 +SnapEDA +434121025816_008 +WS-TASVSMT Tact Switch 6.0x3.8 mm,2 pins + +0 +2 +2 +SnapEDA +532610271 +532610271 +Connector +0 +4 +4 +SnapEDA +ABX00023 +ABX00023-1 +Integrated Circuit +0 +32 +32 +SnapEDA +AMPHENOL_10114828-13102LF + + +0 +4 +4 +SnapEDA +AMPHENOL_10114828-13102LF_001 + + +0 +4 +4 +SnapEDA +AMPHENOL_10114828-13102LF_002 + + +0 +4 +4 +SnapEDA +AMPHENOL_10114828-13102LF_003 + + +0 +4 +4 +SnapEDA +AMPHENOL_10114828-13102LF_004 + + +0 +4 +4 +SnapEDA +AMPHENOL_10114828-13102LF_005 + + +0 +4 +4 +SnapEDA +AMPHENOL_10114828-13102LF_006 + + +0 +4 +4 +SnapEDA +AMPHENOL_10114828-13102LF_007 + + +0 +4 +4 +SnapEDA +AMPHENOL_10114828-13102LF_008 + + +0 +4 +4 +SnapEDA +AMPHENOL_10114828-13102LF_009 + + +0 +4 +4 +SnapEDA +AMPHENOL_10114828-13102LF_010 + + +0 +4 +4 +SnapEDA +B3F-40XX_377 +OMRON SWITCH + +0 +4 +4 +SnapEDA +B3F-40XX_377_001 +OMRON SWITCH + +0 +4 +4 +SnapEDA +BAT_1042P + + +0 +2 +2 +SnapEDA +BAT_1042P_001 + + +0 +2 +2 +SnapEDA +BAT_1048 + + +0 +4 +4 +SnapEDA +BAT_1048_001 + + +0 +4 +4 +SnapEDA +BAT_1048_002 + + +0 +4 +4 +SnapEDA +BAT_1048_003 + + +0 +4 +4 +SnapEDA +B_C11L_113 +BUZZER + +0 +2 +2 +SnapEDA +B_C11L_113_001 +BUZZER + +0 +2 +2 +SnapEDA +B_C11L_113_002 +BUZZER + +0 +2 +2 +SnapEDA +Buzzer_12x9.5RM7.6 +Generic Buzzer, D12mm height 9.5mm with RM7.6mm +buzzer +0 +2 +2 +SnapEDA +CA6V +POTENTIOMETER{return}{return}distributor Schukat + +0 +3 +3 +SnapEDA +CA6V_001 +POTENTIOMETER{return}{return}distributor Schukat + +0 +3 +3 +SnapEDA +CAPC2012X135N + + +0 +2 +2 +SnapEDA +CAPC2012X135N_001 + + +0 +2 +2 +SnapEDA +CAPC2012X135N_002 + + +0 +2 +2 +SnapEDA +CAPC2012X135N_003 + + +0 +2 +2 +SnapEDA +CAPC2012X135N_004 + + +0 +2 +2 +SnapEDA +CAPC2012X135N_005 + + +0 +2 +2 +SnapEDA +CAPC2012X135N_006 + + +0 +2 +2 +SnapEDA +CAPC2012X135N_007 + + +0 +2 +2 +SnapEDA +CAPC2012X135N_008 + + +0 +2 +2 +SnapEDA +CAPC2012X135N_009 + + +0 +2 +2 +SnapEDA +CAPC2012X135N_010 + + +0 +2 +2 +SnapEDA +CAPC3216X190 +CAPACITOR + +0 +2 +2 +SnapEDA +CAPC3216X190_001 +CAPACITOR + +0 +2 +2 +SnapEDA +CAPPRD350W60D800H1150 + + +0 +2 +2 +SnapEDA +CAPPRD350W60D800H1150_001 + + +0 +2 +2 +SnapEDA +CAPPRD350W60D800H1150_002 + + +0 +2 +2 +SnapEDA +CAPPRD350W60D800H1150_003 + + +0 +2 +2 +SnapEDA +CAPPRD350W60D800H1150_004 + + +0 +2 +2 +SnapEDA +CAP_T83A225K025EZZL + + +0 +2 +2 +SnapEDA +CAP_T83A225K025EZZL_001 + + +0 +2 +2 +SnapEDA +CAP_T83A225K025EZZL_002 + + +0 +2 +2 +SnapEDA +CAP_T83A225K025EZZL_003 + + +0 +2 +2 +SnapEDA +CAP_T83A225K025EZZL_004 + + +0 +2 +2 +SnapEDA +COMM-TH_L43.7-W25.4-P2.54_NODEMCU +COMM-TH_L43.7-W25.4-P2.54_NODEMCU footprint +COMM-TH_L43.7-W25.4-P2.54_NODEMCU footprint C2764073 +0 +30 +30 +SnapEDA +CP_Elec_6.3x3 +SMD capacitor, aluminum electrolytic, Nichicon, 6.3x3.0mm +capacitor electrolytic +0 +2 +2 +SnapEDA +CUI_CMT-8530S-SMT + + +0 +4 +4 +SnapEDA +CUI_CMT-8530S-SMT_001 + + +0 +4 +4 +SnapEDA +CUI_CMT-8530S-SMT_002 + + +0 +4 +4 +SnapEDA +CUI_CMT-8530S-SMT_003 + + +0 +4 +4 +SnapEDA +CUI_CMT-8530S-SMT_004 + + +0 +4 +4 +SnapEDA +CUI_CMT-8530S-SMT_005 + + +0 +4 +4 +SnapEDA +CUI_CMT-8530S-SMT_006 + + +0 +4 +4 +SnapEDA +CUI_UJC-HP-3-SMT-TR + + +0 +10 +10 +SnapEDA +CUI_UJC-HP-3-SMT-TR_001 + + +0 +10 +10 +SnapEDA +CUI_UJC-HP-3-SMT-TR_002 + + +0 +10 +10 +SnapEDA +CUI_UJC-HP-3-SMT-TR_003 + + +0 +10 +10 +SnapEDA +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 +SnapEDA +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 +SnapEDA +D1X8K +https://ia800903.us.archive.org/24/items/CTKD1x8K/Cromatek%20D168K.pdf +Single digit 7 segment ultra bright red +0 +10 +10 +SnapEDA +D11XX_323 +Photo Sensor Oil Burner Control Applications{return}{return}Source: http://optoelectronics.perkinelmer.com/content/Datasheets/DTS_PhotocellsD1160.pdf + +0 +2 +2 +SnapEDA +D11XX_323_001 +Photo Sensor Oil Burner Control Applications{return}{return}Source: http://optoelectronics.perkinelmer.com/content/Datasheets/DTS_PhotocellsD1160.pdf + +0 +2 +2 +SnapEDA +D11XX_323_002 +Photo Sensor Oil Burner Control Applications{return}{return}Source: http://optoelectronics.perkinelmer.com/content/Datasheets/DTS_PhotocellsD1160.pdf + +0 +2 +2 +SnapEDA +DIL18_307 +Dual In Line Package + +0 +18 +18 +SnapEDA +DIL18_307_001 +Dual In Line Package + +0 +18 +18 +SnapEDA +DIOMELF3515N + + +0 +2 +2 +SnapEDA +DIOMELF3515N_001 + + +0 +2 +2 +SnapEDA +DIP762W46P254L927H533Q8B + + +0 +8 +8 +SnapEDA +DISPLAY-OLED-128X64-I2C +128x64 Dot Matrix OLED Module Variant with I2C interface + +0 +4 +4 +SnapEDA +DISPLAY-OLED-128X64-I2C_001 +128x64 Dot Matrix OLED Module Variant with I2C interface + +0 +4 +4 +SnapEDA +DO-214AC +SURFACE MOUNT GENERAL RECTIFIER JEDEC DO-214AC molded platic body{return}{return}Method 2026{return}Source: http://www.kingtronics.com/SMD_M7/M7_SMD_4007.pdf + +0 +2 +2 +SnapEDA +DO-214AC_001 +SURFACE MOUNT GENERAL RECTIFIER JEDEC DO-214AC molded platic body{return}{return}Method 2026{return}Source: http://www.kingtronics.com/SMD_M7/M7_SMD_4007.pdf + +0 +2 +2 +SnapEDA +DO-214AC_002 +SURFACE MOUNT GENERAL RECTIFIER JEDEC DO-214AC molded platic body{return}{return}Method 2026{return}Source: http://www.kingtronics.com/SMD_M7/M7_SMD_4007.pdf + +0 +2 +2 +SnapEDA +DO-214AC_003 +SURFACE MOUNT GENERAL RECTIFIER JEDEC DO-214AC molded platic body{return}{return}Method 2026{return}Source: http://www.kingtronics.com/SMD_M7/M7_SMD_4007.pdf + +0 +2 +2 +SnapEDA +DPAK254P1524X483-3N + + +0 +3 +3 +SnapEDA +DPAK254P1524X483-3N_001 + + +0 +3 +3 +SnapEDA +DPAK254P1524X483-3N_002 + + +0 +3 +3 +SnapEDA +D_SMA +Diode SMA (DO-214AC) +Diode SMA (DO-214AC) +0 +2 +2 +SnapEDA +HRS_CX90M-16P + + +0 +22 +22 +SnapEDA +HRS_CX90M-16P_001 + + +0 +22 +22 +SnapEDA +IND_ASPI-0630LR-5R6M-T15 + + +0 +2 +2 +SnapEDA +IND_ASPI-0630LR-5R6M-T15_001 + + +0 +2 +2 +SnapEDA +IND_ASPI-0630LR-5R6M-T15_002 + + +0 +2 +2 +SnapEDA +IND_ASPI-0630LR-5R6M-T15_003 + + +0 +2 +2 +SnapEDA +IND_ASPI-0630LR-5R6M-T15_004 + + +0 +2 +2 +SnapEDA +IND_ASPI-0630LR-5R6M-T15_005 + + +0 +2 +2 +SnapEDA +IND_ASPI-0630LR-5R6M-T15_006 + + +0 +2 +2 +SnapEDA +IND_ASPI-0630LR-5R6M-T15_007 + + +0 +2 +2 +SnapEDA +IND_ASPI-0630LR-5R6M-T15_008 + + +0 +2 +2 +SnapEDA +IND_ASPI-0630LR-5R6M-T15_009 + + +0 +2 +2 +SnapEDA +IND_ASPI-0630LR-5R6M-T15_010 + + +0 +2 +2 +SnapEDA +IND_XFL4020-102MEB + + +0 +2 +2 +SnapEDA +INNOW8F + + +0 +0 +0 +SnapEDA +JST-XH-02-PACKAGE-LONG-PAD +JST XH Connector Long Pads (Package){return}{return}Wire to board connector. Pitch: 2,54 mm, (0.100"){return}{return}Number of pins: 2 Created by Rembrandt Electronics{return}{return}www.rembrandtelectronics.com + +0 +2 +2 +SnapEDA +JST-XH-02-PACKAGE-LONG-PAD_001 +JST XH Connector Long Pads (Package){return}{return}Wire to board connector. Pitch: 2,54 mm, (0.100"){return}{return}Number of pins: 2 Created by Rembrandt Electronics{return}{return}www.rembrandtelectronics.com + +0 +2 +2 +SnapEDA +JST-XH-02-PACKAGE-LONG-PAD_002 +JST XH Connector Long Pads (Package){return}{return}Wire to board connector. Pitch: 2,54 mm, (0.100"){return}{return}Number of pins: 2 Created by Rembrandt Electronics{return}{return}www.rembrandtelectronics.com + +0 +2 +2 +SnapEDA +JST-XH-02-PACKAGE-LONG-PAD_003 +JST XH Connector Long Pads (Package){return}{return}Wire to board connector. Pitch: 2,54 mm, (0.100"){return}{return}Number of pins: 2 Created by Rembrandt Electronics{return}{return}www.rembrandtelectronics.com + +0 +2 +2 +SnapEDA +JST-XH-02-PACKAGE-LONG-PAD_004 +JST XH Connector Long Pads (Package){return}{return}Wire to board connector. Pitch: 2,54 mm, (0.100"){return}{return}Number of pins: 2 Created by Rembrandt Electronics{return}{return}www.rembrandtelectronics.com + +0 +2 +2 +SnapEDA +JST-XH-03-PACKAGE-ROUND-PAD +JST XH Connector Round Pads (Package){return}{return}Wire to board connector. Pitch: 2,54 mm, (0.100"){return}{return}Number of pins: 3 Created by Rembrandt Electronics{return}{return}www.rembrandtelectronics.com + +0 +3 +3 +SnapEDA +JST-XH-03-PACKAGE-ROUND-PAD_001 +JST XH Connector Round Pads (Package){return}{return}Wire to board connector. Pitch: 2,54 mm, (0.100"){return}{return}Number of pins: 3 Created by Rembrandt Electronics{return}{return}www.rembrandtelectronics.com + +0 +3 +3 +SnapEDA +JST-XH-03-PACKAGE-ROUND-PAD_002 +JST XH Connector Round Pads (Package){return}{return}Wire to board connector. Pitch: 2,54 mm, (0.100"){return}{return}Number of pins: 3 Created by Rembrandt Electronics{return}{return}www.rembrandtelectronics.com + +0 +3 +3 +SnapEDA +JST-XH-03-PACKAGE-ROUND-PAD_003 +JST XH Connector Round Pads (Package){return}{return}Wire to board connector. Pitch: 2,54 mm, (0.100"){return}{return}Number of pins: 3 Created by Rembrandt Electronics{return}{return}www.rembrandtelectronics.com + +0 +3 +3 +SnapEDA +JST-XH-03-PACKAGE-ROUND-PAD_004 +JST XH Connector Round Pads (Package){return}{return}Wire to board connector. Pitch: 2,54 mm, (0.100"){return}{return}Number of pins: 3 Created by Rembrandt Electronics{return}{return}www.rembrandtelectronics.com + +0 +3 +3 +SnapEDA +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 +SnapEDA +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 +SnapEDA +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 +SnapEDA +JST_S4B-PH-K-S(LF)(SN) + + +0 +4 +4 +SnapEDA +JST_S4B-PH-K-S(LF)(SN)_001 + + +0 +4 +4 +SnapEDA +JST_S4B-PH-K-S(LF)(SN)_002 + + +0 +4 +4 +SnapEDA +JST_S4B-PH-K-S(LF)(SN)_003 + + +0 +4 +4 +SnapEDA +JST_S4B-PH-K-S(LF)(SN)_004 + + +0 +4 +4 +SnapEDA +JST_S4B-PH-K-S(LF)(SN)_005 + + +0 +4 +4 +SnapEDA +JST_S4B-PH-K-S(LF)(SN)_006 + + +0 +4 +4 +SnapEDA +LAMP + + +0 +0 +0 +SnapEDA +LAMP_001 + + +0 +0 +0 +SnapEDA +LAMP_002 + + +0 +0 +0 +SnapEDA +LAMP_003 + + +0 +0 +0 +SnapEDA +LAMP_004 + + +0 +0 +0 +SnapEDA +LAMP_005 + + +0 +0 +0 +SnapEDA +LAMP_006 + + +0 +0 +0 +SnapEDA +LAMP_007 + + +0 +0 +0 +SnapEDA +LAMP_008 + + +0 +0 +0 +SnapEDA +LB10_259 +LED BLOCK{return}{return}10-LED bar graph, DIL, Siemens + +0 +20 +20 +SnapEDA +LB10_259_001 +LED BLOCK{return}{return}10-LED bar graph, DIL, Siemens + +0 +20 +20 +SnapEDA +LED-1W + + +0 +2 +2 +SnapEDA +LED-1W_001 + + +0 +2 +2 +SnapEDA +LED-1W_002 + + +0 +2 +2 +SnapEDA +LED-1W_003 + + +0 +2 +2 +SnapEDA +LED-1W_004 + + +0 +2 +2 +SnapEDA +LED5MM_259 +LED{return}{return}5 mm, round + +0 +2 +2 +SnapEDA +LED5MM_259_001 +LED{return}{return}5 mm, round + +0 +2 +2 +SnapEDA +LED5MM_259_002 +LED{return}{return}5 mm, round + +0 +2 +2 +SnapEDA +LED5MM_259_003 +LED{return}{return}5 mm, round + +0 +2 +2 +SnapEDA +LED5MM_259_004 +LED{return}{return}5 mm, round + +0 +2 +2 +SnapEDA +LED5MM_259_005 +LED{return}{return}5 mm, round + +0 +2 +2 +SnapEDA +LEDC2012X70N +CAPACITOR + +0 +2 +2 +SnapEDA +LEDC2012X70N_001 +CAPACITOR + +0 +2 +2 +SnapEDA +LEDC2012X70N_002 +CAPACITOR + +0 +2 +2 +SnapEDA +LEDC2012X70N_003 +CAPACITOR + +0 +2 +2 +SnapEDA +LEDC2012X70N_004 +CAPACITOR + +0 +2 +2 +SnapEDA +LEDC2012X70N_005 +CAPACITOR + +0 +2 +2 +SnapEDA +LEDC2012X70N_006 +CAPACITOR + +0 +2 +2 +SnapEDA +LEDC2012X70N_007 +CAPACITOR + +0 +2 +2 +SnapEDA +LEDC2012X70N_008 +CAPACITOR + +0 +2 +2 +SnapEDA +LEDC2012X70N_009 +CAPACITOR + +0 +2 +2 +SnapEDA +LEDC2012X70N_010 +CAPACITOR + +0 +2 +2 +SnapEDA +LEDC3216X120N + + +0 +2 +2 +SnapEDA +LEDC3216X120N_001 + + +0 +2 +2 +SnapEDA +LEDC3216X120N_002 + + +0 +2 +2 +SnapEDA +LEDC3216X120N_003 + + +0 +2 +2 +SnapEDA +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 +SnapEDA +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 +SnapEDA +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 +SnapEDA +LED_WS2812B2020 + + +0 +4 +4 +SnapEDA +LED_WS2812B2020_001 + + +0 +4 +4 +SnapEDA +LED_WS2812B2020_002 + + +0 +4 +4 +SnapEDA +LED_WS2812B2020_003 + + +0 +4 +4 +SnapEDA +LED_WS2812B2020_004 + + +0 +4 +4 +SnapEDA +LOGO_010 + + +0 +0 +0 +SnapEDA +LQFN-56_L7.0-W7.0-P0.4-EP + + +0 +57 +57 +SnapEDA +MA04-1_162 +PIN HEADER + +0 +4 +4 +SnapEDA +MA04-1_162_001 +PIN HEADER + +0 +4 +4 +SnapEDA +MA04-1_162_002 +PIN HEADER + +0 +4 +4 +SnapEDA +MA04-1_162_003 +PIN HEADER + +0 +4 +4 +SnapEDA +MA04-1_162_004 +PIN HEADER + +0 +4 +4 +SnapEDA +MA04-1_162_005 +PIN HEADER + +0 +4 +4 +SnapEDA +MA04-1_162_006 +PIN HEADER + +0 +4 +4 +SnapEDA +MKS1852-6-0-202_188 +Serie MKS 1850 Lötstifte In-line, Raster 2.5 mm, Stiftwannen, stehend, mit Rastlasche{return}{return}Source: http://www.stocko.de/de/index.php?seite=ka_rfk2_mks1850.html&rubrik=Katalog+-+RFK+2{return}rfk_1850.pdf + +0 +2 +2 +SnapEDA +MKS1852-6-0-202_188_001 +Serie MKS 1850 Lötstifte In-line, Raster 2.5 mm, Stiftwannen, stehend, mit Rastlasche{return}{return}Source: http://www.stocko.de/de/index.php?seite=ka_rfk2_mks1850.html&rubrik=Katalog+-+RFK+2{return}rfk_1850.pdf + +0 +2 +2 +SnapEDA +MKS1852-6-0-202_188_002 +Serie MKS 1850 Lötstifte In-line, Raster 2.5 mm, Stiftwannen, stehend, mit Rastlasche{return}{return}Source: http://www.stocko.de/de/index.php?seite=ka_rfk2_mks1850.html&rubrik=Katalog+-+RFK+2{return}rfk_1850.pdf + +0 +2 +2 +SnapEDA +MKS1852-6-0-202_188_003 +Serie MKS 1850 Lötstifte In-line, Raster 2.5 mm, Stiftwannen, stehend, mit Rastlasche{return}{return}Source: http://www.stocko.de/de/index.php?seite=ka_rfk2_mks1850.html&rubrik=Katalog+-+RFK+2{return}rfk_1850.pdf + +0 +2 +2 +SnapEDA +MKS1852-6-0-202_188_004 +Serie MKS 1850 Lötstifte In-line, Raster 2.5 mm, Stiftwannen, stehend, mit Rastlasche{return}{return}Source: http://www.stocko.de/de/index.php?seite=ka_rfk2_mks1850.html&rubrik=Katalog+-+RFK+2{return}rfk_1850.pdf + +0 +2 +2 +SnapEDA +MKS1852-6-0-202_188_005 +Serie MKS 1850 Lötstifte In-line, Raster 2.5 mm, Stiftwannen, stehend, mit Rastlasche{return}{return}Source: http://www.stocko.de/de/index.php?seite=ka_rfk2_mks1850.html&rubrik=Katalog+-+RFK+2{return}rfk_1850.pdf + +0 +2 +2 +SnapEDA +MKS1852-6-0-202_188_006 +Serie MKS 1850 Lötstifte In-line, Raster 2.5 mm, Stiftwannen, stehend, mit Rastlasche{return}{return}Source: http://www.stocko.de/de/index.php?seite=ka_rfk2_mks1850.html&rubrik=Katalog+-+RFK+2{return}rfk_1850.pdf + +0 +2 +2 +SnapEDA +MKS1853-6-0-303_188 +Serie MKS 1850 Lötstifte In-line, Raster 2.5 mm, Stiftwannen, stehend, mit Rastlasche{return}{return}Source: http://www.stocko.de/de/index.php?seite=ka_rfk2_mks1850.html&rubrik=Katalog+-+RFK+2{return}rfk_1850.pdf + +0 +3 +3 +SnapEDA +MKS1853-6-0-303_188_001 +Serie MKS 1850 Lötstifte In-line, Raster 2.5 mm, Stiftwannen, stehend, mit Rastlasche{return}{return}Source: http://www.stocko.de/de/index.php?seite=ka_rfk2_mks1850.html&rubrik=Katalog+-+RFK+2{return}rfk_1850.pdf + +0 +3 +3 +SnapEDA +MODULE_LCD-16X2 + + +0 +16 +16 +SnapEDA +MODULE_LCD-16X2_001 + + +0 +16 +16 +SnapEDA +MODULE_LCD-16X2_002 + + +0 +16 +16 +SnapEDA +MOLEX_532610271 + + +0 +4 +4 +SnapEDA +NE555DR +D (R-PDSO-G8) +Integrated Circuit +0 +8 +8 +SnapEDA +OACTAGON + + +0 +0 +0 +SnapEDA +OACTAGON_001 + + +0 +0 +0 +SnapEDA +OPTO_TCRT5000 + + +0 +4 +4 +SnapEDA +OPTO_TCRT5000_001 + + +0 +4 +4 +SnapEDA +PANASONIC_D +Panasonic Aluminium Electrolytic Capacitor VS-Serie Package D + +0 +2 +2 +SnapEDA +PANASONIC_D_001 +Panasonic Aluminium Electrolytic Capacitor VS-Serie Package D + +0 +2 +2 +SnapEDA +PANASONIC_D_002 +Panasonic Aluminium Electrolytic Capacitor VS-Serie Package D + +0 +2 +2 +SnapEDA +PANASONIC_D_003 +Panasonic Aluminium Electrolytic Capacitor VS-Serie Package D + +0 +2 +2 +SnapEDA +PC16-SHM2_324 +POTENTIOMETER{return}{return}single carbon potentiometer, 16 mm + +0 +7 +7 +SnapEDA +PC16-SHM2_324_001 +POTENTIOMETER{return}{return}single carbon potentiometer, 16 mm + +0 +7 +7 +SnapEDA +PVA1R_376 +ITT SWITCH + +0 +4 +4 +SnapEDA +PVA1R_376_001 +ITT SWITCH + +0 +4 +4 +SnapEDA +PVA1R_376_002 +ITT SWITCH + +0 +4 +4 +SnapEDA +PVA1R_376_003 +ITT SWITCH + +0 +4 +4 +SnapEDA +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 +SnapEDA +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 +SnapEDA +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 +SnapEDA +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 +SnapEDA +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 +SnapEDA +QFN50P300X300X100-17N + + +0 +22 +22 +SnapEDA +QFN50P300X300X100-17N_001 + + +0 +22 +22 +SnapEDA +QFP80P900X900X120-32N + + +0 +32 +32 +SnapEDA +QFP80P900X900X120-32N_001 + + +0 +32 +32 +SnapEDA +QFP80P900X900X120-32N_002 + + +0 +32 +32 +SnapEDA +R1206_217 +RESISTOR + +0 +2 +2 +SnapEDA +R1206_217_001 +RESISTOR + +0 +2 +2 +SnapEDA +R1206_217_002 +RESISTOR + +0 +2 +2 +SnapEDA +R1206_217_003 +RESISTOR + +0 +2 +2 +SnapEDA +R1206_217_004 +RESISTOR + +0 +2 +2 +SnapEDA +R1206_217_005 +RESISTOR + +0 +2 +2 +SnapEDA +R1206_217_006 +RESISTOR + +0 +2 +2 +SnapEDA +R1206_217_007 +RESISTOR + +0 +2 +2 +SnapEDA +R1206_217_008 +RESISTOR + +0 +2 +2 +SnapEDA +R1206_217_009 +RESISTOR + +0 +2 +2 +SnapEDA +R1206_217_010 +RESISTOR + +0 +2 +2 +SnapEDA +R1206_217_011 +RESISTOR + +0 +2 +2 +SnapEDA +R1206_217_012 +RESISTOR + +0 +2 +2 +SnapEDA +R1206_217_013 +RESISTOR + +0 +2 +2 +SnapEDA +R1206_217_014 +RESISTOR + +0 +2 +2 +SnapEDA +R1206_217_015 +RESISTOR + +0 +2 +2 +SnapEDA +R1206_217_016 +RESISTOR + +0 +2 +2 +SnapEDA +R1206_217_017 +RESISTOR + +0 +2 +2 +SnapEDA +R1206_217_018 +RESISTOR + +0 +2 +2 +SnapEDA +R1206_217_019 +RESISTOR + +0 +2 +2 +SnapEDA +R1206_217_020 +RESISTOR + +0 +2 +2 +SnapEDA +R1206_217_021 +RESISTOR + +0 +2 +2 +SnapEDA +R1206_334 +RESISTOR + +0 +2 +2 +SnapEDA +R1206_334_001 +RESISTOR + +0 +2 +2 +SnapEDA +R1206_348 +RESISTOR + +0 +2 +2 +SnapEDA +R1206_348_001 +RESISTOR + +0 +2 +2 +SnapEDA +R1206_348_002 +RESISTOR + +0 +2 +2 +SnapEDA +R1206_348_003 +RESISTOR + +0 +2 +2 +SnapEDA +R1206_348_004 +RESISTOR + +0 +2 +2 +SnapEDA +R1206_348_005 +RESISTOR + +0 +2 +2 +SnapEDA +RESC2012X65N + + +0 +2 +2 +SnapEDA +RESC2012X65N_001 + + +0 +2 +2 +SnapEDA +RESC2012X65N_002 + + +0 +2 +2 +SnapEDA +RESC2012X65N_003 + + +0 +2 +2 +SnapEDA +RESC2012X65N_004 + + +0 +2 +2 +SnapEDA +RESC2012X65N_005 + + +0 +2 +2 +SnapEDA +RESC2012X65N_006 + + +0 +2 +2 +SnapEDA +RESC2012X65N_007 + + +0 +2 +2 +SnapEDA +RESC2012X65N_008 + + +0 +2 +2 +SnapEDA +RESC2012X65N_009 + + +0 +2 +2 +SnapEDA +RESC2012X65N_010 + + +0 +2 +2 +SnapEDA +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 +SnapEDA +R_LDR_10x8.5mm_P7.6mm_Vertical +Resistor, LDR 10x8.5mm +Resistor LDR10.8.5mm +0 +2 +2 +SnapEDA +SHENZHEN-CHUANGQIN-TECHNOLOGY_CQ-USB-C16PSMT01 + + +0 +16 +16 +SnapEDA +SHENZHEN-CHUANGQIN-TECHNOLOGY_CQ-USB-C16PSMT01_001 + + +0 +16 +16 +SnapEDA +SLIDERSWITCH + + +0 +5 +5 +SnapEDA +SLIDERSWITCH_001 + + +0 +5 +5 +SnapEDA +SLIDERSWITCH_002 + + +0 +5 +5 +SnapEDA +SLIDERSWITCH_003 + + +0 +5 +5 +SnapEDA +SLW-913535_CUD + +SLW-913535-2A-SMT +0 +6 +6 +SnapEDA +SLW-913535_CUD_001 + +SLW-913535-2A-SMT +0 +6 +6 +SnapEDA +SO08 +Small Outline Package Fits JEDEC packages (narrow SOIC-8) + +0 +8 +8 +SnapEDA +SO08-TIGHT + + +0 +8 +8 +SnapEDA +SO08-TIGHT_001 + + +0 +8 +8 +SnapEDA +SO08-TIGHT_002 + + +0 +8 +8 +SnapEDA +SO08-TIGHT_003 + + +0 +8 +8 +SnapEDA +SO08_001 +Small Outline Package Fits JEDEC packages (narrow SOIC-8) + +0 +8 +8 +SnapEDA +SO08_002 +Small Outline Package Fits JEDEC packages (narrow SOIC-8) + +0 +8 +8 +SnapEDA +SO08_003 +Small Outline Package Fits JEDEC packages (narrow SOIC-8) + +0 +8 +8 +SnapEDA +SO08_004 +Small Outline Package Fits JEDEC packages (narrow SOIC-8) + +0 +8 +8 +SnapEDA +SOD3715X145N + + +0 +2 +2 +SnapEDA +SOD3715X145N_001 + + +0 +2 +2 +SnapEDA +SOD3715X145N_002 + + +0 +2 +2 +SnapEDA +SOD3715X145N_003 + + +0 +2 +2 +SnapEDA +SOD3715X145N_004 + + +0 +2 +2 +SnapEDA +SOD3715X145N_005 + + +0 +2 +2 +SnapEDA +SOD3715X145N_006 + + +0 +2 +2 +SnapEDA +SOD3715X145N_007 + + +0 +2 +2 +SnapEDA +SOD3715X145N_008 + + +0 +2 +2 +SnapEDA +SOD3715X145N_009 + + +0 +2 +2 +SnapEDA +SOD3715X145N_010 + + +0 +2 +2 +SnapEDA +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 +SnapEDA +SOIC127P599X175-8N + + +0 +8 +8 +SnapEDA +SOIC127P599X175-8N_001 + + +0 +8 +8 +SnapEDA +SOIC127P599X175-8N_002 + + +0 +8 +8 +SnapEDA +SOIC127P599X175-8N_003 + + +0 +8 +8 +SnapEDA +SOIC127P600X175-9N + + +0 +9 +9 +SnapEDA +SOIC127P600X175-9N_001 + + +0 +9 +9 +SnapEDA +SOIC127P600X175-9N_002 + + +0 +9 +9 +SnapEDA +SOIC127P600X175-9N_003 + + +0 +9 +9 +SnapEDA +SOIC127P600X177-16N + + +0 +16 +16 +SnapEDA +SOIC127P600X177-16N_001 + + +0 +16 +16 +SnapEDA +SOIC127P600X177-16N_002 + + +0 +16 +16 +SnapEDA +SOIC127P600X177-16N_003 + + +0 +16 +16 +SnapEDA +SOIC127P600X180-16N + + +0 +16 +16 +SnapEDA +SOIC127P600X180-16N_001 + + +0 +16 +16 +SnapEDA +SOIC127P600X180-16N_002 + + +0 +16 +16 +SnapEDA +SOIC127P600X180-16N_003 + + +0 +16 +16 +SnapEDA +SOIC127P600X180-16N_004 + + +0 +16 +16 +SnapEDA +SOIC127P600X180-16N_005 + + +0 +16 +16 +SnapEDA +SOIC127P600X180-16N_006 + + +0 +16 +16 +SnapEDA +SOP50P810X120-57N +DCA (R-PDSO-G56)_1 +Integrated Circuit +0 +57 +57 +SnapEDA +SOP65P490X110-8N + + +0 +8 +8 +SnapEDA +SOP65P490X110-8N_001 + + +0 +8 +8 +SnapEDA +SOP65P490X110-8N_002 + + +0 +8 +8 +SnapEDA +SOP127P600X175-9N + + +0 +9 +9 +SnapEDA +SOP127P600X175-9N_001 + + +0 +9 +9 +SnapEDA +SOP127P600X175-9N_002 + + +0 +9 +9 +SnapEDA +SOP127P600X175-9N_003 + + +0 +9 +9 +SnapEDA +SOP127P600X175-9N_004 + + +0 +9 +9 +SnapEDA +SOP127P600X175-9N_005 + + +0 +9 +9 +SnapEDA +SOP127P600X175-9N_006 + + +0 +9 +9 +SnapEDA +SOP127P600X175-9N_007 + + +0 +9 +9 +SnapEDA +SOP127P600X175-9N_008 + + +0 +9 +9 +SnapEDA +SOP127P600X175-9N_009 + + +0 +9 +9 +SnapEDA +SOP127P600X175-9N_010 + + +0 +9 +9 +SnapEDA +SOP254P975X460-4N +PC817X1NIP0F
+ +0 +4 +4 +SnapEDA +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 +SnapEDA +SOT23 +SOT-23 + +0 +3 +3 +SnapEDA +SOT23_001 +SOT-23 + +0 +3 +3 +SnapEDA +SOT23_002 +SOT-23 + +0 +3 +3 +SnapEDA +SOT23_003 +SOT-23 + +0 +3 +3 +SnapEDA +SOT23_004 +SOT-23 + +0 +3 +3 +SnapEDA +SOT23_005 +SOT-23 + +0 +3 +3 +SnapEDA +SOT23_006 +SOT-23 + +0 +3 +3 +SnapEDA +SOT23_353 +SOT-23 + +0 +3 +3 +SnapEDA +SOT23_353_001 +SOT-23 + +0 +3 +3 +SnapEDA +SOT23_353_002 +SOT-23 + +0 +3 +3 +SnapEDA +SOT23_353_003 +SOT-23 + +0 +3 +3 +SnapEDA +SOT23_353_004 +SOT-23 + +0 +3 +3 +SnapEDA +SOT23_397 +SOT-23 + +0 +3 +3 +SnapEDA +SOT23_397_001 +SOT-23 + +0 +3 +3 +SnapEDA +SOT23_402 +SOT-23 + +0 +3 +3 +SnapEDA +SOT23_402_001 +SOT-23 + +0 +3 +3 +SnapEDA +SOT23_402_002 +SOT-23 + +0 +3 +3 +SnapEDA +SOT50P160X60-6N-TPS610 + + +0 +6 +6 +SnapEDA +SOT95P240X111-3N + + +0 +3 +3 +SnapEDA +SOT95P240X111-3N_001 + + +0 +3 +3 +SnapEDA +SOT95P240X111-3N_002 + + +0 +3 +3 +SnapEDA +SOT95P240X111-3N_003 + + +0 +3 +3 +SnapEDA +SOT95P240X111-3N_004 + + +0 +3 +3 +SnapEDA +SOT95P240X111-3N_005 + + +0 +3 +3 +SnapEDA +SOT95P240X111-3N_006 + + +0 +3 +3 +SnapEDA +SOT95P280X145-6N + + +0 +6 +6 +SnapEDA +SOT95P280X145-6N_001 + + +0 +6 +6 +SnapEDA +SOT95P280X145-6N_002 + + +0 +6 +6 +SnapEDA +SOT95P280X145-6N_003 + + +0 +6 +6 +SnapEDA +SOT95P280X145-6N_004 + + +0 +6 +6 +SnapEDA +SOT95P280X145-6N_005 + + +0 +6 +6 +SnapEDA +SOT95P280X145-6N_006 + + +0 +6 +6 +SnapEDA +SOT95P280X145-6N_007 + + +0 +6 +6 +SnapEDA +SOT95P280X145-6N_008 + + +0 +6 +6 +SnapEDA +SOT95P280X145-6N_009 + + +0 +6 +6 +SnapEDA +SOT95P280X145-6N_010 + + +0 +6 +6 +SnapEDA +SOT229P700X180-4N + + +0 +4 +4 +SnapEDA +SOT229P700X180-4N_001 + + +0 +4 +4 +SnapEDA +SOT229P700X180-4N_002 + + +0 +4 +4 +SnapEDA +SOT229P700X180-4N_003 + + +0 +4 +4 +SnapEDA +SOT229P700X180-4N_004 + + +0 +4 +4 +SnapEDA +SOT229P700X180-4N_005 + + +0 +4 +4 +SnapEDA +SOT229P700X180-4N_006 + + +0 +4 +4 +SnapEDA +SOT229P700X180-4N_007 + + +0 +4 +4 +SnapEDA +SOT229P700X180-4N_008 + + +0 +4 +4 +SnapEDA +SOT229P700X180-4N_009 + + +0 +4 +4 +SnapEDA +SOT229P700X180-4N_010 + + +0 +4 +4 +SnapEDA +SW_B3SL-1022P + + +0 +4 +4 +SnapEDA +SW_B3SL-1022P_001 + + +0 +4 +4 +SnapEDA +SW_B3SL-1022P_002 + + +0 +4 +4 +SnapEDA +SW_B3SL-1022P_003 + + +0 +4 +4 +SnapEDA +SW_B3SL-1022P_004 + + +0 +4 +4 +SnapEDA +SW_B3SL-1022P_005 + + +0 +4 +4 +SnapEDA +SW_B3SL-1022P_006 + + +0 +4 +4 +SnapEDA +SW_JS202011SCQN + + +0 +6 +6 +SnapEDA +SW_JS202011SCQN_001 + + +0 +6 +6 +SnapEDA +SW_JS202011SCQN_002 + + +0 +6 +6 +SnapEDA +SW_JS202011SCQN_003 + + +0 +6 +6 +SnapEDA +SW_JS202011SCQN_004 + + +0 +6 +6 +SnapEDA +SW_JS202011SCQN_005 + + +0 +6 +6 +SnapEDA +SW_JS202011SCQN_006 + + +0 +6 +6 +SnapEDA +SW_JS202011SCQN_007 + + +0 +6 +6 +SnapEDA +SW_JS202011SCQN_008 + + +0 +6 +6 +SnapEDA +SW_JS202011SCQN_009 + + +0 +6 +6 +SnapEDA +SW_JS202011SCQN_010 + + +0 +6 +6 +SnapEDA +SW_PUSH_6mm_H4.3mm +tactile push button, 6x6mm e.g. PHAP33xx series, height=4.3mm +tact sw push 6mm +0 +4 +2 +SnapEDA +SW_PUSH_6mm_H13mm +tactile push button, 6x6mm e.g. PHAP33xx series, height=13mm +tact sw push 6mm +0 +4 +2 +SnapEDA +SW_TS09-63-25-WT-160-SMT-TR + + +0 +2 +2 +SnapEDA +TO92_402 +TO 92 + +0 +3 +3 +SnapEDA +TO92_402_001 +TO 92 + +0 +3 +3 +SnapEDA +TO92_402_002 +TO 92 + +0 +3 +3 +SnapEDA +TO92_402_003 +TO 92 + +0 +3 +3 +SnapEDA +TO92_402_004 +TO 92 + +0 +3 +3 +SnapEDA +TO92_402_005 +TO 92 + +0 +3 +3 +SnapEDA +TO92_402_006 +TO 92 + +0 +3 +3 +SnapEDA +TO92_402_007 +TO 92 + +0 +3 +3 +SnapEDA +TO92_402_008 +TO 92 + +0 +3 +3 +SnapEDA +TO252 +SMALL OUTLINE TRANSISTOR{return}{return}TS-003 + +0 +3 +3 +SnapEDA +TO252_001 +SMALL OUTLINE TRANSISTOR{return}{return}TS-003 + +0 +3 +3 +SnapEDA +TO252_002 +SMALL OUTLINE TRANSISTOR{return}{return}TS-003 + +0 +3 +3 +SnapEDA +TO252_003 +SMALL OUTLINE TRANSISTOR{return}{return}TS-003 + +0 +3 +3 +SnapEDA +TO254P1016X419X2286-3 + + +0 +3 +3 +SnapEDA +TO254P1016X419X2286-3_001 + + +0 +3 +3 +SnapEDA +TO254P1016X419X2286-3_002 + + +0 +3 +3 +SnapEDA +TOUCHPAD + + +0 +2 +2 +SnapEDA +TOUCHPAD_001 + + +0 +2 +2 +SnapEDA +TOUCHPAD_002 + + +0 +2 +2 +SnapEDA +TOUCHPAD_003 + + +0 +2 +2 +SnapEDA +TOUCHPAD_004 + + +0 +2 +2 +SnapEDA +TOUCHPAD_005 + + +0 +2 +2 +SnapEDA +TOUCHPAD_006 + + +0 +2 +2 +SnapEDA +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 +SnapEDA +TRIM_3386F-1-103TLF + + +0 +3 +3 +SnapEDA +TRIM_3386F-1-103TLF_001 + + +0 +3 +3 +SnapEDA +TRIM_P090S-04F20BR10K + + +0 +5 +5 +SnapEDA +TRIM_P090S-04F20BR10K_001 + + +0 +5 +5 +SnapEDA +TRIM_PTN091-V05115K1B + + +0 +5 +5 +SnapEDA +TRIM_PTN091-V05115K1B_001 + + +0 +5 +5 +SnapEDA +TRIM_PTN091-V05115K1B_002 + + +0 +5 +5 +SnapEDA +TRIM_PTN091-V05115K1B_003 + + +0 +5 +5 +SnapEDA +TSOP-6 + + +0 +6 +6 +SnapEDA +TestPoint_2Pads_Pitch2.54mm_Drill0.8mm +Test point with 2 pins, pitch 2.54mm, drill diameter 0.8mm +CONN DEV +0 +2 +2 +SnapEDA +TestPoint_Pad_1.5x1.5mm +SMD rectangular pad as test Point, square 1.5mm side length +test point SMD pad rectangle square +0 +2 +2 +SnapEDA +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 +SnapEDA +VALCON_CSP-USC16-TR + + +0 +20 +20 +SnapEDA +VALCON_CSP-USC16-TR_001 + + +0 +20 +20 +SnapEDA +VALCON_CSP-USC16-TR_002 + + +0 +20 +20 +SnapEDA +VALCON_CSP-USC16-TR_003 + + +0 +20 +20 +SnapEDA +VALCON_CSP-USC16-TR_004 + + +0 +20 +20 +SnapEDA +VALCON_CSP-USC16-TR_005 + + +0 +20 +20 +SnapEDA +VALCON_CSP-USC16-TR_006 + + +0 +20 +20 +SnapEDA +Vishay_TCRT5000 +IR Reflective Optical Sensor with Transistor Output TCRT5000 https://www.vishay.com/docs/83760/tcrt5000.pdf +IR Reflective Optical Sensor with Transistor Output TCRT5000 Vishay Distance Sensor +0 +4 +4 +SnapEDA +WC1602A +LCD 16x2 http://www.wincomlcd.com/pdf/WC1602A-SFYLYHTC06.pdf +LCD 16x2 Alphanumeric 16pin +0 +20 +16 +SnapEDA +XCVR_ESP32-S3-WROOM-1-N8R2 + + +0 +61 +61 +SnapEDA +XCVR_ESP32-WROOM-32E_(4MB) + + +0 +59 +59 +SnapEDA +XCVR_ESP32-WROOM-32E_(4MB)_001 + + +0 +59 +59 +SnapEDA +XCVR_ESP32-WROOM-32E_(4MB)_002 + + +0 +59 +59 +SnapEDA +XCVR_ESP32-WROOM-32E_(4MB)_003 + + +0 +59 +59 +SnapEDA +XCVR_ESP32-WROOM-32E_(4MB)_004 + + +0 +59 +59 +SnapEDA +XCVR_ESP32-WROOM-32E_(4MB)_005 + + +0 +59 +59 +SnapEDA +XCVR_ESP32-WROOM-32E_(4MB)_006 + + +0 +59 +59 +SnapEDA +XDCR_CMT-7525-80-SMT-TR + + +0 +4 +4 +SnapEDA +XDCR_TCRT5000L + + +0 +4 +4 +SnapEDA +alcohol symbol + + +0 +0 +0 +SnapEDA +bottle + + +0 +0 +0 +SnapEDA +buzzer kjl 8530 + + +0 +4 +4 +SnapEDA +buzzer kjl 8530_001 + + +0 +4 +4 +SnapEDA +circle + + +0 +0 +0 +SnapEDA +circle_001 + + +0 +0 +0 +SnapEDA +circle_002 + + +0 +0 +0 +SnapEDA +circle_003 + + +0 +0 +0 +SnapEDA +circle_004 + + +0 +0 +0 +SnapEDA +circle_005 + + +0 +0 +0 +SnapEDA +circle_006 + + +0 +0 +0 +SnapEDA +circle_007 + + +0 +0 +0 +SnapEDA +door + + +0 +0 +0 +SnapEDA +door_001 + + +0 +0 +0 +SnapEDA +door_002 + + +0 +0 +0 +SnapEDA +door_003 + + +0 +0 +0 +SnapEDA +door_004 + + +0 +0 +0 +SnapEDA +door_005 + + +0 +0 +0 +SnapEDA +door_006 + + +0 +0 +0 +SnapEDA +door_007 + + +0 +0 +0 +SnapEDA +door_008 + + +0 +0 +0 +SnapEDA +eq + + +0 +0 +0 +SnapEDA +eqq + + +0 +0 +0 +SnapEDA +face + + +0 +0 +0 +SnapEDA +face_001 + + +0 +0 +0 +SnapEDA +face_002 + + +0 +0 +0 +SnapEDA +face_003 + + +0 +0 +0 +SnapEDA +face_004 + + +0 +0 +0 +SnapEDA +face_005 + + +0 +0 +0 +SnapEDA +face_006 + + +0 +0 +0 +SnapEDA +face_007 + + +0 +0 +0 +SnapEDA +face_008 + + +0 +0 +0 +SnapEDA +fan + + +0 +0 +0 +SnapEDA +fan_001 + + +0 +0 +0 +SnapEDA +fan_002 + + +0 +0 +0 +SnapEDA +flame + + +0 +0 +0 +SnapEDA +flame_001 + + +0 +0 +0 +SnapEDA +flame_002 + + +0 +0 +0 +SnapEDA +flame_003 + + +0 +0 +0 +SnapEDA +flame_004 + + +0 +0 +0 +SnapEDA +flame_005 + + +0 +0 +0 +SnapEDA +flame_006 + + +0 +0 +0 +SnapEDA +flame_007 + + +0 +0 +0 +SnapEDA +flame_008 + + +0 +0 +0 +SnapEDA +heart + + +0 +0 +0 +SnapEDA +home + + +0 +0 +0 +SnapEDA +home_001 + + +0 +0 +0 +SnapEDA +home_002 + + +0 +0 +0 +SnapEDA +home_003 + + +0 +0 +0 +SnapEDA +home_004 + + +0 +0 +0 +SnapEDA +home_005 + + +0 +0 +0 +SnapEDA +home_006 + + +0 +0 +0 +SnapEDA +home_007 + + +0 +0 +0 +SnapEDA +home_008 + + +0 +0 +0 +SnapEDA +insect + + +0 +0 +0 +SnapEDA +insect_001 + + +0 +0 +0 +SnapEDA +insect_002 + + +0 +0 +0 +SnapEDA +insect_003 + + +0 +0 +0 +SnapEDA +insect_004 + + +0 +0 +0 +SnapEDA +insect_005 + + +0 +0 +0 +SnapEDA +insect_006 + + +0 +0 +0 +SnapEDA +insect_007 + + +0 +0 +0 +SnapEDA +insect_008 + + +0 +0 +0 +SnapEDA +logo + + +0 +0 +0 +SnapEDA +logo_001 + + +0 +0 +0 +SnapEDA +logo_002 + + +0 +0 +0 +SnapEDA +logo_003 + + +0 +0 +0 +SnapEDA +logo_004 + + +0 +0 +0 +SnapEDA +logo_005 + + +0 +0 +0 +SnapEDA +logo_006 + + +0 +0 +0 +SnapEDA +logo_007 + + +0 +0 +0 +SnapEDA +logo_008 + + +0 +0 +0 +SnapEDA +logo_009 + + +0 +0 +0 +SnapEDA +makiinindia + + +0 +0 +0 +SnapEDA +makiinindia_001 + + +0 +0 +0 +SnapEDA +makiinindia_002 + + +0 +0 +0 +SnapEDA +makiinindia_003 + + +0 +0 +0 +SnapEDA +makiinindia_004 + + +0 +0 +0 +SnapEDA +makiinindia_005 + + +0 +0 +0 +SnapEDA +makiinindia_006 + + +0 +0 +0 +SnapEDA +makiinindia_007 + + +0 +0 +0 +SnapEDA +makiinindia_008 + + +0 +0 +0 +SnapEDA +makiinindia_009 + + +0 +0 +0 +SnapEDA +makiinindia_010 + + +0 +0 +0 +SnapEDA +oc200 + + +0 +0 +0 +SnapEDA +oc200_001 + + +0 +0 +0 +SnapEDA +oct + + +0 +0 +0 +SnapEDA +oct_001 + + +0 +0 +0 +SnapEDA +piano + + +0 +0 +0 +SnapEDA +piano_001 + + +0 +0 +0 +SnapEDA +piano_002 + + +0 +0 +0 +SnapEDA +piano_003 + + +0 +0 +0 +SnapEDA +piano_004 + + +0 +0 +0 +SnapEDA +piano_005 + + +0 +0 +0 +SnapEDA +piano_006 + + +0 +0 +0 +SnapEDA +piano_007 + + +0 +0 +0 +SnapEDA +piano_008 + + +0 +0 +0 +SnapEDA +solar panel + + +0 +0 +0 +SnapEDA +speaker + + +0 +0 +0 +SnapEDA +star + + +0 +0 +0 +SnapEDA +star_001 + + +0 +0 +0 +SnapEDA +star_002 + + +0 +0 +0 +SnapEDA +star_003 + + +0 +0 +0 +SnapEDA +star_004 + + +0 +0 +0 +SnapEDA +star_005 + + +0 +0 +0 +SnapEDA +star_006 + + +0 +0 +0 +SnapEDA +star_007 + + +0 +0 +0 +SnapEDA +tank + + +0 +0 +0 +SnapEDA +tank_001 + + +0 +0 +0 +SnapEDA +tank_002 + + +0 +0 +0 +SnapEDA +tank_003 + + +0 +0 +0 +SnapEDA +tank_004 + + +0 +0 +0 +SnapEDA +tank_005 + + +0 +0 +0 +SnapEDA +tank_006 + + +0 +0 +0 +SnapEDA +tank_007 + + +0 +0 +0 +SnapEDA +tank_008 + + +0 +0 +0 +SnapEDA +tourch + + +0 +0 +0 +SnapEDA +tourch_001 + + +0 +0 +0 +SnapEDA +tourch_002 + + +0 +0 +0 +SnapEDA +tourch_003 + + +0 +0 +0 +SnapEDA +tourch_004 + + +0 +0 +0 +SnapEDA +tourch_005 + + +0 +0 +0 +SnapEDA +tourch_006 + + +0 +0 +0 +SnapEDA +tourch_007 + + +0 +0 +0 +SnapEDA +tourch_008 + + +0 +0 +0 +SnapEDA +window + + +0 +0 +0 +SnapEDA +window_001 + + +0 +0 +0 +SnapEDA +window_002 + + +0 +0 +0 +SnapEDA +window_003 + + +0 +0 +0 +SnapEDA +window_004 + + +0 +0 +0 +SnapEDA +window_005 + + +0 +0 +0 +SnapEDA +window_006 + + +0 +0 +0 +SnapEDA +window_007 + + +0 +0 +0 +SnapEDA +window_008 + + +0 +0 +0 +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-14_W4.3mm_W5.08mm_W7.62mm_W10.16mm_W10.9mm_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-16_W4.3mm_W5.08mm_W7.62mm_W10.16mm_W10.9mm_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-18_W4.3mm_W5.08mm_W7.62mm_W10.16mm_W10.9mm_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-20_W4.3mm_W5.08mm_W7.62mm_W10.16mm_W10.9mm_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-22_W6.9mm_W7.62mm_W10.16mm_W12.7mm_W13.5mm_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_W4.3mm_W5.08mm_W7.62mm_W10.16mm_W10.9mm_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-24_W11.9mm_W12.7mm_W15.24mm_W17.78mm_W18.5mm_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_W6.9mm_W7.62mm_W10.16mm_W12.7mm_W13.5mm_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-28_W11.9mm_W12.7mm_W15.24mm_W17.78mm_W18.5mm_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-32_W11.9mm_W12.7mm_W15.24mm_W17.78mm_W18.5mm_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_W11.9mm_W12.7mm_W15.24mm_W17.78mm_W18.5mm_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-40_W22.1mm_W22.86mm_W25.4mm_W27.94mm_W28.7mm_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 +DIP_Socket-42_W11.9mm_W12.7mm_W15.24mm_W17.78mm_W18.5mm_3M_242-1281-00-0602J +3M 42-pin zero insertion force socket, through-hole, row spacing 15.24 mm (600 mils), http://multimedia.3m.com/mws/media/494546O/3mtm-dip-sockets-100-2-54-mm-ts0365.pdf +THT DIP DIL ZIF 15.24mm 600mil Socket +0 +42 +42 +Socket +Wells_648-0482211SA01 +https://www.farnell.com/cad/316865.pdf?_ga=2.37208032.177107060.1530611323-249019997.1498114824 +48pin TSOP Socket +0 +48 +48 +Symbol +CE-Logo_8.5x6mm_SilkScreen +CE marking +Logo CE certification +0 +0 +0 +Symbol +CE-Logo_11.2x8mm_SilkScreen +CE marking +Logo CE certification +0 +0 +0 +Symbol +CE-Logo_16.8x12mm_SilkScreen +CE marking +Logo CE certification +0 +0 +0 +Symbol +CE-Logo_28x20mm_SilkScreen +CE marking +Logo CE certification +0 +0 +0 +Symbol +CE-Logo_42x30mm_SilkScreen +CE marking +Logo CE certification +0 +0 +0 +Symbol +CE-Logo_56.1x40mm_SilkScreen +CE marking +Logo CE certification +0 +0 +0 +Symbol +ESD-Logo_6.6x6mm_SilkScreen +Electrostatic discharge Logo +Logo ESD +0 +0 +0 +Symbol +ESD-Logo_8.9x8mm_SilkScreen +Electrostatic discharge Logo +Logo ESD +0 +0 +0 +Symbol +ESD-Logo_13.2x12mm_SilkScreen +Electrostatic discharge Logo +Logo ESD +0 +0 +0 +Symbol +ESD-Logo_22x20mm_SilkScreen +Electrostatic discharge Logo +Logo ESD +0 +0 +0 +Symbol +ESD-Logo_33x30mm_SilkScreen +Electrostatic discharge Logo +Logo ESD +0 +0 +0 +Symbol +ESD-Logo_44.1x40mm_SilkScreen +Electrostatic discharge Logo +Logo ESD +0 +0 +0 +Symbol +EasterEgg_EWG1308-2013_ClassA +Egg with 42x60mm Body-Size, ClassA, according to EWG1308/2013 +egg easter +0 +0 +0 +Symbol +FCC-Logo_7.3x6mm_SilkScreen +FCC marking +Logo FCC certification +0 +0 +0 +Symbol +FCC-Logo_9.6x8mm_SilkScreen +FCC marking +Logo FCC certification +0 +0 +0 +Symbol +FCC-Logo_14.6x12mm_SilkScreen +FCC marking +Logo FCC certification +0 +0 +0 +Symbol +FCC-Logo_24.2x20mm_SilkScreen +FCC marking +Logo FCC certification +0 +0 +0 +Symbol +FCC-Logo_36.3x30mm_SilkScreen +FCC marking +Logo FCC certification +0 +0 +0 +Symbol +FCC-Logo_48.3x40mm_SilkScreen +FCC marking +Logo FCC certification +0 +0 +0 +Symbol +KiCad-Logo2_5mm_Copper +KiCad Logo +Logo KiCad +0 +0 +0 +Symbol +KiCad-Logo2_5mm_SilkScreen +KiCad Logo +Logo KiCad +0 +0 +0 +Symbol +KiCad-Logo2_6mm_Copper +KiCad Logo +Logo KiCad +0 +0 +0 +Symbol +KiCad-Logo2_6mm_SilkScreen +KiCad Logo +Logo KiCad +0 +0 +0 +Symbol +KiCad-Logo2_8mm_Copper +KiCad Logo +Logo KiCad +0 +0 +0 +Symbol +KiCad-Logo2_8mm_SilkScreen +KiCad Logo +Logo KiCad +0 +0 +0 +Symbol +KiCad-Logo2_12mm_Copper +KiCad Logo +Logo KiCad +0 +0 +0 +Symbol +KiCad-Logo2_12mm_SilkScreen +KiCad Logo +Logo KiCad +0 +0 +0 +Symbol +KiCad-Logo2_20mm_Copper +KiCad Logo +Logo KiCad +0 +0 +0 +Symbol +KiCad-Logo2_20mm_SilkScreen +KiCad Logo +Logo KiCad +0 +0 +0 +Symbol +KiCad-Logo2_30mm_Copper +KiCad Logo +Logo KiCad +0 +0 +0 +Symbol +KiCad-Logo2_30mm_SilkScreen +KiCad Logo +Logo KiCad +0 +0 +0 +Symbol +KiCad-Logo2_40mm_Copper +KiCad Logo +Logo KiCad +0 +0 +0 +Symbol +KiCad-Logo2_40mm_SilkScreen +KiCad Logo +Logo KiCad +0 +0 +0 +Symbol +KiCad-Logo_5mm_Copper +KiCad Logo +Logo KiCad +0 +0 +0 +Symbol +KiCad-Logo_5mm_SilkScreen +KiCad Logo +Logo KiCad +0 +0 +0 +Symbol +KiCad-Logo_6mm_Copper +KiCad Logo +Logo KiCad +0 +0 +0 +Symbol +KiCad-Logo_6mm_SilkScreen +KiCad Logo +Logo KiCad +0 +0 +0 +Symbol +KiCad-Logo_8mm_Copper +KiCad Logo +Logo KiCad +0 +0 +0 +Symbol +KiCad-Logo_8mm_SilkScreen +KiCad Logo +Logo KiCad +0 +0 +0 +Symbol +KiCad-Logo_12mm_Copper +KiCad Logo +Logo KiCad +0 +0 +0 +Symbol +KiCad-Logo_12mm_SilkScreen +KiCad Logo +Logo KiCad +0 +0 +0 +Symbol +KiCad-Logo_20mm_Copper +KiCad Logo +Logo KiCad +0 +0 +0 +Symbol +KiCad-Logo_20mm_SilkScreen +KiCad Logo +Logo KiCad +0 +0 +0 +Symbol +KiCad-Logo_30mm_Copper +KiCad Logo +Logo KiCad +0 +0 +0 +Symbol +KiCad-Logo_30mm_SilkScreen +KiCad Logo +Logo KiCad +0 +0 +0 +Symbol +KiCad-Logo_40mm_Copper +KiCad Logo +Logo KiCad +0 +0 +0 +Symbol +KiCad-Logo_40mm_SilkScreen +KiCad Logo +Logo KiCad +0 +0 +0 +Symbol +LayerMarker_2_3.81x2.54mm_TextH1mm_P1.27mm +Layer marker, 2 layers, simple ordinals, text size 1mm, pitch 1.27mm, margin 1.27mm +layer order identification numbering +0 +0 +0 +Symbol +LayerMarker_2_3.81x2.54mm_TextH1mm_P1.27mm_BottomMirrored +Layer marker, 2 layers, simple ordinals, text size 1mm, pitch 1.27mm, margin 1.27mm +layer order identification numbering +0 +0 +0 +Symbol +LayerMarker_2_3.81x2.54mm_TextH1mm_P1.27mm_Named +Layer marker, 2 layers, layer names, text size 1mm, pitch 1.27mm, margin 1.27mm +layer order identification numbering +0 +0 +0 +Symbol +LayerMarker_2_3.81x2.54mm_TextH1mm_P1.27mm_Named_BottomMirrored +Layer marker, 2 layers, layer names, text size 1mm, pitch 1.27mm, margin 1.27mm +layer order identification numbering +0 +0 +0 +Symbol +LayerMarker_4_6.35x2.54mm_TextH1mm_P1.27mm +Layer marker, 4 layers, simple ordinals, text size 1mm, pitch 1.27mm, margin 1.27mm +layer order identification numbering +0 +0 +0 +Symbol +LayerMarker_4_6.35x2.54mm_TextH1mm_P1.27mm_BottomMirrored +Layer marker, 4 layers, simple ordinals, text size 1mm, pitch 1.27mm, margin 1.27mm +layer order identification numbering +0 +0 +0 +Symbol +LayerMarker_4_6.35x2.54mm_TextH1mm_P1.27mm_LowerMirrored +Layer marker, 4 layers, simple ordinals, text size 1mm, pitch 1.27mm, margin 1.27mm +layer order identification numbering +0 +0 +0 +Symbol +LayerMarker_4_6.35x2.54mm_TextH1mm_P1.27mm_Named +Layer marker, 4 layers, layer names, text size 1mm, pitch 1.27mm, margin 1.27mm +layer order identification numbering +0 +0 +0 +Symbol +LayerMarker_4_6.35x2.54mm_TextH1mm_P1.27mm_Named_BottomMirrored +Layer marker, 4 layers, layer names, text size 1mm, pitch 1.27mm, margin 1.27mm +layer order identification numbering +0 +0 +0 +Symbol +LayerMarker_4_6.35x2.54mm_TextH1mm_P1.27mm_Named_LowerMirrored +Layer marker, 4 layers, layer names, text size 1mm, pitch 1.27mm, margin 1.27mm +layer order identification numbering +0 +0 +0 +Symbol +LayerMarker_6_8.89x2.54mm_TextH1mm_P1.27mm +Layer marker, 6 layers, simple ordinals, text size 1mm, pitch 1.27mm, margin 1.27mm +layer order identification numbering +0 +0 +0 +Symbol +LayerMarker_6_8.89x2.54mm_TextH1mm_P1.27mm_BottomMirrored +Layer marker, 6 layers, simple ordinals, text size 1mm, pitch 1.27mm, margin 1.27mm +layer order identification numbering +0 +0 +0 +Symbol +LayerMarker_6_8.89x2.54mm_TextH1mm_P1.27mm_LowerMirrored +Layer marker, 6 layers, simple ordinals, text size 1mm, pitch 1.27mm, margin 1.27mm +layer order identification numbering +0 +0 +0 +Symbol +LayerMarker_6_8.89x2.54mm_TextH1mm_P1.27mm_Named +Layer marker, 6 layers, layer names, text size 1mm, pitch 1.27mm, margin 1.27mm +layer order identification numbering +0 +0 +0 +Symbol +LayerMarker_6_8.89x2.54mm_TextH1mm_P1.27mm_Named_BottomMirrored +Layer marker, 6 layers, layer names, text size 1mm, pitch 1.27mm, margin 1.27mm +layer order identification numbering +0 +0 +0 +Symbol +LayerMarker_6_8.89x2.54mm_TextH1mm_P1.27mm_Named_LowerMirrored +Layer marker, 6 layers, layer names, text size 1mm, pitch 1.27mm, margin 1.27mm +layer order identification numbering +0 +0 +0 +Symbol +LayerMarker_8_11.4x2.54mm_TextH1mm_P1.27mm +Layer marker, 8 layers, simple ordinals, text size 1mm, pitch 1.27mm, margin 1.27mm +layer order identification numbering +0 +0 +0 +Symbol +LayerMarker_8_11.4x2.54mm_TextH1mm_P1.27mm_BottomMirrored +Layer marker, 8 layers, simple ordinals, text size 1mm, pitch 1.27mm, margin 1.27mm +layer order identification numbering +0 +0 +0 +Symbol +LayerMarker_8_11.4x2.54mm_TextH1mm_P1.27mm_LowerMirrored +Layer marker, 8 layers, simple ordinals, text size 1mm, pitch 1.27mm, margin 1.27mm +layer order identification numbering +0 +0 +0 +Symbol +LayerMarker_8_11.4x2.54mm_TextH1mm_P1.27mm_Named +Layer marker, 8 layers, layer names, text size 1mm, pitch 1.27mm, margin 1.27mm +layer order identification numbering +0 +0 +0 +Symbol +LayerMarker_8_11.4x2.54mm_TextH1mm_P1.27mm_Named_BottomMirrored +Layer marker, 8 layers, layer names, text size 1mm, pitch 1.27mm, margin 1.27mm +layer order identification numbering +0 +0 +0 +Symbol +LayerMarker_8_11.4x2.54mm_TextH1mm_P1.27mm_Named_LowerMirrored +Layer marker, 8 layers, layer names, text size 1mm, pitch 1.27mm, margin 1.27mm +layer order identification numbering +0 +0 +0 +Symbol +LayerMarker_10_14x2.54mm_TextH1mm_P1.27mm_AlNum +Layer marker, 10 layers, alphanumeric ordinals, text size 1mm, pitch 1.27mm, margin 1.27mm +layer order identification numbering +0 +0 +0 +Symbol +LayerMarker_10_14x2.54mm_TextH1mm_P1.27mm_AlNum_BottomMirrored +Layer marker, 10 layers, alphanumeric ordinals, text size 1mm, pitch 1.27mm, margin 1.27mm +layer order identification numbering +0 +0 +0 +Symbol +LayerMarker_10_14x2.54mm_TextH1mm_P1.27mm_AlNum_LowerMirrored +Layer marker, 10 layers, alphanumeric ordinals, text size 1mm, pitch 1.27mm, margin 1.27mm +layer order identification numbering +0 +0 +0 +Symbol +LayerMarker_10_14x2.54mm_TextH1mm_P1.27mm_Named +Layer marker, 10 layers, layer names, text size 1mm, pitch 1.27mm, margin 1.27mm +layer order identification numbering +0 +0 +0 +Symbol +LayerMarker_10_14x2.54mm_TextH1mm_P1.27mm_Named_BottomMirrored +Layer marker, 10 layers, layer names, text size 1mm, pitch 1.27mm, margin 1.27mm +layer order identification numbering +0 +0 +0 +Symbol +LayerMarker_10_14x2.54mm_TextH1mm_P1.27mm_Named_LowerMirrored +Layer marker, 10 layers, layer names, text size 1mm, pitch 1.27mm, margin 1.27mm +layer order identification numbering +0 +0 +0 +Symbol +LayerMarker_12_16.5x2.54mm_TextH1mm_P1.27mm_AlNum +Layer marker, 12 layers, alphanumeric ordinals, text size 1mm, pitch 1.27mm, margin 1.27mm +layer order identification numbering +0 +0 +0 +Symbol +LayerMarker_12_16.5x2.54mm_TextH1mm_P1.27mm_AlNum_BottomMirrored +Layer marker, 12 layers, alphanumeric ordinals, text size 1mm, pitch 1.27mm, margin 1.27mm +layer order identification numbering +0 +0 +0 +Symbol +LayerMarker_12_16.5x2.54mm_TextH1mm_P1.27mm_AlNum_LowerMirrored +Layer marker, 12 layers, alphanumeric ordinals, text size 1mm, pitch 1.27mm, margin 1.27mm +layer order identification numbering +0 +0 +0 +Symbol +LayerMarker_14_19.1x2.54mm_TextH1mm_P1.27mm_AlNum +Layer marker, 14 layers, alphanumeric ordinals, text size 1mm, pitch 1.27mm, margin 1.27mm +layer order identification numbering +0 +0 +0 +Symbol +LayerMarker_14_19.1x2.54mm_TextH1mm_P1.27mm_AlNum_BottomMirrored +Layer marker, 14 layers, alphanumeric ordinals, text size 1mm, pitch 1.27mm, margin 1.27mm +layer order identification numbering +0 +0 +0 +Symbol +LayerMarker_14_19.1x2.54mm_TextH1mm_P1.27mm_AlNum_LowerMirrored +Layer marker, 14 layers, alphanumeric ordinals, text size 1mm, pitch 1.27mm, margin 1.27mm +layer order identification numbering +0 +0 +0 +Symbol +LayerMarker_16_21.6x2.54mm_TextH1mm_P1.27mm_AlNum +Layer marker, 16 layers, alphanumeric ordinals, text size 1mm, pitch 1.27mm, margin 1.27mm +layer order identification numbering +0 +0 +0 +Symbol +LayerMarker_16_21.6x2.54mm_TextH1mm_P1.27mm_AlNum_BottomMirrored +Layer marker, 16 layers, alphanumeric ordinals, text size 1mm, pitch 1.27mm, margin 1.27mm +layer order identification numbering +0 +0 +0 +Symbol +LayerMarker_16_21.6x2.54mm_TextH1mm_P1.27mm_AlNum_LowerMirrored +Layer marker, 16 layers, alphanumeric ordinals, text size 1mm, pitch 1.27mm, margin 1.27mm +layer order identification numbering +0 +0 +0 +Symbol +LayerMarker_18_24.1x2.54mm_TextH1mm_P1.27mm_AlNum +Layer marker, 18 layers, alphanumeric ordinals, text size 1mm, pitch 1.27mm, margin 1.27mm +layer order identification numbering +0 +0 +0 +Symbol +LayerMarker_18_24.1x2.54mm_TextH1mm_P1.27mm_AlNum_BottomMirrored +Layer marker, 18 layers, alphanumeric ordinals, text size 1mm, pitch 1.27mm, margin 1.27mm +layer order identification numbering +0 +0 +0 +Symbol +LayerMarker_18_24.1x2.54mm_TextH1mm_P1.27mm_AlNum_LowerMirrored +Layer marker, 18 layers, alphanumeric ordinals, text size 1mm, pitch 1.27mm, margin 1.27mm +layer order identification numbering +0 +0 +0 +Symbol +LayerMarker_20_26.7x2.54mm_TextH1mm_P1.27mm_AlNum +Layer marker, 20 layers, alphanumeric ordinals, text size 1mm, pitch 1.27mm, margin 1.27mm +layer order identification numbering +0 +0 +0 +Symbol +LayerMarker_20_26.7x2.54mm_TextH1mm_P1.27mm_AlNum_BottomMirrored +Layer marker, 20 layers, alphanumeric ordinals, text size 1mm, pitch 1.27mm, margin 1.27mm +layer order identification numbering +0 +0 +0 +Symbol +LayerMarker_20_26.7x2.54mm_TextH1mm_P1.27mm_AlNum_LowerMirrored +Layer marker, 20 layers, alphanumeric ordinals, text size 1mm, pitch 1.27mm, margin 1.27mm +layer order identification numbering +0 +0 +0 +Symbol +LayerMarker_22_29.2x2.54mm_TextH1mm_P1.27mm_AlNum +Layer marker, 22 layers, alphanumeric ordinals, text size 1mm, pitch 1.27mm, margin 1.27mm +layer order identification numbering +0 +0 +0 +Symbol +LayerMarker_22_29.2x2.54mm_TextH1mm_P1.27mm_AlNum_BottomMirrored +Layer marker, 22 layers, alphanumeric ordinals, text size 1mm, pitch 1.27mm, margin 1.27mm +layer order identification numbering +0 +0 +0 +Symbol +LayerMarker_22_29.2x2.54mm_TextH1mm_P1.27mm_AlNum_LowerMirrored +Layer marker, 22 layers, alphanumeric ordinals, text size 1mm, pitch 1.27mm, margin 1.27mm +layer order identification numbering +0 +0 +0 +Symbol +LayerMarker_24_31.8x2.54mm_TextH1mm_P1.27mm_AlNum +Layer marker, 24 layers, alphanumeric ordinals, text size 1mm, pitch 1.27mm, margin 1.27mm +layer order identification numbering +0 +0 +0 +Symbol +LayerMarker_24_31.8x2.54mm_TextH1mm_P1.27mm_AlNum_BottomMirrored +Layer marker, 24 layers, alphanumeric ordinals, text size 1mm, pitch 1.27mm, margin 1.27mm +layer order identification numbering +0 +0 +0 +Symbol +LayerMarker_24_31.8x2.54mm_TextH1mm_P1.27mm_AlNum_LowerMirrored +Layer marker, 24 layers, alphanumeric ordinals, text size 1mm, pitch 1.27mm, margin 1.27mm +layer order identification numbering +0 +0 +0 +Symbol +LayerMarker_26_34.3x2.54mm_TextH1mm_P1.27mm_AlNum +Layer marker, 26 layers, alphanumeric ordinals, text size 1mm, pitch 1.27mm, margin 1.27mm +layer order identification numbering +0 +0 +0 +Symbol +LayerMarker_26_34.3x2.54mm_TextH1mm_P1.27mm_AlNum_BottomMirrored +Layer marker, 26 layers, alphanumeric ordinals, text size 1mm, pitch 1.27mm, margin 1.27mm +layer order identification numbering +0 +0 +0 +Symbol +LayerMarker_26_34.3x2.54mm_TextH1mm_P1.27mm_AlNum_LowerMirrored +Layer marker, 26 layers, alphanumeric ordinals, text size 1mm, pitch 1.27mm, margin 1.27mm +layer order identification numbering +0 +0 +0 +Symbol +LayerMarker_28_36.8x2.54mm_TextH1mm_P1.27mm_AlNum +Layer marker, 28 layers, alphanumeric ordinals, text size 1mm, pitch 1.27mm, margin 1.27mm +layer order identification numbering +0 +0 +0 +Symbol +LayerMarker_28_36.8x2.54mm_TextH1mm_P1.27mm_AlNum_BottomMirrored +Layer marker, 28 layers, alphanumeric ordinals, text size 1mm, pitch 1.27mm, margin 1.27mm +layer order identification numbering +0 +0 +0 +Symbol +LayerMarker_28_36.8x2.54mm_TextH1mm_P1.27mm_AlNum_LowerMirrored +Layer marker, 28 layers, alphanumeric ordinals, text size 1mm, pitch 1.27mm, margin 1.27mm +layer order identification numbering +0 +0 +0 +Symbol +LayerMarker_30_39.4x2.54mm_TextH1mm_P1.27mm_AlNum +Layer marker, 30 layers, alphanumeric ordinals, text size 1mm, pitch 1.27mm, margin 1.27mm +layer order identification numbering +0 +0 +0 +Symbol +LayerMarker_30_39.4x2.54mm_TextH1mm_P1.27mm_AlNum_BottomMirrored +Layer marker, 30 layers, alphanumeric ordinals, text size 1mm, pitch 1.27mm, margin 1.27mm +layer order identification numbering +0 +0 +0 +Symbol +LayerMarker_30_39.4x2.54mm_TextH1mm_P1.27mm_AlNum_LowerMirrored +Layer marker, 30 layers, alphanumeric ordinals, text size 1mm, pitch 1.27mm, margin 1.27mm +layer order identification numbering +0 +0 +0 +Symbol +LayerMarker_32_41.9x2.54mm_TextH1mm_P1.27mm_AlNum +Layer marker, 32 layers, alphanumeric ordinals, text size 1mm, pitch 1.27mm, margin 1.27mm +layer order identification numbering +0 +0 +0 +Symbol +LayerMarker_32_41.9x2.54mm_TextH1mm_P1.27mm_AlNum_BottomMirrored +Layer marker, 32 layers, alphanumeric ordinals, text size 1mm, pitch 1.27mm, margin 1.27mm +layer order identification numbering +0 +0 +0 +Symbol +LayerMarker_32_41.9x2.54mm_TextH1mm_P1.27mm_AlNum_LowerMirrored +Layer marker, 32 layers, alphanumeric ordinals, text size 1mm, pitch 1.27mm, margin 1.27mm +layer order identification numbering +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 +Smolhaj_Scale_0.1 +BLÅHAJ , smol 50cm nominal, 1:10 scale (56mm Snoot-Flosse), MPN 205.406.63 (https://www.ikea.com/gb/en/p/blahaj-soft-toy-baby-shark-20540663/) +Ikea Smol Haj +0 +0 +0 +Symbol +Symbol_Attention_Triangle_8x7mm_Copper +Symbol, Attention, 8x7mm, copper layer +warning graphic +0 +0 +0 +Symbol +Symbol_Attention_Triangle_17x15mm_Copper +Symbol, attention, 17x15mm, copper layer +warning graphic +0 +0 +0 +Symbol +Symbol_Barrel_Polarity +Barrel connector polarity indicator +barrel polarity +0 +0 +0 +Symbol +Symbol_CC-Attribution_CopperTop_Big +Creative Commons symbol, CC-BY, copper layer, 10mm +attribution license graphic +0 +0 +0 +Symbol +Symbol_CC-Attribution_CopperTop_Small +Creative Commons symbol, CC-BY, copper layer, 5mm + +0 +0 +0 +Symbol +Symbol_CC-Noncommercial_CopperTop_Big +Creative Commons symbol, CC-NC, copper layer, 10mm +noncommercial non-commercial license graphic +0 +0 +0 +Symbol +Symbol_CC-Noncommercial_CopperTop_Small +Creative Commons symbol, CC-NC, copper layer, 5mm +noncommercial non-commercial license graphic +0 +0 +0 +Symbol +Symbol_CC-PublicDomain_CopperTop_Big +Creative Commons symbol, CC0, copper layer, 10mm +public domain license graphic +0 +0 +0 +Symbol +Symbol_CC-PublicDomain_CopperTop_Small +Creative Commons symbol, CC0, copper layer, 10mm +public domain license graphic +0 +0 +0 +Symbol +Symbol_CC-PublicDomain_SilkScreenTop_Big +Creative Commons symbol, CC0, silkscreen layer, 10mm +public domain license graphic +0 +0 +0 +Symbol +Symbol_CC-ShareAlike_CopperTop_Big +Creative Commons symbol, CC-SA, copper layer, 10mm +share-alike license graphic +0 +0 +0 +Symbol +Symbol_CC-ShareAlike_CopperTop_Small +Creative Commons symbol, CC-SA, copper layer, 5mm +share-alike license graphic +0 +0 +0 +Symbol +Symbol_CreativeCommonsPublicDomain_CopperTop_Small +Creative Commons symbol, CC0, with words, copper layer, 10mm +public domain license graphic +0 +0 +0 +Symbol +Symbol_CreativeCommonsPublicDomain_SilkScreenTop_Small +Creative Commons symbol, CC0, with words, silkscreen layer, 10mm +public domain license graphic +0 +0 +0 +Symbol +Symbol_CreativeCommons_CopperTop_Type1_Big +Creative Commons symbol, CC, with words, copper layer, 10mm +license graphic +0 +0 +0 +Symbol +Symbol_CreativeCommons_CopperTop_Type2_Big +Creative Commons symbol, CC, copper layer, 10mm +license graphic +0 +0 +0 +Symbol +Symbol_CreativeCommons_CopperTop_Type2_Small +Creative Commons symbol, CC, copper layer, 5mm +license graphic +0 +0 +0 +Symbol +Symbol_CreativeCommons_SilkScreenTop_Type2_Big +Creative Commons symbol, CC0, silkscreen layer, 10mm +license graphic +0 +0 +0 +Symbol +Symbol_Danger_8x8mm_Copper +Danger symbol, 8x8mm, copper layer +warning graphic +0 +0 +0 +Symbol +Symbol_Danger_18x16mm_Copper +Danger symbol, 18x16mm, copper layer +warning graphic +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_NoTriangle_2x5mm_Copper +High voltage symbol, no triangle, 2x5mm, copper layer +warning graphic +0 +0 +0 +Symbol +Symbol_HighVoltage_NoTriangle_6x15mm_Copper +High voltage symbol, no triangle, 6x15mm, copper layer +warning graphic +0 +0 +0 +Symbol +Symbol_HighVoltage_Triangle_6x6mm_Copper +High voltage symbol, in triangle, 6x6mm, copper layer +warning graphic +0 +0 +0 +Symbol +Symbol_HighVoltage_Triangle_8x7mm_Copper +High voltage symbol, in triangle, 8x7mm, copper layer +warning graphic +0 +0 +0 +Symbol +Symbol_HighVoltage_Triangle_17x15mm_Copper +High voltage symbol, in triangle, 17x15mm, copper layer +warning graphic +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 https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32012L0019#page=29 +Logo WEEE +0 +0 +0 +Symbol +WEEE-Logo_5.6x8mm_SilkScreen +Waste Electrical and Electronic Equipment Directive https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32012L0019#page=29 +Logo WEEE +0 +0 +0 +Symbol +WEEE-Logo_8.4x12mm_SilkScreen +Waste Electrical and Electronic Equipment Directive https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32012L0019#page=29 +Logo WEEE +0 +0 +0 +Symbol +WEEE-Logo_14x20mm_SilkScreen +Waste Electrical and Electronic Equipment Directive https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32012L0019#page=29 +Logo WEEE +0 +0 +0 +Symbol +WEEE-Logo_21x30mm_SilkScreen +Waste Electrical and Electronic Equipment Directive https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32012L0019#page=29 +Logo WEEE +0 +0 +0 +Symbol +WEEE-Logo_28.1x40mm_SilkScreen +Waste Electrical and Electronic Equipment Directive https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32012L0019#page=29 +Logo WEEE +0 +0 +0 +TI_LMV358 +SO08 +Small Outline Package Fits JEDEC packages (narrow SOIC-8) + +0 +8 +8 +TI_LMV358 +SO08-TIGHT + + +0 +8 +8 +TI_LMV358IDGKR +SOP65P490X110-8N + + +0 +8 +8 +TI_TCA6408ARGTR +QFN50P300X300X100-17N + + +0 +22 +22 +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_Degson_DG246-3.81-03P +DEGSON ELECTRONICS DG246 terminal block, https://www.degson.com/index.php?a=downloadFile&id=1090277 +connector terminal block +0 +6 +3 +TerminalBlock +TerminalBlock_MaiXu_MX126-5.0-02P_1x02_P5.00mm +terminal block MaiXu MX126-5.0-02P, 2 pins, pitch 5mm, size 10.5x7.8mm, drill diameter 1.3mm, pad diameter 2.8mm, https://www.lcsc.com/datasheet/lcsc_datasheet_2309150913_MAX-MX126-5-0-03P-GN01-Cu-S-A_C5188435.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_MaiXu +THT terminal block MaiXu MX126-5.0-02P pitch 5mm size 10.5x7.8mm drill 1.3mm pad 2.8mm +0 +2 +2 +TerminalBlock +TerminalBlock_MaiXu_MX126-5.0-03P_1x03_P5.00mm +terminal block MaiXu MX126-5.0-03P, 3 pins, pitch 5mm, size 15.5x7.8mm, drill diameter 1.3mm, pad diameter 2.8mm, https://www.lcsc.com/datasheet/lcsc_datasheet_2309150913_MAX-MX126-5-0-03P-GN01-Cu-S-A_C5188435.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_MaiXu +THT terminal block MaiXu MX126-5.0-03P pitch 5mm size 15.5x7.8mm drill 1.3mm pad 2.8mm +0 +3 +3 +TerminalBlock +TerminalBlock_MaiXu_MX126-5.0-04P_1x04_P5.00mm +terminal block MaiXu MX126-5.0-04P, 4 pins, pitch 5mm, size 20.5x7.8mm, drill diameter 1.3mm, pad diameter 2.8mm, https://www.lcsc.com/datasheet/lcsc_datasheet_2309150913_MAX-MX126-5-0-03P-GN01-Cu-S-A_C5188435.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_MaiXu +THT terminal block MaiXu MX126-5.0-04P pitch 5mm size 20.5x7.8mm drill 1.3mm pad 2.8mm +0 +4 +4 +TerminalBlock +TerminalBlock_MaiXu_MX126-5.0-05P_1x05_P5.00mm +terminal block MaiXu MX126-5.0-05P, 5 pins, pitch 5mm, size 25.5x7.8mm, drill diameter 1.3mm, pad diameter 2.8mm, https://www.lcsc.com/datasheet/lcsc_datasheet_2309150913_MAX-MX126-5-0-03P-GN01-Cu-S-A_C5188435.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_MaiXu +THT terminal block MaiXu MX126-5.0-05P pitch 5mm size 25.5x7.8mm drill 1.3mm pad 2.8mm +0 +5 +5 +TerminalBlock +TerminalBlock_MaiXu_MX126-5.0-06P_1x06_P5.00mm +terminal block MaiXu MX126-5.0-06P, 6 pins, pitch 5mm, size 30.5x7.8mm, drill diameter 1.3mm, pad diameter 2.8mm, https://www.lcsc.com/datasheet/lcsc_datasheet_2309150913_MAX-MX126-5-0-03P-GN01-Cu-S-A_C5188435.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_MaiXu +THT terminal block MaiXu MX126-5.0-06P pitch 5mm size 30.5x7.8mm drill 1.3mm pad 2.8mm +0 +6 +6 +TerminalBlock +TerminalBlock_MaiXu_MX126-5.0-07P_1x07_P5.00mm +terminal block MaiXu MX126-5.0-07P, 7 pins, pitch 5mm, size 35.5x7.8mm, drill diameter 1.3mm, pad diameter 2.8mm, https://www.lcsc.com/datasheet/lcsc_datasheet_2309150913_MAX-MX126-5-0-03P-GN01-Cu-S-A_C5188435.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_MaiXu +THT terminal block MaiXu MX126-5.0-07P pitch 5mm size 35.5x7.8mm drill 1.3mm pad 2.8mm +0 +7 +7 +TerminalBlock +TerminalBlock_MaiXu_MX126-5.0-08P_1x08_P5.00mm +terminal block MaiXu MX126-5.0-08P, 8 pins, pitch 5mm, size 40.5x7.8mm, drill diameter 1.3mm, pad diameter 2.8mm, https://www.lcsc.com/datasheet/lcsc_datasheet_2309150913_MAX-MX126-5-0-03P-GN01-Cu-S-A_C5188435.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_MaiXu +THT terminal block MaiXu MX126-5.0-08P pitch 5mm size 40.5x7.8mm drill 1.3mm pad 2.8mm +0 +8 +8 +TerminalBlock +TerminalBlock_MaiXu_MX126-5.0-09P_1x09_P5.00mm +terminal block MaiXu MX126-5.0-09P, 9 pins, pitch 5mm, size 45.5x7.8mm, drill diameter 1.3mm, pad diameter 2.8mm, https://www.lcsc.com/datasheet/lcsc_datasheet_2309150913_MAX-MX126-5-0-03P-GN01-Cu-S-A_C5188435.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_MaiXu +THT terminal block MaiXu MX126-5.0-09P pitch 5mm size 45.5x7.8mm drill 1.3mm pad 2.8mm +0 +9 +9 +TerminalBlock +TerminalBlock_MaiXu_MX126-5.0-10P_1x10_P5.00mm +terminal block MaiXu MX126-5.0-10P, 10 pins, pitch 5mm, size 50.5x7.8mm, drill diameter 1.3mm, pad diameter 2.8mm, https://www.lcsc.com/datasheet/lcsc_datasheet_2309150913_MAX-MX126-5-0-03P-GN01-Cu-S-A_C5188435.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_MaiXu +THT terminal block MaiXu MX126-5.0-10P pitch 5mm size 50.5x7.8mm drill 1.3mm pad 2.8mm +0 +10 +10 +TerminalBlock +TerminalBlock_MaiXu_MX126-5.0-11P_1x11_P5.00mm +terminal block MaiXu MX126-5.0-11P, 11 pins, pitch 5mm, size 55.5x7.8mm, drill diameter 1.3mm, pad diameter 2.8mm, https://www.lcsc.com/datasheet/lcsc_datasheet_2309150913_MAX-MX126-5-0-03P-GN01-Cu-S-A_C5188435.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_MaiXu +THT terminal block MaiXu MX126-5.0-11P pitch 5mm size 55.5x7.8mm drill 1.3mm pad 2.8mm +0 +11 +11 +TerminalBlock +TerminalBlock_MaiXu_MX126-5.0-12P_1x12_P5.00mm +terminal block MaiXu MX126-5.0-12P, 12 pins, pitch 5mm, size 60.5x7.8mm, drill diameter 1.3mm, pad diameter 2.8mm, https://www.lcsc.com/datasheet/lcsc_datasheet_2309150913_MAX-MX126-5-0-03P-GN01-Cu-S-A_C5188435.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_MaiXu +THT terminal block MaiXu MX126-5.0-12P pitch 5mm size 60.5x7.8mm drill 1.3mm pad 2.8mm +0 +12 +12 +TerminalBlock +TerminalBlock_MaiXu_MX126-5.0-13P_1x13_P5.00mm +terminal block MaiXu MX126-5.0-13P, 13 pins, pitch 5mm, size 65.5x7.8mm, drill diameter 1.3mm, pad diameter 2.8mm, https://www.lcsc.com/datasheet/lcsc_datasheet_2309150913_MAX-MX126-5-0-03P-GN01-Cu-S-A_C5188435.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_MaiXu +THT terminal block MaiXu MX126-5.0-13P pitch 5mm size 65.5x7.8mm drill 1.3mm pad 2.8mm +0 +13 +13 +TerminalBlock +TerminalBlock_MaiXu_MX126-5.0-14P_1x14_P5.00mm +terminal block MaiXu MX126-5.0-14P, 14 pins, pitch 5mm, size 70.5x7.8mm, drill diameter 1.3mm, pad diameter 2.8mm, https://www.lcsc.com/datasheet/lcsc_datasheet_2309150913_MAX-MX126-5-0-03P-GN01-Cu-S-A_C5188435.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_MaiXu +THT terminal block MaiXu MX126-5.0-14P pitch 5mm size 70.5x7.8mm drill 1.3mm pad 2.8mm +0 +14 +14 +TerminalBlock +TerminalBlock_MaiXu_MX126-5.0-15P_1x15_P5.00mm +terminal block MaiXu MX126-5.0-15P, 15 pins, pitch 5mm, size 75.5x7.8mm, drill diameter 1.3mm, pad diameter 2.8mm, https://www.lcsc.com/datasheet/lcsc_datasheet_2309150913_MAX-MX126-5-0-03P-GN01-Cu-S-A_C5188435.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_MaiXu +THT terminal block MaiXu MX126-5.0-15P pitch 5mm size 75.5x7.8mm drill 1.3mm pad 2.8mm +0 +15 +15 +TerminalBlock +TerminalBlock_MaiXu_MX126-5.0-16P_1x16_P5.00mm +terminal block MaiXu MX126-5.0-16P, 16 pins, pitch 5mm, size 80.5x7.8mm, drill diameter 1.3mm, pad diameter 2.8mm, https://www.lcsc.com/datasheet/lcsc_datasheet_2309150913_MAX-MX126-5-0-03P-GN01-Cu-S-A_C5188435.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_MaiXu +THT terminal block MaiXu MX126-5.0-16P pitch 5mm size 80.5x7.8mm drill 1.3mm pad 2.8mm +0 +16 +16 +TerminalBlock +TerminalBlock_MaiXu_MX126-5.0-17P_1x17_P5.00mm +terminal block MaiXu MX126-5.0-17P, 17 pins, pitch 5mm, size 85.5x7.8mm, drill diameter 1.3mm, pad diameter 2.8mm, https://www.lcsc.com/datasheet/lcsc_datasheet_2309150913_MAX-MX126-5-0-03P-GN01-Cu-S-A_C5188435.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_MaiXu +THT terminal block MaiXu MX126-5.0-17P pitch 5mm size 85.5x7.8mm drill 1.3mm pad 2.8mm +0 +17 +17 +TerminalBlock +TerminalBlock_MaiXu_MX126-5.0-18P_1x18_P5.00mm +terminal block MaiXu MX126-5.0-18P, 18 pins, pitch 5mm, size 90.5x7.8mm, drill diameter 1.3mm, pad diameter 2.8mm, https://www.lcsc.com/datasheet/lcsc_datasheet_2309150913_MAX-MX126-5-0-03P-GN01-Cu-S-A_C5188435.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_MaiXu +THT terminal block MaiXu MX126-5.0-18P pitch 5mm size 90.5x7.8mm drill 1.3mm pad 2.8mm +0 +18 +18 +TerminalBlock +TerminalBlock_MaiXu_MX126-5.0-19P_1x19_P5.00mm +terminal block MaiXu MX126-5.0-19P, 19 pins, pitch 5mm, size 95.5x7.8mm, drill diameter 1.3mm, pad diameter 2.8mm, https://www.lcsc.com/datasheet/lcsc_datasheet_2309150913_MAX-MX126-5-0-03P-GN01-Cu-S-A_C5188435.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_MaiXu +THT terminal block MaiXu MX126-5.0-19P pitch 5mm size 95.5x7.8mm drill 1.3mm pad 2.8mm +0 +19 +19 +TerminalBlock +TerminalBlock_MaiXu_MX126-5.0-20P_1x20_P5.00mm +terminal block MaiXu MX126-5.0-20P, 20 pins, pitch 5mm, size 100x7.8mm, drill diameter 1.3mm, pad diameter 2.8mm, https://www.lcsc.com/datasheet/lcsc_datasheet_2309150913_MAX-MX126-5-0-03P-GN01-Cu-S-A_C5188435.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_MaiXu +THT terminal block MaiXu MX126-5.0-20P pitch 5mm size 100x7.8mm drill 1.3mm pad 2.8mm +0 +20 +20 +TerminalBlock +TerminalBlock_MaiXu_MX126-5.0-21P_1x21_P5.00mm +terminal block MaiXu MX126-5.0-21P, 21 pins, pitch 5mm, size 106x7.8mm, drill diameter 1.3mm, pad diameter 2.8mm, https://www.lcsc.com/datasheet/lcsc_datasheet_2309150913_MAX-MX126-5-0-03P-GN01-Cu-S-A_C5188435.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_MaiXu +THT terminal block MaiXu MX126-5.0-21P pitch 5mm size 106x7.8mm drill 1.3mm pad 2.8mm +0 +21 +21 +TerminalBlock +TerminalBlock_MaiXu_MX126-5.0-22P_1x22_P5.00mm +terminal block MaiXu MX126-5.0-22P, 22 pins, pitch 5mm, size 110x7.8mm, drill diameter 1.3mm, pad diameter 2.8mm, https://www.lcsc.com/datasheet/lcsc_datasheet_2309150913_MAX-MX126-5-0-03P-GN01-Cu-S-A_C5188435.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_MaiXu +THT terminal block MaiXu MX126-5.0-22P pitch 5mm size 110x7.8mm drill 1.3mm pad 2.8mm +0 +22 +22 +TerminalBlock +TerminalBlock_MaiXu_MX126-5.0-23P_1x23_P5.00mm +terminal block MaiXu MX126-5.0-23P, 23 pins, pitch 5mm, size 116x7.8mm, drill diameter 1.3mm, pad diameter 2.8mm, https://www.lcsc.com/datasheet/lcsc_datasheet_2309150913_MAX-MX126-5-0-03P-GN01-Cu-S-A_C5188435.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_MaiXu +THT terminal block MaiXu MX126-5.0-23P pitch 5mm size 116x7.8mm drill 1.3mm pad 2.8mm +0 +23 +23 +TerminalBlock +TerminalBlock_MaiXu_MX126-5.0-24P_1x24_P5.00mm +terminal block MaiXu MX126-5.0-24P, 24 pins, pitch 5mm, size 120x7.8mm, drill diameter 1.3mm, pad diameter 2.8mm, https://www.lcsc.com/datasheet/lcsc_datasheet_2309150913_MAX-MX126-5-0-03P-GN01-Cu-S-A_C5188435.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_MaiXu +THT terminal block MaiXu MX126-5.0-24P pitch 5mm size 120x7.8mm drill 1.3mm pad 2.8mm +0 +24 +24 +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_Xinya_XY308-2.54-2P_1x02_P2.54mm_Horizontal +Terminal Block Xinya XY308-2.54-2P, 2 pins, pitch 2.54mm, size 5.58x6.5mm, drill diameter 1.2mm, pad diameter 2mm, http://www.xinyaelectronic.com/product/xy308-254, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Xinya +THT Terminal Block Xinya XY308-2.54-2P pitch 2.54mm size 5.58x6.5mm drill 1.2mm pad 2mm +0 +2 +2 +TerminalBlock +TerminalBlock_Xinya_XY308-2.54-3P_1x03_P2.54mm_Horizontal +Terminal Block Xinya XY308-2.54-3P, 3 pins, pitch 2.54mm, size 8.12x6.5mm, drill diameter 1.2mm, pad diameter 2mm, http://www.xinyaelectronic.com/product/xy308-254, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Xinya +THT Terminal Block Xinya XY308-2.54-3P pitch 2.54mm size 8.12x6.5mm drill 1.2mm pad 2mm +0 +3 +3 +TerminalBlock +TerminalBlock_Xinya_XY308-2.54-4P_1x04_P2.54mm_Horizontal +Terminal Block Xinya XY308-2.54-4P, 4 pins, pitch 2.54mm, size 10.7x6.5mm, drill diameter 1.2mm, pad diameter 2mm, http://www.xinyaelectronic.com/product/xy308-254, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Xinya +THT Terminal Block Xinya XY308-2.54-4P pitch 2.54mm size 10.7x6.5mm drill 1.2mm pad 2mm +0 +4 +4 +TerminalBlock +TerminalBlock_Xinya_XY308-2.54-5P_1x05_P2.54mm_Horizontal +Terminal Block Xinya XY308-2.54-5P, 5 pins, pitch 2.54mm, size 13.2x6.5mm, drill diameter 1.2mm, pad diameter 2mm, http://www.xinyaelectronic.com/product/xy308-254, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Xinya +THT Terminal Block Xinya XY308-2.54-5P pitch 2.54mm size 13.2x6.5mm drill 1.2mm pad 2mm +0 +5 +5 +TerminalBlock +TerminalBlock_Xinya_XY308-2.54-6P_1x06_P2.54mm_Horizontal +Terminal Block Xinya XY308-2.54-6P, 6 pins, pitch 2.54mm, size 15.7x6.5mm, drill diameter 1.2mm, pad diameter 2mm, http://www.xinyaelectronic.com/product/xy308-254, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Xinya +THT Terminal Block Xinya XY308-2.54-6P pitch 2.54mm size 15.7x6.5mm drill 1.2mm pad 2mm +0 +6 +6 +TerminalBlock +TerminalBlock_Xinya_XY308-2.54-7P_1x07_P2.54mm_Horizontal +Terminal Block Xinya XY308-2.54-7P, 7 pins, pitch 2.54mm, size 18.3x6.5mm, drill diameter 1.2mm, pad diameter 2mm, http://www.xinyaelectronic.com/product/xy308-254, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Xinya +THT Terminal Block Xinya XY308-2.54-7P pitch 2.54mm size 18.3x6.5mm drill 1.2mm pad 2mm +0 +7 +7 +TerminalBlock +TerminalBlock_Xinya_XY308-2.54-8P_1x08_P2.54mm_Horizontal +Terminal Block Xinya XY308-2.54-8P, 8 pins, pitch 2.54mm, size 20.8x6.5mm, drill diameter 1.2mm, pad diameter 2mm, http://www.xinyaelectronic.com/product/xy308-254, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Xinya +THT Terminal Block Xinya XY308-2.54-8P pitch 2.54mm size 20.8x6.5mm drill 1.2mm pad 2mm +0 +8 +8 +TerminalBlock +TerminalBlock_Xinya_XY308-2.54-9P_1x09_P2.54mm_Horizontal +Terminal Block Xinya XY308-2.54-9P, 9 pins, pitch 2.54mm, size 23.4x6.5mm, drill diameter 1.2mm, pad diameter 2mm, http://www.xinyaelectronic.com/product/xy308-254, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Xinya +THT Terminal Block Xinya XY308-2.54-9P pitch 2.54mm size 23.4x6.5mm drill 1.2mm pad 2mm +0 +9 +9 +TerminalBlock +TerminalBlock_Xinya_XY308-2.54-10P_1x10_P2.54mm_Horizontal +Terminal Block Xinya XY308-2.54-10P, 10 pins, pitch 2.54mm, size 25.9x6.5mm, drill diameter 1.2mm, pad diameter 2mm, http://www.xinyaelectronic.com/product/xy308-254, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Xinya +THT Terminal Block Xinya XY308-2.54-10P pitch 2.54mm size 25.9x6.5mm drill 1.2mm pad 2mm +0 +10 +10 +TerminalBlock +TerminalBlock_Xinya_XY308-2.54-11P_1x11_P2.54mm_Horizontal +Terminal Block Xinya XY308-2.54-11P, 11 pins, pitch 2.54mm, size 28.4x6.5mm, drill diameter 1.2mm, pad diameter 2mm, http://www.xinyaelectronic.com/product/xy308-254, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Xinya +THT Terminal Block Xinya XY308-2.54-11P pitch 2.54mm size 28.4x6.5mm drill 1.2mm pad 2mm +0 +11 +11 +TerminalBlock +TerminalBlock_Xinya_XY308-2.54-12P_1x12_P2.54mm_Horizontal +Terminal Block Xinya XY308-2.54-12P, 12 pins, pitch 2.54mm, size 31x6.5mm, drill diameter 1.2mm, pad diameter 2mm, http://www.xinyaelectronic.com/product/xy308-254, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Xinya +THT Terminal Block Xinya XY308-2.54-12P pitch 2.54mm size 31x6.5mm drill 1.2mm pad 2mm +0 +12 +12 +TerminalBlock +TerminalBlock_Xinya_XY308-2.54-13P_1x13_P2.54mm_Horizontal +Terminal Block Xinya XY308-2.54-13P, 13 pins, pitch 2.54mm, size 33.5x6.5mm, drill diameter 1.2mm, pad diameter 2mm, http://www.xinyaelectronic.com/product/xy308-254, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Xinya +THT Terminal Block Xinya XY308-2.54-13P pitch 2.54mm size 33.5x6.5mm drill 1.2mm pad 2mm +0 +13 +13 +TerminalBlock +TerminalBlock_Xinya_XY308-2.54-14P_1x14_P2.54mm_Horizontal +Terminal Block Xinya XY308-2.54-14P, 14 pins, pitch 2.54mm, size 36.1x6.5mm, drill diameter 1.2mm, pad diameter 2mm, http://www.xinyaelectronic.com/product/xy308-254, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Xinya +THT Terminal Block Xinya XY308-2.54-14P pitch 2.54mm size 36.1x6.5mm drill 1.2mm pad 2mm +0 +14 +14 +TerminalBlock +TerminalBlock_Xinya_XY308-2.54-15P_1x15_P2.54mm_Horizontal +Terminal Block Xinya XY308-2.54-15P, 15 pins, pitch 2.54mm, size 38.6x6.5mm, drill diameter 1.2mm, pad diameter 2mm, http://www.xinyaelectronic.com/product/xy308-254, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Xinya +THT Terminal Block Xinya XY308-2.54-15P pitch 2.54mm size 38.6x6.5mm drill 1.2mm pad 2mm +0 +15 +15 +TerminalBlock +TerminalBlock_Xinya_XY308-2.54-16P_1x16_P2.54mm_Horizontal +Terminal Block Xinya XY308-2.54-16P, 16 pins, pitch 2.54mm, size 41.1x6.5mm, drill diameter 1.2mm, pad diameter 2mm, http://www.xinyaelectronic.com/product/xy308-254, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Xinya +THT Terminal Block Xinya XY308-2.54-16P pitch 2.54mm size 41.1x6.5mm drill 1.2mm pad 2mm +0 +16 +16 +TerminalBlock +TerminalBlock_Xinya_XY308-2.54-17P_1x17_P2.54mm_Horizontal +Terminal Block Xinya XY308-2.54-17P, 17 pins, pitch 2.54mm, size 43.7x6.5mm, drill diameter 1.2mm, pad diameter 2mm, http://www.xinyaelectronic.com/product/xy308-254, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Xinya +THT Terminal Block Xinya XY308-2.54-17P pitch 2.54mm size 43.7x6.5mm drill 1.2mm pad 2mm +0 +17 +17 +TerminalBlock +TerminalBlock_Xinya_XY308-2.54-18P_1x18_P2.54mm_Horizontal +Terminal Block Xinya XY308-2.54-18P, 18 pins, pitch 2.54mm, size 46.2x6.5mm, drill diameter 1.2mm, pad diameter 2mm, http://www.xinyaelectronic.com/product/xy308-254, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Xinya +THT Terminal Block Xinya XY308-2.54-18P pitch 2.54mm size 46.2x6.5mm drill 1.2mm pad 2mm +0 +18 +18 +TerminalBlock +TerminalBlock_Xinya_XY308-2.54-19P_1x19_P2.54mm_Horizontal +Terminal Block Xinya XY308-2.54-19P, 19 pins, pitch 2.54mm, size 48.8x6.5mm, drill diameter 1.2mm, pad diameter 2mm, http://www.xinyaelectronic.com/product/xy308-254, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Xinya +THT Terminal Block Xinya XY308-2.54-19P pitch 2.54mm size 48.8x6.5mm drill 1.2mm pad 2mm +0 +19 +19 +TerminalBlock +TerminalBlock_Xinya_XY308-2.54-20P_1x20_P2.54mm_Horizontal +Terminal Block Xinya XY308-2.54-20P, 20 pins, pitch 2.54mm, size 51.3x6.5mm, drill diameter 1.2mm, pad diameter 2mm, http://www.xinyaelectronic.com/product/xy308-254, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Xinya +THT Terminal Block Xinya XY308-2.54-20P pitch 2.54mm size 51.3x6.5mm drill 1.2mm pad 2mm +0 +20 +20 +TerminalBlock +TerminalBlock_Xinya_XY308-2.54-21P_1x21_P2.54mm_Horizontal +Terminal Block Xinya XY308-2.54-21P, 21 pins, pitch 2.54mm, size 53.8x6.5mm, drill diameter 1.2mm, pad diameter 2mm, http://www.xinyaelectronic.com/product/xy308-254, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Xinya +THT Terminal Block Xinya XY308-2.54-21P pitch 2.54mm size 53.8x6.5mm drill 1.2mm pad 2mm +0 +21 +21 +TerminalBlock +TerminalBlock_Xinya_XY308-2.54-22P_1x22_P2.54mm_Horizontal +Terminal Block Xinya XY308-2.54-22P, 22 pins, pitch 2.54mm, size 56.4x6.5mm, drill diameter 1.2mm, pad diameter 2mm, http://www.xinyaelectronic.com/product/xy308-254, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Xinya +THT Terminal Block Xinya XY308-2.54-22P pitch 2.54mm size 56.4x6.5mm drill 1.2mm pad 2mm +0 +22 +22 +TerminalBlock +TerminalBlock_Xinya_XY308-2.54-23P_1x23_P2.54mm_Horizontal +Terminal Block Xinya XY308-2.54-23P, 23 pins, pitch 2.54mm, size 58.9x6.5mm, drill diameter 1.2mm, pad diameter 2mm, http://www.xinyaelectronic.com/product/xy308-254, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Xinya +THT Terminal Block Xinya XY308-2.54-23P pitch 2.54mm size 58.9x6.5mm drill 1.2mm pad 2mm +0 +23 +23 +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 +TerminalBlock_bornier-8_P5.08mm +simple 8pin terminal block, pitch 5.08mm, revamped version of bornier8 +terminal block bornier8 +0 +8 +8 +TerminalBlock_4Ucon +TerminalBlock_4Ucon_1x02_P3.50mm_Horizontal +Terminal Block 4Ucon ItemNo. 19963, 2 pins, pitch 3.5mm, size 7.7x7mm, drill diameter 1.2mm, pad diameter 2.4mm, http://www.4uconnector.com/online/object/4udrawing/19963.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_4Ucon +THT Terminal Block 4Ucon ItemNo. 19963 pitch 3.5mm size 7.7x7mm 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, drill diameter 1.3mm, pad diameter 2.6mm, http://www.4uconnector.com/online/object/4udrawing/10693.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_4Ucon +THT Terminal Block 4Ucon ItemNo. 10693 vertical pitch 3.5mm size 8x8.3mm 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, drill diameter 1.2mm, pad diameter 2.4mm, http://www.4uconnector.com/online/object/4udrawing/20193.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_4Ucon +THT Terminal Block 4Ucon ItemNo. 20193 pitch 3.5mm size 11.2x7mm 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, drill diameter 1.3mm, pad diameter 2.6mm, http://www.4uconnector.com/online/object/4udrawing/10694.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_4Ucon +THT Terminal Block 4Ucon ItemNo. 10694 vertical pitch 3.5mm size 11.5x8.3mm 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, drill diameter 1.2mm, pad diameter 2.4mm, http://www.4uconnector.com/online/object/4udrawing/20001.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_4Ucon +THT Terminal Block 4Ucon ItemNo. 20001 pitch 3.5mm size 14.7x7mm 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, drill diameter 1.3mm, pad diameter 2.6mm, http://www.4uconnector.com/online/object/4udrawing/10695.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_4Ucon +THT Terminal Block 4Ucon ItemNo. 10695 vertical pitch 3.5mm size 15x8.3mm 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, drill diameter 1.2mm, pad diameter 2.4mm, http://www.4uconnector.com/online/object/4udrawing/20223.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_4Ucon +THT Terminal Block 4Ucon ItemNo. 20223 pitch 3.5mm size 18.2x7mm 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, drill diameter 1.3mm, pad diameter 2.6mm, http://www.4uconnector.com/online/object/4udrawing/10696.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_4Ucon +THT Terminal Block 4Ucon ItemNo. 10696 vertical pitch 3.5mm size 18.5x8.3mm 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, drill diameter 1.2mm, pad diameter 2.4mm, http://www.4uconnector.com/online/object/4udrawing/19964.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_4Ucon +THT Terminal Block 4Ucon ItemNo. 19964 pitch 3.5mm size 21.7x7mm 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, drill diameter 1.3mm, pad diameter 2.6mm, http://www.4uconnector.com/online/object/4udrawing/10697.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_4Ucon +THT Terminal Block 4Ucon ItemNo. 10697 vertical pitch 3.5mm size 22x8.3mm 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, drill diameter 1.2mm, pad diameter 2.4mm, http://www.4uconnector.com/online/object/4udrawing/10684.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_4Ucon +THT Terminal Block 4Ucon ItemNo. 10684 pitch 3.5mm size 25.2x7mm 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, drill diameter 1.3mm, pad diameter 2.6mm, http://www.4uconnector.com/online/object/4udrawing/10698.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_4Ucon +THT Terminal Block 4Ucon ItemNo. 10698 vertical pitch 3.5mm size 25.5x8.3mm 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, drill diameter 1.2mm, pad diameter 2.4mm, http://www.4uconnector.com/online/object/4udrawing/19965.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_4Ucon +THT Terminal Block 4Ucon ItemNo. 19965 pitch 3.5mm size 28.7x7mm 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, drill diameter 1.3mm, pad diameter 2.6mm, http://www.4uconnector.com/online/object/4udrawing/10699.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_4Ucon +THT Terminal Block 4Ucon ItemNo. 10699 vertical pitch 3.5mm size 29x8.3mm 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, drill diameter 1.2mm, pad diameter 2.4mm, http://www.4uconnector.com/online/object/4udrawing/10686.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_4Ucon +THT Terminal Block 4Ucon ItemNo. 10686 pitch 3.5mm size 32.2x7mm 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, drill diameter 1.3mm, pad diameter 2.6mm, http://www.4uconnector.com/online/object/4udrawing/10700.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_4Ucon +THT Terminal Block 4Ucon ItemNo. 10700 vertical pitch 3.5mm size 32.5x8.3mm 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, drill diameter 1.2mm, pad diameter 2.4mm, http://www.4uconnector.com/online/object/4udrawing/10687.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_4Ucon +THT Terminal Block 4Ucon ItemNo. 10687 pitch 3.5mm size 35.7x7mm 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, drill diameter 1.3mm, pad diameter 2.6mm, http://www.4uconnector.com/online/object/4udrawing/10701.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_4Ucon +THT Terminal Block 4Ucon ItemNo. 10701 vertical pitch 3.5mm size 36x8.3mm 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, drill diameter 1.2mm, pad diameter 2.4mm, http://www.4uconnector.com/online/object/4udrawing/10688.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_4Ucon +THT Terminal Block 4Ucon ItemNo. 10688 pitch 3.5mm size 39.2x7mm 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, drill diameter 1.3mm, pad diameter 2.6mm, http://www.4uconnector.com/online/object/4udrawing/10702.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_4Ucon +THT Terminal Block 4Ucon ItemNo. 10702 vertical pitch 3.5mm size 39.5x8.3mm 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, drill diameter 1.2mm, pad diameter 2.4mm, http://www.4uconnector.com/online/object/4udrawing/10689.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_4Ucon +THT Terminal Block 4Ucon ItemNo. 10689 pitch 3.5mm size 42.7x7mm 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, drill diameter 1.3mm, pad diameter 2.6mm, http://www.4uconnector.com/online/object/4udrawing/10703.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_4Ucon +THT Terminal Block 4Ucon ItemNo. 10703 vertical pitch 3.5mm size 43x8.3mm 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, drill diameter 1.2mm, pad diameter 2.4mm, http://www.4uconnector.com/online/object/4udrawing/10690.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_4Ucon +THT Terminal Block 4Ucon ItemNo. 10690 pitch 3.5mm size 46.2x7mm 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, drill diameter 1.3mm, pad diameter 2.6mm, http://www.4uconnector.com/online/object/4udrawing/10704.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_4Ucon +THT Terminal Block 4Ucon ItemNo. 10704 vertical pitch 3.5mm size 46.5x8.3mm 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, drill diameter 1.2mm, pad diameter 2.4mm, http://www.4uconnector.com/online/object/4udrawing/10691.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_4Ucon +THT Terminal Block 4Ucon ItemNo. 10691 pitch 3.5mm size 49.7x7mm 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, drill diameter 1.3mm, pad diameter 2.6mm, http://www.4uconnector.com/online/object/4udrawing/10705.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_4Ucon +THT Terminal Block 4Ucon ItemNo. 10705 vertical pitch 3.5mm size 50x8.3mm 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, drill diameter 1.2mm, pad diameter 2.4mm, http://www.4uconnector.com/online/object/4udrawing/10692.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_4Ucon +THT Terminal Block 4Ucon ItemNo. 10692 pitch 3.5mm size 53.2x7mm 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, drill diameter 1.3mm, pad diameter 2.6mm, http://www.4uconnector.com/online/object/4udrawing/10706.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_4Ucon +THT Terminal Block 4Ucon ItemNo. 10706 vertical pitch 3.5mm size 53.5x8.3mm drill 1.3mm pad 2.6mm +0 +15 +15 +TerminalBlock_Altech +Altech_AK100_1x02_P5.00mm +Terminal block Altech AK100, 2 pins, pitch 5mm, size 10x9mm, drill diameter 1.3mm, pad diameter 3mm, https://www.altechcorp.com/PDFS/PCBMETRC.PDF#page=3, generated with kicad-footprint-generator TerminalBlock_Altech +THT Terminal block Altech AK100 pitch 5mm size 10x9mm drill 1.3mm pad 3mm +0 +2 +2 +TerminalBlock_Altech +Altech_AK100_1x03_P5.00mm +Terminal block Altech AK100, 3 pins, pitch 5mm, size 15x9mm, drill diameter 1.3mm, pad diameter 3mm, https://www.altechcorp.com/PDFS/PCBMETRC.PDF#page=3, generated with kicad-footprint-generator TerminalBlock_Altech +THT Terminal block Altech AK100 pitch 5mm size 15x9mm drill 1.3mm pad 3mm +0 +3 +3 +TerminalBlock_Altech +Altech_AK100_1x04_P5.00mm +Terminal block Altech AK100, 4 pins, pitch 5mm, size 20x9mm, drill diameter 1.3mm, pad diameter 3mm, https://www.altechcorp.com/PDFS/PCBMETRC.PDF#page=3, generated with kicad-footprint-generator TerminalBlock_Altech +THT Terminal block Altech AK100 pitch 5mm size 20x9mm drill 1.3mm pad 3mm +0 +4 +4 +TerminalBlock_Altech +Altech_AK100_1x05_P5.00mm +Terminal block Altech AK100, 5 pins, pitch 5mm, size 25x9mm, drill diameter 1.3mm, pad diameter 3mm, https://www.altechcorp.com/PDFS/PCBMETRC.PDF#page=3, generated with kicad-footprint-generator TerminalBlock_Altech +THT Terminal block Altech AK100 pitch 5mm size 25x9mm drill 1.3mm pad 3mm +0 +5 +5 +TerminalBlock_Altech +Altech_AK100_1x06_P5.00mm +Terminal block Altech AK100, 6 pins, pitch 5mm, size 30x9mm, drill diameter 1.3mm, pad diameter 3mm, https://www.altechcorp.com/PDFS/PCBMETRC.PDF#page=3, generated with kicad-footprint-generator TerminalBlock_Altech +THT Terminal block Altech AK100 pitch 5mm size 30x9mm drill 1.3mm pad 3mm +0 +6 +6 +TerminalBlock_Altech +Altech_AK100_1x07_P5.00mm +Terminal block Altech AK100, 7 pins, pitch 5mm, size 35x9mm, drill diameter 1.3mm, pad diameter 3mm, https://www.altechcorp.com/PDFS/PCBMETRC.PDF#page=3, generated with kicad-footprint-generator TerminalBlock_Altech +THT Terminal block Altech AK100 pitch 5mm size 35x9mm drill 1.3mm pad 3mm +0 +7 +7 +TerminalBlock_Altech +Altech_AK100_1x08_P5.00mm +Terminal block Altech AK100, 8 pins, pitch 5mm, size 40x9mm, drill diameter 1.3mm, pad diameter 3mm, https://www.altechcorp.com/PDFS/PCBMETRC.PDF#page=3, generated with kicad-footprint-generator TerminalBlock_Altech +THT Terminal block Altech AK100 pitch 5mm size 40x9mm drill 1.3mm pad 3mm +0 +8 +8 +TerminalBlock_Altech +Altech_AK100_1x09_P5.00mm +Terminal block Altech AK100, 9 pins, pitch 5mm, size 45x9mm, drill diameter 1.3mm, pad diameter 3mm, https://www.altechcorp.com/PDFS/PCBMETRC.PDF#page=3, generated with kicad-footprint-generator TerminalBlock_Altech +THT Terminal block Altech AK100 pitch 5mm size 45x9mm drill 1.3mm pad 3mm +0 +9 +9 +TerminalBlock_Altech +Altech_AK100_1x10_P5.00mm +Terminal block Altech AK100, 10 pins, pitch 5mm, size 50x9mm, drill diameter 1.3mm, pad diameter 3mm, https://www.altechcorp.com/PDFS/PCBMETRC.PDF#page=3, generated with kicad-footprint-generator TerminalBlock_Altech +THT Terminal block Altech AK100 pitch 5mm size 50x9mm drill 1.3mm pad 3mm +0 +10 +10 +TerminalBlock_Altech +Altech_AK100_1x11_P5.00mm +Terminal block Altech AK100, 11 pins, pitch 5mm, size 55x9mm, drill diameter 1.3mm, pad diameter 3mm, https://www.altechcorp.com/PDFS/PCBMETRC.PDF#page=3, generated with kicad-footprint-generator TerminalBlock_Altech +THT Terminal block Altech AK100 pitch 5mm size 55x9mm drill 1.3mm pad 3mm +0 +11 +11 +TerminalBlock_Altech +Altech_AK100_1x12_P5.00mm +Terminal block Altech AK100, 12 pins, pitch 5mm, size 60x9mm, drill diameter 1.3mm, pad diameter 3mm, https://www.altechcorp.com/PDFS/PCBMETRC.PDF#page=3, generated with kicad-footprint-generator TerminalBlock_Altech +THT Terminal block Altech AK100 pitch 5mm size 60x9mm drill 1.3mm pad 3mm +0 +12 +12 +TerminalBlock_Altech +Altech_AK100_1x13_P5.00mm +Terminal block Altech AK100, 13 pins, pitch 5mm, size 65x9mm, drill diameter 1.3mm, pad diameter 3mm, https://www.altechcorp.com/PDFS/PCBMETRC.PDF#page=3, generated with kicad-footprint-generator TerminalBlock_Altech +THT Terminal block Altech AK100 pitch 5mm size 65x9mm drill 1.3mm pad 3mm +0 +13 +13 +TerminalBlock_Altech +Altech_AK100_1x14_P5.00mm +Terminal block Altech AK100, 14 pins, pitch 5mm, size 70x9mm, drill diameter 1.3mm, pad diameter 3mm, https://www.altechcorp.com/PDFS/PCBMETRC.PDF#page=3, generated with kicad-footprint-generator TerminalBlock_Altech +THT Terminal block Altech AK100 pitch 5mm size 70x9mm drill 1.3mm pad 3mm +0 +14 +14 +TerminalBlock_Altech +Altech_AK100_1x15_P5.00mm +Terminal block Altech AK100, 15 pins, pitch 5mm, size 75x9mm, drill diameter 1.3mm, pad diameter 3mm, https://www.altechcorp.com/PDFS/PCBMETRC.PDF#page=3, generated with kicad-footprint-generator TerminalBlock_Altech +THT Terminal block Altech AK100 pitch 5mm size 75x9mm drill 1.3mm pad 3mm +0 +15 +15 +TerminalBlock_Altech +Altech_AK100_1x16_P5.00mm +Terminal block Altech AK100, 16 pins, pitch 5mm, size 80x9mm, drill diameter 1.3mm, pad diameter 3mm, https://www.altechcorp.com/PDFS/PCBMETRC.PDF#page=3, generated with kicad-footprint-generator TerminalBlock_Altech +THT Terminal block Altech AK100 pitch 5mm size 80x9mm drill 1.3mm pad 3mm +0 +16 +16 +TerminalBlock_Altech +Altech_AK100_1x17_P5.00mm +Terminal block Altech AK100, 17 pins, pitch 5mm, size 85x9mm, drill diameter 1.3mm, pad diameter 3mm, https://www.altechcorp.com/PDFS/PCBMETRC.PDF#page=3, generated with kicad-footprint-generator TerminalBlock_Altech +THT Terminal block Altech AK100 pitch 5mm size 85x9mm drill 1.3mm pad 3mm +0 +17 +17 +TerminalBlock_Altech +Altech_AK100_1x18_P5.00mm +Terminal block Altech AK100, 18 pins, pitch 5mm, size 90x9mm, drill diameter 1.3mm, pad diameter 3mm, https://www.altechcorp.com/PDFS/PCBMETRC.PDF#page=3, generated with kicad-footprint-generator TerminalBlock_Altech +THT Terminal block Altech AK100 pitch 5mm size 90x9mm drill 1.3mm pad 3mm +0 +18 +18 +TerminalBlock_Altech +Altech_AK100_1x19_P5.00mm +Terminal block Altech AK100, 19 pins, pitch 5mm, size 95x9mm, drill diameter 1.3mm, pad diameter 3mm, https://www.altechcorp.com/PDFS/PCBMETRC.PDF#page=3, generated with kicad-footprint-generator TerminalBlock_Altech +THT Terminal block Altech AK100 pitch 5mm size 95x9mm drill 1.3mm pad 3mm +0 +19 +19 +TerminalBlock_Altech +Altech_AK100_1x20_P5.00mm +Terminal block Altech AK100, 20 pins, pitch 5mm, size 100x9mm, drill diameter 1.3mm, pad diameter 3mm, https://www.altechcorp.com/PDFS/PCBMETRC.PDF#page=3, generated with kicad-footprint-generator TerminalBlock_Altech +THT Terminal block Altech AK100 pitch 5mm size 100x9mm drill 1.3mm pad 3mm +0 +20 +20 +TerminalBlock_Altech +Altech_AK100_1x21_P5.00mm +Terminal block Altech AK100, 21 pins, pitch 5mm, size 105x9mm, drill diameter 1.3mm, pad diameter 3mm, https://www.altechcorp.com/PDFS/PCBMETRC.PDF#page=3, generated with kicad-footprint-generator TerminalBlock_Altech +THT Terminal block Altech AK100 pitch 5mm size 105x9mm drill 1.3mm pad 3mm +0 +21 +21 +TerminalBlock_Altech +Altech_AK100_1x22_P5.00mm +Terminal block Altech AK100, 22 pins, pitch 5mm, size 110x9mm, drill diameter 1.3mm, pad diameter 3mm, https://www.altechcorp.com/PDFS/PCBMETRC.PDF#page=3, generated with kicad-footprint-generator TerminalBlock_Altech +THT Terminal block Altech AK100 pitch 5mm size 110x9mm drill 1.3mm pad 3mm +0 +22 +22 +TerminalBlock_Altech +Altech_AK100_1x23_P5.00mm +Terminal block Altech AK100, 23 pins, pitch 5mm, size 115x9mm, drill diameter 1.3mm, pad diameter 3mm, https://www.altechcorp.com/PDFS/PCBMETRC.PDF#page=3, generated with kicad-footprint-generator TerminalBlock_Altech +THT Terminal block Altech AK100 pitch 5mm size 115x9mm drill 1.3mm pad 3mm +0 +23 +23 +TerminalBlock_Altech +Altech_AK100_1x24_P5.00mm +Terminal block Altech AK100, 24 pins, pitch 5mm, size 120x9mm, drill diameter 1.3mm, pad diameter 3mm, https://www.altechcorp.com/PDFS/PCBMETRC.PDF#page=3, generated with kicad-footprint-generator TerminalBlock_Altech +THT Terminal block Altech AK100 pitch 5mm size 120x9mm drill 1.3mm pad 3mm +0 +24 +24 +TerminalBlock_Altech +Altech_AK300_1x02_P5.00mm_45-Degree +Terminal block Altech AK300, 45Degree (cable under 45degree), 2 pins, pitch 5mm, size 10x12.5mm, drill diameter 1.3mm, pad diameter 3mm, https://www.altechcorp.com/PDFS/PCBMETRC.PDF#page=5, generated with kicad-footprint-generator TerminalBlock_Altech +THT Terminal block Altech AK300 45Degree pitch 5mm size 10x12.5mm drill 1.3mm pad 3mm +0 +2 +2 +TerminalBlock_Altech +Altech_AK300_1x03_P5.00mm_45-Degree +Terminal block Altech AK300, 45Degree (cable under 45degree), 3 pins, pitch 5mm, size 15x12.5mm, drill diameter 1.3mm, pad diameter 3mm, https://www.altechcorp.com/PDFS/PCBMETRC.PDF#page=5, generated with kicad-footprint-generator TerminalBlock_Altech +THT Terminal block Altech AK300 45Degree pitch 5mm size 15x12.5mm drill 1.3mm pad 3mm +0 +3 +3 +TerminalBlock_Altech +Altech_AK300_1x04_P5.00mm_45-Degree +Terminal block Altech AK300, 45Degree (cable under 45degree), 4 pins, pitch 5mm, size 20x12.5mm, drill diameter 1.3mm, pad diameter 3mm, https://www.altechcorp.com/PDFS/PCBMETRC.PDF#page=5, generated with kicad-footprint-generator TerminalBlock_Altech +THT Terminal block Altech AK300 45Degree pitch 5mm size 20x12.5mm drill 1.3mm pad 3mm +0 +4 +4 +TerminalBlock_Altech +Altech_AK300_1x05_P5.00mm_45-Degree +Terminal block Altech AK300, 45Degree (cable under 45degree), 5 pins, pitch 5mm, size 25x12.5mm, drill diameter 1.3mm, pad diameter 3mm, https://www.altechcorp.com/PDFS/PCBMETRC.PDF#page=5, generated with kicad-footprint-generator TerminalBlock_Altech +THT Terminal block Altech AK300 45Degree pitch 5mm size 25x12.5mm drill 1.3mm pad 3mm +0 +5 +5 +TerminalBlock_Altech +Altech_AK300_1x06_P5.00mm_45-Degree +Terminal block Altech AK300, 45Degree (cable under 45degree), 6 pins, pitch 5mm, size 30x12.5mm, drill diameter 1.3mm, pad diameter 3mm, https://www.altechcorp.com/PDFS/PCBMETRC.PDF#page=5, generated with kicad-footprint-generator TerminalBlock_Altech +THT Terminal block Altech AK300 45Degree pitch 5mm size 30x12.5mm drill 1.3mm pad 3mm +0 +6 +6 +TerminalBlock_Altech +Altech_AK300_1x07_P5.00mm_45-Degree +Terminal block Altech AK300, 45Degree (cable under 45degree), 7 pins, pitch 5mm, size 35x12.5mm, drill diameter 1.3mm, pad diameter 3mm, https://www.altechcorp.com/PDFS/PCBMETRC.PDF#page=5, generated with kicad-footprint-generator TerminalBlock_Altech +THT Terminal block Altech AK300 45Degree pitch 5mm size 35x12.5mm drill 1.3mm pad 3mm +0 +7 +7 +TerminalBlock_Altech +Altech_AK300_1x08_P5.00mm_45-Degree +Terminal block Altech AK300, 45Degree (cable under 45degree), 8 pins, pitch 5mm, size 40x12.5mm, drill diameter 1.3mm, pad diameter 3mm, https://www.altechcorp.com/PDFS/PCBMETRC.PDF#page=5, generated with kicad-footprint-generator TerminalBlock_Altech +THT Terminal block Altech AK300 45Degree pitch 5mm size 40x12.5mm drill 1.3mm pad 3mm +0 +8 +8 +TerminalBlock_Altech +Altech_AK300_1x09_P5.00mm_45-Degree +Terminal block Altech AK300, 45Degree (cable under 45degree), 9 pins, pitch 5mm, size 45x12.5mm, drill diameter 1.3mm, pad diameter 3mm, https://www.altechcorp.com/PDFS/PCBMETRC.PDF#page=5, generated with kicad-footprint-generator TerminalBlock_Altech +THT Terminal block Altech AK300 45Degree pitch 5mm size 45x12.5mm drill 1.3mm pad 3mm +0 +9 +9 +TerminalBlock_Altech +Altech_AK300_1x10_P5.00mm_45-Degree +Terminal block Altech AK300, 45Degree (cable under 45degree), 10 pins, pitch 5mm, size 50x12.5mm, drill diameter 1.3mm, pad diameter 3mm, https://www.altechcorp.com/PDFS/PCBMETRC.PDF#page=5, generated with kicad-footprint-generator TerminalBlock_Altech +THT Terminal block Altech AK300 45Degree pitch 5mm size 50x12.5mm drill 1.3mm pad 3mm +0 +10 +10 +TerminalBlock_Altech +Altech_AK300_1x11_P5.00mm_45-Degree +Terminal block Altech AK300, 45Degree (cable under 45degree), 11 pins, pitch 5mm, size 55x12.5mm, drill diameter 1.3mm, pad diameter 3mm, https://www.altechcorp.com/PDFS/PCBMETRC.PDF#page=5, generated with kicad-footprint-generator TerminalBlock_Altech +THT Terminal block Altech AK300 45Degree pitch 5mm size 55x12.5mm drill 1.3mm pad 3mm +0 +11 +11 +TerminalBlock_Altech +Altech_AK300_1x12_P5.00mm_45-Degree +Terminal block Altech AK300, 45Degree (cable under 45degree), 12 pins, pitch 5mm, size 60x12.5mm, drill diameter 1.3mm, pad diameter 3mm, https://www.altechcorp.com/PDFS/PCBMETRC.PDF#page=5, generated with kicad-footprint-generator TerminalBlock_Altech +THT Terminal block Altech AK300 45Degree pitch 5mm size 60x12.5mm drill 1.3mm pad 3mm +0 +12 +12 +TerminalBlock_Altech +Altech_AK300_1x13_P5.00mm_45-Degree +Terminal block Altech AK300, 45Degree (cable under 45degree), 13 pins, pitch 5mm, size 65x12.5mm, drill diameter 1.3mm, pad diameter 3mm, https://www.altechcorp.com/PDFS/PCBMETRC.PDF#page=5, generated with kicad-footprint-generator TerminalBlock_Altech +THT Terminal block Altech AK300 45Degree pitch 5mm size 65x12.5mm drill 1.3mm pad 3mm +0 +13 +13 +TerminalBlock_Altech +Altech_AK300_1x14_P5.00mm_45-Degree +Terminal block Altech AK300, 45Degree (cable under 45degree), 14 pins, pitch 5mm, size 70x12.5mm, drill diameter 1.3mm, pad diameter 3mm, https://www.altechcorp.com/PDFS/PCBMETRC.PDF#page=5, generated with kicad-footprint-generator TerminalBlock_Altech +THT Terminal block Altech AK300 45Degree pitch 5mm size 70x12.5mm drill 1.3mm pad 3mm +0 +14 +14 +TerminalBlock_Altech +Altech_AK300_1x15_P5.00mm_45-Degree +Terminal block Altech AK300, 45Degree (cable under 45degree), 15 pins, pitch 5mm, size 75x12.5mm, drill diameter 1.3mm, pad diameter 3mm, https://www.altechcorp.com/PDFS/PCBMETRC.PDF#page=5, generated with kicad-footprint-generator TerminalBlock_Altech +THT Terminal block Altech AK300 45Degree pitch 5mm size 75x12.5mm drill 1.3mm pad 3mm +0 +15 +15 +TerminalBlock_Altech +Altech_AK300_1x16_P5.00mm_45-Degree +Terminal block Altech AK300, 45Degree (cable under 45degree), 16 pins, pitch 5mm, size 80x12.5mm, drill diameter 1.3mm, pad diameter 3mm, https://www.altechcorp.com/PDFS/PCBMETRC.PDF#page=5, generated with kicad-footprint-generator TerminalBlock_Altech +THT Terminal block Altech AK300 45Degree pitch 5mm size 80x12.5mm drill 1.3mm pad 3mm +0 +16 +16 +TerminalBlock_Altech +Altech_AK300_1x17_P5.00mm_45-Degree +Terminal block Altech AK300, 45Degree (cable under 45degree), 17 pins, pitch 5mm, size 85x12.5mm, drill diameter 1.3mm, pad diameter 3mm, https://www.altechcorp.com/PDFS/PCBMETRC.PDF#page=5, generated with kicad-footprint-generator TerminalBlock_Altech +THT Terminal block Altech AK300 45Degree pitch 5mm size 85x12.5mm drill 1.3mm pad 3mm +0 +17 +17 +TerminalBlock_Altech +Altech_AK300_1x18_P5.00mm_45-Degree +Terminal block Altech AK300, 45Degree (cable under 45degree), 18 pins, pitch 5mm, size 90x12.5mm, drill diameter 1.3mm, pad diameter 3mm, https://www.altechcorp.com/PDFS/PCBMETRC.PDF#page=5, generated with kicad-footprint-generator TerminalBlock_Altech +THT Terminal block Altech AK300 45Degree pitch 5mm size 90x12.5mm drill 1.3mm pad 3mm +0 +18 +18 +TerminalBlock_Altech +Altech_AK300_1x19_P5.00mm_45-Degree +Terminal block Altech AK300, 45Degree (cable under 45degree), 19 pins, pitch 5mm, size 95x12.5mm, drill diameter 1.3mm, pad diameter 3mm, https://www.altechcorp.com/PDFS/PCBMETRC.PDF#page=5, generated with kicad-footprint-generator TerminalBlock_Altech +THT Terminal block Altech AK300 45Degree pitch 5mm size 95x12.5mm drill 1.3mm pad 3mm +0 +19 +19 +TerminalBlock_Altech +Altech_AK300_1x20_P5.00mm_45-Degree +Terminal block Altech AK300, 45Degree (cable under 45degree), 20 pins, pitch 5mm, size 100x12.5mm, drill diameter 1.3mm, pad diameter 3mm, https://www.altechcorp.com/PDFS/PCBMETRC.PDF#page=5, generated with kicad-footprint-generator TerminalBlock_Altech +THT Terminal block Altech AK300 45Degree pitch 5mm size 100x12.5mm drill 1.3mm pad 3mm +0 +20 +20 +TerminalBlock_Altech +Altech_AK300_1x21_P5.00mm_45-Degree +Terminal block Altech AK300, 45Degree (cable under 45degree), 21 pins, pitch 5mm, size 105x12.5mm, drill diameter 1.3mm, pad diameter 3mm, https://www.altechcorp.com/PDFS/PCBMETRC.PDF#page=5, generated with kicad-footprint-generator TerminalBlock_Altech +THT Terminal block Altech AK300 45Degree pitch 5mm size 105x12.5mm drill 1.3mm pad 3mm +0 +21 +21 +TerminalBlock_Altech +Altech_AK300_1x22_P5.00mm_45-Degree +Terminal block Altech AK300, 45Degree (cable under 45degree), 22 pins, pitch 5mm, size 110x12.5mm, drill diameter 1.3mm, pad diameter 3mm, https://www.altechcorp.com/PDFS/PCBMETRC.PDF#page=5, generated with kicad-footprint-generator TerminalBlock_Altech +THT Terminal block Altech AK300 45Degree pitch 5mm size 110x12.5mm drill 1.3mm pad 3mm +0 +22 +22 +TerminalBlock_Altech +Altech_AK300_1x23_P5.00mm_45-Degree +Terminal block Altech AK300, 45Degree (cable under 45degree), 23 pins, pitch 5mm, size 115x12.5mm, drill diameter 1.3mm, pad diameter 3mm, https://www.altechcorp.com/PDFS/PCBMETRC.PDF#page=5, generated with kicad-footprint-generator TerminalBlock_Altech +THT Terminal block Altech AK300 45Degree pitch 5mm size 115x12.5mm drill 1.3mm pad 3mm +0 +23 +23 +TerminalBlock_Altech +Altech_AK300_1x24_P5.00mm_45-Degree +Terminal block Altech AK300, 45Degree (cable under 45degree), 24 pins, pitch 5mm, size 120x12.5mm, drill diameter 1.3mm, pad diameter 3mm, https://www.altechcorp.com/PDFS/PCBMETRC.PDF#page=5, generated with kicad-footprint-generator TerminalBlock_Altech +THT Terminal block Altech AK300 45Degree pitch 5mm size 120x12.5mm drill 1.3mm pad 3mm +0 +24 +24 +TerminalBlock_CUI +TerminalBlock_CUI_TB007-508-02_1x02_P5.08mm_Horizontal +Terminal Block CUI TB007-508-02, 2 pins, pitch 5.08mm, size 10.8x10.2mm, drill diameter 1.6mm, pad diameter 2.4mm, https://www.cuidevices.com/product/resource/tb007-508.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/scripts/TerminalBlock_CUI +THT Terminal Block CUI TB007-508-02 pitch 5.08mm size 10.8x10.2mm drill 1.6mm pad 2.4mm +0 +2 +2 +TerminalBlock_CUI +TerminalBlock_CUI_TB007-508-03_1x03_P5.08mm_Horizontal +Terminal Block CUI TB007-508-03, 3 pins, pitch 5.08mm, size 15.8x10.2mm, drill diameter 1.6mm, pad diameter 2.4mm, https://www.cuidevices.com/product/resource/tb007-508.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/scripts/TerminalBlock_CUI +THT Terminal Block CUI TB007-508-03 pitch 5.08mm size 15.8x10.2mm drill 1.6mm pad 2.4mm +0 +3 +3 +TerminalBlock_CUI +TerminalBlock_CUI_TB007-508-04_1x04_P5.08mm_Horizontal +Terminal Block CUI TB007-508-04, 4 pins, pitch 5.08mm, size 20.9x10.2mm, drill diameter 1.6mm, pad diameter 2.4mm, https://www.cuidevices.com/product/resource/tb007-508.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/scripts/TerminalBlock_CUI +THT Terminal Block CUI TB007-508-04 pitch 5.08mm size 20.9x10.2mm drill 1.6mm pad 2.4mm +0 +4 +4 +TerminalBlock_CUI +TerminalBlock_CUI_TB007-508-05_1x05_P5.08mm_Horizontal +Terminal Block CUI TB007-508-05, 5 pins, pitch 5.08mm, size 26x10.2mm, drill diameter 1.6mm, pad diameter 2.4mm, https://www.cuidevices.com/product/resource/tb007-508.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/scripts/TerminalBlock_CUI +THT Terminal Block CUI TB007-508-05 pitch 5.08mm size 26x10.2mm drill 1.6mm pad 2.4mm +0 +5 +5 +TerminalBlock_CUI +TerminalBlock_CUI_TB007-508-06_1x06_P5.08mm_Horizontal +Terminal Block CUI TB007-508-06, 6 pins, pitch 5.08mm, size 31.1x10.2mm, drill diameter 1.6mm, pad diameter 2.4mm, https://www.cuidevices.com/product/resource/tb007-508.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/scripts/TerminalBlock_CUI +THT Terminal Block CUI TB007-508-06 pitch 5.08mm size 31.1x10.2mm drill 1.6mm pad 2.4mm +0 +6 +6 +TerminalBlock_CUI +TerminalBlock_CUI_TB007-508-07_1x07_P5.08mm_Horizontal +Terminal Block CUI TB007-508-07, 7 pins, pitch 5.08mm, size 36.2x10.2mm, drill diameter 1.6mm, pad diameter 2.4mm, https://www.cuidevices.com/product/resource/tb007-508.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/scripts/TerminalBlock_CUI +THT Terminal Block CUI TB007-508-07 pitch 5.08mm size 36.2x10.2mm drill 1.6mm pad 2.4mm +0 +7 +7 +TerminalBlock_CUI +TerminalBlock_CUI_TB007-508-08_1x08_P5.08mm_Horizontal +Terminal Block CUI TB007-508-08, 8 pins, pitch 5.08mm, size 41.2x10.2mm, drill diameter 1.6mm, pad diameter 2.4mm, https://www.cuidevices.com/product/resource/tb007-508.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/scripts/TerminalBlock_CUI +THT Terminal Block CUI TB007-508-08 pitch 5.08mm size 41.2x10.2mm drill 1.6mm pad 2.4mm +0 +8 +8 +TerminalBlock_CUI +TerminalBlock_CUI_TB007-508-09_1x09_P5.08mm_Horizontal +Terminal Block CUI TB007-508-09, 9 pins, pitch 5.08mm, size 46.3x10.2mm, drill diameter 1.6mm, pad diameter 2.4mm, https://www.cuidevices.com/product/resource/tb007-508.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/scripts/TerminalBlock_CUI +THT Terminal Block CUI TB007-508-09 pitch 5.08mm size 46.3x10.2mm drill 1.6mm pad 2.4mm +0 +9 +9 +TerminalBlock_CUI +TerminalBlock_CUI_TB007-508-10_1x10_P5.08mm_Horizontal +Terminal Block CUI TB007-508-10, 10 pins, pitch 5.08mm, size 51.4x10.2mm, drill diameter 1.6mm, pad diameter 2.4mm, https://www.cuidevices.com/product/resource/tb007-508.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/scripts/TerminalBlock_CUI +THT Terminal Block CUI TB007-508-10 pitch 5.08mm size 51.4x10.2mm drill 1.6mm pad 2.4mm +0 +10 +10 +TerminalBlock_CUI +TerminalBlock_CUI_TB007-508-11_1x11_P5.08mm_Horizontal +Terminal Block CUI TB007-508-11, 11 pins, pitch 5.08mm, size 56.5x10.2mm, drill diameter 1.6mm, pad diameter 2.4mm, https://www.cuidevices.com/product/resource/tb007-508.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/scripts/TerminalBlock_CUI +THT Terminal Block CUI TB007-508-11 pitch 5.08mm size 56.5x10.2mm drill 1.6mm pad 2.4mm +0 +11 +11 +TerminalBlock_CUI +TerminalBlock_CUI_TB007-508-12_1x12_P5.08mm_Horizontal +Terminal Block CUI TB007-508-12, 12 pins, pitch 5.08mm, size 61.6x10.2mm, drill diameter 1.6mm, pad diameter 2.4mm, https://www.cuidevices.com/product/resource/tb007-508.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/scripts/TerminalBlock_CUI +THT Terminal Block CUI TB007-508-12 pitch 5.08mm size 61.6x10.2mm drill 1.6mm pad 2.4mm +0 +12 +12 +TerminalBlock_CUI +TerminalBlock_CUI_TB007-508-13_1x13_P5.08mm_Horizontal +Terminal Block CUI TB007-508-13, 13 pins, pitch 5.08mm, size 66.6x10.2mm, drill diameter 1.6mm, pad diameter 2.4mm, https://www.cuidevices.com/product/resource/tb007-508.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/scripts/TerminalBlock_CUI +THT Terminal Block CUI TB007-508-13 pitch 5.08mm size 66.6x10.2mm drill 1.6mm pad 2.4mm +0 +13 +13 +TerminalBlock_CUI +TerminalBlock_CUI_TB007-508-14_1x14_P5.08mm_Horizontal +Terminal Block CUI TB007-508-14, 14 pins, pitch 5.08mm, size 71.7x10.2mm, drill diameter 1.6mm, pad diameter 2.4mm, https://www.cuidevices.com/product/resource/tb007-508.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/scripts/TerminalBlock_CUI +THT Terminal Block CUI TB007-508-14 pitch 5.08mm size 71.7x10.2mm drill 1.6mm pad 2.4mm +0 +14 +14 +TerminalBlock_CUI +TerminalBlock_CUI_TB007-508-15_1x15_P5.08mm_Horizontal +Terminal Block CUI TB007-508-15, 15 pins, pitch 5.08mm, size 76.8x10.2mm, drill diameter 1.6mm, pad diameter 2.4mm, https://www.cuidevices.com/product/resource/tb007-508.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/scripts/TerminalBlock_CUI +THT Terminal Block CUI TB007-508-15 pitch 5.08mm size 76.8x10.2mm drill 1.6mm pad 2.4mm +0 +15 +15 +TerminalBlock_CUI +TerminalBlock_CUI_TB007-508-16_1x16_P5.08mm_Horizontal +Terminal Block CUI TB007-508-16, 16 pins, pitch 5.08mm, size 81.9x10.2mm, drill diameter 1.6mm, pad diameter 2.4mm, https://www.cuidevices.com/product/resource/tb007-508.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/scripts/TerminalBlock_CUI +THT Terminal Block CUI TB007-508-16 pitch 5.08mm size 81.9x10.2mm drill 1.6mm pad 2.4mm +0 +16 +16 +TerminalBlock_CUI +TerminalBlock_CUI_TB007-508-17_1x17_P5.08mm_Horizontal +Terminal Block CUI TB007-508-17, 17 pins, pitch 5.08mm, size 87x10.2mm, drill diameter 1.6mm, pad diameter 2.4mm, https://www.cuidevices.com/product/resource/tb007-508.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/scripts/TerminalBlock_CUI +THT Terminal Block CUI TB007-508-17 pitch 5.08mm size 87x10.2mm drill 1.6mm pad 2.4mm +0 +17 +17 +TerminalBlock_CUI +TerminalBlock_CUI_TB007-508-18_1x18_P5.08mm_Horizontal +Terminal Block CUI TB007-508-18, 18 pins, pitch 5.08mm, size 92x10.2mm, drill diameter 1.6mm, pad diameter 2.4mm, https://www.cuidevices.com/product/resource/tb007-508.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/scripts/TerminalBlock_CUI +THT Terminal Block CUI TB007-508-18 pitch 5.08mm size 92x10.2mm drill 1.6mm pad 2.4mm +0 +18 +18 +TerminalBlock_CUI +TerminalBlock_CUI_TB007-508-19_1x19_P5.08mm_Horizontal +Terminal Block CUI TB007-508-19, 19 pins, pitch 5.08mm, size 97.1x10.2mm, drill diameter 1.6mm, pad diameter 2.4mm, https://www.cuidevices.com/product/resource/tb007-508.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/scripts/TerminalBlock_CUI +THT Terminal Block CUI TB007-508-19 pitch 5.08mm size 97.1x10.2mm drill 1.6mm pad 2.4mm +0 +19 +19 +TerminalBlock_CUI +TerminalBlock_CUI_TB007-508-20_1x20_P5.08mm_Horizontal +Terminal Block CUI TB007-508-20, 20 pins, pitch 5.08mm, size 102x10.2mm, drill diameter 1.6mm, pad diameter 2.4mm, https://www.cuidevices.com/product/resource/tb007-508.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/scripts/TerminalBlock_CUI +THT Terminal Block CUI TB007-508-20 pitch 5.08mm size 102x10.2mm drill 1.6mm pad 2.4mm +0 +20 +20 +TerminalBlock_CUI +TerminalBlock_CUI_TB007-508-21_1x21_P5.08mm_Horizontal +Terminal Block CUI TB007-508-21, 21 pins, pitch 5.08mm, size 107x10.2mm, drill diameter 1.6mm, pad diameter 2.4mm, https://www.cuidevices.com/product/resource/tb007-508.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/scripts/TerminalBlock_CUI +THT Terminal Block CUI TB007-508-21 pitch 5.08mm size 107x10.2mm drill 1.6mm pad 2.4mm +0 +21 +21 +TerminalBlock_CUI +TerminalBlock_CUI_TB007-508-22_1x22_P5.08mm_Horizontal +Terminal Block CUI TB007-508-22, 22 pins, pitch 5.08mm, size 112x10.2mm, drill diameter 1.6mm, pad diameter 2.4mm, https://www.cuidevices.com/product/resource/tb007-508.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/scripts/TerminalBlock_CUI +THT Terminal Block CUI TB007-508-22 pitch 5.08mm size 112x10.2mm drill 1.6mm pad 2.4mm +0 +22 +22 +TerminalBlock_CUI +TerminalBlock_CUI_TB007-508-23_1x23_P5.08mm_Horizontal +Terminal Block CUI TB007-508-23, 23 pins, pitch 5.08mm, size 117x10.2mm, drill diameter 1.6mm, pad diameter 2.4mm, https://www.cuidevices.com/product/resource/tb007-508.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/scripts/TerminalBlock_CUI +THT Terminal Block CUI TB007-508-23 pitch 5.08mm size 117x10.2mm drill 1.6mm pad 2.4mm +0 +23 +23 +TerminalBlock_CUI +TerminalBlock_CUI_TB007-508-24_1x24_P5.08mm_Horizontal +Terminal Block CUI TB007-508-24, 24 pins, pitch 5.08mm, size 123x10.2mm, drill diameter 1.6mm, pad diameter 2.4mm, https://www.cuidevices.com/product/resource/tb007-508.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/scripts/TerminalBlock_CUI +THT Terminal Block CUI TB007-508-24 pitch 5.08mm size 123x10.2mm drill 1.6mm pad 2.4mm +0 +24 +24 +TerminalBlock_Degson +Degson_DG246-3.81-03P +DEGSON ELECTRONICS DG246 terminal block 2x3, https://www.degson.com/index.php?a=downloadFile&id=1090277 +connector terminal block +0 +6 +3 +TerminalBlock_Degson +TerminalBlock_Degson_DG250-3.5-01P_1x01_P3.50mm_45Degree +Terminal Block Degson DG250-3.5-01P, 45Degree (cable under 45degree), 1 pins, pitch 3.5mm, size 5x12mm, drill diameter 1.2mm, pad diameter 3mm, https://www.degson.com/content/details_552_879717.html?lang=en, generated with kicad-footprint-generator TerminalBlock_Degson +THT Terminal Block Degson DG250-3.5-01P 45Degree pitch 3.5mm size 5x12mm drill 1.2mm pad 3mm +0 +1 +1 +TerminalBlock_Degson +TerminalBlock_Degson_DG250-3.5-02P_1x02_P3.50mm_45Degree +Terminal Block Degson DG250-3.5-02P, 45Degree (cable under 45degree), 2 pins, pitch 3.5mm, size 8.5x12mm, drill diameter 1.2mm, pad diameter 3mm, https://www.degson.com/content/details_552_879717.html?lang=en, generated with kicad-footprint-generator TerminalBlock_Degson +THT Terminal Block Degson DG250-3.5-02P 45Degree pitch 3.5mm size 8.5x12mm drill 1.2mm pad 3mm +0 +2 +2 +TerminalBlock_Degson +TerminalBlock_Degson_DG250-3.5-03P_1x03_P3.50mm_45Degree +Terminal Block Degson DG250-3.5-03P, 45Degree (cable under 45degree), 3 pins, pitch 3.5mm, size 12x12mm, drill diameter 1.2mm, pad diameter 3mm, https://www.degson.com/content/details_552_879717.html?lang=en, generated with kicad-footprint-generator TerminalBlock_Degson +THT Terminal Block Degson DG250-3.5-03P 45Degree pitch 3.5mm size 12x12mm drill 1.2mm pad 3mm +0 +3 +3 +TerminalBlock_Degson +TerminalBlock_Degson_DG250-3.5-04P_1x04_P3.50mm_45Degree +Terminal Block Degson DG250-3.5-04P, 45Degree (cable under 45degree), 4 pins, pitch 3.5mm, size 15.5x12mm, drill diameter 1.2mm, pad diameter 3mm, https://www.degson.com/content/details_552_879717.html?lang=en, generated with kicad-footprint-generator TerminalBlock_Degson +THT Terminal Block Degson DG250-3.5-04P 45Degree pitch 3.5mm size 15.5x12mm drill 1.2mm pad 3mm +0 +4 +4 +TerminalBlock_Degson +TerminalBlock_Degson_DG250-3.5-05P_1x05_P3.50mm_45Degree +Terminal Block Degson DG250-3.5-05P, 45Degree (cable under 45degree), 5 pins, pitch 3.5mm, size 19x12mm, drill diameter 1.2mm, pad diameter 3mm, https://www.degson.com/content/details_552_879717.html?lang=en, generated with kicad-footprint-generator TerminalBlock_Degson +THT Terminal Block Degson DG250-3.5-05P 45Degree pitch 3.5mm size 19x12mm drill 1.2mm pad 3mm +0 +5 +5 +TerminalBlock_Degson +TerminalBlock_Degson_DG250-3.5-06P_1x06_P3.50mm_45Degree +Terminal Block Degson DG250-3.5-06P, 45Degree (cable under 45degree), 6 pins, pitch 3.5mm, size 22.5x12mm, drill diameter 1.2mm, pad diameter 3mm, https://www.degson.com/content/details_552_879717.html?lang=en, generated with kicad-footprint-generator TerminalBlock_Degson +THT Terminal Block Degson DG250-3.5-06P 45Degree pitch 3.5mm size 22.5x12mm drill 1.2mm pad 3mm +0 +6 +6 +TerminalBlock_Degson +TerminalBlock_Degson_DG250-3.5-07P_1x07_P3.50mm_45Degree +Terminal Block Degson DG250-3.5-07P, 45Degree (cable under 45degree), 7 pins, pitch 3.5mm, size 26x12mm, drill diameter 1.2mm, pad diameter 3mm, https://www.degson.com/content/details_552_879717.html?lang=en, generated with kicad-footprint-generator TerminalBlock_Degson +THT Terminal Block Degson DG250-3.5-07P 45Degree pitch 3.5mm size 26x12mm drill 1.2mm pad 3mm +0 +7 +7 +TerminalBlock_Degson +TerminalBlock_Degson_DG250-3.5-08P_1x08_P3.50mm_45Degree +Terminal Block Degson DG250-3.5-08P, 45Degree (cable under 45degree), 8 pins, pitch 3.5mm, size 29.5x12mm, drill diameter 1.2mm, pad diameter 3mm, https://www.degson.com/content/details_552_879717.html?lang=en, generated with kicad-footprint-generator TerminalBlock_Degson +THT Terminal Block Degson DG250-3.5-08P 45Degree pitch 3.5mm size 29.5x12mm drill 1.2mm pad 3mm +0 +8 +8 +TerminalBlock_Degson +TerminalBlock_Degson_DG250-3.5-09P_1x09_P3.50mm_45Degree +Terminal Block Degson DG250-3.5-09P, 45Degree (cable under 45degree), 9 pins, pitch 3.5mm, size 33x12mm, drill diameter 1.2mm, pad diameter 3mm, https://www.degson.com/content/details_552_879717.html?lang=en, generated with kicad-footprint-generator TerminalBlock_Degson +THT Terminal Block Degson DG250-3.5-09P 45Degree pitch 3.5mm size 33x12mm drill 1.2mm pad 3mm +0 +9 +9 +TerminalBlock_Degson +TerminalBlock_Degson_DG250-3.5-10P_1x10_P3.50mm_45Degree +Terminal Block Degson DG250-3.5-10P, 45Degree (cable under 45degree), 10 pins, pitch 3.5mm, size 36.5x12mm, drill diameter 1.2mm, pad diameter 3mm, https://www.degson.com/content/details_552_879717.html?lang=en, generated with kicad-footprint-generator TerminalBlock_Degson +THT Terminal Block Degson DG250-3.5-10P 45Degree pitch 3.5mm size 36.5x12mm drill 1.2mm pad 3mm +0 +10 +10 +TerminalBlock_Degson +TerminalBlock_Degson_DG250-3.5-11P_1x11_P3.50mm_45Degree +Terminal Block Degson DG250-3.5-11P, 45Degree (cable under 45degree), 11 pins, pitch 3.5mm, size 40x12mm, drill diameter 1.2mm, pad diameter 3mm, https://www.degson.com/content/details_552_879717.html?lang=en, generated with kicad-footprint-generator TerminalBlock_Degson +THT Terminal Block Degson DG250-3.5-11P 45Degree pitch 3.5mm size 40x12mm drill 1.2mm pad 3mm +0 +11 +11 +TerminalBlock_Degson +TerminalBlock_Degson_DG250-3.5-12P_1x12_P3.50mm_45Degree +Terminal Block Degson DG250-3.5-12P, 45Degree (cable under 45degree), 12 pins, pitch 3.5mm, size 43.5x12mm, drill diameter 1.2mm, pad diameter 3mm, https://www.degson.com/content/details_552_879717.html?lang=en, generated with kicad-footprint-generator TerminalBlock_Degson +THT Terminal Block Degson DG250-3.5-12P 45Degree pitch 3.5mm size 43.5x12mm drill 1.2mm pad 3mm +0 +12 +12 +TerminalBlock_Degson +TerminalBlock_Degson_DG250-3.5-14P_1x14_P3.50mm_45Degree +Terminal Block Degson DG250-3.5-14P, 45Degree (cable under 45degree), 14 pins, pitch 3.5mm, size 50.5x12mm, drill diameter 1.2mm, pad diameter 3mm, https://www.degson.com/content/details_552_879717.html?lang=en, generated with kicad-footprint-generator TerminalBlock_Degson +THT Terminal Block Degson DG250-3.5-14P 45Degree pitch 3.5mm size 50.5x12mm drill 1.2mm pad 3mm +0 +14 +14 +TerminalBlock_Degson +TerminalBlock_Degson_DG250-3.5-15P_1x15_P3.50mm_45Degree +Terminal Block Degson DG250-3.5-15P, 45Degree (cable under 45degree), 15 pins, pitch 3.5mm, size 54x12mm, drill diameter 1.2mm, pad diameter 3mm, https://www.degson.com/content/details_552_879717.html?lang=en, generated with kicad-footprint-generator TerminalBlock_Degson +THT Terminal Block Degson DG250-3.5-15P 45Degree pitch 3.5mm size 54x12mm drill 1.2mm pad 3mm +0 +15 +15 +TerminalBlock_Degson +TerminalBlock_Degson_DG250-3.5-16P_1x16_P3.50mm_45Degree +Terminal Block Degson DG250-3.5-16P, 45Degree (cable under 45degree), 16 pins, pitch 3.5mm, size 57.5x12mm, drill diameter 1.2mm, pad diameter 3mm, https://www.degson.com/content/details_552_879717.html?lang=en, generated with kicad-footprint-generator TerminalBlock_Degson +THT Terminal Block Degson DG250-3.5-16P 45Degree pitch 3.5mm size 57.5x12mm drill 1.2mm pad 3mm +0 +16 +16 +TerminalBlock_Degson +TerminalBlock_Degson_DG250-3.5-18P_1x18_P3.50mm_45Degree +Terminal Block Degson DG250-3.5-18P, 45Degree (cable under 45degree), 18 pins, pitch 3.5mm, size 64.5x12mm, drill diameter 1.2mm, pad diameter 3mm, https://www.degson.com/content/details_552_879717.html?lang=en, generated with kicad-footprint-generator TerminalBlock_Degson +THT Terminal Block Degson DG250-3.5-18P 45Degree pitch 3.5mm size 64.5x12mm drill 1.2mm pad 3mm +0 +18 +18 +TerminalBlock_Degson +TerminalBlock_Degson_DG250-3.5-19P_1x19_P3.50mm_45Degree +Terminal Block Degson DG250-3.5-19P, 45Degree (cable under 45degree), 19 pins, pitch 3.5mm, size 68x12mm, drill diameter 1.2mm, pad diameter 3mm, https://www.degson.com/content/details_552_879717.html?lang=en, generated with kicad-footprint-generator TerminalBlock_Degson +THT Terminal Block Degson DG250-3.5-19P 45Degree pitch 3.5mm size 68x12mm drill 1.2mm pad 3mm +0 +19 +19 +TerminalBlock_Degson +TerminalBlock_Degson_DG250-3.5-20P_1x20_P3.50mm_45Degree +Terminal Block Degson DG250-3.5-20P, 45Degree (cable under 45degree), 20 pins, pitch 3.5mm, size 71.5x12mm, drill diameter 1.2mm, pad diameter 3mm, https://www.degson.com/content/details_552_879717.html?lang=en, generated with kicad-footprint-generator TerminalBlock_Degson +THT Terminal Block Degson DG250-3.5-20P 45Degree pitch 3.5mm size 71.5x12mm drill 1.2mm pad 3mm +0 +20 +20 +TerminalBlock_Degson +TerminalBlock_Degson_DG250-3.5-24P_1x24_P3.50mm_45Degree +Terminal Block Degson DG250-3.5-24P, 45Degree (cable under 45degree), 24 pins, pitch 3.5mm, size 85.5x12mm, drill diameter 1.2mm, pad diameter 3mm, https://www.degson.com/content/details_552_879717.html?lang=en, generated with kicad-footprint-generator TerminalBlock_Degson +THT Terminal Block Degson DG250-3.5-24P 45Degree pitch 3.5mm size 85.5x12mm drill 1.2mm pad 3mm +0 +24 +24 +TerminalBlock_Degson +TerminalBlock_Degson_DG250-3.5-44P_1x44_P3.50mm_45Degree +Terminal Block Degson DG250-3.5-44P, 45Degree (cable under 45degree), 44 pins, pitch 3.5mm, size 156x12mm, drill diameter 1.2mm, pad diameter 3mm, https://www.degson.com/content/details_552_879717.html?lang=en, generated with kicad-footprint-generator TerminalBlock_Degson +THT Terminal Block Degson DG250-3.5-44P 45Degree pitch 3.5mm size 156x12mm drill 1.2mm pad 3mm +0 +44 +44 +TerminalBlock_Degson +TerminalBlock_Degson_DG250-3.5-45P_1x45_P3.50mm_45Degree +Terminal Block Degson DG250-3.5-45P, 45Degree (cable under 45degree), 45 pins, pitch 3.5mm, size 159x12mm, drill diameter 1.2mm, pad diameter 3mm, https://www.degson.com/content/details_552_879717.html?lang=en, generated with kicad-footprint-generator TerminalBlock_Degson +THT Terminal Block Degson DG250-3.5-45P 45Degree pitch 3.5mm size 159x12mm drill 1.2mm pad 3mm +0 +45 +45 +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, drill diameter 1.5mm, pad diameter 3mm, https://www.metz-connect.com/media/file/8a8a80ea6e17c2e6016e3b8ef7cd2d65.de.0/product_summary_u_contact_de_en_fr.pdf , script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_MetzConnect +THT single screw terminal block Metz Connect 360271 size 9x7.3mm 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, drill diameter 1.5mm, pad diameter 3mm, https://media.metz-connect.com/files/171/Data_sheet_360272.PDF , script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_MetzConnect +THT single screw terminal block Metz Connect 360272 size 4x4mm 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, drill diameter 1.5mm, pad diameter 3mm, https://media.metz-connect.com/files/171/Data_sheet_360273.PDF , script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_MetzConnect +THT single screw terminal block Metz Connect 360273 size 5x4mm 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, drill diameter 1.5mm, pad diameter 3mm, https://media.metz-connect.com/files/171/Data_sheet_360291.PDF , script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_MetzConnect +THT single screw terminal block Metz Connect 360291 size 9x7.3mm 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, drill diameter 1.5mm, pad diameter 3mm, https://media.metz-connect.com/files/171/Data_sheet_360322.PDF , script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_MetzConnect +THT single screw terminal block Metz Connect 360322 size 6x4mm 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, drill diameter 1.5mm, pad diameter 3mm, https://media.metz-connect.com/files/171/Data_sheet_360381.PDF , script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_MetzConnect +THT single screw terminal block Metz Connect 360381 size 5x5mm 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, drill diameter 1.5mm, pad diameter 3mm, https://media.metz-connect.com/files/171/Data_sheet_360410.PDF , script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_MetzConnect +THT single screw terminal block Metz Connect 360410 size 5x5mm 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, drill diameter 1.6mm, pad diameter 3.2mm, https://www.metz-connect.com/media/file/8a8a80ea6e17c2e6016e3b8ef7cd2d65.de.0/product_summary_u_contact_de_en_fr.pdf , script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_MetzConnect +THT single screw terminal block Metz Connect 360425 size 9x9mm drill 1.6mm pad 3.2mm +0 +4 +1 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_Type011_RT05502HBLC_1x02_P5.00mm_Horizontal +terminal block Metz Connect Type011_RT05502HBLC, 2 pins, pitch 5mm, size 10x10.5mm, drill diameter 1.4mm, pad diameter 2.8mm, https://americancableassemblies.com/content/metz/863188.PDF, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type011_RT05502HBLC pitch 5mm size 10x10.5mm drill 1.4mm pad 2.8mm +0 +2 +2 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_Type011_RT05503HBLC_1x03_P5.00mm_Horizontal +terminal block Metz Connect Type011_RT05503HBLC, 3 pins, pitch 5mm, size 15x10.5mm, drill diameter 1.4mm, pad diameter 2.8mm, https://americancableassemblies.com/content/metz/863188.PDF, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type011_RT05503HBLC pitch 5mm size 15x10.5mm drill 1.4mm pad 2.8mm +0 +3 +3 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_Type011_RT05504HBLC_1x04_P5.00mm_Horizontal +terminal block Metz Connect Type011_RT05504HBLC, 4 pins, pitch 5mm, size 20x10.5mm, drill diameter 1.4mm, pad diameter 2.8mm, https://americancableassemblies.com/content/metz/863188.PDF, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type011_RT05504HBLC pitch 5mm size 20x10.5mm drill 1.4mm pad 2.8mm +0 +4 +4 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_Type011_RT05505HBLC_1x05_P5.00mm_Horizontal +terminal block Metz Connect Type011_RT05505HBLC, 5 pins, pitch 5mm, size 25x10.5mm, drill diameter 1.4mm, pad diameter 2.8mm, https://americancableassemblies.com/content/metz/863188.PDF, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type011_RT05505HBLC pitch 5mm size 25x10.5mm drill 1.4mm pad 2.8mm +0 +5 +5 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_Type011_RT05506HBLC_1x06_P5.00mm_Horizontal +terminal block Metz Connect Type011_RT05506HBLC, 6 pins, pitch 5mm, size 30x10.5mm, drill diameter 1.4mm, pad diameter 2.8mm, https://americancableassemblies.com/content/metz/863188.PDF, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type011_RT05506HBLC pitch 5mm size 30x10.5mm 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, drill diameter 1.3mm, pad diameter 2.5mm, https://www.metz-connect.com/externalfiles/310551/863212.PDF, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type055_RT01502HDWU pitch 5mm size 10x8mm 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, drill diameter 1.3mm, pad diameter 2.5mm, https://www.metz-connect.com/externalfiles/310551/863212.PDF, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type055_RT01503HDWU pitch 5mm size 15x8mm 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, drill diameter 1.3mm, pad diameter 2.5mm, https://www.metz-connect.com/externalfiles/310551/863212.PDF, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type055_RT01504HDWU pitch 5mm size 20x8mm 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, drill diameter 1.2mm, pad diameter 2.3mm, https://www.metz-connect.com/externalfiles/310591/863246.PDF, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type059_RT06302HBWC pitch 3.5mm size 7x6.5mm 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, drill diameter 1.2mm, pad diameter 2.3mm, https://www.metz-connect.com/externalfiles/310591/863246.PDF, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type059_RT06303HBWC pitch 3.5mm size 10.5x6.5mm 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, drill diameter 1.2mm, pad diameter 2.3mm, https://www.metz-connect.com/externalfiles/310591/863246.PDF, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type059_RT06304HBWC pitch 3.5mm size 14x6.5mm 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, drill diameter 1.2mm, pad diameter 2.3mm, https://www.metz-connect.com/externalfiles/310591/863246.PDF, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type059_RT06305HBWC pitch 3.5mm size 17.5x6.5mm 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, drill diameter 1.2mm, pad diameter 2.3mm, https://www.metz-connect.com/externalfiles/310591/863246.PDF, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type059_RT06306HBWC pitch 3.5mm size 21x6.5mm 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, drill diameter 1.3mm, pad diameter 2.6mm, https://www.metz-connect.com/externalfiles/310671/863296.PDF, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type067_RT01902HDWC pitch 10mm size 15.8x8.2mm 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, drill diameter 1.3mm, pad diameter 2.6mm, https://www.metz-connect.com/externalfiles/310671/863296.PDF, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type067_RT01903HDWC pitch 10mm size 25.8x8.2mm 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, drill diameter 1.3mm, pad diameter 2.6mm, https://www.metz-connect.com/externalfiles/310671/863296.PDF, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type067_RT01904HDWC pitch 10mm size 35.8x8.2mm 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, drill diameter 1.3mm, pad diameter 2.6mm, https://www.metz-connect.com/externalfiles/310671/863296.PDF, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type067_RT01905HDWC pitch 10mm size 45.8x8.2mm 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, drill diameter 1.4mm, pad diameter 2.6mm, https://www.metz-connect.com/externalfiles/310731/863336.PDF, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type073_RT02602HBLU pitch 5.08mm size 10.2x11mm 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, drill diameter 1.4mm, pad diameter 2.6mm, https://www.metz-connect.com/externalfiles/310731/863336.PDF, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type073_RT02603HBLU pitch 5.08mm size 15.2x11mm 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, drill diameter 1.1mm, pad diameter 1.75mm, https://www.metz-connect.com/externalfiles/310861/863404.PDF, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type086_RT03402HBLC pitch 3.81mm size 7.51x7.3mm drill 1.1mm pad 1.75mm +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, drill diameter 1.1mm, pad diameter 1.75mm, https://www.metz-connect.com/externalfiles/310861/863404.PDF, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type086_RT03403HBLC pitch 3.81mm size 11.3x7.3mm drill 1.1mm pad 1.75mm +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, drill diameter 1.1mm, pad diameter 1.75mm, https://www.metz-connect.com/externalfiles/310861/863404.PDF, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type086_RT03404HBLC pitch 3.81mm size 15.1x7.3mm drill 1.1mm pad 1.75mm +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, drill diameter 1.1mm, pad diameter 1.75mm, https://www.metz-connect.com/externalfiles/310861/863404.PDF, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type086_RT03405HBLC pitch 3.81mm size 18.9x7.3mm drill 1.1mm pad 1.75mm +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, drill diameter 1.1mm, pad diameter 1.75mm, https://www.metz-connect.com/externalfiles/310861/863404.PDF, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type086_RT03406HBLC pitch 3.81mm size 22.8x7.3mm drill 1.1mm pad 1.75mm +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, drill diameter 1.3mm, pad diameter 2.6mm, https://www.metz-connect.com/externalfiles/310941/863441.PDF, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type094_RT03502HBLU pitch 5mm size 10x8.3mm 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, drill diameter 1.3mm, pad diameter 2.6mm, https://www.metz-connect.com/externalfiles/310941/863441.PDF, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type094_RT03503HBLU pitch 5mm size 15x8.3mm 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, drill diameter 1.3mm, pad diameter 2.6mm, https://www.metz-connect.com/externalfiles/310941/863441.PDF, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type094_RT03504HBLU pitch 5mm size 20x8.3mm 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, drill diameter 1.3mm, pad diameter 2.6mm, https://www.metz-connect.com/externalfiles/310941/863441.PDF, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type094_RT03505HBLU pitch 5mm size 25x8.3mm 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, drill diameter 1.3mm, pad diameter 2.6mm, https://www.metz-connect.com/externalfiles/310941/863441.PDF, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type094_RT03506HBLU pitch 5mm size 30x8.3mm 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, drill diameter 1.3mm, pad diameter 2.5mm, https://www.metz-connect.com/externalfiles/311011/863468.PDF, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type101_RT01602HBWC pitch 5.08mm size 10.2x8mm 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, drill diameter 1.3mm, pad diameter 2.5mm, https://www.metz-connect.com/externalfiles/311011/863468.PDF, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type101_RT01603HBWC pitch 5.08mm size 15.2x8mm 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, drill diameter 1.3mm, pad diameter 2.5mm, https://www.metz-connect.com/externalfiles/311011/863468.PDF, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type101_RT01604HBWC pitch 5.08mm size 20.3x8mm 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, drill diameter 1.3mm, pad diameter 2.5mm, https://www.metz-connect.com/externalfiles/311011/863468.PDF, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type101_RT01605HBWC pitch 5.08mm size 25.4x8mm 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, drill diameter 1.3mm, pad diameter 2.5mm, https://www.metz-connect.com/externalfiles/311011/863468.PDF, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type101_RT01606HBWC pitch 5.08mm size 30.5x8mm 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, drill diameter 1.3mm, pad diameter 2.5mm, https://www.metz-connect.com/externalfiles/311711/863695.PDF, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type171_RT13702HBWC pitch 7.5mm size 15x9mm 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, drill diameter 1.3mm, pad diameter 2.5mm, https://www.metz-connect.com/externalfiles/311711/863695.PDF, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type171_RT13703HBWC pitch 7.5mm size 22.5x9mm 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, drill diameter 1.3mm, pad diameter 2.5mm, https://www.metz-connect.com/externalfiles/311711/863695.PDF, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type171_RT13704HBWC pitch 7.5mm size 30x9mm 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, drill diameter 1.3mm, pad diameter 2.5mm, https://www.metz-connect.com/externalfiles/311711/863695.PDF, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type171_RT13705HBWC pitch 7.5mm size 37.5x9mm 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, drill diameter 1.3mm, pad diameter 2.5mm, https://www.metz-connect.com/externalfiles/311711/863695.PDF, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type171_RT13706HBWC pitch 7.5mm size 45x9mm 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, drill diameter 1.4mm, pad diameter 2.6mm, https://www.metz-connect.com/externalfiles/311751/863710.PDF, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type175_RT02702HBLC pitch 7.5mm size 15x11mm 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, drill diameter 1.4mm, pad diameter 2.6mm, https://www.metz-connect.com/externalfiles/311751/863710.PDF, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type175_RT02703HBLC pitch 7.5mm size 22.5x11mm 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, drill diameter 1.4mm, pad diameter 2.6mm, https://www.metz-connect.com/externalfiles/311751/863710.PDF, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type175_RT02704HBLC pitch 7.5mm size 30x11mm 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, drill diameter 1.4mm, pad diameter 2.6mm, https://www.metz-connect.com/externalfiles/311751/863710.PDF, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type175_RT02705HBLC pitch 7.5mm size 37.5x11mm 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, drill diameter 1.4mm, pad diameter 2.6mm, https://www.metz-connect.com/externalfiles/311751/863710.PDF, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type175_RT02706HBLC pitch 7.5mm size 45x11mm 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, drill diameter 1.4mm, pad diameter 2.7mm, https://www.metz-connect.com/externalfiles/312051/863728.PDF, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type205_RT04502UBLC 45Degree pitch 5mm size 10x12.5mm 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, drill diameter 1.4mm, pad diameter 2.7mm, https://www.metz-connect.com/externalfiles/312051/863728.PDF, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type205_RT04503UBLC 45Degree pitch 5mm size 15x12.5mm 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, drill diameter 1.4mm, pad diameter 2.7mm, https://www.metz-connect.com/externalfiles/312051/863728.PDF, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type205_RT04504UBLC 45Degree pitch 5mm size 20x12.5mm 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, drill diameter 1.4mm, pad diameter 2.7mm, https://www.metz-connect.com/externalfiles/312051/863728.PDF, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type205_RT04505UBLC 45Degree pitch 5mm size 25x12.5mm 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, drill diameter 1.4mm, pad diameter 2.7mm, https://www.metz-connect.com/externalfiles/312051/863728.PDF, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type205_RT04506UBLC 45Degree pitch 5mm size 30x12.5mm 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, drill diameter 1.3mm, pad diameter 2.5mm, https://www.metz-connect.com/externalfiles/317011/863830.PDF, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type701_RT11L02HGLU pitch 6.35mm size 12.7x12.5mm 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, drill diameter 1.3mm, pad diameter 2.5mm, https://www.metz-connect.com/externalfiles/317011/863830.PDF, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type701_RT11L03HGLU pitch 6.35mm size 19x12.5mm 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, drill diameter 1.3mm, pad diameter 2.6mm, https://www.metz-connect.com/externalfiles/317031/863835.PDF, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type703_RT10N02HGLU pitch 9.52mm size 19x12.5mm 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, drill diameter 1.3mm, pad diameter 2.6mm, https://www.metz-connect.com/externalfiles/317031/863835.PDF, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type703_RT10N03HGLU pitch 9.52mm size 28.6x12.5mm 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, drill diameter 1.2mm, pad diameter 2.4mm, http://www.philmore-datak.com/mc/Page%20197.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Philmore +THT Terminal Block Philmore pitch 5mm size 10x10.2mm 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, drill diameter 1.2mm, pad diameter 2.4mm, http://www.philmore-datak.com/mc/Page%20197.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Philmore +THT Terminal Block Philmore pitch 5mm size 15x10.2mm 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, drill diameter 1.3mm, pad diameter 2.6mm, http://www.farnell.com/datasheets/100425.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-1,5-2-5.08 pitch 5.08mm size 10.2x9.8mm 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, drill diameter 1.3mm, pad diameter 2.6mm, http://www.farnell.com/datasheets/100425.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-1,5-2 pitch 5mm size 10x9.8mm 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, drill diameter 1.3mm, pad diameter 2.6mm, http://www.farnell.com/datasheets/100425.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-1,5-3-5.08 pitch 5.08mm size 15.2x9.8mm 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, drill diameter 1.3mm, pad diameter 2.6mm, http://www.farnell.com/datasheets/100425.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-1,5-3 pitch 5mm size 15x9.8mm 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, drill diameter 1.3mm, pad diameter 2.6mm, http://www.farnell.com/datasheets/100425.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-1,5-4-5.08 pitch 5.08mm size 20.3x9.8mm 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, drill diameter 1.3mm, pad diameter 2.6mm, http://www.farnell.com/datasheets/100425.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-1,5-4 pitch 5mm size 20x9.8mm 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, drill diameter 1.3mm, pad diameter 2.6mm, http://www.farnell.com/datasheets/100425.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-1,5-5-5.08 pitch 5.08mm size 25.4x9.8mm 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, drill diameter 1.3mm, pad diameter 2.6mm, http://www.farnell.com/datasheets/100425.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-1,5-5 pitch 5mm size 25x9.8mm 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, drill diameter 1.3mm, pad diameter 2.6mm, http://www.farnell.com/datasheets/100425.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-1,5-6-5.08 pitch 5.08mm size 30.5x9.8mm 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, drill diameter 1.3mm, pad diameter 2.6mm, http://www.farnell.com/datasheets/100425.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-1,5-6 pitch 5mm size 30x9.8mm 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, drill diameter 1.3mm, pad diameter 2.6mm, http://www.farnell.com/datasheets/100425.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-1,5-7-5.08 pitch 5.08mm size 35.6x9.8mm 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, drill diameter 1.3mm, pad diameter 2.6mm, http://www.farnell.com/datasheets/100425.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-1,5-7 pitch 5mm size 35x9.8mm 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, drill diameter 1.3mm, pad diameter 2.6mm, http://www.farnell.com/datasheets/100425.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-1,5-8-5.08 pitch 5.08mm size 40.6x9.8mm 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, drill diameter 1.3mm, pad diameter 2.6mm, http://www.farnell.com/datasheets/100425.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-1,5-8 pitch 5mm size 40x9.8mm 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, drill diameter 1.3mm, pad diameter 2.6mm, http://www.farnell.com/datasheets/100425.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-1,5-9-5.08 pitch 5.08mm size 45.7x9.8mm 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, drill diameter 1.3mm, pad diameter 2.6mm, http://www.farnell.com/datasheets/100425.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-1,5-9 pitch 5mm size 45x9.8mm 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, drill diameter 1.3mm, pad diameter 2.6mm, http://www.farnell.com/datasheets/100425.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-1,5-10-5.08 pitch 5.08mm size 50.8x9.8mm 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, drill diameter 1.3mm, pad diameter 2.6mm, http://www.farnell.com/datasheets/100425.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-1,5-10 pitch 5mm size 50x9.8mm 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, drill diameter 1.3mm, pad diameter 2.6mm, http://www.farnell.com/datasheets/100425.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-1,5-11-5.08 pitch 5.08mm size 55.9x9.8mm 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, drill diameter 1.3mm, pad diameter 2.6mm, http://www.farnell.com/datasheets/100425.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-1,5-11 pitch 5mm size 55x9.8mm 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, drill diameter 1.3mm, pad diameter 2.6mm, http://www.farnell.com/datasheets/100425.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-1,5-12-5.08 pitch 5.08mm size 61x9.8mm 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, drill diameter 1.3mm, pad diameter 2.6mm, http://www.farnell.com/datasheets/100425.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-1,5-12 pitch 5mm size 60x9.8mm 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, drill diameter 1.3mm, pad diameter 2.6mm, http://www.farnell.com/datasheets/100425.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-1,5-13-5.08 pitch 5.08mm size 66x9.8mm 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, drill diameter 1.3mm, pad diameter 2.6mm, http://www.farnell.com/datasheets/100425.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-1,5-13 pitch 5mm size 65x9.8mm 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, drill diameter 1.3mm, pad diameter 2.6mm, http://www.farnell.com/datasheets/100425.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-1,5-14-5.08 pitch 5.08mm size 71.1x9.8mm 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, drill diameter 1.3mm, pad diameter 2.6mm, http://www.farnell.com/datasheets/100425.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-1,5-14 pitch 5mm size 70x9.8mm 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, drill diameter 1.3mm, pad diameter 2.6mm, http://www.farnell.com/datasheets/100425.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-1,5-15-5.08 pitch 5.08mm size 76.2x9.8mm 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, drill diameter 1.3mm, pad diameter 2.6mm, http://www.farnell.com/datasheets/100425.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-1,5-15 pitch 5mm size 75x9.8mm 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, drill diameter 1.3mm, pad diameter 2.6mm, http://www.farnell.com/datasheets/100425.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-1,5-16-5.08 pitch 5.08mm size 81.3x9.8mm 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, drill diameter 1.3mm, pad diameter 2.6mm, http://www.farnell.com/datasheets/100425.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-1,5-16 pitch 5mm size 80x9.8mm drill 1.3mm pad 2.6mm +0 +16 +16 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MKDS-1-2-3.81_1x02_P3.81mm_Horizontal +Terminal Block Phoenix MKDS-1-2-3.81, 2 pins, pitch 3.81mm, size 7.61x7.3mm, drill diameter 1.1mm, pad diameter 2mm, http://www.phoenixcontact.com/us/products/1727010/pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-1-2-3.81 pitch 3.81mm size 7.61x7.3mm drill 1.1mm pad 2mm +0 +2 +2 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MKDS-1-3-3.81_1x03_P3.81mm_Horizontal +Terminal Block Phoenix MKDS-1-3-3.81, 3 pins, pitch 3.81mm, size 11.4x7.3mm, drill diameter 1.1mm, pad diameter 2mm, http://www.phoenixcontact.com/us/products/1727023/pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-1-3-3.81 pitch 3.81mm size 11.4x7.3mm drill 1.1mm pad 2mm +0 +3 +3 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MKDS-1-4-3.81_1x04_P3.81mm_Horizontal +Terminal Block Phoenix MKDS-1-4-3.81, 4 pins, pitch 3.81mm, size 15.2x7.3mm, drill diameter 1.1mm, pad diameter 2mm, http://www.phoenixcontact.com/us/products/1727036/pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-1-4-3.81 pitch 3.81mm size 15.2x7.3mm drill 1.1mm pad 2mm +0 +4 +4 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MKDS-1-5-3.81_1x05_P3.81mm_Horizontal +Terminal Block Phoenix MKDS-1-5-3.81, 5 pins, pitch 3.81mm, size 19x7.3mm, drill diameter 1.1mm, pad diameter 2mm, http://www.phoenixcontact.com/us/products/1727049/pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-1-5-3.81 pitch 3.81mm size 19x7.3mm drill 1.1mm pad 2mm +0 +5 +5 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MKDS-1-6-3.81_1x06_P3.81mm_Horizontal +Terminal Block Phoenix MKDS-1-6-3.81, 6 pins, pitch 3.81mm, size 22.9x7.3mm, drill diameter 1.1mm, pad diameter 2mm, http://www.phoenixcontact.com/us/products/1727052/pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-1-6-3.81 pitch 3.81mm size 22.9x7.3mm drill 1.1mm pad 2mm +0 +6 +6 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MKDS-1-7-3.81_1x07_P3.81mm_Horizontal +Terminal Block Phoenix MKDS-1-7-3.81, 7 pins, pitch 3.81mm, size 26.7x7.3mm, drill diameter 1.1mm, pad diameter 2mm, http://www.phoenixcontact.com/us/products/1727065/pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-1-7-3.81 pitch 3.81mm size 26.7x7.3mm drill 1.1mm pad 2mm +0 +7 +7 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MKDS-1-8-3.81_1x08_P3.81mm_Horizontal +Terminal Block Phoenix MKDS-1-8-3.81, 8 pins, pitch 3.81mm, size 30.5x7.3mm, drill diameter 1.1mm, pad diameter 2mm, http://www.phoenixcontact.com/us/products/1727078/pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-1-8-3.81 pitch 3.81mm size 30.5x7.3mm drill 1.1mm pad 2mm +0 +8 +8 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MKDS-1-9-3.81_1x09_P3.81mm_Horizontal +Terminal Block Phoenix MKDS-1-9-3.81, 9 pins, pitch 3.81mm, size 34.3x7.3mm, drill diameter 1.1mm, pad diameter 2mm, http://www.phoenixcontact.com/us/products/1727081/pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-1-9-3.81 pitch 3.81mm size 34.3x7.3mm drill 1.1mm pad 2mm +0 +9 +9 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MKDS-1-10-3.81_1x10_P3.81mm_Horizontal +Terminal Block Phoenix MKDS-1-10-3.81, 10 pins, pitch 3.81mm, size 38.1x7.3mm, drill diameter 1.1mm, pad diameter 2mm, http://www.phoenixcontact.com/us/products/1727094/pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-1-10-3.81 pitch 3.81mm size 38.1x7.3mm drill 1.1mm pad 2mm +0 +10 +10 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MKDS-1-11-3.81_1x11_P3.81mm_Horizontal +Terminal Block Phoenix MKDS-1-11-3.81, 11 pins, pitch 3.81mm, size 41.9x7.3mm, drill diameter 1.1mm, pad diameter 2mm, http://www.phoenixcontact.com/us/products/1727104/pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-1-11-3.81 pitch 3.81mm size 41.9x7.3mm drill 1.1mm pad 2mm +0 +11 +11 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MKDS-1-12-3.81_1x12_P3.81mm_Horizontal +Terminal Block Phoenix MKDS-1-12-3.81, 12 pins, pitch 3.81mm, size 45.7x7.3mm, drill diameter 1.1mm, pad diameter 2mm, http://www.phoenixcontact.com/us/products/1727117/pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-1-12-3.81 pitch 3.81mm size 45.7x7.3mm drill 1.1mm pad 2mm +0 +12 +12 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MKDS-1-13-3.81_1x13_P3.81mm_Horizontal +Terminal Block Phoenix MKDS-1-13-3.81, 13 pins, pitch 3.81mm, size 49.5x7.3mm, drill diameter 1.1mm, pad diameter 2mm, http://www.phoenixcontact.com/us/products/1931754/pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-1-13-3.81 pitch 3.81mm size 49.5x7.3mm drill 1.1mm pad 2mm +0 +13 +13 +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, drill diameter 1.3mm, pad diameter 2.6mm, http://www.farnell.com/datasheets/2138224.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-3-2-5.08 pitch 5.08mm size 10.2x11.2mm 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, drill diameter 1.3mm, pad diameter 2.6mm, http://www.farnell.com/datasheets/2138224.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-3-3-5.08 pitch 5.08mm size 15.2x11.2mm 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, drill diameter 1.3mm, pad diameter 2.6mm, http://www.farnell.com/datasheets/2138224.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-3-4-5.08 pitch 5.08mm size 20.3x11.2mm 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, drill diameter 1.3mm, pad diameter 2.6mm, http://www.farnell.com/datasheets/2138224.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-3-5-5.08 pitch 5.08mm size 25.4x11.2mm 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, drill diameter 1.3mm, pad diameter 2.6mm, http://www.farnell.com/datasheets/2138224.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-3-6-5.08 pitch 5.08mm size 30.5x11.2mm 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, drill diameter 1.3mm, pad diameter 2.6mm, http://www.farnell.com/datasheets/2138224.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-3-7-5.08 pitch 5.08mm size 35.6x11.2mm 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, drill diameter 1.3mm, pad diameter 2.6mm, http://www.farnell.com/datasheets/2138224.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-3-8-5.08 pitch 5.08mm size 40.6x11.2mm 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, drill diameter 1.3mm, pad diameter 2.6mm, http://www.farnell.com/datasheets/2138224.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-3-9-5.08 pitch 5.08mm size 45.7x11.2mm 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, drill diameter 1.3mm, pad diameter 2.6mm, http://www.farnell.com/datasheets/2138224.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-3-10-5.08 pitch 5.08mm size 50.8x11.2mm 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, drill diameter 1.3mm, pad diameter 2.6mm, http://www.farnell.com/datasheets/2138224.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-3-11-5.08 pitch 5.08mm size 55.9x11.2mm 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, drill diameter 1.3mm, pad diameter 2.6mm, http://www.farnell.com/datasheets/2138224.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-3-12-5.08 pitch 5.08mm size 61x11.2mm 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, drill diameter 1.3mm, pad diameter 2.6mm, http://www.farnell.com/datasheets/2138224.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-3-13-5.08 pitch 5.08mm size 66x11.2mm 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, drill diameter 1.3mm, pad diameter 2.6mm, http://www.farnell.com/datasheets/2138224.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-3-14-5.08 pitch 5.08mm size 71.1x11.2mm 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, drill diameter 1.3mm, pad diameter 2.6mm, http://www.farnell.com/datasheets/2138224.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-3-15-5.08 pitch 5.08mm size 76.2x11.2mm 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, drill diameter 1.3mm, pad diameter 2.6mm, http://www.farnell.com/datasheets/2138224.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-3-16-5.08 pitch 5.08mm size 81.3x11.2mm 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, drill diameter 1.1mm, pad diameter 2.2mm, http://www.mouser.com/ds/2/324/ItemDetail_1725656-920552.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MPT-0,5-2-2.54 pitch 2.54mm size 5.54x6.2mm 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, drill diameter 1.1mm, pad diameter 2.2mm, http://www.mouser.com/ds/2/324/ItemDetail_1725656-920552.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MPT-0,5-3-2.54 pitch 2.54mm size 8.08x6.2mm 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, drill diameter 1.1mm, pad diameter 2.2mm, http://www.mouser.com/ds/2/324/ItemDetail_1725672-916605.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MPT-0,5-4-2.54 pitch 2.54mm size 10.6x6.2mm 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, drill diameter 1.1mm, pad diameter 2.2mm, http://www.mouser.com/ds/2/324/ItemDetail_1725672-916605.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MPT-0,5-5-2.54 pitch 2.54mm size 13.2x6.2mm 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, drill diameter 1.1mm, pad diameter 2.2mm, http://www.mouser.com/ds/2/324/ItemDetail_1725672-916605.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MPT-0,5-6-2.54 pitch 2.54mm size 15.7x6.2mm 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, drill diameter 1.1mm, pad diameter 2.2mm, http://www.mouser.com/ds/2/324/ItemDetail_1725672-916605.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MPT-0,5-7-2.54 pitch 2.54mm size 18.2x6.2mm 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, drill diameter 1.1mm, pad diameter 2.2mm, http://www.mouser.com/ds/2/324/ItemDetail_1725672-916605.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MPT-0,5-8-2.54 pitch 2.54mm size 20.8x6.2mm 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, drill diameter 1.1mm, pad diameter 2.2mm, http://www.mouser.com/ds/2/324/ItemDetail_1725672-916605.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MPT-0,5-9-2.54 pitch 2.54mm size 23.3x6.2mm 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, drill diameter 1.1mm, pad diameter 2.2mm, http://www.mouser.com/ds/2/324/ItemDetail_1725672-916605.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MPT-0,5-10-2.54 pitch 2.54mm size 25.9x6.2mm 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, drill diameter 1.1mm, pad diameter 2.2mm, http://www.mouser.com/ds/2/324/ItemDetail_1725672-916605.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MPT-0,5-11-2.54 pitch 2.54mm size 28.4x6.2mm 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, drill diameter 1.1mm, pad diameter 2.2mm, http://www.mouser.com/ds/2/324/ItemDetail_1725672-916605.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MPT-0,5-12-2.54 pitch 2.54mm size 30.9x6.2mm 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, drill diameter 1.2mm, pad diameter 2.4mm, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PT-1,5-2-3.5-H pitch 3.5mm size 7x7.6mm 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, drill diameter 1.3mm, pad diameter 2.6mm, http://www.mouser.com/ds/2/324/ItemDetail_1935161-922578.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PT-1,5-2-5.0-H pitch 5mm size 10x9mm 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, drill diameter 1.2mm, pad diameter 2.4mm, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PT-1,5-3-3.5-H pitch 3.5mm size 10.5x7.6mm 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, drill diameter 1.3mm, pad diameter 2.6mm, http://www.mouser.com/ds/2/324/ItemDetail_1935161-922578.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PT-1,5-3-5.0-H pitch 5mm size 15x9mm 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, drill diameter 1.2mm, pad diameter 2.4mm, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PT-1,5-4-3.5-H pitch 3.5mm size 14x7.6mm 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, drill diameter 1.3mm, pad diameter 2.6mm, http://www.mouser.com/ds/2/324/ItemDetail_1935161-922578.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PT-1,5-4-5.0-H pitch 5mm size 20x9mm 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, drill diameter 1.2mm, pad diameter 2.4mm, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PT-1,5-5-3.5-H pitch 3.5mm size 17.5x7.6mm 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, drill diameter 1.3mm, pad diameter 2.6mm, http://www.mouser.com/ds/2/324/ItemDetail_1935161-922578.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PT-1,5-5-5.0-H pitch 5mm size 25x9mm 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, drill diameter 1.2mm, pad diameter 2.4mm, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PT-1,5-6-3.5-H pitch 3.5mm size 21x7.6mm 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, drill diameter 1.3mm, pad diameter 2.6mm, http://www.mouser.com/ds/2/324/ItemDetail_1935161-922578.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PT-1,5-6-5.0-H pitch 5mm size 30x9mm 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, drill diameter 1.2mm, pad diameter 2.4mm, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PT-1,5-7-3.5-H pitch 3.5mm size 24.5x7.6mm 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, drill diameter 1.3mm, pad diameter 2.6mm, http://www.mouser.com/ds/2/324/ItemDetail_1935161-922578.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PT-1,5-7-5.0-H pitch 5mm size 35x9mm 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, drill diameter 1.2mm, pad diameter 2.4mm, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PT-1,5-8-3.5-H pitch 3.5mm size 28x7.6mm 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, drill diameter 1.3mm, pad diameter 2.6mm, http://www.mouser.com/ds/2/324/ItemDetail_1935161-922578.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PT-1,5-8-5.0-H pitch 5mm size 40x9mm 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, drill diameter 1.2mm, pad diameter 2.4mm, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PT-1,5-9-3.5-H pitch 3.5mm size 31.5x7.6mm 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, drill diameter 1.3mm, pad diameter 2.6mm, http://www.mouser.com/ds/2/324/ItemDetail_1935161-922578.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PT-1,5-9-5.0-H pitch 5mm size 45x9mm 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, drill diameter 1.2mm, pad diameter 2.4mm, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PT-1,5-10-3.5-H pitch 3.5mm size 35x7.6mm 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, drill diameter 1.3mm, pad diameter 2.6mm, http://www.mouser.com/ds/2/324/ItemDetail_1935161-922578.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PT-1,5-10-5.0-H pitch 5mm size 50x9mm 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, drill diameter 1.2mm, pad diameter 2.4mm, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PT-1,5-11-3.5-H pitch 3.5mm size 38.5x7.6mm 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, drill diameter 1.3mm, pad diameter 2.6mm, http://www.mouser.com/ds/2/324/ItemDetail_1935161-922578.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PT-1,5-11-5.0-H pitch 5mm size 55x9mm 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, drill diameter 1.2mm, pad diameter 2.4mm, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PT-1,5-12-3.5-H pitch 3.5mm size 42x7.6mm 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, drill diameter 1.3mm, pad diameter 2.6mm, http://www.mouser.com/ds/2/324/ItemDetail_1935161-922578.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PT-1,5-12-5.0-H pitch 5mm size 60x9mm 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, drill diameter 1.2mm, pad diameter 2.4mm, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PT-1,5-13-3.5-H pitch 3.5mm size 45.5x7.6mm 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, drill diameter 1.3mm, pad diameter 2.6mm, http://www.mouser.com/ds/2/324/ItemDetail_1935161-922578.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PT-1,5-13-5.0-H pitch 5mm size 65x9mm 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, drill diameter 1.2mm, pad diameter 2.4mm, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PT-1,5-14-3.5-H pitch 3.5mm size 49x7.6mm 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, drill diameter 1.3mm, pad diameter 2.6mm, http://www.mouser.com/ds/2/324/ItemDetail_1935161-922578.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PT-1,5-14-5.0-H pitch 5mm size 70x9mm 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, drill diameter 1.2mm, pad diameter 2.4mm, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PT-1,5-15-3.5-H pitch 3.5mm size 52.5x7.6mm 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, drill diameter 1.3mm, pad diameter 2.6mm, http://www.mouser.com/ds/2/324/ItemDetail_1935161-922578.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PT-1,5-15-5.0-H pitch 5mm size 75x9mm 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, drill diameter 1.2mm, pad diameter 2.4mm, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PT-1,5-16-3.5-H pitch 3.5mm size 56x7.6mm 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, drill diameter 1.3mm, pad diameter 2.6mm, http://www.mouser.com/ds/2/324/ItemDetail_1935161-922578.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PT-1,5-16-5.0-H pitch 5mm size 80x9mm 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, drill diameter 1.2mm, pad diameter 3mm, 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://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PTSM-0,5-2-2.5-H-THR pitch 2.5mm size 7.2x10mm 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, drill diameter 1.2mm, pad diameter 2mm, http://www.produktinfo.conrad.com/datenblaetter/550000-574999/556444-da-01-de-LEITERPLATTENKL__PTSM_0_5__4_2_5_V_THR.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PTSM-0,5-2-2.5-V-THR vertical pitch 2.5mm size 5.5x5mm 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, drill diameter 1.2mm, pad diameter 3mm, 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://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PTSM-0,5-3-2.5-H-THR pitch 2.5mm size 9.7x10mm 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, drill diameter 1.2mm, pad diameter 2mm, http://www.produktinfo.conrad.com/datenblaetter/550000-574999/556444-da-01-de-LEITERPLATTENKL__PTSM_0_5__4_2_5_V_THR.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PTSM-0,5-3-2.5-V-THR vertical pitch 2.5mm size 8x5mm 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, drill diameter 1.2mm, pad diameter 3mm, 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://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PTSM-0,5-4-2.5-H-THR pitch 2.5mm size 12.2x10mm 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, drill diameter 1.2mm, pad diameter 2mm, http://www.produktinfo.conrad.com/datenblaetter/550000-574999/556444-da-01-de-LEITERPLATTENKL__PTSM_0_5__4_2_5_V_THR.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PTSM-0,5-4-2.5-V-THR vertical pitch 2.5mm size 10.5x5mm 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, drill diameter 1.2mm, pad diameter 3mm, 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://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PTSM-0,5-5-2.5-H-THR pitch 2.5mm size 14.7x10mm 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, drill diameter 1.2mm, pad diameter 2mm, http://www.produktinfo.conrad.com/datenblaetter/550000-574999/556444-da-01-de-LEITERPLATTENKL__PTSM_0_5__4_2_5_V_THR.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PTSM-0,5-5-2.5-V-THR vertical pitch 2.5mm size 13x5mm 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, drill diameter 1.2mm, pad diameter 3mm, 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://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PTSM-0,5-6-2.5-H-THR pitch 2.5mm size 17.2x10mm 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, drill diameter 1.2mm, pad diameter 2mm, http://www.produktinfo.conrad.com/datenblaetter/550000-574999/556444-da-01-de-LEITERPLATTENKL__PTSM_0_5__4_2_5_V_THR.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PTSM-0,5-6-2.5-V-THR vertical pitch 2.5mm size 15.5x5mm 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, drill diameter 1.2mm, pad diameter 3mm, 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://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PTSM-0,5-7-2.5-H-THR pitch 2.5mm size 19.7x10mm 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, drill diameter 1.2mm, pad diameter 2mm, http://www.produktinfo.conrad.com/datenblaetter/550000-574999/556444-da-01-de-LEITERPLATTENKL__PTSM_0_5__4_2_5_V_THR.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PTSM-0,5-7-2.5-V-THR vertical pitch 2.5mm size 18x5mm 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, drill diameter 1.2mm, pad diameter 3mm, 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://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PTSM-0,5-8-2.5-H-THR pitch 2.5mm size 22.2x10mm 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, drill diameter 1.2mm, pad diameter 2mm, http://www.produktinfo.conrad.com/datenblaetter/550000-574999/556444-da-01-de-LEITERPLATTENKL__PTSM_0_5__4_2_5_V_THR.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PTSM-0,5-8-2.5-V-THR vertical pitch 2.5mm size 20.5x5mm 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, drill diameter 1.3mm, pad diameter 2.5mm, http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00001_DB_EN.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_RND +THT terminal block RND 205-00001 pitch 5mm size 10x9mm 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, drill diameter 1.3mm, pad diameter 2.5mm, http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00001_DB_EN.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_RND +THT terminal block RND 205-00002 pitch 5mm size 15x9mm 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, drill diameter 1.3mm, pad diameter 2.5mm, http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00001_DB_EN.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_RND +THT terminal block RND 205-00003 pitch 5mm size 20x9mm 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, drill diameter 1.3mm, pad diameter 2.5mm, http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00001_DB_EN.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_RND +THT terminal block RND 205-00004 pitch 5mm size 25x9mm 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, drill diameter 1.3mm, pad diameter 2.5mm, http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00001_DB_EN.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_RND +THT terminal block RND 205-00005 pitch 5mm size 30x9mm 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, drill diameter 1.3mm, pad diameter 2.5mm, http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00001_DB_EN.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_RND +THT terminal block RND 205-00006 pitch 5mm size 35x9mm 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, drill diameter 1.3mm, pad diameter 2.5mm, http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00001_DB_EN.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_RND +THT terminal block RND 205-00007 pitch 5mm size 40x9mm 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, drill diameter 1.3mm, pad diameter 2.5mm, http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00001_DB_EN.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_RND +THT terminal block RND 205-00008 pitch 5mm size 45x9mm 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, drill diameter 1.3mm, pad diameter 2.5mm, http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00001_DB_EN.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_RND +THT terminal block RND 205-00009 pitch 5mm size 50x9mm 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, drill diameter 1.3mm, pad diameter 2.5mm, http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00001_DB_EN.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_RND +THT terminal block RND 205-00010 pitch 5mm size 55x9mm 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, drill diameter 1.3mm, pad diameter 2.5mm, http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00001_DB_EN.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_RND +THT terminal block RND 205-00011 pitch 5mm size 60x9mm 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, drill diameter 1.3mm, pad diameter 2.5mm, http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00012_DB_EN.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_RND +THT terminal block RND 205-00012 pitch 5mm size 10x7.6mm 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, drill diameter 1.3mm, pad diameter 2.5mm, http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00012_DB_EN.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_RND +THT terminal block RND 205-00013 pitch 5mm size 15x7.6mm 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, drill diameter 1.3mm, pad diameter 2.5mm, http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00012_DB_EN.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_RND +THT terminal block RND 205-00014 pitch 5mm size 20x7.6mm 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, drill diameter 1.3mm, pad diameter 2.5mm, http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00012_DB_EN.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_RND +THT terminal block RND 205-00015 pitch 5mm size 25x7.6mm 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, drill diameter 1.3mm, pad diameter 2.5mm, http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00012_DB_EN.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_RND +THT terminal block RND 205-00016 pitch 5mm size 30x7.6mm 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, drill diameter 1.3mm, pad diameter 2.5mm, http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00012_DB_EN.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_RND +THT terminal block RND 205-00017 pitch 5mm size 35x7.6mm 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, drill diameter 1.3mm, pad diameter 2.5mm, http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00012_DB_EN.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_RND +THT terminal block RND 205-00018 pitch 5mm size 40x7.6mm 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, drill diameter 1.3mm, pad diameter 2.5mm, http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00012_DB_EN.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_RND +THT terminal block RND 205-00019 pitch 5mm size 45x7.6mm 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, drill diameter 1.3mm, pad diameter 2.5mm, http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00012_DB_EN.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_RND +THT terminal block RND 205-00020 pitch 5mm size 50x7.6mm 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, drill diameter 1.3mm, pad diameter 2.5mm, http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00012_DB_EN.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_RND +THT terminal block RND 205-00021 pitch 5mm size 55x7.6mm 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, drill diameter 1.3mm, pad diameter 2.5mm, http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00012_DB_EN.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_RND +THT terminal block RND 205-00022 pitch 5mm size 60x7.6mm 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, drill diameter 1.3mm, pad diameter 2.5mm, http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00023_DB_EN.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_RND +THT terminal block RND 205-00023 pitch 10mm size 15x9mm 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, drill diameter 1.3mm, pad diameter 2.5mm, http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00023_DB_EN.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_RND +THT terminal block RND 205-00024 pitch 10mm size 25x9mm 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, drill diameter 1.3mm, pad diameter 2.5mm, http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00023_DB_EN.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_RND +THT terminal block RND 205-00025 pitch 10mm size 35x9mm 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, drill diameter 1.3mm, pad diameter 2.5mm, http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00023_DB_EN.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_RND +THT terminal block RND 205-00026 pitch 10mm size 45x9mm 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, drill diameter 1.3mm, pad diameter 2.5mm, http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00023_DB_EN.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_RND +THT terminal block RND 205-00027 pitch 10mm size 55x9mm 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, drill diameter 1.3mm, pad diameter 2.5mm, http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00023_DB_EN.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_RND +THT terminal block RND 205-00028 pitch 10mm size 65x9mm 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, drill diameter 1.3mm, pad diameter 2.5mm, http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00023_DB_EN.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_RND +THT terminal block RND 205-00029 pitch 10mm size 75x9mm 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, drill diameter 1.3mm, pad diameter 2.5mm, http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00023_DB_EN.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_RND +THT terminal block RND 205-00030 pitch 10mm size 85x9mm 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, drill diameter 1.3mm, pad diameter 2.5mm, http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00023_DB_EN.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_RND +THT terminal block RND 205-00031 pitch 10mm size 95x9mm 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, drill diameter 1.3mm, pad diameter 2.5mm, http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00023_DB_EN.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_RND +THT terminal block RND 205-00032 pitch 10mm size 105x9mm 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, drill diameter 1.3mm, pad diameter 2.5mm, http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00023_DB_EN.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_RND +THT terminal block RND 205-00033 pitch 10mm size 115x9mm 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, drill diameter 1.1mm, pad diameter 2.1mm, http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00045_DB_EN.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_RND +THT terminal block RND 205-00045 pitch 5mm size 10x8.1mm 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, drill diameter 1.1mm, pad diameter 2.1mm, http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00045_DB_EN.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_RND +THT terminal block RND 205-00046 pitch 5mm size 15x8.1mm 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, drill diameter 1.1mm, pad diameter 2.1mm, http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00045_DB_EN.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_RND +THT terminal block RND 205-00047 pitch 5mm size 20x8.1mm 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, drill diameter 1.1mm, pad diameter 2.1mm, http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00045_DB_EN.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_RND +THT terminal block RND 205-00048 pitch 5mm size 25x8.1mm 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, drill diameter 1.1mm, pad diameter 2.1mm, http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00045_DB_EN.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_RND +THT terminal block RND 205-00049 pitch 5mm size 30x8.1mm 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, drill diameter 1.1mm, pad diameter 2.1mm, http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00045_DB_EN.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_RND +THT terminal block RND 205-00050 pitch 5mm size 35x8.1mm 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, drill diameter 1.1mm, pad diameter 2.1mm, http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00045_DB_EN.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_RND +THT terminal block RND 205-00051 pitch 5mm size 40x8.1mm 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, drill diameter 1.1mm, pad diameter 2.1mm, http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00045_DB_EN.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_RND +THT terminal block RND 205-00052 pitch 5mm size 45x8.1mm 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, drill diameter 1.1mm, pad diameter 2.1mm, http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00045_DB_EN.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_RND +THT terminal block RND 205-00053 pitch 5mm size 50x8.1mm 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, drill diameter 1.1mm, pad diameter 2.1mm, http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00045_DB_EN.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_RND +THT terminal block RND 205-00054 pitch 5mm size 55x8.1mm 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, drill diameter 1.1mm, pad diameter 2.1mm, http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00045_DB_EN.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_RND +THT terminal block RND 205-00055 pitch 5mm size 60x8.1mm 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, drill diameter 1.3mm, pad diameter 2.5mm, http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00056_DB_EN.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_RND +THT terminal block RND 205-00056 45Degree pitch 5mm size 10x12.6mm 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, drill diameter 1.3mm, pad diameter 2.5mm, http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00056_DB_EN.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_RND +THT terminal block RND 205-00057 45Degree pitch 5mm size 15x12.6mm 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, drill diameter 1.3mm, pad diameter 2.5mm, http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00056_DB_EN.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_RND +THT terminal block RND 205-00058 45Degree pitch 5mm size 20x12.6mm 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, drill diameter 1.3mm, pad diameter 2.5mm, http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00056_DB_EN.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_RND +THT terminal block RND 205-00059 45Degree pitch 5mm size 25x12.6mm 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, drill diameter 1.3mm, pad diameter 2.5mm, http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00056_DB_EN.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_RND +THT terminal block RND 205-00060 45Degree pitch 5mm size 30x12.6mm 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, drill diameter 1.3mm, pad diameter 2.5mm, http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00056_DB_EN.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_RND +THT terminal block RND 205-00061 45Degree pitch 5mm size 35x12.6mm 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, drill diameter 1.3mm, pad diameter 2.5mm, http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00056_DB_EN.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_RND +THT terminal block RND 205-00062 45Degree pitch 5mm size 40x12.6mm 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, drill diameter 1.3mm, pad diameter 2.5mm, http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00056_DB_EN.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_RND +THT terminal block RND 205-00063 45Degree pitch 5mm size 45x12.6mm 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, drill diameter 1.3mm, pad diameter 2.5mm, http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00056_DB_EN.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_RND +THT terminal block RND 205-00064 45Degree pitch 5mm size 50x12.6mm 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, drill diameter 1.3mm, pad diameter 2.5mm, http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00056_DB_EN.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_RND +THT terminal block RND 205-00065 45Degree pitch 5mm size 55x12.6mm 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, drill diameter 1.3mm, pad diameter 2.5mm, http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00056_DB_EN.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_RND +THT terminal block RND 205-00066 45Degree pitch 5mm size 60x12.6mm 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, drill diameter 1.3mm, pad diameter 2.5mm, http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00067_DB_EN.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_RND +THT terminal block RND 205-00067 pitch 7.5mm size 15x10.3mm 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, drill diameter 1.3mm, pad diameter 2.5mm, http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00067_DB_EN.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_RND +THT terminal block RND 205-00068 pitch 7.5mm size 22.5x10.3mm 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, drill diameter 1.3mm, pad diameter 2.5mm, http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00067_DB_EN.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_RND +THT terminal block RND 205-00069 pitch 7.5mm size 30x10.3mm 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, drill diameter 1.3mm, pad diameter 2.5mm, http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00067_DB_EN.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_RND +THT terminal block RND 205-00070 pitch 7.5mm size 37.5x10.3mm 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, drill diameter 1.3mm, pad diameter 2.5mm, http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00067_DB_EN.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_RND +THT terminal block RND 205-00071 pitch 7.5mm size 45x10.3mm 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, drill diameter 1.3mm, pad diameter 2.5mm, http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00067_DB_EN.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_RND +THT terminal block RND 205-00072 pitch 7.5mm size 52.5x10.3mm 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, drill diameter 1.3mm, pad diameter 2.5mm, http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00067_DB_EN.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_RND +THT terminal block RND 205-00073 pitch 7.5mm size 60x10.3mm 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, drill diameter 1.3mm, pad diameter 2.5mm, http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00067_DB_EN.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_RND +THT terminal block RND 205-00074 pitch 7.5mm size 67.5x10.3mm 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, drill diameter 1.3mm, pad diameter 2.5mm, http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00067_DB_EN.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_RND +THT terminal block RND 205-00075 pitch 7.5mm size 75x10.3mm 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, drill diameter 1.3mm, pad diameter 2.5mm, http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00067_DB_EN.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_RND +THT terminal block RND 205-00076 pitch 7.5mm size 82.5x10.3mm 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, drill diameter 1.3mm, pad diameter 2.5mm, http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00067_DB_EN.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_RND +THT terminal block RND 205-00077 pitch 7.5mm size 90x10.3mm 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, drill diameter 1.3mm, pad diameter 2.5mm, http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00078_DB_EN.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_RND +THT terminal block RND 205-00078 pitch 10mm size 15x10.3mm 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, drill diameter 1.3mm, pad diameter 2.5mm, http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00078_DB_EN.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_RND +THT terminal block RND 205-00079 pitch 10mm size 25x10.3mm 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, drill diameter 1.3mm, pad diameter 2.5mm, http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00078_DB_EN.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_RND +THT terminal block RND 205-00080 pitch 10mm size 35x10.3mm 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, drill diameter 1.3mm, pad diameter 2.5mm, http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00078_DB_EN.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_RND +THT terminal block RND 205-00081 pitch 10mm size 45x10.3mm 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, drill diameter 1.3mm, pad diameter 2.5mm, http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00078_DB_EN.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_RND +THT terminal block RND 205-00082 pitch 10mm size 55x10.3mm 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, drill diameter 1.3mm, pad diameter 2.5mm, http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00078_DB_EN.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_RND +THT terminal block RND 205-00083 pitch 10mm size 65x10.3mm 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, drill diameter 1.3mm, pad diameter 2.5mm, http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00078_DB_EN.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_RND +THT terminal block RND 205-00084 pitch 10mm size 75x10.3mm 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, drill diameter 1.3mm, pad diameter 2.5mm, http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00078_DB_EN.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_RND +THT terminal block RND 205-00085 pitch 10mm size 85x10.3mm 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, drill diameter 1.3mm, pad diameter 2.5mm, http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00078_DB_EN.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_RND +THT terminal block RND 205-00086 pitch 10mm size 95x10.3mm 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, drill diameter 1.3mm, pad diameter 2.5mm, http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00078_DB_EN.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_RND +THT terminal block RND 205-00087 pitch 10mm size 105x10.3mm 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, drill diameter 1.3mm, pad diameter 2.5mm, http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00078_DB_EN.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_RND +THT terminal block RND 205-00088 pitch 10mm size 115x10.3mm 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, drill diameter 1.1mm, pad diameter 2.1mm, http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00232_DB_EN.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_RND +THT terminal block RND 205-00232 pitch 5.08mm size 10.2x8.45mm 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, drill diameter 1.1mm, pad diameter 2.1mm, http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00232_DB_EN.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_RND +THT terminal block RND 205-00233 pitch 5.08mm size 15.2x8.45mm 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, drill diameter 1.1mm, pad diameter 2.1mm, http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00232_DB_EN.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_RND +THT terminal block RND 205-00234 pitch 5.08mm size 20.3x8.45mm 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, drill diameter 1.1mm, pad diameter 2.1mm, http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00232_DB_EN.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_RND +THT terminal block RND 205-00235 pitch 5.08mm size 25.4x8.45mm 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, drill diameter 1.1mm, pad diameter 2.1mm, http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00232_DB_EN.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_RND +THT terminal block RND 205-00236 pitch 5.08mm size 30.5x8.45mm 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, drill diameter 1.1mm, pad diameter 2.1mm, http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00232_DB_EN.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_RND +THT terminal block RND 205-00237 pitch 5.08mm size 35.6x8.45mm 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, drill diameter 1.1mm, pad diameter 2.1mm, http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00232_DB_EN.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_RND +THT terminal block RND 205-00238 pitch 5.08mm size 40.6x8.45mm 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, drill diameter 1.1mm, pad diameter 2.1mm, http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00232_DB_EN.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_RND +THT terminal block RND 205-00239 pitch 5.08mm size 45.7x8.45mm 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, drill diameter 1.1mm, pad diameter 2.1mm, http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00232_DB_EN.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_RND +THT terminal block RND 205-00240 pitch 5.08mm size 50.8x8.45mm 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, drill diameter 1.3mm, pad diameter 2.5mm, http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00023_DB_EN.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_RND +THT terminal block RND 205-00241 pitch 10.2mm size 15.2x8.3mm drill 1.3mm pad 2.5mm +0 +2 +2 +TerminalBlock_RND +TerminalBlock_RND_205-00241_1x11_P5.08mm_Horizontal +terminal block RND 205-00241, 11 pins, pitch 5.08mm, size 55.9x8.45mm, drill diameter 1.1mm, pad diameter 2.1mm, http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00232_DB_EN.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_RND +THT terminal block RND 205-00241 pitch 5.08mm size 55.9x8.45mm drill 1.1mm pad 2.1mm +0 +11 +11 +TerminalBlock_RND +TerminalBlock_RND_205-00242_1x03_P10.16mm_Horizontal +terminal block RND 205-00242, 3 pins, pitch 10.2mm, size 25.4x8.3mm, drill diameter 1.3mm, pad diameter 2.5mm, http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00023_DB_EN.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_RND +THT terminal block RND 205-00242 pitch 10.2mm size 25.4x8.3mm drill 1.3mm pad 2.5mm +0 +3 +3 +TerminalBlock_RND +TerminalBlock_RND_205-00242_1x12_P5.08mm_Horizontal +terminal block RND 205-00242, 12 pins, pitch 5.08mm, size 61x8.45mm, drill diameter 1.1mm, pad diameter 2.1mm, http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00232_DB_EN.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_RND +THT terminal block RND 205-00242 pitch 5.08mm size 61x8.45mm drill 1.1mm pad 2.1mm +0 +12 +12 +TerminalBlock_RND +TerminalBlock_RND_205-00243_1x04_P10.16mm_Horizontal +terminal block RND 205-00243, 4 pins, pitch 10.2mm, size 35.6x8.3mm, drill diameter 1.3mm, pad diameter 2.5mm, http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00023_DB_EN.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_RND +THT terminal block RND 205-00243 pitch 10.2mm size 35.6x8.3mm 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, drill diameter 1.3mm, pad diameter 2.5mm, http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00023_DB_EN.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_RND +THT terminal block RND 205-00244 pitch 10.2mm size 45.7x8.3mm 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, drill diameter 1.3mm, pad diameter 2.5mm, http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00023_DB_EN.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_RND +THT terminal block RND 205-00245 pitch 10.2mm size 55.9x8.3mm 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, drill diameter 1.3mm, pad diameter 2.5mm, http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00023_DB_EN.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_RND +THT terminal block RND 205-00246 pitch 10.2mm size 66x8.3mm 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, drill diameter 1.3mm, pad diameter 2.5mm, http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00023_DB_EN.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_RND +THT terminal block RND 205-00247 pitch 10.2mm size 76.2x8.3mm 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, drill diameter 1.3mm, pad diameter 2.5mm, http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00023_DB_EN.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_RND +THT terminal block RND 205-00248 pitch 10.2mm size 86.4x8.3mm 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, drill diameter 1.3mm, pad diameter 2.5mm, http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00023_DB_EN.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_RND +THT terminal block RND 205-00249 pitch 10.2mm size 96.5x8.3mm 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, drill diameter 1.3mm, pad diameter 2.5mm, http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00023_DB_EN.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_RND +THT terminal block RND 205-00250 pitch 10.2mm size 107x8.3mm 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, drill diameter 1.3mm, pad diameter 2.5mm, http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00023_DB_EN.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_RND +THT terminal block RND 205-00251 pitch 10.2mm size 117x8.3mm 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, drill diameter 1.3mm, pad diameter 2.5mm, http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00276_DB_EN.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_RND +THT terminal block RND 205-00078 vertical pitch 5mm size 10x10mm 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, drill diameter 1.3mm, pad diameter 2.5mm, http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00276_DB_EN.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_RND +THT terminal block RND 205-00079 vertical pitch 5mm size 15x10mm 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, drill diameter 1.3mm, pad diameter 2.5mm, http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00276_DB_EN.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_RND +THT terminal block RND 205-00080 vertical pitch 5mm size 20x10mm 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, drill diameter 1.3mm, pad diameter 2.5mm, http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00276_DB_EN.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_RND +THT terminal block RND 205-00081 vertical pitch 5mm size 25x10mm 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, drill diameter 1.3mm, pad diameter 2.5mm, http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00276_DB_EN.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_RND +THT terminal block RND 205-00082 vertical pitch 5mm size 30x10mm 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, drill diameter 1.3mm, pad diameter 2.5mm, http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00276_DB_EN.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_RND +THT terminal block RND 205-00083 vertical pitch 5mm size 35x10mm 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, drill diameter 1.3mm, pad diameter 2.5mm, http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00276_DB_EN.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_RND +THT terminal block RND 205-00084 vertical pitch 5mm size 40x10mm 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, drill diameter 1.3mm, pad diameter 2.5mm, http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00276_DB_EN.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_RND +THT terminal block RND 205-00085 vertical pitch 5mm size 45x10mm 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, drill diameter 1.3mm, pad diameter 2.5mm, http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00276_DB_EN.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_RND +THT terminal block RND 205-00086 vertical pitch 5mm size 50x10mm 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, drill diameter 1.3mm, pad diameter 2.5mm, http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00276_DB_EN.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_RND +THT terminal block RND 205-00087 vertical pitch 5mm size 55x10mm 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, drill diameter 1.3mm, pad diameter 2.5mm, http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00276_DB_EN.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_RND +THT terminal block RND 205-00088 vertical pitch 5mm size 60x10mm 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, drill diameter 1.3mm, pad diameter 2.5mm, http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00287_DB_EN.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_RND +THT terminal block RND 205-00287 pitch 5.08mm size 10.2x10.6mm 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, drill diameter 1.3mm, pad diameter 2.5mm, http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00287_DB_EN.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_RND +THT terminal block RND 205-00288 pitch 5.08mm size 15.2x10.6mm 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, drill diameter 1.3mm, pad diameter 2.5mm, http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00287_DB_EN.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_RND +THT terminal block RND 205-00289 pitch 5.08mm size 20.3x10.6mm 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, drill diameter 1.3mm, pad diameter 2.5mm, http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00287_DB_EN.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_RND +THT terminal block RND 205-00290 pitch 5.08mm size 25.4x10.6mm 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, drill diameter 1.3mm, pad diameter 2.5mm, http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00287_DB_EN.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_RND +THT terminal block RND 205-00291 pitch 5.08mm size 30.5x10.6mm 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, drill diameter 1.3mm, pad diameter 2.5mm, http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00287_DB_EN.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_RND +THT terminal block RND 205-00292 pitch 5.08mm size 35.6x10.6mm 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, drill diameter 1.3mm, pad diameter 2.5mm, http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00287_DB_EN.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_RND +THT terminal block RND 205-00293 pitch 5.08mm size 40.6x10.6mm 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, drill diameter 1.3mm, pad diameter 2.5mm, http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00287_DB_EN.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_RND +THT terminal block RND 205-00294 pitch 5.08mm size 45.7x10.6mm 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, drill diameter 1.3mm, pad diameter 2.5mm, http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00287_DB_EN.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_RND +THT terminal block RND 205-00295 pitch 5.08mm size 50.8x10.6mm 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, drill diameter 1.3mm, pad diameter 2.5mm, http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00287_DB_EN.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_RND +THT terminal block RND 205-00296 pitch 5.08mm size 55.9x10.6mm 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, drill diameter 1.3mm, pad diameter 2.5mm, http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00287_DB_EN.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_RND +THT terminal block RND 205-00297 pitch 5.08mm size 61x10.6mm 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, drill diameter 1.3mm, pad diameter 2.5mm, http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00298_DB_EN.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_RND +THT terminal block RND 205-00298 pitch 10mm size 15x8.1mm 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, drill diameter 1.3mm, pad diameter 2.5mm, http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00298_DB_EN.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_RND +THT terminal block RND 205-00299 pitch 10mm size 25x8.1mm 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, drill diameter 1.3mm, pad diameter 2.5mm, http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00298_DB_EN.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_RND +THT terminal block RND 205-00300 pitch 10mm size 35x8.1mm 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, drill diameter 1.3mm, pad diameter 2.5mm, http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00298_DB_EN.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_RND +THT terminal block RND 205-00301 pitch 10mm size 45x8.1mm 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, drill diameter 1.3mm, pad diameter 2.5mm, http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00298_DB_EN.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_RND +THT terminal block RND 205-00302 pitch 10mm size 55x8.1mm 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, drill diameter 1.3mm, pad diameter 2.5mm, http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00298_DB_EN.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_RND +THT terminal block RND 205-00303 pitch 10mm size 65x8.1mm 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, drill diameter 1.3mm, pad diameter 2.5mm, http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00298_DB_EN.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_RND +THT terminal block RND 205-00304 pitch 10mm size 75x8.1mm 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, drill diameter 1.3mm, pad diameter 2.5mm, http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00298_DB_EN.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_RND +THT terminal block RND 205-00305 pitch 10mm size 85x8.1mm 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, drill diameter 1.3mm, pad diameter 2.5mm, http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00298_DB_EN.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_RND +THT terminal block RND 205-00306 pitch 10mm size 95x8.1mm 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, drill diameter 1.3mm, pad diameter 2.5mm, http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00298_DB_EN.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_RND +THT terminal block RND 205-00307 pitch 10mm size 105x8.1mm 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, drill diameter 1.3mm, pad diameter 2.5mm, http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00298_DB_EN.pdf, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_RND +THT terminal block RND 205-00308 pitch 10mm size 115x8.1mm 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.9x6.5mm, drill diameter 1.1mm, pad diameter 2.1mm, 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://gitlab.com/kicad/libraries/kicad-footprint-generator/scripts/TerminalBlock_TE-Connectivity +THT Terminal Block TE 1-282834-0 pitch 2.54mm size 25.9x6.5mm 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, drill diameter 1.1mm, pad diameter 2.1mm, 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://gitlab.com/kicad/libraries/kicad-footprint-generator/scripts/TerminalBlock_TE-Connectivity +THT Terminal Block TE 1-282834-1 pitch 2.54mm size 28.4x6.5mm 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.9x6.5mm, drill diameter 1.1mm, pad diameter 2.1mm, 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://gitlab.com/kicad/libraries/kicad-footprint-generator/scripts/TerminalBlock_TE-Connectivity +THT Terminal Block TE 1-282834-2 pitch 2.54mm size 30.9x6.5mm 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, drill diameter 1.1mm, pad diameter 2.1mm, 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://gitlab.com/kicad/libraries/kicad-footprint-generator/scripts/TerminalBlock_TE-Connectivity +THT Terminal Block TE 282834-2 pitch 2.54mm size 5.54x6.5mm 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, drill diameter 1.1mm, pad diameter 2.1mm, 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://gitlab.com/kicad/libraries/kicad-footprint-generator/scripts/TerminalBlock_TE-Connectivity +THT Terminal Block TE 282834-3 pitch 2.54mm size 8.08x6.5mm 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.6x6.5mm, drill diameter 1.1mm, pad diameter 2.1mm, 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://gitlab.com/kicad/libraries/kicad-footprint-generator/scripts/TerminalBlock_TE-Connectivity +THT Terminal Block TE 282834-4 pitch 2.54mm size 10.6x6.5mm 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.2x6.5mm, drill diameter 1.1mm, pad diameter 2.1mm, 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://gitlab.com/kicad/libraries/kicad-footprint-generator/scripts/TerminalBlock_TE-Connectivity +THT Terminal Block TE 282834-5 pitch 2.54mm size 13.2x6.5mm 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, drill diameter 1.1mm, pad diameter 2.1mm, 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://gitlab.com/kicad/libraries/kicad-footprint-generator/scripts/TerminalBlock_TE-Connectivity +THT Terminal Block TE 282834-6 pitch 2.54mm size 15.7x6.5mm 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.2x6.5mm, drill diameter 1.1mm, pad diameter 2.1mm, 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://gitlab.com/kicad/libraries/kicad-footprint-generator/scripts/TerminalBlock_TE-Connectivity +THT Terminal Block TE 282834-7 pitch 2.54mm size 18.2x6.5mm 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.8x6.5mm, drill diameter 1.1mm, pad diameter 2.1mm, 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://gitlab.com/kicad/libraries/kicad-footprint-generator/scripts/TerminalBlock_TE-Connectivity +THT Terminal Block TE 282834-8 pitch 2.54mm size 20.8x6.5mm 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.3x6.5mm, drill diameter 1.1mm, pad diameter 2.1mm, 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://gitlab.com/kicad/libraries/kicad-footprint-generator/scripts/TerminalBlock_TE-Connectivity +THT Terminal Block TE 282834-9 pitch 2.54mm size 23.3x6.5mm drill 1.1mm pad 2.1mm +0 +9 +9 +TerminalBlock_WAGO +TerminalBlock_WAGO_233-502_2x02_P2.54mm +Terminal Block Wago 233-502, 2 pins, pitch 2.54 mm, https://www.wago.com/de/leiterplattenanschluss/klemmenleiste-fuer-leiterplatten/p/233-502 +THT +0 +4 +2 +TerminalBlock_WAGO +TerminalBlock_WAGO_233-503_2x03_P2.54mm +Terminal Block Wago 233-503, 3 pins, pitch 2.54 mm, https://www.wago.com/de/leiterplattenanschluss/klemmenleiste-fuer-leiterplatten/p/233-503 +THT +0 +6 +3 +TerminalBlock_WAGO +TerminalBlock_WAGO_233-504_2x04_P2.54mm +Terminal Block Wago 233-504, 4 pins, pitch 2.54 mm, https://www.wago.com/de/leiterplattenanschluss/klemmenleiste-fuer-leiterplatten/p/233-504 +THT +0 +8 +4 +TerminalBlock_WAGO +TerminalBlock_WAGO_233-505_2x05_P2.54mm +Terminal Block Wago 233-505, 5 pins, pitch 2.54 mm, https://www.wago.com/de/leiterplattenanschluss/klemmenleiste-fuer-leiterplatten/p/233-505 +THT +0 +10 +5 +TerminalBlock_WAGO +TerminalBlock_WAGO_233-506_2x06_P2.54mm +Terminal Block Wago 233-506, 6 pins, pitch 2.54 mm, https://www.wago.com/de/leiterplattenanschluss/klemmenleiste-fuer-leiterplatten/p/233-506 +THT +0 +12 +6 +TerminalBlock_WAGO +TerminalBlock_WAGO_233-507_2x07_P2.54mm +Terminal Block Wago 233-507, 7 pins, pitch 2.54 mm, https://www.wago.com/de/leiterplattenanschluss/klemmenleiste-fuer-leiterplatten/p/233-507 +THT +0 +14 +7 +TerminalBlock_WAGO +TerminalBlock_WAGO_233-508_2x08_P2.54mm +Terminal Block Wago 233-508, 8 pins, pitch 2.54 mm, https://www.wago.com/de/leiterplattenanschluss/klemmenleiste-fuer-leiterplatten/p/233-508 +THT +0 +16 +8 +TerminalBlock_WAGO +TerminalBlock_WAGO_233-509_2x09_P2.54mm +Terminal Block Wago 233-509, 9 pins, pitch 2.54 mm, https://www.wago.com/de/leiterplattenanschluss/klemmenleiste-fuer-leiterplatten/p/233-509 +THT +0 +18 +9 +TerminalBlock_WAGO +TerminalBlock_WAGO_233-510_2x10_P2.54mm +Terminal Block Wago 233-510, 10 pins, pitch 2.54 mm, https://www.wago.com/de/leiterplattenanschluss/klemmenleiste-fuer-leiterplatten/p/233-510 +THT +0 +20 +10 +TerminalBlock_WAGO +TerminalBlock_WAGO_233-512_2x12_P2.54mm +Terminal Block Wago 233-512, 12 pins, pitch 2.54 mm, https://www.wago.com/de/leiterplattenanschluss/klemmenleiste-fuer-leiterplatten/p/233-512 +THT +0 +24 +12 +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, drill diameter 1.15mm, pad diameter 3mm, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-101 45Degree pitch 5mm size 7.3x14mm 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, drill diameter 1.15mm, pad diameter 3mm, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-102 45Degree pitch 5mm size 12.3x14mm 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, drill diameter 1.15mm, pad diameter 3mm, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-103 45Degree pitch 5mm size 17.3x14mm 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, drill diameter 1.15mm, pad diameter 3mm, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-104 45Degree pitch 5mm size 22.3x14mm 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, drill diameter 1.15mm, pad diameter 3mm, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-105 45Degree pitch 5mm size 27.3x14mm 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, drill diameter 1.15mm, pad diameter 3mm, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-106 45Degree pitch 5mm size 32.3x14mm 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, drill diameter 1.15mm, pad diameter 3mm, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-107 45Degree pitch 5mm size 37.3x14mm 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, drill diameter 1.15mm, pad diameter 3mm, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-108 45Degree pitch 5mm size 42.3x14mm 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, drill diameter 1.15mm, pad diameter 3mm, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-109 45Degree pitch 5mm size 47.3x14mm drill 1.15mm pad 3mm +0 +9 +9 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-110_1x10_P5.00mm_45Degree +Terminal Block WAGO 236-110, 45Degree (cable under 45degree), 10 pins, pitch 5mm, size 52.3x14mm, drill diameter 1.15mm, pad diameter 3mm, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-110 45Degree pitch 5mm size 52.3x14mm drill 1.15mm pad 3mm +0 +10 +10 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-111_1x11_P5.00mm_45Degree +Terminal Block WAGO 236-111, 45Degree (cable under 45degree), 11 pins, pitch 5mm, size 57.3x14mm, drill diameter 1.15mm, pad diameter 3mm, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-111 45Degree pitch 5mm size 57.3x14mm drill 1.15mm pad 3mm +0 +11 +11 +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, drill diameter 1.15mm, pad diameter 3mm, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-112 45Degree pitch 5mm size 62.3x14mm drill 1.15mm pad 3mm +0 +12 +12 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-113_1x13_P5.00mm_45Degree +Terminal Block WAGO 236-113, 45Degree (cable under 45degree), 13 pins, pitch 5mm, size 67.3x14mm, drill diameter 1.15mm, pad diameter 3mm, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-113 45Degree pitch 5mm size 67.3x14mm drill 1.15mm pad 3mm +0 +13 +13 +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, drill diameter 1.15mm, pad diameter 3mm, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-114 45Degree pitch 5mm size 72.3x14mm drill 1.15mm pad 3mm +0 +14 +14 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-115_1x15_P5.00mm_45Degree +Terminal Block WAGO 236-115, 45Degree (cable under 45degree), 15 pins, pitch 5mm, size 77.3x14mm, drill diameter 1.15mm, pad diameter 3mm, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-115 45Degree pitch 5mm size 77.3x14mm drill 1.15mm pad 3mm +0 +15 +15 +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, drill diameter 1.15mm, pad diameter 3mm, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-116 45Degree pitch 5mm size 82.3x14mm 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, drill diameter 1.15mm, pad diameter 3mm, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-124 45Degree pitch 5mm size 122x14mm 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, drill diameter 1.15mm, pad diameter 3mm, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-136 45Degree pitch 5mm size 182x14mm 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, drill diameter 1.15mm, pad diameter 3mm, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-148 45Degree pitch 5mm size 242x14mm 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, drill diameter 1.15mm, pad diameter 3mm, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-201 45Degree pitch 7.5mm size 9.8x14mm 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, drill diameter 1.15mm, pad diameter 3mm, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-202 45Degree pitch 7.5mm size 17.3x14mm 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, drill diameter 1.15mm, pad diameter 3mm, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-203 45Degree pitch 7.5mm size 24.8x14mm 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, drill diameter 1.15mm, pad diameter 3mm, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-204 45Degree pitch 7.5mm size 32.3x14mm 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, drill diameter 1.15mm, pad diameter 3mm, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-205 45Degree pitch 7.5mm size 39.8x14mm 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, drill diameter 1.15mm, pad diameter 3mm, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-206 45Degree pitch 7.5mm size 47.3x14mm 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, drill diameter 1.15mm, pad diameter 3mm, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-207 45Degree pitch 7.5mm size 54.8x14mm 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, drill diameter 1.15mm, pad diameter 3mm, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-208 45Degree pitch 7.5mm size 62.3x14mm 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, drill diameter 1.15mm, pad diameter 3mm, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-209 45Degree pitch 7.5mm size 69.8x14mm drill 1.15mm pad 3mm +0 +9 +9 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-210_1x10_P7.50mm_45Degree +Terminal Block WAGO 236-210, 45Degree (cable under 45degree), 10 pins, pitch 7.5mm, size 77.3x14mm, drill diameter 1.15mm, pad diameter 3mm, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-210 45Degree pitch 7.5mm size 77.3x14mm drill 1.15mm pad 3mm +0 +10 +10 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-211_1x11_P7.50mm_45Degree +Terminal Block WAGO 236-211, 45Degree (cable under 45degree), 11 pins, pitch 7.5mm, size 84.8x14mm, drill diameter 1.15mm, pad diameter 3mm, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-211 45Degree pitch 7.5mm size 84.8x14mm drill 1.15mm pad 3mm +0 +11 +11 +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, drill diameter 1.15mm, pad diameter 3mm, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-212 45Degree pitch 7.5mm size 92.3x14mm drill 1.15mm pad 3mm +0 +12 +12 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-213_1x13_P7.50mm_45Degree +Terminal Block WAGO 236-213, 45Degree (cable under 45degree), 13 pins, pitch 7.5mm, size 99.8x14mm, drill diameter 1.15mm, pad diameter 3mm, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-213 45Degree pitch 7.5mm size 99.8x14mm drill 1.15mm pad 3mm +0 +13 +13 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-214_1x14_P7.50mm_45Degree +Terminal Block WAGO 236-214, 45Degree (cable under 45degree), 14 pins, pitch 7.5mm, size 107x14mm, drill diameter 1.15mm, pad diameter 3mm, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-214 45Degree pitch 7.5mm size 107x14mm drill 1.15mm pad 3mm +0 +14 +14 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-215_1x15_P7.50mm_45Degree +Terminal Block WAGO 236-215, 45Degree (cable under 45degree), 15 pins, pitch 7.5mm, size 115x14mm, drill diameter 1.15mm, pad diameter 3mm, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-215 45Degree pitch 7.5mm size 115x14mm drill 1.15mm pad 3mm +0 +15 +15 +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, drill diameter 1.15mm, pad diameter 3mm, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-216 45Degree pitch 7.5mm size 122x14mm 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, drill diameter 1.15mm, pad diameter 3mm, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-224 45Degree pitch 7.5mm size 182x14mm 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, drill diameter 1.15mm, pad diameter 3mm, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-301 45Degree pitch 10mm size 12.3x14mm 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, drill diameter 1.15mm, pad diameter 3mm, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-302 45Degree pitch 10mm size 22.3x14mm 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, drill diameter 1.15mm, pad diameter 3mm, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-303 45Degree pitch 10mm size 32.3x14mm 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, drill diameter 1.15mm, pad diameter 3mm, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-304 45Degree pitch 10mm size 42.3x14mm 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, drill diameter 1.15mm, pad diameter 3mm, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-305 45Degree pitch 10mm size 52.3x14mm 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, drill diameter 1.15mm, pad diameter 3mm, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-306 45Degree pitch 10mm size 62.3x14mm drill 1.15mm pad 3mm +0 +6 +6 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-307_1x07_P10.00mm_45Degree +Terminal Block WAGO 236-307, 45Degree (cable under 45degree), 7 pins, pitch 10mm, size 72.3x14mm, drill diameter 1.15mm, pad diameter 3mm, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-307 45Degree pitch 10mm size 72.3x14mm drill 1.15mm pad 3mm +0 +7 +7 +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, drill diameter 1.15mm, pad diameter 3mm, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-308 45Degree pitch 10mm size 82.3x14mm 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, drill diameter 1.15mm, pad diameter 3mm, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-309 45Degree pitch 10mm size 92.3x14mm drill 1.15mm pad 3mm +0 +9 +9 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-310_1x10_P10.00mm_45Degree +Terminal Block WAGO 236-310, 45Degree (cable under 45degree), 10 pins, pitch 10mm, size 102x14mm, drill diameter 1.15mm, pad diameter 3mm, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-310 45Degree pitch 10mm size 102x14mm drill 1.15mm pad 3mm +0 +10 +10 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-311_1x11_P10.00mm_45Degree +Terminal Block WAGO 236-311, 45Degree (cable under 45degree), 11 pins, pitch 10mm, size 112x14mm, drill diameter 1.15mm, pad diameter 3mm, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-311 45Degree pitch 10mm size 112x14mm drill 1.15mm pad 3mm +0 +11 +11 +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, drill diameter 1.15mm, pad diameter 3mm, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-312 45Degree pitch 10mm size 122x14mm drill 1.15mm pad 3mm +0 +12 +12 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-313_1x13_P10.00mm_45Degree +Terminal Block WAGO 236-313, 45Degree (cable under 45degree), 13 pins, pitch 10mm, size 132x14mm, drill diameter 1.15mm, pad diameter 3mm, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-313 45Degree pitch 10mm size 132x14mm drill 1.15mm pad 3mm +0 +13 +13 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-314_1x14_P10.00mm_45Degree +Terminal Block WAGO 236-314, 45Degree (cable under 45degree), 14 pins, pitch 10mm, size 142x14mm, drill diameter 1.15mm, pad diameter 3mm, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-314 45Degree pitch 10mm size 142x14mm drill 1.15mm pad 3mm +0 +14 +14 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-315_1x15_P10.00mm_45Degree +Terminal Block WAGO 236-315, 45Degree (cable under 45degree), 15 pins, pitch 10mm, size 152x14mm, drill diameter 1.15mm, pad diameter 3mm, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-315 45Degree pitch 10mm size 152x14mm drill 1.15mm pad 3mm +0 +15 +15 +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, drill diameter 1.15mm, pad diameter 3mm, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-316 45Degree pitch 10mm size 162x14mm 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, drill diameter 1.15mm, pad diameter 3mm, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-324 45Degree pitch 10mm size 242x14mm 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, drill diameter 1.15mm, pad diameter 3mm, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-401 45Degree pitch 5mm size 7.3x14mm 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, drill diameter 1.15mm, pad diameter 3mm, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-402 45Degree pitch 5mm size 12.3x14mm 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, drill diameter 1.15mm, pad diameter 3mm, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-403 45Degree pitch 5mm size 17.3x14mm 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, drill diameter 1.15mm, pad diameter 3mm, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-404 45Degree pitch 5mm size 22.3x14mm 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, drill diameter 1.15mm, pad diameter 3mm, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-405 45Degree pitch 5mm size 27.3x14mm 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, drill diameter 1.15mm, pad diameter 3mm, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-406 45Degree pitch 5mm size 32.3x14mm 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, drill diameter 1.15mm, pad diameter 3mm, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-407 45Degree pitch 5mm size 37.3x14mm 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, drill diameter 1.15mm, pad diameter 3mm, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-408 45Degree pitch 5mm size 42.3x14mm 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, drill diameter 1.15mm, pad diameter 3mm, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-409 45Degree pitch 5mm size 47.3x14mm drill 1.15mm pad 3mm +0 +18 +9 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-410_1x10_P5.00mm_45Degree +Terminal Block WAGO 236-410, 45Degree (cable under 45degree), 10 pins, pitch 5mm, size 52.3x14mm, drill diameter 1.15mm, pad diameter 3mm, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-410 45Degree pitch 5mm size 52.3x14mm drill 1.15mm pad 3mm +0 +20 +10 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-411_1x11_P5.00mm_45Degree +Terminal Block WAGO 236-411, 45Degree (cable under 45degree), 11 pins, pitch 5mm, size 57.3x14mm, drill diameter 1.15mm, pad diameter 3mm, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-411 45Degree pitch 5mm size 57.3x14mm drill 1.15mm pad 3mm +0 +22 +11 +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, drill diameter 1.15mm, pad diameter 3mm, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-412 45Degree pitch 5mm size 62.3x14mm drill 1.15mm pad 3mm +0 +24 +12 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-413_1x13_P5.00mm_45Degree +Terminal Block WAGO 236-413, 45Degree (cable under 45degree), 13 pins, pitch 5mm, size 67.3x14mm, drill diameter 1.15mm, pad diameter 3mm, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-413 45Degree pitch 5mm size 67.3x14mm drill 1.15mm pad 3mm +0 +26 +13 +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, drill diameter 1.15mm, pad diameter 3mm, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-414 45Degree pitch 5mm size 72.3x14mm drill 1.15mm pad 3mm +0 +28 +14 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-415_1x15_P5.00mm_45Degree +Terminal Block WAGO 236-415, 45Degree (cable under 45degree), 15 pins, pitch 5mm, size 77.3x14mm, drill diameter 1.15mm, pad diameter 3mm, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-415 45Degree pitch 5mm size 77.3x14mm drill 1.15mm pad 3mm +0 +30 +15 +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, drill diameter 1.15mm, pad diameter 3mm, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-416 45Degree pitch 5mm size 82.3x14mm 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, drill diameter 1.15mm, pad diameter 3mm, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-424 45Degree pitch 5mm size 122x14mm 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, drill diameter 1.15mm, pad diameter 3mm, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-436 45Degree pitch 5mm size 182x14mm 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, drill diameter 1.15mm, pad diameter 3mm, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-448 45Degree pitch 5mm size 242x14mm 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, drill diameter 1.15mm, pad diameter 3mm, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-501 45Degree pitch 7.5mm size 9.8x14mm 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, drill diameter 1.15mm, pad diameter 3mm, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-502 45Degree pitch 7.5mm size 17.3x14mm 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, drill diameter 1.15mm, pad diameter 3mm, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-503 45Degree pitch 7.5mm size 24.8x14mm 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, drill diameter 1.15mm, pad diameter 3mm, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-504 45Degree pitch 7.5mm size 32.3x14mm 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, drill diameter 1.15mm, pad diameter 3mm, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-505 45Degree pitch 7.5mm size 39.8x14mm 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, drill diameter 1.15mm, pad diameter 3mm, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-506 45Degree pitch 7.5mm size 47.3x14mm 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, drill diameter 1.15mm, pad diameter 3mm, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-507 45Degree pitch 7.5mm size 54.8x14mm 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, drill diameter 1.15mm, pad diameter 3mm, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-508 45Degree pitch 7.5mm size 62.3x14mm 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, drill diameter 1.15mm, pad diameter 3mm, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-509 45Degree pitch 7.5mm size 69.8x14mm drill 1.15mm pad 3mm +0 +18 +9 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-510_1x10_P7.50mm_45Degree +Terminal Block WAGO 236-510, 45Degree (cable under 45degree), 10 pins, pitch 7.5mm, size 77.3x14mm, drill diameter 1.15mm, pad diameter 3mm, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-510 45Degree pitch 7.5mm size 77.3x14mm drill 1.15mm pad 3mm +0 +20 +10 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-511_1x11_P7.50mm_45Degree +Terminal Block WAGO 236-511, 45Degree (cable under 45degree), 11 pins, pitch 7.5mm, size 84.8x14mm, drill diameter 1.15mm, pad diameter 3mm, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-511 45Degree pitch 7.5mm size 84.8x14mm drill 1.15mm pad 3mm +0 +22 +11 +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, drill diameter 1.15mm, pad diameter 3mm, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-512 45Degree pitch 7.5mm size 92.3x14mm drill 1.15mm pad 3mm +0 +24 +12 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-513_1x13_P7.50mm_45Degree +Terminal Block WAGO 236-513, 45Degree (cable under 45degree), 13 pins, pitch 7.5mm, size 99.8x14mm, drill diameter 1.15mm, pad diameter 3mm, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-513 45Degree pitch 7.5mm size 99.8x14mm drill 1.15mm pad 3mm +0 +26 +13 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-514_1x14_P7.50mm_45Degree +Terminal Block WAGO 236-514, 45Degree (cable under 45degree), 14 pins, pitch 7.5mm, size 107x14mm, drill diameter 1.15mm, pad diameter 3mm, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-514 45Degree pitch 7.5mm size 107x14mm drill 1.15mm pad 3mm +0 +28 +14 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-515_1x15_P7.50mm_45Degree +Terminal Block WAGO 236-515, 45Degree (cable under 45degree), 15 pins, pitch 7.5mm, size 115x14mm, drill diameter 1.15mm, pad diameter 3mm, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-515 45Degree pitch 7.5mm size 115x14mm drill 1.15mm pad 3mm +0 +30 +15 +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, drill diameter 1.15mm, pad diameter 3mm, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-516 45Degree pitch 7.5mm size 122x14mm 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, drill diameter 1.15mm, pad diameter 3mm, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-524 45Degree pitch 7.5mm size 182x14mm 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, drill diameter 1.15mm, pad diameter 3mm, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-601 45Degree pitch 10mm size 12.3x14mm 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, drill diameter 1.15mm, pad diameter 3mm, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-602 45Degree pitch 10mm size 22.3x14mm 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, drill diameter 1.15mm, pad diameter 3mm, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-603 45Degree pitch 10mm size 32.3x14mm 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, drill diameter 1.15mm, pad diameter 3mm, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-604 45Degree pitch 10mm size 42.3x14mm 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, drill diameter 1.15mm, pad diameter 3mm, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-605 45Degree pitch 10mm size 52.3x14mm 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, drill diameter 1.15mm, pad diameter 3mm, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-606 45Degree pitch 10mm size 62.3x14mm drill 1.15mm pad 3mm +0 +12 +6 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-607_1x07_P10.00mm_45Degree +Terminal Block WAGO 236-607, 45Degree (cable under 45degree), 7 pins, pitch 10mm, size 72.3x14mm, drill diameter 1.15mm, pad diameter 3mm, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-607 45Degree pitch 10mm size 72.3x14mm drill 1.15mm pad 3mm +0 +14 +7 +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, drill diameter 1.15mm, pad diameter 3mm, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-608 45Degree pitch 10mm size 82.3x14mm 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, drill diameter 1.15mm, pad diameter 3mm, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-609 45Degree pitch 10mm size 92.3x14mm drill 1.15mm pad 3mm +0 +18 +9 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-610_1x10_P10.00mm_45Degree +Terminal Block WAGO 236-610, 45Degree (cable under 45degree), 10 pins, pitch 10mm, size 102x14mm, drill diameter 1.15mm, pad diameter 3mm, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-610 45Degree pitch 10mm size 102x14mm drill 1.15mm pad 3mm +0 +20 +10 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-611_1x11_P10.00mm_45Degree +Terminal Block WAGO 236-611, 45Degree (cable under 45degree), 11 pins, pitch 10mm, size 112x14mm, drill diameter 1.15mm, pad diameter 3mm, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-611 45Degree pitch 10mm size 112x14mm drill 1.15mm pad 3mm +0 +22 +11 +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, drill diameter 1.15mm, pad diameter 3mm, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-612 45Degree pitch 10mm size 122x14mm drill 1.15mm pad 3mm +0 +24 +12 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-613_1x13_P10.00mm_45Degree +Terminal Block WAGO 236-613, 45Degree (cable under 45degree), 13 pins, pitch 10mm, size 132x14mm, drill diameter 1.15mm, pad diameter 3mm, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-613 45Degree pitch 10mm size 132x14mm drill 1.15mm pad 3mm +0 +26 +13 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-614_1x14_P10.00mm_45Degree +Terminal Block WAGO 236-614, 45Degree (cable under 45degree), 14 pins, pitch 10mm, size 142x14mm, drill diameter 1.15mm, pad diameter 3mm, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-614 45Degree pitch 10mm size 142x14mm drill 1.15mm pad 3mm +0 +28 +14 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-615_1x15_P10.00mm_45Degree +Terminal Block WAGO 236-615, 45Degree (cable under 45degree), 15 pins, pitch 10mm, size 152x14mm, drill diameter 1.15mm, pad diameter 3mm, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-615 45Degree pitch 10mm size 152x14mm drill 1.15mm pad 3mm +0 +30 +15 +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, drill diameter 1.15mm, pad diameter 3mm, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-616 45Degree pitch 10mm size 162x14mm 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, drill diameter 1.15mm, pad diameter 3mm, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-624 45Degree pitch 10mm size 242x14mm 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, drill diameter 1.2mm, pad diameter 3mm, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 804-101 45Degree pitch 5mm size 6.5x15mm 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, drill diameter 1.2mm, pad diameter 3mm, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 804-102 45Degree pitch 5mm size 11.5x15mm 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, drill diameter 1.2mm, pad diameter 3mm, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 804-103 45Degree pitch 5mm size 16.5x15mm 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, drill diameter 1.2mm, pad diameter 3mm, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 804-104 45Degree pitch 5mm size 21.5x15mm 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, drill diameter 1.2mm, pad diameter 3mm, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 804-105 45Degree pitch 5mm size 26.5x15mm 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, drill diameter 1.2mm, pad diameter 3mm, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 804-106 45Degree pitch 5mm size 31.5x15mm 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, drill diameter 1.2mm, pad diameter 3mm, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 804-107 45Degree pitch 5mm size 36.5x15mm 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, drill diameter 1.2mm, pad diameter 3mm, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 804-108 45Degree pitch 5mm size 41.5x15mm 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, drill diameter 1.2mm, pad diameter 3mm, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 804-109 45Degree pitch 5mm size 46.5x15mm 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, drill diameter 1.2mm, pad diameter 3mm, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 804-110 45Degree pitch 5mm size 51.5x15mm 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, drill diameter 1.2mm, pad diameter 3mm, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 804-111 45Degree pitch 5mm size 56.5x15mm 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, drill diameter 1.2mm, pad diameter 3mm, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 804-112 45Degree pitch 5mm size 61.5x15mm 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, drill diameter 1.2mm, pad diameter 3mm, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 804-113 45Degree pitch 5mm size 66.5x15mm 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, drill diameter 1.2mm, pad diameter 3mm, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 804-114 45Degree pitch 5mm size 71.5x15mm 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, drill diameter 1.2mm, pad diameter 3mm, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 804-115 45Degree pitch 5mm size 76.5x15mm 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, drill diameter 1.2mm, pad diameter 3mm, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 804-116 45Degree pitch 5mm size 81.5x15mm 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, drill diameter 1.2mm, pad diameter 3mm, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 804-124 45Degree pitch 5mm size 122x15mm 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, drill diameter 1.2mm, pad diameter 3mm, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 804-301 45Degree pitch 7.5mm size 6.5x15mm 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, drill diameter 1.2mm, pad diameter 3mm, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 804-302 45Degree pitch 7.5mm size 14x15mm 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, drill diameter 1.2mm, pad diameter 3mm, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 804-303 45Degree pitch 7.5mm size 21.5x15mm 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, drill diameter 1.2mm, pad diameter 3mm, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 804-304 45Degree pitch 7.5mm size 29x15mm 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, drill diameter 1.2mm, pad diameter 3mm, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 804-305 45Degree pitch 7.5mm size 36.5x15mm 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, drill diameter 1.2mm, pad diameter 3mm, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 804-306 45Degree pitch 7.5mm size 44x15mm 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, drill diameter 1.2mm, pad diameter 3mm, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 804-307 45Degree pitch 7.5mm size 51.5x15mm 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, drill diameter 1.2mm, pad diameter 3mm, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 804-308 45Degree pitch 7.5mm size 59x15mm 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, drill diameter 1.2mm, pad diameter 3mm, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 804-309 45Degree pitch 7.5mm size 66.5x15mm 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, drill diameter 1.2mm, pad diameter 3mm, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 804-310 45Degree pitch 7.5mm size 74x15mm 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, drill diameter 1.2mm, pad diameter 3mm, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 804-311 45Degree pitch 7.5mm size 81.5x15mm 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, drill diameter 1.2mm, pad diameter 3mm, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 804-312 45Degree pitch 7.5mm size 89x15mm 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, drill diameter 1.2mm, pad diameter 3mm, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 804-316 45Degree pitch 7.5mm size 119x15mm 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, drill diameter 1.2mm, pad diameter 3mm, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 804-324 45Degree pitch 7.5mm size 179x15mm drill 1.2mm pad 3mm +0 +48 +24 +TerminalBlock_WAGO +TerminalBlock_WAGO_2601-1102_1x02_P3.50mm_Horizontal +Terminal Block WAGO 2601-1102, 2 pins, pitch 3.5mm, size 8.5x14.5mm, drill diameter 1.2mm, pad diameter 2.3mm, https://www.wago.com/global/pcb-terminal-blocks-and-pluggable-connectors/pcb-terminal-block/p/2601-1102, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 2601-1102 pitch 3.5mm size 8.5x14.5mm drill 1.2mm pad 2.3mm +0 +4 +2 +TerminalBlock_WAGO +TerminalBlock_WAGO_2601-1103_1x03_P3.50mm_Horizontal +Terminal Block WAGO 2601-1103, 3 pins, pitch 3.5mm, size 12x14.5mm, drill diameter 1.2mm, pad diameter 2.3mm, https://www.wago.com/global/pcb-terminal-blocks-and-pluggable-connectors/pcb-terminal-block/p/2601-1103, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 2601-1103 pitch 3.5mm size 12x14.5mm drill 1.2mm pad 2.3mm +0 +6 +3 +TerminalBlock_WAGO +TerminalBlock_WAGO_2601-1104_1x04_P3.50mm_Horizontal +Terminal Block WAGO 2601-1104, 4 pins, pitch 3.5mm, size 15.5x14.5mm, drill diameter 1.2mm, pad diameter 2.3mm, https://www.wago.com/global/pcb-terminal-blocks-and-pluggable-connectors/pcb-terminal-block/p/2601-1104, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 2601-1104 pitch 3.5mm size 15.5x14.5mm drill 1.2mm pad 2.3mm +0 +8 +4 +TerminalBlock_WAGO +TerminalBlock_WAGO_2601-1105_1x05_P3.50mm_Horizontal +Terminal Block WAGO 2601-1105, 5 pins, pitch 3.5mm, size 19x14.5mm, drill diameter 1.2mm, pad diameter 2.3mm, https://www.wago.com/global/pcb-terminal-blocks-and-pluggable-connectors/pcb-terminal-block/p/2601-1105, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 2601-1105 pitch 3.5mm size 19x14.5mm drill 1.2mm pad 2.3mm +0 +10 +5 +TerminalBlock_WAGO +TerminalBlock_WAGO_2601-1106_1x06_P3.50mm_Horizontal +Terminal Block WAGO 2601-1106, 6 pins, pitch 3.5mm, size 22.5x14.5mm, drill diameter 1.2mm, pad diameter 2.3mm, https://www.wago.com/global/pcb-terminal-blocks-and-pluggable-connectors/pcb-terminal-block/p/2601-1106, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 2601-1106 pitch 3.5mm size 22.5x14.5mm drill 1.2mm pad 2.3mm +0 +12 +6 +TerminalBlock_WAGO +TerminalBlock_WAGO_2601-1108_1x08_P3.50mm_Horizontal +Terminal Block WAGO 2601-1108, 8 pins, pitch 3.5mm, size 29.5x14.5mm, drill diameter 1.2mm, pad diameter 2.3mm, https://www.wago.com/global/pcb-terminal-blocks-and-pluggable-connectors/pcb-terminal-block/p/2601-1108, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 2601-1108 pitch 3.5mm size 29.5x14.5mm drill 1.2mm pad 2.3mm +0 +16 +8 +TerminalBlock_WAGO +TerminalBlock_WAGO_2601-1109_1x09_P3.50mm_Horizontal +Terminal Block WAGO 2601-1109, 9 pins, pitch 3.5mm, size 33x14.5mm, drill diameter 1.2mm, pad diameter 2.3mm, https://www.wago.com/global/pcb-terminal-blocks-and-pluggable-connectors/pcb-terminal-block/p/2601-1109, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 2601-1109 pitch 3.5mm size 33x14.5mm drill 1.2mm pad 2.3mm +0 +18 +9 +TerminalBlock_WAGO +TerminalBlock_WAGO_2601-1110_1x10_P3.50mm_Horizontal +Terminal Block WAGO 2601-1110, 10 pins, pitch 3.5mm, size 36.5x14.5mm, drill diameter 1.2mm, pad diameter 2.3mm, https://www.wago.com/global/pcb-terminal-blocks-and-pluggable-connectors/pcb-terminal-block/p/2601-1110, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 2601-1110 pitch 3.5mm size 36.5x14.5mm drill 1.2mm pad 2.3mm +0 +20 +10 +TerminalBlock_WAGO +TerminalBlock_WAGO_2601-1111_1x11_P3.50mm_Horizontal +Terminal Block WAGO 2601-1111, 11 pins, pitch 3.5mm, size 40x14.5mm, drill diameter 1.2mm, pad diameter 2.3mm, https://www.wago.com/global/pcb-terminal-blocks-and-pluggable-connectors/pcb-terminal-block/p/2601-1111, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 2601-1111 pitch 3.5mm size 40x14.5mm drill 1.2mm pad 2.3mm +0 +22 +11 +TerminalBlock_WAGO +TerminalBlock_WAGO_2601-1112_1x12_P3.50mm_Horizontal +Terminal Block WAGO 2601-1112, 12 pins, pitch 3.5mm, size 43.5x14.5mm, drill diameter 1.2mm, pad diameter 2.3mm, https://www.wago.com/global/pcb-terminal-blocks-and-pluggable-connectors/pcb-terminal-block/p/2601-1112, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 2601-1112 pitch 3.5mm size 43.5x14.5mm drill 1.2mm pad 2.3mm +0 +24 +12 +TerminalBlock_WAGO +TerminalBlock_WAGO_2601-3102_1x02_P3.50mm_Vertical +Terminal Block WAGO 2601-3102, 2 pins, pitch 3.5mm, size 8.5x12.8mm, drill diameter 1.2mm, pad diameter 2.3mm, https://www.wago.com/global/pcb-terminal-blocks-and-pluggable-connectors/pcb-terminal-block/p/2601-3102, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 2601-3102 pitch 3.5mm size 8.5x12.8mm drill 1.2mm pad 2.3mm +0 +4 +2 +TerminalBlock_WAGO +TerminalBlock_WAGO_2601-3103_1x03_P3.50mm_Vertical +Terminal Block WAGO 2601-3103, 3 pins, pitch 3.5mm, size 12x12.8mm, drill diameter 1.2mm, pad diameter 2.3mm, https://www.wago.com/global/pcb-terminal-blocks-and-pluggable-connectors/pcb-terminal-block/p/2601-3103, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 2601-3103 pitch 3.5mm size 12x12.8mm drill 1.2mm pad 2.3mm +0 +6 +3 +TerminalBlock_WAGO +TerminalBlock_WAGO_2601-3104_1x04_P3.50mm_Vertical +Terminal Block WAGO 2601-3104, 4 pins, pitch 3.5mm, size 15.5x12.8mm, drill diameter 1.2mm, pad diameter 2.3mm, https://www.wago.com/global/pcb-terminal-blocks-and-pluggable-connectors/pcb-terminal-block/p/2601-3104, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 2601-3104 pitch 3.5mm size 15.5x12.8mm drill 1.2mm pad 2.3mm +0 +8 +4 +TerminalBlock_WAGO +TerminalBlock_WAGO_2601-3105_1x05_P3.50mm_Vertical +Terminal Block WAGO 2601-3105, 5 pins, pitch 3.5mm, size 19x12.8mm, drill diameter 1.2mm, pad diameter 2.3mm, https://www.wago.com/global/pcb-terminal-blocks-and-pluggable-connectors/pcb-terminal-block/p/2601-3105, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 2601-3105 pitch 3.5mm size 19x12.8mm drill 1.2mm pad 2.3mm +0 +10 +5 +TerminalBlock_WAGO +TerminalBlock_WAGO_2601-3106_1x06_P3.50mm_Vertical +Terminal Block WAGO 2601-3106, 6 pins, pitch 3.5mm, size 22.5x12.8mm, drill diameter 1.2mm, pad diameter 2.3mm, https://www.wago.com/global/pcb-terminal-blocks-and-pluggable-connectors/pcb-terminal-block/p/2601-3106, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 2601-3106 pitch 3.5mm size 22.5x12.8mm drill 1.2mm pad 2.3mm +0 +12 +6 +TerminalBlock_WAGO +TerminalBlock_WAGO_2601-3107_1x07_P3.50mm_Vertical +Terminal Block WAGO 2601-3107, 7 pins, pitch 3.5mm, size 26x12.8mm, drill diameter 1.2mm, pad diameter 2.3mm, https://www.wago.com/global/pcb-terminal-blocks-and-pluggable-connectors/pcb-terminal-block/p/2601-3107, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 2601-3107 pitch 3.5mm size 26x12.8mm drill 1.2mm pad 2.3mm +0 +14 +7 +TerminalBlock_WAGO +TerminalBlock_WAGO_2601-3108_1x08_P3.50mm_Vertical +Terminal Block WAGO 2601-3108, 8 pins, pitch 3.5mm, size 29.5x12.8mm, drill diameter 1.2mm, pad diameter 2.3mm, https://www.wago.com/global/pcb-terminal-blocks-and-pluggable-connectors/pcb-terminal-block/p/2601-3108, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 2601-3108 pitch 3.5mm size 29.5x12.8mm drill 1.2mm pad 2.3mm +0 +16 +8 +TerminalBlock_WAGO +TerminalBlock_WAGO_2601-3109_1x09_P3.50mm_Vertical +Terminal Block WAGO 2601-3109, 9 pins, pitch 3.5mm, size 33x12.8mm, drill diameter 1.2mm, pad diameter 2.3mm, https://www.wago.com/global/pcb-terminal-blocks-and-pluggable-connectors/pcb-terminal-block/p/2601-3109, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 2601-3109 pitch 3.5mm size 33x12.8mm drill 1.2mm pad 2.3mm +0 +18 +9 +TerminalBlock_WAGO +TerminalBlock_WAGO_2601-3110_1x10_P3.50mm_Vertical +Terminal Block WAGO 2601-3110, 10 pins, pitch 3.5mm, size 36.5x12.8mm, drill diameter 1.2mm, pad diameter 2.3mm, https://www.wago.com/global/pcb-terminal-blocks-and-pluggable-connectors/pcb-terminal-block/p/2601-3110, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 2601-3110 pitch 3.5mm size 36.5x12.8mm drill 1.2mm pad 2.3mm +0 +20 +10 +TerminalBlock_WAGO +TerminalBlock_WAGO_2601-3111_1x11_P3.50mm_Vertical +Terminal Block WAGO 2601-3111, 11 pins, pitch 3.5mm, size 40x12.8mm, drill diameter 1.2mm, pad diameter 2.3mm, https://www.wago.com/global/pcb-terminal-blocks-and-pluggable-connectors/pcb-terminal-block/p/2601-3111, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 2601-3111 pitch 3.5mm size 40x12.8mm drill 1.2mm pad 2.3mm +0 +22 +11 +TerminalBlock_WAGO +TerminalBlock_WAGO_2601-3112_1x12_P3.50mm_Vertical +Terminal Block WAGO 2601-3112, 12 pins, pitch 3.5mm, size 43.5x12.8mm, drill diameter 1.2mm, pad diameter 2.3mm, https://www.wago.com/global/pcb-terminal-blocks-and-pluggable-connectors/pcb-terminal-block/p/2601-3112, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 2601-3112 pitch 3.5mm size 43.5x12.8mm drill 1.2mm pad 2.3mm +0 +24 +12 +TerminalBlock_WAGO +TerminalBlock_WAGO_2601-3114_1x14_P3.50mm_Vertical +Terminal Block WAGO 2601-3114, 14 pins, pitch 3.5mm, size 50.5x12.8mm, drill diameter 1.2mm, pad diameter 2.3mm, https://www.wago.com/global/pcb-terminal-blocks-and-pluggable-connectors/pcb-terminal-block/p/2601-3114, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 2601-3114 pitch 3.5mm size 50.5x12.8mm drill 1.2mm pad 2.3mm +0 +28 +14 +TerminalBlock_WAGO +TerminalBlock_WAGO_2601-3124_1x24_P3.50mm_Vertical +Terminal Block WAGO 2601-3124, 24 pins, pitch 3.5mm, size 85.5x12.8mm, drill diameter 1.2mm, pad diameter 2.3mm, https://www.wago.com/global/pcb-terminal-blocks-and-pluggable-connectors/pcb-terminal-block/p/2601-3124, script-generated using https://gitlab.com/kicad/libraries/kicad-footprint-generator/-/tree/master/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 2601-3124 pitch 3.5mm size 85.5x12.8mm drill 1.2mm pad 2.3mm +0 +48 +24 +TerminalBlock_Wuerth +Wuerth_691311400102_P7.62mm +1x2 Close Vertical PCB Header WR-TBL Series 3114 https://www.we-online.com/components/products/datasheet/691311400102.pdf +Wuerth WR-TBL Series 3114 terminal block pitch 7.62mm +0 +2 +2 +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 THM Miniature 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 THM Compact 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 THM Multipurpose 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_Mini +Keystone SMT Micro Mini Test Point 5015, http://www.keyelco.com/product-pdf.cfm?p=1353 +Test Point +0 +1 +1 +TestPoint +TestPoint_Keystone_5019_Miniature +Keystone SMT Miniature Test Point 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_ED8_4-Lead_10.5x8mm_P5mm +Isolated audio transformer, ED8, 4-lead, body 10.5x8mm body, pitch 5mm, height 5mm, https://gitlab.com/kicad/libraries/kicad-footprints/-/merge_requests/3626 +permalloy core +0 +4 +4 +Transformer_SMD +Transformer_Ethernet_Bel_S558-5999-T7-F +Bel S558-5999-T7-F SO, 16 Pin (https://www.belfuse.com/media/drawings/products/discrete-magnetics/dr-mag-s558-5999-t7-f.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +Bel SO Transformer_SMD Bel_QBS001 +0 +16 +16 +Transformer_SMD +Transformer_Ethernet_Bourns_PT61017PEL +Bourns PT61017PEL SO, 16 Pin (https://www.bourns.com/docs/Product-Datasheets/PT61017PEL.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +Bourns SO Transformer_SMD +0 +16 +16 +Transformer_SMD +Transformer_Ethernet_Bourns_PT61020EL +10/100/1000 Base-T Transformer Module, PT61020EL (https://www.bourns.com/pdfs/PT61020.pdf) +Gigabit PoE Ethernet Transformer Single +0 +24 +24 +Transformer_SMD +Transformer_Ethernet_Bourns_SM13126PEL +Bourns SM13126PEL SO, 16 Pin (https://www.bourns.com/docs/Product-Datasheets/SM13126PEL.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +Bourns SO Transformer_SMD +0 +16 +16 +Transformer_SMD +Transformer_Ethernet_CNDtek_H1102N +CNDtek H1102N SO, 16 Pin (https://www.lcsc.com/datasheet/lcsc_datasheet_2412231915_CND-tek-H1102N_C42418465.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +CNDtek SO Transformer_SMD +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_MiniCircuits_AT224-1A +SMD RF transformer, 50 ohm, 4.5 to 3000Mhz, https://www.minicircuits.com/pdfs/TC1-1-13M+.pdf +RF Transformer +0 +5 +5 +Transformer_SMD +Transformer_Murata_78250JC +Murata 78250JC https://www.murata-ps.com/datasheet?/data/magnetics/kmp_78250j.pdf +Murata transformer +0 +6 +6 +Transformer_SMD +Transformer_NF_ETAL_P2781 +NF-Transformer, ETAL, P2781, SMD, +NF-Transformer ETAL P2781 SMD +0 +8 +7 +Transformer_SMD +Transformer_NF_ETAL_P2781_HandSoldering +NF-Transformer, ETAL, P2781, SMD, Handsoldering +NF-Transformer ETAL P2781 SMD Handsoldering +0 +8 +7 +Transformer_SMD +Transformer_NF_ETAL_P3000 +NF-Reansformer, ETAL, P3000, SMD, +NF-Reansformer ETAL P3000 SMD +0 +15 +13 +Transformer_SMD +Transformer_NF_ETAL_P3000_HandSoldering +NF-Reansformer, ETAL, P3000, SMD, Handsoldering, +NF-Reansformer ETAL P3000 SMD Handsoldering +0 +15 +13 +Transformer_SMD +Transformer_NF_ETAL_P3181 +NF-Transformer, ETAL, P3181, SMD, +NF-Transformer ETAL P3181 SMD +0 +7 +6 +Transformer_SMD +Transformer_NF_ETAL_P3181_HandSoldering +NF-Transformer, ETAL, P3181, SMD, Hand Soldering, +NF-Transformer ETAL P3181 SMD Hand Soldering +0 +7 +6 +Transformer_SMD +Transformer_NF_ETAL_P3188 +NF-Transformer, ETAL, P3188, SMD, +NF-Transformer ETAL P3188 SMD +0 +8 +6 +Transformer_SMD +Transformer_NF_ETAL_P3188_HandSoldering +NF-Transformer, ETAL, P3188, SMD, Handsoldering, +NF-Transformer ETAL P3188 SMD Handsoldering +0 +8 +6 +Transformer_SMD +Transformer_NF_ETAL_P3191 +NF-Transformer, ETAL, P3191, SMD, +NF-Transformer ETAL P3191 SMD +0 +8 +6 +Transformer_SMD +Transformer_NF_ETAL_P3191_HandSoldering +NF-Transformer, ETAL, P3191, SMD, Handsoldering, +NF-Transformer ETAL P3191 SMD Handsoldering +0 +8 +6 +Transformer_SMD +Transformer_Pulse_H1100NL +For H1100NL, H1101NL, H1102NL, H1121NL, H1183NL, H1199NL, HX1188NL, HX1198NL and H1302NL. https://productfinder.pulseeng.com/doc_type/WEB301/doc_num/H1102NL/doc_part/H1102NL.pdf +H1100NL H1101NL H1102NL H1121NL H1183NL H1199NL HX1188NL HX1198NL H1302N +0 +16 +16 +Transformer_SMD +Transformer_Wuerth_750315371 +Power Transformer, horizontal core with bobbin, 6 pin, 2.54mm pitch, 11.24mm row spacing, 12.6x8.3x4.1mm +transformer flyback +0 +6 +6 +Transformer_SMD +Transformer_Wurth_WE-AGDT-EP7 +WE-AGDT Auxiliary Gate Drive Transformer EP7, https://www.we-online.com/components/products/datasheet/750319177.pdf +auxiliary gate drive transformer +0 +8 +8 +Transformer_THT +Autotransformer_Toroid_1Tap_Horizontal_D9.0mm_Amidon-T30 +Autotransformer, Toroid, horizontal, laying, 1 Tap, Diameter 9mm, Amidon T30, +Autotransformer Toroid horizontal laying 1 Tap Diameter 9mm Amidon T30 +0 +3 +3 +Transformer_THT +Autotransformer_Toroid_1Tap_Horizontal_D10.5mm_Amidon-T37 +Autotransformer, Toroid, horizontal, laying, 1 Tap, Diameter 10,5mm, Amidon T37, +Autotransformer Toroid horizontal laying 1 Tap Diameter 10 5mm Amidon T37 +0 +3 +3 +Transformer_THT +Autotransformer_Toroid_1Tap_Horizontal_D12.5mm_Amidon-T44 +Autotransformer, Toroid, horizontal, laying, 1 Tap, Diameter 12,5mm, Amidon T44, +Autotransformer Toroid horizontal laying 1 Tap Diameter 12 5mm Amidon T44 +0 +3 +3 +Transformer_THT +Autotransformer_Toroid_1Tap_Horizontal_D14.0mm_Amidon-T50 +Choke, Inductance, Autotransformer, Toroid, horizontal, laying, 1 Tap, Diameter 14mm, Amidon T50, +Choke Inductance Autotransformer Toroid horizontal laying 1 Tap Diameter 14mm Amidon T50 +0 +3 +3 +Transformer_THT +Autotransformer_ZS1052-AC +Ignition coil for xenon flash, http://www.excelitas.com/downloads/ZS1052ACH.pdf +ignition coil autotransformer +0 +3 +3 +Transformer_THT +Transformer_37x44 +transformer 37x44mm² +transformer 37x44mm² +0 +12 +4 +Transformer_THT +Transformer_Breve_TEZ-22x24 +http://www.breve.pl/pdf/ANG/TEZ_ang.pdf +TEZ PCB Transformer +0 +7 +7 +Transformer_THT +Transformer_Breve_TEZ-28x33 +http://www.breve.pl/pdf/ANG/TEZ_ang.pdf +TEZ PCB Transformer +0 +9 +9 +Transformer_THT +Transformer_Breve_TEZ-35x42 +http://www.breve.pl/pdf/ANG/TEZ_ang.pdf +TEZ PCB Transformer +0 +9 +9 +Transformer_THT +Transformer_Breve_TEZ-38x45 +http://www.breve.pl/pdf/ANG/TEZ_ang.pdf +TEZ PCB Transformer +0 +9 +9 +Transformer_THT +Transformer_Breve_TEZ-44x52 +http://www.breve.pl/pdf/ANG/TEZ_ang.pdf +TEZ PCB Transformer +0 +10 +10 +Transformer_THT +Transformer_Breve_TEZ-47x57 +http://www.breve.pl/pdf/ANG/TEZ_ang.pdf +TEZ PCB Transformer +0 +13 +13 +Transformer_THT +Transformer_CHK_EI30-2VA_1xSec +Trafo, Printtrafo, CHK, EI30, 2VA, 1x Sec,http://www.eratransformers.com/downloads/030-7585.0.pdf +Trafo Printtrafo CHK EI30 2VA 1x Sec +0 +10 +10 +Transformer_THT +Transformer_CHK_EI30-2VA_2xSec +Trafo, Printtrafo, CHK, EI30, 2VA, 2x Sec, +Trafo Printtrafo CHK EI30 2VA 2x Sec +0 +10 +10 +Transformer_THT +Transformer_CHK_EI30-2VA_Neutral +Trafo, Printtrafo, CHK, EI30, 2VA, neutral, +Trafo Printtrafo CHK EI30 2VA neutral +0 +10 +10 +Transformer_THT +Transformer_CHK_EI38-3VA_1xSec +Trafo, Printtrafo, CHK, EI38, 3VA, 1x Sec, http://www.eratransformers.com/product-detail/20 +Trafo Printtrafo CHK EI38 3VA 1x Sec +0 +10 +10 +Transformer_THT +Transformer_CHK_EI38-3VA_2xSec +Trafo, Printtrafo, CHK, EI38, 3VA, 2x Sec, http://www.eratransformers.com/product-detail/20 +Trafo Printtrafo CHK EI38 3VA 2x Sec +0 +10 +10 +Transformer_THT +Transformer_CHK_EI38-3VA_Neutral +Trafo, Printtrafo, CHK, EI38, 3VA, neutral, http://www.eratransformers.com/product-detail/20 +Trafo Printtrafo CHK EI42 3VA neutral +0 +10 +10 +Transformer_THT +Transformer_CHK_EI42-5VA_1xSec +Trafo, Printtrafo, CHK, EI42, 5VA, 1x Sec, +Trafo Printtrafo CHK EI42 5VA 1x Sec +0 +10 +10 +Transformer_THT +Transformer_CHK_EI42-5VA_2xSec +Trafo, Printtrafo, CHK, EI42, 5VA, 2x Sec, +Trafo Printtrafo CHK EI42 5VA 2x Sec +0 +10 +10 +Transformer_THT +Transformer_CHK_EI42-5VA_Neutral +Trafo, Printtrafo, CHK, EI42, 5VA, neutral, +Trafo Printtrafo CHK EI42 5VA neutral +0 +10 +10 +Transformer_THT +Transformer_CHK_EI48-8VA_1xSec +Trafo, Printtrafo, CHK, EI48, 8VA, 1x Sec, http://www.eratransformers.com/product-detail/18 +Trafo Printtrafo CHK EI48 8VA 1x Sec +0 +12 +12 +Transformer_THT +Transformer_CHK_EI48-8VA_2xSec +Trafo, Printtrafo, CHK, EI48, 8VA, 2x Sec, http://www.eratransformers.com/product-detail/18 +Trafo Printtrafo CHK EI48 8VA 2x Sec +0 +12 +12 +Transformer_THT +Transformer_CHK_EI48-8VA_Neutral +Trafo, Printtrafo, CHK, EI48, 8VA, neutral, http://www.eratransformers.com/product-detail/18 +Trafo Printtrafo CHK EI48 8VA neutral +0 +12 +12 +Transformer_THT +Transformer_CHK_EI48-10VA_1xSec +Trafo, Printtrafo, CHK, EI48, 10VA, 1x Sec, +Trafo Printtrafo CHK EI48 10VA 1x Sec +0 +12 +12 +Transformer_THT +Transformer_CHK_EI48-10VA_2xSec +Trafo, Printtrafo, CHK, EI48, 10VA, 2x Sec, http://www.eratransformers.com/product-detail/18 +Trafo Printtrafo CHK EI48 10VA 2x Sec +0 +12 +12 +Transformer_THT +Transformer_CHK_EI48-10VA_Neutral +Trafo, Printtrafo, CHK, EI48, 10VA, neutral, http://www.eratransformers.com/product-detail/18 +Trafo Printtrafo CHK EI48 10VA neutral +0 +12 +12 +Transformer_THT +Transformer_CHK_EI54-12VA_1xSec +Trafo, Printtrafo, CHK, EI54, 12VA, 1x Sec,http://www.eratransformers.com/product-detail/19 +Trafo Printtrafo CHK EI54 12VA 1x Sec +0 +14 +14 +Transformer_THT +Transformer_CHK_EI54-12VA_2xSec +Trafo, Printtrafo, CHK, EI54, 12VA, 2x Sec,http://www.eratransformers.com/product-detail/19 +Trafo Printtrafo CHK EI54 12VA 2x Sec +0 +14 +14 +Transformer_THT +Transformer_CHK_EI54-12VA_Neutral +Trafo, Printtrafo, CHK, EI54, 12VA, neutral,http://www.eratransformers.com/product-detail/19 +Trafo Printtrafo CHK EI54 12VA neutral +0 +14 +14 +Transformer_THT +Transformer_CHK_EI54-16VA_1xSec +Trafo, Printtrafo, CHK, EI54, 16VA, 1x Sec,http://www.eratransformers.com/product-detail/19 +Trafo Printtrafo CHK EI54 16VA 1x Sec +0 +14 +14 +Transformer_THT +Transformer_CHK_EI54-16VA_2xSec +Trafo, Printtrafo, CHK, EI54, 16VA, 2x Sec,http://www.eratransformers.com/product-detail/19 +Trafo Printtrafo CHK EI54 16VA 2x Sec +0 +14 +14 +Transformer_THT +Transformer_CHK_EI54-16VA_Neutral +Trafo, Printtrafo, CHK, EI54, 16VA, neutral,http://www.eratransformers.com/product-detail/19 +Trafo Printtrafo CHK EI54 16VA neutral +0 +14 +14 +Transformer_THT +Transformer_CHK_UI30-4VA_Flat +Trafo, Flattrafo, CHK, UI30, 4VA, +Trafo Flattrafo CHK UI30 4VA +0 +16 +16 +Transformer_THT +Transformer_CHK_UI39-10VA_Flat +Trafo, Flattrafo, CHK, UI39, 10VA, +Trafo Flattrafo CHK UI39 10VA +0 +20 +20 +Transformer_THT +Transformer_Coilcraft_Q4434-B_Rhombus-T1311 +Transformator, Transformer, Flyback, Coilcraft Q4434-B, Rgombus T1311, +Transformator Transformer Flyback Coilcraft Q4434-B Rgombus T1311 +0 +8 +8 +Transformer_THT +Transformer_EPCOS_B66359A1013T_Horizontal +Transformer, Transformator, ETD29, 13 Pin, Horizontal, EPCOS-B66359A1013T, +Transformer Transformator ETD29 13 Pin Horizontal EPCOS-B66359A1013T +0 +13 +13 +Transformer_THT +Transformer_EPCOS_B66359J1014T_Vertical +Transformer, Transformator, ETD29, 14 Pin, Vertical, EPCOS-B66359J1014T, +Transformer Transformator ETD29 14 Pin Vertical EPCOS-B66359J1014T +0 +14 +14 +Transformer_THT +Transformer_Microphone_Lundahl_LL1538 +AUDIO TRAFO LUNDAHL, https://www.lundahltransformers.com/wp-content/uploads/datasheets/1538_8xl.pdf +AUDIO TRAFO LUNDAHL +0 +7 +7 +Transformer_THT +Transformer_Microphone_Lundahl_LL1587 +AUDIO TRAFO LUNDAHL, https://www.lundahltransformers.com/wp-content/uploads/datasheets/1587.pdf +AUDIO TRAFO LUNDAHL +0 +7 +7 +Transformer_THT +Transformer_Myrra_74040_Horizontal +Transformer, Transformator, ETD29, 13 Pin, Horizontal, Myrra-74040, +Transformer Transformator ETD29 13 Pin Horizontal Myrra-74040 +0 +13 +13 +Transformer_THT +Transformer_Myrra_EF20_7408x +EF20 flyback transformer,http://myrra.com/wp-content/uploads/2017/09/Datasheet-74087-74088-74089-rev-A.pdf +transformer flyback SMPS +0 +9 +9 +Transformer_THT +Transformer_Myrra_EI30-5_44000_Horizontal +Myrra 44000 series encapsulated transformer, 50/60Hz, EI 30-5, 0.6VA, 32.6 x 27.6 x 15.3mm, https://myrra.com/wp-content/uploads/2021/03/Catalogue-Myrra-2022-Final_compressed-5.pdf +Transformer THT Myrra +0 +6 +6 +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_Triad_VPP16-310 +Power transformer, 2x Pri, 2x Sec, 230/115 VAC to 16/8V (0.31/0.62 A) +power center-tap +0 +8 +8 +Transformer_THT +Transformer_Wuerth_750343373 +Transformer, horizontal core with bobbin, 10 pin, 3.81mm pitch, 15.24mm row spacing, 22x23x17.53mm (https://katalog.we-online.com/ctm/datasheet/750343373.pdf) +transformer flyback +0 +10 +10 +Transformer_THT +Transformer_Wuerth_760871131 +Transformer, horizontal core with bobbin, 14 pin, 2.49 mm pitch, 20 mm row spacing, 25x22.2x16mm https://www.we-online.com/catalog/datasheet/760871131.pdf +transformer flyback +0 +14 +14 +Transformer_THT +Transformer_Zeming_ZMCT103C +Qingxian Zeming Langxi Electronic ZMCT103C current transformer 1000:1, https://5krorwxhmqqirik.leadongcdn.com/ZMCT103C+specification-aidirBqoKomRilSjpimnokp.pdf +current transformer ZMCT +0 +2 +2 +Transformer_THT +Transformer_Zeming_ZMPT101K +Qingxian Zeming Langxi Electronic ZMPT101K voltage transformer 1000:1000 2mA:2mA, https://5krorwxhmqqirik.leadongcdn.com/ZMPT101K+specification-aidikBqoKomRilSkopqmikp.pdf +voltage transformer ZMPT +0 +4 +4 +Transistor_Power +GaN_Systems_GaNPX-3_5x6.6mm_Drain2.93x0.6mm +GaN Systems GaNPX GS66502B Package, https://gansystems.com/wp-content/uploads/2020/04/GS66502B-DS-Rev-200402.pdf +ganpx gs66502b +0 +7 +3 +Transistor_Power +GaN_Systems_GaNPX-3_5x6.6mm_Drain3.76x0.6mm +GaN Systems GaNPX GS66504B Package, https://gansystems.com/wp-content/uploads/2020/04/GS66504B-DS-Rev-200402.pdf +ganpx gs66504b +0 +7 +3 +Transistor_Power +GaN_Systems_GaNPX-4_7x8.4mm +GaN Systems GaNPX GS66508B Package, https://gansystems.com/wp-content/uploads/2020/04/GS66508B-DS-Rev-200402.pdf +ganpx gs66508b +0 +15 +4 +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_AG-ECONO3 +35-lead TH, EconoPACK 3, similar(+0.5mm for Fab layer on Y) as Littelfuse_Package_W_XN2MM, https://www.infineon.com/dgdl/Infineon-FS200R12N3T7-DataSheet-v01_00-EN.pdf?fileId=8ac78c8c80027ecd018083b6ce263011 +igbt diode module +0 +35 +35 +Transistor_Power_Module +Infineon_AG-ECONO3B +41-lead TH, EconoPACK 3B, https://www.infineon.com/dgdl/Infineon-FS300R12N3E7-DataSheet-v01_00-EN.pdf?fileId=8ac78c8c8900bb57018901d6e6f6124b +igbt diode module +0 +41 +41 +Transistor_Power_Module +Infineon_EasyPACK-1B +22-lead TH, EasyPACK 1B, https://www.infineon.com/dgdl/Infineon-FS30R06W1E3-DataSheet-v02_01-EN.pdf?fileId=db3a304313b8b5a60113cecd4c3102c1 +igbt diode module +0 +22 +15 +Transistor_Power_Module +Infineon_EasyPACK-1B_PressFIT +22-lead TH, EasyPACK 1B, https://www.infineon.com/dgdl/Infineon-FS30R06W1E3-DataSheet-v02_01-EN.pdf?fileId=db3a304313b8b5a60113cecd4c3102c1 +igbt diode module +0 +22 +15 +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 +Untitled +434121025816 +WS-TASVSMT Tact Switch 6.0x3.8 mm,2 pins + +0 +2 +2 +Untitled +AMPHENOL_10114828-13102LF + + +0 +4 +4 +Untitled +CAPC2012X135N + + +0 +2 +2 +Untitled +CUI_CMT-8530S-SMT + + +0 +4 +4 +Untitled +E-SWITCH_RR511D1121 + + +0 +2 +2 +Untitled +ESP32-DEVKITC + + +0 +38 +38 +Untitled +ESP32-S3-DEVKITC-1-N8R8 + + +0 +44 +44 +Untitled +Fiducial_TH_0.8mm + + +0 +1 +1 +Untitled +Fiducial_TH_1.76mm + + +0 +1 +1 +Untitled +GRAVITECH_CON-SOCJ-2155 + + +0 +3 +3 +Untitled +IND_ASPI-0630LR-5R6M-T15 + + +0 +2 +2 +Untitled +JST_S4B-PH-K-S(LF)(SN) + + +0 +4 +4 +Untitled +LEDC2012X70N +CAPACITOR + +0 +2 +2 +Untitled +LED_WS2812B2020 + + +0 +4 +4 +Untitled +MA04-1_162 +PIN HEADER + +0 +4 +4 +Untitled +MODULE_ESP32_NODEMCU + + +0 +38 +38 +Untitled +RESC2012X65N + + +0 +2 +2 +Untitled +RFECA3216060A1T + + +0 +4 +4 +Untitled +SOD3715X145N + + +0 +2 +2 +Untitled +SOIC127P600X180-16N + + +0 +16 +16 +Untitled +SOP127P600X175-9N + + +0 +9 +9 +Untitled +SOT23 +SOT-23 + +0 +3 +3 +Untitled +SOT95P240X111-3N + + +0 +3 +3 +Untitled +SOT95P280X145-6N + + +0 +6 +6 +Untitled +SOT229P700X180-4N + + +0 +4 +4 +Untitled +SW_B3SL-1022P + + +0 +4 +4 +Untitled +SW_JS202011SCQN + + +0 +6 +6 +Untitled +SW_RB141C1100 + + +0 +2 +2 +Untitled +TO-3PL_TOS + +TTC5200Q +0 +3 +3 +Untitled +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 +Untitled +TO-92_Inline new +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 +Untitled +TOUCHPAD + + +0 +2 +2 +Untitled +Untitled + + +0 +8 +8 +Untitled +Untitled_1 + + +0 +1 +1 +Untitled +Untitled_2 + + +0 +0 +0 +Untitled +VALCON_CSP-USC16-TR + + +0 +20 +20 +Untitled +XCVR_ESP32-WROOM-32E_(4MB) + + +0 +59 +59 +Untitled +ind pad + + +0 +2 +2 +Untitled +pad + + +0 +4 +2 +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 +Varistor +RV_Rect_V25S440P_L26.5mm_W8.2mm_P12.7mm +Varistor, V25S440P, https://www.littelfuse.com/media?resourcetype=datasheets&itemid=b410c42c-51d1-460e-b1d9-d105d93c9679&filename=littelfuse-varistor-ultramov25s-datasheet +varistor +0 +2 +2 +Varistor +Varistor_Panasonic_VF +Panasonic VF series varistor, 6x8mm body, 3.2mm height, https://mediap.industry.panasonic.eu/assets/imported/industrial.panasonic.com/cdbs/www-data/pdf/AWA0000/AWA0000C4.pdf +Varistor VF +0 +2 +2 diff --git a/KiCad/8Relays/gerber_to_order/SmartFuseBox_144.23x82.8mm_for_Default.zip b/KiCad/8Relays/gerber_to_order/SmartFuseBox_144.23x82.8mm_for_Default.zip new file mode 100644 index 0000000..67420ea Binary files /dev/null and b/KiCad/8Relays/gerber_to_order/SmartFuseBox_144.23x82.8mm_for_Default.zip differ diff --git a/KiCad/8Relays/gerber_to_order/SmartFuseBox_144.23x82.8mm_for_Elecrow.zip b/KiCad/8Relays/gerber_to_order/SmartFuseBox_144.23x82.8mm_for_Elecrow.zip new file mode 100644 index 0000000..4e6dfbe Binary files /dev/null and b/KiCad/8Relays/gerber_to_order/SmartFuseBox_144.23x82.8mm_for_Elecrow.zip differ diff --git a/KiCad/8Relays/gerber_to_order/SmartFuseBox_144.23x82.8mm_for_FusionPCB.zip b/KiCad/8Relays/gerber_to_order/SmartFuseBox_144.23x82.8mm_for_FusionPCB.zip new file mode 100644 index 0000000..1f4b583 Binary files /dev/null and b/KiCad/8Relays/gerber_to_order/SmartFuseBox_144.23x82.8mm_for_FusionPCB.zip differ diff --git a/KiCad/8Relays/gerber_to_order/SmartFuseBox_144.23x82.8mm_for_JLCPCB.zip b/KiCad/8Relays/gerber_to_order/SmartFuseBox_144.23x82.8mm_for_JLCPCB.zip new file mode 100644 index 0000000..6b303a6 Binary files /dev/null and b/KiCad/8Relays/gerber_to_order/SmartFuseBox_144.23x82.8mm_for_JLCPCB.zip differ diff --git a/KiCad/8Relays/gerber_to_order/SmartFuseBox_144.23x82.8mm_for_PCBWay.zip b/KiCad/8Relays/gerber_to_order/SmartFuseBox_144.23x82.8mm_for_PCBWay.zip new file mode 100644 index 0000000..383b3a6 Binary files /dev/null and b/KiCad/8Relays/gerber_to_order/SmartFuseBox_144.23x82.8mm_for_PCBWay.zip differ diff --git a/KiCad/README.md b/KiCad/README.md new file mode 100644 index 0000000..880fdbc --- /dev/null +++ b/KiCad/README.md @@ -0,0 +1,2 @@ +# KiCad +KiCad PCB Board diff --git a/KiCad/SmartFuseBox_PCB_Design_Specification.docx b/KiCad/SmartFuseBox_PCB_Design_Specification.docx new file mode 100644 index 0000000..70dbbfb Binary files /dev/null and b/KiCad/SmartFuseBox_PCB_Design_Specification.docx differ diff --git a/KiCad/SmartFuseBox_PCB_Design_Specification.odt b/KiCad/SmartFuseBox_PCB_Design_Specification.odt new file mode 100644 index 0000000..a2e8671 Binary files /dev/null and b/KiCad/SmartFuseBox_PCB_Design_Specification.odt differ diff --git a/KiCad/SmartFuseBox_PCB_Design_Specification.pdf b/KiCad/SmartFuseBox_PCB_Design_Specification.pdf new file mode 100644 index 0000000..ddbb32b Binary files /dev/null and b/KiCad/SmartFuseBox_PCB_Design_Specification.pdf differ diff --git a/KiCad/SystemDiagram.md b/KiCad/SystemDiagram.md new file mode 100644 index 0000000..025c52f --- /dev/null +++ b/KiCad/SystemDiagram.md @@ -0,0 +1,98 @@ +┌──────────────────────────────────────────────────────────────────────┐ +│ 12V INPUT │ +│ • Screw terminal │ +│ • Fuse / polyfuse (40A) │ +│ • Reverse polarity protection (diode or MOSFET) │ +│ • TVS diode │ +└──────────────────────────────────────────────────────────────────────┘ + +  │ + +  ▼ + +┌──────────────────────────────────────────────────────────────────────┐ +│ POWER STAGE │ +│ │ +│ 12V\_BUS →→→→→→→→→→→→→→→→→→→→→→→→→→→→→→→→→→→→→→→→→→→→→→→→→→→→→→→→→→ │ +│ │ +│ • Buck converter 12V → 5V │ +│ - Inductor, diode (if needed) │ +│ - Input/output capacitors │ +│ - Feedback resistors │ +│ │ +│ • Regulator 5V → 3.3V │ +│ - LDO or buck │ +│ - Input/output capacitors │ +│ │ +│ Outputs: │ +│ - 12V\_BUS (relays, fan, buzzer) │ +│ - 5V\_BUS (sensors, LEDs, CAN) │ +│ - 3V3\_BUS (ESP32, logic) │ +└──────────────────────────────────────────────────────────────────────┘ + + │ + ▼ + +┌──────────────────────────────────────────────────────────────────────┐ +│ ESP32-S3 DevKitC-1 │ +│ (mounted via headers) │ +│ │ +│ Power: 3V3\_BUS, 5V\_BUS, GND │ +│ │ +│ GPIO → Relay Drivers (8 channels) │ +│ GPIO → Sensor Ports (6× ports, 2 signals each) │ +│ CAN\_TX / CAN\_RX → CAN Transceiver │ +│ GPIO → Fan Driver │ +│ GPIO → Buzzer Driver │ +│ Optional: I2C → Temp Sensor │ +└──────────────────────────────────────────────────────────────────────┘ + + │ + ├───────────────────────────────────────────────┐ + ▼ ▼ + +┌──────────────────────────────────────┐ ┌─────────────────────────────────────────┐ +│ RELAY DRIVER BLOCK │ │ SENSOR PORTS │ +│ │ │ │ +│ • R-array (8× 1k) │ │ 6× identical ports: │ +│ • ULN2803A (8‑ch driver) │ │ │ +│ IN1–IN8 ← ESP32 GPIO │ │ \[5V] │ +│ OUT1–OUT8 → Relay Coils │ │ \[3.3V] │ +│ COM → 12V\_BUS │ │ \[GND] │ +│ │ │ \[SIG\_A] → ESP32 (via R + protection) │ +│ Optional: LED per channel │ │ \[SIG\_B] → ESP32 (via R + protection) │ +│ 5V → 470Ω → LED → ULN OUT │ │ │ +└──────────────────────────────────────┘ └─────────────────────────────────────────┘ + + │ │ + ▼ ▼ + +┌──────────────────────────────────────┐ ┌──────────────────────────────────────────┐ +│ RELAYS │ │ CAN BUS │ +│ (8× SPDT, 12V coils) │ │ │ +│ │ │ • CAN Transceiver (e.g., MCP2562) │ +│ Coil1 → ULN OUTx │ │ • 120Ω termination (jumper) │ +│ Coil2 → 12V\_BUS │ │ • TVS diode │ +│ │ │ • Screw terminal: CAN\_H, CAN\_L, GND │ +│ Contacts: │ └──────────────────────────────────────────┘ +│ COM → J\_RLx pin 1 │ +│ NO → J\_RLx pin 2 │ +│ NC → J\_RLx pin 3 │ +└──────────────────────────────────────┘ + + │ + ▼ + +┌──────────────────────────────────────────────────────────────────────┐ +│ MONITORING \& AUX │ +│ │ +│ • Temperature sensor (I2C or analog) │ +│ • Fan connector (12V) │ +│ - MOSFET / NPN driver │ +│ - Flyback diode │ +│ │ +│ • Buzzer (5V or 12V) │ +│ - Transistor driver │ +│ - Series resistor │ +└──────────────────────────────────────────────────────────────────────┘ + diff --git a/NextionControlPanel/LICENSE b/NextionControlPanel/LICENSE new file mode 100644 index 0000000..f288702 --- /dev/null +++ b/NextionControlPanel/LICENSE @@ -0,0 +1,674 @@ + GNU GENERAL PUBLIC LICENSE + Version 3, 29 June 2007 + + Copyright (C) 2007 Free Software Foundation, Inc. + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The GNU General Public License is a free, copyleft license for +software and other kinds of works. + + The licenses for most software and other practical works are designed +to take away your freedom to share and change the works. By contrast, +the GNU General Public License is intended to guarantee your freedom to +share and change all versions of a program--to make sure it remains free +software for all its users. We, the Free Software Foundation, use the +GNU General Public License for most of our software; it applies also to +any other work released this way by its authors. You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +them if you wish), that you receive source code or can get it if you +want it, that you can change the software or use pieces of it in new +free programs, and that you know you can do these things. + + To protect your rights, we need to prevent others from denying you +these rights or asking you to surrender the rights. Therefore, you have +certain responsibilities if you distribute copies of the software, or if +you modify it: responsibilities to respect the freedom of others. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must pass on to the recipients the same +freedoms that you received. You must make sure that they, too, receive +or can get the source code. And you must show them these terms so they +know their rights. + + Developers that use the GNU GPL protect your rights with two steps: +(1) assert copyright on the software, and (2) offer you this License +giving you legal permission to copy, distribute and/or modify it. + + For the developers' and authors' protection, the GPL clearly explains +that there is no warranty for this free software. For both users' and +authors' sake, the GPL requires that modified versions be marked as +changed, so that their problems will not be attributed erroneously to +authors of previous versions. + + Some devices are designed to deny users access to install or run +modified versions of the software inside them, although the manufacturer +can do so. This is fundamentally incompatible with the aim of +protecting users' freedom to change the software. The systematic +pattern of such abuse occurs in the area of products for individuals to +use, which is precisely where it is most unacceptable. Therefore, we +have designed this version of the GPL to prohibit the practice for those +products. If such problems arise substantially in other domains, we +stand ready to extend this provision to those domains in future versions +of the GPL, as needed to protect the freedom of users. + + Finally, every program is threatened constantly by software patents. +States should not allow patents to restrict development and use of +software on general-purpose computers, but in those that do, we wish to +avoid the special danger that patents applied to a free program could +make it effectively proprietary. To prevent this, the GPL assures that +patents cannot be used to render the program non-free. + + The precise terms and conditions for copying, distribution and +modification follow. + + TERMS AND CONDITIONS + + 0. Definitions. + + "This License" refers to version 3 of the GNU General Public License. + + "Copyright" also means copyright-like laws that apply to other kinds of +works, such as semiconductor masks. + + "The Program" refers to any copyrightable work licensed under this +License. Each licensee is addressed as "you". "Licensees" and +"recipients" may be individuals or organizations. + + To "modify" a work means to copy from or adapt all or part of the work +in a fashion requiring copyright permission, other than the making of an +exact copy. The resulting work is called a "modified version" of the +earlier work or a work "based on" the earlier work. + + A "covered work" means either the unmodified Program or a work based +on the Program. + + To "propagate" a work means to do anything with it that, without +permission, would make you directly or secondarily liable for +infringement under applicable copyright law, except executing it on a +computer or modifying a private copy. Propagation includes copying, +distribution (with or without modification), making available to the +public, and in some countries other activities as well. + + To "convey" a work means any kind of propagation that enables other +parties to make or receive copies. Mere interaction with a user through +a computer network, with no transfer of a copy, is not conveying. + + An interactive user interface displays "Appropriate Legal Notices" +to the extent that it includes a convenient and prominently visible +feature that (1) displays an appropriate copyright notice, and (2) +tells the user that there is no warranty for the work (except to the +extent that warranties are provided), that licensees may convey the +work under this License, and how to view a copy of this License. If +the interface presents a list of user commands or options, such as a +menu, a prominent item in the list meets this criterion. + + 1. Source Code. + + The "source code" for a work means the preferred form of the work +for making modifications to it. "Object code" means any non-source +form of a work. + + A "Standard Interface" means an interface that either is an official +standard defined by a recognized standards body, or, in the case of +interfaces specified for a particular programming language, one that +is widely used among developers working in that language. + + The "System Libraries" of an executable work include anything, other +than the work as a whole, that (a) is included in the normal form of +packaging a Major Component, but which is not part of that Major +Component, and (b) serves only to enable use of the work with that +Major Component, or to implement a Standard Interface for which an +implementation is available to the public in source code form. A +"Major Component", in this context, means a major essential component +(kernel, window system, and so on) of the specific operating system +(if any) on which the executable work runs, or a compiler used to +produce the work, or an object code interpreter used to run it. + + The "Corresponding Source" for a work in object code form means all +the source code needed to generate, install, and (for an executable +work) run the object code and to modify the work, including scripts to +control those activities. However, it does not include the work's +System Libraries, or general-purpose tools or generally available free +programs which are used unmodified in performing those activities but +which are not part of the work. For example, Corresponding Source +includes interface definition files associated with source files for +the work, and the source code for shared libraries and dynamically +linked subprograms that the work is specifically designed to require, +such as by intimate data communication or control flow between those +subprograms and other parts of the work. + + The Corresponding Source need not include anything that users +can regenerate automatically from other parts of the Corresponding +Source. + + The Corresponding Source for a work in source code form is that +same work. + + 2. Basic Permissions. + + All rights granted under this License are granted for the term of +copyright on the Program, and are irrevocable provided the stated +conditions are met. This License explicitly affirms your unlimited +permission to run the unmodified Program. The output from running a +covered work is covered by this License only if the output, given its +content, constitutes a covered work. This License acknowledges your +rights of fair use or other equivalent, as provided by copyright law. + + You may make, run and propagate covered works that you do not +convey, without conditions so long as your license otherwise remains +in force. You may convey covered works to others for the sole purpose +of having them make modifications exclusively for you, or provide you +with facilities for running those works, provided that you comply with +the terms of this License in conveying all material for which you do +not control copyright. Those thus making or running the covered works +for you must do so exclusively on your behalf, under your direction +and control, on terms that prohibit them from making any copies of +your copyrighted material outside their relationship with you. + + Conveying under any other circumstances is permitted solely under +the conditions stated below. Sublicensing is not allowed; section 10 +makes it unnecessary. + + 3. Protecting Users' Legal Rights From Anti-Circumvention Law. + + No covered work shall be deemed part of an effective technological +measure under any applicable law fulfilling obligations under article +11 of the WIPO copyright treaty adopted on 20 December 1996, or +similar laws prohibiting or restricting circumvention of such +measures. + + When you convey a covered work, you waive any legal power to forbid +circumvention of technological measures to the extent such circumvention +is effected by exercising rights under this License with respect to +the covered work, and you disclaim any intention to limit operation or +modification of the work as a means of enforcing, against the work's +users, your or third parties' legal rights to forbid circumvention of +technological measures. + + 4. Conveying Verbatim Copies. + + You may convey verbatim copies of the Program's source code as you +receive it, in any medium, provided that you conspicuously and +appropriately publish on each copy an appropriate copyright notice; +keep intact all notices stating that this License and any +non-permissive terms added in accord with section 7 apply to the code; +keep intact all notices of the absence of any warranty; and give all +recipients a copy of this License along with the Program. + + You may charge any price or no price for each copy that you convey, +and you may offer support or warranty protection for a fee. + + 5. Conveying Modified Source Versions. + + You may convey a work based on the Program, or the modifications to +produce it from the Program, in the form of source code under the +terms of section 4, provided that you also meet all of these conditions: + + a) The work must carry prominent notices stating that you modified + it, and giving a relevant date. + + b) The work must carry prominent notices stating that it is + released under this License and any conditions added under section + 7. This requirement modifies the requirement in section 4 to + "keep intact all notices". + + c) You must license the entire work, as a whole, under this + License to anyone who comes into possession of a copy. This + License will therefore apply, along with any applicable section 7 + additional terms, to the whole of the work, and all its parts, + regardless of how they are packaged. This License gives no + permission to license the work in any other way, but it does not + invalidate such permission if you have separately received it. + + d) If the work has interactive user interfaces, each must display + Appropriate Legal Notices; however, if the Program has interactive + interfaces that do not display Appropriate Legal Notices, your + work need not make them do so. + + A compilation of a covered work with other separate and independent +works, which are not by their nature extensions of the covered work, +and which are not combined with it such as to form a larger program, +in or on a volume of a storage or distribution medium, is called an +"aggregate" if the compilation and its resulting copyright are not +used to limit the access or legal rights of the compilation's users +beyond what the individual works permit. Inclusion of a covered work +in an aggregate does not cause this License to apply to the other +parts of the aggregate. + + 6. Conveying Non-Source Forms. + + You may convey a covered work in object code form under the terms +of sections 4 and 5, provided that you also convey the +machine-readable Corresponding Source under the terms of this License, +in one of these ways: + + a) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by the + Corresponding Source fixed on a durable physical medium + customarily used for software interchange. + + b) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by a + written offer, valid for at least three years and valid for as + long as you offer spare parts or customer support for that product + model, to give anyone who possesses the object code either (1) a + copy of the Corresponding Source for all the software in the + product that is covered by this License, on a durable physical + medium customarily used for software interchange, for a price no + more than your reasonable cost of physically performing this + conveying of source, or (2) access to copy the + Corresponding Source from a network server at no charge. + + c) Convey individual copies of the object code with a copy of the + written offer to provide the Corresponding Source. This + alternative is allowed only occasionally and noncommercially, and + only if you received the object code with such an offer, in accord + with subsection 6b. + + d) Convey the object code by offering access from a designated + place (gratis or for a charge), and offer equivalent access to the + Corresponding Source in the same way through the same place at no + further charge. You need not require recipients to copy the + Corresponding Source along with the object code. If the place to + copy the object code is a network server, the Corresponding Source + may be on a different server (operated by you or a third party) + that supports equivalent copying facilities, provided you maintain + clear directions next to the object code saying where to find the + Corresponding Source. Regardless of what server hosts the + Corresponding Source, you remain obligated to ensure that it is + available for as long as needed to satisfy these requirements. + + e) Convey the object code using peer-to-peer transmission, provided + you inform other peers where the object code and Corresponding + Source of the work are being offered to the general public at no + charge under subsection 6d. + + A separable portion of the object code, whose source code is excluded +from the Corresponding Source as a System Library, need not be +included in conveying the object code work. + + A "User Product" is either (1) a "consumer product", which means any +tangible personal property which is normally used for personal, family, +or household purposes, or (2) anything designed or sold for incorporation +into a dwelling. In determining whether a product is a consumer product, +doubtful cases shall be resolved in favor of coverage. For a particular +product received by a particular user, "normally used" refers to a +typical or common use of that class of product, regardless of the status +of the particular user or of the way in which the particular user +actually uses, or expects or is expected to use, the product. A product +is a consumer product regardless of whether the product has substantial +commercial, industrial or non-consumer uses, unless such uses represent +the only significant mode of use of the product. + + "Installation Information" for a User Product means any methods, +procedures, authorization keys, or other information required to install +and execute modified versions of a covered work in that User Product from +a modified version of its Corresponding Source. The information must +suffice to ensure that the continued functioning of the modified object +code is in no case prevented or interfered with solely because +modification has been made. + + If you convey an object code work under this section in, or with, or +specifically for use in, a User Product, and the conveying occurs as +part of a transaction in which the right of possession and use of the +User Product is transferred to the recipient in perpetuity or for a +fixed term (regardless of how the transaction is characterized), the +Corresponding Source conveyed under this section must be accompanied +by the Installation Information. But this requirement does not apply +if neither you nor any third party retains the ability to install +modified object code on the User Product (for example, the work has +been installed in ROM). + + The requirement to provide Installation Information does not include a +requirement to continue to provide support service, warranty, or updates +for a work that has been modified or installed by the recipient, or for +the User Product in which it has been modified or installed. Access to a +network may be denied when the modification itself materially and +adversely affects the operation of the network or violates the rules and +protocols for communication across the network. + + Corresponding Source conveyed, and Installation Information provided, +in accord with this section must be in a format that is publicly +documented (and with an implementation available to the public in +source code form), and must require no special password or key for +unpacking, reading or copying. + + 7. Additional Terms. + + "Additional permissions" are terms that supplement the terms of this +License by making exceptions from one or more of its conditions. +Additional permissions that are applicable to the entire Program shall +be treated as though they were included in this License, to the extent +that they are valid under applicable law. If additional permissions +apply only to part of the Program, that part may be used separately +under those permissions, but the entire Program remains governed by +this License without regard to the additional permissions. + + When you convey a copy of a covered work, you may at your option +remove any additional permissions from that copy, or from any part of +it. (Additional permissions may be written to require their own +removal in certain cases when you modify the work.) You may place +additional permissions on material, added by you to a covered work, +for which you have or can give appropriate copyright permission. + + Notwithstanding any other provision of this License, for material you +add to a covered work, you may (if authorized by the copyright holders of +that material) supplement the terms of this License with terms: + + a) Disclaiming warranty or limiting liability differently from the + terms of sections 15 and 16 of this License; or + + b) Requiring preservation of specified reasonable legal notices or + author attributions in that material or in the Appropriate Legal + Notices displayed by works containing it; or + + c) Prohibiting misrepresentation of the origin of that material, or + requiring that modified versions of such material be marked in + reasonable ways as different from the original version; or + + d) Limiting the use for publicity purposes of names of licensors or + authors of the material; or + + e) Declining to grant rights under trademark law for use of some + trade names, trademarks, or service marks; or + + f) Requiring indemnification of licensors and authors of that + material by anyone who conveys the material (or modified versions of + it) with contractual assumptions of liability to the recipient, for + any liability that these contractual assumptions directly impose on + those licensors and authors. + + All other non-permissive additional terms are considered "further +restrictions" within the meaning of section 10. If the Program as you +received it, or any part of it, contains a notice stating that it is +governed by this License along with a term that is a further +restriction, you may remove that term. If a license document contains +a further restriction but permits relicensing or conveying under this +License, you may add to a covered work material governed by the terms +of that license document, provided that the further restriction does +not survive such relicensing or conveying. + + If you add terms to a covered work in accord with this section, you +must place, in the relevant source files, a statement of the +additional terms that apply to those files, or a notice indicating +where to find the applicable terms. + + Additional terms, permissive or non-permissive, may be stated in the +form of a separately written license, or stated as exceptions; +the above requirements apply either way. + + 8. Termination. + + You may not propagate or modify a covered work except as expressly +provided under this License. Any attempt otherwise to propagate or +modify it is void, and will automatically terminate your rights under +this License (including any patent licenses granted under the third +paragraph of section 11). + + However, if you cease all violation of this License, then your +license from a particular copyright holder is reinstated (a) +provisionally, unless and until the copyright holder explicitly and +finally terminates your license, and (b) permanently, if the copyright +holder fails to notify you of the violation by some reasonable means +prior to 60 days after the cessation. + + Moreover, your license from a particular copyright holder is +reinstated permanently if the copyright holder notifies you of the +violation by some reasonable means, this is the first time you have +received notice of violation of this License (for any work) from that +copyright holder, and you cure the violation prior to 30 days after +your receipt of the notice. + + Termination of your rights under this section does not terminate the +licenses of parties who have received copies or rights from you under +this License. If your rights have been terminated and not permanently +reinstated, you do not qualify to receive new licenses for the same +material under section 10. + + 9. Acceptance Not Required for Having Copies. + + You are not required to accept this License in order to receive or +run a copy of the Program. Ancillary propagation of a covered work +occurring solely as a consequence of using peer-to-peer transmission +to receive a copy likewise does not require acceptance. However, +nothing other than this License grants you permission to propagate or +modify any covered work. These actions infringe copyright if you do +not accept this License. Therefore, by modifying or propagating a +covered work, you indicate your acceptance of this License to do so. + + 10. Automatic Licensing of Downstream Recipients. + + Each time you convey a covered work, the recipient automatically +receives a license from the original licensors, to run, modify and +propagate that work, subject to this License. You are not responsible +for enforcing compliance by third parties with this License. + + An "entity transaction" is a transaction transferring control of an +organization, or substantially all assets of one, or subdividing an +organization, or merging organizations. If propagation of a covered +work results from an entity transaction, each party to that +transaction who receives a copy of the work also receives whatever +licenses to the work the party's predecessor in interest had or could +give under the previous paragraph, plus a right to possession of the +Corresponding Source of the work from the predecessor in interest, if +the predecessor has it or can get it with reasonable efforts. + + You may not impose any further restrictions on the exercise of the +rights granted or affirmed under this License. For example, you may +not impose a license fee, royalty, or other charge for exercise of +rights granted under this License, and you may not initiate litigation +(including a cross-claim or counterclaim in a lawsuit) alleging that +any patent claim is infringed by making, using, selling, offering for +sale, or importing the Program or any portion of it. + + 11. Patents. + + A "contributor" is a copyright holder who authorizes use under this +License of the Program or a work on which the Program is based. The +work thus licensed is called the contributor's "contributor version". + + A contributor's "essential patent claims" are all patent claims +owned or controlled by the contributor, whether already acquired or +hereafter acquired, that would be infringed by some manner, permitted +by this License, of making, using, or selling its contributor version, +but do not include claims that would be infringed only as a +consequence of further modification of the contributor version. For +purposes of this definition, "control" includes the right to grant +patent sublicenses in a manner consistent with the requirements of +this License. + + Each contributor grants you a non-exclusive, worldwide, royalty-free +patent license under the contributor's essential patent claims, to +make, use, sell, offer for sale, import and otherwise run, modify and +propagate the contents of its contributor version. + + In the following three paragraphs, a "patent license" is any express +agreement or commitment, however denominated, not to enforce a patent +(such as an express permission to practice a patent or covenant not to +sue for patent infringement). To "grant" such a patent license to a +party means to make such an agreement or commitment not to enforce a +patent against the party. + + If you convey a covered work, knowingly relying on a patent license, +and the Corresponding Source of the work is not available for anyone +to copy, free of charge and under the terms of this License, through a +publicly available network server or other readily accessible means, +then you must either (1) cause the Corresponding Source to be so +available, or (2) arrange to deprive yourself of the benefit of the +patent license for this particular work, or (3) arrange, in a manner +consistent with the requirements of this License, to extend the patent +license to downstream recipients. "Knowingly relying" means you have +actual knowledge that, but for the patent license, your conveying the +covered work in a country, or your recipient's use of the covered work +in a country, would infringe one or more identifiable patents in that +country that you have reason to believe are valid. + + If, pursuant to or in connection with a single transaction or +arrangement, you convey, or propagate by procuring conveyance of, a +covered work, and grant a patent license to some of the parties +receiving the covered work authorizing them to use, propagate, modify +or convey a specific copy of the covered work, then the patent license +you grant is automatically extended to all recipients of the covered +work and works based on it. + + A patent license is "discriminatory" if it does not include within +the scope of its coverage, prohibits the exercise of, or is +conditioned on the non-exercise of one or more of the rights that are +specifically granted under this License. You may not convey a covered +work if you are a party to an arrangement with a third party that is +in the business of distributing software, under which you make payment +to the third party based on the extent of your activity of conveying +the work, and under which the third party grants, to any of the +parties who would receive the covered work from you, a discriminatory +patent license (a) in connection with copies of the covered work +conveyed by you (or copies made from those copies), or (b) primarily +for and in connection with specific products or compilations that +contain the covered work, unless you entered into that arrangement, +or that patent license was granted, prior to 28 March 2007. + + Nothing in this License shall be construed as excluding or limiting +any implied license or other defenses to infringement that may +otherwise be available to you under applicable patent law. + + 12. No Surrender of Others' Freedom. + + If conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot convey a +covered work so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you may +not convey it at all. For example, if you agree to terms that obligate you +to collect a royalty for further conveying from those to whom you convey +the Program, the only way you could satisfy both those terms and this +License would be to refrain entirely from conveying the Program. + + 13. Use with the GNU Affero General Public License. + + Notwithstanding any other provision of this License, you have +permission to link or combine any covered work with a work licensed +under version 3 of the GNU Affero General Public License into a single +combined work, and to convey the resulting work. The terms of this +License will continue to apply to the part which is the covered work, +but the special requirements of the GNU Affero General Public License, +section 13, concerning interaction through a network will apply to the +combination as such. + + 14. Revised Versions of this License. + + The Free Software Foundation may publish revised and/or new versions of +the GNU General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + + Each version is given a distinguishing version number. If the +Program specifies that a certain numbered version of the GNU General +Public License "or any later version" applies to it, you have the +option of following the terms and conditions either of that numbered +version or of any later version published by the Free Software +Foundation. If the Program does not specify a version number of the +GNU General Public License, you may choose any version ever published +by the Free Software Foundation. + + If the Program specifies that a proxy can decide which future +versions of the GNU General Public License can be used, that proxy's +public statement of acceptance of a version permanently authorizes you +to choose that version for the Program. + + Later license versions may give you additional or different +permissions. However, no additional obligations are imposed on any +author or copyright holder as a result of your choosing to follow a +later version. + + 15. Disclaimer of Warranty. + + THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY +APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT +HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY +OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, +THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM +IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF +ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. Limitation of Liability. + + IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS +THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY +GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE +USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF +DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD +PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), +EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF +SUCH DAMAGES. + + 17. Interpretation of Sections 15 and 16. + + If the disclaimer of warranty and limitation of liability provided +above cannot be given local legal effect according to their terms, +reviewing courts shall apply local law that most closely approximates +an absolute waiver of all civil liability in connection with the +Program, unless a warranty or assumption of liability accompanies a +copy of the Program in return for a fee. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +state the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + 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 . + +Also add information on how to contact you by electronic and paper mail. + + If the program does terminal interaction, make it output a short +notice like this when it starts in an interactive mode: + + Copyright (C) + This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate +parts of the General Public License. Of course, your program's commands +might be different; for a GUI interface, you would use an "about box". + + You should also get your employer (if you work as a programmer) or school, +if any, to sign a "copyright disclaimer" for the program, if necessary. +For more information on this, and how to apply and follow the GNU GPL, see +. + + The GNU General Public License does not permit incorporating your program +into proprietary programs. If your program is a subroutine library, you +may consider it more useful to permit linking proprietary applications with +the library. If this is what you want to do, use the GNU Lesser General +Public License instead of this License. But first, please read +. diff --git a/NextionControlPanel/README.md b/NextionControlPanel/README.md new file mode 100644 index 0000000..7f3da78 --- /dev/null +++ b/NextionControlPanel/README.md @@ -0,0 +1,2 @@ +# NextionControlPanel +Nextion control panel for boat control panel diff --git a/NextionControlPanel/src/ArrowDown.jpg b/NextionControlPanel/src/ArrowDown.jpg new file mode 100644 index 0000000..40fc7a3 Binary files /dev/null and b/NextionControlPanel/src/ArrowDown.jpg differ diff --git a/NextionControlPanel/src/ArrowInwards.jpg b/NextionControlPanel/src/ArrowInwards.jpg new file mode 100644 index 0000000..6b07e58 Binary files /dev/null and b/NextionControlPanel/src/ArrowInwards.jpg differ diff --git a/NextionControlPanel/src/ArrowUp.jpg b/NextionControlPanel/src/ArrowUp.jpg new file mode 100644 index 0000000..3d16ea9 Binary files /dev/null and b/NextionControlPanel/src/ArrowUp.jpg differ diff --git a/NextionControlPanel/src/BlankButton.jpg b/NextionControlPanel/src/BlankButton.jpg new file mode 100644 index 0000000..f9bbe78 Binary files /dev/null and b/NextionControlPanel/src/BlankButton.jpg differ diff --git a/NextionControlPanel/src/BlueBackGroundButton.jpg b/NextionControlPanel/src/BlueBackGroundButton.jpg new file mode 100644 index 0000000..18a93a4 Binary files /dev/null and b/NextionControlPanel/src/BlueBackGroundButton.jpg differ diff --git a/NextionControlPanel/src/BlueBackGroundButtonLarge.jpg b/NextionControlPanel/src/BlueBackGroundButtonLarge.jpg new file mode 100644 index 0000000..131a6e7 Binary files /dev/null and b/NextionControlPanel/src/BlueBackGroundButtonLarge.jpg differ diff --git a/NextionControlPanel/src/BoatController.HMI b/NextionControlPanel/src/BoatController.HMI new file mode 100644 index 0000000..191fe9c Binary files /dev/null and b/NextionControlPanel/src/BoatController.HMI differ diff --git a/NextionControlPanel/src/BoatController.tft b/NextionControlPanel/src/BoatController.tft new file mode 100644 index 0000000..ed4c522 Binary files /dev/null and b/NextionControlPanel/src/BoatController.tft differ diff --git a/NextionControlPanel/src/Characters.jpg b/NextionControlPanel/src/Characters.jpg new file mode 100644 index 0000000..36c815c Binary files /dev/null and b/NextionControlPanel/src/Characters.jpg differ diff --git a/NextionControlPanel/src/Compass.png b/NextionControlPanel/src/Compass.png new file mode 100644 index 0000000..bdf4bdf Binary files /dev/null and b/NextionControlPanel/src/Compass.png differ diff --git a/NextionControlPanel/src/DeleteKey.jpg b/NextionControlPanel/src/DeleteKey.jpg new file mode 100644 index 0000000..e1a68c1 Binary files /dev/null and b/NextionControlPanel/src/DeleteKey.jpg differ diff --git a/NextionControlPanel/src/Flags/Flag_0.png b/NextionControlPanel/src/Flags/Flag_0.png new file mode 100644 index 0000000..ed746d0 Binary files /dev/null and b/NextionControlPanel/src/Flags/Flag_0.png differ diff --git a/NextionControlPanel/src/Flags/Flag_1.png b/NextionControlPanel/src/Flags/Flag_1.png new file mode 100644 index 0000000..595491b Binary files /dev/null and b/NextionControlPanel/src/Flags/Flag_1.png differ diff --git a/NextionControlPanel/src/Flags/Flag_2.png b/NextionControlPanel/src/Flags/Flag_2.png new file mode 100644 index 0000000..ceb4ccc Binary files /dev/null and b/NextionControlPanel/src/Flags/Flag_2.png differ diff --git a/NextionControlPanel/src/Flags/Flag_3.png b/NextionControlPanel/src/Flags/Flag_3.png new file mode 100644 index 0000000..9fbd233 Binary files /dev/null and b/NextionControlPanel/src/Flags/Flag_3.png differ diff --git a/NextionControlPanel/src/Flags/Flag_4.png b/NextionControlPanel/src/Flags/Flag_4.png new file mode 100644 index 0000000..3c41d94 Binary files /dev/null and b/NextionControlPanel/src/Flags/Flag_4.png differ diff --git a/NextionControlPanel/src/Flags/Flag_5.png b/NextionControlPanel/src/Flags/Flag_5.png new file mode 100644 index 0000000..a554ab4 Binary files /dev/null and b/NextionControlPanel/src/Flags/Flag_5.png differ diff --git a/NextionControlPanel/src/Flags/Flag_6.png b/NextionControlPanel/src/Flags/Flag_6.png new file mode 100644 index 0000000..ae66579 Binary files /dev/null and b/NextionControlPanel/src/Flags/Flag_6.png differ diff --git a/NextionControlPanel/src/Flags/Flag_7.png b/NextionControlPanel/src/Flags/Flag_7.png new file mode 100644 index 0000000..0f61b95 Binary files /dev/null and b/NextionControlPanel/src/Flags/Flag_7.png differ diff --git a/NextionControlPanel/src/Flags/Flag_8.png b/NextionControlPanel/src/Flags/Flag_8.png new file mode 100644 index 0000000..9ea024d Binary files /dev/null and b/NextionControlPanel/src/Flags/Flag_8.png differ diff --git a/NextionControlPanel/src/Flags/Flag_9.png b/NextionControlPanel/src/Flags/Flag_9.png new file mode 100644 index 0000000..d4d3401 Binary files /dev/null and b/NextionControlPanel/src/Flags/Flag_9.png differ diff --git a/NextionControlPanel/src/Flags/Flag_A.jpg b/NextionControlPanel/src/Flags/Flag_A.jpg new file mode 100644 index 0000000..0c4a2bb Binary files /dev/null and b/NextionControlPanel/src/Flags/Flag_A.jpg differ diff --git a/NextionControlPanel/src/Flags/Flag_B.png b/NextionControlPanel/src/Flags/Flag_B.png new file mode 100644 index 0000000..d1a3863 Binary files /dev/null and b/NextionControlPanel/src/Flags/Flag_B.png differ diff --git a/NextionControlPanel/src/Flags/Flag_C.png b/NextionControlPanel/src/Flags/Flag_C.png new file mode 100644 index 0000000..7eb931d Binary files /dev/null and b/NextionControlPanel/src/Flags/Flag_C.png differ diff --git a/NextionControlPanel/src/Flags/Flag_D.png b/NextionControlPanel/src/Flags/Flag_D.png new file mode 100644 index 0000000..71d1685 Binary files /dev/null and b/NextionControlPanel/src/Flags/Flag_D.png differ diff --git a/NextionControlPanel/src/Flags/Flag_Decimal.png b/NextionControlPanel/src/Flags/Flag_Decimal.png new file mode 100644 index 0000000..c1fa141 Binary files /dev/null and b/NextionControlPanel/src/Flags/Flag_Decimal.png differ diff --git a/NextionControlPanel/src/Flags/Flag_E.png b/NextionControlPanel/src/Flags/Flag_E.png new file mode 100644 index 0000000..9b92ad6 Binary files /dev/null and b/NextionControlPanel/src/Flags/Flag_E.png differ diff --git a/NextionControlPanel/src/Flags/Flag_F.png b/NextionControlPanel/src/Flags/Flag_F.png new file mode 100644 index 0000000..7f98e8c Binary files /dev/null and b/NextionControlPanel/src/Flags/Flag_F.png differ diff --git a/NextionControlPanel/src/Flags/Flag_G.png b/NextionControlPanel/src/Flags/Flag_G.png new file mode 100644 index 0000000..b31b1a7 Binary files /dev/null and b/NextionControlPanel/src/Flags/Flag_G.png differ diff --git a/NextionControlPanel/src/Flags/Flag_H.png b/NextionControlPanel/src/Flags/Flag_H.png new file mode 100644 index 0000000..44d5a0a Binary files /dev/null and b/NextionControlPanel/src/Flags/Flag_H.png differ diff --git a/NextionControlPanel/src/Flags/Flag_I.png b/NextionControlPanel/src/Flags/Flag_I.png new file mode 100644 index 0000000..ee344f0 Binary files /dev/null and b/NextionControlPanel/src/Flags/Flag_I.png differ diff --git a/NextionControlPanel/src/Flags/Flag_J.png b/NextionControlPanel/src/Flags/Flag_J.png new file mode 100644 index 0000000..3f8729e Binary files /dev/null and b/NextionControlPanel/src/Flags/Flag_J.png differ diff --git a/NextionControlPanel/src/Flags/Flag_K.png b/NextionControlPanel/src/Flags/Flag_K.png new file mode 100644 index 0000000..7012a83 Binary files /dev/null and b/NextionControlPanel/src/Flags/Flag_K.png differ diff --git a/NextionControlPanel/src/Flags/Flag_L.png b/NextionControlPanel/src/Flags/Flag_L.png new file mode 100644 index 0000000..1188c1e Binary files /dev/null and b/NextionControlPanel/src/Flags/Flag_L.png differ diff --git a/NextionControlPanel/src/Flags/Flag_M.png b/NextionControlPanel/src/Flags/Flag_M.png new file mode 100644 index 0000000..3319c62 Binary files /dev/null and b/NextionControlPanel/src/Flags/Flag_M.png differ diff --git a/NextionControlPanel/src/Flags/Flag_N.png b/NextionControlPanel/src/Flags/Flag_N.png new file mode 100644 index 0000000..c2179d8 Binary files /dev/null and b/NextionControlPanel/src/Flags/Flag_N.png differ diff --git a/NextionControlPanel/src/Flags/Flag_O.png b/NextionControlPanel/src/Flags/Flag_O.png new file mode 100644 index 0000000..d7e450c Binary files /dev/null and b/NextionControlPanel/src/Flags/Flag_O.png differ diff --git a/NextionControlPanel/src/Flags/Flag_P.png b/NextionControlPanel/src/Flags/Flag_P.png new file mode 100644 index 0000000..4cb09ba Binary files /dev/null and b/NextionControlPanel/src/Flags/Flag_P.png differ diff --git a/NextionControlPanel/src/Flags/Flag_Q.png b/NextionControlPanel/src/Flags/Flag_Q.png new file mode 100644 index 0000000..c1a8c44 Binary files /dev/null and b/NextionControlPanel/src/Flags/Flag_Q.png differ diff --git a/NextionControlPanel/src/Flags/Flag_R.png b/NextionControlPanel/src/Flags/Flag_R.png new file mode 100644 index 0000000..255ee6c Binary files /dev/null and b/NextionControlPanel/src/Flags/Flag_R.png differ diff --git a/NextionControlPanel/src/Flags/Flag_S.png b/NextionControlPanel/src/Flags/Flag_S.png new file mode 100644 index 0000000..0552711 Binary files /dev/null and b/NextionControlPanel/src/Flags/Flag_S.png differ diff --git a/NextionControlPanel/src/Flags/Flag_Sub1.png b/NextionControlPanel/src/Flags/Flag_Sub1.png new file mode 100644 index 0000000..cf6ca19 Binary files /dev/null and b/NextionControlPanel/src/Flags/Flag_Sub1.png differ diff --git a/NextionControlPanel/src/Flags/Flag_Sub2.png b/NextionControlPanel/src/Flags/Flag_Sub2.png new file mode 100644 index 0000000..b11bc3b Binary files /dev/null and b/NextionControlPanel/src/Flags/Flag_Sub2.png differ diff --git a/NextionControlPanel/src/Flags/Flag_Sub3.png b/NextionControlPanel/src/Flags/Flag_Sub3.png new file mode 100644 index 0000000..47458ff Binary files /dev/null and b/NextionControlPanel/src/Flags/Flag_Sub3.png differ diff --git a/NextionControlPanel/src/Flags/Flag_T.png b/NextionControlPanel/src/Flags/Flag_T.png new file mode 100644 index 0000000..6ba06a0 Binary files /dev/null and b/NextionControlPanel/src/Flags/Flag_T.png differ diff --git a/NextionControlPanel/src/Flags/Flag_U.png b/NextionControlPanel/src/Flags/Flag_U.png new file mode 100644 index 0000000..5034170 Binary files /dev/null and b/NextionControlPanel/src/Flags/Flag_U.png differ diff --git a/NextionControlPanel/src/Flags/Flag_V.png b/NextionControlPanel/src/Flags/Flag_V.png new file mode 100644 index 0000000..42bcd6c Binary files /dev/null and b/NextionControlPanel/src/Flags/Flag_V.png differ diff --git a/NextionControlPanel/src/Flags/Flag_W.png b/NextionControlPanel/src/Flags/Flag_W.png new file mode 100644 index 0000000..748cf6b Binary files /dev/null and b/NextionControlPanel/src/Flags/Flag_W.png differ diff --git a/NextionControlPanel/src/Flags/Flag_X.png b/NextionControlPanel/src/Flags/Flag_X.png new file mode 100644 index 0000000..6eaeba3 Binary files /dev/null and b/NextionControlPanel/src/Flags/Flag_X.png differ diff --git a/NextionControlPanel/src/Flags/Flag_Y.png b/NextionControlPanel/src/Flags/Flag_Y.png new file mode 100644 index 0000000..945e8e4 Binary files /dev/null and b/NextionControlPanel/src/Flags/Flag_Y.png differ diff --git a/NextionControlPanel/src/Flags/Flag_Z.png b/NextionControlPanel/src/Flags/Flag_Z.png new file mode 100644 index 0000000..2bd2c6b Binary files /dev/null and b/NextionControlPanel/src/Flags/Flag_Z.png differ diff --git a/NextionControlPanel/src/GreenBackGroundButton.jpg b/NextionControlPanel/src/GreenBackGroundButton.jpg new file mode 100644 index 0000000..49ae488 Binary files /dev/null and b/NextionControlPanel/src/GreenBackGroundButton.jpg differ diff --git a/NextionControlPanel/src/GreenBackGroundButtonLarge.jpg b/NextionControlPanel/src/GreenBackGroundButtonLarge.jpg new file mode 100644 index 0000000..836b6e0 Binary files /dev/null and b/NextionControlPanel/src/GreenBackGroundButtonLarge.jpg differ diff --git a/NextionControlPanel/src/GreenOnButton.jpg b/NextionControlPanel/src/GreenOnButton.jpg new file mode 100644 index 0000000..9d0c318 Binary files /dev/null and b/NextionControlPanel/src/GreenOnButton.jpg differ diff --git a/NextionControlPanel/src/GreenOnButton.png b/NextionControlPanel/src/GreenOnButton.png new file mode 100644 index 0000000..4a9d672 Binary files /dev/null and b/NextionControlPanel/src/GreenOnButton.png differ diff --git a/NextionControlPanel/src/GreyBackGroundButton.jpg b/NextionControlPanel/src/GreyBackGroundButton.jpg new file mode 100644 index 0000000..84f1f65 Binary files /dev/null and b/NextionControlPanel/src/GreyBackGroundButton.jpg differ diff --git a/NextionControlPanel/src/GreyBackGroundButtonLarge.jpg b/NextionControlPanel/src/GreyBackGroundButtonLarge.jpg new file mode 100644 index 0000000..74fd29e Binary files /dev/null and b/NextionControlPanel/src/GreyBackGroundButtonLarge.jpg differ diff --git a/NextionControlPanel/src/IconGreen.jpg b/NextionControlPanel/src/IconGreen.jpg new file mode 100644 index 0000000..448a193 Binary files /dev/null and b/NextionControlPanel/src/IconGreen.jpg differ diff --git a/NextionControlPanel/src/IconOrange.jpg b/NextionControlPanel/src/IconOrange.jpg new file mode 100644 index 0000000..dfc7148 Binary files /dev/null and b/NextionControlPanel/src/IconOrange.jpg differ diff --git a/NextionControlPanel/src/IconQuestion.jpg b/NextionControlPanel/src/IconQuestion.jpg new file mode 100644 index 0000000..40a9abb Binary files /dev/null and b/NextionControlPanel/src/IconQuestion.jpg differ diff --git a/NextionControlPanel/src/IconRed.jpg b/NextionControlPanel/src/IconRed.jpg new file mode 100644 index 0000000..568d62f Binary files /dev/null and b/NextionControlPanel/src/IconRed.jpg differ diff --git a/NextionControlPanel/src/Markers/CardinalMarkers.png b/NextionControlPanel/src/Markers/CardinalMarkers.png new file mode 100644 index 0000000..1e2b211 Binary files /dev/null and b/NextionControlPanel/src/Markers/CardinalMarkers.png differ diff --git a/NextionControlPanel/src/Markers/Hazard.png b/NextionControlPanel/src/Markers/Hazard.png new file mode 100644 index 0000000..0f8e8a7 Binary files /dev/null and b/NextionControlPanel/src/Markers/Hazard.png differ diff --git a/NextionControlPanel/src/Markers/IsolatedDanger.png b/NextionControlPanel/src/Markers/IsolatedDanger.png new file mode 100644 index 0000000..2fb7173 Binary files /dev/null and b/NextionControlPanel/src/Markers/IsolatedDanger.png differ diff --git a/NextionControlPanel/src/Markers/LateralPort.png b/NextionControlPanel/src/Markers/LateralPort.png new file mode 100644 index 0000000..210950d Binary files /dev/null and b/NextionControlPanel/src/Markers/LateralPort.png differ diff --git a/NextionControlPanel/src/Markers/LateralStarboard.png b/NextionControlPanel/src/Markers/LateralStarboard.png new file mode 100644 index 0000000..d99ed63 Binary files /dev/null and b/NextionControlPanel/src/Markers/LateralStarboard.png differ diff --git a/NextionControlPanel/src/Markers/PreferredChannelPort.png b/NextionControlPanel/src/Markers/PreferredChannelPort.png new file mode 100644 index 0000000..7bff953 Binary files /dev/null and b/NextionControlPanel/src/Markers/PreferredChannelPort.png differ diff --git a/NextionControlPanel/src/Markers/PreferredChannelStarboard.png b/NextionControlPanel/src/Markers/PreferredChannelStarboard.png new file mode 100644 index 0000000..063a6e5 Binary files /dev/null and b/NextionControlPanel/src/Markers/PreferredChannelStarboard.png differ diff --git a/NextionControlPanel/src/Markers/SafeWater.png b/NextionControlPanel/src/Markers/SafeWater.png new file mode 100644 index 0000000..710549a Binary files /dev/null and b/NextionControlPanel/src/Markers/SafeWater.png differ diff --git a/NextionControlPanel/src/Markers/SpecialMarker.png b/NextionControlPanel/src/Markers/SpecialMarker.png new file mode 100644 index 0000000..486a8ed Binary files /dev/null and b/NextionControlPanel/src/Markers/SpecialMarker.png differ diff --git a/NextionControlPanel/src/Moon Phases/1.New Moon.jpg b/NextionControlPanel/src/Moon Phases/1.New Moon.jpg new file mode 100644 index 0000000..73161b6 Binary files /dev/null and b/NextionControlPanel/src/Moon Phases/1.New Moon.jpg differ diff --git a/NextionControlPanel/src/Moon Phases/2.WaxingCrescent.jpg b/NextionControlPanel/src/Moon Phases/2.WaxingCrescent.jpg new file mode 100644 index 0000000..5425a38 Binary files /dev/null and b/NextionControlPanel/src/Moon Phases/2.WaxingCrescent.jpg differ diff --git a/NextionControlPanel/src/Moon Phases/3.FirstQuarter.jpg b/NextionControlPanel/src/Moon Phases/3.FirstQuarter.jpg new file mode 100644 index 0000000..a939f5c Binary files /dev/null and b/NextionControlPanel/src/Moon Phases/3.FirstQuarter.jpg differ diff --git a/NextionControlPanel/src/Moon Phases/4.WaxingGibbous.jpg b/NextionControlPanel/src/Moon Phases/4.WaxingGibbous.jpg new file mode 100644 index 0000000..213d9bb Binary files /dev/null and b/NextionControlPanel/src/Moon Phases/4.WaxingGibbous.jpg differ diff --git a/NextionControlPanel/src/Moon Phases/5.FullMoon.jpg b/NextionControlPanel/src/Moon Phases/5.FullMoon.jpg new file mode 100644 index 0000000..5f1ebf0 Binary files /dev/null and b/NextionControlPanel/src/Moon Phases/5.FullMoon.jpg differ diff --git a/NextionControlPanel/src/Moon Phases/6.WaningGibbous.jpg b/NextionControlPanel/src/Moon Phases/6.WaningGibbous.jpg new file mode 100644 index 0000000..160442a Binary files /dev/null and b/NextionControlPanel/src/Moon Phases/6.WaningGibbous.jpg differ diff --git a/NextionControlPanel/src/Moon Phases/7.LastQuarter.jpg b/NextionControlPanel/src/Moon Phases/7.LastQuarter.jpg new file mode 100644 index 0000000..eff18c6 Binary files /dev/null and b/NextionControlPanel/src/Moon Phases/7.LastQuarter.jpg differ diff --git a/NextionControlPanel/src/Moon Phases/8.WaningCrescent.jpg b/NextionControlPanel/src/Moon Phases/8.WaningCrescent.jpg new file mode 100644 index 0000000..72c8606 Binary files /dev/null and b/NextionControlPanel/src/Moon Phases/8.WaningCrescent.jpg differ diff --git a/NextionControlPanel/src/Moon Phases/Phases.jpg b/NextionControlPanel/src/Moon Phases/Phases.jpg new file mode 100644 index 0000000..376d491 Binary files /dev/null and b/NextionControlPanel/src/Moon Phases/Phases.jpg differ diff --git a/NextionControlPanel/src/NextLarge.png b/NextionControlPanel/src/NextLarge.png new file mode 100644 index 0000000..ca1a678 Binary files /dev/null and b/NextionControlPanel/src/NextLarge.png differ diff --git a/NextionControlPanel/src/Offline.jpg b/NextionControlPanel/src/Offline.jpg new file mode 100644 index 0000000..af6d78f Binary files /dev/null and b/NextionControlPanel/src/Offline.jpg differ diff --git a/NextionControlPanel/src/OrangeBackGroundButton.jpg b/NextionControlPanel/src/OrangeBackGroundButton.jpg new file mode 100644 index 0000000..ad0bb2b Binary files /dev/null and b/NextionControlPanel/src/OrangeBackGroundButton.jpg differ diff --git a/NextionControlPanel/src/OrangeBackGroundButtonLarge.jpg b/NextionControlPanel/src/OrangeBackGroundButtonLarge.jpg new file mode 100644 index 0000000..17593b7 Binary files /dev/null and b/NextionControlPanel/src/OrangeBackGroundButtonLarge.jpg differ diff --git a/NextionControlPanel/src/PrevLarge.png b/NextionControlPanel/src/PrevLarge.png new file mode 100644 index 0000000..a51494b Binary files /dev/null and b/NextionControlPanel/src/PrevLarge.png differ diff --git a/NextionControlPanel/src/RedBackGroundButton.jpg b/NextionControlPanel/src/RedBackGroundButton.jpg new file mode 100644 index 0000000..25484ec Binary files /dev/null and b/NextionControlPanel/src/RedBackGroundButton.jpg differ diff --git a/NextionControlPanel/src/RedBackGroundButtonLarge.jpg b/NextionControlPanel/src/RedBackGroundButtonLarge.jpg new file mode 100644 index 0000000..3b1cb98 Binary files /dev/null and b/NextionControlPanel/src/RedBackGroundButtonLarge.jpg differ diff --git a/NextionControlPanel/src/RedOffButton.jpg b/NextionControlPanel/src/RedOffButton.jpg new file mode 100644 index 0000000..04189ce Binary files /dev/null and b/NextionControlPanel/src/RedOffButton.jpg differ diff --git a/NextionControlPanel/src/RedOffButton.png b/NextionControlPanel/src/RedOffButton.png new file mode 100644 index 0000000..39ff82c Binary files /dev/null and b/NextionControlPanel/src/RedOffButton.png differ diff --git a/NextionControlPanel/src/Splash Screen.jpg b/NextionControlPanel/src/Splash Screen.jpg new file mode 100644 index 0000000..3085f75 Binary files /dev/null and b/NextionControlPanel/src/Splash Screen.jpg differ diff --git a/NextionControlPanel/src/UpperCase.jpg b/NextionControlPanel/src/UpperCase.jpg new file mode 100644 index 0000000..c0758fc Binary files /dev/null and b/NextionControlPanel/src/UpperCase.jpg differ diff --git a/NextionControlPanel/src/VHF.jpg b/NextionControlPanel/src/VHF.jpg new file mode 100644 index 0000000..92f0510 Binary files /dev/null and b/NextionControlPanel/src/VHF.jpg differ diff --git a/NextionControlPanel/src/Warning_25x25.jpg b/NextionControlPanel/src/Warning_25x25.jpg new file mode 100644 index 0000000..d348d71 Binary files /dev/null and b/NextionControlPanel/src/Warning_25x25.jpg differ diff --git a/NextionControlPanel/src/YellowBackGroundButton.jpg b/NextionControlPanel/src/YellowBackGroundButton.jpg new file mode 100644 index 0000000..bd1a66e Binary files /dev/null and b/NextionControlPanel/src/YellowBackGroundButton.jpg differ diff --git a/NextionControlPanel/src/YellowBackGroundButtonLarge.jpg b/NextionControlPanel/src/YellowBackGroundButtonLarge.jpg new file mode 100644 index 0000000..afde895 Binary files /dev/null and b/NextionControlPanel/src/YellowBackGroundButtonLarge.jpg differ diff --git a/NextionControlPanel/src/arrow_back_25x25.jpg b/NextionControlPanel/src/arrow_back_25x25.jpg new file mode 100644 index 0000000..1416b18 Binary files /dev/null and b/NextionControlPanel/src/arrow_back_25x25.jpg differ diff --git a/NextionControlPanel/src/arrow_forward_25x25.jpg b/NextionControlPanel/src/arrow_forward_25x25.jpg new file mode 100644 index 0000000..c545fc3 Binary files /dev/null and b/NextionControlPanel/src/arrow_forward_25x25.jpg differ diff --git a/NextionControlPanel/src/settings_25x25.jpg b/NextionControlPanel/src/settings_25x25.jpg new file mode 100644 index 0000000..b981f73 Binary files /dev/null and b/NextionControlPanel/src/settings_25x25.jpg differ diff --git a/SmartFuseBox/SmartFuseBox.sln b/PowerControlHub.sln similarity index 66% rename from SmartFuseBox/SmartFuseBox.sln rename to PowerControlHub.sln index e31b9db..a65facd 100644 --- a/SmartFuseBox/SmartFuseBox.sln +++ b/PowerControlHub.sln @@ -3,8 +3,6 @@ Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio Version 18 VisualStudioVersion = 18.3.11206.111 MinimumVisualStudioVersion = 10.0.40219.1 -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SmartFuseBox", "SmartFuseBox.vcxproj", "{BF57E525-5F6C-4BC1-9C83-B7ECAC52B23C}" -EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "SymLinks", "SymLinks", "{6BEDDF33-F479-4FE4-B2E7-CD5DA6C98DA1}" ProjectSection(SolutionItems) = preProject ..\SymLinks\SymLinkDefinitionsSmartFuseBox.txt = ..\SymLinks\SymLinkDefinitionsSmartFuseBox.txt @@ -43,26 +41,50 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "TestData", "TestData", "{AB ..\TestData\test-commands.txt = ..\TestData\test-commands.txt EndProjectSection EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "PowerControlHub", "PowerControlHub\PowerControlHub.vcxproj", "{BF57E525-5F6C-4BC1-9C83-B7ECAC52B23C}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PowerControlHubSync", "PowerControlHubSync\src\PowerControlHubSync.csproj", "{31F2CD6A-B9E7-9FD4-3808-399C52A59619}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU Debug|ARM = Debug|ARM Debug|ARM64 = Debug|ARM64 + Release|Any CPU = Release|Any CPU Release|ARM = Release|ARM Release|ARM64 = Release|ARM64 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution + {BF57E525-5F6C-4BC1-9C83-B7ECAC52B23C}.Debug|Any CPU.ActiveCfg = Debug|ARM + {BF57E525-5F6C-4BC1-9C83-B7ECAC52B23C}.Debug|Any CPU.Build.0 = Debug|ARM + {BF57E525-5F6C-4BC1-9C83-B7ECAC52B23C}.Debug|Any CPU.Deploy.0 = Debug|ARM {BF57E525-5F6C-4BC1-9C83-B7ECAC52B23C}.Debug|ARM.ActiveCfg = Debug|ARM {BF57E525-5F6C-4BC1-9C83-B7ECAC52B23C}.Debug|ARM.Build.0 = Debug|ARM {BF57E525-5F6C-4BC1-9C83-B7ECAC52B23C}.Debug|ARM.Deploy.0 = Debug|ARM {BF57E525-5F6C-4BC1-9C83-B7ECAC52B23C}.Debug|ARM64.ActiveCfg = Debug|ARM64 {BF57E525-5F6C-4BC1-9C83-B7ECAC52B23C}.Debug|ARM64.Build.0 = Debug|ARM64 {BF57E525-5F6C-4BC1-9C83-B7ECAC52B23C}.Debug|ARM64.Deploy.0 = Debug|ARM64 + {BF57E525-5F6C-4BC1-9C83-B7ECAC52B23C}.Release|Any CPU.ActiveCfg = Release|ARM + {BF57E525-5F6C-4BC1-9C83-B7ECAC52B23C}.Release|Any CPU.Build.0 = Release|ARM + {BF57E525-5F6C-4BC1-9C83-B7ECAC52B23C}.Release|Any CPU.Deploy.0 = Release|ARM {BF57E525-5F6C-4BC1-9C83-B7ECAC52B23C}.Release|ARM.ActiveCfg = Release|ARM {BF57E525-5F6C-4BC1-9C83-B7ECAC52B23C}.Release|ARM.Build.0 = Release|ARM {BF57E525-5F6C-4BC1-9C83-B7ECAC52B23C}.Release|ARM.Deploy.0 = Release|ARM {BF57E525-5F6C-4BC1-9C83-B7ECAC52B23C}.Release|ARM64.ActiveCfg = Release|ARM64 {BF57E525-5F6C-4BC1-9C83-B7ECAC52B23C}.Release|ARM64.Build.0 = Release|ARM64 {BF57E525-5F6C-4BC1-9C83-B7ECAC52B23C}.Release|ARM64.Deploy.0 = Release|ARM64 + {31F2CD6A-B9E7-9FD4-3808-399C52A59619}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {31F2CD6A-B9E7-9FD4-3808-399C52A59619}.Debug|Any CPU.Build.0 = Debug|Any CPU + {31F2CD6A-B9E7-9FD4-3808-399C52A59619}.Debug|ARM.ActiveCfg = Debug|Any CPU + {31F2CD6A-B9E7-9FD4-3808-399C52A59619}.Debug|ARM.Build.0 = Debug|Any CPU + {31F2CD6A-B9E7-9FD4-3808-399C52A59619}.Debug|ARM64.ActiveCfg = Debug|Any CPU + {31F2CD6A-B9E7-9FD4-3808-399C52A59619}.Debug|ARM64.Build.0 = Debug|Any CPU + {31F2CD6A-B9E7-9FD4-3808-399C52A59619}.Release|Any CPU.ActiveCfg = Release|Any CPU + {31F2CD6A-B9E7-9FD4-3808-399C52A59619}.Release|Any CPU.Build.0 = Release|Any CPU + {31F2CD6A-B9E7-9FD4-3808-399C52A59619}.Release|ARM.ActiveCfg = Release|Any CPU + {31F2CD6A-B9E7-9FD4-3808-399C52A59619}.Release|ARM.Build.0 = Release|Any CPU + {31F2CD6A-B9E7-9FD4-3808-399C52A59619}.Release|ARM64.ActiveCfg = Release|Any CPU + {31F2CD6A-B9E7-9FD4-3808-399C52A59619}.Release|ARM64.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/SmartFuseBox/AckCommandHandler.cpp b/PowerControlHub/AckCommandHandler.cpp similarity index 99% rename from SmartFuseBox/AckCommandHandler.cpp rename to PowerControlHub/AckCommandHandler.cpp index 09018d8..0842736 100644 --- a/SmartFuseBox/AckCommandHandler.cpp +++ b/PowerControlHub/AckCommandHandler.cpp @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/AckCommandHandler.h b/PowerControlHub/AckCommandHandler.h similarity index 98% rename from SmartFuseBox/AckCommandHandler.h rename to PowerControlHub/AckCommandHandler.h index 21524fc..46df107 100644 --- a/SmartFuseBox/AckCommandHandler.h +++ b/PowerControlHub/AckCommandHandler.h @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/Astronomy.h b/PowerControlHub/Astronomy.h similarity index 99% rename from SmartFuseBox/Astronomy.h rename to PowerControlHub/Astronomy.h index fad8e2d..79871ce 100644 --- a/SmartFuseBox/Astronomy.h +++ b/PowerControlHub/Astronomy.h @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/BaseConfigCommandHandler.h b/PowerControlHub/BaseConfigCommandHandler.h similarity index 99% rename from SmartFuseBox/BaseConfigCommandHandler.h rename to PowerControlHub/BaseConfigCommandHandler.h index 2c10414..724c1a0 100644 --- a/SmartFuseBox/BaseConfigCommandHandler.h +++ b/PowerControlHub/BaseConfigCommandHandler.h @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/BaseNextionCommandHandler.cpp b/PowerControlHub/BaseNextionCommandHandler.cpp similarity index 98% rename from SmartFuseBox/BaseNextionCommandHandler.cpp rename to PowerControlHub/BaseNextionCommandHandler.cpp index 3bec0bd..021dcb1 100644 --- a/SmartFuseBox/BaseNextionCommandHandler.cpp +++ b/PowerControlHub/BaseNextionCommandHandler.cpp @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/BaseNextionCommandHandler.h b/PowerControlHub/BaseNextionCommandHandler.h similarity index 99% rename from SmartFuseBox/BaseNextionCommandHandler.h rename to PowerControlHub/BaseNextionCommandHandler.h index c93c262..54fc0f7 100644 --- a/SmartFuseBox/BaseNextionCommandHandler.h +++ b/PowerControlHub/BaseNextionCommandHandler.h @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/BasePage.cpp b/PowerControlHub/BasePage.cpp similarity index 99% rename from SmartFuseBox/BasePage.cpp rename to PowerControlHub/BasePage.cpp index 7680d82..b2420c6 100644 --- a/SmartFuseBox/BasePage.cpp +++ b/PowerControlHub/BasePage.cpp @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/BasePage.h b/PowerControlHub/BasePage.h similarity index 99% rename from SmartFuseBox/BasePage.h rename to PowerControlHub/BasePage.h index 86bed12..5c84b4e 100644 --- a/SmartFuseBox/BasePage.h +++ b/PowerControlHub/BasePage.h @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/BaseSensor.h b/PowerControlHub/BaseSensor.h similarity index 94% rename from SmartFuseBox/BaseSensor.h rename to PowerControlHub/BaseSensor.h index a0b7b56..d130e58 100644 --- a/SmartFuseBox/BaseSensor.h +++ b/PowerControlHub/BaseSensor.h @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify @@ -22,8 +22,8 @@ #include "Local.h" #include "JsonVisitor.h" -// Forward declaration to allow SmartFuseBoxApp to be declared friend below -class SmartFuseBoxApp; +// Forward declaration to allow PowerControlHubApp to be declared friend below +class PowerControlHubApp; enum class SensorType : uint8_t @@ -51,7 +51,7 @@ struct MqttSensorChannel class BaseSensor : public BaseSensorHandler, public JsonVisitor { // Allow top-level application class to access BaseSensor internals - friend class SmartFuseBoxApp; + friend class PowerControlHubApp; private: uint8_t _uniqueId = 0; diff --git a/SmartFuseBox/BinaryPresenceSensor.cpp b/PowerControlHub/BinaryPresenceSensor.cpp similarity index 99% rename from SmartFuseBox/BinaryPresenceSensor.cpp rename to PowerControlHub/BinaryPresenceSensor.cpp index 0f29f00..723fa2b 100644 --- a/SmartFuseBox/BinaryPresenceSensor.cpp +++ b/PowerControlHub/BinaryPresenceSensor.cpp @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2026 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/BinaryPresenceSensor.h b/PowerControlHub/BinaryPresenceSensor.h similarity index 99% rename from SmartFuseBox/BinaryPresenceSensor.h rename to PowerControlHub/BinaryPresenceSensor.h index 0fa670a..eec5d1f 100644 --- a/SmartFuseBox/BinaryPresenceSensor.h +++ b/PowerControlHub/BinaryPresenceSensor.h @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2026 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/BluetoothController.h b/PowerControlHub/BluetoothController.h similarity index 99% rename from SmartFuseBox/BluetoothController.h rename to PowerControlHub/BluetoothController.h index 6353e36..6cae2d5 100644 --- a/SmartFuseBox/BluetoothController.h +++ b/PowerControlHub/BluetoothController.h @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/BluetoothManager.cpp b/PowerControlHub/BluetoothManager.cpp similarity index 99% rename from SmartFuseBox/BluetoothManager.cpp rename to PowerControlHub/BluetoothManager.cpp index f5a67bd..5851fc1 100644 --- a/SmartFuseBox/BluetoothManager.cpp +++ b/PowerControlHub/BluetoothManager.cpp @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/BluetoothManager.h b/PowerControlHub/BluetoothManager.h similarity index 98% rename from SmartFuseBox/BluetoothManager.h rename to PowerControlHub/BluetoothManager.h index 8f610e3..5a522ec 100644 --- a/SmartFuseBox/BluetoothManager.h +++ b/PowerControlHub/BluetoothManager.h @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify @@ -48,7 +48,7 @@ * BluetoothServiceBase* services[] = { &systemService, &relayService }; * BluetoothManager btManager(services, 2); * - * btManager.begin("SmartFuseBox"); + * btManager.begin("PowerControlHub"); * * void loop() * { diff --git a/SmartFuseBox/BluetoothRadioBridge.h b/PowerControlHub/BluetoothRadioBridge.h similarity index 98% rename from SmartFuseBox/BluetoothRadioBridge.h rename to PowerControlHub/BluetoothRadioBridge.h index 6fd36eb..62b7dde 100644 --- a/SmartFuseBox/BluetoothRadioBridge.h +++ b/PowerControlHub/BluetoothRadioBridge.h @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/BluetoothRelayService.cpp b/PowerControlHub/BluetoothRelayService.cpp similarity index 99% rename from SmartFuseBox/BluetoothRelayService.cpp rename to PowerControlHub/BluetoothRelayService.cpp index e34f5a1..50eb981 100644 --- a/SmartFuseBox/BluetoothRelayService.cpp +++ b/PowerControlHub/BluetoothRelayService.cpp @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/BluetoothRelayService.h b/PowerControlHub/BluetoothRelayService.h similarity index 99% rename from SmartFuseBox/BluetoothRelayService.h rename to PowerControlHub/BluetoothRelayService.h index c92392b..d753777 100644 --- a/SmartFuseBox/BluetoothRelayService.h +++ b/PowerControlHub/BluetoothRelayService.h @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/BluetoothSensorService.cpp b/PowerControlHub/BluetoothSensorService.cpp similarity index 99% rename from SmartFuseBox/BluetoothSensorService.cpp rename to PowerControlHub/BluetoothSensorService.cpp index 6d4d28c..c9baf9c 100644 --- a/SmartFuseBox/BluetoothSensorService.cpp +++ b/PowerControlHub/BluetoothSensorService.cpp @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/BluetoothSensorService.h b/PowerControlHub/BluetoothSensorService.h similarity index 99% rename from SmartFuseBox/BluetoothSensorService.h rename to PowerControlHub/BluetoothSensorService.h index 0c2b936..8119120 100644 --- a/SmartFuseBox/BluetoothSensorService.h +++ b/PowerControlHub/BluetoothSensorService.h @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/BluetoothServiceBase.h b/PowerControlHub/BluetoothServiceBase.h similarity index 98% rename from SmartFuseBox/BluetoothServiceBase.h rename to PowerControlHub/BluetoothServiceBase.h index 6cc2d4d..a256bb0 100644 --- a/SmartFuseBox/BluetoothServiceBase.h +++ b/PowerControlHub/BluetoothServiceBase.h @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify @@ -26,7 +26,7 @@ /** * @brief Abstract base class for Bluetooth BLE services. * - * This class provides a common interface for all Bluetooth services in the SmartFuseBox. + * This class provides a common interface for all Bluetooth services in the PowerControlHub. * Each service corresponds to a command category from Commands.md (System, Config, Relay, etc.) * and encapsulates its own service UUID, characteristics, and command handling logic. * diff --git a/SmartFuseBox/BluetoothSystemService.cpp b/PowerControlHub/BluetoothSystemService.cpp similarity index 99% rename from SmartFuseBox/BluetoothSystemService.cpp rename to PowerControlHub/BluetoothSystemService.cpp index 9ed09e3..517b59a 100644 --- a/SmartFuseBox/BluetoothSystemService.cpp +++ b/PowerControlHub/BluetoothSystemService.cpp @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/BluetoothSystemService.h b/PowerControlHub/BluetoothSystemService.h similarity index 99% rename from SmartFuseBox/BluetoothSystemService.h rename to PowerControlHub/BluetoothSystemService.h index afbb3b3..df62913 100644 --- a/SmartFuseBox/BluetoothSystemService.h +++ b/PowerControlHub/BluetoothSystemService.h @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/BoardConfig.h b/PowerControlHub/BoardConfig.h similarity index 99% rename from SmartFuseBox/BoardConfig.h rename to PowerControlHub/BoardConfig.h index 225d4e6..bb6ad29 100644 --- a/SmartFuseBox/BoardConfig.h +++ b/PowerControlHub/BoardConfig.h @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/BroadcastManager.cpp b/PowerControlHub/BroadcastManager.cpp similarity index 98% rename from SmartFuseBox/BroadcastManager.cpp rename to PowerControlHub/BroadcastManager.cpp index 4453f6a..380c31a 100644 --- a/SmartFuseBox/BroadcastManager.cpp +++ b/PowerControlHub/BroadcastManager.cpp @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/BroadcastManager.h b/PowerControlHub/BroadcastManager.h similarity index 99% rename from SmartFuseBox/BroadcastManager.h rename to PowerControlHub/BroadcastManager.h index 9fcbc10..9e3dd15 100644 --- a/SmartFuseBox/BroadcastManager.h +++ b/PowerControlHub/BroadcastManager.h @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/Config.h b/PowerControlHub/Config.h similarity index 99% rename from SmartFuseBox/Config.h rename to PowerControlHub/Config.h index 1f34d8a..e34d351 100644 --- a/SmartFuseBox/Config.h +++ b/PowerControlHub/Config.h @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/ConfigCommandHandler.cpp b/PowerControlHub/ConfigCommandHandler.cpp similarity index 99% rename from SmartFuseBox/ConfigCommandHandler.cpp rename to PowerControlHub/ConfigCommandHandler.cpp index 8ba3aaf..aafd83e 100644 --- a/SmartFuseBox/ConfigCommandHandler.cpp +++ b/PowerControlHub/ConfigCommandHandler.cpp @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/ConfigCommandHandler.h b/PowerControlHub/ConfigCommandHandler.h similarity index 99% rename from SmartFuseBox/ConfigCommandHandler.h rename to PowerControlHub/ConfigCommandHandler.h index c01a474..606da9b 100644 --- a/SmartFuseBox/ConfigCommandHandler.h +++ b/PowerControlHub/ConfigCommandHandler.h @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/ConfigController.cpp b/PowerControlHub/ConfigController.cpp similarity index 99% rename from SmartFuseBox/ConfigController.cpp rename to PowerControlHub/ConfigController.cpp index 468bad6..66afcd2 100644 --- a/SmartFuseBox/ConfigController.cpp +++ b/PowerControlHub/ConfigController.cpp @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/ConfigController.h b/PowerControlHub/ConfigController.h similarity index 99% rename from SmartFuseBox/ConfigController.h rename to PowerControlHub/ConfigController.h index fcf1f03..6d23311 100644 --- a/SmartFuseBox/ConfigController.h +++ b/PowerControlHub/ConfigController.h @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/ConfigManager.cpp b/PowerControlHub/ConfigManager.cpp similarity index 98% rename from SmartFuseBox/ConfigManager.cpp rename to PowerControlHub/ConfigManager.cpp index ca16c83..2e42818 100644 --- a/SmartFuseBox/ConfigManager.cpp +++ b/PowerControlHub/ConfigManager.cpp @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify @@ -321,7 +321,7 @@ void ConfigManager::resetToDefaults() _cfg.network.wifiEnabled = false; _cfg.network.accessMode = WifiMode::AccessPoint; - strncpy(_cfg.network.ssid, "SmartFuseBox", sizeof(_cfg.network.ssid) - 1); + strncpy(_cfg.network.ssid, "PowerControlHub", sizeof(_cfg.network.ssid) - 1); _cfg.network.ssid[sizeof(_cfg.network.ssid) - 1] = '\0'; SystemFunctions::GenerateDefaultPassword(_cfg.network.password, sizeof(_cfg.network.password)); _cfg.network.password[sizeof(_cfg.network.password) - 1] = '\0'; @@ -348,7 +348,7 @@ void ConfigManager::resetToDefaults() _cfg.mqtt.port = ConfigMqttDefaultPort; _cfg.mqtt.username[0] = '\0'; _cfg.mqtt.password[0] = '\0'; - strncpy(_cfg.mqtt.deviceId, "smartfusebox_01", ConfigMqttDeviceIdLength - 1); + strncpy(_cfg.mqtt.deviceId, "PowerControlHub_01", ConfigMqttDeviceIdLength - 1); _cfg.mqtt.deviceId[ConfigMqttDeviceIdLength - 1] = '\0'; _cfg.mqtt.useHomeAssistantDiscovery = false; _cfg.mqtt.keepAliveInterval = ConfigMqttKeepAliveDefault; diff --git a/SmartFuseBox/ConfigManager.h b/PowerControlHub/ConfigManager.h similarity index 99% rename from SmartFuseBox/ConfigManager.h rename to PowerControlHub/ConfigManager.h index ceb3a19..daa8aa9 100644 --- a/SmartFuseBox/ConfigManager.h +++ b/PowerControlHub/ConfigManager.h @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/ConfigNetworkHandler.cpp b/PowerControlHub/ConfigNetworkHandler.cpp similarity index 99% rename from SmartFuseBox/ConfigNetworkHandler.cpp rename to PowerControlHub/ConfigNetworkHandler.cpp index 815c256..012d16a 100644 --- a/SmartFuseBox/ConfigNetworkHandler.cpp +++ b/PowerControlHub/ConfigNetworkHandler.cpp @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/ConfigNetworkHandler.h b/PowerControlHub/ConfigNetworkHandler.h similarity index 98% rename from SmartFuseBox/ConfigNetworkHandler.h rename to PowerControlHub/ConfigNetworkHandler.h index 9a69893..a395c21 100644 --- a/SmartFuseBox/ConfigNetworkHandler.h +++ b/PowerControlHub/ConfigNetworkHandler.h @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/DateTimeManager.cpp b/PowerControlHub/DateTimeManager.cpp similarity index 99% rename from SmartFuseBox/DateTimeManager.cpp rename to PowerControlHub/DateTimeManager.cpp index 88ebf4c..77dfdf6 100644 --- a/SmartFuseBox/DateTimeManager.cpp +++ b/PowerControlHub/DateTimeManager.cpp @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/DateTimeManager.h b/PowerControlHub/DateTimeManager.h similarity index 99% rename from SmartFuseBox/DateTimeManager.h rename to PowerControlHub/DateTimeManager.h index a731dfd..ebb6e1c 100644 --- a/SmartFuseBox/DateTimeManager.h +++ b/PowerControlHub/DateTimeManager.h @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/Dht11SensorHandler.h b/PowerControlHub/Dht11SensorHandler.h similarity index 99% rename from SmartFuseBox/Dht11SensorHandler.h rename to PowerControlHub/Dht11SensorHandler.h index c0fbc4e..c1bd0c8 100644 --- a/SmartFuseBox/Dht11SensorHandler.h +++ b/PowerControlHub/Dht11SensorHandler.h @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/Environment.h b/PowerControlHub/Environment.h similarity index 99% rename from SmartFuseBox/Environment.h rename to PowerControlHub/Environment.h index fb550d1..812df8b 100644 --- a/SmartFuseBox/Environment.h +++ b/PowerControlHub/Environment.h @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/Esp32WifiClient.h b/PowerControlHub/Esp32WifiClient.h similarity index 99% rename from SmartFuseBox/Esp32WifiClient.h rename to PowerControlHub/Esp32WifiClient.h index b730eee..28b2385 100644 --- a/SmartFuseBox/Esp32WifiClient.h +++ b/PowerControlHub/Esp32WifiClient.h @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/Esp32WifiRadio.h b/PowerControlHub/Esp32WifiRadio.h similarity index 99% rename from SmartFuseBox/Esp32WifiRadio.h rename to PowerControlHub/Esp32WifiRadio.h index d41b6fa..3c256cb 100644 --- a/SmartFuseBox/Esp32WifiRadio.h +++ b/PowerControlHub/Esp32WifiRadio.h @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/ExternalSensorConfigCommandHandler.h b/PowerControlHub/ExternalSensorConfigCommandHandler.h similarity index 99% rename from SmartFuseBox/ExternalSensorConfigCommandHandler.h rename to PowerControlHub/ExternalSensorConfigCommandHandler.h index 26d4fd6..6d40bb1 100644 --- a/SmartFuseBox/ExternalSensorConfigCommandHandler.h +++ b/PowerControlHub/ExternalSensorConfigCommandHandler.h @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify @@ -30,7 +30,7 @@ * add/update is split across two commands. * * *** Important — reboot required *** - * RemoteSensor instances are constructed once during SmartFuseBoxApp::setup(). + * RemoteSensor instances are constructed once during PowerControlHubApp::setup(). * Changes here only affect persisted config; they take effect at next boot. * Every mutating ACK carries a "reboot=1" field to make this explicit. * diff --git a/SmartFuseBox/ExternalSensorNetworkHandler.cpp b/PowerControlHub/ExternalSensorNetworkHandler.cpp similarity index 99% rename from SmartFuseBox/ExternalSensorNetworkHandler.cpp rename to PowerControlHub/ExternalSensorNetworkHandler.cpp index ecef94c..bf8fe09 100644 --- a/SmartFuseBox/ExternalSensorNetworkHandler.cpp +++ b/PowerControlHub/ExternalSensorNetworkHandler.cpp @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/ExternalSensorNetworkHandler.h b/PowerControlHub/ExternalSensorNetworkHandler.h similarity index 98% rename from SmartFuseBox/ExternalSensorNetworkHandler.h rename to PowerControlHub/ExternalSensorNetworkHandler.h index b76f027..142663b 100644 --- a/SmartFuseBox/ExternalSensorNetworkHandler.h +++ b/PowerControlHub/ExternalSensorNetworkHandler.h @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/FirmwareVersion.h b/PowerControlHub/FirmwareVersion.h similarity index 98% rename from SmartFuseBox/FirmwareVersion.h rename to PowerControlHub/FirmwareVersion.h index fb66079..9cacc4a 100644 --- a/SmartFuseBox/FirmwareVersion.h +++ b/PowerControlHub/FirmwareVersion.h @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/GpsSensorHandler.h b/PowerControlHub/GpsSensorHandler.h similarity index 99% rename from SmartFuseBox/GpsSensorHandler.h rename to PowerControlHub/GpsSensorHandler.h index 3177db1..bd09967 100644 --- a/SmartFuseBox/GpsSensorHandler.h +++ b/PowerControlHub/GpsSensorHandler.h @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify @@ -22,7 +22,7 @@ #include "SystemDefinitions.h" -#include "SmartFuseBoxConstants.h" +#include "PowerControlHubConstants.h" #include "WarningManager.h" #include "WarningType.h" #include "BaseSensor.h" diff --git a/SmartFuseBox/IBluetoothRadio.h b/PowerControlHub/IBluetoothRadio.h similarity index 99% rename from SmartFuseBox/IBluetoothRadio.h rename to PowerControlHub/IBluetoothRadio.h index 6bcd9d3..ee6946f 100644 --- a/SmartFuseBox/IBluetoothRadio.h +++ b/PowerControlHub/IBluetoothRadio.h @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/INavigationDelegate.h b/PowerControlHub/INavigationDelegate.h similarity index 99% rename from SmartFuseBox/INavigationDelegate.h rename to PowerControlHub/INavigationDelegate.h index c888371..4fe1bc7 100644 --- a/SmartFuseBox/INavigationDelegate.h +++ b/PowerControlHub/INavigationDelegate.h @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/INetworkCommandHandler.h b/PowerControlHub/INetworkCommandHandler.h similarity index 99% rename from SmartFuseBox/INetworkCommandHandler.h rename to PowerControlHub/INetworkCommandHandler.h index 225e242..9c1097e 100644 --- a/SmartFuseBox/INetworkCommandHandler.h +++ b/PowerControlHub/INetworkCommandHandler.h @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/IWifiClient.h b/PowerControlHub/IWifiClient.h similarity index 99% rename from SmartFuseBox/IWifiClient.h rename to PowerControlHub/IWifiClient.h index d991578..2162a4d 100644 --- a/SmartFuseBox/IWifiClient.h +++ b/PowerControlHub/IWifiClient.h @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/IWifiController.h b/PowerControlHub/IWifiController.h similarity index 99% rename from SmartFuseBox/IWifiController.h rename to PowerControlHub/IWifiController.h index a07a857..ed17aea 100644 --- a/SmartFuseBox/IWifiController.h +++ b/PowerControlHub/IWifiController.h @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/IWifiRadio.h b/PowerControlHub/IWifiRadio.h similarity index 98% rename from SmartFuseBox/IWifiRadio.h rename to PowerControlHub/IWifiRadio.h index bf0659c..fe3f458 100644 --- a/SmartFuseBox/IWifiRadio.h +++ b/PowerControlHub/IWifiRadio.h @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/InterceptDebugCommandHandler.h b/PowerControlHub/InterceptDebugCommandHandler.h similarity index 98% rename from SmartFuseBox/InterceptDebugCommandHandler.h rename to PowerControlHub/InterceptDebugCommandHandler.h index c30d993..98f6414 100644 --- a/SmartFuseBox/InterceptDebugCommandHandler.h +++ b/PowerControlHub/InterceptDebugCommandHandler.h @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/JsonVisitor.h b/PowerControlHub/JsonVisitor.h similarity index 97% rename from SmartFuseBox/JsonVisitor.h rename to PowerControlHub/JsonVisitor.h index 40c07fa..73e15bd 100644 --- a/SmartFuseBox/JsonVisitor.h +++ b/PowerControlHub/JsonVisitor.h @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/LedMatrixManager.cpp b/PowerControlHub/LedMatrixManager.cpp similarity index 99% rename from SmartFuseBox/LedMatrixManager.cpp rename to PowerControlHub/LedMatrixManager.cpp index 645aadc..754b03d 100644 --- a/SmartFuseBox/LedMatrixManager.cpp +++ b/PowerControlHub/LedMatrixManager.cpp @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify @@ -17,7 +17,7 @@ */ #include "Local.h" #include "LedMatrixManager.h" -#include "SmartFuseBoxConstants.h" +#include "PowerControlHubConstants.h" #include "MessageBus.h" #if defined(LED_MANAGER) diff --git a/SmartFuseBox/LedMatrixManager.h b/PowerControlHub/LedMatrixManager.h similarity index 99% rename from SmartFuseBox/LedMatrixManager.h rename to PowerControlHub/LedMatrixManager.h index f3ac668..469b622 100644 --- a/SmartFuseBox/LedMatrixManager.h +++ b/PowerControlHub/LedMatrixManager.h @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/LightSensorHandler.h b/PowerControlHub/LightSensorHandler.h similarity index 99% rename from SmartFuseBox/LightSensorHandler.h rename to PowerControlHub/LightSensorHandler.h index e66313a..e481320 100644 --- a/SmartFuseBox/LightSensorHandler.h +++ b/PowerControlHub/LightSensorHandler.h @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/Local.h b/PowerControlHub/Local.h similarity index 99% rename from SmartFuseBox/Local.h rename to PowerControlHub/Local.h index b9ce5cd..52f4f51 100644 --- a/SmartFuseBox/Local.h +++ b/PowerControlHub/Local.h @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/LoggingSupport.h b/PowerControlHub/LoggingSupport.h similarity index 99% rename from SmartFuseBox/LoggingSupport.h rename to PowerControlHub/LoggingSupport.h index c3ac1e3..4fab1ea 100644 --- a/SmartFuseBox/LoggingSupport.h +++ b/PowerControlHub/LoggingSupport.h @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/MQTTClient.cpp b/PowerControlHub/MQTTClient.cpp similarity index 99% rename from SmartFuseBox/MQTTClient.cpp rename to PowerControlHub/MQTTClient.cpp index 7d70e7b..547b993 100644 --- a/SmartFuseBox/MQTTClient.cpp +++ b/PowerControlHub/MQTTClient.cpp @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/MQTTClient.h b/PowerControlHub/MQTTClient.h similarity index 99% rename from SmartFuseBox/MQTTClient.h rename to PowerControlHub/MQTTClient.h index 25908f9..9c70cc5 100644 --- a/SmartFuseBox/MQTTClient.h +++ b/PowerControlHub/MQTTClient.h @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/MQTTConfigCommandHandler.cpp b/PowerControlHub/MQTTConfigCommandHandler.cpp similarity index 99% rename from SmartFuseBox/MQTTConfigCommandHandler.cpp rename to PowerControlHub/MQTTConfigCommandHandler.cpp index 4de33a4..af380a9 100644 --- a/SmartFuseBox/MQTTConfigCommandHandler.cpp +++ b/PowerControlHub/MQTTConfigCommandHandler.cpp @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/MQTTConfigCommandHandler.h b/PowerControlHub/MQTTConfigCommandHandler.h similarity index 99% rename from SmartFuseBox/MQTTConfigCommandHandler.h rename to PowerControlHub/MQTTConfigCommandHandler.h index 2ae132e..c1c620c 100644 --- a/SmartFuseBox/MQTTConfigCommandHandler.h +++ b/PowerControlHub/MQTTConfigCommandHandler.h @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/MQTTController.cpp b/PowerControlHub/MQTTController.cpp similarity index 99% rename from SmartFuseBox/MQTTController.cpp rename to PowerControlHub/MQTTController.cpp index aa296e2..ab0ea87 100644 --- a/SmartFuseBox/MQTTController.cpp +++ b/PowerControlHub/MQTTController.cpp @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/MQTTController.h b/PowerControlHub/MQTTController.h similarity index 99% rename from SmartFuseBox/MQTTController.h rename to PowerControlHub/MQTTController.h index 9937b03..bbea9bc 100644 --- a/SmartFuseBox/MQTTController.h +++ b/PowerControlHub/MQTTController.h @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/MQTTDefinitions.h b/PowerControlHub/MQTTDefinitions.h similarity index 99% rename from SmartFuseBox/MQTTDefinitions.h rename to PowerControlHub/MQTTDefinitions.h index 1acd0f2..8a8bbce 100644 --- a/SmartFuseBox/MQTTDefinitions.h +++ b/PowerControlHub/MQTTDefinitions.h @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/MQTTHandler.cpp b/PowerControlHub/MQTTHandler.cpp similarity index 98% rename from SmartFuseBox/MQTTHandler.cpp rename to PowerControlHub/MQTTHandler.cpp index 0a57394..8b70970 100644 --- a/SmartFuseBox/MQTTHandler.cpp +++ b/PowerControlHub/MQTTHandler.cpp @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/MQTTHandler.h b/PowerControlHub/MQTTHandler.h similarity index 98% rename from SmartFuseBox/MQTTHandler.h rename to PowerControlHub/MQTTHandler.h index 7401698..7b59f5e 100644 --- a/SmartFuseBox/MQTTHandler.h +++ b/PowerControlHub/MQTTHandler.h @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/MQTTRelayHandler.cpp b/PowerControlHub/MQTTRelayHandler.cpp similarity index 99% rename from SmartFuseBox/MQTTRelayHandler.cpp rename to PowerControlHub/MQTTRelayHandler.cpp index 4358964..858799b 100644 --- a/SmartFuseBox/MQTTRelayHandler.cpp +++ b/PowerControlHub/MQTTRelayHandler.cpp @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/MQTTRelayHandler.h b/PowerControlHub/MQTTRelayHandler.h similarity index 99% rename from SmartFuseBox/MQTTRelayHandler.h rename to PowerControlHub/MQTTRelayHandler.h index 1adf159..93646ae 100644 --- a/SmartFuseBox/MQTTRelayHandler.h +++ b/PowerControlHub/MQTTRelayHandler.h @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/MQTTSensorHandler.cpp b/PowerControlHub/MQTTSensorHandler.cpp similarity index 99% rename from SmartFuseBox/MQTTSensorHandler.cpp rename to PowerControlHub/MQTTSensorHandler.cpp index c38f132..01e134b 100644 --- a/SmartFuseBox/MQTTSensorHandler.cpp +++ b/PowerControlHub/MQTTSensorHandler.cpp @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/MQTTSensorHandler.h b/PowerControlHub/MQTTSensorHandler.h similarity index 99% rename from SmartFuseBox/MQTTSensorHandler.h rename to PowerControlHub/MQTTSensorHandler.h index ca4f5e7..2d8313b 100644 --- a/SmartFuseBox/MQTTSensorHandler.h +++ b/PowerControlHub/MQTTSensorHandler.h @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/MQTTSystemHandler.cpp b/PowerControlHub/MQTTSystemHandler.cpp similarity index 99% rename from SmartFuseBox/MQTTSystemHandler.cpp rename to PowerControlHub/MQTTSystemHandler.cpp index d9d9290..07d2ebc 100644 --- a/SmartFuseBox/MQTTSystemHandler.cpp +++ b/PowerControlHub/MQTTSystemHandler.cpp @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/MQTTSystemHandler.h b/PowerControlHub/MQTTSystemHandler.h similarity index 98% rename from SmartFuseBox/MQTTSystemHandler.h rename to PowerControlHub/MQTTSystemHandler.h index 2ac598a..4309342 100644 --- a/SmartFuseBox/MQTTSystemHandler.h +++ b/PowerControlHub/MQTTSystemHandler.h @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/MessageBus.h b/PowerControlHub/MessageBus.h similarity index 99% rename from SmartFuseBox/MessageBus.h rename to PowerControlHub/MessageBus.h index b6f924b..80cd372 100644 --- a/SmartFuseBox/MessageBus.h +++ b/PowerControlHub/MessageBus.h @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/MicroSdDriver.cpp b/PowerControlHub/MicroSdDriver.cpp similarity index 99% rename from SmartFuseBox/MicroSdDriver.cpp rename to PowerControlHub/MicroSdDriver.cpp index b269ce8..2b5ea63 100644 --- a/SmartFuseBox/MicroSdDriver.cpp +++ b/PowerControlHub/MicroSdDriver.cpp @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/MicroSdDriver.h b/PowerControlHub/MicroSdDriver.h similarity index 99% rename from SmartFuseBox/MicroSdDriver.h rename to PowerControlHub/MicroSdDriver.h index ae6d843..d005cdb 100644 --- a/SmartFuseBox/MicroSdDriver.h +++ b/PowerControlHub/MicroSdDriver.h @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/NavigationController.cpp b/PowerControlHub/NavigationController.cpp similarity index 99% rename from SmartFuseBox/NavigationController.cpp rename to PowerControlHub/NavigationController.cpp index b4a14ed..c34196a 100644 --- a/SmartFuseBox/NavigationController.cpp +++ b/PowerControlHub/NavigationController.cpp @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/NavigationController.h b/PowerControlHub/NavigationController.h similarity index 99% rename from SmartFuseBox/NavigationController.h rename to PowerControlHub/NavigationController.h index 62ecc6a..bdd272e 100644 --- a/SmartFuseBox/NavigationController.h +++ b/PowerControlHub/NavigationController.h @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/NetworkJsonVisitor.h b/PowerControlHub/NetworkJsonVisitor.h similarity index 97% rename from SmartFuseBox/NetworkJsonVisitor.h rename to PowerControlHub/NetworkJsonVisitor.h index b0a5363..1ba5bea 100644 --- a/SmartFuseBox/NetworkJsonVisitor.h +++ b/PowerControlHub/NetworkJsonVisitor.h @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/NextionConfigCommandHandler.h b/PowerControlHub/NextionConfigCommandHandler.h similarity index 99% rename from SmartFuseBox/NextionConfigCommandHandler.h rename to PowerControlHub/NextionConfigCommandHandler.h index 7275367..ad958f7 100644 --- a/SmartFuseBox/NextionConfigCommandHandler.h +++ b/PowerControlHub/NextionConfigCommandHandler.h @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/NextionFactory.h b/PowerControlHub/NextionFactory.h similarity index 99% rename from SmartFuseBox/NextionFactory.h rename to PowerControlHub/NextionFactory.h index 92dc232..8eb2719 100644 --- a/SmartFuseBox/NextionFactory.h +++ b/PowerControlHub/NextionFactory.h @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/NextionIds.h b/PowerControlHub/NextionIds.h similarity index 99% rename from SmartFuseBox/NextionIds.h rename to PowerControlHub/NextionIds.h index 5f0b2bb..5fac1cd 100644 --- a/SmartFuseBox/NextionIds.h +++ b/PowerControlHub/NextionIds.h @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/NullBluetoothRadio.h b/PowerControlHub/NullBluetoothRadio.h similarity index 99% rename from SmartFuseBox/NullBluetoothRadio.h rename to PowerControlHub/NullBluetoothRadio.h index b839bca..4598c73 100644 --- a/SmartFuseBox/NullBluetoothRadio.h +++ b/PowerControlHub/NullBluetoothRadio.h @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/NullWifiClient.h b/PowerControlHub/NullWifiClient.h similarity index 99% rename from SmartFuseBox/NullWifiClient.h rename to PowerControlHub/NullWifiClient.h index 2ed4e47..4765e78 100644 --- a/SmartFuseBox/NullWifiClient.h +++ b/PowerControlHub/NullWifiClient.h @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/NullWifiRadio.h b/PowerControlHub/NullWifiRadio.h similarity index 99% rename from SmartFuseBox/NullWifiRadio.h rename to PowerControlHub/NullWifiRadio.h index d5cd383..fb37723 100644 --- a/SmartFuseBox/NullWifiRadio.h +++ b/PowerControlHub/NullWifiRadio.h @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/OtaManager.cpp b/PowerControlHub/OtaManager.cpp similarity index 98% rename from SmartFuseBox/OtaManager.cpp rename to PowerControlHub/OtaManager.cpp index 23cecfb..eb2b0cc 100644 --- a/SmartFuseBox/OtaManager.cpp +++ b/PowerControlHub/OtaManager.cpp @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2026 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify @@ -228,7 +228,7 @@ bool OtaManager::fetchLatestTag(char* tagOut, size_t tagLen) HTTPClient http; http.begin(secureClient, url); http.setTimeout(OtaHttpTimeout); - http.addHeader("User-Agent", "SmartFuseBox-OTA"); + http.addHeader("User-Agent", "PowerControlHub-OTA"); http.addHeader("Accept", "application/vnd.github+json"); if (_broadcaster) @@ -423,7 +423,7 @@ bool OtaManager::fetchChecksum(const char* tag, char* hashHexOut, size_t hashLen char url[256]; snprintf(url, sizeof(url), - "https://github.com/%s/%s/releases/download/%s/SmartFuseBox-%s-%s.sha256", + "https://github.com/%s/%s/releases/download/%s/PowerControlHub-%s-%s.sha256", OtaGithubOwner, OtaGithubRepo, tag, CONFIG_IDF_TARGET, tag); if (_broadcaster) @@ -440,7 +440,7 @@ bool OtaManager::fetchChecksum(const char* tag, char* hashHexOut, size_t hashLen ghHttp.begin(ghClient, url); ghHttp.setTimeout(OtaHttpTimeout); ghHttp.setFollowRedirects(HTTPC_DISABLE_FOLLOW_REDIRECTS); - ghHttp.addHeader("User-Agent", "SmartFuseBox-OTA"); + ghHttp.addHeader("User-Agent", "PowerControlHub-OTA"); int code = ghHttp.GET(); @@ -491,7 +491,7 @@ bool OtaManager::fetchChecksum(const char* tag, char* hashHexOut, size_t hashLen cdnHttp.begin(cdnClient, cdnUrl); cdnHttp.setTimeout(OtaHttpTimeout); cdnHttp.setFollowRedirects(HTTPC_FORCE_FOLLOW_REDIRECTS); - cdnHttp.addHeader("User-Agent", "SmartFuseBox-OTA"); + cdnHttp.addHeader("User-Agent", "PowerControlHub-OTA"); code = cdnHttp.GET(); @@ -591,7 +591,7 @@ bool OtaManager::downloadAndApply(const char* tag, const char* expectedHash) char url[256]; snprintf(url, sizeof(url), - "https://github.com/%s/%s/releases/download/%s/SmartFuseBox-%s-%s.bin", + "https://github.com/%s/%s/releases/download/%s/PowerControlHub-%s-%s.bin", OtaGithubOwner, OtaGithubRepo, tag, CONFIG_IDF_TARGET, tag); if (_broadcaster) @@ -608,7 +608,7 @@ bool OtaManager::downloadAndApply(const char* tag, const char* expectedHash) ghHttp.begin(ghClient, url); ghHttp.setTimeout(OtaHttpTimeout); ghHttp.setFollowRedirects(HTTPC_DISABLE_FOLLOW_REDIRECTS); - ghHttp.addHeader("User-Agent", "SmartFuseBox-OTA"); + ghHttp.addHeader("User-Agent", "PowerControlHub-OTA"); int code = ghHttp.GET(); @@ -646,7 +646,7 @@ bool OtaManager::downloadAndApply(const char* tag, const char* expectedHash) http.begin(secureClient, cdnUrl); http.setTimeout(30000); http.setFollowRedirects(HTTPC_FORCE_FOLLOW_REDIRECTS); - http.addHeader("User-Agent", "SmartFuseBox-OTA"); + http.addHeader("User-Agent", "PowerControlHub-OTA"); code = http.GET(); diff --git a/SmartFuseBox/OtaManager.h b/PowerControlHub/OtaManager.h similarity index 95% rename from SmartFuseBox/OtaManager.h rename to PowerControlHub/OtaManager.h index bff4afc..22c58d5 100644 --- a/SmartFuseBox/OtaManager.h +++ b/PowerControlHub/OtaManager.h @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2026 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify @@ -34,12 +34,12 @@ constexpr uint64_t OtaCheckIntervalMs = 24UL * 60UL * 60UL * 1000UL; constexpr uint64_t OtaUpdatePollMs = 10000UL; // GitHub repository owner and name — update if the repo is ever moved. -constexpr char OtaGithubOwner[] = "SmartFuseBox"; -constexpr char OtaGithubRepo[] = "SmartFuseBox"; +constexpr char OtaGithubOwner[] = "k3ldar"; +constexpr char OtaGithubRepo[] = "PowerControlHub"; // Asset filenames include both the board target and the version tag, e.g.: -// SmartFuseBox-esp32-v0.9.2.2.bin -// SmartFuseBox-esp32-v0.9.2.2.sha256 +// PowerControlHub-esp32-v0.9.2.2.bin +// PowerControlHub-esp32-v0.9.2.2.sha256 // They are constructed at runtime in fetchChecksum() and downloadAndApply() // using CONFIG_IDF_TARGET (set by the ESP32 core) and the fetched tag string. @@ -137,10 +137,10 @@ class OtaManager public: OtaManager(IWifiController* wifiController, BroadcastManager* broadcaster); - // Call once from SmartFuseBoxApp::setup(). + // Call once from PowerControlHubApp::setup(). void begin(); - // Call every iteration of SmartFuseBoxApp::loop(). + // Call every iteration of PowerControlHubApp::loop(). void update(uint64_t now); // Request an immediate version check. Pass applyIfAvailable = true to also diff --git a/SmartFuseBox/PageAbout.cpp b/PowerControlHub/PageAbout.cpp similarity index 98% rename from SmartFuseBox/PageAbout.cpp rename to PowerControlHub/PageAbout.cpp index cc1dc55..d73a691 100644 --- a/SmartFuseBox/PageAbout.cpp +++ b/PowerControlHub/PageAbout.cpp @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/PageAbout.h b/PowerControlHub/PageAbout.h similarity index 98% rename from SmartFuseBox/PageAbout.h rename to PowerControlHub/PageAbout.h index fe212b0..1de352a 100644 --- a/SmartFuseBox/PageAbout.h +++ b/PowerControlHub/PageAbout.h @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/PageBuoys.cpp b/PowerControlHub/PageBuoys.cpp similarity index 99% rename from SmartFuseBox/PageBuoys.cpp rename to PowerControlHub/PageBuoys.cpp index 52f70aa..6a537ec 100644 --- a/SmartFuseBox/PageBuoys.cpp +++ b/PowerControlHub/PageBuoys.cpp @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/PageBuoys.h b/PowerControlHub/PageBuoys.h similarity index 98% rename from SmartFuseBox/PageBuoys.h rename to PowerControlHub/PageBuoys.h index b62fa41..b5b6a64 100644 --- a/SmartFuseBox/PageBuoys.h +++ b/PowerControlHub/PageBuoys.h @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/PageCardinalMarkers.cpp b/PowerControlHub/PageCardinalMarkers.cpp similarity index 98% rename from SmartFuseBox/PageCardinalMarkers.cpp rename to PowerControlHub/PageCardinalMarkers.cpp index 2a17d92..9892698 100644 --- a/SmartFuseBox/PageCardinalMarkers.cpp +++ b/PowerControlHub/PageCardinalMarkers.cpp @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/PageCardinalMarkers.h b/PowerControlHub/PageCardinalMarkers.h similarity index 98% rename from SmartFuseBox/PageCardinalMarkers.h rename to PowerControlHub/PageCardinalMarkers.h index 538eb0a..7f7acff 100644 --- a/SmartFuseBox/PageCardinalMarkers.h +++ b/PowerControlHub/PageCardinalMarkers.h @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/PageEnvironment.cpp b/PowerControlHub/PageEnvironment.cpp similarity index 99% rename from SmartFuseBox/PageEnvironment.cpp rename to PowerControlHub/PageEnvironment.cpp index 43d0b19..24e8efc 100644 --- a/SmartFuseBox/PageEnvironment.cpp +++ b/PowerControlHub/PageEnvironment.cpp @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/PageEnvironment.h b/PowerControlHub/PageEnvironment.h similarity index 98% rename from SmartFuseBox/PageEnvironment.h rename to PowerControlHub/PageEnvironment.h index 400e2f6..e33cc28 100644 --- a/SmartFuseBox/PageEnvironment.h +++ b/PowerControlHub/PageEnvironment.h @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/PageFlags.cpp b/PowerControlHub/PageFlags.cpp similarity index 99% rename from SmartFuseBox/PageFlags.cpp rename to PowerControlHub/PageFlags.cpp index 6eb8f6a..fe06356 100644 --- a/SmartFuseBox/PageFlags.cpp +++ b/PowerControlHub/PageFlags.cpp @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/PageFlags.h b/PowerControlHub/PageFlags.h similarity index 98% rename from SmartFuseBox/PageFlags.h rename to PowerControlHub/PageFlags.h index ab588aa..4c47baf 100644 --- a/SmartFuseBox/PageFlags.h +++ b/PowerControlHub/PageFlags.h @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/PageHome.cpp b/PowerControlHub/PageHome.cpp similarity index 99% rename from SmartFuseBox/PageHome.cpp rename to PowerControlHub/PageHome.cpp index 2d7e18e..e13c8b9 100644 --- a/SmartFuseBox/PageHome.cpp +++ b/PowerControlHub/PageHome.cpp @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/PageHome.h b/PowerControlHub/PageHome.h similarity index 99% rename from SmartFuseBox/PageHome.h rename to PowerControlHub/PageHome.h index 18e9653..b0b3314 100644 --- a/SmartFuseBox/PageHome.h +++ b/PowerControlHub/PageHome.h @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/PageMoonPhase.cpp b/PowerControlHub/PageMoonPhase.cpp similarity index 99% rename from SmartFuseBox/PageMoonPhase.cpp rename to PowerControlHub/PageMoonPhase.cpp index 240bd0f..d1161e0 100644 --- a/SmartFuseBox/PageMoonPhase.cpp +++ b/PowerControlHub/PageMoonPhase.cpp @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/PageMoonPhase.h b/PowerControlHub/PageMoonPhase.h similarity index 98% rename from SmartFuseBox/PageMoonPhase.h rename to PowerControlHub/PageMoonPhase.h index 69c723b..da5c6d5 100644 --- a/SmartFuseBox/PageMoonPhase.h +++ b/PowerControlHub/PageMoonPhase.h @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/PageRelay.cpp b/PowerControlHub/PageRelay.cpp similarity index 99% rename from SmartFuseBox/PageRelay.cpp rename to PowerControlHub/PageRelay.cpp index 0983ec6..c1936ab 100644 --- a/SmartFuseBox/PageRelay.cpp +++ b/PowerControlHub/PageRelay.cpp @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/PageRelay.h b/PowerControlHub/PageRelay.h similarity index 99% rename from SmartFuseBox/PageRelay.h rename to PowerControlHub/PageRelay.h index 3cc650d..6d2bbb3 100644 --- a/SmartFuseBox/PageRelay.h +++ b/PowerControlHub/PageRelay.h @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/PageRelaySettings.cpp b/PowerControlHub/PageRelaySettings.cpp similarity index 99% rename from SmartFuseBox/PageRelaySettings.cpp rename to PowerControlHub/PageRelaySettings.cpp index 6b84c47..ff1cf19 100644 --- a/SmartFuseBox/PageRelaySettings.cpp +++ b/PowerControlHub/PageRelaySettings.cpp @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/PageRelaySettings.h b/PowerControlHub/PageRelaySettings.h similarity index 98% rename from SmartFuseBox/PageRelaySettings.h rename to PowerControlHub/PageRelaySettings.h index d6391f5..1d3f705 100644 --- a/SmartFuseBox/PageRelaySettings.h +++ b/PowerControlHub/PageRelaySettings.h @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/PageSettings.cpp b/PowerControlHub/PageSettings.cpp similarity index 99% rename from SmartFuseBox/PageSettings.cpp rename to PowerControlHub/PageSettings.cpp index c56835e..8a263ac 100644 --- a/SmartFuseBox/PageSettings.cpp +++ b/PowerControlHub/PageSettings.cpp @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/PageSettings.h b/PowerControlHub/PageSettings.h similarity index 99% rename from SmartFuseBox/PageSettings.h rename to PowerControlHub/PageSettings.h index cec117f..c1b099a 100644 --- a/SmartFuseBox/PageSettings.h +++ b/PowerControlHub/PageSettings.h @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/PageSoundEmergency.cpp b/PowerControlHub/PageSoundEmergency.cpp similarity index 98% rename from SmartFuseBox/PageSoundEmergency.cpp rename to PowerControlHub/PageSoundEmergency.cpp index 3e780a1..ca2c9fc 100644 --- a/SmartFuseBox/PageSoundEmergency.cpp +++ b/PowerControlHub/PageSoundEmergency.cpp @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/PageSoundEmergency.h b/PowerControlHub/PageSoundEmergency.h similarity index 98% rename from SmartFuseBox/PageSoundEmergency.h rename to PowerControlHub/PageSoundEmergency.h index 5aa02ac..a4d4d77 100644 --- a/SmartFuseBox/PageSoundEmergency.h +++ b/PowerControlHub/PageSoundEmergency.h @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/PageSoundFog.cpp b/PowerControlHub/PageSoundFog.cpp similarity index 98% rename from SmartFuseBox/PageSoundFog.cpp rename to PowerControlHub/PageSoundFog.cpp index d9a0a1b..00bcd79 100644 --- a/SmartFuseBox/PageSoundFog.cpp +++ b/PowerControlHub/PageSoundFog.cpp @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/PageSoundFog.h b/PowerControlHub/PageSoundFog.h similarity index 98% rename from SmartFuseBox/PageSoundFog.h rename to PowerControlHub/PageSoundFog.h index ade3d60..3566d89 100644 --- a/SmartFuseBox/PageSoundFog.h +++ b/PowerControlHub/PageSoundFog.h @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/PageSoundManeuvering.cpp b/PowerControlHub/PageSoundManeuvering.cpp similarity index 99% rename from SmartFuseBox/PageSoundManeuvering.cpp rename to PowerControlHub/PageSoundManeuvering.cpp index 73f61bd..7afb192 100644 --- a/SmartFuseBox/PageSoundManeuvering.cpp +++ b/PowerControlHub/PageSoundManeuvering.cpp @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/PageSoundManeuvering.h b/PowerControlHub/PageSoundManeuvering.h similarity index 98% rename from SmartFuseBox/PageSoundManeuvering.h rename to PowerControlHub/PageSoundManeuvering.h index 1e7fffb..6fe6f3e 100644 --- a/SmartFuseBox/PageSoundManeuvering.h +++ b/PowerControlHub/PageSoundManeuvering.h @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/PageSoundOther.cpp b/PowerControlHub/PageSoundOther.cpp similarity index 98% rename from SmartFuseBox/PageSoundOther.cpp rename to PowerControlHub/PageSoundOther.cpp index be4c7c3..96471f9 100644 --- a/SmartFuseBox/PageSoundOther.cpp +++ b/PowerControlHub/PageSoundOther.cpp @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/PageSoundOther.h b/PowerControlHub/PageSoundOther.h similarity index 98% rename from SmartFuseBox/PageSoundOther.h rename to PowerControlHub/PageSoundOther.h index 8b28b40..3133cf9 100644 --- a/SmartFuseBox/PageSoundOther.h +++ b/PowerControlHub/PageSoundOther.h @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/PageSoundOvertaking.cpp b/PowerControlHub/PageSoundOvertaking.cpp similarity index 99% rename from SmartFuseBox/PageSoundOvertaking.cpp rename to PowerControlHub/PageSoundOvertaking.cpp index 1c1da06..a3942af 100644 --- a/SmartFuseBox/PageSoundOvertaking.cpp +++ b/PowerControlHub/PageSoundOvertaking.cpp @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/PageSoundOvertaking.h b/PowerControlHub/PageSoundOvertaking.h similarity index 98% rename from SmartFuseBox/PageSoundOvertaking.h rename to PowerControlHub/PageSoundOvertaking.h index c0373a4..9f3d1b8 100644 --- a/SmartFuseBox/PageSoundOvertaking.h +++ b/PowerControlHub/PageSoundOvertaking.h @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/PageSoundSignals.cpp b/PowerControlHub/PageSoundSignals.cpp similarity index 99% rename from SmartFuseBox/PageSoundSignals.cpp rename to PowerControlHub/PageSoundSignals.cpp index 96be364..37982ff 100644 --- a/SmartFuseBox/PageSoundSignals.cpp +++ b/PowerControlHub/PageSoundSignals.cpp @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/PageSoundSignals.h b/PowerControlHub/PageSoundSignals.h similarity index 98% rename from SmartFuseBox/PageSoundSignals.h rename to PowerControlHub/PageSoundSignals.h index 246fe29..05150ed 100644 --- a/SmartFuseBox/PageSoundSignals.h +++ b/PowerControlHub/PageSoundSignals.h @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/PageSplash.h b/PowerControlHub/PageSplash.h similarity index 99% rename from SmartFuseBox/PageSplash.h rename to PowerControlHub/PageSplash.h index 5a70fba..cb5749d 100644 --- a/SmartFuseBox/PageSplash.h +++ b/PowerControlHub/PageSplash.h @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/PageSystem.cpp b/PowerControlHub/PageSystem.cpp similarity index 99% rename from SmartFuseBox/PageSystem.cpp rename to PowerControlHub/PageSystem.cpp index 3e2246d..335f7c4 100644 --- a/SmartFuseBox/PageSystem.cpp +++ b/PowerControlHub/PageSystem.cpp @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/PageSystem.h b/PowerControlHub/PageSystem.h similarity index 99% rename from SmartFuseBox/PageSystem.h rename to PowerControlHub/PageSystem.h index d4579d1..2352eae 100644 --- a/SmartFuseBox/PageSystem.h +++ b/PowerControlHub/PageSystem.h @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/PageVhfChannels.cpp b/PowerControlHub/PageVhfChannels.cpp similarity index 98% rename from SmartFuseBox/PageVhfChannels.cpp rename to PowerControlHub/PageVhfChannels.cpp index ac891c7..8442c94 100644 --- a/SmartFuseBox/PageVhfChannels.cpp +++ b/PowerControlHub/PageVhfChannels.cpp @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/PageVhfChannels.h b/PowerControlHub/PageVhfChannels.h similarity index 98% rename from SmartFuseBox/PageVhfChannels.h rename to PowerControlHub/PageVhfChannels.h index 7da08ad..bd40d49 100644 --- a/SmartFuseBox/PageVhfChannels.h +++ b/PowerControlHub/PageVhfChannels.h @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/PageVhfDistress.cpp b/PowerControlHub/PageVhfDistress.cpp similarity index 99% rename from SmartFuseBox/PageVhfDistress.cpp rename to PowerControlHub/PageVhfDistress.cpp index 1c9b824..2c4034c 100644 --- a/SmartFuseBox/PageVhfDistress.cpp +++ b/PowerControlHub/PageVhfDistress.cpp @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/PageVhfDistress.h b/PowerControlHub/PageVhfDistress.h similarity index 98% rename from SmartFuseBox/PageVhfDistress.h rename to PowerControlHub/PageVhfDistress.h index f66b7e1..fc40764 100644 --- a/SmartFuseBox/PageVhfDistress.h +++ b/PowerControlHub/PageVhfDistress.h @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/PageVhfRadio.cpp b/PowerControlHub/PageVhfRadio.cpp similarity index 99% rename from SmartFuseBox/PageVhfRadio.cpp rename to PowerControlHub/PageVhfRadio.cpp index dfe0366..c2f4ccb 100644 --- a/SmartFuseBox/PageVhfRadio.cpp +++ b/PowerControlHub/PageVhfRadio.cpp @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/PageVhfRadio.h b/PowerControlHub/PageVhfRadio.h similarity index 98% rename from SmartFuseBox/PageVhfRadio.h rename to PowerControlHub/PageVhfRadio.h index 1a407a8..ce58cd6 100644 --- a/SmartFuseBox/PageVhfRadio.h +++ b/PowerControlHub/PageVhfRadio.h @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/PageWarning.cpp b/PowerControlHub/PageWarning.cpp similarity index 99% rename from SmartFuseBox/PageWarning.cpp rename to PowerControlHub/PageWarning.cpp index 93bfc95..b01d81b 100644 --- a/SmartFuseBox/PageWarning.cpp +++ b/PowerControlHub/PageWarning.cpp @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/PageWarning.h b/PowerControlHub/PageWarning.h similarity index 99% rename from SmartFuseBox/PageWarning.h rename to PowerControlHub/PageWarning.h index c54fd65..8f74063 100644 --- a/SmartFuseBox/PageWarning.h +++ b/PowerControlHub/PageWarning.h @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/Phonetic.cpp b/PowerControlHub/Phonetic.cpp similarity index 99% rename from SmartFuseBox/Phonetic.cpp rename to PowerControlHub/Phonetic.cpp index f3e74f2..0ade438 100644 --- a/SmartFuseBox/Phonetic.cpp +++ b/PowerControlHub/Phonetic.cpp @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/Phonetic.h b/PowerControlHub/Phonetic.h similarity index 98% rename from SmartFuseBox/Phonetic.h rename to PowerControlHub/Phonetic.h index 756be9e..e3270c9 100644 --- a/SmartFuseBox/Phonetic.h +++ b/PowerControlHub/Phonetic.h @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/SmartFuseBox.ino b/PowerControlHub/PowerControlHub.ino similarity index 93% rename from SmartFuseBox/SmartFuseBox.ino rename to PowerControlHub/PowerControlHub.ino index 038ed0a..7bf7405 100644 --- a/SmartFuseBox/SmartFuseBox.ino +++ b/PowerControlHub/PowerControlHub.ino @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify @@ -19,7 +19,7 @@ #include #include "Local.h" -#include "SmartFuseBoxApp.h" +#include "PowerControlHubApp.h" #include "SystemFunctions.h" #include "WaterSensorHandler.h" @@ -43,13 +43,13 @@ void onComputerCommandReceived(SerialCommandManager* mgr); // - `commandMgrComputer` is local to your .ino so you can select the hardware // Serial instance and baud rate appropriate for your board. Keep the callback // `onComputerCommandReceived` in this file so it can access the serial manager. -// - Construct `SmartFuseBoxApp` with a pointer to the serial manager. Then +// - Construct `PowerControlHubApp` with a pointer to the serial manager. Then // configure board-specific resources (e.g. GPS serial) via app accessors before // calling `app.setup()`. Call `app.loop()` from `loop()`. SerialCommandManager commandMgrComputer(&COMPUTER_SERIAL, onComputerCommandReceived, '\n', ':', ';', '=', 500, 64); -SmartFuseBoxApp app(&commandMgrComputer); +PowerControlHubApp app(&commandMgrComputer); void setup() { diff --git a/SmartFuseBox/SmartFuseBox.vcxproj b/PowerControlHub/PowerControlHub.vcxproj similarity index 73% rename from SmartFuseBox/SmartFuseBox.vcxproj rename to PowerControlHub/PowerControlHub.vcxproj index 01f94f6..2d01de0 100644 --- a/SmartFuseBox/SmartFuseBox.vcxproj +++ b/PowerControlHub/PowerControlHub.vcxproj @@ -22,7 +22,7 @@ Linux - SmartFuseBox + PowerControlHub 15.0 Linux 1.0 @@ -64,7 +64,7 @@ - $(ProjectDir)..\SmartFuseBox;$(ProjectDir)..\..\..\Users\Simon\Documents\Arduino\libraries\SerialCommandManager\src;$(ProjectDir)..\..\..\Users\Simon\Documents\Arduino\libraries\Arduino_Uno_WiFi_Dev_Ed_Library\src;$(ProjectDir)..\..\..\Users\Simon\Documents\Arduino\libraries\Adafruit_Unified_Sensor;$(ProjectDir)..\..\..\Users\Simon\Documents\Arduino\libraries\dht11;$(ProjectDir)..\..\..\Users\Simon\Documents\Arduino\libraries\Queue;$(ProjectDir)..\..\..\Users\Simon\Documents\ArduinoData\staging\packages\packages\arduino\hardware\renesas_uno\1.0.5\libraries\EEPROM\src;$(ProjectDir)..\..\..\Users\Simon\Documents\ArduinoData\staging\packages\packages\arduino\hardware\renesas_uno\1.0.5\libraries\BlockDevices;$(ProjectDir)..\..\..\Users\Simon\Documents\ArduinoData\staging\packages\packages\arduino\hardware\renesas_uno\1.0.5\libraries\Storage;$(ProjectDir)..\..\..\Users\Simon\Documents\ArduinoData\staging\packages\packages\arduino\hardware\renesas_uno\1.0.5\cores\arduino\tinyusb;$(ProjectDir)..\..\..\Users\Simon\Documents\ArduinoData\staging\packages\packages\arduino\hardware\renesas_uno\1.0.5\cores\arduino\api\deprecated;$(ProjectDir)..\..\..\Users\Simon\Documents\ArduinoData\staging\packages\packages\arduino\hardware\renesas_uno\1.0.5\cores\arduino\api\deprecated-avr-comp;$(ProjectDir)..\..\..\Users\Simon\Documents\ArduinoData\staging\packages\packages\arduino\hardware\renesas_uno\1.0.5\cores\arduino;$(ProjectDir)..\..\..\Users\Simon\Documents\ArduinoData\staging\packages\packages\arduino\hardware\renesas_uno\1.0.5\variants\UNOWIFIR4;$(ProjectDir)..\..\..\Users\Simon\Documents\ArduinoData\staging\packages\packages\arduino\hardware\renesas_uno\1.0.5\variants\UNOWIFIR4\includes\ra\fsp\inc;$(ProjectDir)..\..\..\Users\Simon\Documents\ArduinoData\staging\packages\packages\arduino\hardware\renesas_uno\1.0.5\variants\UNOWIFIR4\includes\ra\fsp\inc\api;$(ProjectDir)..\..\..\Users\Simon\Documents\ArduinoData\staging\packages\packages\arduino\hardware\renesas_uno\1.0.5\variants\UNOWIFIR4\includes\ra\fsp\inc\instances;$(ProjectDir)..\..\..\Users\Simon\Documents\ArduinoData\staging\packages\packages\arduino\hardware\renesas_uno\1.0.5\variants\UNOWIFIR4\includes\ra\arm\CMSIS_5\CMSIS\Core\Include;$(ProjectDir)..\..\..\Users\Simon\Documents\ArduinoData\staging\packages\packages\arduino\hardware\renesas_uno\1.0.5\variants\UNOWIFIR4\includes\ra_gen;$(ProjectDir)..\..\..\Users\Simon\Documents\ArduinoData\staging\packages\packages\arduino\hardware\renesas_uno\1.0.5\variants\UNOWIFIR4\includes\ra_cfg\fsp_cfg\bsp;$(ProjectDir)..\..\..\Users\Simon\Documents\ArduinoData\staging\packages\packages\arduino\hardware\renesas_uno\1.0.5\variants\UNOWIFIR4\includes\ra_cfg\fsp_cfg;$(ProjectDir)..\..\..\Users\Simon\Documents\ArduinoData\staging\packages\packages\arduino\hardware\renesas_uno\1.0.5\variants\UNOWIFIR4\includes\ra\fsp\src\r_usb_basic\src\driver\inc;$(ProjectDir)..\..\..\Users\Simon\Documents\ArduinoData\staging\packages\packages\arduino\hardware\renesas_uno\1.0.5\variants\UNOWIFIR4\includes\ra\fsp\src\r_sce\crypto_procedures\src\sce5\plainkey\private\inc;$(ProjectDir)..\..\..\Users\Simon\Documents\ArduinoData\staging\packages\packages\arduino\hardware\renesas_uno\1.0.5\variants\UNOWIFIR4\includes\ra\fsp\src\r_sce\crypto_procedures\src\sce5\plainkey\public\inc;$(ProjectDir)..\..\..\Users\Simon\Documents\ArduinoData\staging\packages\packages\arduino\hardware\renesas_uno\1.0.5\variants\UNOWIFIR4\includes\ra\fsp\src\r_sce\common;$(ProjectDir)..\..\..\Users\Simon\Documents\ArduinoData\staging\packages\packages\arduino\hardware\renesas_uno\1.0.5\variants\UNOWIFIR4\includes\ra\fsp\src\r_sce;$(ProjectDir)..\..\..\users\simon\documents\arduinodata\staging\packages\packages\arduino\tools\arm-none-eabi-gcc\7-2017q4\arm-none-eabi\include\c++\7.2.1;$(ProjectDir)..\..\..\users\simon\documents\arduinodata\staging\packages\packages\arduino\tools\arm-none-eabi-gcc\7-2017q4\arm-none-eabi\include\c++\7.2.1\arm-none-eabi\thumb\v7e-m\fpv4-sp\hard;$(ProjectDir)..\..\..\users\simon\documents\arduinodata\staging\packages\packages\arduino\tools\arm-none-eabi-gcc\7-2017q4\arm-none-eabi\include\c++\7.2.1\backward;$(ProjectDir)..\..\..\users\simon\documents\arduinodata\staging\packages\packages\arduino\tools\arm-none-eabi-gcc\7-2017q4\lib\gcc\arm-none-eabi\7.2.1\include;$(ProjectDir)..\..\..\users\simon\documents\arduinodata\staging\packages\packages\arduino\tools\arm-none-eabi-gcc\7-2017q4\lib\gcc\arm-none-eabi\7.2.1\include-fixed;$(ProjectDir)..\..\..\users\simon\documents\arduinodata\staging\packages\packages\arduino\tools\arm-none-eabi-gcc\7-2017q4\arm-none-eabi\include;$(ProjectDir)..\..\..\Users\Simon\Documents\Arduino\libraries\SerialCommandManager\src;$(ProjectDir)..\..\..\Users\Simon\Documents\Arduino\libraries\Arduino_Uno_WiFi_Dev_Ed_Library\src;$(ProjectDir)..\..\..\Users\Simon\Documents\Arduino\libraries\Adafruit_Unified_Sensor;$(ProjectDir)..\..\..\Users\Simon\Documents\Arduino\libraries\dht11;$(ProjectDir)..\..\..\Users\Simon\Documents\Arduino\libraries\Queue;$(ProjectDir)..\..\..\Users\Simon\Documents\ArduinoData\staging\packages\packages\arduino\hardware\renesas_uno\1.0.5\libraries\EEPROM\src;$(ProjectDir)..\..\..\Users\Simon\Documents\ArduinoData\staging\packages\packages\arduino\hardware\renesas_uno\1.0.5\libraries\BlockDevices;$(ProjectDir)..\..\..\Users\Simon\Documents\ArduinoData\staging\packages\packages\arduino\hardware\renesas_uno\1.0.5\libraries\Storage + $(ProjectDir)..\PowerControlHub;$(ProjectDir)..\..\..\Users\Simon\Documents\Arduino\libraries\SerialCommandManager\src;$(ProjectDir)..\..\..\Users\Simon\Documents\Arduino\libraries\Arduino_Uno_WiFi_Dev_Ed_Library\src;$(ProjectDir)..\..\..\Users\Simon\Documents\Arduino\libraries\Adafruit_Unified_Sensor;$(ProjectDir)..\..\..\Users\Simon\Documents\Arduino\libraries\dht11;$(ProjectDir)..\..\..\Users\Simon\Documents\Arduino\libraries\Queue;$(ProjectDir)..\..\..\Users\Simon\Documents\ArduinoData\staging\packages\packages\arduino\hardware\renesas_uno\1.0.5\libraries\EEPROM\src;$(ProjectDir)..\..\..\Users\Simon\Documents\ArduinoData\staging\packages\packages\arduino\hardware\renesas_uno\1.0.5\libraries\BlockDevices;$(ProjectDir)..\..\..\Users\Simon\Documents\ArduinoData\staging\packages\packages\arduino\hardware\renesas_uno\1.0.5\libraries\Storage;$(ProjectDir)..\..\..\Users\Simon\Documents\ArduinoData\staging\packages\packages\arduino\hardware\renesas_uno\1.0.5\cores\arduino\tinyusb;$(ProjectDir)..\..\..\Users\Simon\Documents\ArduinoData\staging\packages\packages\arduino\hardware\renesas_uno\1.0.5\cores\arduino\api\deprecated;$(ProjectDir)..\..\..\Users\Simon\Documents\ArduinoData\staging\packages\packages\arduino\hardware\renesas_uno\1.0.5\cores\arduino\api\deprecated-avr-comp;$(ProjectDir)..\..\..\Users\Simon\Documents\ArduinoData\staging\packages\packages\arduino\hardware\renesas_uno\1.0.5\cores\arduino;$(ProjectDir)..\..\..\Users\Simon\Documents\ArduinoData\staging\packages\packages\arduino\hardware\renesas_uno\1.0.5\variants\UNOWIFIR4;$(ProjectDir)..\..\..\Users\Simon\Documents\ArduinoData\staging\packages\packages\arduino\hardware\renesas_uno\1.0.5\variants\UNOWIFIR4\includes\ra\fsp\inc;$(ProjectDir)..\..\..\Users\Simon\Documents\ArduinoData\staging\packages\packages\arduino\hardware\renesas_uno\1.0.5\variants\UNOWIFIR4\includes\ra\fsp\inc\api;$(ProjectDir)..\..\..\Users\Simon\Documents\ArduinoData\staging\packages\packages\arduino\hardware\renesas_uno\1.0.5\variants\UNOWIFIR4\includes\ra\fsp\inc\instances;$(ProjectDir)..\..\..\Users\Simon\Documents\ArduinoData\staging\packages\packages\arduino\hardware\renesas_uno\1.0.5\variants\UNOWIFIR4\includes\ra\arm\CMSIS_5\CMSIS\Core\Include;$(ProjectDir)..\..\..\Users\Simon\Documents\ArduinoData\staging\packages\packages\arduino\hardware\renesas_uno\1.0.5\variants\UNOWIFIR4\includes\ra_gen;$(ProjectDir)..\..\..\Users\Simon\Documents\ArduinoData\staging\packages\packages\arduino\hardware\renesas_uno\1.0.5\variants\UNOWIFIR4\includes\ra_cfg\fsp_cfg\bsp;$(ProjectDir)..\..\..\Users\Simon\Documents\ArduinoData\staging\packages\packages\arduino\hardware\renesas_uno\1.0.5\variants\UNOWIFIR4\includes\ra_cfg\fsp_cfg;$(ProjectDir)..\..\..\Users\Simon\Documents\ArduinoData\staging\packages\packages\arduino\hardware\renesas_uno\1.0.5\variants\UNOWIFIR4\includes\ra\fsp\src\r_usb_basic\src\driver\inc;$(ProjectDir)..\..\..\Users\Simon\Documents\ArduinoData\staging\packages\packages\arduino\hardware\renesas_uno\1.0.5\variants\UNOWIFIR4\includes\ra\fsp\src\r_sce\crypto_procedures\src\sce5\plainkey\private\inc;$(ProjectDir)..\..\..\Users\Simon\Documents\ArduinoData\staging\packages\packages\arduino\hardware\renesas_uno\1.0.5\variants\UNOWIFIR4\includes\ra\fsp\src\r_sce\crypto_procedures\src\sce5\plainkey\public\inc;$(ProjectDir)..\..\..\Users\Simon\Documents\ArduinoData\staging\packages\packages\arduino\hardware\renesas_uno\1.0.5\variants\UNOWIFIR4\includes\ra\fsp\src\r_sce\common;$(ProjectDir)..\..\..\Users\Simon\Documents\ArduinoData\staging\packages\packages\arduino\hardware\renesas_uno\1.0.5\variants\UNOWIFIR4\includes\ra\fsp\src\r_sce;$(ProjectDir)..\..\..\users\simon\documents\arduinodata\staging\packages\packages\arduino\tools\arm-none-eabi-gcc\7-2017q4\arm-none-eabi\include\c++\7.2.1;$(ProjectDir)..\..\..\users\simon\documents\arduinodata\staging\packages\packages\arduino\tools\arm-none-eabi-gcc\7-2017q4\arm-none-eabi\include\c++\7.2.1\arm-none-eabi\thumb\v7e-m\fpv4-sp\hard;$(ProjectDir)..\..\..\users\simon\documents\arduinodata\staging\packages\packages\arduino\tools\arm-none-eabi-gcc\7-2017q4\arm-none-eabi\include\c++\7.2.1\backward;$(ProjectDir)..\..\..\users\simon\documents\arduinodata\staging\packages\packages\arduino\tools\arm-none-eabi-gcc\7-2017q4\lib\gcc\arm-none-eabi\7.2.1\include;$(ProjectDir)..\..\..\users\simon\documents\arduinodata\staging\packages\packages\arduino\tools\arm-none-eabi-gcc\7-2017q4\lib\gcc\arm-none-eabi\7.2.1\include-fixed;$(ProjectDir)..\..\..\users\simon\documents\arduinodata\staging\packages\packages\arduino\tools\arm-none-eabi-gcc\7-2017q4\arm-none-eabi\include;$(ProjectDir)..\..\..\Users\Simon\Documents\Arduino\libraries\SerialCommandManager\src;$(ProjectDir)..\..\..\Users\Simon\Documents\Arduino\libraries\Arduino_Uno_WiFi_Dev_Ed_Library\src;$(ProjectDir)..\..\..\Users\Simon\Documents\Arduino\libraries\Adafruit_Unified_Sensor;$(ProjectDir)..\..\..\Users\Simon\Documents\Arduino\libraries\dht11;$(ProjectDir)..\..\..\Users\Simon\Documents\Arduino\libraries\Queue;$(ProjectDir)..\..\..\Users\Simon\Documents\ArduinoData\staging\packages\packages\arduino\hardware\renesas_uno\1.0.5\libraries\EEPROM\src;$(ProjectDir)..\..\..\Users\Simon\Documents\ArduinoData\staging\packages\packages\arduino\hardware\renesas_uno\1.0.5\libraries\BlockDevices;$(ProjectDir)..\..\..\Users\Simon\Documents\ArduinoData\staging\packages\packages\arduino\hardware\renesas_uno\1.0.5\libraries\Storage $(ProjectDir)..\..\..\Users\Simon\Documents\ArduinoData\staging\packages\packages\arduino\tools\arm-none-eabi-gcc\7-2017q4\bin\arm-none-eabi-g++ $(ProjectDir)..\..\..\Users\Simon\Documents\ArduinoData\staging\packages\packages\arduino\tools\arm-none-eabi-gcc\7-2017q4\bin\arm-none-eabi-g++ false @@ -118,7 +118,7 @@ - + @@ -148,10 +148,6 @@ - - CppCode - true - @@ -233,7 +229,8 @@ - + + @@ -283,28 +280,33 @@ - + + - + + CppCode + true + + - - + + VisualMicroDebugger - $(ProjectDir)..\SmartFuseBox;$(ProjectDir)..\..\..\..\Users\Simon\Documents\Arduino\libraries\SerialCommandManager\src;$(ProjectDir)..\..\..\..\Users\Simon\Documents\Arduino\libraries\SensorManager\src;$(ProjectDir)..\..\..\..\Users\Simon\Documents\Arduino\libraries\SdFat\src;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\hardware\esp32\3.3.7\libraries\SPI\src;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\hardware\esp32\3.3.7\libraries\WiFi\src;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\hardware\esp32\3.3.7\libraries\Network\src;$(ProjectDir)..\..\..\..\Users\Simon\Documents\Arduino\libraries\NextionControl\src;$(ProjectDir)..\..\..\..\Users\Simon\Documents\Arduino\libraries\TinyGPSPlus\src;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\hardware\esp32\3.3.7\libraries\EEPROM\src;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\hardware\esp32\3.3.7\libraries\HTTPClient\src;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\hardware\esp32\3.3.7\libraries\NetworkClientSecure\src;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\hardware\esp32\3.3.7\libraries\Update\src;$(ProjectDir)..\..\..\..\Users\Simon\Documents\Arduino\libraries\Ds1302\src;$(ProjectDir)..\..\..\..\program files\microsoft visual studio\18\insiders\common7\ide\extensions\0qz5sbjj.e2i\Micro Platforms\default;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\dio_qspi\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\hardware\esp32\3.3.7\cores\esp32;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\hardware\esp32\3.3.7\variants\esp32s3;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\newlib\platform_include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\freertos\config\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\freertos\config\include\freertos;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\freertos\config\xtensa\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\freertos\FreeRTOS-Kernel\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\freertos\FreeRTOS-Kernel\portable\xtensa\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\freertos\FreeRTOS-Kernel\portable\xtensa\include\freertos;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\freertos\esp_additions\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_hw_support\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_hw_support\include\soc;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_hw_support\include\soc\esp32s3;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_hw_support\dma\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_hw_support\ldo\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_hw_support\debug_probe\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_hw_support\mspi_timing_tuning\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_hw_support\mspi_timing_tuning\tuning_scheme_impl\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_hw_support\power_supply\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_hw_support\port\esp32s3;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_hw_support\port\esp32s3\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_hw_support\mspi_timing_tuning\port\esp32s3;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\heap\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\heap\tlsf;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\log\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\soc\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\soc\esp32s3;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\soc\esp32s3\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\soc\esp32s3\register;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\hal\platform_port\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\hal\esp32s3\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\hal\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_rom\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_rom\esp32s3\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_rom\esp32s3\include\esp32s3;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_rom\esp32s3;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_common\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_system\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_system\port\include\private;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\xtensa\esp32s3\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\xtensa\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\xtensa\deprecated_include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_timer\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\lwip\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\lwip\include\apps;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\lwip\include\apps\sntp;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\lwip\lwip\src\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\lwip\port\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\lwip\port\freertos\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\lwip\port\esp32xx\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\lwip\port\esp32xx\include\arch;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\lwip\port\esp32xx\include\sys;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-tflite-micro;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-tflite-micro\third_party\gemmlowp;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-tflite-micro\third_party\flatbuffers\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-tflite-micro\third_party\ruy;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-tflite-micro\third_party\kissfft;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp32-camera\driver\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp32-camera\conversions\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\driver\deprecated;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\driver\i2c\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\driver\touch_sensor\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\driver\twai\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\driver\touch_sensor\esp32s3\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_pm\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_ringbuf\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_driver_gpio\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_driver_pcnt\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_driver_gptimer\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_driver_spi\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_driver_mcpwm\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_driver_ana_cmpr\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_driver_i2s\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_driver_sdmmc\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\sdmmc\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_driver_sdspi\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_driver_sdio\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_driver_dac\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_driver_rmt\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_driver_tsens\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_driver_sdm\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_driver_i2c\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_driver_uart\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\vfs\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_driver_ledc\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_driver_parlio\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_driver_usb_serial_jtag\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_driver_twai\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp_jpeg\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp_matter\connectedhomeip\connectedhomeip\src;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp_matter\connectedhomeip\connectedhomeip\src\app\ember_coupling;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp_matter\connectedhomeip\connectedhomeip\src\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp_matter\connectedhomeip\connectedhomeip\src\lib;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp_matter\connectedhomeip\connectedhomeip\src\lib\dnssd;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp_matter\connectedhomeip\connectedhomeip\src\platform\OpenThread;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp_matter\connectedhomeip\connectedhomeip\third_party\jsoncpp\repo\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp_matter\connectedhomeip\connectedhomeip\third_party\nlfaultinjection\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp_matter\connectedhomeip\connectedhomeip\third_party\nlassert\repo\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp_matter\connectedhomeip\connectedhomeip\third_party\nlio\repo\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp_matter\connectedhomeip\connectedhomeip\zzz_generated\app-common;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp-idf\espressif__esp_matter;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_matter\zap_common;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_matter;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_matter\utils;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_matter_bridge;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_matter_console;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp_matter\connectedhomeip\connectedhomeip\src\platform\ESP32;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp_matter\connectedhomeip\connectedhomeip\src\platform\ESP32\nimble;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp_matter\connectedhomeip\connectedhomeip\src\platform\ESP32\route_hook;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_eth\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_event\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\include\esp32c3\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\common\osi\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\common\api\include\api;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\common\btc\profile\esp\blufi\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\common\btc\profile\esp\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\common\hci_log\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\common\ble_log\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\esp_ble_mesh\common\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\esp_ble_mesh\core;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\esp_ble_mesh\core\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\esp_ble_mesh\core\storage;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\esp_ble_mesh\btc\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\esp_ble_mesh\models\common\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\esp_ble_mesh\models\client\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\esp_ble_mesh\models\server\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\esp_ble_mesh\api\core\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\esp_ble_mesh\api\models\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\esp_ble_mesh\api;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\esp_ble_mesh\lib\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\esp_ble_mesh\v1.1\api\core\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\esp_ble_mesh\v1.1\api\models\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\esp_ble_mesh\v1.1\btc\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\esp_ble_mesh\v1.1\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\esp_ble_mesh\v1.1\dfu;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\esp_ble_mesh\v1.1\mbt;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\common\tinycrypt\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\common\tinycrypt\port;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\host\nimble\nimble\nimble\host\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\host\nimble\nimble\nimble\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\host\nimble\nimble\nimble\host\services\ans\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\host\nimble\nimble\nimble\host\services\bas\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\host\nimble\nimble\nimble\host\services\dis\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\host\nimble\nimble\nimble\host\services\gap\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\host\nimble\nimble\nimble\host\services\gatt\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\host\nimble\nimble\nimble\host\services\hr\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\host\nimble\nimble\nimble\host\services\htp\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\host\nimble\nimble\nimble\host\services\ias\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\host\nimble\nimble\nimble\host\services\ipss\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\host\nimble\nimble\nimble\host\services\lls\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\host\nimble\nimble\nimble\host\services\prox\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\host\nimble\nimble\nimble\host\services\cts\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\host\nimble\nimble\nimble\host\services\tps\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\host\nimble\nimble\nimble\host\services\hid\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\host\nimble\nimble\nimble\host\services\sps\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\host\nimble\nimble\nimble\host\services\cte\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\host\nimble\nimble\nimble\host\util\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\host\nimble\nimble\nimble\host\store\ram\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\host\nimble\nimble\nimble\host\store\config\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\host\nimble\nimble\nimble\host\services\ras\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\host\nimble\nimble\porting\nimble\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\host\nimble\port\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\host\nimble\nimble\nimble\transport\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\porting\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\host\nimble\nimble\porting\npl\freertos\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\host\nimble\esp-hci\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_wifi\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_wifi\include\local;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_wifi\wifi_apps\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_wifi\wifi_apps\nan_app\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_phy\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_phy\esp32s3\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_netif\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\mbedtls\port\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\mbedtls\mbedtls\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\mbedtls\mbedtls\library;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\mbedtls\esp_crt_bundle\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\mbedtls\mbedtls\3rdparty\everest\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\mbedtls\mbedtls\3rdparty\p256-m;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\mbedtls\mbedtls\3rdparty\p256-m\p256-m;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\fatfs\diskio;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\fatfs\src;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\fatfs\vfs;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\wear_levelling\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_partition\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\app_update\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bootloader_support\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bootloader_support\bootloader_flash\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_app_format\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_bootloader_format\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\console;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_vfs_console\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\openthread\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\openthread\openthread\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\nvs_flash\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\spi_flash\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp_secure_cert_mgr\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__json_parser\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__jsmn\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\spiffs\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_http_client\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__json_generator\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\json\cJSON;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__mdns\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp_delta_ota\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp_encrypted_img\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp_insights\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp_diagnostics\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-sr\esp-tts\esp_tts_chinese\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-sr\include\esp32s3;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-sr\src\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\efuse\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\efuse\esp32s3\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_mm\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_security\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\pthread\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_psram\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_psram\xip_impl\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\app_trace\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\wpa_supplicant\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\wpa_supplicant\port\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\wpa_supplicant\esp_supplicant\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_coex\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_gdbstub\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\unity\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\unity\unity\src;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\cmock\CMock\src;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_driver_bitscrambler\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\http_parser;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp-tls;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp-tls\esp-tls-crypto;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_adc\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_adc\interface;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_adc\esp32s3\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_adc\deprecated\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_driver_isp\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_driver_cam\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_driver_cam\interface;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_driver_cam\dvp\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_driver_jpeg\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_driver_ppa\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_driver_touch_sens\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_driver_touch_sens\hw_ver2\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_hal_ieee802154\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_hid\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\tcp_transport\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_http_server\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_https_ota\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_https_server\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_lcd\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_lcd\interface;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_lcd\rgb\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\protobuf-c\protobuf-c;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\protocomm\include\common;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\protocomm\include\security;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\protocomm\include\transports;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\protocomm\include\crypto\srp6a;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\protocomm\proto-c;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_local_ctrl\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espcoredump\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espcoredump\include\port\xtensa;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\idf_test\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\idf_test\include\esp32s3;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\ieee802154\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\mqtt\esp-mqtt\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\nvs_sec_provider\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\perfmon\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\rt\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\touch_element\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\ulp\ulp_common\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\ulp\ulp_fsm\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\ulp\ulp_fsm\include\esp32s3;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\usb\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\wifi_provisioning\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-nn\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-nn\src\common;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__rmaker_common\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__cbor\tinycbor\src;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp_diag_data_store\src\rtc_store;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp_diag_data_store\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-serial-flasher\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-serial-flasher\port;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp_rcp_update\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__dl_fft;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__dl_fft\base;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__dl_fft\base\isa;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-dsp\modules\dotprod\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-dsp\modules\support\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-dsp\modules\support\mem\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-dsp\modules\windows\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-dsp\modules\windows\hann\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-dsp\modules\windows\blackman\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-dsp\modules\windows\blackman_harris\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-dsp\modules\windows\blackman_nuttall\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-dsp\modules\windows\nuttall\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-dsp\modules\windows\flat_top\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-dsp\modules\iir\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-dsp\modules\fir\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-dsp\modules\math\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-dsp\modules\math\add\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-dsp\modules\math\sub\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-dsp\modules\math\mul\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-dsp\modules\math\addc\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-dsp\modules\math\mulc\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-dsp\modules\math\sqrt\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-dsp\modules\matrix\mul\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-dsp\modules\matrix\add\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-dsp\modules\matrix\addc\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-dsp\modules\matrix\mulc\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-dsp\modules\matrix\sub\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-dsp\modules\matrix\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-dsp\modules\fft\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-dsp\modules\dct\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-dsp\modules\conv\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-dsp\modules\common\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-dsp\modules\matrix\mul\test\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-dsp\modules\kalman\ekf\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-dsp\modules\kalman\ekf_imu13states\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\chmorgan__esp-libhelix-mp3\libhelix-mp3\pub;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-modbus\freemodbus\common\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-zboss-lib\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-zigbee-lib\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-zigbee-lib\include\radio_spinel;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__libsodium\libsodium\src\libsodium\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__libsodium\port_include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp_modem\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp_modem\command\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp_schedule\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__network_provisioning\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp_rainmaker\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__qrcode\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\joltwallet__littlefs\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\freertos\FreeRTOS-Kernel\include\freertos;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\arduino_tinyusb\tinyusb\src;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\arduino_tinyusb\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\fb_gfx\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp-x32\2511\xtensa-esp-elf\include\c++\14.2.0;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp-x32\2511\xtensa-esp-elf\include\c++\14.2.0\xtensa-esp-elf\esp32s3\no-rtti;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp-x32\2511\xtensa-esp-elf\include\c++\14.2.0\backward;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp-x32\2511\lib\gcc\xtensa-esp-elf\14.2.0\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp-x32\2511\lib\gcc\xtensa-esp-elf\14.2.0\include-fixed;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp-x32\2511\xtensa-esp-elf\include;$(ProjectDir)..\..\..\..\Users\Simon\Documents\Arduino\libraries\SerialCommandManager\src;$(ProjectDir)..\..\..\..\Users\Simon\Documents\Arduino\libraries\SensorManager\src;$(ProjectDir)..\..\..\..\Users\Simon\Documents\Arduino\libraries\SdFat\src;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\hardware\esp32\3.3.7\libraries\SPI\src;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\hardware\esp32\3.3.7\libraries\WiFi\src;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\hardware\esp32\3.3.7\libraries\Network\src;$(ProjectDir)..\..\..\..\Users\Simon\Documents\Arduino\libraries\NextionControl\src;$(ProjectDir)..\..\..\..\Users\Simon\Documents\Arduino\libraries\TinyGPSPlus\src;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\hardware\esp32\3.3.7\libraries\EEPROM\src;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\hardware\esp32\3.3.7\libraries\HTTPClient\src;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\hardware\esp32\3.3.7\libraries\NetworkClientSecure\src;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\hardware\esp32\3.3.7\libraries\Update\src;$(ProjectDir)..\..\..\..\Users\Simon\Documents\Arduino\libraries\Ds1302\src - $(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp-x32\2511\bin\xtensa-esp32s3-elf-g++ - $(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp-x32\2511\bin\xtensa-esp32s3-elf-g++ + $(ProjectDir)..\PowerControlHub;$(ProjectDir)..\..\..\Users\Simon\Documents\Arduino\libraries\SerialCommandManager\src;$(ProjectDir)..\..\..\Users\Simon\Documents\Arduino\libraries\SensorManager\src;$(ProjectDir)..\..\..\Users\Simon\Documents\Arduino\libraries\SdFat\src;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\hardware\esp32\3.3.7\libraries\SPI\src;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\hardware\esp32\3.3.7\libraries\WiFi\src;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\hardware\esp32\3.3.7\libraries\Network\src;$(ProjectDir)..\..\..\Users\Simon\Documents\Arduino\libraries\NextionControl\src;$(ProjectDir)..\..\..\Users\Simon\Documents\Arduino\libraries\TinyGPSPlus\src;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\hardware\esp32\3.3.7\libraries\EEPROM\src;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\hardware\esp32\3.3.7\libraries\HTTPClient\src;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\hardware\esp32\3.3.7\libraries\NetworkClientSecure\src;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\hardware\esp32\3.3.7\libraries\Update\src;$(ProjectDir)..\..\..\Users\Simon\Documents\Arduino\libraries\Ds1302\src;$(ProjectDir)..\..\..\program files\microsoft visual studio\18\insiders\common7\ide\extensions\0qz5sbjj.e2i\Micro Platforms\default;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\dio_qspi\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\hardware\esp32\3.3.7\cores\esp32;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\hardware\esp32\3.3.7\variants\esp32s3;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\newlib\platform_include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\freertos\config\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\freertos\config\include\freertos;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\freertos\config\xtensa\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\freertos\FreeRTOS-Kernel\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\freertos\FreeRTOS-Kernel\portable\xtensa\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\freertos\FreeRTOS-Kernel\portable\xtensa\include\freertos;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\freertos\esp_additions\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_hw_support\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_hw_support\include\soc;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_hw_support\include\soc\esp32s3;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_hw_support\dma\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_hw_support\ldo\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_hw_support\debug_probe\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_hw_support\mspi_timing_tuning\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_hw_support\mspi_timing_tuning\tuning_scheme_impl\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_hw_support\power_supply\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_hw_support\port\esp32s3;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_hw_support\port\esp32s3\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_hw_support\mspi_timing_tuning\port\esp32s3;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\heap\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\heap\tlsf;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\log\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\soc\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\soc\esp32s3;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\soc\esp32s3\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\soc\esp32s3\register;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\hal\platform_port\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\hal\esp32s3\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\hal\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_rom\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_rom\esp32s3\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_rom\esp32s3\include\esp32s3;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_rom\esp32s3;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_common\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_system\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_system\port\include\private;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\xtensa\esp32s3\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\xtensa\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\xtensa\deprecated_include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_timer\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\lwip\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\lwip\include\apps;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\lwip\include\apps\sntp;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\lwip\lwip\src\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\lwip\port\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\lwip\port\freertos\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\lwip\port\esp32xx\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\lwip\port\esp32xx\include\arch;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\lwip\port\esp32xx\include\sys;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-tflite-micro;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-tflite-micro\third_party\gemmlowp;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-tflite-micro\third_party\flatbuffers\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-tflite-micro\third_party\ruy;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-tflite-micro\third_party\kissfft;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp32-camera\driver\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp32-camera\conversions\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\driver\deprecated;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\driver\i2c\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\driver\touch_sensor\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\driver\twai\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\driver\touch_sensor\esp32s3\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_pm\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_ringbuf\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_driver_gpio\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_driver_pcnt\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_driver_gptimer\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_driver_spi\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_driver_mcpwm\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_driver_ana_cmpr\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_driver_i2s\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_driver_sdmmc\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\sdmmc\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_driver_sdspi\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_driver_sdio\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_driver_dac\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_driver_rmt\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_driver_tsens\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_driver_sdm\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_driver_i2c\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_driver_uart\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\vfs\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_driver_ledc\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_driver_parlio\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_driver_usb_serial_jtag\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_driver_twai\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp_jpeg\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp_matter\connectedhomeip\connectedhomeip\src;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp_matter\connectedhomeip\connectedhomeip\src\app\ember_coupling;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp_matter\connectedhomeip\connectedhomeip\src\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp_matter\connectedhomeip\connectedhomeip\src\lib;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp_matter\connectedhomeip\connectedhomeip\src\lib\dnssd;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp_matter\connectedhomeip\connectedhomeip\src\platform\OpenThread;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp_matter\connectedhomeip\connectedhomeip\third_party\jsoncpp\repo\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp_matter\connectedhomeip\connectedhomeip\third_party\nlfaultinjection\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp_matter\connectedhomeip\connectedhomeip\third_party\nlassert\repo\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp_matter\connectedhomeip\connectedhomeip\third_party\nlio\repo\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp_matter\connectedhomeip\connectedhomeip\zzz_generated\app-common;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp-idf\espressif__esp_matter;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_matter\zap_common;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_matter;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_matter\utils;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_matter_bridge;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_matter_console;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp_matter\connectedhomeip\connectedhomeip\src\platform\ESP32;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp_matter\connectedhomeip\connectedhomeip\src\platform\ESP32\nimble;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp_matter\connectedhomeip\connectedhomeip\src\platform\ESP32\route_hook;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_eth\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_event\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\include\esp32c3\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\common\osi\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\common\api\include\api;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\common\btc\profile\esp\blufi\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\common\btc\profile\esp\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\common\hci_log\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\common\ble_log\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\esp_ble_mesh\common\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\esp_ble_mesh\core;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\esp_ble_mesh\core\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\esp_ble_mesh\core\storage;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\esp_ble_mesh\btc\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\esp_ble_mesh\models\common\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\esp_ble_mesh\models\client\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\esp_ble_mesh\models\server\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\esp_ble_mesh\api\core\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\esp_ble_mesh\api\models\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\esp_ble_mesh\api;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\esp_ble_mesh\lib\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\esp_ble_mesh\v1.1\api\core\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\esp_ble_mesh\v1.1\api\models\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\esp_ble_mesh\v1.1\btc\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\esp_ble_mesh\v1.1\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\esp_ble_mesh\v1.1\dfu;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\esp_ble_mesh\v1.1\mbt;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\common\tinycrypt\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\common\tinycrypt\port;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\host\nimble\nimble\nimble\host\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\host\nimble\nimble\nimble\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\host\nimble\nimble\nimble\host\services\ans\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\host\nimble\nimble\nimble\host\services\bas\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\host\nimble\nimble\nimble\host\services\dis\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\host\nimble\nimble\nimble\host\services\gap\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\host\nimble\nimble\nimble\host\services\gatt\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\host\nimble\nimble\nimble\host\services\hr\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\host\nimble\nimble\nimble\host\services\htp\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\host\nimble\nimble\nimble\host\services\ias\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\host\nimble\nimble\nimble\host\services\ipss\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\host\nimble\nimble\nimble\host\services\lls\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\host\nimble\nimble\nimble\host\services\prox\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\host\nimble\nimble\nimble\host\services\cts\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\host\nimble\nimble\nimble\host\services\tps\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\host\nimble\nimble\nimble\host\services\hid\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\host\nimble\nimble\nimble\host\services\sps\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\host\nimble\nimble\nimble\host\services\cte\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\host\nimble\nimble\nimble\host\util\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\host\nimble\nimble\nimble\host\store\ram\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\host\nimble\nimble\nimble\host\store\config\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\host\nimble\nimble\nimble\host\services\ras\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\host\nimble\nimble\porting\nimble\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\host\nimble\port\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\host\nimble\nimble\nimble\transport\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\porting\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\host\nimble\nimble\porting\npl\freertos\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\host\nimble\esp-hci\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_wifi\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_wifi\include\local;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_wifi\wifi_apps\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_wifi\wifi_apps\nan_app\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_phy\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_phy\esp32s3\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_netif\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\mbedtls\port\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\mbedtls\mbedtls\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\mbedtls\mbedtls\library;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\mbedtls\esp_crt_bundle\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\mbedtls\mbedtls\3rdparty\everest\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\mbedtls\mbedtls\3rdparty\p256-m;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\mbedtls\mbedtls\3rdparty\p256-m\p256-m;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\fatfs\diskio;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\fatfs\src;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\fatfs\vfs;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\wear_levelling\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_partition\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\app_update\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bootloader_support\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bootloader_support\bootloader_flash\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_app_format\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_bootloader_format\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\console;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_vfs_console\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\openthread\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\openthread\openthread\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\nvs_flash\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\spi_flash\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp_secure_cert_mgr\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__json_parser\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__jsmn\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\spiffs\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_http_client\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__json_generator\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\json\cJSON;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__mdns\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp_delta_ota\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp_encrypted_img\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp_insights\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp_diagnostics\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-sr\esp-tts\esp_tts_chinese\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-sr\include\esp32s3;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-sr\src\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\efuse\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\efuse\esp32s3\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_mm\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_security\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\pthread\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_psram\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_psram\xip_impl\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\app_trace\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\wpa_supplicant\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\wpa_supplicant\port\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\wpa_supplicant\esp_supplicant\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_coex\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_gdbstub\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\unity\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\unity\unity\src;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\cmock\CMock\src;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_driver_bitscrambler\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\http_parser;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp-tls;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp-tls\esp-tls-crypto;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_adc\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_adc\interface;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_adc\esp32s3\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_adc\deprecated\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_driver_isp\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_driver_cam\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_driver_cam\interface;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_driver_cam\dvp\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_driver_jpeg\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_driver_ppa\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_driver_touch_sens\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_driver_touch_sens\hw_ver2\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_hal_ieee802154\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_hid\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\tcp_transport\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_http_server\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_https_ota\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_https_server\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_lcd\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_lcd\interface;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_lcd\rgb\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\protobuf-c\protobuf-c;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\protocomm\include\common;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\protocomm\include\security;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\protocomm\include\transports;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\protocomm\include\crypto\srp6a;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\protocomm\proto-c;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_local_ctrl\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espcoredump\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espcoredump\include\port\xtensa;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\idf_test\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\idf_test\include\esp32s3;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\ieee802154\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\mqtt\esp-mqtt\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\nvs_sec_provider\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\perfmon\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\rt\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\touch_element\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\ulp\ulp_common\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\ulp\ulp_fsm\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\ulp\ulp_fsm\include\esp32s3;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\usb\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\wifi_provisioning\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-nn\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-nn\src\common;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__rmaker_common\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__cbor\tinycbor\src;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp_diag_data_store\src\rtc_store;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp_diag_data_store\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-serial-flasher\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-serial-flasher\port;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp_rcp_update\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__dl_fft;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__dl_fft\base;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__dl_fft\base\isa;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-dsp\modules\dotprod\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-dsp\modules\support\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-dsp\modules\support\mem\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-dsp\modules\windows\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-dsp\modules\windows\hann\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-dsp\modules\windows\blackman\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-dsp\modules\windows\blackman_harris\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-dsp\modules\windows\blackman_nuttall\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-dsp\modules\windows\nuttall\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-dsp\modules\windows\flat_top\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-dsp\modules\iir\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-dsp\modules\fir\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-dsp\modules\math\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-dsp\modules\math\add\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-dsp\modules\math\sub\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-dsp\modules\math\mul\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-dsp\modules\math\addc\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-dsp\modules\math\mulc\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-dsp\modules\math\sqrt\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-dsp\modules\matrix\mul\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-dsp\modules\matrix\add\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-dsp\modules\matrix\addc\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-dsp\modules\matrix\mulc\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-dsp\modules\matrix\sub\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-dsp\modules\matrix\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-dsp\modules\fft\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-dsp\modules\dct\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-dsp\modules\conv\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-dsp\modules\common\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-dsp\modules\matrix\mul\test\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-dsp\modules\kalman\ekf\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-dsp\modules\kalman\ekf_imu13states\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\chmorgan__esp-libhelix-mp3\libhelix-mp3\pub;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-modbus\freemodbus\common\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-zboss-lib\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-zigbee-lib\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-zigbee-lib\include\radio_spinel;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__libsodium\libsodium\src\libsodium\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__libsodium\port_include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp_modem\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp_modem\command\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp_schedule\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__network_provisioning\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp_rainmaker\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__qrcode\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\joltwallet__littlefs\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\freertos\FreeRTOS-Kernel\include\freertos;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\arduino_tinyusb\tinyusb\src;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\arduino_tinyusb\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\fb_gfx\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp-x32\2511\xtensa-esp-elf\include\c++\14.2.0;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp-x32\2511\xtensa-esp-elf\include\c++\14.2.0\xtensa-esp-elf\esp32s3\no-rtti;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp-x32\2511\xtensa-esp-elf\include\c++\14.2.0\backward;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp-x32\2511\lib\gcc\xtensa-esp-elf\14.2.0\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp-x32\2511\lib\gcc\xtensa-esp-elf\14.2.0\include-fixed;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp-x32\2511\xtensa-esp-elf\include;$(ProjectDir)..\..\..\Users\Simon\Documents\Arduino\libraries\SerialCommandManager\src;$(ProjectDir)..\..\..\Users\Simon\Documents\Arduino\libraries\SensorManager\src;$(ProjectDir)..\..\..\Users\Simon\Documents\Arduino\libraries\SdFat\src;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\hardware\esp32\3.3.7\libraries\SPI\src;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\hardware\esp32\3.3.7\libraries\WiFi\src;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\hardware\esp32\3.3.7\libraries\Network\src;$(ProjectDir)..\..\..\Users\Simon\Documents\Arduino\libraries\NextionControl\src;$(ProjectDir)..\..\..\Users\Simon\Documents\Arduino\libraries\TinyGPSPlus\src;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\hardware\esp32\3.3.7\libraries\EEPROM\src;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\hardware\esp32\3.3.7\libraries\HTTPClient\src;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\hardware\esp32\3.3.7\libraries\NetworkClientSecure\src;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\hardware\esp32\3.3.7\libraries\Update\src;$(ProjectDir)..\..\..\Users\Simon\Documents\Arduino\libraries\Ds1302\src + $(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp-x32\2511\bin\xtensa-esp32s3-elf-g++ + $(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp-x32\2511\bin\xtensa-esp32s3-elf-g++ false @@ -315,13 +317,13 @@ - $(ProjectDir)..\SmartFuseBox;$(ProjectDir)..\..\..\Users\Simon\Documents\Arduino\libraries\SerialCommandManager\src;$(ProjectDir)..\..\..\Users\Simon\Documents\Arduino\libraries\Arduino_Uno_WiFi_Dev_Ed_Library\src;$(ProjectDir)..\..\..\Users\Simon\Documents\Arduino\libraries\Adafruit_Unified_Sensor;$(ProjectDir)..\..\..\Users\Simon\Documents\Arduino\libraries\dht11;$(ProjectDir)..\..\..\Users\Simon\Documents\Arduino\libraries\Queue;$(ProjectDir)..\..\..\Users\Simon\Documents\ArduinoData\staging\packages\packages\arduino\hardware\renesas_uno\1.0.5\libraries\EEPROM\src;$(ProjectDir)..\..\..\Users\Simon\Documents\ArduinoData\staging\packages\packages\arduino\hardware\renesas_uno\1.0.5\libraries\BlockDevices;$(ProjectDir)..\..\..\Users\Simon\Documents\ArduinoData\staging\packages\packages\arduino\hardware\renesas_uno\1.0.5\libraries\Storage;$(ProjectDir)..\..\..\Users\Simon\Documents\ArduinoData\staging\packages\packages\arduino\hardware\renesas_uno\1.0.5\cores\arduino\tinyusb;$(ProjectDir)..\..\..\Users\Simon\Documents\ArduinoData\staging\packages\packages\arduino\hardware\renesas_uno\1.0.5\cores\arduino\api\deprecated;$(ProjectDir)..\..\..\Users\Simon\Documents\ArduinoData\staging\packages\packages\arduino\hardware\renesas_uno\1.0.5\cores\arduino\api\deprecated-avr-comp;$(ProjectDir)..\..\..\Users\Simon\Documents\ArduinoData\staging\packages\packages\arduino\hardware\renesas_uno\1.0.5\cores\arduino;$(ProjectDir)..\..\..\Users\Simon\Documents\ArduinoData\staging\packages\packages\arduino\hardware\renesas_uno\1.0.5\variants\UNOWIFIR4;$(ProjectDir)..\..\..\Users\Simon\Documents\ArduinoData\staging\packages\packages\arduino\hardware\renesas_uno\1.0.5\variants\UNOWIFIR4\includes\ra\fsp\inc;$(ProjectDir)..\..\..\Users\Simon\Documents\ArduinoData\staging\packages\packages\arduino\hardware\renesas_uno\1.0.5\variants\UNOWIFIR4\includes\ra\fsp\inc\api;$(ProjectDir)..\..\..\Users\Simon\Documents\ArduinoData\staging\packages\packages\arduino\hardware\renesas_uno\1.0.5\variants\UNOWIFIR4\includes\ra\fsp\inc\instances;$(ProjectDir)..\..\..\Users\Simon\Documents\ArduinoData\staging\packages\packages\arduino\hardware\renesas_uno\1.0.5\variants\UNOWIFIR4\includes\ra\arm\CMSIS_5\CMSIS\Core\Include;$(ProjectDir)..\..\..\Users\Simon\Documents\ArduinoData\staging\packages\packages\arduino\hardware\renesas_uno\1.0.5\variants\UNOWIFIR4\includes\ra_gen;$(ProjectDir)..\..\..\Users\Simon\Documents\ArduinoData\staging\packages\packages\arduino\hardware\renesas_uno\1.0.5\variants\UNOWIFIR4\includes\ra_cfg\fsp_cfg\bsp;$(ProjectDir)..\..\..\Users\Simon\Documents\ArduinoData\staging\packages\packages\arduino\hardware\renesas_uno\1.0.5\variants\UNOWIFIR4\includes\ra_cfg\fsp_cfg;$(ProjectDir)..\..\..\Users\Simon\Documents\ArduinoData\staging\packages\packages\arduino\hardware\renesas_uno\1.0.5\variants\UNOWIFIR4\includes\ra\fsp\src\r_usb_basic\src\driver\inc;$(ProjectDir)..\..\..\Users\Simon\Documents\ArduinoData\staging\packages\packages\arduino\hardware\renesas_uno\1.0.5\variants\UNOWIFIR4\includes\ra\fsp\src\r_sce\crypto_procedures\src\sce5\plainkey\private\inc;$(ProjectDir)..\..\..\Users\Simon\Documents\ArduinoData\staging\packages\packages\arduino\hardware\renesas_uno\1.0.5\variants\UNOWIFIR4\includes\ra\fsp\src\r_sce\crypto_procedures\src\sce5\plainkey\public\inc;$(ProjectDir)..\..\..\Users\Simon\Documents\ArduinoData\staging\packages\packages\arduino\hardware\renesas_uno\1.0.5\variants\UNOWIFIR4\includes\ra\fsp\src\r_sce\common;$(ProjectDir)..\..\..\Users\Simon\Documents\ArduinoData\staging\packages\packages\arduino\hardware\renesas_uno\1.0.5\variants\UNOWIFIR4\includes\ra\fsp\src\r_sce;$(ProjectDir)..\..\..\users\simon\documents\arduinodata\staging\packages\packages\arduino\tools\arm-none-eabi-gcc\7-2017q4\arm-none-eabi\include\c++\7.2.1;$(ProjectDir)..\..\..\users\simon\documents\arduinodata\staging\packages\packages\arduino\tools\arm-none-eabi-gcc\7-2017q4\arm-none-eabi\include\c++\7.2.1\arm-none-eabi\thumb\v7e-m\fpv4-sp\hard;$(ProjectDir)..\..\..\users\simon\documents\arduinodata\staging\packages\packages\arduino\tools\arm-none-eabi-gcc\7-2017q4\arm-none-eabi\include\c++\7.2.1\backward;$(ProjectDir)..\..\..\users\simon\documents\arduinodata\staging\packages\packages\arduino\tools\arm-none-eabi-gcc\7-2017q4\lib\gcc\arm-none-eabi\7.2.1\include;$(ProjectDir)..\..\..\users\simon\documents\arduinodata\staging\packages\packages\arduino\tools\arm-none-eabi-gcc\7-2017q4\lib\gcc\arm-none-eabi\7.2.1\include-fixed;$(ProjectDir)..\..\..\users\simon\documents\arduinodata\staging\packages\packages\arduino\tools\arm-none-eabi-gcc\7-2017q4\arm-none-eabi\include;$(ProjectDir)..\..\..\Users\Simon\Documents\Arduino\libraries\SerialCommandManager\src;$(ProjectDir)..\..\..\Users\Simon\Documents\Arduino\libraries\Arduino_Uno_WiFi_Dev_Ed_Library\src;$(ProjectDir)..\..\..\Users\Simon\Documents\Arduino\libraries\Adafruit_Unified_Sensor;$(ProjectDir)..\..\..\Users\Simon\Documents\Arduino\libraries\dht11;$(ProjectDir)..\..\..\Users\Simon\Documents\Arduino\libraries\Queue;$(ProjectDir)..\..\..\Users\Simon\Documents\ArduinoData\staging\packages\packages\arduino\hardware\renesas_uno\1.0.5\libraries\EEPROM\src;$(ProjectDir)..\..\..\Users\Simon\Documents\ArduinoData\staging\packages\packages\arduino\hardware\renesas_uno\1.0.5\libraries\BlockDevices;$(ProjectDir)..\..\..\Users\Simon\Documents\ArduinoData\staging\packages\packages\arduino\hardware\renesas_uno\1.0.5\libraries\Storage;%(AdditionalIncludeDirectories) + $(ProjectDir)..\PowerControlHub;$(ProjectDir)..\..\..\Users\Simon\Documents\Arduino\libraries\SerialCommandManager\src;$(ProjectDir)..\..\..\Users\Simon\Documents\Arduino\libraries\Arduino_Uno_WiFi_Dev_Ed_Library\src;$(ProjectDir)..\..\..\Users\Simon\Documents\Arduino\libraries\Adafruit_Unified_Sensor;$(ProjectDir)..\..\..\Users\Simon\Documents\Arduino\libraries\dht11;$(ProjectDir)..\..\..\Users\Simon\Documents\Arduino\libraries\Queue;$(ProjectDir)..\..\..\Users\Simon\Documents\ArduinoData\staging\packages\packages\arduino\hardware\renesas_uno\1.0.5\libraries\EEPROM\src;$(ProjectDir)..\..\..\Users\Simon\Documents\ArduinoData\staging\packages\packages\arduino\hardware\renesas_uno\1.0.5\libraries\BlockDevices;$(ProjectDir)..\..\..\Users\Simon\Documents\ArduinoData\staging\packages\packages\arduino\hardware\renesas_uno\1.0.5\libraries\Storage;$(ProjectDir)..\..\..\Users\Simon\Documents\ArduinoData\staging\packages\packages\arduino\hardware\renesas_uno\1.0.5\cores\arduino\tinyusb;$(ProjectDir)..\..\..\Users\Simon\Documents\ArduinoData\staging\packages\packages\arduino\hardware\renesas_uno\1.0.5\cores\arduino\api\deprecated;$(ProjectDir)..\..\..\Users\Simon\Documents\ArduinoData\staging\packages\packages\arduino\hardware\renesas_uno\1.0.5\cores\arduino\api\deprecated-avr-comp;$(ProjectDir)..\..\..\Users\Simon\Documents\ArduinoData\staging\packages\packages\arduino\hardware\renesas_uno\1.0.5\cores\arduino;$(ProjectDir)..\..\..\Users\Simon\Documents\ArduinoData\staging\packages\packages\arduino\hardware\renesas_uno\1.0.5\variants\UNOWIFIR4;$(ProjectDir)..\..\..\Users\Simon\Documents\ArduinoData\staging\packages\packages\arduino\hardware\renesas_uno\1.0.5\variants\UNOWIFIR4\includes\ra\fsp\inc;$(ProjectDir)..\..\..\Users\Simon\Documents\ArduinoData\staging\packages\packages\arduino\hardware\renesas_uno\1.0.5\variants\UNOWIFIR4\includes\ra\fsp\inc\api;$(ProjectDir)..\..\..\Users\Simon\Documents\ArduinoData\staging\packages\packages\arduino\hardware\renesas_uno\1.0.5\variants\UNOWIFIR4\includes\ra\fsp\inc\instances;$(ProjectDir)..\..\..\Users\Simon\Documents\ArduinoData\staging\packages\packages\arduino\hardware\renesas_uno\1.0.5\variants\UNOWIFIR4\includes\ra\arm\CMSIS_5\CMSIS\Core\Include;$(ProjectDir)..\..\..\Users\Simon\Documents\ArduinoData\staging\packages\packages\arduino\hardware\renesas_uno\1.0.5\variants\UNOWIFIR4\includes\ra_gen;$(ProjectDir)..\..\..\Users\Simon\Documents\ArduinoData\staging\packages\packages\arduino\hardware\renesas_uno\1.0.5\variants\UNOWIFIR4\includes\ra_cfg\fsp_cfg\bsp;$(ProjectDir)..\..\..\Users\Simon\Documents\ArduinoData\staging\packages\packages\arduino\hardware\renesas_uno\1.0.5\variants\UNOWIFIR4\includes\ra_cfg\fsp_cfg;$(ProjectDir)..\..\..\Users\Simon\Documents\ArduinoData\staging\packages\packages\arduino\hardware\renesas_uno\1.0.5\variants\UNOWIFIR4\includes\ra\fsp\src\r_usb_basic\src\driver\inc;$(ProjectDir)..\..\..\Users\Simon\Documents\ArduinoData\staging\packages\packages\arduino\hardware\renesas_uno\1.0.5\variants\UNOWIFIR4\includes\ra\fsp\src\r_sce\crypto_procedures\src\sce5\plainkey\private\inc;$(ProjectDir)..\..\..\Users\Simon\Documents\ArduinoData\staging\packages\packages\arduino\hardware\renesas_uno\1.0.5\variants\UNOWIFIR4\includes\ra\fsp\src\r_sce\crypto_procedures\src\sce5\plainkey\public\inc;$(ProjectDir)..\..\..\Users\Simon\Documents\ArduinoData\staging\packages\packages\arduino\hardware\renesas_uno\1.0.5\variants\UNOWIFIR4\includes\ra\fsp\src\r_sce\common;$(ProjectDir)..\..\..\Users\Simon\Documents\ArduinoData\staging\packages\packages\arduino\hardware\renesas_uno\1.0.5\variants\UNOWIFIR4\includes\ra\fsp\src\r_sce;$(ProjectDir)..\..\..\users\simon\documents\arduinodata\staging\packages\packages\arduino\tools\arm-none-eabi-gcc\7-2017q4\arm-none-eabi\include\c++\7.2.1;$(ProjectDir)..\..\..\users\simon\documents\arduinodata\staging\packages\packages\arduino\tools\arm-none-eabi-gcc\7-2017q4\arm-none-eabi\include\c++\7.2.1\arm-none-eabi\thumb\v7e-m\fpv4-sp\hard;$(ProjectDir)..\..\..\users\simon\documents\arduinodata\staging\packages\packages\arduino\tools\arm-none-eabi-gcc\7-2017q4\arm-none-eabi\include\c++\7.2.1\backward;$(ProjectDir)..\..\..\users\simon\documents\arduinodata\staging\packages\packages\arduino\tools\arm-none-eabi-gcc\7-2017q4\lib\gcc\arm-none-eabi\7.2.1\include;$(ProjectDir)..\..\..\users\simon\documents\arduinodata\staging\packages\packages\arduino\tools\arm-none-eabi-gcc\7-2017q4\lib\gcc\arm-none-eabi\7.2.1\include-fixed;$(ProjectDir)..\..\..\users\simon\documents\arduinodata\staging\packages\packages\arduino\tools\arm-none-eabi-gcc\7-2017q4\arm-none-eabi\include;$(ProjectDir)..\..\..\Users\Simon\Documents\Arduino\libraries\SerialCommandManager\src;$(ProjectDir)..\..\..\Users\Simon\Documents\Arduino\libraries\Arduino_Uno_WiFi_Dev_Ed_Library\src;$(ProjectDir)..\..\..\Users\Simon\Documents\Arduino\libraries\Adafruit_Unified_Sensor;$(ProjectDir)..\..\..\Users\Simon\Documents\Arduino\libraries\dht11;$(ProjectDir)..\..\..\Users\Simon\Documents\Arduino\libraries\Queue;$(ProjectDir)..\..\..\Users\Simon\Documents\ArduinoData\staging\packages\packages\arduino\hardware\renesas_uno\1.0.5\libraries\EEPROM\src;$(ProjectDir)..\..\..\Users\Simon\Documents\ArduinoData\staging\packages\packages\arduino\hardware\renesas_uno\1.0.5\libraries\BlockDevices;$(ProjectDir)..\..\..\Users\Simon\Documents\ArduinoData\staging\packages\packages\arduino\hardware\renesas_uno\1.0.5\libraries\Storage;%(AdditionalIncludeDirectories) $(ProjectDir)..\..\..\Users\Simon\Documents\ArduinoData\staging\packages\packages\arduino\tools\arm-none-eabi-gcc\7-2017q4\bin\arm-none-eabi-g++ c++17 gnu11 - $(ProjectDir)..\..\..\program files\microsoft visual studio\18\insiders\common7\ide\extensions\0qz5sbjj.e2i\Micro Platforms\default\vm-intelli-pre.h;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\Temp\VMBuilds\SmartFuseBox\unor4wifi\Release\.vmintelli\2c775f200f63829b3b0f19534a0ef610\vm-intelli-gcc-defines.h;$(ProjectDir)..\..\..\program files\microsoft visual studio\18\insiders\common7\ide\extensions\0qz5sbjj.e2i\Micro Platforms\default\vm-intelli-post.h;$(ProjectDir)__vm\.SmartFuseBox.vsarduino.h;%(ForcedIncludeFiles) + $(ProjectDir)..\..\..\program files\microsoft visual studio\18\insiders\common7\ide\extensions\0qz5sbjj.e2i\Micro Platforms\default\vm-intelli-pre.h;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\Temp\VMBuilds\PowerControlHub\unor4wifi\Release\.vmintelli\2c775f200f63829b3b0f19534a0ef610\vm-intelli-gcc-defines.h;$(ProjectDir)..\..\..\program files\microsoft visual studio\18\insiders\common7\ide\extensions\0qz5sbjj.e2i\Micro Platforms\default\vm-intelli-post.h;$(ProjectDir)__vm\.PowerControlHub.vsarduino.h;%(ForcedIncludeFiles) true true _VMICRO_INTELLISENSE;F_CPU=48000000;NO_USB;BACKTRACE_SUPPORT;ARDUINO_UNOR4_WIFI;ARDUINO=108010;ARDUINO_UNOWIFIR4;ARDUINO_ARCH_RENESAS_UNO;ARDUINO_ARCH_RENESAS;ARDUINO_FSP;_XOPEN_SOURCE=700;CFG_TUSB_MCU=OPT_MCU_RAXXX;%(PreprocessorDefinitions) @@ -329,13 +331,13 @@ - $(ProjectDir)..\SmartFuseBox;$(ProjectDir)..\..\..\..\Users\Simon\Documents\Arduino\libraries\SerialCommandManager\src;$(ProjectDir)..\..\..\..\Users\Simon\Documents\Arduino\libraries\SensorManager\src;$(ProjectDir)..\..\..\..\Users\Simon\Documents\Arduino\libraries\SdFat\src;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\hardware\esp32\3.3.7\libraries\SPI\src;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\hardware\esp32\3.3.7\libraries\WiFi\src;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\hardware\esp32\3.3.7\libraries\Network\src;$(ProjectDir)..\..\..\..\Users\Simon\Documents\Arduino\libraries\NextionControl\src;$(ProjectDir)..\..\..\..\Users\Simon\Documents\Arduino\libraries\TinyGPSPlus\src;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\hardware\esp32\3.3.7\libraries\EEPROM\src;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\hardware\esp32\3.3.7\libraries\HTTPClient\src;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\hardware\esp32\3.3.7\libraries\NetworkClientSecure\src;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\hardware\esp32\3.3.7\libraries\Update\src;$(ProjectDir)..\..\..\..\Users\Simon\Documents\Arduino\libraries\Ds1302\src;$(ProjectDir)..\..\..\..\program files\microsoft visual studio\18\insiders\common7\ide\extensions\0qz5sbjj.e2i\Micro Platforms\default;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\dio_qspi\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\hardware\esp32\3.3.7\cores\esp32;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\hardware\esp32\3.3.7\variants\esp32s3;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\newlib\platform_include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\freertos\config\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\freertos\config\include\freertos;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\freertos\config\xtensa\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\freertos\FreeRTOS-Kernel\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\freertos\FreeRTOS-Kernel\portable\xtensa\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\freertos\FreeRTOS-Kernel\portable\xtensa\include\freertos;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\freertos\esp_additions\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_hw_support\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_hw_support\include\soc;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_hw_support\include\soc\esp32s3;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_hw_support\dma\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_hw_support\ldo\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_hw_support\debug_probe\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_hw_support\mspi_timing_tuning\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_hw_support\mspi_timing_tuning\tuning_scheme_impl\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_hw_support\power_supply\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_hw_support\port\esp32s3;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_hw_support\port\esp32s3\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_hw_support\mspi_timing_tuning\port\esp32s3;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\heap\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\heap\tlsf;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\log\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\soc\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\soc\esp32s3;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\soc\esp32s3\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\soc\esp32s3\register;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\hal\platform_port\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\hal\esp32s3\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\hal\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_rom\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_rom\esp32s3\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_rom\esp32s3\include\esp32s3;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_rom\esp32s3;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_common\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_system\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_system\port\include\private;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\xtensa\esp32s3\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\xtensa\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\xtensa\deprecated_include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_timer\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\lwip\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\lwip\include\apps;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\lwip\include\apps\sntp;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\lwip\lwip\src\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\lwip\port\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\lwip\port\freertos\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\lwip\port\esp32xx\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\lwip\port\esp32xx\include\arch;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\lwip\port\esp32xx\include\sys;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-tflite-micro;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-tflite-micro\third_party\gemmlowp;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-tflite-micro\third_party\flatbuffers\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-tflite-micro\third_party\ruy;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-tflite-micro\third_party\kissfft;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp32-camera\driver\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp32-camera\conversions\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\driver\deprecated;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\driver\i2c\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\driver\touch_sensor\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\driver\twai\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\driver\touch_sensor\esp32s3\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_pm\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_ringbuf\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_driver_gpio\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_driver_pcnt\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_driver_gptimer\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_driver_spi\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_driver_mcpwm\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_driver_ana_cmpr\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_driver_i2s\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_driver_sdmmc\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\sdmmc\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_driver_sdspi\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_driver_sdio\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_driver_dac\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_driver_rmt\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_driver_tsens\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_driver_sdm\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_driver_i2c\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_driver_uart\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\vfs\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_driver_ledc\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_driver_parlio\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_driver_usb_serial_jtag\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_driver_twai\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp_jpeg\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp_matter\connectedhomeip\connectedhomeip\src;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp_matter\connectedhomeip\connectedhomeip\src\app\ember_coupling;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp_matter\connectedhomeip\connectedhomeip\src\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp_matter\connectedhomeip\connectedhomeip\src\lib;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp_matter\connectedhomeip\connectedhomeip\src\lib\dnssd;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp_matter\connectedhomeip\connectedhomeip\src\platform\OpenThread;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp_matter\connectedhomeip\connectedhomeip\third_party\jsoncpp\repo\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp_matter\connectedhomeip\connectedhomeip\third_party\nlfaultinjection\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp_matter\connectedhomeip\connectedhomeip\third_party\nlassert\repo\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp_matter\connectedhomeip\connectedhomeip\third_party\nlio\repo\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp_matter\connectedhomeip\connectedhomeip\zzz_generated\app-common;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp-idf\espressif__esp_matter;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_matter\zap_common;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_matter;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_matter\utils;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_matter_bridge;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_matter_console;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp_matter\connectedhomeip\connectedhomeip\src\platform\ESP32;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp_matter\connectedhomeip\connectedhomeip\src\platform\ESP32\nimble;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp_matter\connectedhomeip\connectedhomeip\src\platform\ESP32\route_hook;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_eth\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_event\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\include\esp32c3\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\common\osi\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\common\api\include\api;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\common\btc\profile\esp\blufi\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\common\btc\profile\esp\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\common\hci_log\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\common\ble_log\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\esp_ble_mesh\common\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\esp_ble_mesh\core;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\esp_ble_mesh\core\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\esp_ble_mesh\core\storage;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\esp_ble_mesh\btc\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\esp_ble_mesh\models\common\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\esp_ble_mesh\models\client\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\esp_ble_mesh\models\server\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\esp_ble_mesh\api\core\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\esp_ble_mesh\api\models\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\esp_ble_mesh\api;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\esp_ble_mesh\lib\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\esp_ble_mesh\v1.1\api\core\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\esp_ble_mesh\v1.1\api\models\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\esp_ble_mesh\v1.1\btc\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\esp_ble_mesh\v1.1\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\esp_ble_mesh\v1.1\dfu;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\esp_ble_mesh\v1.1\mbt;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\common\tinycrypt\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\common\tinycrypt\port;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\host\nimble\nimble\nimble\host\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\host\nimble\nimble\nimble\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\host\nimble\nimble\nimble\host\services\ans\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\host\nimble\nimble\nimble\host\services\bas\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\host\nimble\nimble\nimble\host\services\dis\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\host\nimble\nimble\nimble\host\services\gap\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\host\nimble\nimble\nimble\host\services\gatt\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\host\nimble\nimble\nimble\host\services\hr\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\host\nimble\nimble\nimble\host\services\htp\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\host\nimble\nimble\nimble\host\services\ias\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\host\nimble\nimble\nimble\host\services\ipss\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\host\nimble\nimble\nimble\host\services\lls\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\host\nimble\nimble\nimble\host\services\prox\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\host\nimble\nimble\nimble\host\services\cts\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\host\nimble\nimble\nimble\host\services\tps\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\host\nimble\nimble\nimble\host\services\hid\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\host\nimble\nimble\nimble\host\services\sps\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\host\nimble\nimble\nimble\host\services\cte\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\host\nimble\nimble\nimble\host\util\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\host\nimble\nimble\nimble\host\store\ram\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\host\nimble\nimble\nimble\host\store\config\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\host\nimble\nimble\nimble\host\services\ras\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\host\nimble\nimble\porting\nimble\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\host\nimble\port\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\host\nimble\nimble\nimble\transport\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\porting\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\host\nimble\nimble\porting\npl\freertos\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\host\nimble\esp-hci\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_wifi\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_wifi\include\local;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_wifi\wifi_apps\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_wifi\wifi_apps\nan_app\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_phy\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_phy\esp32s3\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_netif\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\mbedtls\port\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\mbedtls\mbedtls\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\mbedtls\mbedtls\library;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\mbedtls\esp_crt_bundle\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\mbedtls\mbedtls\3rdparty\everest\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\mbedtls\mbedtls\3rdparty\p256-m;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\mbedtls\mbedtls\3rdparty\p256-m\p256-m;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\fatfs\diskio;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\fatfs\src;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\fatfs\vfs;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\wear_levelling\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_partition\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\app_update\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bootloader_support\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bootloader_support\bootloader_flash\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_app_format\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_bootloader_format\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\console;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_vfs_console\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\openthread\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\openthread\openthread\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\nvs_flash\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\spi_flash\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp_secure_cert_mgr\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__json_parser\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__jsmn\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\spiffs\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_http_client\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__json_generator\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\json\cJSON;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__mdns\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp_delta_ota\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp_encrypted_img\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp_insights\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp_diagnostics\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-sr\esp-tts\esp_tts_chinese\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-sr\include\esp32s3;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-sr\src\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\efuse\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\efuse\esp32s3\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_mm\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_security\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\pthread\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_psram\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_psram\xip_impl\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\app_trace\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\wpa_supplicant\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\wpa_supplicant\port\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\wpa_supplicant\esp_supplicant\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_coex\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_gdbstub\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\unity\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\unity\unity\src;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\cmock\CMock\src;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_driver_bitscrambler\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\http_parser;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp-tls;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp-tls\esp-tls-crypto;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_adc\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_adc\interface;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_adc\esp32s3\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_adc\deprecated\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_driver_isp\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_driver_cam\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_driver_cam\interface;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_driver_cam\dvp\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_driver_jpeg\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_driver_ppa\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_driver_touch_sens\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_driver_touch_sens\hw_ver2\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_hal_ieee802154\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_hid\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\tcp_transport\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_http_server\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_https_ota\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_https_server\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_lcd\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_lcd\interface;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_lcd\rgb\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\protobuf-c\protobuf-c;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\protocomm\include\common;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\protocomm\include\security;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\protocomm\include\transports;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\protocomm\include\crypto\srp6a;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\protocomm\proto-c;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_local_ctrl\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espcoredump\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espcoredump\include\port\xtensa;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\idf_test\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\idf_test\include\esp32s3;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\ieee802154\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\mqtt\esp-mqtt\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\nvs_sec_provider\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\perfmon\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\rt\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\touch_element\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\ulp\ulp_common\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\ulp\ulp_fsm\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\ulp\ulp_fsm\include\esp32s3;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\usb\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\wifi_provisioning\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-nn\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-nn\src\common;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__rmaker_common\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__cbor\tinycbor\src;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp_diag_data_store\src\rtc_store;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp_diag_data_store\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-serial-flasher\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-serial-flasher\port;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp_rcp_update\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__dl_fft;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__dl_fft\base;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__dl_fft\base\isa;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-dsp\modules\dotprod\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-dsp\modules\support\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-dsp\modules\support\mem\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-dsp\modules\windows\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-dsp\modules\windows\hann\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-dsp\modules\windows\blackman\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-dsp\modules\windows\blackman_harris\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-dsp\modules\windows\blackman_nuttall\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-dsp\modules\windows\nuttall\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-dsp\modules\windows\flat_top\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-dsp\modules\iir\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-dsp\modules\fir\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-dsp\modules\math\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-dsp\modules\math\add\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-dsp\modules\math\sub\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-dsp\modules\math\mul\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-dsp\modules\math\addc\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-dsp\modules\math\mulc\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-dsp\modules\math\sqrt\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-dsp\modules\matrix\mul\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-dsp\modules\matrix\add\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-dsp\modules\matrix\addc\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-dsp\modules\matrix\mulc\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-dsp\modules\matrix\sub\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-dsp\modules\matrix\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-dsp\modules\fft\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-dsp\modules\dct\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-dsp\modules\conv\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-dsp\modules\common\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-dsp\modules\matrix\mul\test\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-dsp\modules\kalman\ekf\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-dsp\modules\kalman\ekf_imu13states\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\chmorgan__esp-libhelix-mp3\libhelix-mp3\pub;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-modbus\freemodbus\common\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-zboss-lib\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-zigbee-lib\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-zigbee-lib\include\radio_spinel;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__libsodium\libsodium\src\libsodium\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__libsodium\port_include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp_modem\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp_modem\command\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp_schedule\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__network_provisioning\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp_rainmaker\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__qrcode\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\joltwallet__littlefs\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\freertos\FreeRTOS-Kernel\include\freertos;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\arduino_tinyusb\tinyusb\src;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\arduino_tinyusb\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\fb_gfx\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp-x32\2511\xtensa-esp-elf\include\c++\14.2.0;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp-x32\2511\xtensa-esp-elf\include\c++\14.2.0\xtensa-esp-elf\esp32s3\no-rtti;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp-x32\2511\xtensa-esp-elf\include\c++\14.2.0\backward;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp-x32\2511\lib\gcc\xtensa-esp-elf\14.2.0\include;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp-x32\2511\lib\gcc\xtensa-esp-elf\14.2.0\include-fixed;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp-x32\2511\xtensa-esp-elf\include;$(ProjectDir)..\..\..\..\Users\Simon\Documents\Arduino\libraries\SerialCommandManager\src;$(ProjectDir)..\..\..\..\Users\Simon\Documents\Arduino\libraries\SensorManager\src;$(ProjectDir)..\..\..\..\Users\Simon\Documents\Arduino\libraries\SdFat\src;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\hardware\esp32\3.3.7\libraries\SPI\src;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\hardware\esp32\3.3.7\libraries\WiFi\src;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\hardware\esp32\3.3.7\libraries\Network\src;$(ProjectDir)..\..\..\..\Users\Simon\Documents\Arduino\libraries\NextionControl\src;$(ProjectDir)..\..\..\..\Users\Simon\Documents\Arduino\libraries\TinyGPSPlus\src;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\hardware\esp32\3.3.7\libraries\EEPROM\src;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\hardware\esp32\3.3.7\libraries\HTTPClient\src;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\hardware\esp32\3.3.7\libraries\NetworkClientSecure\src;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\hardware\esp32\3.3.7\libraries\Update\src;$(ProjectDir)..\..\..\..\Users\Simon\Documents\Arduino\libraries\Ds1302\src;%(AdditionalIncludeDirectories) - $(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp-x32\2511\bin\xtensa-esp32s3-elf-g++ + $(ProjectDir)..\PowerControlHub;$(ProjectDir)..\..\..\Users\Simon\Documents\Arduino\libraries\SerialCommandManager\src;$(ProjectDir)..\..\..\Users\Simon\Documents\Arduino\libraries\SensorManager\src;$(ProjectDir)..\..\..\Users\Simon\Documents\Arduino\libraries\SdFat\src;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\hardware\esp32\3.3.7\libraries\SPI\src;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\hardware\esp32\3.3.7\libraries\WiFi\src;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\hardware\esp32\3.3.7\libraries\Network\src;$(ProjectDir)..\..\..\Users\Simon\Documents\Arduino\libraries\NextionControl\src;$(ProjectDir)..\..\..\Users\Simon\Documents\Arduino\libraries\TinyGPSPlus\src;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\hardware\esp32\3.3.7\libraries\EEPROM\src;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\hardware\esp32\3.3.7\libraries\HTTPClient\src;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\hardware\esp32\3.3.7\libraries\NetworkClientSecure\src;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\hardware\esp32\3.3.7\libraries\Update\src;$(ProjectDir)..\..\..\Users\Simon\Documents\Arduino\libraries\Ds1302\src;$(ProjectDir)..\..\..\program files\microsoft visual studio\18\insiders\common7\ide\extensions\0qz5sbjj.e2i\Micro Platforms\default;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\dio_qspi\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\hardware\esp32\3.3.7\cores\esp32;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\hardware\esp32\3.3.7\variants\esp32s3;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\newlib\platform_include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\freertos\config\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\freertos\config\include\freertos;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\freertos\config\xtensa\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\freertos\FreeRTOS-Kernel\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\freertos\FreeRTOS-Kernel\portable\xtensa\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\freertos\FreeRTOS-Kernel\portable\xtensa\include\freertos;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\freertos\esp_additions\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_hw_support\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_hw_support\include\soc;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_hw_support\include\soc\esp32s3;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_hw_support\dma\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_hw_support\ldo\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_hw_support\debug_probe\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_hw_support\mspi_timing_tuning\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_hw_support\mspi_timing_tuning\tuning_scheme_impl\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_hw_support\power_supply\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_hw_support\port\esp32s3;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_hw_support\port\esp32s3\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_hw_support\mspi_timing_tuning\port\esp32s3;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\heap\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\heap\tlsf;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\log\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\soc\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\soc\esp32s3;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\soc\esp32s3\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\soc\esp32s3\register;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\hal\platform_port\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\hal\esp32s3\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\hal\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_rom\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_rom\esp32s3\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_rom\esp32s3\include\esp32s3;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_rom\esp32s3;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_common\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_system\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_system\port\include\private;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\xtensa\esp32s3\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\xtensa\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\xtensa\deprecated_include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_timer\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\lwip\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\lwip\include\apps;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\lwip\include\apps\sntp;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\lwip\lwip\src\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\lwip\port\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\lwip\port\freertos\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\lwip\port\esp32xx\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\lwip\port\esp32xx\include\arch;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\lwip\port\esp32xx\include\sys;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-tflite-micro;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-tflite-micro\third_party\gemmlowp;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-tflite-micro\third_party\flatbuffers\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-tflite-micro\third_party\ruy;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-tflite-micro\third_party\kissfft;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp32-camera\driver\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp32-camera\conversions\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\driver\deprecated;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\driver\i2c\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\driver\touch_sensor\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\driver\twai\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\driver\touch_sensor\esp32s3\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_pm\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_ringbuf\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_driver_gpio\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_driver_pcnt\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_driver_gptimer\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_driver_spi\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_driver_mcpwm\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_driver_ana_cmpr\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_driver_i2s\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_driver_sdmmc\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\sdmmc\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_driver_sdspi\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_driver_sdio\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_driver_dac\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_driver_rmt\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_driver_tsens\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_driver_sdm\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_driver_i2c\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_driver_uart\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\vfs\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_driver_ledc\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_driver_parlio\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_driver_usb_serial_jtag\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_driver_twai\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp_jpeg\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp_matter\connectedhomeip\connectedhomeip\src;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp_matter\connectedhomeip\connectedhomeip\src\app\ember_coupling;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp_matter\connectedhomeip\connectedhomeip\src\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp_matter\connectedhomeip\connectedhomeip\src\lib;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp_matter\connectedhomeip\connectedhomeip\src\lib\dnssd;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp_matter\connectedhomeip\connectedhomeip\src\platform\OpenThread;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp_matter\connectedhomeip\connectedhomeip\third_party\jsoncpp\repo\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp_matter\connectedhomeip\connectedhomeip\third_party\nlfaultinjection\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp_matter\connectedhomeip\connectedhomeip\third_party\nlassert\repo\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp_matter\connectedhomeip\connectedhomeip\third_party\nlio\repo\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp_matter\connectedhomeip\connectedhomeip\zzz_generated\app-common;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp-idf\espressif__esp_matter;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_matter\zap_common;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_matter;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_matter\utils;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_matter_bridge;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_matter_console;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp_matter\connectedhomeip\connectedhomeip\src\platform\ESP32;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp_matter\connectedhomeip\connectedhomeip\src\platform\ESP32\nimble;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp_matter\connectedhomeip\connectedhomeip\src\platform\ESP32\route_hook;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_eth\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_event\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\include\esp32c3\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\common\osi\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\common\api\include\api;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\common\btc\profile\esp\blufi\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\common\btc\profile\esp\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\common\hci_log\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\common\ble_log\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\esp_ble_mesh\common\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\esp_ble_mesh\core;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\esp_ble_mesh\core\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\esp_ble_mesh\core\storage;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\esp_ble_mesh\btc\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\esp_ble_mesh\models\common\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\esp_ble_mesh\models\client\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\esp_ble_mesh\models\server\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\esp_ble_mesh\api\core\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\esp_ble_mesh\api\models\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\esp_ble_mesh\api;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\esp_ble_mesh\lib\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\esp_ble_mesh\v1.1\api\core\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\esp_ble_mesh\v1.1\api\models\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\esp_ble_mesh\v1.1\btc\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\esp_ble_mesh\v1.1\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\esp_ble_mesh\v1.1\dfu;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\esp_ble_mesh\v1.1\mbt;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\common\tinycrypt\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\common\tinycrypt\port;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\host\nimble\nimble\nimble\host\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\host\nimble\nimble\nimble\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\host\nimble\nimble\nimble\host\services\ans\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\host\nimble\nimble\nimble\host\services\bas\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\host\nimble\nimble\nimble\host\services\dis\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\host\nimble\nimble\nimble\host\services\gap\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\host\nimble\nimble\nimble\host\services\gatt\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\host\nimble\nimble\nimble\host\services\hr\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\host\nimble\nimble\nimble\host\services\htp\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\host\nimble\nimble\nimble\host\services\ias\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\host\nimble\nimble\nimble\host\services\ipss\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\host\nimble\nimble\nimble\host\services\lls\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\host\nimble\nimble\nimble\host\services\prox\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\host\nimble\nimble\nimble\host\services\cts\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\host\nimble\nimble\nimble\host\services\tps\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\host\nimble\nimble\nimble\host\services\hid\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\host\nimble\nimble\nimble\host\services\sps\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\host\nimble\nimble\nimble\host\services\cte\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\host\nimble\nimble\nimble\host\util\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\host\nimble\nimble\nimble\host\store\ram\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\host\nimble\nimble\nimble\host\store\config\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\host\nimble\nimble\nimble\host\services\ras\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\host\nimble\nimble\porting\nimble\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\host\nimble\port\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\host\nimble\nimble\nimble\transport\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\porting\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\host\nimble\nimble\porting\npl\freertos\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bt\host\nimble\esp-hci\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_wifi\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_wifi\include\local;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_wifi\wifi_apps\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_wifi\wifi_apps\nan_app\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_phy\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_phy\esp32s3\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_netif\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\mbedtls\port\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\mbedtls\mbedtls\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\mbedtls\mbedtls\library;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\mbedtls\esp_crt_bundle\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\mbedtls\mbedtls\3rdparty\everest\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\mbedtls\mbedtls\3rdparty\p256-m;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\mbedtls\mbedtls\3rdparty\p256-m\p256-m;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\fatfs\diskio;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\fatfs\src;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\fatfs\vfs;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\wear_levelling\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_partition\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\app_update\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bootloader_support\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\bootloader_support\bootloader_flash\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_app_format\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_bootloader_format\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\console;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_vfs_console\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\openthread\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\openthread\openthread\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\nvs_flash\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\spi_flash\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp_secure_cert_mgr\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__json_parser\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__jsmn\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\spiffs\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_http_client\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__json_generator\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\json\cJSON;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__mdns\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp_delta_ota\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp_encrypted_img\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp_insights\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp_diagnostics\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-sr\esp-tts\esp_tts_chinese\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-sr\include\esp32s3;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-sr\src\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\efuse\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\efuse\esp32s3\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_mm\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_security\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\pthread\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_psram\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_psram\xip_impl\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\app_trace\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\wpa_supplicant\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\wpa_supplicant\port\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\wpa_supplicant\esp_supplicant\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_coex\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_gdbstub\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\unity\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\unity\unity\src;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\cmock\CMock\src;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_driver_bitscrambler\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\http_parser;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp-tls;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp-tls\esp-tls-crypto;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_adc\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_adc\interface;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_adc\esp32s3\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_adc\deprecated\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_driver_isp\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_driver_cam\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_driver_cam\interface;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_driver_cam\dvp\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_driver_jpeg\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_driver_ppa\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_driver_touch_sens\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_driver_touch_sens\hw_ver2\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_hal_ieee802154\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_hid\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\tcp_transport\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_http_server\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_https_ota\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_https_server\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_lcd\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_lcd\interface;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_lcd\rgb\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\protobuf-c\protobuf-c;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\protocomm\include\common;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\protocomm\include\security;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\protocomm\include\transports;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\protocomm\include\crypto\srp6a;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\protocomm\proto-c;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\esp_local_ctrl\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espcoredump\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espcoredump\include\port\xtensa;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\idf_test\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\idf_test\include\esp32s3;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\ieee802154\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\mqtt\esp-mqtt\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\nvs_sec_provider\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\perfmon\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\rt\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\touch_element\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\ulp\ulp_common\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\ulp\ulp_fsm\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\ulp\ulp_fsm\include\esp32s3;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\usb\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\wifi_provisioning\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-nn\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-nn\src\common;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__rmaker_common\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__cbor\tinycbor\src;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp_diag_data_store\src\rtc_store;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp_diag_data_store\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-serial-flasher\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-serial-flasher\port;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp_rcp_update\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__dl_fft;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__dl_fft\base;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__dl_fft\base\isa;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-dsp\modules\dotprod\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-dsp\modules\support\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-dsp\modules\support\mem\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-dsp\modules\windows\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-dsp\modules\windows\hann\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-dsp\modules\windows\blackman\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-dsp\modules\windows\blackman_harris\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-dsp\modules\windows\blackman_nuttall\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-dsp\modules\windows\nuttall\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-dsp\modules\windows\flat_top\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-dsp\modules\iir\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-dsp\modules\fir\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-dsp\modules\math\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-dsp\modules\math\add\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-dsp\modules\math\sub\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-dsp\modules\math\mul\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-dsp\modules\math\addc\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-dsp\modules\math\mulc\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-dsp\modules\math\sqrt\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-dsp\modules\matrix\mul\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-dsp\modules\matrix\add\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-dsp\modules\matrix\addc\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-dsp\modules\matrix\mulc\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-dsp\modules\matrix\sub\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-dsp\modules\matrix\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-dsp\modules\fft\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-dsp\modules\dct\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-dsp\modules\conv\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-dsp\modules\common\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-dsp\modules\matrix\mul\test\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-dsp\modules\kalman\ekf\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-dsp\modules\kalman\ekf_imu13states\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\chmorgan__esp-libhelix-mp3\libhelix-mp3\pub;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-modbus\freemodbus\common\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-zboss-lib\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-zigbee-lib\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp-zigbee-lib\include\radio_spinel;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__libsodium\libsodium\src\libsodium\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__libsodium\port_include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp_modem\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp_modem\command\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp_schedule\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__network_provisioning\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__esp_rainmaker\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\espressif__qrcode\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\joltwallet__littlefs\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\freertos\FreeRTOS-Kernel\include\freertos;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\arduino_tinyusb\tinyusb\src;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\arduino_tinyusb\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp32s3-libs\3.3.7\include\fb_gfx\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp-x32\2511\xtensa-esp-elf\include\c++\14.2.0;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp-x32\2511\xtensa-esp-elf\include\c++\14.2.0\xtensa-esp-elf\esp32s3\no-rtti;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp-x32\2511\xtensa-esp-elf\include\c++\14.2.0\backward;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp-x32\2511\lib\gcc\xtensa-esp-elf\14.2.0\include;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp-x32\2511\lib\gcc\xtensa-esp-elf\14.2.0\include-fixed;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp-x32\2511\xtensa-esp-elf\include;$(ProjectDir)..\..\..\Users\Simon\Documents\Arduino\libraries\SerialCommandManager\src;$(ProjectDir)..\..\..\Users\Simon\Documents\Arduino\libraries\SensorManager\src;$(ProjectDir)..\..\..\Users\Simon\Documents\Arduino\libraries\SdFat\src;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\hardware\esp32\3.3.7\libraries\SPI\src;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\hardware\esp32\3.3.7\libraries\WiFi\src;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\hardware\esp32\3.3.7\libraries\Network\src;$(ProjectDir)..\..\..\Users\Simon\Documents\Arduino\libraries\NextionControl\src;$(ProjectDir)..\..\..\Users\Simon\Documents\Arduino\libraries\TinyGPSPlus\src;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\hardware\esp32\3.3.7\libraries\EEPROM\src;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\hardware\esp32\3.3.7\libraries\HTTPClient\src;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\hardware\esp32\3.3.7\libraries\NetworkClientSecure\src;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\hardware\esp32\3.3.7\libraries\Update\src;$(ProjectDir)..\..\..\Users\Simon\Documents\Arduino\libraries\Ds1302\src;%(AdditionalIncludeDirectories) + $(ProjectDir)..\..\..\Users\Simon\AppData\Local\arduino15\packages\esp32\tools\esp-x32\2511\bin\xtensa-esp32s3-elf-g++ c++2a gnu11 - $(ProjectDir)..\..\..\..\program files\microsoft visual studio\18\insiders\common7\ide\extensions\0qz5sbjj.e2i\Micro Platforms\default\vm-intelli-pre.h;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\Temp\VMBuilds\SmartFuseBox\esp32_esp32s3\Debug\.vmintelli\43a5584cc1e3cbf43014a5b588f12f8e\vm-intelli-gcc-defines.h;$(ProjectDir)..\..\..\..\program files\microsoft visual studio\18\insiders\common7\ide\extensions\0qz5sbjj.e2i\Micro Platforms\default\vm-intelli-post.h;$(ProjectDir)__vm\.SmartFuseBox.vsarduino.h;%(ForcedIncludeFiles) + $(ProjectDir)..\..\..\program files\microsoft visual studio\18\insiders\common7\ide\extensions\0qz5sbjj.e2i\Micro Platforms\default\vm-intelli-pre.h;$(ProjectDir)..\..\..\Users\Simon\AppData\Local\Temp\VMBuilds\PowerControlHub\esp32_esp32s3\Debug\.vmintelli\43a5584cc1e3cbf43014a5b588f12f8e\vm-intelli-gcc-defines.h;$(ProjectDir)..\..\..\program files\microsoft visual studio\18\insiders\common7\ide\extensions\0qz5sbjj.e2i\Micro Platforms\default\vm-intelli-post.h;$(ProjectDir)__vm\.PowerControlHub.vsarduino.h;%(ForcedIncludeFiles) true true _VMICRO_INTELLISENSE;__2511_esp32s3__;__2511_ESP32S3__;_VMDEBUG=1;F_CPU=240000000L;ARDUINO=108010;ARDUINO_ESP32S3_DEV;ARDUINO_ARCH_ESP32;ARDUINO_BOARD=ESP32S3_DEV;ARDUINO_VARIANT=esp32s3;ARDUINO_PARTITION_default;ARDUINO_HOST_OS=windows;ARDUINO_FQBN={build.fqbn};ESP32=ESP32;CORE_DEBUG_LEVEL=0;ARDUINO_RUNNING_CORE=1;ARDUINO_EVENT_RUNNING_CORE=1;ARDUINO_USB_MODE=1;ARDUINO_USB_CDC_ON_BOOT=0;ARDUINO_USB_MSC_ON_BOOT=0;ARDUINO_USB_DFU_ON_BOOT=0;%(PreprocessorDefinitions) @@ -349,7 +351,7 @@ gnu11 - $(ProjectDir)..\..\..\..\program files\microsoft visual studio\18\insiders\common7\ide\extensions\0qz5sbjj.e2i\Micro Platforms\default\vm-intelli-pre.h;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\Temp\VMBuilds\SmartFuseBox\esp32_esp32s3\Release\.vmintelli\43a5584cc1e3cbf43014a5b588f12f8e\vm-intelli-gcc-defines.h;$(ProjectDir)..\..\..\..\program files\microsoft visual studio\18\insiders\common7\ide\extensions\0qz5sbjj.e2i\Micro Platforms\default\vm-intelli-post.h;$(ProjectDir)__vm\.SmartFuseBox.vsarduino.h;%(ForcedIncludeFiles) + $(ProjectDir)..\..\..\..\program files\microsoft visual studio\18\insiders\common7\ide\extensions\0qz5sbjj.e2i\Micro Platforms\default\vm-intelli-pre.h;$(ProjectDir)..\..\..\..\Users\Simon\AppData\Local\Temp\VMBuilds\PowerControlHub\esp32_esp32s3\Release\.vmintelli\43a5584cc1e3cbf43014a5b588f12f8e\vm-intelli-gcc-defines.h;$(ProjectDir)..\..\..\..\program files\microsoft visual studio\18\insiders\common7\ide\extensions\0qz5sbjj.e2i\Micro Platforms\default\vm-intelli-post.h;$(ProjectDir)__vm\.PowerControlHub.vsarduino.h;%(ForcedIncludeFiles) true true _VMICRO_INTELLISENSE;__2511_esp32s3__;__2511_ESP32S3__;F_CPU=240000000L;ARDUINO=108010;ARDUINO_ESP32S3_DEV;ARDUINO_ARCH_ESP32;ARDUINO_BOARD=ESP32S3_DEV;ARDUINO_VARIANT=esp32s3;ARDUINO_PARTITION_default;ARDUINO_HOST_OS=windows;ARDUINO_FQBN={build.fqbn};ESP32=ESP32;CORE_DEBUG_LEVEL=0;ARDUINO_RUNNING_CORE=1;ARDUINO_EVENT_RUNNING_CORE=1;ARDUINO_USB_MODE=1;ARDUINO_USB_CDC_ON_BOOT=0;ARDUINO_USB_MSC_ON_BOOT=0;ARDUINO_USB_DFU_ON_BOOT=0;%(PreprocessorDefinitions) diff --git a/SmartFuseBox/SmartFuseBox.vcxproj.filters b/PowerControlHub/PowerControlHub.vcxproj.filters similarity index 98% rename from SmartFuseBox/SmartFuseBox.vcxproj.filters rename to PowerControlHub/PowerControlHub.vcxproj.filters index 47c5310..58f4303 100644 --- a/SmartFuseBox/SmartFuseBox.vcxproj.filters +++ b/PowerControlHub/PowerControlHub.vcxproj.filters @@ -78,7 +78,6 @@ - Header Files\SerialCommandHandlers @@ -172,7 +171,7 @@ Source Files\MQTT - + Source Files @@ -322,6 +321,7 @@ Header Files\Components + @@ -426,7 +426,7 @@ Header Files\MQTT - + Header Files @@ -693,6 +693,15 @@ Header Files\Components + + Header Files + + + Header Files + + + Header Files + @@ -701,10 +710,9 @@ + - - \ No newline at end of file diff --git a/SmartFuseBox/SmartFuseBoxApp.cpp b/PowerControlHub/PowerControlHubApp.cpp similarity index 95% rename from SmartFuseBox/SmartFuseBoxApp.cpp rename to PowerControlHub/PowerControlHubApp.cpp index e588a38..513a817 100644 --- a/SmartFuseBox/SmartFuseBoxApp.cpp +++ b/PowerControlHub/PowerControlHubApp.cpp @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify @@ -15,7 +15,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ -#include "SmartFuseBoxApp.h" +#include "PowerControlHubApp.h" #include "SystemCpuMonitor.h" #include "DateTimeManager.h" @@ -30,7 +30,7 @@ #if defined(CARD_CONFIG_LOADER) #include "SDCardConfigLoader.h" -SmartFuseBoxApp* SmartFuseBoxApp::_instance = nullptr; +PowerControlHubApp* PowerControlHubApp::_instance = nullptr; #endif constexpr uint8_t DefaultDelay = 5; @@ -39,7 +39,7 @@ constexpr uint8_t DefaultDelay = 5; // Actual pins are loaded from config in setup() via syncPinsFromConfig(). static uint8_t _disabledRelayPins[ConfigRelayCount]; -SmartFuseBoxApp::SmartFuseBoxApp(SerialCommandManager* commandMgrComputer) +PowerControlHubApp::PowerControlHubApp(SerialCommandManager* commandMgrComputer) : _commandMgrComputer(commandMgrComputer), _messageBus(), _relayController(&_messageBus, (memset(_disabledRelayPins, DefaultValue, sizeof(_disabledRelayPins)), _disabledRelayPins), ConfigRelayCount), @@ -121,7 +121,7 @@ SmartFuseBoxApp::SmartFuseBoxApp(SerialCommandManager* commandMgrComputer) #endif } -void SmartFuseBoxApp::setup(RemoteSensor** remoteSensors, uint8_t remoteSensorCount) +void PowerControlHubApp::setup(RemoteSensor** remoteSensors, uint8_t remoteSensorCount) { // retrieve config settings ConfigManager::begin(); @@ -145,8 +145,8 @@ void SmartFuseBoxApp::setup(RemoteSensor** remoteSensors, uint8_t remoteSensorCo DateTimeManager::begin(config->rtc); - // Build remote sensors from RemoteSensorsConfig (populated by ConfigManager::load()). - // Sensors are created dynamically here; ownership stays with SmartFuseBoxApp (_remoteSensors). + // Build remote sensors from RemoteSensorsConfig (populated by ConfigManager::load()). + // Sensors are created dynamically here; ownership stays with PowerControlHubApp (_remoteSensors). // Any sensors passed in by the caller are ignored when config has entries. if (config->remoteSensors.count > 0) { @@ -193,7 +193,7 @@ void SmartFuseBoxApp::setup(RemoteSensor** remoteSensors, uint8_t remoteSensorCo // Build local sensors from SensorsConfig (populated by ConfigManager::load() above). - // SensorFactory allocates each enabled entry once; ownership stays with SmartFuseBoxApp. + // SensorFactory allocates each enabled entry once; ownership stays with PowerControlHubApp. { SensorFactoryContext ctx; ctx.messageBus = &_messageBus; @@ -355,7 +355,7 @@ void SmartFuseBoxApp::setup(RemoteSensor** remoteSensors, uint8_t remoteSensorCo _scheduleController.begin(); } -void SmartFuseBoxApp::loop() +void PowerControlHubApp::loop() { uint64_t now = SystemFunctions::millis64(); @@ -441,7 +441,7 @@ void SmartFuseBoxApp::loop() delay(DefaultDelay); } -void SmartFuseBoxApp::configureWifiSupport(Config* config) +void PowerControlHubApp::configureWifiSupport(Config* config) { // network command handlers INetworkCommandHandler* networkHandlers[] = { &_relayNetworkHandler, &_soundNetworkHandler, &_warningNetworkHandler, @@ -473,13 +473,13 @@ void SmartFuseBoxApp::configureWifiSupport(Config* config) #endif } -void SmartFuseBoxApp::configureBluetoothSupport(Config* config) +void PowerControlHubApp::configureBluetoothSupport(Config* config) { _bluetoothController.applyConfig(config); } #if defined(CARD_CONFIG_LOADER) -void SmartFuseBoxApp::onSdCardReadyCallback(bool isNewCard) +void PowerControlHubApp::onSdCardReadyCallback(bool isNewCard) { if (_instance) { diff --git a/SmartFuseBox/SmartFuseBoxApp.h b/PowerControlHub/PowerControlHubApp.h similarity index 96% rename from SmartFuseBox/SmartFuseBoxApp.h rename to PowerControlHub/PowerControlHubApp.h index 555f70f..495f2e6 100644 --- a/SmartFuseBox/SmartFuseBoxApp.h +++ b/PowerControlHub/PowerControlHubApp.h @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify @@ -24,7 +24,7 @@ #include #include -#include "SmartFuseBoxConstants.h" +#include "PowerControlHubConstants.h" #include "MessageBus.h" #include "RelayController.h" #include "SoundController.h" @@ -91,7 +91,7 @@ #include "RemoteSensor.h" #include "SensorFactory.h" -class SmartFuseBoxApp +class PowerControlHubApp { private: SerialCommandManager* _commandMgrComputer; @@ -176,7 +176,7 @@ class SmartFuseBoxApp #if defined(CARD_CONFIG_LOADER) SdCardConfigLoader _sdCardConfigLoader; - static SmartFuseBoxApp* _instance; + static PowerControlHubApp* _instance; static void onSdCardReadyCallback(bool isNewCard); #endif @@ -184,7 +184,7 @@ class SmartFuseBoxApp void configureBluetoothSupport(Config* config); public: - explicit SmartFuseBoxApp(SerialCommandManager* commandMgrComputer); + explicit PowerControlHubApp(SerialCommandManager* commandMgrComputer); void setup(RemoteSensor** remoteSensors, uint8_t remoteSensorCount); void loop(); diff --git a/SmartFuseBox/SmartFuseBoxConstants.h b/PowerControlHub/PowerControlHubConstants.h similarity index 98% rename from SmartFuseBox/SmartFuseBoxConstants.h rename to PowerControlHub/PowerControlHubConstants.h index ee1847a..db9db85 100644 --- a/SmartFuseBox/SmartFuseBoxConstants.h +++ b/PowerControlHub/PowerControlHubConstants.h @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/Queue.h b/PowerControlHub/Queue.h similarity index 99% rename from SmartFuseBox/Queue.h rename to PowerControlHub/Queue.h index f51e25d..ecc23cb 100644 --- a/SmartFuseBox/Queue.h +++ b/PowerControlHub/Queue.h @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/R4WifiClient.h b/PowerControlHub/R4WifiClient.h similarity index 99% rename from SmartFuseBox/R4WifiClient.h rename to PowerControlHub/R4WifiClient.h index af7c672..f4abd50 100644 --- a/SmartFuseBox/R4WifiClient.h +++ b/PowerControlHub/R4WifiClient.h @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/R4WifiRadio.h b/PowerControlHub/R4WifiRadio.h similarity index 99% rename from SmartFuseBox/R4WifiRadio.h rename to PowerControlHub/R4WifiRadio.h index 1675ec1..6bea11e 100644 --- a/SmartFuseBox/R4WifiRadio.h +++ b/PowerControlHub/R4WifiRadio.h @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/RelayCommandHandler.cpp b/PowerControlHub/RelayCommandHandler.cpp similarity index 99% rename from SmartFuseBox/RelayCommandHandler.cpp rename to PowerControlHub/RelayCommandHandler.cpp index 33c991d..be15e1a 100644 --- a/SmartFuseBox/RelayCommandHandler.cpp +++ b/PowerControlHub/RelayCommandHandler.cpp @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify @@ -17,7 +17,7 @@ */ #include "RelayCommandHandler.h" #include "ConfigManager.h" -#include "SmartFuseBoxConstants.h" +#include "PowerControlHubConstants.h" #include "SystemFunctions.h" diff --git a/SmartFuseBox/RelayCommandHandler.h b/PowerControlHub/RelayCommandHandler.h similarity index 98% rename from SmartFuseBox/RelayCommandHandler.h rename to PowerControlHub/RelayCommandHandler.h index 8c08942..5fc1a94 100644 --- a/SmartFuseBox/RelayCommandHandler.h +++ b/PowerControlHub/RelayCommandHandler.h @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/RelayController.h b/PowerControlHub/RelayController.h similarity index 99% rename from SmartFuseBox/RelayController.h rename to PowerControlHub/RelayController.h index 55947e0..63c3646 100644 --- a/SmartFuseBox/RelayController.h +++ b/PowerControlHub/RelayController.h @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/RelayNetworkHandler.cpp b/PowerControlHub/RelayNetworkHandler.cpp similarity index 99% rename from SmartFuseBox/RelayNetworkHandler.cpp rename to PowerControlHub/RelayNetworkHandler.cpp index 0fd2ed1..6cb3d6b 100644 --- a/SmartFuseBox/RelayNetworkHandler.cpp +++ b/PowerControlHub/RelayNetworkHandler.cpp @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/RelayNetworkHandler.h b/PowerControlHub/RelayNetworkHandler.h similarity index 98% rename from SmartFuseBox/RelayNetworkHandler.h rename to PowerControlHub/RelayNetworkHandler.h index b4e38aa..e8cec42 100644 --- a/SmartFuseBox/RelayNetworkHandler.h +++ b/PowerControlHub/RelayNetworkHandler.h @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/RemoteSensor.h b/PowerControlHub/RemoteSensor.h similarity index 99% rename from SmartFuseBox/RemoteSensor.h rename to PowerControlHub/RemoteSensor.h index ab2a0f1..55bb952 100644 --- a/SmartFuseBox/RemoteSensor.h +++ b/PowerControlHub/RemoteSensor.h @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/RgbLedFade.h b/PowerControlHub/RgbLedFade.h similarity index 99% rename from SmartFuseBox/RgbLedFade.h rename to PowerControlHub/RgbLedFade.h index a40d53f..4f871e3 100644 --- a/SmartFuseBox/RgbLedFade.h +++ b/PowerControlHub/RgbLedFade.h @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/RtcDS1302Driver.cpp b/PowerControlHub/RtcDS1302Driver.cpp similarity index 99% rename from SmartFuseBox/RtcDS1302Driver.cpp rename to PowerControlHub/RtcDS1302Driver.cpp index e4047bc..1927d6c 100644 --- a/SmartFuseBox/RtcDS1302Driver.cpp +++ b/PowerControlHub/RtcDS1302Driver.cpp @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/RtcDS1302Driver.h b/PowerControlHub/RtcDS1302Driver.h similarity index 99% rename from SmartFuseBox/RtcDS1302Driver.h rename to PowerControlHub/RtcDS1302Driver.h index 50dec00..8d58445 100644 --- a/SmartFuseBox/RtcDS1302Driver.h +++ b/PowerControlHub/RtcDS1302Driver.h @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/SDCardConfigLoader.cpp b/PowerControlHub/SDCardConfigLoader.cpp similarity index 99% rename from SmartFuseBox/SDCardConfigLoader.cpp rename to PowerControlHub/SDCardConfigLoader.cpp index 65360a1..d102835 100644 --- a/SmartFuseBox/SDCardConfigLoader.cpp +++ b/PowerControlHub/SDCardConfigLoader.cpp @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify @@ -583,7 +583,7 @@ bool SdCardConfigLoader::exportConfigToSd() } // Write header comment - configFile->println("# SmartFuseBox Configuration"); + configFile->println("# PowerControlHub Configuration"); configFile->println("# Generated by C30 command"); configFile->println(); diff --git a/SmartFuseBox/SDCardConfigLoader.h b/PowerControlHub/SDCardConfigLoader.h similarity index 99% rename from SmartFuseBox/SDCardConfigLoader.h rename to PowerControlHub/SDCardConfigLoader.h index 7c4a5f8..179cc90 100644 --- a/SmartFuseBox/SDCardConfigLoader.h +++ b/PowerControlHub/SDCardConfigLoader.h @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/ScheduleController.cpp b/PowerControlHub/ScheduleController.cpp similarity index 99% rename from SmartFuseBox/ScheduleController.cpp rename to PowerControlHub/ScheduleController.cpp index 8f0787c..5cb21ff 100644 --- a/SmartFuseBox/ScheduleController.cpp +++ b/PowerControlHub/ScheduleController.cpp @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/ScheduleController.h b/PowerControlHub/ScheduleController.h similarity index 99% rename from SmartFuseBox/ScheduleController.h rename to PowerControlHub/ScheduleController.h index f550d33..b01fab1 100644 --- a/SmartFuseBox/ScheduleController.h +++ b/PowerControlHub/ScheduleController.h @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/SchedulerCommandHandler.cpp b/PowerControlHub/SchedulerCommandHandler.cpp similarity index 99% rename from SmartFuseBox/SchedulerCommandHandler.cpp rename to PowerControlHub/SchedulerCommandHandler.cpp index f438fc9..2965fd1 100644 --- a/SmartFuseBox/SchedulerCommandHandler.cpp +++ b/PowerControlHub/SchedulerCommandHandler.cpp @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/SchedulerCommandHandler.h b/PowerControlHub/SchedulerCommandHandler.h similarity index 99% rename from SmartFuseBox/SchedulerCommandHandler.h rename to PowerControlHub/SchedulerCommandHandler.h index f0d2a01..9a13c88 100644 --- a/SmartFuseBox/SchedulerCommandHandler.h +++ b/PowerControlHub/SchedulerCommandHandler.h @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/SchedulerNetworkHandler.cpp b/PowerControlHub/SchedulerNetworkHandler.cpp similarity index 99% rename from SmartFuseBox/SchedulerNetworkHandler.cpp rename to PowerControlHub/SchedulerNetworkHandler.cpp index c11422d..4cdce7a 100644 --- a/SmartFuseBox/SchedulerNetworkHandler.cpp +++ b/PowerControlHub/SchedulerNetworkHandler.cpp @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/SchedulerNetworkHandler.h b/PowerControlHub/SchedulerNetworkHandler.h similarity index 98% rename from SmartFuseBox/SchedulerNetworkHandler.h rename to PowerControlHub/SchedulerNetworkHandler.h index b7339b1..7e952da 100644 --- a/SmartFuseBox/SchedulerNetworkHandler.h +++ b/PowerControlHub/SchedulerNetworkHandler.h @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/ScreenDemoHandler.h b/PowerControlHub/ScreenDemoHandler.h similarity index 100% rename from SmartFuseBox/ScreenDemoHandler.h rename to PowerControlHub/ScreenDemoHandler.h diff --git a/SmartFuseBox/SdCardLogger.cpp b/PowerControlHub/SdCardLogger.cpp similarity index 99% rename from SmartFuseBox/SdCardLogger.cpp rename to PowerControlHub/SdCardLogger.cpp index 118befd..7a2ad22 100644 --- a/SmartFuseBox/SdCardLogger.cpp +++ b/PowerControlHub/SdCardLogger.cpp @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ #include "SdCardLogger.h" #include "DateTimeManager.h" -#include "SmartFuseBoxConstants.h" +#include "PowerControlHubConstants.h" #include "MicroSdDriver.h" #include diff --git a/SmartFuseBox/SdCardLogger.h b/PowerControlHub/SdCardLogger.h similarity index 99% rename from SmartFuseBox/SdCardLogger.h rename to PowerControlHub/SdCardLogger.h index a0e0834..3a34968 100644 --- a/SmartFuseBox/SdCardLogger.h +++ b/PowerControlHub/SdCardLogger.h @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/SensorCommandHandler.cpp b/PowerControlHub/SensorCommandHandler.cpp similarity index 99% rename from SmartFuseBox/SensorCommandHandler.cpp rename to PowerControlHub/SensorCommandHandler.cpp index 6709e7f..4630926 100644 --- a/SmartFuseBox/SensorCommandHandler.cpp +++ b/PowerControlHub/SensorCommandHandler.cpp @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/SensorCommandHandler.h b/PowerControlHub/SensorCommandHandler.h similarity index 99% rename from SmartFuseBox/SensorCommandHandler.h rename to PowerControlHub/SensorCommandHandler.h index 7ee8f91..290ee92 100644 --- a/SmartFuseBox/SensorCommandHandler.h +++ b/PowerControlHub/SensorCommandHandler.h @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/SensorConfigCommandHandler.h b/PowerControlHub/SensorConfigCommandHandler.h similarity index 99% rename from SmartFuseBox/SensorConfigCommandHandler.h rename to PowerControlHub/SensorConfigCommandHandler.h index 4335e6e..14d18bc 100644 --- a/SmartFuseBox/SensorConfigCommandHandler.h +++ b/PowerControlHub/SensorConfigCommandHandler.h @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/SensorController.h b/PowerControlHub/SensorController.h similarity index 98% rename from SmartFuseBox/SensorController.h rename to PowerControlHub/SensorController.h index ab321fa..ea34794 100644 --- a/SmartFuseBox/SensorController.h +++ b/PowerControlHub/SensorController.h @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/SensorDataRecord.h b/PowerControlHub/SensorDataRecord.h similarity index 98% rename from SmartFuseBox/SensorDataRecord.h rename to PowerControlHub/SensorDataRecord.h index 81fd026..29a8fa1 100644 --- a/SmartFuseBox/SensorDataRecord.h +++ b/PowerControlHub/SensorDataRecord.h @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/SensorFactory.h b/PowerControlHub/SensorFactory.h similarity index 98% rename from SmartFuseBox/SensorFactory.h rename to PowerControlHub/SensorFactory.h index 4ea3f1b..50e9266 100644 --- a/SmartFuseBox/SensorFactory.h +++ b/PowerControlHub/SensorFactory.h @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify @@ -39,7 +39,7 @@ #include "BinaryPresenceSensor.h" /** - * @brief Dependencies injected by SmartFuseBoxApp into SensorFactory::create(). + * @brief Dependencies injected by PowerControlHubApp into SensorFactory::create(). * * Grouping them into a struct keeps the create() signature manageable and means * adding a new shared dependency does not require touching every call-site. @@ -68,7 +68,7 @@ struct SensorFactoryContext * destroyed or recreated at runtime. A reboot is required for config changes to * take effect, which is intentional. * - * Usage (inside SmartFuseBoxApp::setup): + * Usage (inside PowerControlHubApp::setup): * @code * SensorFactoryContext ctx{ &_messageBus, ... }; * uint8_t factoryCount = 0; diff --git a/SmartFuseBox/SensorNetworkHandler.cpp b/PowerControlHub/SensorNetworkHandler.cpp similarity index 99% rename from SmartFuseBox/SensorNetworkHandler.cpp rename to PowerControlHub/SensorNetworkHandler.cpp index 0deb009..089141a 100644 --- a/SmartFuseBox/SensorNetworkHandler.cpp +++ b/PowerControlHub/SensorNetworkHandler.cpp @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/SensorNetworkHandler.h b/PowerControlHub/SensorNetworkHandler.h similarity index 98% rename from SmartFuseBox/SensorNetworkHandler.h rename to PowerControlHub/SensorNetworkHandler.h index bfb0023..b5958ed 100644 --- a/SmartFuseBox/SensorNetworkHandler.h +++ b/PowerControlHub/SensorNetworkHandler.h @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/SharedBaseCommandHandler.h b/PowerControlHub/SharedBaseCommandHandler.h similarity index 99% rename from SmartFuseBox/SharedBaseCommandHandler.h rename to PowerControlHub/SharedBaseCommandHandler.h index 3dea012..cb158a9 100644 --- a/SmartFuseBox/SharedBaseCommandHandler.h +++ b/PowerControlHub/SharedBaseCommandHandler.h @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/SoundCommandHandler.cpp b/PowerControlHub/SoundCommandHandler.cpp similarity index 99% rename from SmartFuseBox/SoundCommandHandler.cpp rename to PowerControlHub/SoundCommandHandler.cpp index a520ce0..96683de 100644 --- a/SmartFuseBox/SoundCommandHandler.cpp +++ b/PowerControlHub/SoundCommandHandler.cpp @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/SoundCommandHandler.h b/PowerControlHub/SoundCommandHandler.h similarity index 98% rename from SmartFuseBox/SoundCommandHandler.h rename to PowerControlHub/SoundCommandHandler.h index 3a3c2c1..d9e2af2 100644 --- a/SmartFuseBox/SoundCommandHandler.h +++ b/PowerControlHub/SoundCommandHandler.h @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/SoundController.cpp b/PowerControlHub/SoundController.cpp similarity index 99% rename from SmartFuseBox/SoundController.cpp rename to PowerControlHub/SoundController.cpp index 1d31d97..9ca2dba 100644 --- a/SmartFuseBox/SoundController.cpp +++ b/PowerControlHub/SoundController.cpp @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify @@ -16,7 +16,7 @@ * along with this program. If not, see . */ #include "SoundController.h" -#include "SmartFuseBoxConstants.h" +#include "PowerControlHubConstants.h" #include "SystemFunctions.h" // Define sound patterns according to COLREGS diff --git a/SmartFuseBox/SoundController.h b/PowerControlHub/SoundController.h similarity index 99% rename from SmartFuseBox/SoundController.h rename to PowerControlHub/SoundController.h index 394e21c..e4a25b4 100644 --- a/SmartFuseBox/SoundController.h +++ b/PowerControlHub/SoundController.h @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/SoundNetworkHandler.cpp b/PowerControlHub/SoundNetworkHandler.cpp similarity index 99% rename from SmartFuseBox/SoundNetworkHandler.cpp rename to PowerControlHub/SoundNetworkHandler.cpp index 2c8bd94..c02907f 100644 --- a/SmartFuseBox/SoundNetworkHandler.cpp +++ b/PowerControlHub/SoundNetworkHandler.cpp @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/SoundNetworkHandler.h b/PowerControlHub/SoundNetworkHandler.h similarity index 98% rename from SmartFuseBox/SoundNetworkHandler.h rename to PowerControlHub/SoundNetworkHandler.h index c9fff56..e307b0c 100644 --- a/SmartFuseBox/SoundNetworkHandler.h +++ b/PowerControlHub/SoundNetworkHandler.h @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/SunCalculator.cpp b/PowerControlHub/SunCalculator.cpp similarity index 99% rename from SmartFuseBox/SunCalculator.cpp rename to PowerControlHub/SunCalculator.cpp index 8053ab9..48328ac 100644 --- a/SmartFuseBox/SunCalculator.cpp +++ b/PowerControlHub/SunCalculator.cpp @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/SunCalculator.h b/PowerControlHub/SunCalculator.h similarity index 98% rename from SmartFuseBox/SunCalculator.h rename to PowerControlHub/SunCalculator.h index da24e71..fb91f4f 100644 --- a/SmartFuseBox/SunCalculator.h +++ b/PowerControlHub/SunCalculator.h @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/SystemCommandHandler.cpp b/PowerControlHub/SystemCommandHandler.cpp similarity index 99% rename from SmartFuseBox/SystemCommandHandler.cpp rename to PowerControlHub/SystemCommandHandler.cpp index ab81e6c..ee05eed 100644 --- a/SmartFuseBox/SystemCommandHandler.cpp +++ b/PowerControlHub/SystemCommandHandler.cpp @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/SystemCommandHandler.h b/PowerControlHub/SystemCommandHandler.h similarity index 99% rename from SmartFuseBox/SystemCommandHandler.h rename to PowerControlHub/SystemCommandHandler.h index 7ff765e..ebf8317 100644 --- a/SmartFuseBox/SystemCommandHandler.h +++ b/PowerControlHub/SystemCommandHandler.h @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/SystemCpuMonitor.cpp b/PowerControlHub/SystemCpuMonitor.cpp similarity index 99% rename from SmartFuseBox/SystemCpuMonitor.cpp rename to PowerControlHub/SystemCpuMonitor.cpp index af417ce..cc2b8a8 100644 --- a/SmartFuseBox/SystemCpuMonitor.cpp +++ b/PowerControlHub/SystemCpuMonitor.cpp @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/SystemCpuMonitor.h b/PowerControlHub/SystemCpuMonitor.h similarity index 98% rename from SmartFuseBox/SystemCpuMonitor.h rename to PowerControlHub/SystemCpuMonitor.h index 4da0c05..f54599f 100644 --- a/SmartFuseBox/SystemCpuMonitor.h +++ b/PowerControlHub/SystemCpuMonitor.h @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/SystemDefinitions.h b/PowerControlHub/SystemDefinitions.h similarity index 99% rename from SmartFuseBox/SystemDefinitions.h rename to PowerControlHub/SystemDefinitions.h index b3c7a55..a46cfd7 100644 --- a/SmartFuseBox/SystemDefinitions.h +++ b/PowerControlHub/SystemDefinitions.h @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/SystemFunctions.cpp b/PowerControlHub/SystemFunctions.cpp similarity index 99% rename from SmartFuseBox/SystemFunctions.cpp rename to PowerControlHub/SystemFunctions.cpp index c558aba..4b59f2e 100644 --- a/SmartFuseBox/SystemFunctions.cpp +++ b/PowerControlHub/SystemFunctions.cpp @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/SystemFunctions.h b/PowerControlHub/SystemFunctions.h similarity index 99% rename from SmartFuseBox/SystemFunctions.h rename to PowerControlHub/SystemFunctions.h index 499cb81..0da3865 100644 --- a/SmartFuseBox/SystemFunctions.h +++ b/PowerControlHub/SystemFunctions.h @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/SystemNetworkHandler.cpp b/PowerControlHub/SystemNetworkHandler.cpp similarity index 99% rename from SmartFuseBox/SystemNetworkHandler.cpp rename to PowerControlHub/SystemNetworkHandler.cpp index 45195ed..269d290 100644 --- a/SmartFuseBox/SystemNetworkHandler.cpp +++ b/PowerControlHub/SystemNetworkHandler.cpp @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/SystemNetworkHandler.h b/PowerControlHub/SystemNetworkHandler.h similarity index 98% rename from SmartFuseBox/SystemNetworkHandler.h rename to PowerControlHub/SystemNetworkHandler.h index 59d612a..ccf309a 100644 --- a/SmartFuseBox/SystemNetworkHandler.h +++ b/PowerControlHub/SystemNetworkHandler.h @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/SystemSensorHandler.h b/PowerControlHub/SystemSensorHandler.h similarity index 99% rename from SmartFuseBox/SystemSensorHandler.h rename to PowerControlHub/SystemSensorHandler.h index 9863a0b..f713c16 100644 --- a/SmartFuseBox/SystemSensorHandler.h +++ b/PowerControlHub/SystemSensorHandler.h @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/ToneManager.cpp b/PowerControlHub/ToneManager.cpp similarity index 99% rename from SmartFuseBox/ToneManager.cpp rename to PowerControlHub/ToneManager.cpp index 2157063..8195bfa 100644 --- a/SmartFuseBox/ToneManager.cpp +++ b/PowerControlHub/ToneManager.cpp @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/ToneManager.h b/PowerControlHub/ToneManager.h similarity index 99% rename from SmartFuseBox/ToneManager.h rename to PowerControlHub/ToneManager.h index d074837..3d0af3c 100644 --- a/SmartFuseBox/ToneManager.h +++ b/PowerControlHub/ToneManager.h @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/WarningCommandHandler.cpp b/PowerControlHub/WarningCommandHandler.cpp similarity index 99% rename from SmartFuseBox/WarningCommandHandler.cpp rename to PowerControlHub/WarningCommandHandler.cpp index f3943b6..391b78c 100644 --- a/SmartFuseBox/WarningCommandHandler.cpp +++ b/PowerControlHub/WarningCommandHandler.cpp @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/WarningCommandHandler.h b/PowerControlHub/WarningCommandHandler.h similarity index 98% rename from SmartFuseBox/WarningCommandHandler.h rename to PowerControlHub/WarningCommandHandler.h index b9752c3..23f5bff 100644 --- a/SmartFuseBox/WarningCommandHandler.h +++ b/PowerControlHub/WarningCommandHandler.h @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/WarningManager.cpp b/PowerControlHub/WarningManager.cpp similarity index 99% rename from SmartFuseBox/WarningManager.cpp rename to PowerControlHub/WarningManager.cpp index 60cc7b9..5e707e5 100644 --- a/SmartFuseBox/WarningManager.cpp +++ b/PowerControlHub/WarningManager.cpp @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/WarningManager.h b/PowerControlHub/WarningManager.h similarity index 99% rename from SmartFuseBox/WarningManager.h rename to PowerControlHub/WarningManager.h index 7a85a75..4e3d537 100644 --- a/SmartFuseBox/WarningManager.h +++ b/PowerControlHub/WarningManager.h @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/WarningNetworkHandler.cpp b/PowerControlHub/WarningNetworkHandler.cpp similarity index 99% rename from SmartFuseBox/WarningNetworkHandler.cpp rename to PowerControlHub/WarningNetworkHandler.cpp index a786eee..8d2c730 100644 --- a/SmartFuseBox/WarningNetworkHandler.cpp +++ b/PowerControlHub/WarningNetworkHandler.cpp @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/WarningNetworkHandler.h b/PowerControlHub/WarningNetworkHandler.h similarity index 98% rename from SmartFuseBox/WarningNetworkHandler.h rename to PowerControlHub/WarningNetworkHandler.h index ea3c1de..4e9b514 100644 --- a/SmartFuseBox/WarningNetworkHandler.h +++ b/PowerControlHub/WarningNetworkHandler.h @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/WarningType.h b/PowerControlHub/WarningType.h similarity index 99% rename from SmartFuseBox/WarningType.h rename to PowerControlHub/WarningType.h index 44e314c..c341935 100644 --- a/SmartFuseBox/WarningType.h +++ b/PowerControlHub/WarningType.h @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/WaterSensorHandler.h b/PowerControlHub/WaterSensorHandler.h similarity index 98% rename from SmartFuseBox/WaterSensorHandler.h rename to PowerControlHub/WaterSensorHandler.h index 58fb32d..dee9815 100644 --- a/SmartFuseBox/WaterSensorHandler.h +++ b/PowerControlHub/WaterSensorHandler.h @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify @@ -19,7 +19,7 @@ #include "Local.h" #include "Queue.h" -#include "SmartFuseBoxConstants.h" +#include "PowerControlHubConstants.h" #include "WarningType.h" #include "LoggingSupport.h" #include "JsonVisitor.h" diff --git a/SmartFuseBox/WebIndexNetworkHandler.h b/PowerControlHub/WebIndexNetworkHandler.h similarity index 99% rename from SmartFuseBox/WebIndexNetworkHandler.h rename to PowerControlHub/WebIndexNetworkHandler.h index 84ad642..c88917c 100644 --- a/SmartFuseBox/WebIndexNetworkHandler.h +++ b/PowerControlHub/WebIndexNetworkHandler.h @@ -1,6 +1,6 @@ #pragma once /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2026 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/WifiCommandBridge.cpp b/PowerControlHub/WifiCommandBridge.cpp similarity index 99% rename from SmartFuseBox/WifiCommandBridge.cpp rename to PowerControlHub/WifiCommandBridge.cpp index f55844e..5d6a0cf 100644 --- a/SmartFuseBox/WifiCommandBridge.cpp +++ b/PowerControlHub/WifiCommandBridge.cpp @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/WifiCommandBridge.h b/PowerControlHub/WifiCommandBridge.h similarity index 99% rename from SmartFuseBox/WifiCommandBridge.h rename to PowerControlHub/WifiCommandBridge.h index ae08a9f..207d2c3 100644 --- a/SmartFuseBox/WifiCommandBridge.h +++ b/PowerControlHub/WifiCommandBridge.h @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/WifiController.h b/PowerControlHub/WifiController.h similarity index 99% rename from SmartFuseBox/WifiController.h rename to PowerControlHub/WifiController.h index 3609b38..5060d0d 100644 --- a/SmartFuseBox/WifiController.h +++ b/PowerControlHub/WifiController.h @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/WifiRadioBridge.h b/PowerControlHub/WifiRadioBridge.h similarity index 98% rename from SmartFuseBox/WifiRadioBridge.h rename to PowerControlHub/WifiRadioBridge.h index fc375c8..8b20f76 100644 --- a/SmartFuseBox/WifiRadioBridge.h +++ b/PowerControlHub/WifiRadioBridge.h @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/SmartFuseBox/WifiServer.cpp b/PowerControlHub/WifiServer.cpp similarity index 99% rename from SmartFuseBox/WifiServer.cpp rename to PowerControlHub/WifiServer.cpp index 6b88bf0..a4c936a 100644 --- a/SmartFuseBox/WifiServer.cpp +++ b/PowerControlHub/WifiServer.cpp @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify @@ -517,8 +517,8 @@ void WifiServer::processClientRequest(uint8_t index) userAgent++; } - // Check if User-Agent matches "SmartFuseBox/1.0" - if (strncmp(userAgent, "SmartFuseBox/1.0", 16) != 0) + // Check if User-Agent matches "PowerControlHub/1.0" + if (strncmp(userAgent, "PowerControlHub/1.0", 16) != 0) { // Not authorized for persistent connection isPersistent = false; diff --git a/SmartFuseBox/WifiServer.h b/PowerControlHub/WifiServer.h similarity index 99% rename from SmartFuseBox/WifiServer.h rename to PowerControlHub/WifiServer.h index 6af4cb8..d0904d1 100644 --- a/SmartFuseBox/WifiServer.h +++ b/PowerControlHub/WifiServer.h @@ -1,5 +1,5 @@ /* - * SmartFuseBox + * PowerControlHub * Copyright (C) 2025 Simon Carter (s1cart3r@gmail.com) * * This program is free software: you can redistribute it and/or modify diff --git a/PowerControlHubSync/.gitignore b/PowerControlHubSync/.gitignore new file mode 100644 index 0000000..ce89292 --- /dev/null +++ b/PowerControlHubSync/.gitignore @@ -0,0 +1,418 @@ +## Ignore Visual Studio temporary files, build results, and +## files generated by popular Visual Studio add-ons. +## +## Get latest from https://github.com/github/gitignore/blob/main/VisualStudio.gitignore + +# User-specific files +*.rsuser +*.suo +*.user +*.userosscache +*.sln.docstates +*.env + +# User-specific files (MonoDevelop/Xamarin Studio) +*.userprefs + +# Mono auto generated files +mono_crash.* + +# Build results +[Dd]ebug/ +[Dd]ebugPublic/ +[Rr]elease/ +[Rr]eleases/ +x64/ +x86/ +[Ww][Ii][Nn]32/ +[Aa][Rr][Mm]/ +[Aa][Rr][Mm]64/ +[Aa][Rr][Mm]64[Ee][Cc]/ +bld/ +[Oo]bj/ +[Oo]ut/ +[Ll]og/ +[Ll]ogs/ + +# Build results on 'Bin' directories +**/[Bb]in/* +# Uncomment if you have tasks that rely on *.refresh files to move binaries +# (https://github.com/github/gitignore/pull/3736) +#!**/[Bb]in/*.refresh + +# Visual Studio 2015/2017 cache/options directory +.vs/ +# Uncomment if you have tasks that create the project's static files in wwwroot +#wwwroot/ + +# Visual Studio 2017 auto generated files +Generated\ Files/ + +# MSTest test Results +[Tt]est[Rr]esult*/ +[Bb]uild[Ll]og.* +*.trx + +# NUnit +*.VisualState.xml +TestResult.xml +nunit-*.xml + +# Approval Tests result files +*.received.* + +# Build Results of an ATL Project +[Dd]ebugPS/ +[Rr]eleasePS/ +dlldata.c + +# Benchmark Results +BenchmarkDotNet.Artifacts/ + +# .NET Core +project.lock.json +project.fragment.lock.json +artifacts/ + +# ASP.NET Scaffolding +ScaffoldingReadMe.txt + +# StyleCop +StyleCopReport.xml + +# Files built by Visual Studio +*_i.c +*_p.c +*_h.h +*.ilk +*.meta +*.obj +*.idb +*.iobj +*.pch +*.pdb +*.ipdb +*.pgc +*.pgd +*.rsp +# but not Directory.Build.rsp, as it configures directory-level build defaults +!Directory.Build.rsp +*.sbr +*.tlb +*.tli +*.tlh +*.tmp +*.tmp_proj +*_wpftmp.csproj +*.log +*.tlog +*.vspscc +*.vssscc +.builds +*.pidb +*.svclog +*.scc + +# Chutzpah Test files +_Chutzpah* + +# Visual C++ cache files +ipch/ +*.aps +*.ncb +*.opendb +*.opensdf +*.sdf +*.cachefile +*.VC.db +*.VC.VC.opendb + +# Visual Studio profiler +*.psess +*.vsp +*.vspx +*.sap + +# Visual Studio Trace Files +*.e2e + +# TFS 2012 Local Workspace +$tf/ + +# Guidance Automation Toolkit +*.gpState + +# ReSharper is a .NET coding add-in +_ReSharper*/ +*.[Rr]e[Ss]harper +*.DotSettings.user + +# TeamCity is a build add-in +_TeamCity* + +# DotCover is a Code Coverage Tool +*.dotCover + +# AxoCover is a Code Coverage Tool +.axoCover/* +!.axoCover/settings.json + +# Coverlet is a free, cross platform Code Coverage Tool +coverage*.json +coverage*.xml +coverage*.info + +# Visual Studio code coverage results +*.coverage +*.coveragexml + +# NCrunch +_NCrunch_* +.NCrunch_* +.*crunch*.local.xml +nCrunchTemp_* + +# MightyMoose +*.mm.* +AutoTest.Net/ + +# Web workbench (sass) +.sass-cache/ + +# Installshield output folder +[Ee]xpress/ + +# DocProject is a documentation generator add-in +DocProject/buildhelp/ +DocProject/Help/*.HxT +DocProject/Help/*.HxC +DocProject/Help/*.hhc +DocProject/Help/*.hhk +DocProject/Help/*.hhp +DocProject/Help/Html2 +DocProject/Help/html + +# Click-Once directory +publish/ + +# Publish Web Output +*.[Pp]ublish.xml +*.azurePubxml +# Note: Comment the next line if you want to checkin your web deploy settings, +# but database connection strings (with potential passwords) will be unencrypted +*.pubxml +*.publishproj + +# Microsoft Azure Web App publish settings. Comment the next line if you want to +# checkin your Azure Web App publish settings, but sensitive information contained +# in these scripts will be unencrypted +PublishScripts/ + +# NuGet Packages +*.nupkg +# NuGet Symbol Packages +*.snupkg +# The packages folder can be ignored because of Package Restore +**/[Pp]ackages/* +# except build/, which is used as an MSBuild target. +!**/[Pp]ackages/build/ +# Uncomment if necessary however generally it will be regenerated when needed +#!**/[Pp]ackages/repositories.config +# NuGet v3's project.json files produces more ignorable files +*.nuget.props +*.nuget.targets + +# Microsoft Azure Build Output +csx/ +*.build.csdef + +# Microsoft Azure Emulator +ecf/ +rcf/ + +# Windows Store app package directories and files +AppPackages/ +BundleArtifacts/ +Package.StoreAssociation.xml +_pkginfo.txt +*.appx +*.appxbundle +*.appxupload + +# Visual Studio cache files +# files ending in .cache can be ignored +*.[Cc]ache +# but keep track of directories ending in .cache +!?*.[Cc]ache/ + +# Others +ClientBin/ +~$* +*~ +*.dbmdl +*.dbproj.schemaview +*.jfm +*.pfx +*.publishsettings +orleans.codegen.cs + +# Including strong name files can present a security risk +# (https://github.com/github/gitignore/pull/2483#issue-259490424) +#*.snk + +# Since there are multiple workflows, uncomment next line to ignore bower_components +# (https://github.com/github/gitignore/pull/1529#issuecomment-104372622) +#bower_components/ + +# RIA/Silverlight projects +Generated_Code/ + +# Backup & report files from converting an old project file +# to a newer Visual Studio version. Backup files are not needed, +# because we have git ;-) +_UpgradeReport_Files/ +Backup*/ +UpgradeLog*.XML +UpgradeLog*.htm +ServiceFabricBackup/ +*.rptproj.bak + +# SQL Server files +*.mdf +*.ldf +*.ndf + +# Business Intelligence projects +*.rdl.data +*.bim.layout +*.bim_*.settings +*.rptproj.rsuser +*- [Bb]ackup.rdl +*- [Bb]ackup ([0-9]).rdl +*- [Bb]ackup ([0-9][0-9]).rdl + +# Microsoft Fakes +FakesAssemblies/ + +# GhostDoc plugin setting file +*.GhostDoc.xml + +# Node.js Tools for Visual Studio +.ntvs_analysis.dat +node_modules/ + +# Visual Studio 6 build log +*.plg + +# Visual Studio 6 workspace options file +*.opt + +# Visual Studio 6 auto-generated workspace file (contains which files were open etc.) +*.vbw + +# Visual Studio 6 auto-generated project file (contains which files were open etc.) +*.vbp + +# Visual Studio 6 workspace and project file (working project files containing files to include in project) +*.dsw +*.dsp + +# Visual Studio 6 technical files +*.ncb +*.aps + +# Visual Studio LightSwitch build output +**/*.HTMLClient/GeneratedArtifacts +**/*.DesktopClient/GeneratedArtifacts +**/*.DesktopClient/ModelManifest.xml +**/*.Server/GeneratedArtifacts +**/*.Server/ModelManifest.xml +_Pvt_Extensions + +# Paket dependency manager +**/.paket/paket.exe +paket-files/ + +# FAKE - F# Make +**/.fake/ + +# CodeRush personal settings +**/.cr/personal + +# Python Tools for Visual Studio (PTVS) +**/__pycache__/ +*.pyc + +# Cake - Uncomment if you are using it +#tools/** +#!tools/packages.config + +# Tabs Studio +*.tss + +# Telerik's JustMock configuration file +*.jmconfig + +# BizTalk build output +*.btp.cs +*.btm.cs +*.odx.cs +*.xsd.cs + +# OpenCover UI analysis results +OpenCover/ + +# Azure Stream Analytics local run output +ASALocalRun/ + +# MSBuild Binary and Structured Log +*.binlog +MSBuild_Logs/ + +# AWS SAM Build and Temporary Artifacts folder +.aws-sam + +# NVidia Nsight GPU debugger configuration file +*.nvuser + +# MFractors (Xamarin productivity tool) working folder +**/.mfractor/ + +# Local History for Visual Studio +**/.localhistory/ + +# Visual Studio History (VSHistory) files +.vshistory/ + +# BeatPulse healthcheck temp database +healthchecksdb + +# Backup folder for Package Reference Convert tool in Visual Studio 2017 +MigrationBackup/ + +# Ionide (cross platform F# VS Code tools) working folder +**/.ionide/ + +# Fody - auto-generated XML schema +FodyWeavers.xsd + +# VS Code files for those working on multiple tools +.vscode/* +!.vscode/settings.json +!.vscode/tasks.json +!.vscode/launch.json +!.vscode/extensions.json +!.vscode/*.code-snippets + +# Local History for Visual Studio Code +.history/ + +# Built Visual Studio Code Extensions +*.vsix + +# Windows Installer files from build outputs +*.cab +*.msi +*.msix +*.msm +*.msp diff --git a/PowerControlHubSync/LICENSE b/PowerControlHubSync/LICENSE new file mode 100644 index 0000000..f288702 --- /dev/null +++ b/PowerControlHubSync/LICENSE @@ -0,0 +1,674 @@ + GNU GENERAL PUBLIC LICENSE + Version 3, 29 June 2007 + + Copyright (C) 2007 Free Software Foundation, Inc. + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The GNU General Public License is a free, copyleft license for +software and other kinds of works. + + The licenses for most software and other practical works are designed +to take away your freedom to share and change the works. By contrast, +the GNU General Public License is intended to guarantee your freedom to +share and change all versions of a program--to make sure it remains free +software for all its users. We, the Free Software Foundation, use the +GNU General Public License for most of our software; it applies also to +any other work released this way by its authors. You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +them if you wish), that you receive source code or can get it if you +want it, that you can change the software or use pieces of it in new +free programs, and that you know you can do these things. + + To protect your rights, we need to prevent others from denying you +these rights or asking you to surrender the rights. Therefore, you have +certain responsibilities if you distribute copies of the software, or if +you modify it: responsibilities to respect the freedom of others. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must pass on to the recipients the same +freedoms that you received. You must make sure that they, too, receive +or can get the source code. And you must show them these terms so they +know their rights. + + Developers that use the GNU GPL protect your rights with two steps: +(1) assert copyright on the software, and (2) offer you this License +giving you legal permission to copy, distribute and/or modify it. + + For the developers' and authors' protection, the GPL clearly explains +that there is no warranty for this free software. For both users' and +authors' sake, the GPL requires that modified versions be marked as +changed, so that their problems will not be attributed erroneously to +authors of previous versions. + + Some devices are designed to deny users access to install or run +modified versions of the software inside them, although the manufacturer +can do so. This is fundamentally incompatible with the aim of +protecting users' freedom to change the software. The systematic +pattern of such abuse occurs in the area of products for individuals to +use, which is precisely where it is most unacceptable. Therefore, we +have designed this version of the GPL to prohibit the practice for those +products. If such problems arise substantially in other domains, we +stand ready to extend this provision to those domains in future versions +of the GPL, as needed to protect the freedom of users. + + Finally, every program is threatened constantly by software patents. +States should not allow patents to restrict development and use of +software on general-purpose computers, but in those that do, we wish to +avoid the special danger that patents applied to a free program could +make it effectively proprietary. To prevent this, the GPL assures that +patents cannot be used to render the program non-free. + + The precise terms and conditions for copying, distribution and +modification follow. + + TERMS AND CONDITIONS + + 0. Definitions. + + "This License" refers to version 3 of the GNU General Public License. + + "Copyright" also means copyright-like laws that apply to other kinds of +works, such as semiconductor masks. + + "The Program" refers to any copyrightable work licensed under this +License. Each licensee is addressed as "you". "Licensees" and +"recipients" may be individuals or organizations. + + To "modify" a work means to copy from or adapt all or part of the work +in a fashion requiring copyright permission, other than the making of an +exact copy. The resulting work is called a "modified version" of the +earlier work or a work "based on" the earlier work. + + A "covered work" means either the unmodified Program or a work based +on the Program. + + To "propagate" a work means to do anything with it that, without +permission, would make you directly or secondarily liable for +infringement under applicable copyright law, except executing it on a +computer or modifying a private copy. Propagation includes copying, +distribution (with or without modification), making available to the +public, and in some countries other activities as well. + + To "convey" a work means any kind of propagation that enables other +parties to make or receive copies. Mere interaction with a user through +a computer network, with no transfer of a copy, is not conveying. + + An interactive user interface displays "Appropriate Legal Notices" +to the extent that it includes a convenient and prominently visible +feature that (1) displays an appropriate copyright notice, and (2) +tells the user that there is no warranty for the work (except to the +extent that warranties are provided), that licensees may convey the +work under this License, and how to view a copy of this License. If +the interface presents a list of user commands or options, such as a +menu, a prominent item in the list meets this criterion. + + 1. Source Code. + + The "source code" for a work means the preferred form of the work +for making modifications to it. "Object code" means any non-source +form of a work. + + A "Standard Interface" means an interface that either is an official +standard defined by a recognized standards body, or, in the case of +interfaces specified for a particular programming language, one that +is widely used among developers working in that language. + + The "System Libraries" of an executable work include anything, other +than the work as a whole, that (a) is included in the normal form of +packaging a Major Component, but which is not part of that Major +Component, and (b) serves only to enable use of the work with that +Major Component, or to implement a Standard Interface for which an +implementation is available to the public in source code form. A +"Major Component", in this context, means a major essential component +(kernel, window system, and so on) of the specific operating system +(if any) on which the executable work runs, or a compiler used to +produce the work, or an object code interpreter used to run it. + + The "Corresponding Source" for a work in object code form means all +the source code needed to generate, install, and (for an executable +work) run the object code and to modify the work, including scripts to +control those activities. However, it does not include the work's +System Libraries, or general-purpose tools or generally available free +programs which are used unmodified in performing those activities but +which are not part of the work. For example, Corresponding Source +includes interface definition files associated with source files for +the work, and the source code for shared libraries and dynamically +linked subprograms that the work is specifically designed to require, +such as by intimate data communication or control flow between those +subprograms and other parts of the work. + + The Corresponding Source need not include anything that users +can regenerate automatically from other parts of the Corresponding +Source. + + The Corresponding Source for a work in source code form is that +same work. + + 2. Basic Permissions. + + All rights granted under this License are granted for the term of +copyright on the Program, and are irrevocable provided the stated +conditions are met. This License explicitly affirms your unlimited +permission to run the unmodified Program. The output from running a +covered work is covered by this License only if the output, given its +content, constitutes a covered work. This License acknowledges your +rights of fair use or other equivalent, as provided by copyright law. + + You may make, run and propagate covered works that you do not +convey, without conditions so long as your license otherwise remains +in force. You may convey covered works to others for the sole purpose +of having them make modifications exclusively for you, or provide you +with facilities for running those works, provided that you comply with +the terms of this License in conveying all material for which you do +not control copyright. Those thus making or running the covered works +for you must do so exclusively on your behalf, under your direction +and control, on terms that prohibit them from making any copies of +your copyrighted material outside their relationship with you. + + Conveying under any other circumstances is permitted solely under +the conditions stated below. Sublicensing is not allowed; section 10 +makes it unnecessary. + + 3. Protecting Users' Legal Rights From Anti-Circumvention Law. + + No covered work shall be deemed part of an effective technological +measure under any applicable law fulfilling obligations under article +11 of the WIPO copyright treaty adopted on 20 December 1996, or +similar laws prohibiting or restricting circumvention of such +measures. + + When you convey a covered work, you waive any legal power to forbid +circumvention of technological measures to the extent such circumvention +is effected by exercising rights under this License with respect to +the covered work, and you disclaim any intention to limit operation or +modification of the work as a means of enforcing, against the work's +users, your or third parties' legal rights to forbid circumvention of +technological measures. + + 4. Conveying Verbatim Copies. + + You may convey verbatim copies of the Program's source code as you +receive it, in any medium, provided that you conspicuously and +appropriately publish on each copy an appropriate copyright notice; +keep intact all notices stating that this License and any +non-permissive terms added in accord with section 7 apply to the code; +keep intact all notices of the absence of any warranty; and give all +recipients a copy of this License along with the Program. + + You may charge any price or no price for each copy that you convey, +and you may offer support or warranty protection for a fee. + + 5. Conveying Modified Source Versions. + + You may convey a work based on the Program, or the modifications to +produce it from the Program, in the form of source code under the +terms of section 4, provided that you also meet all of these conditions: + + a) The work must carry prominent notices stating that you modified + it, and giving a relevant date. + + b) The work must carry prominent notices stating that it is + released under this License and any conditions added under section + 7. This requirement modifies the requirement in section 4 to + "keep intact all notices". + + c) You must license the entire work, as a whole, under this + License to anyone who comes into possession of a copy. This + License will therefore apply, along with any applicable section 7 + additional terms, to the whole of the work, and all its parts, + regardless of how they are packaged. This License gives no + permission to license the work in any other way, but it does not + invalidate such permission if you have separately received it. + + d) If the work has interactive user interfaces, each must display + Appropriate Legal Notices; however, if the Program has interactive + interfaces that do not display Appropriate Legal Notices, your + work need not make them do so. + + A compilation of a covered work with other separate and independent +works, which are not by their nature extensions of the covered work, +and which are not combined with it such as to form a larger program, +in or on a volume of a storage or distribution medium, is called an +"aggregate" if the compilation and its resulting copyright are not +used to limit the access or legal rights of the compilation's users +beyond what the individual works permit. Inclusion of a covered work +in an aggregate does not cause this License to apply to the other +parts of the aggregate. + + 6. Conveying Non-Source Forms. + + You may convey a covered work in object code form under the terms +of sections 4 and 5, provided that you also convey the +machine-readable Corresponding Source under the terms of this License, +in one of these ways: + + a) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by the + Corresponding Source fixed on a durable physical medium + customarily used for software interchange. + + b) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by a + written offer, valid for at least three years and valid for as + long as you offer spare parts or customer support for that product + model, to give anyone who possesses the object code either (1) a + copy of the Corresponding Source for all the software in the + product that is covered by this License, on a durable physical + medium customarily used for software interchange, for a price no + more than your reasonable cost of physically performing this + conveying of source, or (2) access to copy the + Corresponding Source from a network server at no charge. + + c) Convey individual copies of the object code with a copy of the + written offer to provide the Corresponding Source. This + alternative is allowed only occasionally and noncommercially, and + only if you received the object code with such an offer, in accord + with subsection 6b. + + d) Convey the object code by offering access from a designated + place (gratis or for a charge), and offer equivalent access to the + Corresponding Source in the same way through the same place at no + further charge. You need not require recipients to copy the + Corresponding Source along with the object code. If the place to + copy the object code is a network server, the Corresponding Source + may be on a different server (operated by you or a third party) + that supports equivalent copying facilities, provided you maintain + clear directions next to the object code saying where to find the + Corresponding Source. Regardless of what server hosts the + Corresponding Source, you remain obligated to ensure that it is + available for as long as needed to satisfy these requirements. + + e) Convey the object code using peer-to-peer transmission, provided + you inform other peers where the object code and Corresponding + Source of the work are being offered to the general public at no + charge under subsection 6d. + + A separable portion of the object code, whose source code is excluded +from the Corresponding Source as a System Library, need not be +included in conveying the object code work. + + A "User Product" is either (1) a "consumer product", which means any +tangible personal property which is normally used for personal, family, +or household purposes, or (2) anything designed or sold for incorporation +into a dwelling. In determining whether a product is a consumer product, +doubtful cases shall be resolved in favor of coverage. For a particular +product received by a particular user, "normally used" refers to a +typical or common use of that class of product, regardless of the status +of the particular user or of the way in which the particular user +actually uses, or expects or is expected to use, the product. A product +is a consumer product regardless of whether the product has substantial +commercial, industrial or non-consumer uses, unless such uses represent +the only significant mode of use of the product. + + "Installation Information" for a User Product means any methods, +procedures, authorization keys, or other information required to install +and execute modified versions of a covered work in that User Product from +a modified version of its Corresponding Source. The information must +suffice to ensure that the continued functioning of the modified object +code is in no case prevented or interfered with solely because +modification has been made. + + If you convey an object code work under this section in, or with, or +specifically for use in, a User Product, and the conveying occurs as +part of a transaction in which the right of possession and use of the +User Product is transferred to the recipient in perpetuity or for a +fixed term (regardless of how the transaction is characterized), the +Corresponding Source conveyed under this section must be accompanied +by the Installation Information. But this requirement does not apply +if neither you nor any third party retains the ability to install +modified object code on the User Product (for example, the work has +been installed in ROM). + + The requirement to provide Installation Information does not include a +requirement to continue to provide support service, warranty, or updates +for a work that has been modified or installed by the recipient, or for +the User Product in which it has been modified or installed. Access to a +network may be denied when the modification itself materially and +adversely affects the operation of the network or violates the rules and +protocols for communication across the network. + + Corresponding Source conveyed, and Installation Information provided, +in accord with this section must be in a format that is publicly +documented (and with an implementation available to the public in +source code form), and must require no special password or key for +unpacking, reading or copying. + + 7. Additional Terms. + + "Additional permissions" are terms that supplement the terms of this +License by making exceptions from one or more of its conditions. +Additional permissions that are applicable to the entire Program shall +be treated as though they were included in this License, to the extent +that they are valid under applicable law. If additional permissions +apply only to part of the Program, that part may be used separately +under those permissions, but the entire Program remains governed by +this License without regard to the additional permissions. + + When you convey a copy of a covered work, you may at your option +remove any additional permissions from that copy, or from any part of +it. (Additional permissions may be written to require their own +removal in certain cases when you modify the work.) You may place +additional permissions on material, added by you to a covered work, +for which you have or can give appropriate copyright permission. + + Notwithstanding any other provision of this License, for material you +add to a covered work, you may (if authorized by the copyright holders of +that material) supplement the terms of this License with terms: + + a) Disclaiming warranty or limiting liability differently from the + terms of sections 15 and 16 of this License; or + + b) Requiring preservation of specified reasonable legal notices or + author attributions in that material or in the Appropriate Legal + Notices displayed by works containing it; or + + c) Prohibiting misrepresentation of the origin of that material, or + requiring that modified versions of such material be marked in + reasonable ways as different from the original version; or + + d) Limiting the use for publicity purposes of names of licensors or + authors of the material; or + + e) Declining to grant rights under trademark law for use of some + trade names, trademarks, or service marks; or + + f) Requiring indemnification of licensors and authors of that + material by anyone who conveys the material (or modified versions of + it) with contractual assumptions of liability to the recipient, for + any liability that these contractual assumptions directly impose on + those licensors and authors. + + All other non-permissive additional terms are considered "further +restrictions" within the meaning of section 10. If the Program as you +received it, or any part of it, contains a notice stating that it is +governed by this License along with a term that is a further +restriction, you may remove that term. If a license document contains +a further restriction but permits relicensing or conveying under this +License, you may add to a covered work material governed by the terms +of that license document, provided that the further restriction does +not survive such relicensing or conveying. + + If you add terms to a covered work in accord with this section, you +must place, in the relevant source files, a statement of the +additional terms that apply to those files, or a notice indicating +where to find the applicable terms. + + Additional terms, permissive or non-permissive, may be stated in the +form of a separately written license, or stated as exceptions; +the above requirements apply either way. + + 8. Termination. + + You may not propagate or modify a covered work except as expressly +provided under this License. Any attempt otherwise to propagate or +modify it is void, and will automatically terminate your rights under +this License (including any patent licenses granted under the third +paragraph of section 11). + + However, if you cease all violation of this License, then your +license from a particular copyright holder is reinstated (a) +provisionally, unless and until the copyright holder explicitly and +finally terminates your license, and (b) permanently, if the copyright +holder fails to notify you of the violation by some reasonable means +prior to 60 days after the cessation. + + Moreover, your license from a particular copyright holder is +reinstated permanently if the copyright holder notifies you of the +violation by some reasonable means, this is the first time you have +received notice of violation of this License (for any work) from that +copyright holder, and you cure the violation prior to 30 days after +your receipt of the notice. + + Termination of your rights under this section does not terminate the +licenses of parties who have received copies or rights from you under +this License. If your rights have been terminated and not permanently +reinstated, you do not qualify to receive new licenses for the same +material under section 10. + + 9. Acceptance Not Required for Having Copies. + + You are not required to accept this License in order to receive or +run a copy of the Program. Ancillary propagation of a covered work +occurring solely as a consequence of using peer-to-peer transmission +to receive a copy likewise does not require acceptance. However, +nothing other than this License grants you permission to propagate or +modify any covered work. These actions infringe copyright if you do +not accept this License. Therefore, by modifying or propagating a +covered work, you indicate your acceptance of this License to do so. + + 10. Automatic Licensing of Downstream Recipients. + + Each time you convey a covered work, the recipient automatically +receives a license from the original licensors, to run, modify and +propagate that work, subject to this License. You are not responsible +for enforcing compliance by third parties with this License. + + An "entity transaction" is a transaction transferring control of an +organization, or substantially all assets of one, or subdividing an +organization, or merging organizations. If propagation of a covered +work results from an entity transaction, each party to that +transaction who receives a copy of the work also receives whatever +licenses to the work the party's predecessor in interest had or could +give under the previous paragraph, plus a right to possession of the +Corresponding Source of the work from the predecessor in interest, if +the predecessor has it or can get it with reasonable efforts. + + You may not impose any further restrictions on the exercise of the +rights granted or affirmed under this License. For example, you may +not impose a license fee, royalty, or other charge for exercise of +rights granted under this License, and you may not initiate litigation +(including a cross-claim or counterclaim in a lawsuit) alleging that +any patent claim is infringed by making, using, selling, offering for +sale, or importing the Program or any portion of it. + + 11. Patents. + + A "contributor" is a copyright holder who authorizes use under this +License of the Program or a work on which the Program is based. The +work thus licensed is called the contributor's "contributor version". + + A contributor's "essential patent claims" are all patent claims +owned or controlled by the contributor, whether already acquired or +hereafter acquired, that would be infringed by some manner, permitted +by this License, of making, using, or selling its contributor version, +but do not include claims that would be infringed only as a +consequence of further modification of the contributor version. For +purposes of this definition, "control" includes the right to grant +patent sublicenses in a manner consistent with the requirements of +this License. + + Each contributor grants you a non-exclusive, worldwide, royalty-free +patent license under the contributor's essential patent claims, to +make, use, sell, offer for sale, import and otherwise run, modify and +propagate the contents of its contributor version. + + In the following three paragraphs, a "patent license" is any express +agreement or commitment, however denominated, not to enforce a patent +(such as an express permission to practice a patent or covenant not to +sue for patent infringement). To "grant" such a patent license to a +party means to make such an agreement or commitment not to enforce a +patent against the party. + + If you convey a covered work, knowingly relying on a patent license, +and the Corresponding Source of the work is not available for anyone +to copy, free of charge and under the terms of this License, through a +publicly available network server or other readily accessible means, +then you must either (1) cause the Corresponding Source to be so +available, or (2) arrange to deprive yourself of the benefit of the +patent license for this particular work, or (3) arrange, in a manner +consistent with the requirements of this License, to extend the patent +license to downstream recipients. "Knowingly relying" means you have +actual knowledge that, but for the patent license, your conveying the +covered work in a country, or your recipient's use of the covered work +in a country, would infringe one or more identifiable patents in that +country that you have reason to believe are valid. + + If, pursuant to or in connection with a single transaction or +arrangement, you convey, or propagate by procuring conveyance of, a +covered work, and grant a patent license to some of the parties +receiving the covered work authorizing them to use, propagate, modify +or convey a specific copy of the covered work, then the patent license +you grant is automatically extended to all recipients of the covered +work and works based on it. + + A patent license is "discriminatory" if it does not include within +the scope of its coverage, prohibits the exercise of, or is +conditioned on the non-exercise of one or more of the rights that are +specifically granted under this License. You may not convey a covered +work if you are a party to an arrangement with a third party that is +in the business of distributing software, under which you make payment +to the third party based on the extent of your activity of conveying +the work, and under which the third party grants, to any of the +parties who would receive the covered work from you, a discriminatory +patent license (a) in connection with copies of the covered work +conveyed by you (or copies made from those copies), or (b) primarily +for and in connection with specific products or compilations that +contain the covered work, unless you entered into that arrangement, +or that patent license was granted, prior to 28 March 2007. + + Nothing in this License shall be construed as excluding or limiting +any implied license or other defenses to infringement that may +otherwise be available to you under applicable patent law. + + 12. No Surrender of Others' Freedom. + + If conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot convey a +covered work so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you may +not convey it at all. For example, if you agree to terms that obligate you +to collect a royalty for further conveying from those to whom you convey +the Program, the only way you could satisfy both those terms and this +License would be to refrain entirely from conveying the Program. + + 13. Use with the GNU Affero General Public License. + + Notwithstanding any other provision of this License, you have +permission to link or combine any covered work with a work licensed +under version 3 of the GNU Affero General Public License into a single +combined work, and to convey the resulting work. The terms of this +License will continue to apply to the part which is the covered work, +but the special requirements of the GNU Affero General Public License, +section 13, concerning interaction through a network will apply to the +combination as such. + + 14. Revised Versions of this License. + + The Free Software Foundation may publish revised and/or new versions of +the GNU General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + + Each version is given a distinguishing version number. If the +Program specifies that a certain numbered version of the GNU General +Public License "or any later version" applies to it, you have the +option of following the terms and conditions either of that numbered +version or of any later version published by the Free Software +Foundation. If the Program does not specify a version number of the +GNU General Public License, you may choose any version ever published +by the Free Software Foundation. + + If the Program specifies that a proxy can decide which future +versions of the GNU General Public License can be used, that proxy's +public statement of acceptance of a version permanently authorizes you +to choose that version for the Program. + + Later license versions may give you additional or different +permissions. However, no additional obligations are imposed on any +author or copyright holder as a result of your choosing to follow a +later version. + + 15. Disclaimer of Warranty. + + THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY +APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT +HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY +OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, +THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM +IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF +ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. Limitation of Liability. + + IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS +THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY +GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE +USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF +DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD +PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), +EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF +SUCH DAMAGES. + + 17. Interpretation of Sections 15 and 16. + + If the disclaimer of warranty and limitation of liability provided +above cannot be given local legal effect according to their terms, +reviewing courts shall apply local law that most closely approximates +an absolute waiver of all civil liability in connection with the +Program, unless a warranty or assumption of liability accompanies a +copy of the Program in return for a fee. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +state the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + 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 . + +Also add information on how to contact you by electronic and paper mail. + + If the program does terminal interaction, make it output a short +notice like this when it starts in an interactive mode: + + Copyright (C) + This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate +parts of the General Public License. Of course, your program's commands +might be different; for a GUI interface, you would use an "about box". + + You should also get your employer (if you work as a programmer) or school, +if any, to sign a "copyright disclaimer" for the program, if necessary. +For more information on this, and how to apply and follow the GNU GPL, see +. + + The GNU General Public License does not permit incorporating your program +into proprietary programs. If your program is a subroutine library, you +may consider it more useful to permit linking proprietary applications with +the library. If this is what you want to do, use the GNU Lesser General +Public License instead of this License. But first, please read +. diff --git a/PowerControlHubSync/README.md b/PowerControlHubSync/README.md new file mode 100644 index 0000000..ce9cc02 --- /dev/null +++ b/PowerControlHubSync/README.md @@ -0,0 +1,115 @@ +# SmartFuseSync + +A lightweight console utility for applying configuration updates to SmartFuseBox devices over a COM port serial connection. + +--- + +## Commands + +Run `SmartFuseSync -?` for a full list of available commands. + +### `Config Update` — Apply a configuration file to a device + +Reads a `.dat` configuration file and sends each non-blank line to the device one at a time, waiting for an `ACK` or `ERR` response before proceeding to the next command. + +| Option | Abbreviation | Required | Description | +|--------|-------------|----------|-------------| +| `filePath` | `-f` | Yes | Path to the `.dat` configuration file | +| `portName` | `-p` | Yes | COM port name (e.g. `COM3`, `COM7`) | +| `baudRate` | `-b` | No | Baud rate (default: `9600`) | + +**Examples:** + +Using full option names: +``` +SmartFuseSync Config Update --filePath:"C:\Configs\MyDevice.dat" --portName:COM7 --baudRate:115200 +``` + +Using abbreviations: +``` +SmartFuseSync Config Update -f:"C:\Configs\MyDevice.dat" -p:COM7 -b:115200 +``` + +**Using a `.bat` file (recommended for repeated use):** + +Create a `.bat` file with the same base name as your `.dat` file, e.g. `UpdateBasementSensor.bat`: +```bat +SmartFuseSync Config Update -f:"C:\GitProjects\SFB\UpdateBasementSensor.dat" -p:COM7 -b:115200 +``` + +Double-click the `.bat` file or run it from a terminal to apply the configuration. + +--- + +### `Config ListPorts` — List available COM ports + +Displays all COM ports currently detected on the system. Useful for identifying the correct port before running an update. + +``` +SmartFuseSync Config ListPorts +``` + +--- + +### `Config Test` — Test connection to a device + +Opens the specified COM port and confirms a connection can be established. + +| Option | Abbreviation | Required | Description | +|--------|-------------|----------|-------------| +| `portName` | `-p` | Yes | COM port name (e.g. `COM3`, `COM7`) | +| `baudRate` | `-b` | No | Baud rate (default: `9600`) | + +``` +SmartFuseSync Config Test -p:COM7 -b:115200 +``` + +--- + +### `Config Read` — Read current configuration from a device + +Sends a `READ_CONFIG` request to the device and displays the response. Optionally saves the output to a file. + +| Option | Abbreviation | Required | Description | +|--------|-------------|----------|-------------| +| `portName` | `-p` | Yes | COM port name (e.g. `COM3`, `COM7`) | +| `outputPath` | `-o` | No | File path to save the received configuration | +| `baudRate` | `-b` | No | Baud rate (default: `9600`) | + +``` +SmartFuseSync Config Read -p:COM7 -b:115200 +SmartFuseSync Config Read -p:COM7 -b:115200 -o:"C:\Configs\Backup.dat" +``` + +--- + +## Configuration file format + +Configuration files (`.dat`) contain one command per line. Blank lines are ignored. Each line is sent verbatim to the device. + +**Example `UpdateBasementSensor.dat`:** +``` +C11:v=1 +C12:v=MyNetwork +M0:v=1 +M1:v=0 +``` + +The device responds to each command with: +- `ACK:=ok:...` — command accepted +- `ERR::...` — command rejected (logged as a warning, processing continues) + +--- + +## Serial port settings + +All commands use the following fixed serial settings: + +| Setting | Value | +|---------|-------| +| Parity | None | +| Data bits | 8 | +| Stop bits | 1 | +| Handshake | None | + +The baud rate is configurable via `-b` (default `9600`). Use `-b:115200` for faster devices. diff --git a/PowerControlHubSync/src/CommandFileProcessor.cs b/PowerControlHubSync/src/CommandFileProcessor.cs new file mode 100644 index 0000000..1e73cde --- /dev/null +++ b/PowerControlHubSync/src/CommandFileProcessor.cs @@ -0,0 +1,68 @@ +using System.Text.RegularExpressions; + +namespace SmartFuseSync; + +/// +/// Helper class for processing command files with parameter substitution and comment handling +/// +internal static class CommandFileProcessor +{ + /// + /// Reads a command file and processes lines, skipping comments and blank lines + /// + /// Path to the command file + /// Optional parameters for substitution (e.g., WIFI_SSID, WIFI_PASSWORD) + /// Array of processed command lines + public static string[] ReadCommands(string filePath, Dictionary? parameters = null) + { + if (!File.Exists(filePath)) + throw new FileNotFoundException($"Command file not found: {filePath}"); + + var lines = File.ReadAllLines(filePath); + var commands = new List(); + + foreach (var rawLine in lines) + { + var line = rawLine.Trim(); + + // Skip blank lines and comments + if (string.IsNullOrEmpty(line) || line.StartsWith('#')) + continue; + + // Apply parameter substitution if provided + if (parameters != null) + { + foreach (var kvp in parameters) + { + line = line.Replace($"{{{{{kvp.Key}}}}}", kvp.Value); + } + } + + commands.Add(line); + } + + return commands.ToArray(); + } + + /// + /// Validates that all required parameters have been substituted + /// + /// Command to validate + /// True if valid, false if placeholders remain + public static bool ValidateCommand(string command) + { + // Check if any {{PLACEHOLDER}} patterns remain + return !Regex.IsMatch(command, @"\{\{[A-Z_]+\}\}"); + } + + /// + /// Extracts the command name from a full command line + /// + /// Full command line (e.g., "M0:v=1") + /// Command name (e.g., "M0") + public static string GetCommandName(string command) + { + int colonIndex = command.IndexOf(':'); + return colonIndex >= 0 ? command[..colonIndex] : command; + } +} diff --git a/PowerControlHubSync/src/PowerControlHubSync.csproj b/PowerControlHubSync/src/PowerControlHubSync.csproj new file mode 100644 index 0000000..af4ba07 --- /dev/null +++ b/PowerControlHubSync/src/PowerControlHubSync.csproj @@ -0,0 +1,15 @@ + + + + Exe + net10.0 + enable + enable + + + + + + + + diff --git a/PowerControlHubSync/src/Program.cs b/PowerControlHubSync/src/Program.cs new file mode 100644 index 0000000..0e9dcf7 --- /dev/null +++ b/PowerControlHubSync/src/Program.cs @@ -0,0 +1,23 @@ +using CommandLinePlus; +using SmartFuseSync; + +IConsoleProcessorFactory factory = new ConsoleProcessorFactory(); +object[] processors = [new SerialConfigProcessor(), new WifiConfigProcessor()]; + +IConsoleProcessor consoleProcessor = factory.Create("SmartFuseSync", processors); + +switch (consoleProcessor.Run(out int resultCode)) +{ + case RunResult.CandidateFound: + Console.WriteLine("finished"); + break; + + case RunResult.DisplayHelp: + break; + + default: + Console.WriteLine("Invalid usage, please use -? for help"); + break; +} + +return resultCode; \ No newline at end of file diff --git a/PowerControlHubSync/src/SerialConfigProcessor.cs b/PowerControlHubSync/src/SerialConfigProcessor.cs new file mode 100644 index 0000000..af4e520 --- /dev/null +++ b/PowerControlHubSync/src/SerialConfigProcessor.cs @@ -0,0 +1,489 @@ +using CommandLinePlus; +using System.IO.Ports; + +namespace SmartFuseSync; + +[CmdLineDescription("Manages configuration updates for PowerControlHub devices via COM PORT")] +internal class SerialConfigProcessor : BaseCommandLine, IDisposable +{ + private SerialPort? _serialPort; + + public override string Name => "Config"; + + public override int SortOrder => 0; + + public override bool IsEnabled => true; + + public override void DisplayHelp() + { + Display.WriteLine(VerbosityLevel.Quiet, "Configuration management commands for PowerControlHub devices"); + Display.WriteLine(VerbosityLevel.Quiet, "Usage: config [options]"); + } + + public override int Execute(string[] args) + { + return 0; + } + + [CmdLineDescription("Updates configuration from a file to PowerControlHub device")] + public int Update( + [CmdLineAbbreviation("f", "Path to the configuration file")] string filePath, + [CmdLineAbbreviation("p", "COM port name (e.g., COM3)")] string portName, + [CmdLineAbbreviation("b", "Baud rate for COM port connection")] int baudRate = 9600, + [CmdLineAbbreviation("w", "WiFi SSID (replaces {{WIFI_SSID}} placeholder)")] string? wifiSsid = null, + [CmdLineAbbreviation("x", "WiFi Password (replaces {{WIFI_PASSWORD}} placeholder)")] string? wifiPassword = null) + { + if (!IsEnabled) + return -1; + + try + { + // Validate file exists + if (!File.Exists(filePath)) + { + Display.WriteLine(VerbosityLevel.Quiet, $"Error: Configuration file not found: {filePath}"); + return -1; + } + + Display.WriteLine(VerbosityLevel.Normal, $"Reading configuration from: {filePath}"); + + // Build parameter dictionary for substitution + var parameters = new Dictionary(); + if (!string.IsNullOrEmpty(wifiSsid)) + parameters["WIFI_SSID"] = wifiSsid; + if (!string.IsNullOrEmpty(wifiPassword)) + parameters["WIFI_PASSWORD"] = wifiPassword; + + // Read and process commands with parameter substitution + string[] lines = CommandFileProcessor.ReadCommands(filePath, parameters); + + // Initialize COM port + Display.WriteLine(VerbosityLevel.Normal, $"Opening COM port: {portName} at {baudRate} baud"); + _serialPort = new SerialPort(portName, baudRate) + { + Parity = Parity.None, + DataBits = 8, + StopBits = StopBits.One, + Handshake = Handshake.None, + ReadTimeout = 1000, + WriteTimeout = 5000 + }; + + _serialPort.Open(); + + if (!_serialPort.IsOpen) + { + Display.WriteLine(VerbosityLevel.Quiet, $"Error: Failed to open COM port: {portName}"); + return -1; + } + + // Send configuration data line-by-line and wait for ACK for each non-blank line + foreach (string line in lines) + { + // Validate that all placeholders have been replaced + if (!CommandFileProcessor.ValidateCommand(line)) + { + Display.WriteLine(VerbosityLevel.Quiet, $"Error: Command contains unreplaced placeholder: {line}"); + Display.WriteLine(VerbosityLevel.Quiet, "Hint: Use -w for WiFi SSID and -x for WiFi Password"); + return -1; + } + + // Extract command name for display and ACK matching + string commandName = CommandFileProcessor.GetCommandName(line); + + Display.WriteLine(VerbosityLevel.Normal, $"Sending {commandName}"); + + // Send the full line to the device + _serialPort.WriteLine(line); + + // Loop reading lines until we find the ACK or ERR for this specific command. + // Other lines (telemetry, status) are logged at Verbose and discarded. + string? ackResponse = null; + DateTime deadline = DateTime.UtcNow.AddSeconds(5); + + while (DateTime.UtcNow < deadline) + { + string response; + try + { + response = _serialPort.ReadLine().Trim(); + } + catch (TimeoutException) + { + continue; + } + + if (response.Contains($"ACK:{commandName}") || response.Contains($"ERR:{commandName}")) + { + ackResponse = response; + break; + } + + Display.WriteLine(VerbosityLevel.Full, $" [{commandName}] {response}"); + } + + if (ackResponse is null) + { + Display.WriteLine(VerbosityLevel.Quiet, $"Error: Timeout waiting for ACK from {commandName}"); + return -1; + } + + Display.WriteLine(VerbosityLevel.Normal, $"{ackResponse} received"); + + if (ackResponse.Contains($"ERR:{commandName}")) + Display.WriteLine(VerbosityLevel.Quiet, $"Warning: Device reported error for {commandName}: {ackResponse}"); + } + + Display.WriteLine(VerbosityLevel.Quiet, "Configuration update completed successfully"); + return 0; + } + catch (UnauthorizedAccessException ex) + { + Display.WriteLine(VerbosityLevel.Quiet, $"Error: Access denied to COM port {portName}. {ex.Message}"); + return -1; + } + catch (IOException ex) + { + Display.WriteLine(VerbosityLevel.Quiet, $"Error: Communication error: {ex.Message}"); + return -1; + } + catch (Exception ex) + { + Display.WriteLine(VerbosityLevel.Quiet, $"Error: {ex.Message}"); + return -1; + } + finally + { + ClosePort(); + } + } + + [CmdLineDescription("Lists available COM ports on the system")] + public void ListPorts() + { + if (!IsEnabled) + return; + + Display.WriteLine(VerbosityLevel.Quiet, "Available COM ports:"); + string[] ports = SerialPort.GetPortNames(); + + if (ports.Length == 0) + { + Display.WriteLine(VerbosityLevel.Quiet, " No COM ports found"); + } + else + { + foreach (string port in ports) + { + Display.WriteLine(VerbosityLevel.Quiet, $" {port}"); + } + } + } + + [CmdLineDescription("Tests connection to a PowerControlHub device")] + public int Test( + [CmdLineAbbreviation("p", "COM port name (e.g., COM3)")] string portName, + [CmdLineAbbreviation("b", "Baud rate for COM port connection")] int baudRate = 9600) + { + if (!IsEnabled) + return -1; + + try + { + Display.WriteLine(VerbosityLevel.Normal, $"Testing connection to {portName} at {baudRate} baud..."); + + _serialPort = new SerialPort(portName, baudRate) + { + Parity = Parity.None, + DataBits = 8, + StopBits = StopBits.One, + Handshake = Handshake.None, + ReadTimeout = 3000, + WriteTimeout = 3000 + }; + + _serialPort.Open(); + + if (_serialPort.IsOpen) + { + Display.WriteLine(VerbosityLevel.Quiet, $"Success: Connected to {portName}"); + return 0; + } + else + { + Display.WriteLine(VerbosityLevel.Quiet, $"Error: Failed to connect to {portName}"); + return -1; + } + } + catch (Exception ex) + { + Display.WriteLine(VerbosityLevel.Quiet, $"Error: {ex.Message}"); + return -1; + } + finally + { + ClosePort(); + } + } + + [CmdLineDescription("Reads current configuration from PowerControlHub device")] + public int Read( + [CmdLineAbbreviation("p", "COM port name (e.g., COM3)")] string portName, + [CmdLineAbbreviation("o", "Output file path to save configuration")] string? outputPath = null, + [CmdLineAbbreviation("b", "Baud rate for COM port connection")] int baudRate = 9600) + { + if (!IsEnabled) + return -1; + + try + { + Display.WriteLine(VerbosityLevel.Normal, $"Reading configuration from device on {portName}..."); + + _serialPort = new SerialPort(portName, baudRate) + { + Parity = Parity.None, + DataBits = 8, + StopBits = StopBits.One, + Handshake = Handshake.None, + ReadTimeout = 5000, + WriteTimeout = 5000 + }; + + _serialPort.Open(); + + if (!_serialPort.IsOpen) + { + Display.WriteLine(VerbosityLevel.Quiet, $"Error: Failed to open COM port: {portName}"); + return -1; + } + + // Request configuration from device + _serialPort.WriteLine("READ_CONFIG"); + string configData = _serialPort.ReadLine(); + + Display.WriteLine(VerbosityLevel.Normal, "Configuration data received:"); + Display.WriteLine(VerbosityLevel.Normal, configData); + + // Save to file if output path specified + if (!string.IsNullOrEmpty(outputPath)) + { + File.WriteAllText(outputPath, configData); + Display.WriteLine(VerbosityLevel.Quiet, $"Configuration saved to: {outputPath}"); + } + + return 0; + } + catch (Exception ex) + { + Display.WriteLine(VerbosityLevel.Quiet, $"Error: {ex.Message}"); + return -1; + } + finally + { + ClosePort(); + } + } + + [CmdLineDescription("Runs test commands from a test file and validates responses")] + public int RunTests( + [CmdLineAbbreviation("f", "Path to the test file")] string filePath, + [CmdLineAbbreviation("p", "COM port name (e.g., COM3)")] string portName, + [CmdLineAbbreviation("b", "Baud rate for COM port connection")] int baudRate = 9600) + { + if (!IsEnabled) + return -1; + + try + { + Display.WriteLine(VerbosityLevel.Normal, $"Loading test commands from: {filePath}"); + + var tests = TestCommandParser.ParseTestFile(filePath); + Display.WriteLine(VerbosityLevel.Quiet, $"Loaded {tests.Count} test cases"); + + // Initialize COM port + Display.WriteLine(VerbosityLevel.Normal, $"Opening COM port: {portName} at {baudRate} baud"); + _serialPort = new SerialPort(portName, baudRate) + { + Parity = Parity.None, + DataBits = 8, + StopBits = StopBits.One, + Handshake = Handshake.None, + ReadTimeout = 1000, + WriteTimeout = 5000 + }; + + _serialPort.Open(); + + if (!_serialPort.IsOpen) + { + Display.WriteLine(VerbosityLevel.Quiet, $"Error: Failed to open COM port: {portName}"); + return -1; + } + + // Run tests + var results = new List(); + int passed = 0; + int failed = 0; + + foreach (var test in tests) + { + var result = new TestResult + { + Command = test.Command, + ExpectedResponses = test.ExpectedResponses + }; + + try + { + string commandName = CommandFileProcessor.GetCommandName(test.Command); + Display.WriteLine(VerbosityLevel.Normal, $"Testing: {test.Command}"); + + // Send command + _serialPort.WriteLine(test.Command); + + // Wait for response + string? response = null; + DateTime deadline = DateTime.UtcNow.AddSeconds(5); + + while (DateTime.UtcNow < deadline) + { + try + { + string line = _serialPort.ReadLine().Trim(); + + // Look for ACK or actual response + if (line.Contains($"ACK:{commandName}") || + line.Contains($"{commandName}:") || + line.StartsWith(commandName)) + { + // Extract just the ACK/command part, removing any debug prefixes + int ackIndex = line.IndexOf("ACK:"); + int cmdIndex = line.IndexOf($"{commandName}:"); + + if (ackIndex >= 0) + { + response = line.Substring(ackIndex); + } + else if (cmdIndex >= 0) + { + response = line.Substring(cmdIndex); + } + else if (line.StartsWith(commandName)) + { + response = line; + } + else + { + response = line; + } + break; + } + + Display.WriteLine(VerbosityLevel.Full, $" [{commandName}] {line}"); + } + catch (TimeoutException) + { + continue; + } + } + + if (response is null) + { + result.Passed = false; + result.ErrorMessage = "Timeout waiting for response"; + failed++; + Console.BackgroundColor = ConsoleColor.Red; + Display.WriteLine(VerbosityLevel.Quiet, $" ✗ FAILED: Timeout"); + Console.ResetColor(); + } + else + { + result.ActualResponse = response; + result.Passed = test.IsMatch(response); + + if (result.Passed) + { + passed++; + Display.WriteLine(VerbosityLevel.Normal, $" ✓ PASSED: {response}"); + } + else + { + failed++; + Console.BackgroundColor = ConsoleColor.Red; + Display.WriteLine(VerbosityLevel.Quiet, $" ✗ FAILED: Expected [{string.Join(" | ", test.ExpectedResponses)}], Got [{response}]"); + Console.ResetColor(); + } + } + } + catch (Exception ex) + { + result.Passed = false; + result.ErrorMessage = ex.Message; + failed++; + Display.WriteLine(VerbosityLevel.Quiet, $" ✗ ERROR: {ex.Message}"); + } + + results.Add(result); + + // Small delay between tests + Thread.Sleep(100); + } + + // Summary + Display.WriteLine(VerbosityLevel.Quiet, ""); + Display.WriteLine(VerbosityLevel.Quiet, "=== Test Summary ==="); + Display.WriteLine(VerbosityLevel.Quiet, $"Total: {tests.Count}"); + Display.WriteLine(VerbosityLevel.Quiet, $"Passed: {passed}"); + Display.WriteLine(VerbosityLevel.Quiet, $"Failed: {failed}"); + Display.WriteLine(VerbosityLevel.Quiet, $"Success Rate: {(tests.Count > 0 ? (passed * 100.0 / tests.Count) : 0):F1}%"); + + return failed == 0 ? 0 : -1; + } + catch (FileNotFoundException ex) + { + Display.WriteLine(VerbosityLevel.Quiet, $"Error: {ex.Message}"); + return -1; + } + catch (UnauthorizedAccessException ex) + { + Display.WriteLine(VerbosityLevel.Quiet, $"Error: Access denied to COM port {portName}. {ex.Message}"); + return -1; + } + catch (IOException ex) + { + Display.WriteLine(VerbosityLevel.Quiet, $"Error: Communication error: {ex.Message}"); + return -1; + } + catch (Exception ex) + { + Display.WriteLine(VerbosityLevel.Quiet, $"Error: {ex.Message}"); + return -1; + } + finally + { + ClosePort(); + } + } + + private void ClosePort() + { + if (_serialPort != null && _serialPort.IsOpen) + { + try + { + _serialPort.Close(); + } + catch + { + // Ignore errors during cleanup + } + } + } + + public void Dispose() + { + ClosePort(); + _serialPort?.Dispose(); + GC.SuppressFinalize(this); + } +} diff --git a/PowerControlHubSync/src/TestCommandProcessor.cs b/PowerControlHubSync/src/TestCommandProcessor.cs new file mode 100644 index 0000000..bead16f --- /dev/null +++ b/PowerControlHubSync/src/TestCommandProcessor.cs @@ -0,0 +1,95 @@ +namespace SmartFuseSync; + +/// +/// Represents a test case with command and expected response(s) +/// +internal class TestCommand +{ + public string Command { get; set; } = string.Empty; + public string[] ExpectedResponses { get; set; } = Array.Empty(); + + public bool IsMatch(string actualResponse) + { + foreach (var expected in ExpectedResponses) + { + if (MatchesPattern(actualResponse, expected)) + return true; + } + return false; + } + + private static bool MatchesPattern(string actual, string pattern) + { + // Handle wildcard matching + if (pattern.Contains('*')) + { + // Convert pattern to regex + string regexPattern = "^" + System.Text.RegularExpressions.Regex.Escape(pattern).Replace("\\*", ".*") + "$"; + return System.Text.RegularExpressions.Regex.IsMatch(actual, regexPattern); + } + + // Exact match + return actual.Trim().Equals(pattern.Trim(), StringComparison.OrdinalIgnoreCase); + } +} + +/// +/// Parser for test command files +/// +internal static class TestCommandParser +{ + /// + /// Parses a test command file into TestCommand objects + /// Format: COMMAND -> EXPECTED_RESPONSE | ALTERNATE_RESPONSE + /// + public static List ParseTestFile(string filePath) + { + if (!File.Exists(filePath)) + throw new FileNotFoundException($"Test file not found: {filePath}"); + + var tests = new List(); + var lines = File.ReadAllLines(filePath); + + foreach (var rawLine in lines) + { + var line = rawLine.Trim(); + + // Skip blank lines and comments + if (string.IsNullOrEmpty(line) || line.StartsWith('#')) + continue; + + // Parse format: COMMAND -> EXPECTED_RESPONSE + var parts = line.Split(new[] { "->" }, StringSplitOptions.TrimEntries); + if (parts.Length != 2) + { + Console.WriteLine($"Warning: Skipping invalid test line: {line}"); + continue; + } + + var command = parts[0].Trim(); + var responses = parts[1].Split('|', StringSplitOptions.TrimEntries) + .Select(r => r.Trim()) + .ToArray(); + + tests.Add(new TestCommand + { + Command = command, + ExpectedResponses = responses + }); + } + + return tests; + } +} + +/// +/// Result of a test execution +/// +internal class TestResult +{ + public string Command { get; set; } = string.Empty; + public string ActualResponse { get; set; } = string.Empty; + public string[] ExpectedResponses { get; set; } = Array.Empty(); + public bool Passed { get; set; } + public string? ErrorMessage { get; set; } +} diff --git a/PowerControlHubSync/src/WifiConfigProcessor.cs b/PowerControlHubSync/src/WifiConfigProcessor.cs new file mode 100644 index 0000000..fbe878d --- /dev/null +++ b/PowerControlHubSync/src/WifiConfigProcessor.cs @@ -0,0 +1,585 @@ +using CommandLinePlus; +using System.Net.Http; +using System.Text; +using System.Text.Json; + +namespace SmartFuseSync; + +[CmdLineDescription("Manages configuration updates for PowerControlHub devices via WiFi")] +internal class WifiConfigProcessor : BaseCommandLine, IDisposable +{ + private HttpClient? _httpClient; + + public override string Name => "WifiConfig"; + + public override int SortOrder => 1; + + public override bool IsEnabled => true; + + public override void DisplayHelp() + { + Display.WriteLine(VerbosityLevel.Quiet, "WiFi configuration management commands for PowerControlHub devices"); + Display.WriteLine(VerbosityLevel.Quiet, "Usage: wificonfig [options]"); + } + + public override int Execute(string[] args) => 0; + + [CmdLineDescription("Updates configuration from a file to PowerControlHub device via HTTP")] + public int Update( + [CmdLineAbbreviation("f", "Path to the configuration file")] string filePath, + [CmdLineAbbreviation("i", "IP address of the PowerControlHub device")] string ipAddress, + [CmdLineAbbreviation("p", "HTTP port")] int port = 80, + [CmdLineAbbreviation("w", "WiFi SSID (replaces {{WIFI_SSID}} placeholder)")] string? wifiSsid = null, + [CmdLineAbbreviation("x", "WiFi Password (replaces {{WIFI_PASSWORD}} placeholder)")] string? wifiPassword = null) + { + if (!IsEnabled) + return -1; + + try + { + if (!File.Exists(filePath)) + { + Display.WriteLine(VerbosityLevel.Quiet, $"Error: Configuration file not found: {filePath}"); + return -1; + } + + Display.WriteLine(VerbosityLevel.Normal, $"Reading configuration from: {filePath}"); + + // Build parameter dictionary for substitution + var parameters = new Dictionary(); + if (!string.IsNullOrEmpty(wifiSsid)) + parameters["WIFI_SSID"] = wifiSsid; + if (!string.IsNullOrEmpty(wifiPassword)) + parameters["WIFI_PASSWORD"] = wifiPassword; + + // Read and process commands with parameter substitution + string[] lines = CommandFileProcessor.ReadCommands(filePath, parameters); + + string baseUrl = $"http://{ipAddress}:{port}"; + + Display.WriteLine(VerbosityLevel.Normal, $"Connecting to device at: {baseUrl}"); + + _httpClient = new HttpClient { Timeout = TimeSpan.FromSeconds(10) }; + + foreach (string line in lines) + { + // Validate that all placeholders have been replaced + if (!CommandFileProcessor.ValidateCommand(line)) + { + Display.WriteLine(VerbosityLevel.Quiet, $"Error: Command contains unreplaced placeholder: {line}"); + Display.WriteLine(VerbosityLevel.Quiet, "Hint: Use -w for WiFi SSID and -x for WiFi Password"); + return -1; + } + + // Extract command name and body + int colonIndex = line.IndexOf(':'); + string commandName = colonIndex >= 0 ? line[..colonIndex] : line; + string body = colonIndex >= 0 ? line[(colonIndex + 1)..] : string.Empty; + + Display.WriteLine(VerbosityLevel.Normal, $"Sending {commandName}"); + + string url = $"{baseUrl}/api/command/{commandName}"; + using StringContent content = new(body, Encoding.UTF8, "text/plain"); + HttpResponseMessage httpResponse = _httpClient.PostAsync(url, content).GetAwaiter().GetResult(); + string responseJson = httpResponse.Content.ReadAsStringAsync().GetAwaiter().GetResult(); + + bool success = false; + string errorMessage = string.Empty; + + try + { + using JsonDocument doc = JsonDocument.Parse(responseJson); + JsonElement root = doc.RootElement; + success = root.TryGetProperty("success", out JsonElement successProp) && successProp.GetBoolean(); + if (!success) + errorMessage = root.TryGetProperty("error", out JsonElement errorProp) + ? errorProp.GetString() ?? "unknown error" + : "unknown error"; + } + catch (JsonException) + { + Display.WriteLine(VerbosityLevel.Quiet, $"Warning: Could not parse response for {commandName}: {responseJson}"); + continue; + } + + if (success) + { + Display.WriteLine(VerbosityLevel.Normal, $"ACK:{commandName} received"); + } + else + { + Display.WriteLine(VerbosityLevel.Normal, $"ERR:{commandName} received"); + Display.WriteLine(VerbosityLevel.Quiet, $"Warning: Device reported error for {commandName}: {errorMessage}"); + } + } + + Display.WriteLine(VerbosityLevel.Quiet, "Configuration update completed successfully"); + return 0; + } + catch (HttpRequestException ex) + { + Display.WriteLine(VerbosityLevel.Quiet, $"Error: HTTP communication error: {ex.Message}"); + return -1; + } + catch (TaskCanceledException) + { + Display.WriteLine(VerbosityLevel.Quiet, "Error: Request timed out"); + return -1; + } + catch (Exception ex) + { + Display.WriteLine(VerbosityLevel.Quiet, $"Error: {ex.Message}"); + return -1; + } + finally + { + _httpClient?.Dispose(); + _httpClient = null; + } + } + + [CmdLineDescription("Queries current OTA firmware status from PowerControlHub device (F13)")] + public int OtaStatus( + [CmdLineAbbreviation("i", "IP address of the PowerControlHub device")] string ipAddress, + [CmdLineAbbreviation("p", "HTTP port")] int port = 80) + { + if (!IsEnabled) + return -1; + + string baseUrl = $"http://{ipAddress}:{port}"; + Display.WriteLine(VerbosityLevel.Normal, $"Querying OTA status from {baseUrl}..."); + + try + { + string responseJson = PostCommand(baseUrl, "F13", string.Empty); + + using JsonDocument doc = JsonDocument.Parse(responseJson); + JsonElement root = doc.RootElement; + bool success = root.TryGetProperty("success", out JsonElement successProp) && successProp.GetBoolean(); + + if (success) + { + string version = root.TryGetProperty("v", out JsonElement vProp) ? vProp.GetString() ?? "unknown" : "unknown"; + string available = root.TryGetProperty("av", out JsonElement avProp) ? avProp.GetString() ?? "" : ""; + string state = root.TryGetProperty("s", out JsonElement sProp) ? sProp.GetString() ?? "unknown" : "unknown"; + string auto = root.TryGetProperty("auto", out JsonElement autoProp) ? autoProp.GetString() ?? "0" : "0"; + + Display.WriteLine(VerbosityLevel.Quiet, $"Current version : {version}"); + Display.WriteLine(VerbosityLevel.Quiet, $"Available version: {(string.IsNullOrEmpty(available) ? "none" : available)}"); + Display.WriteLine(VerbosityLevel.Quiet, $"OTA state : {state}"); + Display.WriteLine(VerbosityLevel.Quiet, $"Auto-apply : {(auto == "1" ? "enabled" : "disabled")}"); + return 0; + } + else + { + string error = root.TryGetProperty("error", out JsonElement errorProp) ? errorProp.GetString() ?? "unknown error" : "unknown error"; + Display.WriteLine(VerbosityLevel.Quiet, $"Error: {error}"); + return -1; + } + } + catch (HttpRequestException ex) + { + Display.WriteLine(VerbosityLevel.Quiet, $"Error: HTTP communication error: {ex.Message}"); + return -1; + } + catch (TaskCanceledException) + { + Display.WriteLine(VerbosityLevel.Quiet, "Error: Request timed out"); + return -1; + } + catch (JsonException ex) + { + Display.WriteLine(VerbosityLevel.Quiet, $"Error: Could not parse response: {ex.Message}"); + return -1; + } + } + + [CmdLineDescription("Checks or applies an OTA firmware update on PowerControlHub device (F12)")] + public int OtaUpdate( + [CmdLineAbbreviation("i", "IP address of the PowerControlHub device")] string ipAddress, + [CmdLineAbbreviation("a", "Apply the update if one is available")] bool apply = false, + [CmdLineAbbreviation("p", "HTTP port")] int port = 80) + { + if (!IsEnabled) + return -1; + + string baseUrl = $"http://{ipAddress}:{port}"; + string body = apply ? "apply=1" : string.Empty; + + Display.WriteLine(VerbosityLevel.Normal, apply + ? $"Checking and applying OTA update on {baseUrl}..." + : $"Checking for OTA update on {baseUrl}..."); + + try + { + // Use a longer timeout — downloading firmware can take time + string responseJson = PostCommand(baseUrl, "F12", body, timeoutSeconds: 60); + + using JsonDocument doc = JsonDocument.Parse(responseJson); + JsonElement root = doc.RootElement; + bool success = root.TryGetProperty("success", out JsonElement successProp) && successProp.GetBoolean(); + + if (success) + { + string version = root.TryGetProperty("v", out JsonElement vProp) ? vProp.GetString() ?? "unknown" : "unknown"; + string available = root.TryGetProperty("av", out JsonElement avProp) ? avProp.GetString() ?? "" : ""; + string state = root.TryGetProperty("s", out JsonElement sProp) ? sProp.GetString() ?? "unknown" : "unknown"; + + Display.WriteLine(VerbosityLevel.Quiet, $"Current version : {version}"); + Display.WriteLine(VerbosityLevel.Quiet, $"Available version: {(string.IsNullOrEmpty(available) ? "none" : available)}"); + Display.WriteLine(VerbosityLevel.Quiet, $"OTA state : {state}"); + return 0; + } + else + { + string error = root.TryGetProperty("error", out JsonElement errorProp) ? errorProp.GetString() ?? "unknown error" : "unknown error"; + Display.WriteLine(VerbosityLevel.Quiet, $"Error: {error}"); + return -1; + } + } + catch (HttpRequestException ex) + { + Display.WriteLine(VerbosityLevel.Quiet, $"Error: HTTP communication error: {ex.Message}"); + return -1; + } + catch (TaskCanceledException) + { + Display.WriteLine(VerbosityLevel.Quiet, "Error: Request timed out"); + return -1; + } + catch (JsonException ex) + { + Display.WriteLine(VerbosityLevel.Quiet, $"Error: Could not parse response: {ex.Message}"); + return -1; + } + } + + private string PostCommand(string baseUrl, string commandName, string body, int timeoutSeconds = 10) + { + using HttpClient client = new() { Timeout = TimeSpan.FromSeconds(timeoutSeconds) }; + string url = $"{baseUrl}/api/command/{commandName}"; + using StringContent content = new(body, Encoding.UTF8, "text/plain"); + HttpResponseMessage httpResponse = client.PostAsync(url, content).GetAwaiter().GetResult(); + return httpResponse.Content.ReadAsStringAsync().GetAwaiter().GetResult(); + } + + [CmdLineDescription("Tests connection to a PowerControlHub device")] + public int Test( + [CmdLineAbbreviation("i", "IP address of the PowerControlHub device")] string ipAddress, + [CmdLineAbbreviation("p", "HTTP port")] int port = 80) + { + if (!IsEnabled) + return -1; + + string baseUrl = $"http://{ipAddress}:{port}"; + Display.WriteLine(VerbosityLevel.Normal, $"Testing connection to {baseUrl}..."); + + try + { + using HttpClient client = new() { Timeout = TimeSpan.FromSeconds(5) }; + HttpResponseMessage response = client.GetAsync(baseUrl).GetAwaiter().GetResult(); + + if (response.IsSuccessStatusCode) + { + Display.WriteLine(VerbosityLevel.Quiet, $"Success: Connected to {baseUrl}"); + return 0; + } + else + { + Display.WriteLine(VerbosityLevel.Quiet, $"Error: Device responded with HTTP {(int)response.StatusCode}"); + return -1; + } + } + catch (HttpRequestException ex) + { + Display.WriteLine(VerbosityLevel.Quiet, $"Error: {ex.Message}"); + return -1; + } + catch (TaskCanceledException) + { + Display.WriteLine(VerbosityLevel.Quiet, $"Error: Connection timed out"); + return -1; + } + } + + [CmdLineDescription("Runs test commands from a test file and validates responses via WiFi")] + public int RunTests( + [CmdLineAbbreviation("f", "Path to the test file")] string filePath, + [CmdLineAbbreviation("i", "IP address of the PowerControlHub device")] string ipAddress, + [CmdLineAbbreviation("p", "HTTP port")] int port = 80) + { + if (!IsEnabled) + return -1; + + try + { + Display.WriteLine(VerbosityLevel.Normal, $"Loading test commands from: {filePath}"); + + // Check if this is a WiFi-format test file (METHOD /endpoint format) + var firstLine = File.ReadLines(filePath).FirstOrDefault(l => !string.IsNullOrWhiteSpace(l) && !l.TrimStart().StartsWith('#')); + bool isWifiFormat = firstLine != null && (firstLine.TrimStart().StartsWith("GET ") || firstLine.TrimStart().StartsWith("POST ")); + + if (isWifiFormat) + { + return RunWifiFormatTests(filePath, ipAddress, port); + } + else + { + return RunSerialFormatTests(filePath, ipAddress, port); + } + } + catch (FileNotFoundException ex) + { + Display.WriteLine(VerbosityLevel.Quiet, $"Error: {ex.Message}"); + return -1; + } + catch (Exception ex) + { + Display.WriteLine(VerbosityLevel.Quiet, $"Error: {ex.Message}"); + return -1; + } + } + + private int RunWifiFormatTests(string filePath, string ipAddress, int port) + { + try + { + var tests = WifiTestCommandParser.ParseTestFile(filePath); + Display.WriteLine(VerbosityLevel.Quiet, $"Loaded {tests.Count} WiFi test cases"); + + string baseUrl = $"http://{ipAddress}:{port}"; + Display.WriteLine(VerbosityLevel.Normal, $"Testing device at: {baseUrl}"); + + _httpClient = new HttpClient { Timeout = TimeSpan.FromSeconds(10) }; + + var results = new List(); + int passed = 0; + int failed = 0; + + foreach (var test in tests) + { + var result = new WifiTestResult + { + Method = test.Method, + Endpoint = test.Endpoint, + Body = test.Body, + ExpectedResponses = test.ExpectedResponses + }; + + try + { + Display.WriteLine(VerbosityLevel.Normal, $"Testing: {test.Method} {test.Endpoint} {test.Body}"); + + string url = $"{baseUrl}{test.Endpoint}"; + HttpResponseMessage httpResponse; + + if (test.Method == "GET") + { + httpResponse = _httpClient.GetAsync(url).GetAwaiter().GetResult(); + } + else if (test.Method == "POST") + { + using StringContent content = new(test.Body, Encoding.UTF8, "text/plain"); + httpResponse = _httpClient.PostAsync(url, content).GetAwaiter().GetResult(); + } + else + { + result.Passed = false; + result.ErrorMessage = $"Unsupported HTTP method: {test.Method}"; + failed++; + Display.WriteLine(VerbosityLevel.Quiet, $" ✗ ERROR: {result.ErrorMessage}"); + results.Add(result); + continue; + } + + string responseJson = httpResponse.Content.ReadAsStringAsync().GetAwaiter().GetResult(); + result.ActualResponse = responseJson; + result.Passed = test.IsMatch(responseJson); + + if (result.Passed) + { + passed++; + Display.WriteLine(VerbosityLevel.Normal, $" ✓ PASSED"); + Display.WriteLine(VerbosityLevel.Full, $" Response: {responseJson}"); + } + else + { + failed++; + Display.WriteLine(VerbosityLevel.Quiet, $" ✗ FAILED"); + Display.WriteLine(VerbosityLevel.Quiet, $" Expected: {string.Join(" | ", test.ExpectedResponses)}"); + Display.WriteLine(VerbosityLevel.Quiet, $" Got: {responseJson}"); + } + } + catch (Exception ex) + { + result.Passed = false; + result.ErrorMessage = ex.Message; + failed++; + Display.WriteLine(VerbosityLevel.Quiet, $" ✗ ERROR: {ex.Message}"); + } + + results.Add(result); + Thread.Sleep(100); + } + + // Summary + Display.WriteLine(VerbosityLevel.Quiet, ""); + Display.WriteLine(VerbosityLevel.Quiet, "=== WiFi Test Summary ==="); + Display.WriteLine(VerbosityLevel.Quiet, $"Total: {tests.Count}"); + Display.WriteLine(VerbosityLevel.Quiet, $"Passed: {passed}"); + Display.WriteLine(VerbosityLevel.Quiet, $"Failed: {failed}"); + Display.WriteLine(VerbosityLevel.Quiet, $"Success Rate: {(tests.Count > 0 ? (passed * 100.0 / tests.Count) : 0):F1}%"); + + return failed == 0 ? 0 : -1; + } + finally + { + _httpClient?.Dispose(); + _httpClient = null; + } + } + + private int RunSerialFormatTests(string filePath, string ipAddress, int port) + { + try + { + var tests = TestCommandParser.ParseTestFile(filePath); + Display.WriteLine(VerbosityLevel.Quiet, $"Loaded {tests.Count} test cases (serial format over WiFi)"); + + string baseUrl = $"http://{ipAddress}:{port}"; + Display.WriteLine(VerbosityLevel.Normal, $"Testing device at: {baseUrl}"); + + _httpClient = new HttpClient { Timeout = TimeSpan.FromSeconds(10) }; + + // Run tests + var results = new List(); + int passed = 0; + int failed = 0; + + foreach (var test in tests) + { + var result = new TestResult + { + Command = test.Command, + ExpectedResponses = test.ExpectedResponses + }; + + try + { + Display.WriteLine(VerbosityLevel.Normal, $"Testing: {test.Command}"); + + // Extract command name and body + int colonIndex = test.Command.IndexOf(':'); + string commandName = colonIndex >= 0 ? test.Command[..colonIndex] : test.Command; + string body = colonIndex >= 0 ? test.Command[(colonIndex + 1)..] : string.Empty; + + // Send command + string url = $"{baseUrl}/api/command/{commandName}"; + using StringContent content = new(body, Encoding.UTF8, "text/plain"); + HttpResponseMessage httpResponse = _httpClient.PostAsync(url, content).GetAwaiter().GetResult(); + string responseJson = httpResponse.Content.ReadAsStringAsync().GetAwaiter().GetResult(); + + // Parse response + string actualResponse; + try + { + using JsonDocument doc = JsonDocument.Parse(responseJson); + JsonElement root = doc.RootElement; + bool success = root.TryGetProperty("success", out JsonElement successProp) && successProp.GetBoolean(); + + if (success) + { + // Build response in ACK format for consistency + actualResponse = $"ACK:{commandName}=ok"; + + // Check if there are response values + if (root.TryGetProperty("v", out JsonElement vProp)) + { + actualResponse = $"{commandName}:v={vProp}"; + } + } + else + { + string error = root.TryGetProperty("error", out JsonElement errorProp) + ? errorProp.GetString() ?? "unknown error" + : "unknown error"; + actualResponse = $"ACK:{commandName}={error}"; + } + } + catch (JsonException) + { + actualResponse = responseJson; + } + + result.ActualResponse = actualResponse; + result.Passed = test.IsMatch(actualResponse); + + if (result.Passed) + { + passed++; + Display.WriteLine(VerbosityLevel.Normal, $" ✓ PASSED: {actualResponse}"); + } + else + { + failed++; + Display.WriteLine(VerbosityLevel.Quiet, $" ✗ FAILED: Expected [{string.Join(" | ", test.ExpectedResponses)}], Got [{actualResponse}]"); + } + } + catch (Exception ex) + { + result.Passed = false; + result.ErrorMessage = ex.Message; + failed++; + Display.WriteLine(VerbosityLevel.Quiet, $" ✗ ERROR: {ex.Message}"); + } + + results.Add(result); + + // Small delay between tests + Thread.Sleep(100); + } + + // Summary + Display.WriteLine(VerbosityLevel.Quiet, ""); + Display.WriteLine(VerbosityLevel.Quiet, "=== Test Summary ==="); + Display.WriteLine(VerbosityLevel.Quiet, $"Total: {tests.Count}"); + Display.WriteLine(VerbosityLevel.Quiet, $"Passed: {passed}"); + Display.WriteLine(VerbosityLevel.Quiet, $"Failed: {failed}"); + Display.WriteLine(VerbosityLevel.Quiet, $"Success Rate: {(tests.Count > 0 ? (passed * 100.0 / tests.Count) : 0):F1}%"); + + return failed == 0 ? 0 : -1; + } + catch (FileNotFoundException ex) + { + Display.WriteLine(VerbosityLevel.Quiet, $"Error: {ex.Message}"); + return -1; + } + catch (HttpRequestException ex) + { + Display.WriteLine(VerbosityLevel.Quiet, $"Error: HTTP communication error: {ex.Message}"); + return -1; + } + catch (TaskCanceledException) + { + Display.WriteLine(VerbosityLevel.Quiet, "Error: Request timed out"); + return -1; + } + catch (Exception ex) + { + Display.WriteLine(VerbosityLevel.Quiet, $"Error: {ex.Message}"); + return -1; + } + finally + { + _httpClient?.Dispose(); + _httpClient = null; + } + } + + public void Dispose() + { + _httpClient?.Dispose(); + GC.SuppressFinalize(this); + } +} + diff --git a/PowerControlHubSync/src/WifiTestCommandProcessor.cs b/PowerControlHubSync/src/WifiTestCommandProcessor.cs new file mode 100644 index 0000000..1f35981 --- /dev/null +++ b/PowerControlHubSync/src/WifiTestCommandProcessor.cs @@ -0,0 +1,125 @@ +namespace SmartFuseSync; + +/// +/// Represents a WiFi HTTP test case with method, endpoint, body, and expected JSON response +/// +internal class WifiTestCommand +{ + public string Method { get; set; } = "GET"; + public string Endpoint { get; set; } = string.Empty; + public string Body { get; set; } = string.Empty; + public string[] ExpectedResponses { get; set; } = Array.Empty(); + + public bool IsMatch(string actualJsonResponse) + { + foreach (var expected in ExpectedResponses) + { + if (MatchesJsonPattern(actualJsonResponse, expected)) + return true; + } + return false; + } + + private static bool MatchesJsonPattern(string actualJson, string pattern) + { + // Handle wildcard matching for JSON + if (pattern.Contains('*')) + { + // Simple wildcard matching - just check if the pattern structure exists + // Remove wildcards and check if remaining structure matches + string regexPattern = "^" + System.Text.RegularExpressions.Regex.Escape(pattern) + .Replace("\\*", ".*") + .Replace("\\{", "\\{") + .Replace("\\}", "\\}") + "$"; + + return System.Text.RegularExpressions.Regex.IsMatch(actualJson.Trim(), regexPattern, + System.Text.RegularExpressions.RegexOptions.Singleline); + } + + // Check if pattern is contained in actual (for partial matching) + if (actualJson.Contains(pattern.Trim())) + return true; + + // Exact match + return actualJson.Trim().Equals(pattern.Trim(), StringComparison.OrdinalIgnoreCase); + } +} + +/// +/// Parser for WiFi HTTP test command files +/// +internal static class WifiTestCommandParser +{ + /// + /// Parses a WiFi test command file into WifiTestCommand objects + /// Format: METHOD /endpoint [body] -> JSON_PATTERN | ALTERNATE_JSON_PATTERN + /// + public static List ParseTestFile(string filePath) + { + if (!File.Exists(filePath)) + throw new FileNotFoundException($"WiFi test file not found: {filePath}"); + + var tests = new List(); + var lines = File.ReadAllLines(filePath); + + foreach (var rawLine in lines) + { + var line = rawLine.Trim(); + + // Skip blank lines and comments + if (string.IsNullOrEmpty(line) || line.StartsWith('#')) + continue; + + // Parse format: METHOD /endpoint [body] -> EXPECTED_JSON_RESPONSE + var parts = line.Split(new[] { "->" }, StringSplitOptions.TrimEntries); + if (parts.Length != 2) + { + Console.WriteLine($"Warning: Skipping invalid WiFi test line: {line}"); + continue; + } + + // Parse left side: METHOD /endpoint [body] + var leftSide = parts[0].Trim(); + var leftParts = leftSide.Split(new[] { ' ' }, 3, StringSplitOptions.RemoveEmptyEntries); + + if (leftParts.Length < 2) + { + Console.WriteLine($"Warning: Invalid format (need METHOD /endpoint): {line}"); + continue; + } + + string method = leftParts[0].ToUpper(); + string endpoint = leftParts[1]; + string body = leftParts.Length > 2 ? leftParts[2] : string.Empty; + + // Parse right side: JSON responses + var responses = parts[1].Split('|', StringSplitOptions.TrimEntries) + .Select(r => r.Trim()) + .ToArray(); + + tests.Add(new WifiTestCommand + { + Method = method, + Endpoint = endpoint, + Body = body, + ExpectedResponses = responses + }); + } + + return tests; + } +} + +/// +/// Result of a WiFi test execution +/// +internal class WifiTestResult +{ + public string Method { get; set; } = string.Empty; + public string Endpoint { get; set; } = string.Empty; + public string Body { get; set; } = string.Empty; + public string ActualResponse { get; set; } = string.Empty; + public string[] ExpectedResponses { get; set; } = Array.Empty(); + public bool Passed { get; set; } + public string? ErrorMessage { get; set; } +} diff --git a/PowerControlHubSync/src/run-tests.bat.template b/PowerControlHubSync/src/run-tests.bat.template new file mode 100644 index 0000000..a0e710f --- /dev/null +++ b/PowerControlHubSync/src/run-tests.bat.template @@ -0,0 +1,44 @@ +@echo off +REM =================================================================== +REM SmartFuseSync Test Runner Script +REM Safe to commit - no credentials required +REM =================================================================== + +REM Configuration +set COM_PORT=COM3 +set BAUD_RATE=115200 +set TEST_FILE=..\TestData\test-commands.txt + +REM =================================================================== + +echo =================================================================== +echo SmartFuseSync - Automated Test Suite +echo =================================================================== +echo. +echo Test File: %TEST_FILE% +echo COM Port: %COM_PORT% +echo Baud Rate: %BAUD_RATE% +echo. +pause +echo. + +dotnet run -- config runtests ^ + -f "%TEST_FILE%" ^ + -p %COM_PORT% ^ + -b %BAUD_RATE% + +if %errorlevel% equ 0 ( + echo. + echo =================================================================== + echo SUCCESS: All tests passed! + echo =================================================================== +) else ( + echo. + echo =================================================================== + echo WARNING: Some tests failed! + echo Review the output above for details. + echo =================================================================== +) + +echo. +pause diff --git a/PowerControlHubSync/src/update-config.bat.template b/PowerControlHubSync/src/update-config.bat.template new file mode 100644 index 0000000..084f262 --- /dev/null +++ b/PowerControlHubSync/src/update-config.bat.template @@ -0,0 +1,57 @@ +@echo off +REM =================================================================== +REM SmartFuseSync Configuration Update Script +REM +REM IMPORTANT: This file contains WiFi credentials! +REM Add this file to .gitignore - DO NOT commit to Git! +REM =================================================================== + +REM Configuration +set COM_PORT=COM3 +set BAUD_RATE=115200 +set CONFIG_FILE=..\TestData\config-commands.txt + +REM WiFi Credentials (CHANGE THESE!) +set WIFI_SSID=YourNetworkName +set WIFI_PASSWORD=YourNetworkPassword + +REM =================================================================== +REM Do not edit below this line +REM =================================================================== + +echo =================================================================== +echo SmartFuseSync - Configuration Update +echo =================================================================== +echo. +echo Configuration: %CONFIG_FILE% +echo COM Port: %COM_PORT% +echo Baud Rate: %BAUD_RATE% +echo WiFi SSID: %WIFI_SSID% +echo. +echo WARNING: This will update the device configuration! +echo Press Ctrl+C to cancel, or +pause +echo. + +dotnet run -- config update ^ + -f "%CONFIG_FILE%" ^ + -p %COM_PORT% ^ + -b %BAUD_RATE% ^ + -w "%WIFI_SSID%" ^ + -x "%WIFI_PASSWORD%" + +if %errorlevel% equ 0 ( + echo. + echo =================================================================== + echo SUCCESS: Configuration updated successfully! + echo =================================================================== +) else ( + echo. + echo =================================================================== + echo ERROR: Configuration update failed! + echo Check the error messages above. + echo =================================================================== +) + +echo. +pause diff --git a/README.md b/README.md index a692760..59d4e0c 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,8 @@ -# SmartFuseBox +# PowerControlHub -**SmartFuseBox** is an Arduino-based 12V power distribution and control system for marine and off-grid applications. It provides configurable fused relay switching, multi-protocol sensor telemetry, WiFi/BLE/MQTT connectivity, and a companion touchscreen control panel — all managed through a unified serial command protocol and EEPROM-persisted configuration. +**PowerControlHub** is an Arduino-based 12V power distribution and control system for marine and off-grid applications. It provides configurable fused relay switching, multi-protocol sensor telemetry, WiFi/BLE/MQTT connectivity, and a companion touchscreen control panel — all managed through a unified serial command protocol and EEPROM-persisted configuration. -> Current firmware version: **0.9.0** — see [`FirmwareVersion.h`](SmartFuseBox/FirmwareVersion.h). +> Current firmware version: **0.9.0** — see [`FirmwareVersion.h`](PowerControlHub/FirmwareVersion.h). --- @@ -24,9 +24,9 @@ ## Overview -SmartFuseBox is a single-unit firmware target running on an Arduino Uno R4 WiFi or ESP32 NodeMCU-32. The Nextion touchscreen display is driven directly by the SFB controller over a dedicated hardware serial port (`Serial2` for GPS; display connected via `NextionControl`). +PowerControlHub is a single-unit firmware target running on an Arduino Uno R4 WiFi or ESP32 NodeMCU-32. The Nextion touchscreen display is driven directly by the PCH controller over a dedicated hardware serial port (`Serial2` for GPS; display connected via `NextionControl`). -The firmware entry point is `SmartFuseBoxApp`, which owns all subsystem instances and wires them together at startup. Host and debug communication uses a text-based framed serial protocol: +The firmware entry point is `PowerControlHubApp`, which owns all subsystem instances and wires them together at startup. Host and debug communication uses a text-based framed serial protocol: ``` :=;=\n @@ -92,7 +92,7 @@ Uses a platform-abstraction interface (`IWifiRadio`) to isolate board-specific W - `BluetoothSensorService` — sensor telemetry characteristics with notifications. - `BluetoothRelayService` — relay state read and write characteristics. - Single-client model. Advertising restarts automatically after disconnect. -- No pairing or bonding. Device advertises as **"Smart Fuse Box"**. +- No pairing or bonding. Device advertises as **"Power Control Hub"**. - Uses `IBluetoothRadio` interface — higher-level code operates exclusively through the interface pointer, with runtime null-checks replacing compile-time guards. - **Arduino Uno R4 WiFi constraint:** WiFi and BLE share the RF path on the ANNA-B112/ESP32-S3 modules; `BLUETOOTH_SUPPORT` and `WIFI_SUPPORT` are mutually exclusive on this board. Enforced by a compile-time `#error`. On ESP32, both can operate simultaneously. @@ -134,8 +134,8 @@ Key events: `WarningChanged`, `RelayStatusChanged`, `TemperatureUpdated`, `Humid ### Over-the-Air Updates (OTA) - Available on **ESP32 + `WIFI_SUPPORT` + `OTA_AUTO_UPDATE`** only. -- Polls the GitHub Releases API (`SmartFuseBox/SmartFuseBox`) every **24 hours**. -- Downloads asset `SmartFuseBox-esp32-v{major}.{minor}.{patch}.{build}.bin` with SHA-256 checksum verification. +- Polls the GitHub Releases API (`k3ldar/PowerControlHub`) every **24 hours**. +- Downloads asset `PowerControlHub-esp32-v{major}.{minor}.{patch}.{build}.bin` with SHA-256 checksum verification. - TLS connections use pinned root CA certificates (Sectigo E46 for `api.github.com`; ISRG Root X1 for `assets.githubusercontent.com`). - **Auto-apply is disabled by default.** Enable via `F12:apply=1` or the `OtaFlagAutoApply` bit in `SystemHeader::reserved[0]`. - OTA state (`idle`, `checking`, `available`, `downloading`, `rebooting`, `failed`, `uptodate`) is queryable at any time via `F13`. @@ -166,7 +166,7 @@ Key events: `WarningChanged`, `RelayStatusChanged`, `TemperatureUpdated`, `Humid ### Repository Structure ``` -SmartFuseBox/ Firmware source (relays, sensors, WiFi, BLE, MQTT, OTA, SD, Nextion display) +PowerControlHub/ Firmware source (relays, sensors, WiFi, BLE, MQTT, OTA, SD, Nextion display) Docs/ Reference documentation TestData/ Serial command test scripts ``` @@ -174,7 +174,7 @@ TestData/ Serial command test scripts ### Subsystem Dependency Graph ``` -SmartFuseBoxApp +PowerControlHubApp ├── MessageBus Pub/sub event bus (no dynamic allocation) ├── RelayController Relay switching, linking, pulse, action types ├── SoundController COLREGS signal sequencer -> horn relay @@ -206,7 +206,7 @@ SmartFuseBoxApp ### Interface Abstraction Pattern -WiFi and Bluetooth subsystems are each accessed through a platform-agnostic interface (`IWifiRadio`, `IBluetoothRadio`). Board-specific drivers (`R4WifiRadio`, `Esp32WifiRadio`, `BluetoothController`) are constructed only inside `SmartFuseBoxApp` under the appropriate `#if defined(...)` guard. All higher-level code operates through interface pointers with runtime null-checks, minimising preprocessor usage and enabling straightforward test doubles. +WiFi and Bluetooth subsystems are each accessed through a platform-agnostic interface (`IWifiRadio`, `IBluetoothRadio`). Board-specific drivers (`R4WifiRadio`, `Esp32WifiRadio`, `BluetoothController`) are constructed only inside `PowerControlHubApp` under the appropriate `#if defined(...)` guard. All higher-level code operates through interface pointers with runtime null-checks, minimising preprocessor usage and enabling straightforward test doubles. ### Configuration Persistence @@ -250,12 +250,12 @@ Board selection is controlled by a single `#define` in `Local.h` using the trail 1. Clone the repository: ``` - git clone https://github.com/SmartFuseBox/SmartFuseBox + git clone https://github.com/k3ldar/PowerControlHub ``` 2. Install all required libraries via the Arduino IDE Library Manager, and copy `NextionControl` manually. -3. Open `SmartFuseBox/SmartFuseBox.ino` in the Arduino IDE. +3. Open `k3ldar/PowerControlHub.ino` in the Arduino IDE. 4. Edit `Local.h` to activate the correct board and feature flags (see [Configuration](#configuration)). @@ -267,7 +267,7 @@ Full setup walkthrough: [Docs/SETUP.md](Docs/SETUP.md). ## Configuration -All hardware-specific configuration is isolated in a single file: `SmartFuseBox/Local.h`. No other file requires modification for a standard hardware setup. +All hardware-specific configuration is isolated in a single file: `PowerControlHub/Local.h`. No other file requires modification for a standard hardware setup. ### Board Selection @@ -413,7 +413,7 @@ GET /api/system/F13 ## License -SmartFuseBox is released under the **GNU General Public License v3.0**. +PowerControlHub is released under the **GNU General Public License v3.0**. See [LICENSE](LICENSE) for the full licence text. Copyright © 2025 Simon Carter (`s1cart3r@gmail.com`) \ No newline at end of file diff --git a/SmartFuseBox/__vm/Configuration.Debug.vmps.xml b/SmartFuseBox/__vm/Configuration.Debug.vmps.xml deleted file mode 100644 index 561081b..0000000 --- a/SmartFuseBox/__vm/Configuration.Debug.vmps.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - \ No newline at end of file diff --git a/SmartFuseBox/__vm/Configuration.Release.vmps.xml b/SmartFuseBox/__vm/Configuration.Release.vmps.xml deleted file mode 100644 index c49e4c3..0000000 --- a/SmartFuseBox/__vm/Configuration.Release.vmps.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - \ No newline at end of file diff --git a/TestData/test-commands.txt b/TestData/test-commands.txt index 6c351c8..4ec9d2b 100644 --- a/TestData/test-commands.txt +++ b/TestData/test-commands.txt @@ -59,7 +59,7 @@ C9:v=100 -> ACK:C9=ok:* C9:v=255 -> ACK:C9=ok:* # ============================================================ -# CONFIGURATION COMMANDS - WiFi Settings (SFB) +# CONFIGURATION COMMANDS - WiFi Settings (PCH) # ============================================================ C11:v=0 -> ACK:C11=ok:* C11:v=1 -> ACK:C11=ok:* @@ -72,7 +72,7 @@ C15:v=8080 -> ACK:C15=ok:* C17:192.168.4.1 -> ACK:C17=ok:* # ============================================================ -# CONFIGURATION COMMANDS - Bluetooth Settings (SFB) +# CONFIGURATION COMMANDS - Bluetooth Settings (PCH) # ============================================================ C10:v=0 -> ACK:C10=ok:*|ACK:C10=Bluetooth init failed:* C10:v=1 -> ACK:C10=ok:*|ACK:C10=Bluetooth init failed:*